Re: libXinerama ?

2004-05-24 Thread Frédéric L. W. Meunier
On Sun, 23 May 2004, Doug Wyatt wrote:
I'm trying to built the latest ICEwm package for Cygwin (current),
but it appears to need/want libXinerama -
   checking for XineramaQueryScreens in -lXinerama... no
   configure: error: Xinerama can not be found
I've only found 1 hit in a search of the online archive, dated
23Mar2003.  Also, it doesn't show up in a Cygwin package search,
though Xinerama is in xorg-x11-bin-dlls-6.7.0.0.4-src and in
xorg-x11-devel-6.7.0.0.4-src.
I've downloaded the two src packages but at least at first glance,
I'm out of my depth w/resp to trying to build libXinerama.
Can someone tell me how to obtain a libXinerama for Cygwin ?
I don't think it's available, but you don't need it. Just pass 
--disable-xinerama.

And if by latest you mean 1.2.14pre16, file a bug report for 
the author. Xinerama isn't mandatory, so the test shouldn't 
make configure stop.

--
How to contact me - http://www.pervalidus.net/contact.html


ABNT2 keyboard problem with new X

2004-04-20 Thread Frédéric L. W. Meunier
Using all latest packages.

The key with /?=B0 stopped working under anything (XTerm,
xedit, rxvt for X...).

I'm attaching my XWin.log.

I've read
http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-xkb-not-working

Affected keycodes are

keycode  89 = slash question degree

Japanase is also broken for Haro -
http://sources.redhat.com/ml/cygwin-xfree/2004-04/msg00244.html

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: .xinitrc ?

2004-04-09 Thread Frédéric L. W. Meunier
On Fri, 9 Apr 2004, Danilo Turina wrote:

 Frédéric L. W. Meunier wrote:
  twm:  another window manager is already running on screen 0?
  twm:  unable to find any unmanaged screens
 
  If I use .xinitrc with exec twm, startx reports the above.

 If you use startx, by default, the multi-window mode is used (startx
 passed -multiwindow to XWin.exe) and, hence,  the native Windows window
 manager is used as X window manager.

  The same using another window manager. It works fine if I add
  it to startxwin.sh. It used to work with XFree86.

 Instead using startxwin.sh -multiwindow is not passed to XWin.exe and
 you have to old behavior.

Thanks. I wonder why the default changed though. Before
startx only had defaultserverargs=, and now it has
defaultserverargs=-multiwindow -clipboard. Or was
-multiwindow the default with XFree86 ?

Anyway, everythins is working fine now. I'm used to .xinitrc
and startx on Linux :)

-- 
How to contact me - http://www.pervalidus.net/contact.html


.xinitrc ?

2004-04-08 Thread Frédéric L. W. Meunier
twm:  another window manager is already running on screen 0?
twm:  unable to find any unmanaged screens

If I use .xinitrc with exec twm, startx reports the above.
The same using another window manager. It works fine if I add
it to startxwin.sh. It used to work with XFree86.

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: Re: [Dev-C++] Help compiling a GTK+ program

2004-03-30 Thread Frédéric L. W. Meunier
Wrong list. Try [EMAIL PROTECTED]

