Hang when connecting with XFree86

2003-07-25 Thread John Bäckstrand
I get this when connecting to my debian machine. I can login, and I see the KDE start-screen and it initializing mouse etc, but when it comes to window managers, it hangs. I dont know how to further debug this. The server Im connecting to is 4.2.1-6, and cygwin is at latest as of today. Do I need

Re: Build failure on current CVS

2003-07-25 Thread Alexander Gottwald
On Thu, 24 Jul 2003, Harold L Hunt II wrote: Looks like the CVS tree has stopped building recently. Anyone got any ideas? Harold rm -f x11trans.o gcc -c -O2 -fno-strength-reduce -Wall -Wpointer-arith-I../.. -I../../exports/include -D__i386__ -DWIN32_LEAN_AND_MEAN

Re: Hang when connecting with XFree86

2003-07-25 Thread Harold L Hunt II
John, Please ensure me that you have only a single copy of cygwin1.dll on your system. For more information, see: http://xfree86.cygwin.com/docs/faq/cygwin-xfree-faq.html#q-status-access-violation You don't need to worry about the version of XFree86 on your Debian box being compatible with

Disable IPv6 on Cygwin

2003-07-25 Thread Harold L Hunt II
Patch is attached that does exactly what the subject says. IPv6 is not currently supported on Cygwin. Harold Index: cygwin.cf === RCS file: /cvs/xc/config/cf/cygwin.cf,v retrieving revision 3.50 diff -U3 -r3.50 cygwin.cf ---

Re: (patch seq: 5714) Disable IPv6 on Cygwin

2003-07-25 Thread Marc Aurele La France
On Fri, 25 Jul 2003, Harold L Hunt II wrote: Patch is attached that does exactly what the subject says. IPv6 is not currently supported on Cygwin. So Cygwin #define's AF_INET6? Otherwise, this patch is not needed. Marc.

Re: (patch seq: 5714) Disable IPv6 on Cygwin

2003-07-25 Thread Harold L Hunt II
Marc Aurele La France wrote: On Fri, 25 Jul 2003, Harold L Hunt II wrote: Patch is attached that does exactly what the subject says. IPv6 is not currently supported on Cygwin. So Cygwin #define's AF_INET6? Otherwise, this patch is not needed. socket.h in Cygwin has a #define for AF_INET6,

Re: (patch seq: 5714) Disable IPv6 on Cygwin

2003-07-25 Thread Alexander Gottwald
On Fri, 25 Jul 2003, Marc Aurele La France wrote: IPv6 is not currently supported on Cygwin. So Cygwin #define's AF_INET6? Otherwise, this patch is not needed. yes. /usr/include/cygwin/socket.h: #define AF_INET623 /* IP version 6 */ bye ago --

Re: (patch seq: 5714) Disable IPv6 on Cygwin

2003-07-25 Thread Marc Aurele La France
On Fri, 25 Jul 2003, Harold L Hunt II wrote: Patch is attached that does exactly what the subject says. IPv6 is not currently supported on Cygwin. So Cygwin #define's AF_INET6? Otherwise, this patch is not needed. socket.h in Cygwin has a #define for AF_INET6, even though that support

Re: (patch seq: 5714) Disable IPv6 on Cygwin

2003-07-25 Thread Marc Aurele La France
On Fri, 25 Jul 2003, Harold L Hunt II wrote: Patch is attached that does exactly what the subject says. IPv6 is not currently supported on Cygwin. Done. Marc. +--+---+ | Marc Aurele La France | work:

RE: Compiling Lesstif on Cygwin

2003-07-25 Thread Gary Nicholson
Brian, Thanks for taking time to reply to my email about Compiling Lesstif on Cygwin. Thanks for referring me to the cygwin-xfree mailing list. I've tried quite a few things since I posted the email you answered. I reinstalled the lesstif version you recommended and verified the compiler

RE: Compiling Lesstif on Cygwin

2003-07-25 Thread Igor Pechtchanski
Gary, The compiler string: gcc -I/usr/X11R6/include -L/usr/X11R6/lib \ -lXm -lXt -lX11 hello.c -o hello The above is a classic C beginner's mistake: the libraries go to the *end* of the compile command, i.e., try gcc -I/usr/X11R6/include -L/usr/X11R6/lib hello.c -o hello -lXm -lXt -lX11

RE: Compiling Lesstif on Cygwin

2003-07-25 Thread Brian Ford
On Fri, 25 Jul 2003, Gary Nicholson wrote: Having done those things, I get the following error: undefined reference to '_XtVaAppInitialize' Do you know what's happening? That reference should have been resolved by -lXt. The compiler string: gcc -I/usr/X11R6/include

Re: (patch seq: 5714) Disable IPv6 on cygwin

2003-07-25 Thread Harold L Hunt II
Chris, Christopher Faylor wrote: #define AF_INET6 23 /* IP version 6 */ I've if 0'ed that line for the next cygwin release, coming soon to a mirror near you. Thanks for the heads-up. I will leave in the disabling of IPv6 until I hear that it is finished and stable in Cygwin. Harold

RE: Compiling Lesstif on Cygwin

2003-07-25 Thread Gary Nicholson
Igor, Yes, this is very good. Moving the libraries to the end helps. I find that I also have to add two additional libraries: -lSM and -lICE Is this to be expected? When I add the libraries, I get a successful compile and the application runs. I am very pleased. It's my first *tif

Patch for wincutpaste.c build failure

2003-07-25 Thread Harold L Hunt II
Patch applies to xc/programs/Xserver/hw/xwin directory. Adds regionstr.h to wincutpaste.c above miscstruct.h, which now depends upon the former header. Has no effect on other platforms. Harold Index: xwin/win.h === RCS file: