Re: Cross Compiler and __RUNTIME_PSEUDO_RELOC_LIST__

2003-03-31 Thread Egor Duda
Tim Renner wrote: $ for f in `find . -name '*.a'`;do nm $f 2>/dev/null |grep PSEUDO_RELOC_LIST && echo $f; done U ___RUNTIME_PSEUDO_RELOC_LIST_END__ U ___RUNTIME_PSEUDO_RELOC_LIST__ ./libcygwin.a U ___RUNTIME_PSEUDO_RELOC_LIST_END__ U ___RUNTIME_PSEUDO_RELOC_LIST__

Building DLLs to be loaded from Visual Basic

2003-03-31 Thread Massimiliano Mirra
I have been asked to write some code to be integrated in a legacy Visual Basic application. This code should be available as a DLL. I have built the i686-pc-linux -> i686-pc-cygwin cross compiler and used it with success to compile a few small executables. Reading mailing list archives I found

Re: rxvt & vi

2003-03-31 Thread Andrew Markebo
/ "Hans Horn" <[EMAIL PROTECTED]> wrote: | Dear all, | | I've set the # of lines for an rxvt console to 80; | When I invoke vi from such a console this linecount is honored. | When I use this rxvt console to log on to another computer (telnet/rlogin) | and invoke vi there, vi always behaves as if i

Re: Building DLLs to be loaded from Visual Basic

2003-03-31 Thread Mader, Alexander
Hallo, Massimiliano Mirra schrieb: My questions: - is anybody today successfully building DLLs with cygwin (not mingw32) and loading them from Visual Basic (or other languages)? I have to provide DLLs for VB and do so by using Cygwin but with -mnocygwin, which is more or less using mingw32. An

[ANNOUNCEMENT] Updated: rxvt-2.7.10-1

2003-03-31 Thread Steve O
rxvt is a terminal program that can be used instead of the windows command shell. It does not require an X server. Geoff Wing has recently released rxvt 2.7.10, a development version that disables features which provide security holes. He has also merged the cygwin specific code into the sourcef

Re: RPM-4.1 port to cygwin available

2003-03-31 Thread Yann Crausaz
Hello, I'm going to try and link setup.exe against librpm, to make it possible (and "feasible" ;-)) setup.exe and rpm both to be reciprocly updated. I'm diving, and I give news when I emerge (or drawn...) >-- Message original -- >To: [EMAIL PROTECTED] >From: Charles Wilson <[EMAIL PROTECTED]> >S

Re: Updated: rxvt-2.7.10-1

2003-03-31 Thread Thomas Mellman
Steve O <[EMAIL PROTECTED]> schrieb am 31.03.03 11:09:39: > > rxvt is a terminal program that can be used instead of the windows > command shell. It does not require an X server. > > Geoff Wing has recently released rxvt 2.7.10, a development version > that disables features which provide securi

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

2003-03-31 Thread Vince Hoffman
I'll try it as soon as i get home, it doesnt crash on my work machine. > -Original Message- > From: Max Bowsher [mailto:[EMAIL PROTECTED] > Sent: 29 March 2003 21:26 > To: Robert Collins; Vince Hoffman > Cc: [EMAIL PROTECTED] > Subject: Re: Corrected: setup.exe beta (testing needed - real

Re: gcc/Cygwin awareness

2003-03-31 Thread Max Bowsher
John Williams wrote: > Elfyn McBratney wrote: >> You could use this >> >> #if defined(__GNUC__) && defined(__CYGWIN__) > > So __CYGWIN__ is defined in the preprocessor environment when compiling > under Cygwin? That's precisely what I'm after, thanks. General answer to this kind of question: $

undefined reference to ___assert, _impure_ptr, etc.

2003-03-31 Thread Brian Warner
Hi, I'm using Cygwin for compiling the Xerces-C library for MinGW. My program used the gcc 3.2, and there were no problem, but now I use the gcc 3.2.2 for my program, so I need to recompile the Xerces-X library too. But the gcc 3.2.2 doesn't exist for Cygwin, so I compiled it with the source on

ls question

2003-03-31 Thread svartsjel
Hi, I'm working with a localized (german) Windows (XP) version and Cygwin 1.3.20-1 (in conjunction with rxvt). Doing the following: cd /cygdrive/c cd Profile cd Administrator ll | grep Start dr-xr-xr-x+ 3 Administ Kein0 1. Mar 12:00 Startmenü 'Startmenü' is now properly displayed,

Limitarion ssh connections

2003-03-31 Thread ANTONIO.PICAZO
> Hi, > > Does anyone knows if there is a limitation of the number of > simultaneuos ssh connections? I have the following problem: > >- I have more or less almost 100 servers that have a script that > needs to copy a file to a Windows server that has cygwin sshd running. > Sometimes the

How hard would this be?

