Re: Setup.exe: Font issue

2003-06-01 Thread Benjamin Riefenstahl
Hi Gary, Sorry for this long reply. ;-) Gary R. Van Sickle [EMAIL PROTECTED] writes: I'm guessing that the real problem isn't the particular font used, but rather some code somewhere that isn't doing the ridiculously arcane Dialog Units - Pixels - Font Size conversions quite right and/or

Re: Setup.exe: Mouse wheel

2003-06-01 Thread Benjamin Riefenstahl
Hi Robert, Robert Collins [EMAIL PROTECTED] writes: Lack of time, and lack of feedback - there's been no commentary. Sure, understood. Finally it's not obviously the Right Thing to do. It seems to me we'd want to trap those events and translate them in the rest of the choose event loop,

Re: problem: occasional keystroke doubling (a known issue?)

2003-06-01 Thread Ruth Ivimey-Cook
At 19:43 28/05/2003, Harold L Hunt II wrote: Now, if I could only find a way to turn this off programmatically, once and for all. This X key repeat feature is completely unnecessary since Windows handles key repeats for us. I tried to interface with the same code that xset interfaces with,

Re: [ANNOUNCEMENT] Server Test 88

2003-06-01 Thread Earle F. Philhower III
Howdy Harold, It looks like the XWin.rc you were working on got put into this version causing the icon munging in the exit dialog. The code I sent works only the older version w/o the dlgframe style. --- xwin_88/XWin.rc 2003-05-28 20:51:51.0 -0700 +++ xwin/XWin.rc2003-05-31

Re: [ANNOUNCEMENT] Server Test 88

2003-06-01 Thread Colin Harrison
Hi, Exit Confirmation:- Tried Earle's fix for XWin.rc..it makes sense to be either a Caption or a Dialog Frame but not both together! MSDN agree on this (somewhere!) I bet the differences between drivers accounts for the reason why I only see the overlay bug. Earle's fix worked for me. All the

Re: [ANNOUNCEMENT] Server Test 88

2003-06-01 Thread Lev Bishop
Icons now work for me. No offense, but they're fairly ugly though. The 'big' version I get when alt-tabbing is OK for some (like xclock, oclock, xload) and not so good for others (xtriangles, xrubik, xfig), but the smaller versions that go in the window's title bar and on the taskbar, they're

Re: [ANNOUNCEMENT] Server Test 88

2003-06-01 Thread Earle F. Philhower III
Howdy Lev, More interesting stuff with timers, held keys, held mouse buttons: Firstly, the timer doesn't even get created every time. I can demonstrate this by starting xwin with just one xterm, and running xeyes. Normally if I move the mouse out of the xterm then about half a second later the x

Re: [ANNOUNCEMENT] Server Test 88

2003-06-01 Thread Harold L Hunt II
Biju, Biju G C wrote: --- Harold L Hunt II [EMAIL PROTECTED] wrote: Colin, Colin Harrison wrote: Hi, All works for me, and yes the icons are now faultless. To qualify, I only tested 16/24/32 bit 1280x1024 on my ATI Rage Pro + Pentium III on XP Pro SP1! Exit and Cancel could have 'hot keys'

Re: [ANNOUNCEMENT] Server Test 88

2003-06-01 Thread Harold L Hunt II
Harold L Hunt II wrote: Biju, Biju G C wrote: --- Harold L Hunt II [EMAIL PROTECTED] wrote: Colin, Colin Harrison wrote: Hi, All works for me, and yes the icons are now faultless. To qualify, I only tested 16/24/32 bit 1280x1024 on my ATI Rage Pro + Pentium III on XP Pro SP1! Exit and

[ANNOUNCEMENT] Server Test 89

2003-06-01 Thread Harold L Hunt II
Links: I just posted Test 89 to the server development page: http://xfree86.cygwin.com/devel/shadow/ You can install the Test 89 package via setup.exe by selecting the following version of the XFree86-xserv package: 4.2.0-40 Server Test Series binary and source code releases are now

Updated on sourceware: XFree86-xserv-4.2.0-40

2003-06-01 Thread Harold L Hunt II
The XFree86-xserv-4.2.0-40 package has been updated in the Cygwin distribution. Changes: 1) winmultiwindowwindow.c/winTopLevelWindowProc() - Rework the mouse polling timer so that it is attached to the root-level window. This prevents multiple mouse polling timers from being created, which was

Re: [ANNOUNCEMENT] Server Test 89

2003-06-01 Thread Colin Harrison
Hi, Looks good to me. Unfortunately I can only test on WinXP and Win2003, I hope someone checks on 95/98/ME. Are we still going to try to get rid of the mouse polling timer? I must admit xeyes is a bit sluggish, for me, when the pointer is out of area, but this isn't a 'show stopper'! Harold's

XWin Icon Fidelity

2003-06-01 Thread Colin Harrison
Hi, On multiwindow, picking up on Lev's comment on icons. The XWin X icon displayed in the tray isn't as good looking as the default X icon for say an xterm in the task bar. Looking with the XP Magnifier it is probably either an aliasing effect, or a mask defect? That is on XP with an ATI Rage