On Tue, 30 Mar 2004, Jameel Jaasab A'lkedir wrote:


 I did the modifications you suggested, but now I am even more confused.
 The follwing error is something I had never seen before, thus I find it very 
 alarming. I know that it is just because I am new at GTK+ and that someone with 
 you'r experience will have no problems spotting the error. Any way, here is the 
 error message I am now getting
 ===
 gcc.exe: cannot specify -o with -c or -S and multiple compilations

 make.exe: *** [../Downloads/Programs/Gtk/gtk/chapter2/gtkfun.o] Error 1

 Execution terminated
 
 And this is what my Makefile.win looks like:

 ~~~
 # Project: Gtk_Test
 # Makefile created by Dev-C++ 4.9.8.5

 CPP  = g++.exe
 CC   = gcc.exe
 WINDRES = windres.exe
 RES  =
 OBJ  = ../Downloads/Programs/Gtk/gtk/chapter2/gtkfun.o $(RES)
 LINKOBJ  = ../Downloads/Programs/Gtk/gtk/chapter2/gtkfun.o $(RES)
 LIBS =  -LC:/DEV-CPP/lib -LC:/Dev-Cpp/Lib/libz.a 
 -LC:/Dev-Cpp/Lib/libglib-2.0.dll.a -LC:/Dev-Cpp/Lib/libgtk.dll.a 
 -LC:/Dev-Cpp/Lib/libgdk.dll.a -mwindows -lgtk-win32-2.0 -lgdk-win32-2.0 
 -lgthread-2.0 -lgdi32 -lole32 -luuid -latk-1.0 -lgdk_pixbuf-2.0 -lpangowin32-1.0 
 -lgdi32 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl  -liconv
 INCS =  -IC:/DEV-CPP/include  -IC:/Dev-Cpp/include/gtk-2.0  
 -IC:/Dev-Cpp/include/gtk-2.0/gdk  -IC:/Dev-Cpp/include/gtk-2.0/gdk-pixbuf  
 -IC:/Dev-Cpp/include/gtk-2.0/gtk  -IC:/Dev-Cpp/include/gdk  
 -IC:/Dev-Cpp/include/atk-1.0/atk
 CXXINCS =  -IC:/DEV-CPP/include/c++  -IC:/DEV-CPP/include/c++/mingw32  
 -IC:/DEV-CPP/include/c++/backward  -IC:/DEV-CPP/include  
 -IC:/Dev-Cpp/include/gtk-2.0  -IC:/Dev-Cpp/include/gtk-2.0/gdk  
 -IC:/Dev-Cpp/include/gtk-2.0/gdk-pixbuf  -IC:/Dev-Cpp/include/gtk-2.0/gtk  
 -IC:/Dev-Cpp/include/gdk  -IC:/Dev-Cpp/include/atk-1.0/atk
 BIN  = Gtk_Test.exe
 CXXFLAGS = $(CXXINCS)
 CFLAGS = $(INCS)C:\Dev-Cpp\include\gtk-2.0 C:\Dev-Cpp\include\atk-1.0 
 C:\Dev-Cpp\include\pango-1.0 C:\Dev-Cpp\lib\glib-2.0 C:\Dev-Cpp\include\glib-2.0 
 C:\Dev-Cpp\lib\glib-2.0 \include C:\Dev-Cpp\lib\gtk-2.0\include

 .PHONY: all all-before all-after clean clean-custom

 all: all-before Gtk_Test.exe all-after


 clean: clean-custom
   rm -f $(OBJ) $(BIN)

 $(BIN): $(OBJ)
   $(CPP) $(LINKOBJ) -o Gtk_Test.exe $(LIBS)

 ../Downloads/Programs/Gtk/gtk/chapter2/gtkfun.o: 
 ../Downloads/Programs/Gtk/gtk/chapter2/gtkfun.c
   $(CC) -c ../Downloads/Programs/Gtk/gtk/chapter2/gtkfun.c -o 
 ../Downloads/Programs/Gtk/gtk/chapter2/gtkfun.o $(CFLAGS)
 ~~


 Look, I want you to know that I am very thankful for all the help you are giving me, 
 so... Thanks again!
 * E-Mail Policy
  http://www.vif.com/users/escalante/Email_Policy.html
 - Original Message -
 From: Denis Korzunov
 Sent: 3/28/2004 12:11:43 PM
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: Re: [Dev-C++] Help compiling a GTK+ program

  Friday, March 26, 2004, 10:52:00 AM, you wrote:
  JJAl I down loaded the GTK+ from
  JJAl 'http://www.dropline.net/gtk/download.php' I followed the
  JJAl [INCLUDE]\gtk-2.0 [INCLUDE]\gtkdeps-2.0 [INCLUDE]\atk-1.0
  JJAl [INCLUDE]\pango-1.0 [INCLUDE]\glib-2.0 [LIB]\glib-2.0
  JJAl [LIB]\glib-2.0\include [LIB]\gtk-2.0\include
  JJAl where does this go?
  Put it into:
  Project-project options-parameters-Compiler
 
  JJAl What else do I need to do to compile my GTK+ program?
 
  Note, that both linker and compiler options  must be a single line
  without any Enter's in options (or some strange characters in makefile)
  --
  Best regards,
   Denis

-- 
http://www.pervalidus.net/contact.html


Re: Upcoming X.org release and splitting packages

2004-03-18 Thread Frédéric L. W. Meunier
bOn Thu, 18 Mar 2004, Thomas Dickey wrote:

 On Thu, 18 Mar 2004, Harold L Hunt II wrote:

  Frédéric L. W. Meunier wrote:
   What are the main differences between it and XFree86 4.4.0 ?
   Are things like XTerm 185 included, or everything that goes to
   XFree86 can't to X.org ?
 
  I don't know about XTerm 185 specifically, but this release should
  contain all fixes and features that were added to the XFree86 project's
  source code tree for the 4.4.0 release.

 xterm patch #185 is post-4.4, and according to fd.o's CVS is not in the
 release-1 branch.

It may be worth to make it a separate package and start using
your sources from http://invisible-island.net/xterm/ when
they're newer (most of the time).

-- 
http://www.pervalidus.net/contact.html


Re: Upcoming X.org release and splitting packages

2004-03-18 Thread Frédéric L. W. Meunier
On Thu, 18 Mar 2004, Harold L Hunt II wrote:

 Thomas Dickey wrote:

  However, I do make xterm patches more frequently than XFree86 releases
  occur - that's simply a matter of 60,000 lines of code compared to 3
  million...

 I think this is reason alone for it to be a separate package.

 I have this built as a Cygwin package using the default configure
 options at the moment.  The only patch required was to Makefile.in
 (attached) to get it to stop appending .exe to the uxterm shell script.

 Thomas, can you recommend any configure options we should be using?  I
 can think that the following might be useful:

 --enable-toolbar
 --enable-wide-chars
 --with-Xaw3d

 Any thoughts?

I think most are enabled by default. On Linux I only added
--with-terminal-type=xterm-xfree86 --enable-256-color
--enable-load-vt-fonts --disable-tek4014 --enable-toolbar
--disable-vt52 --enable-luit.

--with-terminal-type=xterm-xfree86 was just so I wouldn't get
it set to xterm by default (lynx etc are black and white with
it).

--disable-tek4014 --disable-vt52 seems to be recommend because
it adds bloat and only a few people use it.

You can presumably replace the xc/program/xterm/ with
xterm-185/ and the make World will use it.

I don't think --with-Xaw3d is worth, as it adds another
dependency.

Thomas, am (are) I (we) missing anything ? Are there any other
options that are enabled or disabled in the xc version ?

-- 
http://www.pervalidus.net/contact.html


Re: Upcoming X.org release and splitting packages

2004-03-18 Thread Frédéric L. W. Meunier
On Fri, 19 Mar 2004, Harold L Hunt II wrote:

 Frédéric L. W. Meunier wrote:

  --with-terminal-type=xterm-xfree86 was just so I wouldn't get
  it set to xterm by default (lynx etc are black and white with
  it).

 I'm not sure this would be a good idea to change the default if we were
 not doing this before anyway.  Then again, I would rather defer
 judgement on this one to someone with more knowledge on this subject.