2003-03-31 Thread neuron
Hey I have a little problem, I love linux, use it at home all the time, but until (only a matter of time right ;) the norwegian gov switched to linux on their desktop computers, I also have to use windows (unfortunatly). Now I have a swapable harddrive, what I would like to do, is to have it with

Re: cygwin + apache + php problem

2003-03-31 Thread Jason Tishler
On Mon, Mar 31, 2003 at 12:14:56AM +0200, Adam Csillag wrote: > Syntax error on line 236 of /etc/apache/httpd.conf: > Cannot load /usr/lib/apache/libphp4.dll into server: > dlopen: Win32 error 998 ^^^ $ fgrep 998L /usr/include/w32api/winerror.h #define ERROR_NOACCESS 998L >

Re: Limitarion ssh connections

2003-03-31 Thread Corinna Vinschen
On Mon, Mar 31, 2003 at 01:15:39PM +0200, ANTONIO.PICAZO wrote: > > Hi, > > > > Does anyone knows if there is a limitation of the number of > > simultaneuos ssh connections? I have the following problem: > > > >- I have more or less almost 100 servers that have a script that > > needs to co

Re: How hard would this be?

2003-03-31 Thread Christopher Faylor
On Mon, Mar 31, 2003 at 02:30:00PM +0200, neuron wrote: >Hey > >I have a little problem, I love linux, use it at home all the time, >but until (only a matter of time right ;) the norwegian gov switched >to linux on their desktop computers, I also have to use windows >(unfortunatly). Now I have a s

Re[2]: How hard would this be?

2003-03-31 Thread neuron
:/, I never did test it myself, as I normaly use the real thing. thanks for the info though. CF> On Mon, Mar 31, 2003 at 02:30:00PM +0200, neuron wrote: >>Hey >> >>I have a little problem, I love linux, use it at home all the time, >>but until (only a matter of time right ;) the norwegian gov swi

Re: Building DLLs to be loaded from Visual Basic

2003-03-31 Thread Massimiliano Mirra
"Mader, Alexander" <[EMAIL PROTECTED]> writes: >> - is anybody today successfully building DLLs with cygwin (not >> mingw32) and loading them from Visual Basic (or other languages)? > > I have to provide DLLs for VB and do so by using Cygwin but with > -mnocygwin, which is more or less using min

Re: Limitarion ssh connections

2003-03-31 Thread Thorsten Kampe
* Corinna Vinschen (03-03-31 15:55 +0100) > On Mon, Mar 31, 2003 at 01:15:39PM +0200, ANTONIO.PICAZO wrote: >>> Does anyone knows if there is a limitation of the number of >>> simultaneuos ssh connections? I have the following problem: >>> >>>- I have more or less almost 100 servers that have

Re: ls Question

2003-03-31 Thread Demmer, Thomas
Do an ls --show-control-chars from ls --help: --show-control-chars show non graphic characters as-is (default unless program is `ls' and output is a terminal) I have alias ls=/bin/ls.exe --show-control-chars in my /etc/profile. Ciao Tom Thomas Demmer Kraf

Re: Building DLLs to be loaded from Visual Basic

2003-03-31 Thread Max Bowsher
Massimiliano Mirra wrote: > "Mader, Alexander" <[EMAIL PROTECTED]> writes: > >>> - is anybody today successfully building DLLs with cygwin (not >>> mingw32) and loading them from Visual Basic (or other languages)? >> >> I have to provide DLLs for VB and do so by using Cygwin but with >> -mnocygwi

Segmentation fault in ld

2003-03-31 Thread Ronald Landheer-Cieslak
Hello all, I just discovered a bug in the current ld: To repeat, just make sure there is no .libs in the current directory and there is a minimal stub.cpp with at least one function. Run make with the following makefile: == BEGIN Makefile == all : stub.dll .cpp.o : g++ -shared -Wall

Re: Limitarion ssh connections

2003-03-31 Thread Corinna Vinschen
On Mon, Mar 31, 2003 at 04:32:43PM +0200, Thorsten Kampe wrote: > * Corinna Vinschen (03-03-31 15:55 +0100) > > What OS? Which Cygwin version? If running on 9x/Me, there's a system > > imposed limit of around 100 open sockets AFAIR. I didn't find the > > matching MSDN article, though. > > What

[ANNOUNCEMENT] Updated: OpenSSH-3.6p1-1

2003-03-31 Thread Corinna Vinschen
I've updated the version of OpenSSH to 3.6p1-1. This is an official new release as of today. The Cygwin version is build from the vanilla sources. Official Release Message: OpenSSH 3.6 has just been released. It will be availab

Re: cygwin + apache + php problem

2003-03-31 Thread Adam Csillag
>Are the permissions of libphp4.dll OK? Now I set it to the same group, and same permissions as the other files: -rwxr-x--- I still get the same error message. The only difference is that the other files have -rwxr-x---+. What does that + sign mean, and how do I set it? Or does that have anything

Re: RPM-4.1 port to cygwin available

2003-03-31 Thread Ronald Landheer-Cieslak
On 29 Mar 2003, Robert Collins wrote: > On Fri, 2003-03-28 at 21:04, Ronald Landheer-Cieslak wrote: > > On Thu, 27 Mar 2003, Charles Wilson wrote: > > > Robert Collins wrote: > > >> I find this concern mystifiying though, we've had an rpm port from > > >> Chuck for what - 3 ? 4 ? years. > > > And

Re: rxvt & vi

2003-03-31 Thread Hans Horn
$TERM is xterm before telnet/rlogin, during, and after! Hans -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

Re: Limitarion ssh connections

2003-03-31 Thread ANTONIO.PICAZO
Hi, First of all thank you very much. The cygwin verion is CYGWIN_NT5.0 and the OS is Windows 2000. The ssh version is 3.5p1 I have put the Maxstartups parameter to 1000 but it is not working. Regards - Mensaje Original - De: Corinna Vinschen <[EMAIL PROTECTED]> Fecha: Lunes, Marzo 31,

logins with no passwords

2003-03-31 Thread zzapper
When I try to login to my account on CYGWIN from a different windows account, it as asks for a password, but I don't have a password? login DavidR password: zzapper vim -c ":%s/^/WhfgTNabgureRIvzSUnpxre/|:%s/[R-T]/ /Ig|:normal ggVGg?" http://vim.sourceforge.net/tip_view.php?tip_id=305 "Best of

1.3.22: (gcc) problem using gettimeofday with -mno-cygwin

2003-03-31 Thread Rob Siklos
Hello, I am trying to compile the following trivial program: #include #include int main() { struct timeval tv; gettimeofday(&tv, NULL) ; printf("%ld %ld\n", tv.tv_sec, tv.tv_usec); return 0; } When I use gcc with no options, everything works fine. However, if I use the

Re: 1.3.22: (gcc) problem using gettimeofday with -mno-cygwin

2003-03-31 Thread Rolf Campbell
Rob Siklos wrote: Hello, I am trying to compile the following trivial program: #include #include int main() { struct timeval tv; gettimeofday(&tv, NULL) ; printf("%ld %ld\n", tv.tv_sec, tv.tv_usec); return 0; } When I use gcc with no options, everything works fine. Howeve

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

2003-03-31 Thread Rolf Campbell
Max Bowsher wrote: Robert Collins wrote: On Thu, 2003-03-27 at 22:10, Vince Hoffman wrote: Ok, well this is 'not good' :}. At what point does it crash? At start before any window appears. Shuttting down cygwin services made no difference. let me know if there is any more i can do to help the pr

Re: undefined reference to ___assert, _impure_ptr, etc.

2003-03-31 Thread Igor Pechtchanski
On Mon, 31 Mar 2003, Brian Warner wrote: > Hi, > > I'm using Cygwin for compiling the Xerces-C library for MinGW. My program > used the gcc 3.2, and there were no problem, but now I use the gcc 3.2.2 for > my program, so I need to recompile the Xerces-X library too. But the gcc > 3.2.2 doesn't exi

Re: 1.3.22: (gcc) problem using gettimeofday with -mno-cygwin

2003-03-31 Thread Christopher Faylor
On Mon, Mar 31, 2003 at 10:36:40AM -0500, Rolf Campbell wrote: >Rob Siklos wrote: >>Hello, >> >>I am trying to compile the following trivial program: >> >> >>#include >>#include >> >>int main() >>{ >> struct timeval tv; >> gettimeofday(&tv, NULL) ; >> printf("%ld %ld\n", tv.tv_sec, tv.tv_u

Re: ls question

2003-03-31 Thread Markus Schönhaber
[EMAIL PROTECTED] wrote: Hi, I'm working with a localized (german) Windows (XP) version and Cygwin 1.3.20-1 (in conjunction with rxvt). Doing the following: cd /cygdrive/c cd Profile cd Administrator ll | grep Start dr-xr-xr-x+ 3 Administ Kein0 1. Mar 12:00 Startmenü 'Startmenü' is

Re: 1.3.22: (gcc) problem using gettimeofday with -mno-cygwin

2003-03-31 Thread Rob Siklos
> >My first idea: Windows doesn't provide gettimeofday. > > Bingo. Oh- that's too bad. Does anyone know if Windows provides something similar? If so, how would I access it from my program? Thanks a lot, Rob. - Original Message - From: "Christopher Faylor" <[EMAIL PROTECTED]> To: <[EM

Re: cygwin + apache + php problem

2003-03-31 Thread Igor Pechtchanski
On Mon, 31 Mar 2003, Adam Csillag wrote: > >Are the permissions of libphp4.dll OK? > > Now I set it to the same group, and same permissions as the other files: > -rwxr-x--- > I still get the same error message. The only difference is that the other > files have -rwxr-x---+. What does that + sign m

Ping program?

2003-03-31 Thread Hopkins, Samuel
I'm dying here. Does anyone have a ping program that will compile under cygwin? I've downloaded about 27 ping programs and none compile. Thanks, Sam -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http:

Re: Ping program?

2003-03-31 Thread Randall R Schulz
Sam, You don't say which version of Windows you're running, but NT, 2000 and XP all include a ping program. Is it insufficient for your needs? % type ping ping is /cygdrive/d/WINNT/system32/ping Randall Schulz At 08:24 2003-03-31, you wrote: I'm dying here. Does anyone have a ping program that

Re: Ping program?

2003-03-31 Thread Martin Gainty
Sam- There is ping source at the Birthplace of the HAL 9000 computer http://tecfa.unige.ch/guides/internet-tools-summary-decemj.html Do a find on ping / source Good Luck, Martin - Original Message - From: "Hopkins, Samuel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 31

RE: Ping program?

2003-03-31 Thread Hopkins, Samuel
I need the sourcecode to modify. =( -Original Message- From: Randall R Schulz [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 11:42 AM To: [EMAIL PROTECTED] Subject: Re: Ping program? Sam, You don't say which version of Windows you're running, but NT, 2000 and XP all include a

Re: Ping program?

2003-03-31 Thread Igor Pechtchanski
On Mon, 31 Mar 2003, Hopkins, Samuel wrote: > I'm dying here. Sorry, can't help you with that... > Does anyone have a ping program that will compile under cygwin? I've > downloaded about 27 ping programs and none compile. > Thanks, > Sam IIRC, ping requires elevated privileges under WinNT/2k/XP

[ANNOUNCEMENT] Updated: perl-5.8.0-2

2003-03-31 Thread Gerrit P. Haase
perl-5.8.0-2 release has been uploaded to sourceware -- it should be on the mirrors soon. THIS IS A REAL NEW PERL RELEASE THAT IS BINARY INCOMPATIBLE WITH ANY PREVIOUS PERL RELEASE. THIS MEANS THAT YOUR OLD EXTENSIONS (.xs code, those Perl modules requiring a C compiler) WILL

RE: cygwin + apache + php problem

2003-03-31 Thread Adam Csillag
I have now set the permissions with the utilities you described, still no luck. Here are the settings: # file: /usr/lib/apache/libphp4.dll # owner: Adam # group: Felhasznalok user::rwx group::r-x group:SYSTEM:rwx group:Rendszergazdak:rwx mask:rwx other:--- This is a hungarian Windows, that's why

Re: Ping program?

2003-03-31 Thread Martin Gainty
Igor makes a good point if you have any intervening nodes (Routers) which block ICMP packets then your ping will not be successful Once you get the source compiled ...ping localhost first then ping out from the known base. -Martin - Original Message - From: "Igor Pechtchanski" <[EMAIL PROTE

RE: Ping program?

2003-03-31 Thread Hopkins, Samuel
The ping would always be launched with root (administrator) privileges on Windows 2000. -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 12:05 PM To: [EMAIL PROTECTED] Subject: Re: Ping program? Igor makes a good point if you have any interv

Re: [ANNOUNCEMENT] Updated: perl-5.8.0-2

2003-03-31 Thread Rolf Campbell
Gerrit P. Haase wrote: perl-5.8.0-2 release has been uploaded to sourceware -- it should be on the mirrors soon. Several problems with this version. A bunch of my scripts have stopped working, and when I tried to figure out why, I got some very strange behavior from the debugg

Re: 1.3.22: (gcc) problem using gettimeofday with -mno-cygwin

2003-03-31 Thread Shankar Unni
Rob Siklos wrote: Does anyone know if Windows provides something similar? If so, how would I access it from my program? The best thing would be to visit http://msdn.microsoft.com and read the library (the Win32 SDK). There have also been various attempts to provide "very thin" (usually partial

RE: cygwin + apache + php problem

2003-03-31 Thread Igor Pechtchanski
What user is apache running as? Does *that* user have read/execute permission on libphp4.dll? Also, the names of the groups are irrelevant -- internally, only the numeric IDs are handled, and the group names are there only for display purposes. Igor On Mon, 31 Mar 2003, Adam Csillag wrot

Re: Limitarion ssh connections

2003-03-31 Thread Thorsten Kampe
* ANTONIO.PICAZO (03-03-31 17:29 +0100) > The cygwin verion is CYGWIN_NT5.0 No. "cygcheck -c cygwin" > and the OS is Windows 2000. The ssh version is 3.5p1 cygcheck -c login openssh > I have put the Maxstartups parameter to 1000 but it is not working. Please don't be that laconic: did you res

Re: logins with no passwords

2003-03-31 Thread Thorsten Kampe
* zzapper (03-03-31 17:28 +0100) > When I try to login to my account on CYGWIN from a different windows > account, it as asks for a password, but I don't have a password? OS? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Doc

RE: cygwin + apache + php problem

2003-03-31 Thread Adam Csillag
I have now set apache to run as Adam, who has all necessary rights, but that didn't help. Adam -Original Message- From: Igor Pechtchanski [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 8:09 PM To: Adam Csillag Cc: [EMAIL PROTECTED] Subject: RE: cygwin + apache + php problem What

RE: cygwin + apache + php problem

2003-03-31 Thread Igor Pechtchanski
This is a WAG, but what are the permissions on /usr/lib/apache? What is the value of your CYGWIN environment variable? Are your mounts user mounts or system mounts? Most of this information can be found in the output of "cygcheck -svr", which you should attach to your message (as an uncompressed

RE: cygwin + apache + php problem

2003-03-31 Thread Adam Csillag
Okay, here we go. By the way apache runs perfectly without php. Adam -Original Message- From: Igor Pechtchanski [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 8:34 PM To: Adam Csillag Cc: [EMAIL PROTECTED] Subject: RE: cygwin + apache + php problem This is a WAG, but what are t

Re: cygwin + apache + php problem

2003-03-31 Thread Andrew DeFaria
Adam Csillag wrote: Okay, here we go. By the way apache runs perfectly without php. Actually Apache for Cygwin has been known to just hang over time in later versions of Cygwin. As such, unless you plan only on playing around with it, I would suggest you use Apache for Windows instead of Apache

Re: Ping program?

2003-03-31 Thread Steve Coleman
Hopkins, Samuel wrote: I need the sourcecode to modify. =( If you *must* have a ping program that does something *special* then you might want to look at libpcap (www.tcpdump.org) and libnet (www.packetfactory.net) libraries then you should be able to implement whatever functionality you may

[Bug] 1.3.22-1 - rxvt & xterm displaying escape codes, cursor problems

2003-03-31 Thread diedrich
Hello, I just upgraded my Cygwin installation on a Windows 2000 system to version 1.3.22-1. I don't remember exactly what version I was running previously. In the previous version, xterm was functioning normally. I used the default bash settings, which includes a $PS1 prompt variable of: \[\033]0;

command prompt window title

2003-03-31 Thread Anoop Ghanwani
I'm running cygwin's latest version 1.3.22-1. When I run cygwin from my desktop, it brings up a command prompt window with a title "Cygwin". I modified cygwin.bat to make my default shell tcsh. Anyway, after I run vi, the window title changes to "vi " where is the file that I'm editing. When

Re: logins with no passwords

2003-03-31 Thread zzapper
On Mon, 31 Mar 2003 20:18:47 +0200, Thorsten Kampe <[EMAIL PROTECTED]> wrote: >* zzapper (03-03-31 17:28 +0100) >> When I try to login to my account on CYGWIN from a different windows >> account, it as asks for a password, but I don't have a password? > >OS? > Windows XP Professional Ver 5.1 Build

Re: [Bug] 1.3.22-1 - rxvt & xterm displaying escape codes, cursor problems

2003-03-31 Thread Steve O
Hi, It sounds like you are running sh instead of bash, Try running rxvt like: rxvt -e bash If that helps you can investigate /etc/passwd to see what it says your shell should be, or look at $SHELL, -steve -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting:

1.3.20-1: execvp does not consider relative symlinks on network shares

2003-03-31 Thread Daniel Villeneuve
Hi, I am using cygwin-1.3.20-1 on a W2K machine, as another UNIX OS on a UNIX network viewed via Samba 2.0. When creating relative symlinks on the local drive (e.g., c:\), execvp finds the script through the symlink. When creating a similar relative symlink on the network share, execvp skips the

RE: [Bug] 1.3.22-1 - rxvt & xterm displaying escape codes, cursor problems

2003-03-31 Thread Reid Thompson
re backspace , it appears that stty erase has been changed from ^? to ^H -- thanks, reid -Original Message- From: diedrich [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 2:43 PM To: [EMAIL PROTECTED] Subject: [Bug] 1.3.22-1 - rxvt & xterm displaying escape codes, cursor problems

Re: Cross Compiler and __RUNTIME_PSEUDO_RELOC_LIST__

2003-03-31 Thread Tim Renner
Tim Renner wrote: $ for f in `find . -name '*.a'`;do nm $f 2>/dev/null |grep PSEUDO_RELOC_LIST && echo $f; done U ___RUNTIME_PSEUDO_RELOC_LIST_END__ U ___RUNTIME_PSEUDO_RELOC_LIST__ ./libcygwin.a U ___RUNTIME_PSEUDO_RELOC_LIST_END__ U ___RUNTIME_PSEUDO_RELOC_LIST__

Re: [ANNOUNCEMENT] Updated: rxvt-2.7.10-1

2003-03-31 Thread Rolf Campbell
The icon associated with the rxvt window has changed (to the windows icon). Steve O wrote: rxvt is a terminal program that can be used instead of the windows command shell. It does not require an X server. Geoff Wing has recently released rxvt 2.7.10, a development version that disables features

Re: command prompt window title

2003-03-31 Thread Andrew Markebo
| When running things like gcc or make the window | title doesn't get affected at all...it continues | to show "Cygwin", unless I had previously run | vi in that window. | | Is there a way to fix this? Is this a know | issue? Bash sets the window-title through its prompt, set in /etc/profile (if

Re: Updated: perl-5.8.0-2

2003-03-31 Thread Gerrit P. Haase
Hallo Rolf, Am Montag, 31. März 2003 um 19:47 schriebst du: > Gerrit P. Haase wrote: >> perl-5.8.0-2 release has been uploaded to sourceware >>-- it should be on the mirrors soon. >> > Several problems with this version. A bunch of my scripts have stopped > working, and wh

Re: [ANNOUNCEMENT] Updated: rxvt-2.7.10-1

2003-03-31 Thread Steve O
> The icon associated with the rxvt window has changed (to the windows icon). Looks like the resource file didn't make it - no version info for the executable either. I'll build a 2.7.10-3 by the weekend, or sooner if any more problems creep up. Thanks, -steve -- Unsubscribe info: http://

Problem with gawk (3.1.2-2) under Cygwin 1.3.22-1

2003-03-31 Thread Andrew DeFaria
Just installed 1.3.22-1 and I have a problem with gawk. Whenever I running it I get a Windows dialog box stating: "The procedure entry point iswlower could not be located in the dynamic link library cygwin1.dll". $ cygcheck -c cygwin gawk Cygwin Package Information Package Version

Re: gcc/Cygwin awareness

2003-03-31 Thread John Williams
Hi Max, Max Bowsher wrote: John Williams wrote: Elfyn McBratney wrote: You could use this #if defined(__GNUC__) && defined(__CYGWIN__) So __CYGWIN__ is defined in the preprocessor environment when compiling under Cygwin? That's precisely what I'm after, thanks. General answer to this kind of

RE: Updated: perl-5.8.0-2

2003-03-31 Thread Rolf Campbell
So, is this a cygwin perl problem? Or has the stock perl decided to only work with magic ENV variables? > -Original Message- > From: Gerrit P. Haase [mailto:[EMAIL PROTECTED] > Sent: Monday, March 31, 2003 3:30 PM > To: Rolf Campbell > Subject: Re: Updated: perl-5.8.0-2 > > > Hallo Ro

Re: Problem with gawk (3.1.2-2) under Cygwin 1.3.22-1

2003-03-31 Thread Igor Pechtchanski
On Mon, 31 Mar 2003, Andrew DeFaria wrote: > Just installed 1.3.22-1 and I have a problem with gawk. Whenever I > running it I get a Windows dialog box stating: "The procedure entry > point iswlower could not be located in the dynamic link library > cygwin1.dll". > > $ cygcheck -c cygwin gawk > Cy

Re: bash bug report? Minor border case:

2003-03-31 Thread Michael Pierce
On Sun, 2003-03-30 at 13:01, Christopher Faylor wrote: > On Sun, Mar 30, 2003 at 12:42:03PM -0800, linda w (cyg) wrote: > >Agreed. Perhaps the naming should be a bit more evident. > > Or, perhaps you should school yourself to do some research before you > start blindly sending email. At the ver

RE: ls Question + bug?

2003-03-31 Thread Hannu E K Nevalainen (garbage mail)
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf > Of Demmer, Thomas > I have > alias ls=/bin/ls.exe --show-control-chars > > in my /etc/profile. > According to Bash info-pages: Seems to me that it is better to define a shell function... It should be something like: $ ls () { /bin/ls

Re: Segmentation fault in ld

2003-03-31 Thread Max Bowsher
Ronald Landheer-Cieslak wrote: > Hello all, > > I just discovered a bug in the current ld: > > To repeat, just make sure there is no .libs in the current directory and > there is a minimal stub.cpp with at least one function. Run make with the > following makefile: > > == BEGIN Makefile == > all

Re: logins with no passwords

2003-03-31 Thread Thorsten Kampe
* zzapper (03-03-31 21:57 +0100) > On Mon, 31 Mar 2003 20:18:47 +0200, Thorsten Kampe <[EMAIL PROTECTED]> > wrote: > >>* zzapper (03-03-31 17:28 +0100) >>> When I try to login to my account on CYGWIN from a different windows >>> account, it as asks for a password, but I don't have a password? >> >

Re: bash bug report? Minor border case:

2003-03-31 Thread Igor Pechtchanski
On 31 Mar 2003, Michael Pierce wrote: > On Sun, 2003-03-30 at 13:01, Christopher Faylor wrote: > > On Sun, Mar 30, 2003 at 12:42:03PM -0800, linda w (cyg) wrote: > > >Agreed. Perhaps the naming should be a bit more evident. > > > > Or, perhaps you should school yourself to do some research before

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

2003-03-31 Thread Max Bowsher
Rolf Campbell wrote: > Max Bowsher wrote: >> Robert Collins wrote: >> >>> On Thu, 2003-03-27 at 22:10, Vince Hoffman wrote: >>> > Ok, well this is 'not good' :}. > > At what point does it crash? > At start before any window appears. Shuttting down cygwin services made

Re: ls Question + bug?

2003-03-31 Thread Thorsten Kampe
* Hannu E K Nevalainen (garbage mail) (03-04-01 00:05 +0100) >> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf >> Of Demmer, Thomas >> I have >> alias ls=/bin/ls.exe --show-control-chars >> >> in my /etc/profile. >> > According to Bash info-pages: Seems to me that it is better to define a

Re: command prompt window title

2003-03-31 Thread Thorsten Kampe
* Anoop Ghanwani (03-03-31 21:38 +0100) > I'm running cygwin's latest version 1.3.22-1. > When I run cygwin from my desktop, it brings > up a command prompt window with a title "Cygwin". > I modified cygwin.bat to make my default shell > tcsh. > > Anyway, after I run vi, the window title changes

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

2003-03-31 Thread Rolf Campbell
Max Bowsher wrote: Rolf Campbell wrote: Max Bowsher wrote: Robert Collins wrote: On Thu, 2003-03-27 at 22:10, Vince Hoffman wrote: Ok, well this is 'not good' :}. At what point does it crash? At start before any window appears. Shuttting down cygwin services made no difference. let me know if the

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

2003-03-31 Thread Max Bowsher
Rolf Campbell wrote: > Max Bowsher wrote: >> Rolf Campbell wrote: >>> Max Bowsher wrote: Robert Collins wrote: > On Thu, 2003-03-27 at 22:10, Vince Hoffman wrote: >>> Ok, well this is 'not good' :}. >>> >>> At what point does it crash? >>> >> >> At start before any

Aliases no longer defined?

2003-03-31 Thread Peter Davis
I recently switched from Windows NT4 and Windows 2000 to Windows XP. I installed cygwin freshly on both systems. Now I'm noticing that on both systems, .bashrc seems to be completely ignored. I haven't changed this file at all, but suddenly the aliases I define and export are not defined when I

Re: command prompt window title

2003-03-31 Thread Randall R Schulz
Anoop, At 11:38 2003-03-31, you wrote: I'm running cygwin's latest version 1.3.22-1. When I run cygwin from my desktop, it brings up a command prompt window with a title "Cygwin". I modified cygwin.bat to make my default shell tcsh. Anyway, after I run vi, the window title changes to "vi " where

Re: Updated: perl-5.8.0-2

2003-03-31 Thread Rolf Campbell
Gerrit P. Haase wrote: Hallo Rolf, Am Montag, 31. März 2003 um 19:47 schriebst du: Gerrit P. Haase wrote: perl-5.8.0-2 release has been uploaded to sourceware -- it should be on the mirrors soon. Also, when I ran cygcheck, I got: cygcheck: dump_sysinfo: GetVolumeInformation()

Re: bash bug report? Minor border case:

2003-03-31 Thread Christopher Faylor
On Mon, Mar 31, 2003 at 02:05:25PM -0800, Michael Pierce wrote: >I wish the developers would try to remember, not everyone is a >developer, in fact most are just users, cut some slack! Step 1: Person posts to wrong list. Step 2: Person is apprised of that fact by cygwin mailing list notable. Ste

OT: disk structure (was Re: Determining the location of a Cygwininstallation)

2003-03-31 Thread Rolf Campbell
Hannu E K Nevalainen (garbage mail) wrote: From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Rolf Campbell Software packages belong in C:\Program\* and nowhere else (Note that this is equal to "C:\Program Files\*" on ENGLISH Win98. Ahhh... yeah. So, what is the rest of the disk for?

Re: command prompt window title

2003-03-31 Thread Igor Pechtchanski
On Mon, 31 Mar 2003, Randall R Schulz wrote: > Anoop, > > At 11:38 2003-03-31, you wrote: > > >I'm running cygwin's latest version 1.3.22-1. > >When I run cygwin from my desktop, it brings > >up a command prompt window with a title "Cygwin". > >I modified cygwin.bat to make my default shell > >tcs

Re: Aliases no longer defined?

2003-03-31 Thread Rolf Campbell
Peter Davis wrote: I recently switched from Windows NT4 and Windows 2000 to Windows XP. I installed cygwin freshly on both systems. Now I'm noticing that on both systems, .bashrc seems to be completely ignored. I haven't changed this file at all, but suddenly the aliases I define and export are

Re: Aliases no longer defined?

2003-03-31 Thread Igor Pechtchanski
On Mon, 31 Mar 2003, Peter Davis wrote: > I recently switched from Windows NT4 and Windows 2000 to Windows XP. I > installed cygwin freshly on both systems. Now I'm noticing that on both > systems, .bashrc seems to be completely ignored. I haven't changed this > file at all, but suddenly the al

Re: command prompt window title

2003-03-31 Thread Randall R Schulz
At 15:19 2003-03-31, you wrote: On Mon, 31 Mar 2003, Randall R Schulz wrote: > Anoop, > > At 11:38 2003-03-31, you wrote: > > >... > > > >Anyway, after I run vi, the window title changes > >to "vi " where is the file that > >I'm editing. When I quit vi, the title of the > >window remains that wa

Success! Cross Compiler Linux to Cygwin

2003-03-31 Thread Tim Renner
Success! I got it working ;) Ignore my last post, I read the advice wrong ;) Anyways... here are the exact steps I went through... this is only for building the 2.95.3-10 version of gcc, which is what I needed... I havn't tried to patch up 3.2-2 yet... If anyone uses these instructions, let

RE: Mozilla 1.3 built on cygwin?

2003-03-31 Thread Ralf Habacker
> If you have such great insight into this type of thing, it won't take > you any time at all to duplicate. You've been complaining about this > and other cygwin performance issues for months. Why don't *you* do > something? I figured fork/exec/signals out from scratch. Certainly the > brighte

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

2003-03-31 Thread Robert Collins
On Tue, 2003-04-01 at 08:20, Max Bowsher wrote: > This bug gets more and more elusive. Plus, I had to reinstall Windows on my > desktop, and I can no-longer reproduce the crash. > > Rolf, is Service Pack 1 installed on your home machine? my hunch is that at O2 there is something being optimised

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

2003-03-31 Thread Robert Collins
On Fri, 2003-03-28 at 18:26, Markus Schönhaber wrote: > Robert Collins wrote: > > A new release of setup.exe is imminent. There are many changes, and to > > reduce problems, feedback from YOU, is needed. > > > > The new version is available from > > http://www.cygwin.com/setup-snapshots/setup-2.34

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

2003-03-31 Thread Robert Collins
On Fri, 2003-03-28 at 22:21, Danilo Turina wrote: > I'm using the beta in place of the stable version to keep up to date my > Cygwin installation and I have had no problems till now (WinXP SP1). Great! Thanks, Rob -- GPG key available at: . signat

RE: Mozilla 1.3 built on cygwin?

2003-03-31 Thread Parker, Ron
> Noone has explained, however, *why* the copy-on-write > implementation was > slower. Perhaps we have just been using the wrong tests. Does > copy-on-write > actually perform slower in "real world" tests? I don't know, > because I only While I never posted anything about it to the list. I tri

Re: command prompt window title

2003-03-31 Thread Igor Pechtchanski
On Mon, 31 Mar 2003, Randall R Schulz wrote: > At 15:19 2003-03-31, you wrote: > >On Mon, 31 Mar 2003, Randall R Schulz wrote: > > > > > Anoop, > > > > > > At 11:38 2003-03-31, you wrote: > > > > > > >... > > > > > > > >Anyway, after I run vi, the window title changes > > > >to "vi " where is the

Re: Aliases no longer defined?

2003-03-31 Thread Rolf Campbell
Igor Pechtchanski wrote: P.S. On an unrelated note, the use of shell functions is recommended over the use of aliases. Why is that? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.

Re: Aliases no longer defined?

2003-03-31 Thread Igor Pechtchanski
On Mon, 31 Mar 2003, Rolf Campbell wrote: > Igor Pechtchanski wrote: > > P.S. On an unrelated note, the use of shell functions is recommended over > > the use of aliases. > > Why is that? This is according to the information on the bash info page: For almost every purpose, shell functions are

Re: Aliases no longer defined?

2003-03-31 Thread Peter Davis
On Mon, 31 Mar 2003 18:15:13 -0500 Rolf Campbell <[EMAIL PROTECTED]> wrote: > Peter Davis wrote: > > I recently switched from Windows NT4 and Windows 2000 to Windows XP. I > > installed cygwin freshly on both systems. Now I'm noticing that on both > > systems, .bashrc seems to be completely igno

  1   2   >