using --enable-auto-image-base

2005-12-19 Thread Yitzchak Scott-Thoennes
It had sounded like there was consensus that -Wl,--enable-auto-image-base should be used to build all dlls. Right now, we're a long way away from that goal: Maintainers of packages containing non-auto-image-based dlls (actually, dlls with ImageBase of 1000 or less; some packages not listed

Re: Linker error after clean reinstallation of Cygwin

2005-12-19 Thread Igor Pechtchanski
On Mon, 19 Dec 2005, Yitzchak Scott-Thoennes wrote: On Fri, Dec 16, 2005 at 07:03:12PM -0500, Igor Pechtchanski wrote: On Fri, 16 Dec 2005, Angelo Graziosi wrote: The cygipc package has not been reinstalled, it, now, belongs to obsolte section. Should I reinstall it or is

src/winsup/cygwin ChangeLog mmap.cc

2005-12-19 Thread corinna
CVSROOT:/cvs/src Module name:src Changes by: [EMAIL PROTECTED] 2005-12-19 15:25:23 Modified files: winsup/cygwin : ChangeLog mmap.cc Log message: * mmap.cc (fhandler_dev_zero::mmap): Call VirtualFree(MEM_RELEASE) with zero length parameter,

src/winsup/utils ChangeLog dump_setup.cc

2005-12-19 Thread corinna
CVSROOT:/cvs/src Module name:src Changes by: [EMAIL PROTECTED] 2005-12-19 16:58:33 Modified files: winsup/utils : ChangeLog dump_setup.cc Log message: * dump_setup.cc (package_find): Fix is_alias computation for /usr/lib. Patches:

winsup/cygwin ChangeLog exceptions.cc

2005-12-19 Thread cgf
CVSROOT:/cvs/uberbaum Module name:winsup Changes by: [EMAIL PROTECTED] 2005-12-20 00:31:50 Modified files: cygwin : ChangeLog exceptions.cc Log message: * cygtls.h (_cygtls::interrupt_now): Subsume interruptible(). (interruptible): Delete.

Fix /lib=/usr/lib alias in cygcheck -f

2005-12-19 Thread Igor Pechtchanski
Hi, Due to a missing trailing /, cygcheck -f did not recognize /lib as being the same as /usr/lib. The attached patch fixes this. ChangeLog below. Igor == 2005-12-19 Igor Pechtchanski [EMAIL PROTECTED]

ftp.exe's bug found

2005-12-19 Thread saintlinu
Dear list When I use ftp.exe in cygwin, connected to ftp server. and I just typed 'site %8x%8x%8x' then I faced a suspicious messege on the ftp server's information box like SITE 3212 2324 3241 414141 ... ftp.exe has format strings bug. right? I checked inetutils' source and I

Re: Perl/TK cygz.dll mapping error

2005-12-19 Thread Yitzchak Scott-Thoennes
On Sun, Dec 18, 2005 at 05:03:40PM -0800, Brian Dessent wrote: Brett Serkez wrote: From what I can tell by searching for similar issues, it *looks* like the new library may need to be rebased during setup? A packaging change? No, it means you need to install the rebase package and run

Re: Linker error after clean reinstallation of Cygwin

2005-12-19 Thread Yitzchak Scott-Thoennes
On Fri, Dec 16, 2005 at 07:03:12PM -0500, Igor Pechtchanski wrote: On Fri, 16 Dec 2005, Angelo Graziosi wrote: After I reinstalled Cygwin there is the following linker error in build some applications: -- g77 ... foo.F -lcygipc

error on installing new packages for the third-party cygwin

2005-12-19 Thread Liu Haibin
Hi, I'm using a product which integrates cygwin. I wanted to install a new package into this cygwin but after installation, I got an error message when I ran the newly installed package. The procedure entry point __getreent could not be located in the dynamic link library cygwin1.dll I googled

Re: error on installing new packages for the third-party cygwin