Question to Thomas: Why make xterm the default if all (?)
ncurses applications run in black and white with it ? Sure, you
can change .Xdefaults etc, but go figure.

  --disable-tek4014 --disable-vt52 seems to be recommend because
  it adds bloat and only a few people use it.

 Might not be a bad idea, but the .exe is only 233 KiB at the moment.  It
 isn't exactly bloated.  :)

According to INSTALL:

This reduces the executable size by 17% (checked 1999/3/13).

Thomas should update it. I didn't notice 1/4 of it in the
size.

Maybe --disable-vt52 isn't worth. It isn't listed as bloat.

  You can presumably replace the xc/program/xterm/ with
  xterm-185/ and the make World will use it.

 The idea here was to break xterm into its own package so it can be
 updated with more frequency and possibly handed off to someone else for
 maintenance.  I have done this with the new 'xterm' package in
 setup.exe... should hit mirrors by tomorrow.

Sure. You just need to make sure all options enabled by a build
with xmkmf are with one using configure.

Isn't there an easy way to check ? At least here all options
that were in my XFree86 build and I didn't disable in configure
are reported by xterm --help / xterm -h.

-- 
http://www.pervalidus.net/contact.html


Re: Upcoming X.org release and splitting packages

2004-03-17 Thread Frédéric L. W. Meunier
On Wed, 17 Mar 2004, Harold L Hunt II wrote:

 We will soon (possibly next week) be releasing a new version
 of all Cygwin/X packages built from the source code tree
 managed by X.org and hosted on freedesktop.org.  This will be
 a very good thing since all of the Cygwin/X developers will
 be able to stay in sync with the exact code that is in
 distribution via CVS, compared to our current system today
 where the code in distribution has many differences from that
 in CVS.  The rebuild won't mean much to end users: all
 libraries remain binary compatible with the current packages
 and the contents of the release (programs, etc.) will be
 almost identical.

What are the main differences between it and XFree86 4.4.0 ?
Are things like XTerm 185 included, or everything that goes to
XFree86 can't to X.org ?

 2) Split the bin package into at least a few pieces (but not too many
 pieces):

 2a) bin-dlls will contain the .dll files only.  This would allow
 packages like emacs or xemacs to depend only on bin-dlls instead of on
 the entire bin package which includes programs not used by emacs nor xemacs.

Maybe do the same for Lesstif ?

 2b) bin-lndir would contain the lndir utility.  lndir has
 no dependence on X libs and can be used by any programmer for
 non-X projects.

Nice. lndir is very useful when a /path/to/configure options
doesn't work as expected due to lack of Automake support or
brokeness.

 2c) bin-apps would contain all other applications
 originally contained in bin but not contained in bin-dlls
 nor bin-lndir.

I thought you'd split it more, like only adding what's really
essential, and move xbiff, xclock, xedit, xman, etc to a
separate package. But how to know what's essential ? And I
guess imake, makedepend, /usr/X11R6/lib/X11/config, etc could
go in devel ?

-- 
http://www.pervalidus.net/contact.html


XFree86-base-4.3.0-3

2004-03-14 Thread Frédéric L. W. Meunier
setup.hint:

requires: cygwin cygipc expat termcap libncurses6 terminfo zlib
gettext libintl libintl1 ash pcre XFree86-bin XFree86-etc
XFree86-lib XFree86-fenc XFree86-fnts XFree86-startup-scripts
XFree86-xserv

Shouldn't libncurses6 be replaced by libncurses7, libintl and
libintl1 removed, and libintl2 added ?

The same in Runtime requirements  and Build requirements
for XFree86-base-4.3.0.README.

-- 
http://www.pervalidus.net/contact.html


Re: XFree86-base-4.3.0-3

2004-03-14 Thread Frédéric L. W. Meunier
On Sun, 14 Mar 2004, Frédéric L. W. Meunier wrote:

 setup.hint:

 requires: cygwin cygipc expat termcap libncurses6 terminfo zlib
 gettext libintl libintl1 ash pcre XFree86-bin XFree86-etc
 XFree86-lib XFree86-fenc XFree86-fnts XFree86-startup-scripts
 XFree86-xserv

 Shouldn't libncurses6 be replaced by libncurses7, libintl and
 libintl1 removed, and libintl2 added ?

gettext too ? It isn't needed at runtime.

 The same in Runtime requirements  and Build requirements
 for XFree86-base-4.3.0.README.

-- 
http://www.pervalidus.net/contact.html


Re: XFree86-base-4.3.0-3

2004-03-14 Thread Frédéric L. W. Meunier
On Sun, 14 Mar 2004, Harold L Hunt II wrote:

 Frédéric L. W. Meunier wrote:

  On Sun, 14 Mar 2004, Frédéric L. W. Meunier wrote:
 
  libintl and
 libintl1 removed, and libintl2 added ?
 
  gettext too ? It isn't needed at runtime.

 I'll need a more thorough investigation before I touch these.
 I wasn't able to find anything using libintl* at all during
 my initial investigation, but I would appreciate it if you
 would look into it further and tell us what your method was
 (e.g. run cygpath against *.exe and *.dll in the bin package
 and report which of the three are referenced and which are
 not).  Same for gettext... I thought there was a script or
 something that used it and people were complaining a long
 time ago that it wasn't being installed automatically.
 Search the mailing list archives, it is probably one of the
 only messages referencing gettext.

It was just a guess. Since all packages were updated in 2003,
libintl and libintl1 are from 2001, and libintl2 from 2002 and
2003, I thought it you needed libintl, the latter would be the
requirement. But you're right. Here nothing returns it.
Actually, I don't do a full install, and the only things still
using libintl1 are: textutils grep findutils. Guess what ?
They're all from 2002.

And the only packages with a requirement for gettext are
mod_php4 and XFree86-base.

-- 
http://www.pervalidus.net/contact.html


Re: libungif - Depends on obsolete X libraries - Rebuild for approval by maintainer

2004-03-09 Thread Frédéric L. W. Meunier
On Tue, 9 Mar 2004, Harold L Hunt II wrote:

 Lapo Luchini wrote:

  Actually I was thinking about using --without-x in next release.
  But no other program seems to use it, except WMaker, that uses X11 anyway.
 
 There doesn't seem to be a reason to do --without-x since libungif has
 used it for two years without major problems.

These aren't really strong arguments.

Lapo is assuming that only WindowMaker uses libungif because
it's the only application linked to it in Cygwin.

You're assuming libungif should depend on XFree86 because it
worked fine with it for 2 years.

linbugif compiled with --without-x will work fine too, and also
enable other people who don't want to install XFree86 to use
the library or any tools, except gif2x11.

But, again, is it so hard to make 2 packages, one with
--without-x ?

I understand the same could be made for gd, after all only a
few people are likely using the xpm support, which is what adds
the XFree86-bin requirement.

Anyway, it's just my opinion. I really don't use both on Cygwin
(but do on a few Linux machines, where space matters).

-- 
http://www.pervalidus.net/contact.html


objdump -p /usr/bin/ddd.exe | grep 'DLL Name'

2004-03-07 Thread Frédéric L. W. Meunier
Why does objdump -p /usr/bin/ddd.exe | grep 'DLL Name' return
so many repeated DLLs ? I was doing an ldd (yes, there are 2
ldd scripts available somewhere), when I noticed it was taking
an awful amount of time. Then I used objdump, which returned
the attached.

Actually, it seems that any application linked to cygXm-2.dll
does it.

-- 
How to contact me - http://www.pervalidus.net/contact.html

ddd.txt.gz
Description: Binary data


Re: Any WebBrowser for Cygwin?

2004-01-20 Thread Frédéric L. W. Meunier
On Tue, 20 Jan 2004, Michael Henke wrote:

 I want to do X-Forwarding with my Windowx-XP-Box and am using Cygwin SSHd.
 SSH is working very fine so far. All i need is a browser (except textbrowser
 like lynx!) for www.
 Is there any Webbrowser like Mozilla, Netscape or Opera available for the
 cygwin-X-Server? Where to download and how to compile/install?

You can try my Links 2 build from
http://www.pervalidus.net/cygwin/links/ or compile yourself,
but be aware Links 2 doesn't support Java, Flash, etc, and has
minimal JavaScript support. I'm pretty sure there are no other
X11 browsers for Cygwin. Well, maybe Konqueror with KDE...

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: Proper attribution of patches

2003-12-23 Thread Frédéric L. W. Meunier
On Tue, 23 Dec 2003, Brian E. Gallew wrote:

 Do you actually do anything useful?  Or do you just steal other people's
 code and then act annoying (and childish) when someone calls you on it?

You can see for yourself what he does:

http://invisible-island.net/
ftp://invisible-island.net/

Thomas, stop the discussion and go work on 2.8.5dev.17. Sorry,
I couldn't resist.

Happy Christmas and New Year to all.

-- 
http://www.pervalidus.net/contact.html


RE: Proper attribution of patches

2003-12-23 Thread Frédéric L. W. Meunier
On Tue, 23 Dec 2003, Alec Mihailovs wrote:

 I didn't follow all of the discussion and I am not a friend
 of Harold, but I would be happy to become his friend in the
 future. Harold seems to be a really nice guy spending his
 free time on the Cygwin X development.

Agreed.

 Dickey seems to be a really dick as somebody already noted,
 or a really dangerous moron as I would say.

Not at all if you follow lynx-dev, where I never had or noticed
a personal problem since I subscribed for the first time in
1998.

You can't please everyone. Some users didn't like what the mICQ
wrote at
http://www.micq.org/pipermail/micq-list/2003-December/001025.html
, others didn't like foo, and I don't like some developers...

 Only because of his persistent moronity Cygwin/XFree became
 Cygwin/X. I wonder what other people on the XFree project
 think about that? Are they the same kind of morons? If so,
 then welcome Cygwin/X and forget about existence of XFree.

Well, I don't know what Thomas does in XFree86 besides
maintaining XTerm. Anyway, too bad the whole thing moved to
personal attacks, which apparently started 2 months ago (at
least on cygwin-xfree):

http://www.cygwin.com/ml/cygwin-xfree/2003-10/msg00321.html
http://www.cygwin.com/ml/cygwin-xfree/2003-10/msg00322.html

It's fine if you don't like each other and it doesn't cause any
prejudice to the projects, but better keep the discussion off
list. 38 e-mails for such a thread is too much. I think it's
time to put an end now.

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: freenode.net - IRC channel for the project?

2003-11-01 Thread Frédéric L. W. Meunier
On Sat, 1 Nov 2003, Harold L Hunt II wrote:

 I don't want to pester the freedesktop.org folks asking them
 too many questions about IRC...

I may be able to help you. I'm fredlwm.

But first do a
/msg chanserv help
/msg chanserv help register
...

:-)

I don't even know if your nickname is registered. If it isn't,
do a
/msg nickserv help
/msg nickserv help register
...

/msg nickserv register password is enough.

-- 
How to contact me - http://www.pervalidus.net/contact.html


Server crashes when snes9x.exe is started

2003-10-30 Thread Frédéric L. W. Meunier
As soon as I start snes9x.exe 1.41-1 (a Super Nintendo emulator
- http://www.snes9x.com/) the server crashes with the
following:

xinit:  connection to X server lost.
XIO:  fatal IO error 104 (Connection reset by peer) on X server :0.0
  after 10719 requests (10623 known processed) with 0 events remaining.
XIO:  fatal IO error 104 (Connection reset by peer) on X server :0.0
  after 81713 requests (81698 known processed) with 0 events remaining.

[1]+  Donestartx

Is this a bug ? Are any applications supposed to make XWin.exe
crash ?

XWin.exe.stackdump from the 2 crashes I had with it are almost
identical. The only differences:

-0022F978  00420C7E  (0022F9D4, 007AB790, 61602238, 0022F900)
+0022F978  00420C7E  (0022F9D4, 007AB790, 61602230, 0022F900)

-0022FFC0  0040103C  (0001, 0020, 7FFDF000, F328DCF0)
+0022FFC0  0040103C  (0001, 0020, 7FFDF000, F3553CF0)

Using all latest packages on XP SP1.

http://pervalidus.port5.com/tmp/XWin.exe.stackdump.txt

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: Server crashes when snes9x.exe is started

2003-10-30 Thread Frédéric L. W. Meunier
On Thu, 30 Oct 2003, Harold L Hunt II wrote:

 Frédéric L. W. Meunier wrote:
  As soon as I start snes9x.exe 1.41-1 (a Super Nintendo emulator
  - http://www.snes9x.com/) the server crashes with the
  following:
 
  xinit:  connection to X server lost.
  XIO:  fatal IO error 104 (Connection reset by peer) on X server :0.0
after 10719 requests (10623 known processed) with 0 events remaining.
  XIO:  fatal IO error 104 (Connection reset by peer) on X server :0.0
after 81713 requests (81698 known processed) with 0 events remaining.
 
  [1]+  Donestartx
 
  Is this a bug ? Are any applications supposed to make XWin.exe
  crash ?

 Not a known bug.  No application should cause XWin.exe to crash.

 I tried this on my system (Win XP Pro SP1a + all latest patches) and
 could not reproduce the problem.

I also have Professional (I ommited it) and all latest patches.

 I tried it with both -multiwindow (uses GDI engine)

It didn't crash.

 and with -nodecoration -lesspointer (uses DirectDraw engine).

It crashed.

 Neither crashed when snes9x.exe was launched.

Before I was using -rootless -emulate3buttons -clipboard

 Try the above two tests as I did.

 Have you already loaded a ROM in snes9x.exe?  Does it cache
 this and try to load it on the next startup?  If so, perhaps
 that is causing the problem.  I do not have any ROMs, so I
 cannot test that further.

You don't need any. With -nodecoration -lesspointer or
-rootless -emulate3buttons -clipboard it crashes as soon as I
close it. I thought it crashed when I started it. I assume I
was wrong.

 Try starting with startxwin.bat instead of startx.  You could
 actually be seeing a crash in one of the sub-apps launched by
 xinit, which might be causing the server to be killed.

In fact, the error messages are different if I use IceWM or
twm. With twm it still crashes, but only displays:

xinit:  connection to X server lost.
X connection to :0.0 broken (explicit kill or server shutdown).

 Please send in /tmp/XWin.log from one of these crashes as
 well.

Attached.

Does it mean something with resolution or color depth ? Under
Display Properties I see 1024x768x32bpp.

I ran the emulator with default settings.

-- 
How to contact me - http://www.pervalidus.net/contact.htmlddxProcessArgument - Initializing default screens
winInitializeDefaultScreens - w 1024 h 768
winInitializeDefaultScreens - Returning
OsVendorInit - Creating bogus screen 0
_XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root
(EE) Unable to locate/open config file
InitOutput - Error reading config file
winDetectSupportedEngines - Windows NT/2000/XP
winDetectSupportedEngines - DirectDraw installed
winDetectSupportedEngines - Allowing PrimaryDD
winDetectSupportedEngines - DirectDraw4 installed
winDetectSupportedEngines - Returning, supported engines 001f
InitOutput - g_iNumScreens: 1 iMaxConsecutiveScreen: 1
winSetEngine - Using Shadow DirectDraw NonLocking
winAdjustVideoModeShadowDDNL - Using Windows display depth of 32 bits per pixel
winCreateBoundingWindowWindowed - User w: 1024 h: 768
winCreateBoundingWindowWindowed - Current w: 1024 h: 768
winAdjustForAutoHide - Original WorkArea: 0 0 738 1024
winAdjustForAutoHide - Adjusted WorkArea: 0 0 738 1024
winCreateBoundingWindowWindowed - WindowClient w 1024 h 738 r 1024 l 0 b 738 t 0
winCreateBoundingWindowWindowed -  Returning
winCreatePrimarySurfaceShadowDDNL - Creating primary surface
winCreatePrimarySurfaceShadowDDNL - Created primary surface
winCreatePrimarySurfaceShadowDDNL - Attached clipper to primary surface
winAllocateFBShadowDDNL - lPitch: 4096
winAllocateFBShadowDDNL - Created shadow pitch: 4096
winAllocateFBShadowDDNL - Created shadow stride: 1024
winFinishScreenInitFB - Masks: 00ff ff00 00ff
winInitVisualsShadowDDNL - Masks 00ff ff00 00ff BPRGB 8 d 24 bpp 32
winCreateDefColormap - Deferring to fbCreateDefColormap ()
winFinishScreenInitFB - returning
winScreenInit - returning
InitOutput - Returning.
MIT-SHM extension disabled due to lack of kernel support
XFree86-Bigfont extension local-client optimization disabled due to lack of shared 
memory support in the kernel
(==) winConfigKeyboard - Layout: 00010416 (00010416) 
(==) Using preset keyboard for Portuguese (Brazil, ABNT2) (10416), type 4
(EE) No primary keyboard configured
(==) Using compiletime defaults for keyboard
Rules = xfree86 Model = abnt2 Layout = br Variant = (null) Options = (null)
Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from list!
winPointerWarpCursor - Discarding first warp: 512 369
winBlockHandler - Releasing pmServerStarted
winBlockHandler - pthread_mutex_unlock () returned
winWindowProc - WM_DISPLAYCHANGE - orig bpp: 32, last bpp: 32, new bpp: 16
winWindowProc - WM_DISPLAYCHANGE - new width: 640 new height: 480
winWindowProc - Disruptive change in depth
winDisplayDepthChangeDialog

Re: Server crashes when snes9x.exe is started

2003-10-30 Thread Frédéric L. W. Meunier
On Thu, 30 Oct 2003, Frédéric L. W. Meunier wrote:

 Does it mean something with resolution or color depth ? Under
 Display Properties I see 1024x768x32bpp.

I could reproduce it with 1024x768x16bpp and 800x600x16bpp.

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: freetype2, fontconfig, and rebuild of dependent packages coming shortly

2003-10-28 Thread Frédéric L. W. Meunier
On Tue, 28 Oct 2003, Harold L Hunt II wrote:

 A release of the new freetype2 and fontconfig packages, as
 well as a rebuild of all dependent packages, will be coming
 later tonight.  Please be patient.

Is there anything wrong with fontconfig 2.2.1 ? I noticed you
mentioned 2.2.0 in the last e-mails.

The changes:
http://mail.fontconfig.org/pipermail/fontconfig/2003-June/000437.html

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: New package: freetype2-2.1.5-1, libfreetype26-2.1.5-1, libfreetype2-devel-2.1.5-1

2003-10-28 Thread Frédéric L. W. Meunier
On Tue, 28 Oct 2003, Harold L Hunt II wrote:

 In the US, ftp://archive.progeny.com/cygwin/
 is a reliable high bandwidth connection.

Maybe you should remove this one since according to
http://sources.redhat.com/ml/cygwin-apps/2003-10/msg00411.html
it's gone.

I use ftp://mirrors.kernel.org/sources.redhat.com/cygwin/ and
ftp://mirrors.rcn.net/pub/sourceware/cygwin/

I just downloaded most updated packages from the first.
freetype2 and fontconfig are still empty directories. Will
check later.

-- 
How to contact me - http://www.pervalidus.net/contact.html


XWin.exe.stackdump

2003-10-28 Thread Frédéric L. W. Meunier
Does it help ?
http://pervalidus.port5.com/tmp/XWin.exe.stackdump

I got it with all latest packages while shutdowning the server
running my latest IceWM build (the first with working
fontconfig support (--enable-gradients --enable-antialiasing).
A month ago it'd just crash at startup with the above options
enabled, but the stackdump was from IceWM. It never crashed
without them.

waiting for X server to shut down ..

xinit:  X server slow to shut down, sending KILL signal.

waiting for server to die ...

xinit:  Can't kill server

[1]+  Donestartx

I couldn't reproduce it. Can the window manager cause it ?

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: XWin.exe.stackdump

2003-10-28 Thread Frédéric L. W. Meunier
On Tue, 28 Oct 2003, Harold L Hunt II wrote:

 I don't know the context of the problem.  Sounds like you are
 working on building IceWM?

I've been using it since last month but did a new build with
fontconfig.

The server crashed once at logout time (the window manager had
already closed) and I couldn't reproduce it. I don't even know
if it's related to the new build. It could be a mere
coincidence.

I thought you might be able to know if it's a XWin bug from the
stackdump using addr2line -e XWin.exe Function, but you
probably need a -g build since here it only returns ??:0.

Apart from that, no other crashes or problems (yet).

 Frédéric L. W. Meunier wrote:

  Does it help ?
  http://pervalidus.port5.com/tmp/XWin.exe.stackdump
 
  I got it with all latest packages while shutdowning the server
  running my latest IceWM build (the first with working
  fontconfig support (--enable-gradients --enable-antialiasing).
  A month ago it'd just crash at startup with the above options
  enabled, but the stackdump was from IceWM. It never crashed
  without them.
 
  waiting for X server to shut down ..
 
  xinit:  X server slow to shut down, sending KILL signal.
 
  waiting for server to die ...
 
  xinit:  Can't kill server
 
  [1]+  Donestartx
 
  I couldn't reproduce it. Can the window manager cause it ?

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: lesstif tetex-x11 manpages not in MANPATH directory

2003-10-04 Thread Frédéric L. W. Meunier
On Sat, 4 Oct 2003, Gerrit P. Haase wrote:

 The latest LessTif  TeTeX packages are installing manpages into
 /usr/X11R6/share/man/man1, but /etc/man.conf doesn't include this path
 in the MANPATH settings.

And maybe it should follow the FHS and instead use
/usr/X11R6/man/man1 since share for man (and info) pages is
should only be used in /usr.

BTW Harold, I hope
http://sources.redhat.com/ml/cygwin/2003-09/msg01431.html is on
your queue.

-- 
How to contact me - http://www.pervalidus.net/contact.html


Weird keyboard behavior with Caps Lock key

2003-10-04 Thread Frédéric L. W. Meunier
Something strange happened minutes ago. I was typing and
suddenly all subsequent keys pressed showed as capitals, like
if something reversed the Caps Lock key. With it enabled all
showed as lower case.

Then I tested in an open rxvt from where I started the session
and everything showed right. The problem was only on Xfree86,
and I had to restart it.

I'm using all current packages and latest server. Any idea of
what might have caused it or what I can do to track it down if
it reappears ? Nothing in the logs.

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: Updated on sourceware: XFree86-xserv-4.3.0-14

2003-09-22 Thread Frédéric L. W. Meunier
On Mon, 22 Sep 2003, Alexander Gottwald wrote:

 In the logfile /tmp/Xwin.log is a line similar to this one
 winConfigKeyboard - Layout: 0407

I have the following without configuring anything:

(==) winConfigKeyboard - Layout: 00010416
(EE) No primary keyboard configured
(==) Using compiletime defaults for keyboard
Rules = xfree86 Model = pc101 Layout = us Variant = (null) Options = (null)

I'm not sure if it should have printed pc105 and pt...

But using the XF86Config:

(==) winConfigKeyboard - Layout: 00010416
(**) Using keyboard Keyboard1 as primary keyboard
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel abnt2
(**) XKB: model: abnt2
(**) Option XkbLayout br
(**) XKB: layout: br
Rules = xfree86 Model = abnt2 Layout = br Variant = (null) Options = (null)

 I need to know the layoutnumber of your keyboard. Can you please
 send me this number?

 If it matches the the Potuguese (Brazil) layout from windows
 I'll change the config to br/abnt2.

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: Updated on sourceware: XFree86-xserv-4.3.0-14

2003-09-21 Thread Frédéric L. W. Meunier
On Sun, 21 Sep 2003, Harold L Hunt II wrote:

 Changes:

 1) winconfig.c - Add the Japanese keyboard layout to the list of
 defaults as jp106.  (Alexander Gottwald)

Does that mean Japanese keyboards now work without any changes
by the user ?

I ask because I see something about Brazilian keyboards in the
same source file, but my keyboard acts like an US. I use XP
Professional SP1 in English but with all keyboard options
configured for my ABNT2 keyboard, which work fine on Windows
and rxvt's Cygwin.

I downloaded a xmodmap and am using it for XFree86.

From the FAQ:

Some keyboard layouts are configured according to the Windows
keyboard settings. For these layouts no special change is
needed.

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: Updated on sourceware: XFree86-xserv-4.3.0-14

2003-09-21 Thread Frédéric L. W. Meunier
Just shooting in the dark. I assume pt means the symbols, which
are in /etc/X11/xkb/symbols. Brazil uses br, not pt. Though, I
don't know what 0x416 means.

{  0x416,  4, pc105, pt,  NULL, NULL, Portuguese (Brazil)},

This is from my XF86Config on Linux:

Option XkbRules   xfree86
Option XkbModel   abnt2
Option XkbLayout  br

On Sun, 21 Sep 2003, Frédéric L. W. Meunier wrote:

 On Sun, 21 Sep 2003, Harold L Hunt II wrote:

  Changes:
 
  1) winconfig.c - Add the Japanese keyboard layout to the list of
  defaults as jp106.  (Alexander Gottwald)

 Does that mean Japanese keyboards now work without any changes
 by the user ?

 I ask because I see something about Brazilian keyboards in the
 same source file, but my keyboard acts like an US. I use XP
 Professional SP1 in English but with all keyboard options
 configured for my ABNT2 keyboard, which work fine on Windows
 and rxvt's Cygwin.

 I downloaded a xmodmap and am using it for XFree86.

 From the FAQ:

 Some keyboard layouts are configured according to the Windows
 keyboard settings. For these layouts no special change is
 needed.

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: Updated on sourceware: XFree86-xserv-4.3.0-14

2003-09-21 Thread Frédéric L. W. Meunier
Sorry for the flood, but I downloaded the XF86Config example
from the FAQ and modified it like on Linux.

pc105 works, but not for all keys. You really need abnt2.

The ones which didn't work with pc105:

\| (the first after the left Shift) returns  and 
]} (the one before Enter) returns \ and |

On Sun, 21 Sep 2003, Frédéric L. W. Meunier wrote:

 Just shooting in the dark. I assume pt means the symbols, which
 are in /etc/X11/xkb/symbols. Brazil uses br, not pt. Though, I
 don't know what 0x416 means.

 {  0x416,  4, pc105, pt,  NULL, NULL, Portuguese (Brazil)},

 This is from my XF86Config on Linux:

 Option XkbRules   xfree86
 Option XkbModel   abnt2
 Option XkbLayout  br

-- 
How to contact me - http://www.pervalidus.net/contact.html


New IceWM package

2003-09-19 Thread Frédéric L. W. Meunier
Since the 2 IceWM ports listed at
http://xfree86.cygwin.com/ported-software.html aren't that new
(and probably require XFree86-lib-compat), and unfortunately
nobody else seems to distribute their binaries (I couldn't find
others on the mailing-list archives and Google), I decided to
package 1.2.13pre3 CVS, which I was using without any problems
on Linux (and IceWM since 1998-1999). I had to build it about
10 times to get a usable binary, but the first part is done.

Feel free to use it. It didn't crash yet, and at least changing
themes, restarting, switching workspaces, and editing the menu
file on the fly worked, so...

It requires Cygwin 1.5.x, and presumably the new 1.5.x XFree86
packages.

