Re: compile error in fstream

2005-03-07 Thread Hans Horn
Well, after poking around, I found that explicitly #including fixed the problem. No idea why it worked without that #include under -mno-cygwin or why it worked with older gcc! Anycase - problem solved. Hans Horn wrote: > Group, > > I'm trying to compile a source tree under cygwin gcc 3.4.1. > T

Re: types "quad_t" & "u_quad_t"

2005-03-07 Thread Charles Wilson
Brian Dessent wrote: Linda W wrote: I was lamenting the lack of the simple "hexdump" facility I have on linux. I figured -- how difficult would it be to port that. Cygwin already has the 'od' utility (in coreutils) which has the same functionality. For example, "od -A x -v -t x1z filename" will

Re: cygstart patch

2005-03-07 Thread Charles Wilson
Michael Schaap wrote: This time with patch. :-[ Applied. -- Chuck -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

bash / snapshot combi crash

2005-03-07 Thread David Dindorp
Version: Cygwin DLL 2005-03-04 bash 2.05b-17 Where: Bash script. Code: let "fieldno=$counter+1" -x output: ++ let fieldno=0+1 Reproducability: Happened two times so far. Above line runs a couple of hundred times without crashing at first. Doesn't happen in 20050226. Source

setup modifying code?

2005-03-07 Thread Linda W
Dave Korn wrote: Since it is a known fact that it _does_ legitimately contain self-modifying code, the fact that your system doesn't warn must mean it is not configured to warn about self-modifying code. This is probably a non-issue, but I don't know if it's been tested. Does anyone know

resuming 'vi' error after upgrade cygwin 1.5.12-1 -> 1.5.13-1

2005-03-07 Thread Nine9
After upgrading to "cygwin-1.5.13-1", running in "tcsh" and doing "vi textfile" -> "^z" -> "fg" doesn't work (e.g., typing "j"s to move the cursor displays "j"s on the screen). Rebooted just in case, "vi" still not working. Ran "setup.exe" and re-installed cygwin-1.5.12-1. Doing "vi" -> "^z" ->

Re: types "quad_t" & "u_quad_t"

2005-03-07 Thread Brian Dessent
Linda W wrote: > hmph...never heard of it (even though I have it installed (*doh!*))... > Sure take alot more characters to get a simple hex & ascii side-by-side > dump! How am I gonna remember all that? :-) I often have to use > the man page to figure out it's the "-C" option on hexdump to do

Re: types "quad_t" & "u_quad_t"

2005-03-07 Thread Linda W
Brian Dessent wrote: Linda W wrote: I was lamenting the lack of the simple "hexdump" facility I have on linux. I figured -- how difficult would it be to port that. Cygwin already has the 'od' utility (in coreutils) which has the same functionality. For example, "od -A x -v -t x1z filenam

Re: cygstart patch