Re: Should PERLIO=no_crlf be the default on Cygwin?

2003-06-01 Thread Max Bowsher
Gerrit P. Haase wrote: I would prefer to have it like it is on Unix, read and write back what you get, never do any conversion, why should I do a LF - CRLF conversion for someone who lives on a text mount? Why should I do the conversion backwards? *You* shouldn't. But you should allow Cygwin

Re: Should PERLIO=no_crlf be the default on Cygwin?

2003-06-01 Thread Max Bowsher
Gerrit P. Haase wrote: Hallo Max, Am Freitag, 30. Mai 2003 um 17:47 schriebst du: I know very little about perlio, but wouldn't defaulting to stdio cause Perl to obey Cygwin mount modes? From perlrun.pod: An unset or empty PERLIO is equivalent to :stdio. The problem is that it will be

using cygwin under dos

2003-06-01 Thread David Meltzer
hello and thanks for reading this, is it possible to the cygwin tools under dos. i am looking for a way to use the dd command to copy a hard drive image. i am afraid to use this command under windows since windows would be writing to the drive as i am trying to copy it. being new to linux, i am

Re: Should PERLIO=no_crlf be the default on Cygwin?

2003-06-01 Thread Tom Rodman
Gerrit: Your plan to make PERLIO=no_crlf a default sounded great, but: bash-2.05b$ uname -r;perl -v|grep 'This is' 1.3.22(0.78/3/2) This is perl, v5.8.0 built for cygwin-multi-64int bash-2.05b$ printf \r\n\n|PERLIO=no_crlf perl -pe '1;'|od -a 000 cr nl cr nl 004

Re: Should PERLIO=no_crlf be the default on Cygwin?

2003-06-01 Thread Greg Matheson
On Sat, 31 May 2003, Gerrit P. Haase wrote: #!/usr/bin/perl open OUTFILE, :crlf, text.txt; print OUTFILE This is a test.\n; close OUTFILE; Oh, yeh. That works. [EMAIL PROTECTED] ~ $ perl -e 'open OUTFILE,:crlf,text.txt;print OUTFILE \n;' ; cat text.txt|od -a 000 cr nl 002 [EMAIL

cygipc/cygwin-daemon

2003-06-01 Thread Sven Köhler
hi, i just want to know, how far the development of the cygipc-replacement is. i'm just interested in that technique. BTW: what does the cygwin-daemon do different? I always wondered, why cygipc needs a deamon-process, because as far as i know, a DLL is only loaded once, and so the

Re: ODBC PHP4

2003-06-01 Thread Sven Köhler
i'm trying to build unixODBC PHP with ODBC support on CYGWIN. There should perhaps be a possibility to bridge Windows' ODBC to Cygwin, so that you can compile PHP with Windows' ODBC. Perhaps all you need are some header-files, but i'm not to sure about that, because Windows DLLs and Cygwin

cygwin apache with php - how to connect to database

2003-06-01 Thread Cary Lewis
I am attempting to use the Cygwin version of the Apache web server in a dynamic database system. Cygwin and apache with mod_php work fine. But the database functions odbc_connect produces a undefined function error. Where can I found the appropriate .dll? How do I install it.

apache cygwin package hangs when MaxRequestsPerChild reached!

2003-06-01 Thread Christopher B. Liebman
It seems that there is a bug somewhere in the server pool handling in apache under cygwin, When MaxRequestsPerChild is reached it hangs! Repeat by setting MaxRequestsPerChild to 5 and making sequental requests... the 6'th times out. I'm running the latest cygwin and the cygwin apache package.

The standard library version in g++

2003-06-01 Thread Alex Vinokur
How can we know what is version of the standard library of g++? Thanks, == Alex Vinokur mailto:[EMAIL PROTECTED] http://www.simtel.net/pub/oth/19088.html http://sourceforge.net/users/alexvn ==

Re: Should PERLIO=no_crlf be the default on Cygwin?

2003-06-01 Thread Gerrit P. Haase
Hallo Greg, Am Samstag, 31. Mai 2003 um 17:00 schriebst du: Oops. [EMAIL PROTECTED] ~ $ export PERLIO=bytes $ perl -e 'open OUTFILE,:crlf,text.txt;print OUTFILE \n;' ...segfaults. This is an official PERLIO layer, set it to PERLIO=raw and you get no segfaults. Well, perl should never

Re: Should PERLIO=no_crlf be the default on Cygwin?

2003-06-01 Thread Gerrit P. Haase
Hallo Max, Am Samstag, 31. Mai 2003 um 15:06 schriebst du: I know very little about perlio, but wouldn't defaulting to stdio cause Perl to obey Cygwin mount modes? From perlrun.pod: An unset or empty PERLIO is equivalent to :stdio. The problem is that it will be superseeded for platforms

Re: Should PERLIO=no_crlf be the default on Cygwin?