http://www.pervalidus.net/cygwin/icewm/

-- 
How to contact me - http://www.pervalidus.net/contact.html


First time installing XFree86

2003-09-18 Thread Frédéric L. W. Meunier
This is the first time I install XFree86 on Cygwin. I'm running
all current packages and for now installed the following:

XFree86-bin-4.3.0-3
XFree86-bin-icons-4.3.0-2
XFree86-etc-4.3.0-3
XFree86-lib-4.3.0-1
XFree86-prog-4.3.0-5
XFree86-startup-scripts-4.2.0-5
XFree86-xserv-4.3.0-11
XFree86-xwinclip-4.3.0-1

I skipped XFree86-fenc-4.2.0-3 and XFree86-fnts-4.2.0-3 since
I'm using the fonts from my Linux partition (mounted with
Ext2fsd 0.10a) to save some space. I don't know if the segfault
I get starting xedit is related. All other applications I tried
work.

/usr/X11R6/lib/X11/fonts is a symlink to
/l/usr/X11R6/lib/X11/fonts, which is read-only (directories
dr-xr-xr-x and files -r--r--r--). Since I'm not going to run
mkfontdir I suppose it should work.

BTW, will XFree86-xwinclip-4.3.0-1 be recompiled ? It currently
depends on XFree86-lib-compat.

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: First time installing XFree86