2005-03-07 Thread Michael Schaap
This time with patch. :-[ – Michael On 8-Mar-2005 2:13, Michael Schaap wrote: Hi Anthony, Chuck, all, On 4-Mar-2005 4:21, Charles Wilson wrote: Anthony -- I've applied this patch. Thanks! Sorry for jumping in so late... While I agree that the revised patch looks good and does the job, I'm not to

Re: cygstart patch

2005-03-07 Thread Michael Schaap
Hi Anthony, Chuck, all, On 4-Mar-2005 4:21, Charles Wilson wrote: Anthony -- I've applied this patch. Thanks! Sorry for jumping in so late... While I agree that the revised patch looks good and does the job, I'm not too happy with the constant reallocation that's going on. (I know, there won't b

Re: types "quad_t" & "u_quad_t"

2005-03-07 Thread Brian Dessent
Linda W wrote: > I was lamenting the lack of the simple "hexdump" facility > I have on linux. I figured -- how difficult would it be > to port that. Cygwin already has the 'od' utility (in coreutils) which has the same functionality. For example, "od -A x -v -t x1z filename" will give a nice si

types "quad_t" & "u_quad_t"

2005-03-07 Thread Linda W
I was lamenting the lack of the simple "hexdump" facility I have on linux. I figured -- how difficult would it be to port that. Well...not too, turns out, though, that it needs a type quad_t and u_quad_t defined. On linux, they are defined in /usr/include/sys/types.h Should they be included in "cy

Re: compile error in fstream

2005-03-07 Thread Hans Horn
I should have mentioned that the code compiles using if I add the -mno-cygwin flag to the compile options. H. Hans Horn wrote: > Group, > > I'm trying to compile a source tree under cygwin gcc 3.4.1. > This is where gcc barfs: > > In file included from > /usr/lib/gcc/i686-pc-cygwin/3.4.1/../../.

Possible lack of thread safety in dup,fdopen

2005-03-07 Thread Mark Pizzolato
I've been using clamav's clamd under cygwin and today noticed an issue. Clamd is a multi-threaded program. The following code sequence encountered an error today (ERROR calling fdopen on fd 11): int i, fd; FILE *f, *tmp; tmp = fopen("somefile", "wb+"); if (NULL == tmp) return; fd = fileno(tmp); {

Re: compile error in fstream

2005-03-07 Thread Mikael
"Hans Horn" wrote: > Group, > > I'm trying to compile a source tree under cygwin gcc 3.4.1. > This is where gcc barfs: > [Error messages snipped] You should make sure you are using g++ to compile c++ code and if you are using g++ to compile you should post the smallest possible program that ex

Cron not working windows 2003 box

2005-03-07 Thread Roberto Basso
Thanks! _ Ricerche online più semplici e veloci con MSN Toolbar! http://toolbar.msn.it/ $ crontab -l # DO NOT EDIT THIS FILE - edit the master and reinstall. # (/tmp/crontab.3316 installed on Mon Mar 7 17:34:23 2005) # (Cron version

Re: keychain service--hanging in ssh-add

2005-03-07 Thread Igor Pechtchanski
On Mon, 7 Mar 2005, Chuck wrote: > Is there a snapshot available somewhere? I normally don't install > anything but production releases. Igor -- http://cs.nyu.edu/~pechtcha/ |\ _,,,---,,_[EMAIL PROT

Re: cygwin1.dll exit status

2005-03-07 Thread Larry Hall
At 09:30 AM 3/7/2005, you wrote: >The latest version of cygwin1.dll ("cygwin1.dll" v0.0 ts=2005/3/1 11:01) does >not return the correct exit status when a Cygwin application is called from >Windows. Older versions such as ("cygwin1.dll" v0.0 ts=2004/11/10 8:34) do. > > >Example: > >Create the bas

compile error in fstream

2005-03-07 Thread Hans Horn
Group, I'm trying to compile a source tree under cygwin gcc 3.4.1. This is where gcc barfs: In file included from /usr/lib/gcc/i686-pc-cygwin/3.4.1/../../../../include/c++/3.4.1/fstream:857, from ... /usr/lib/gcc/i686-pc-cygwin/3.4.1/../../../../include/c++/3.4.1/bits/fstream.tc

Re: keychain service--hanging in ssh-add

2005-03-07 Thread Chuck
Karl M wrote: > I think it may be related to your update to cygwin-1.5.13-1. This is a > symptom that I was seeing also, but only on one machine (XP SP2 laptop) > and only on some reboots. Please try a snapshot and report the results. This is also an XP SP2 laptop. It's a Dell D600. > Another ex

error in scanf reading %le format and 00 exponent

2005-03-07 Thread Charles L. Werner
Hi, I seem to have detected a serious error (for me of course...) in the current cygwin 1.5.13 library. The minus sign of input values with a e+00 exponent, for example -1.1e+00 fail to read the minus sign. Here is a short program rdf.c that demonstrates the problem. Compiled with gcc rdf.c -o

Re: Slow pipes after upgrade cygwin 1.5.12-1 -> 1.5.13-1

2005-03-07 Thread Christopher Faylor
On Mon, Mar 07, 2005 at 02:55:26PM +0100, Rainer Emrich wrote: >I read the thread, but there's no solution mentioned. http://sources.redhat.com/ml/cygwin/2005-03/msg00159.html -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html

Has a solution been found to the problem with curses.h-termcap.h-tparm?

2005-03-07 Thread Eric Lilja
Hello, I am trying to build a MySQL client under Cygwin (configuring with --without-server). I have tried versions 4.1.10 and 5.0.2. My Cygwin version is the latest with the latest non-experimental versions of all installed packages. Windows XP Pro SP2 + all additional updates. When trying to b

cygwin1.dll exit status

2005-03-07 Thread zevel
The latest version of cygwin1.dll ("cygwin1.dll" v0.0 ts=2005/3/1 11:01) does not return the correct exit status when a Cygwin application is called from Windows. Older versions such as ("cygwin1.dll" v0.0 ts=2004/11/10 8:34) do. Example: Create the bash script - error4.sh -

[ANNOUNCEMENT] New packages: unison2.9.1, unison2.9.20, unison2.10.2

2005-03-07 Thread Schulman . Andrew
Three new Unison packages are now available in the Cygwin distribution: unison2.9.1, unison2.9.20, and unison2.10.2. These packages replace the older 'unison' package, which is now deprecated and has been moved into the ZZZRemovedPackages category. Unison is a file synchronizer for Unix and Wi

RE: Slow pipes after upgrade cygwin 1.5.12-1 -> 1.5.13-1

2005-03-07 Thread Rainer Emrich
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dear Corinna, I read the thread, but there's no solution mentioned. Rainer Emrich -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.0 (Cygwin) Comment: Using GnuPG with Netscape - http://enigmail.mozdev.org iD8DBQFCLF1Oa/wPs2kzmrIRAm3CAJ9dY5Pl1cLgeZ6kiR

Patch for variable page width in man

2005-03-07 Thread Eugene Kotlyarov
Hello I've made small patch for man with which it uses screen width when displaying man pages. Also there seems to be missing build dependency in readme for lndir which is in xorg-x11-bin-lndir package. diff -upr man-1.5o1/configure man-1.5o1-patched/configure --- man-1.5o1/configure 2005-03-07

Re: Slow pipes after upgrade cygwin 1.5.12-1 -> 1.5.13-1

2005-03-07 Thread Corinna Vinschen
On Mar 7 11:23, Rainer Emrich wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Problem description: > Having a background job running, even in the lowest priority (low), > execution of pipes is extremly slow. Everything else seems to run fine. > > That's really weired, because at cyg

Re: Slow pipes after upgrade cygwin 1.5.12-1 -> 1.5.13-1

2005-03-07 Thread Andrew Schulman
> Problem description: > Having a background job running, even in the lowest priority (low), > execution of pipes is extremly slow. Everything else seems to run fine. > > That's really weired, because at cygwin startup all scripts in > /etc/profile.d are sourced, which are using a lot of pipes. Th

Slow pipes after upgrade cygwin 1.5.12-1 -> 1.5.13-1

2005-03-07 Thread Rainer Emrich
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Problem description: Having a background job running, even in the lowest priority (low), execution of pipes is extremly slow. Everything else seems to run fine. That's really weired, because at cygwin startup all scripts in /etc/profile.d are sourced, w

Re: emacs with libungif (solved)

2005-03-07 Thread Brian Dessent
shih lin wrote: > and lsof cmmand not found, nor is sysinternals in win xp http://www.sysinternals.com/ -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ:

emacs with libungif (solved)

2005-03-07 Thread shih lin
network part need help, tested info in http://geocities.com/fsshl/firewalle10.htm and lsof cmmand not found, nor is sysinternals in win xp eric [EMAIL PROTECTED] ~ $ find /cygdrive/c/. | grep sysinternals find: /cygdrive/c/./hiberfil.sys: No such file or directory find: /cygdrive/c/./pagefi

Re: passwordless ssh (2) failing

2005-03-07 Thread Isaiah
I'm not sure if it's a known issue; no one has responded to my post about it. I have not found a fix yet. I also searched the archives prior to my post (attached) and found nothing. On Sun, Mar 06, 2005 at 11:55:48AM -0500, Charles Galpin wrote: > So does this mean this is a known issue? Is t

Re: compile in cygwin

2005-03-07 Thread Brian Dessent
Duong Duong wrote: > > I download an component buibded in linux and recopiled > it in cygwin but gcc showed somne errors. One of them > are the error in string.h file. > I attach this source code with this email. It is open > source VietNamese keyboard for linux. > Could you help me? Thanks This