2005-12-19 Thread Yitzchak Scott-Thoennes
On Mon, Dec 19, 2005 at 07:55:04PM +0800, Liu Haibin wrote: Hi, I'm using a product which integrates cygwin. I wanted to install a new package into this cygwin but after installation, I got an error message when I ran the newly installed package. The procedure entry point __getreent could

Re: setup/symlinks/gcc/chown question

2005-12-19 Thread Corinna Vinschen
On Dec 18 15:51, Karl M wrote: Hi All... It appears to be file permissions related. The link being broken looks like it is because the read only bit on the shortcut file (the .lnk file) is getting turned off. Even though this first getfacl shows write access, the read only box in the

[ANNOUNCEMENT] Updated: naim-0.11.8.1-1

2005-12-19 Thread Jonathan C. Allen
PACKAGE DESCRIPTION === naim - A console AIM, ICQ, IRC, and Lily client Homepage: http://naim.n.ml.org/ Version : 0.11.8.1 License : GPL naim is a console client for AOL Instant Messenger (AIM), AOL I Seek You (ICQ), Internet Relay Chat (IRC), and The Lily CMC. CYGWIN

test -e cannot distinguish between foo and foo.exe

2005-12-19 Thread Volker Quetschke
I noticed the following behaviour: (found by my favorite testcase ;) ) $ rm -rf foo* ; touch foo.exe $ test -e foo echo found foo found foo $ test -e foo.exe echo found foo.exe found foo.exe Hmm, how can I test if foo exists without also looking at foo.exe? Does this count as a bug in test?

Re: test -e cannot distinguish between foo and foo.exe

2005-12-19 Thread Cliff Hones
Volker Quetschke wrote: I noticed the following behaviour: (found by my favorite testcase ;) ) $ rm -rf foo* ; touch foo.exe $ test -e foo echo found foo found foo $ test -e foo.exe echo found foo.exe found foo.exe Hmm, how can I test if foo exists without also looking at foo.exe?

Re: test -e cannot distinguish between foo and foo.exe

2005-12-19 Thread Christopher Faylor
On Mon, Dec 19, 2005 at 03:22:54PM +, Cliff Hones wrote: Volker Quetschke wrote: I noticed the following behaviour: (found by my favorite testcase ;) ) $ rm -rf foo* ; touch foo.exe $ test -e foo echo found foo found foo $ test -e foo.exe echo found foo.exe found foo.exe Hmm,

Re: Call for testing Cygwin snapshot (rsync mem use)

2005-12-19 Thread Corinna Vinschen
On Dec 18 08:56, David Rothenberger wrote: Using the --delete switch to rsync with a large number of files causes the rsync process to use large amounts of virtual memory with recent snapshots, including 20051216. With a DLL built from CVS on 20051110, this doesn't happen. The easiest

Re: test -e cannot distinguish between foo and foo.exe

2005-12-19 Thread Eric Blake
I noticed the following behaviour: (found by my favorite testcase ;) ) $ rm -rf foo* ; touch foo.exe $ test -e foo echo found foo found foo $ test -e foo.exe echo found foo.exe found foo.exe Hmm, how can I test if foo exists without also looking at foo.exe? Does this count as a

Cygwin 4.8 problem with infokey

2005-12-19 Thread Ken Arromdee
I am running on Windows XP, and infokey claims it is from GNU Texinfo 4.8. My .infokey contains the two lines #var scroll-step=1 Attempting to compile this produces the error message line 2: missing action name. How do I get around this? Is this a bug? I thought that #var lines are not

Re: [ANNOUNCEMENT] Updated: vim-6.4-4

2005-12-19 Thread J. David Boyd
Corinna Vinschen [EMAIL PROTECTED] writes: I have updated the version of vim on cygwin.com to 6.4-4. This version switches from the vim normal feature set to the vim huge feature set, so there are a couple of features enabled by default now, which weren't before (see :version in vim). Other

Re: Linker error after clean reinstallation of Cygwin

