This is the mail archive of the cygwin-xfree@cygwin.com mailing list for the Cygwin XFree86 project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: xmms


On Fri, Nov 02, 2001 at 12:26:08PM -0500, Roland Glenn McIntosh wrote:
> My initial experience with X on cygwin has been amazing, thank you to all who've worked hard to get this this far.
> 
> Simply put, has anyone had success compiling xmms for cygwin xfree?
> 
> I have successfully compiled / installed:
> 	audiofile-0.2.2
> 	blackbox-0.61.1
> 	esound-0.2.23
> 	mpg123-0.59r
> 
> I *think* I have successfully compiled / installed:
> 	glib-1.2.9
> 	gtk+-1.2.9	<-- I'm suspicious of this
> 
> And I can get xmms-1.2.5 to compile with a minor tweak, but when I run the executable, nothing happens.  The process launches, and seems to hang.  Has anyone out there tried to duplicate my efforts, and perhaps taken it one step further?  (debugger?)

Try glib/gtk+-1.2.10 which compiles OOTB.  Actually I had to apply
one patch to glib-1.2.10/gstrfuncs.c.  Change line 704ff. from

  #ifdef HAVE_STRSIGNAL
    return strsignal (signum);
  #elif NO_SYS_SIGLIST

to

  #ifdef HAVE_STRSIGNAL
  #ifndef __CYGWIN__
    extern char *strsignal (int sig);
  #endif
    return strsignal (signum);
  #elif NO_SYS_SIGLIST

I have compiled vim-6.0 with gtk GUI and xchat-1.8.3 successfully with
these libs.

Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                                mailto:cygwin@cygwin.com
Red Hat, Inc.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]