2003-09-18 Thread Frédéric L. W. Meunier
On Thu, 18 Sep 2003, Harold L Hunt II wrote:

  I don't know if the segfault I get starting xedit is
  related. All other applications I tried work.
 
  /usr/X11R6/lib/X11/fonts is a symlink to
  /l/usr/X11R6/lib/X11/fonts, which is read-only (directories
  dr-xr-xr-x and files -r--r--r--). Since I'm not going to run
  mkfontdir I suppose it should work.

 Are you asking us a question in the above?  I didn't see one...

I think you can interpret is as a question. Does xedit work for
you ? Here it just segfaults at startup. If yes, maybe I should
install the encodings and fonts to see if I can reproduce it.

Yesterday I compared the contents of both packages with my
Linux fonts and didn't see any differences, so the only
difference is the symlink to the XFree86 fonts directory of my
Linux partition and the read-only flags.

  BTW, will XFree86-xwinclip-4.3.0-1 be recompiled ? It currently
  depends on XFree86-lib-compat.

 I am not sure if I will recompile xwinclip.  I might.  I might not.

 Can I ask why you are not using the internal version of xwinclip,
 accessed via the '-clipboard' parameter for XWin.exe?

I didn't know about it. I just read the descriptions and
installed what I thought I'd use. Anyway, I'm not going to
install XFree86-lib-compat just to run it, what I'll consider
if I need other applications.

-- 
How to contact me - http://www.pervalidus.net/contact.html


Re: First time installing XFree86

2003-09-18 Thread Frédéric L. W. Meunier
On Thu, 18 Sep 2003, Frédéric L. W. Meunier wrote:

 On Thu, 18 Sep 2003, Harold L Hunt II wrote:

   I don't know if the segfault I get starting xedit is
   related. All other applications I tried work.
  
   /usr/X11R6/lib/X11/fonts is a symlink to
   /l/usr/X11R6/lib/X11/fonts, which is read-only (directories
   dr-xr-xr-x and files -r--r--r--). Since I'm not going to run
   mkfontdir I suppose it should work.
 
  Are you asking us a question in the above?  I didn't see one...

 I think you can interpret is as a question. Does xedit work for
 you ? Here it just segfaults at startup. If yes, maybe I should
 install the encodings and fonts to see if I can reproduce it.

 Yesterday I compared the contents of both packages with my
 Linux fonts and didn't see any differences, so the only
 difference is the symlink to the XFree86 fonts directory of my
 Linux partition and the read-only flags.

I removed the /usr/X11R6/lib/X11 symlink and installed
XFree86-fenc-4.2.0-3 and XFree86-fnts-4.2.0-3. xedit still
segfaults at startup. It isn't an issue for me because I don't
use it. I was just testing the applications, but it obviously
isn't related to the symlink and read-only.

-- 
How to contact me - http://www.pervalidus.net/contact.html


xedit segfaults (was Re: First time installing XFree86)

2003-09-18 Thread Frédéric L. W. Meunier
On Thu, 18 Sep 2003, Frédéric L. W. Meunier wrote:

 On Thu, 18 Sep 2003, Frédéric L. W. Meunier wrote:

  On Thu, 18 Sep 2003, Harold L Hunt II wrote:
 
I don't know if the segfault I get starting xedit is
related. All other applications I tried work.
   
/usr/X11R6/lib/X11/fonts is a symlink to
/l/usr/X11R6/lib/X11/fonts, which is read-only (directories
dr-xr-xr-x and files -r--r--r--). Since I'm not going to run
mkfontdir I suppose it should work.
  
   Are you asking us a question in the above?  I didn't see one...
 
  I think you can interpret is as a question. Does xedit work for
  you ? Here it just segfaults at startup. If yes, maybe I should
  install the encodings and fonts to see if I can reproduce it.
 
  Yesterday I compared the contents of both packages with my
  Linux fonts and didn't see any differences, so the only
  difference is the symlink to the XFree86 fonts directory of my
  Linux partition and the read-only flags.

 I removed the /usr/X11R6/lib/X11 symlink and installed
 XFree86-fenc-4.2.0-3 and XFree86-fnts-4.2.0-3. xedit still
 segfaults at startup. It isn't an issue for me because I don't
 use it. I was just testing the applications, but it obviously
 isn't related to the symlink and read-only.

Sorry, I see this has been reported before.

Anyway, I tried compiling xedit (only) from CVS xf-4_3-branch
and HEAD. Same problem.

-- 
How to contact me - http://www.pervalidus.net/contact.html