2005-12-19 Thread Igor Pechtchanski
On Mon, 19 Dec 2005, Yitzchak Scott-Thoennes wrote: On Fri, Dec 16, 2005 at 07:03:12PM -0500, Igor Pechtchanski wrote: On Fri, 16 Dec 2005, Angelo Graziosi wrote: The cygipc package has not been reinstalled, it, now, belongs to obsolte section. Should I reinstall it or is

Re: newbie question chdir

2005-12-19 Thread zzapper
On Mon, 19 Dec 2005 15:48:32 +1030, wrote: Hi. Christopher Faylor wrote: On Mon, Dec 19, 2005 at 02:48:53PM +1030, Luke Vanderfluit wrote: I will study the documentation but meanwhile might need some quick help here and there. Help starts here http://cygwin.com/cygwin-ug-net/ You can

expect script hanging: ssh to localhost w/password authentication

2005-12-19 Thread Tom Rodman
Enclosed is an expect script (to ssh to the localhost with password authentication) that hangs (search ahead for parent: waiting for sync byte) with the Dec 16 snapshot. Please take a look at the working and non-working test cases below. -- thanks, Tom working case (20051029 cygwin1.dll

Re: expect script hanging: ssh to localhost w/password authentication

2005-12-19 Thread Tom Rodman
Related ssh/expect script post by Corinna: http://sourceware.org/ml/cygwin/2003-10/msg00801.html FYI: The Dec 16 cygwin1.dll snapshot test case hung again in the same way, after I ran a rebaseall - just tried this 10 min ago. Is it recommended that one do a rebaseall each time the

Re: setup/symlinks/gcc/chown question

2005-12-19 Thread Karl M
Hi All... I see the broken links on any machine I use. I run as a restricted user, except when I am installing or updating software. Here is the way I do the initial install (to prevent permissions leaks)... define CYGWIN=tty for system add C:\Cygwin\bin to PATH for system create C:\Cygwin

Re: recreate_mmaps_after_fork_failed errors post-11-30 snapshot

2005-12-19 Thread Van Sickle, Gary
:\cygwin\bin\bash.exe (4092): *** recreate_mmaps_after_fork_failed Hangup How does the new snapshot look? Corinna and I were able to duplicate this previously but the new snapshot seems to have fixed the problem. cgf 1.5.19s(0.148/4/2) 20051219 11:10:54 appears to be working fine here now

Re: ftp.exe's bug found

2005-12-19 Thread Corinna Vinschen
On Dec 19 18:52, [EMAIL PROTECTED] wrote: Dear list When I use ftp.exe in cygwin, connected to ftp server. and I just typed 'site %8x%8x%8x' then I faced a suspicious messege on the ftp server's information box like SITE 3212 2324 3241 414141 ... ftp.exe has format strings

Re: Call for testing Cygwin snapshot

2005-12-19 Thread David Rothenberger
with the 20051130 snapshot. It works with the 20051118 snapshot but pops a console window when running grep. It works correctly with the 20051110 snapshot. This problem is back with the 20051219 snapshot. -- David Rothenbergerspammer? - [EMAIL PROTECTED] GPG/PGP: 0x92D68FD8, DB7C 5146 1AB0

[ANNOUNCEMENT] Updated: inetutils-1.3.2-31

2005-12-19 Thread Corinna Vinschen
I've updated the version of inetutils to 1.3.2-31. Changes in 1.3.2-31: - In ftp, fix variable argument handling in call to command function to avoid SEGVs. = IMPORTANT NOTE: - When updating

Re: expect script hanging: ssh to localhost w/password authentication

2005-12-19 Thread Larry Hall (Cygwin)
Tom Rodman wrote: Related ssh/expect script post by Corinna: http://sourceware.org/ml/cygwin/2003-10/msg00801.html FYI: The Dec 16 cygwin1.dll snapshot test case hung again in the same way, after I ran a rebaseall - just tried this 10 min ago. Is it recommended that one do a

dll version 1.5.19

2005-12-19 Thread Laura Schneider
Hi, I am wondering if you can give me an idea of when the next dll will be released? We are waiting on a bug fix. Thanks!! Laura - Laura Schneider VP, Engineering Singlestep Technologies Connect. Simplify. Manage. 2601 Fourth Ave Suite 500 Seattle, WA 98121 P:

Re: dll version 1.5.19

2005-12-19 Thread Brian Dessent
Laura Schneider wrote: The information contained in this transmission is privileged and/or confidential information intended for the use of the individual or entity named above. If the reader of this message is not the intended recipient, you are hereby notified that any use, distribution

Re: dll version 1.5.19

2005-12-19 Thread Laura Schneider
Thank you for the quick response! laura On Dec 19, 2005, at 3:52 PM, Larry Hall (Cygwin) wrote: Laura Schneider wrote: Hi, I am wondering if you can give me an idea of when the next dll will be released? We are waiting on a bug fix. Should be soon but I personally can't be more precise

vim under cygwin

2005-12-19 Thread Luke Vanderfluit
Hi. I'm a vi user :-) I recently started using cygwin, so forgive me if this is an obvious one. I want to use vi under cygwin but I'm having trouble with terminal settings. apparently these are the possible term settings. builtin_ansi builtin_xterm builtin_iris-ansi builtin_dumb However,

Re: dll version 1.5.19

2005-12-19 Thread Karl M
Hi Laura... If you are waiting on a particulay bug fix, you can verify that it works with a snapshot. Otherwise you may not get what you are waiting for. HTH, ...Karl From: Laura Schneider Subject: Re: dll version 1.5.19 Date: Mon, 19 Dec 2005 15:58:00 -0800 Thank you for the quick

Re: dll version 1.5.19

2005-12-19 Thread Laura Schneider
Hi Karl, Thanks for the info. We have verified that the bug is fixed in the snapshot (don't disconnect ssh sessions when using terminal services). Now, we are just waiting for a release build. We want to make sure that the whole shebang is stable. Thanks, laura On Dec 19, 2005, at

Fw: CrossCompiling

2005-12-19 Thread Jay C.
Hey. Ok, im going to explain my situation. I am compiling a plugin for CS:S. I am using CygWin and a gcc 3.4.1 cross compiler which I know works out of the box for compiling this type of plugin. I can send it to a guy using the same setup and it compiles fine for him using CygWin and the same

Re: vim under cygwin

2005-12-19 Thread Igor Pechtchanski
On Tue, 20 Dec 2005, Luke Vanderfluit wrote: Hi. I'm a vi user :-) I recently started using cygwin, so forgive me if this is an obvious one. I want to use vi under cygwin but I'm having trouble with terminal settings. apparently these are the possible term settings. builtin_ansi

Re: vim under cygwin

2005-12-19 Thread Igor Pechtchanski
On Tue, 20 Dec 2005, Luke Vanderfluit wrote: Hi. I'm a vi user :-) I recently started using cygwin, so forgive me if this is an obvious one. I want to use vi under cygwin but I'm having trouble with terminal settings. apparently these are the possible term settings. builtin_ansi

Re: vim under cygwin

2005-12-19 Thread Andrew DeFaria
Igor Pechtchanski wrote: Just to clarify: if you use the default cmd.exe console window (i.e., the default Cygwin shortcut), then your TERM is cygwin. If you use rxvt or xterm, you'd use TERM=xterm, of course... I use rxvt with TERM=cygwin with no problems. -- I just got a physical and asked

Re: vim under cygwin

2005-12-19 Thread Luke Vanderfluit
Hi Igor. Igor Pechtchanski wrote: On Tue, 20 Dec 2005, Luke Vanderfluit wrote: Hi. I'm a vi user :-) I recently started using cygwin, so forgive me if this is an obvious one. I want to use vi under cygwin but I'm having trouble with terminal settings. apparently these are the possible

Re: vim under cygwin

2005-12-19 Thread Luke Vanderfluit
Andrew DeFaria wrote: Igor Pechtchanski wrote: Just to clarify: if you use the default cmd.exe console window (i.e., the default Cygwin shortcut), then your TERM is cygwin. If you use rxvt or xterm, you'd use TERM=xterm, of course... I use rxvt with TERM=cygwin with no problems. Could

Re: Fw: CrossCompiling

2005-12-19 Thread René Berber
Jay C. wrote: [snip] On compiling, it throws the following error. /opt/crosstool/gcc-3.4.1-glibc-2.3.2/i686-unknown-linux-gnu/lib/gcc/i686-unknown-linux-gnu/3.4.1/../../../../i686-unknown-linux-gnu/bin/ld: cannot find -lgcc_s Just what it says: the linker cannot find library libgcc_s.a (or

Building gimp under Cygwin

2005-12-19 Thread David Arnstein
I have not had much luck building the gimp (Gnu image processing) with Cygwin. I tried building it from the official gimp tarball, and the configure script complained that I had an old version of gtk. So I tried to build gtk from a recent tarball. While compiling, I got a complaint that some

Re: vim under cygwin

2005-12-19 Thread Igor Pechtchanski
On Tue, 20 Dec 2005, Luke Vanderfluit wrote: Igor Pechtchanski wrote: On Tue, 20 Dec 2005, Luke Vanderfluit wrote: Hi. I'm a vi user :-) I recently started using cygwin, so forgive me if this is an obvious one. I want to use vi under cygwin but I'm having trouble with

bug with Cygwin - ls .. within a link (directory)

2005-12-19 Thread Robert Body
Here is a bug with cygwin: r is a link to /cygdrive/c/robertbody and when I go into the link named r and I do ls .. it is incorrect, and inconsistent with cd ..; ls, because in fact Cygwin is mishandling the link.. inconsistently with any linux/unix On another note, I reported a bug with

type ahead bug report - so far not addressed

2005-12-19 Thread Robert Body
here is the bug report again, i tried emailing Corinna, but that didn't work Delivery to the following recipients failed. [EMAIL PROTECTED] From: Robert Body [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: bug with cygwin Date: Mon, 19 Dec 2005 19:53:48 -0700 Hi, I reported this bug

Compiling oRTP under cygwin

2005-12-19 Thread Aengus
Hi, When I try to compile oRTP under cygwin, the configure script finishes succesfully, but the make exits with the following error: gcc -DHAVE_CONFIG_H -DG_LOG_DOMAIN=\oRTP\ -I. -I. -I.. -I.. -D_REENTRANT -I/u sr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DINET6 -c port_fct.c -MT port_f

Re: vim under cygwin

2005-12-19 Thread Andrew DeFaria
Luke Vanderfluit wrote: Andrew DeFaria wrote: Igor Pechtchanski wrote: Just to clarify: if you use the default cmd.exe console window (i.e., the default Cygwin shortcut), then your TERM is cygwin. If you use rxvt or xterm, you'd use TERM=xterm, of course... I use rxvt with TERM=cygwin

Re: bug with Cygwin - ls .. within a link (directory)

2005-12-19 Thread Larry Hall (Cygwin)
Robert Body wrote: Here is a bug with cygwin: r is a link to /cygdrive/c/robertbody and when I go into the link named r and I do ls .. it is incorrect, and inconsistent with cd ..; ls, because in fact Cygwin is mishandling the link.. inconsistently with any linux/unix You're going to

Re: type ahead bug report - so far not addressed

2005-12-19 Thread Larry Hall (Cygwin)
Robert Body wrote: here is the bug report again, i tried emailing Corinna, but that didn't work As I should have pointed out in my last email message on this subject, you should always send you bug reports to the list. Most, if not all, maintainers ask that you do this. This keeps the

Re: vim under cygwin

2005-12-19 Thread Luke Vanderfluit
Hi Igor Igor Pechtchanski wrote: On Tue, 20 Dec 2005, Luke Vanderfluit wrote: Igor Pechtchanski wrote: On Tue, 20 Dec 2005, Luke Vanderfluit wrote: Hi. I'm a vi user :-) I recently started using cygwin, so forgive me if this is an obvious one. I want to use vi under

Invalid mirror sites on http://cygwin.com/mirrors.html

2005-12-19 Thread Richard Schwartz
The following mirror sites have been offline for a long time. You may want to check or manually remove from the list. Thanks. mirrors.theonlinerecordstore.com cygwin.get-software.com Regards, Richard __ Do You Yahoo!? Tired of spam? Yahoo! Mail

SSH problem after upgrade

2005-12-19 Thread Ed Brady
After upgrading to the latest release of cygwin, I am continually receiving the error message. socket: Operation not permitted ssh: connect to host port 22: Operation not permitted I have had Cygwin installed on this computer for over three years and have used ssh reguarly without any

Re: Building gimp under Cygwin

2005-12-19 Thread Yaakov S (Cygwin Ports)
David Arnstein wrote: I have not had much luck building the gimp (Gnu image processing) with Cygwin. I tried building it from the official gimp tarball, and the configure script complained that I had an old version of gtk. So I tried to build gtk from a recent tarball. While compiling, I got a

pager and virtual desktops

2005-12-19 Thread Luke Vanderfluit
Hi. My next question on cygwin is to do with pagers and virtual desktops. On my regular linux boxes, I run virtual desktops using a pager to switch between them. Is this possible under cygwin? Thanks. Kind regards. -- Luke -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple

.bashrc question

2005-12-19 Thread Luke Vanderfluit
Hi. I have been trying to get an alias to work. I start my bash shell from cygwin.bat with the following command: bash --login -i -c 'rxvt -geometry 80x29 -sb -sl 1 -bg Black -fg green -bd LightSeaGreen -fn Courier -font 7x15' Then I set an alias. I've tried ~/.bashrc ~/.profile

Ploticus prefabs in /usr/share vs /usr/local/share

2005-12-19 Thread Gary R. Van Sickle
Gentlemen, The ploticus 2.32-1 package is putting its prefabs in '/usr/share/ploticus/prefabs' instead of '/usr/local/share/ploticus/prefabs'. Furthermore, ploticus can't find its prefabs, as it is looking for them in '/usr/local/share/ploticus/prefabs' by default. -- Gary R. Van Sickle --

Re: .bashrc question

2005-12-19 Thread Luke Vanderfluit
Hi Jim. Jim Roberts wrote: On 12/20/05, Luke Vanderfluit [EMAIL PROTECTED] wrote: Hi. I have been trying to get an alias to work. I start my bash shell from cygwin.bat with the following command: bash --login -i -c 'rxvt -geometry 80x29 -sb -sl 1 -bg Black -fg green -bd

Re: .bashrc question

2005-12-19 Thread Jim Roberts
On 12/20/05, Luke Vanderfluit [EMAIL PROTECTED] wrote: Hi Jim. Jim Roberts wrote: Try launching rxvt like this: C:\Cygwin\bin\rxvt.exe -geometry 80x29 -sb -sl 1 -bg Black -fg green -bd LightSeaGreen -fn Courier -font 7x15 -e /usr/bin/bash --login -i Hurrah, that worked. Thanks

Updated: naim-0.11.8.1-1

2005-12-19 Thread Jonathan C. Allen
PACKAGE DESCRIPTION === naim - A console AIM, ICQ, IRC, and Lily client Homepage: http://naim.n.ml.org/ Version : 0.11.8.1 License : GPL naim is a console client for AOL Instant Messenger (AIM), AOL I Seek You (ICQ), Internet Relay Chat (IRC), and The Lily CMC. CYGWIN

Updated: inetutils-1.3.2-31

2005-12-19 Thread Corinna Vinschen
I've updated the version of inetutils to 1.3.2-31. Changes in 1.3.2-31: - In ftp, fix variable argument handling in call to command function to avoid SEGVs. = IMPORTANT NOTE: - When updating