2003-06-01 Thread Gerrit P. Haase
Hallo Tom, Am Samstag, 31. Mai 2003 um 16:13 schriebst du: Gerrit: Your plan to make PERLIO=no_crlf a default sounded great, but: bash-2.05b$ uname -r;perl -v|grep 'This is' 1.3.22(0.78/3/2) This is perl, v5.8.0 built for cygwin-multi-64int bash-2.05b$ printf

Re: The standard library version in g++

2003-06-01 Thread Martin Gainty
g++ --version Martin - Original Message - From: Alex Vinokur [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, May 31, 2003 1:22 PM Subject: The standard library version in g++ How can we know what is version of the standard library of g++? Thanks,

Re: ODBC PHP4

2003-06-01 Thread Martin Gainty
PHP has a configuration file for this Read http://www.phpbuilder.com/manual/configuration.php for help in Unified ODBC Configuration Directives skål Martin - Original Message - From: Sven Köhler [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, May 31, 2003 11:23 AM Subject: Re: ODBC

Trivial change request for autoconf-wrapper

2003-06-01 Thread Max Bowsher
The current autoreconf wrapper doesn't know about the --warnings option. The logic is already there for autoconf, etc. so the only change needed to the package is: echo opt_warnings autoreconf.options Thanks, Max. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem

libncurses

2003-06-01 Thread David Knox
I got into situation trying to compile an application with GCC under cygwin. When I ran configure all of the C++ test snips failed. I checked the command line that was being used to compile the snips and tried it from the command line myself. It turned out that my last update of libncurses from

Re: libncurses

2003-06-01 Thread Max Bowsher
David Knox wrote: I got into situation trying to compile an application with GCC under cygwin. When I ran configure all of the C++ test snips failed. I checked the command line that was being used to compile the snips and tried it from the command line myself. It turned out that my last update

RE: libncurses

2003-06-01 Thread David Knox
But there is a package ncurses: Libraries for terminal handling that given its label and description, it can easily be assumed that it really does contain libncurses. That's all I'm trying to say. -- dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

Re: libncurses

2003-06-01 Thread Max Bowsher
David Knox wrote: But there is a package ncurses: Libraries for terminal handling that given its label and description, it can easily be assumed that it really does contain libncurses. That's all I'm trying to say. Rather that firing off emails, perhaps you could take the time to look

Re: libncurses

2003-06-01 Thread Christopher Faylor
On Sat, May 31, 2003 at 04:07:49PM -0600, David Knox wrote: But there is a package ncurses: Libraries for terminal handling that given its label and description, it can easily be assumed that it really does contain libncurses. That's all I'm trying to say. There are packages specifically named

[ANNOUNCE] LibXML2 (2.5.7) test packages available

2003-06-01 Thread Elfyn McBratney
I have uploaded test packages for LibXML2 version 2.5.7 to sources.redhat.com . The LibXML2 source and binary packages *should* be available on most mirrors by the beginning of next week. The source package does not *yet* contain a patch file; for some reason (me being tired?) `diff' was

Re: [ANNOUNCE] LibXML2 (2.5.7) test packages available

2003-06-01 Thread Martin Gainty
Elfyn- Wheres the doc? Thanks, -Martin - Original Message - From: Elfyn McBratney [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, May 31, 2003 7:12 PM Subject: [ANNOUNCE] LibXML2 (2.5.7) test packages available I have uploaded test packages for LibXML2 version 2.5.7 to

Re: [ANNOUNCE] LibXML2 (2.5.7) test packages available

2003-06-01 Thread Elfyn McBratney
Elfyn- Wheres the doc? Thanks, -Martin If you mean the documentation for the library, it's under /usr/share/doc(libxml2(-python)-2.5.7), with a Cygwin README in /usr/doc/Cygwin . Elfyn _ Sign-up for a FREE BT Broadband connection

Re: [ANNOUNCE] LibXML2 (2.5.7) test packages available

2003-06-01 Thread Elfyn McBratney
Elfyn- Wheres the doc? Thanks, -Martin If you mean the documentation for the library, it's under /usr/share/doc(libxml2(-python)-2.5.7), s%share/doc%share/doc/% Elfyn _ On the move? Get Hotmail on your mobile phone

Re: [ANNOUNCE] LibXML2 (2.5.7) test packages available

2003-06-01 Thread Max Bowsher
Elfyn McBratney wrote: I have uploaded test packages for LibXML2 version 2.5.7 to sources.redhat.com . The LibXML2 source and binary packages *should* be available on most mirrors by the beginning of next week. The source package does not *yet* contain a patch file; for some reason (me being

Re: The standard library version in g++

2003-06-01 Thread Alex Vinokur
Martin Gainty [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] g++ --version $ g++ --version g++ (GCC) 3.2 20020927 (prerelease) Copyright (C) 2002 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for

O_NONBLOCK has no effect on stdout

2003-06-01 Thread Dave Johnson
Setting stdout to non-blocking doesn't have an effect, calls to write() and the like block the process until the blocking condition is removed. Note that the fcntl() returns success. Running the below test program produces: under cygwin: $ ./test Starting, sleeping 2 seconds, hit ctrl-s test