Re: Half success

1999-09-22 Thread Brian Almeida

On Tue, Sep 21, 1999 at 11:07:31PM -0400, Isaac Richards wrote:
 The ncurses thingie's broken on deb..  Quick fix is to comment out all
 references to color_set, though I think a better fix is in order.. 
It's because color_set() isn't implemented in ncurses :p
(This is ncurses 4.2)
balmeida@erwin [~]: grep color_set /usr/include/ncurses.h
extern int color_set(short,void*);  /* missing */

my deb has the "quickie" fix...

bma
Debian maintainer for Freeamp



RE: Half success

1999-09-21 Thread Isaac Richards


On 22-Sep-99 Gabor Fleischer wrote:
 I made a complete checkout, and now 1.5 compiles :-)
 (BTW I don't know why I should checkout, and update -d why didn't get
 everyting)
 Now I can play on soundcard (unfortunatelly alsa does not work yet,
 but i'll try to fix) with freeampcmd and freeamp-xlib.
 But i have these warnings:
 
 ./plugins/theme.ui: undefined symbol: gdk_root_parent
 ./plugins/ncurses.ui: undefined symbol: color_set
 
 I have ncurses4.2, gdk1.0.6 from potato(debian).
 Is it the same at your linux? Do they work on any potato?
 
 Flöcsy®
 
 URL: http://flocsy.spedia.net   MAIL:[EMAIL PROTECTED]
 SMS: [EMAIL PROTECTED] ICQ:27733935
 Ha meg szeretnéd tudni hogyan kereshetsz böngészés közben egy kis zsebpénzt:
 http://www.spedia.net/cgi-bin/dir/tz.cgi?run=show_svcfl=8vid=119891
 
 

--
E-Mail: Isaac Richards [EMAIL PROTECTED]
Date: 21-Sep-99
Time: 22:57:58

This message was sent by XFMail
--



RE: Half success

1999-09-21 Thread Isaac Richards

Oops. =)  Sorry 'bout the empty email..

On 22-Sep-99 Gabor Fleischer wrote:
 I made a complete checkout, and now 1.5 compiles :-)
 (BTW I don't know why I should checkout, and update -d why didn't get
 everyting)
 Now I can play on soundcard (unfortunatelly alsa does not work yet,
 but i'll try to fix)

The alsa pmo works. I'm using it right now, actually.  You need a version of
alsa that was released anytime in the last couple months.  The version in
debian unstable is painfully old, complain to the deb maintainer.  The alsa
folk completely changed around the mixer api in their 0.4.0 release...

 ./plugins/theme.ui: undefined symbol: gdk_root_parent
 ./plugins/ncurses.ui: undefined symbol: color_set
 
 I have ncurses4.2, gdk1.0.6 from potato(debian).

I need to add the gtk = 1.2.x configure.in check apply to the theme ui as
well.  This time, you need to upgrade to a version of gtk that was released
sometime in the past year =)  I'm technically doing a Bad Thing(tm) by using
gdk_root_parent, mebbe I'll find a better way to get the root gdk window
without using 2 or 3 function calls.

The ncurses thingie's broken on deb..  Quick fix is to comment out all
references to color_set, though I think a better fix is in order.. 

Just as a reference, my box is(was) 100% debian potato, with the exception of
alsa and enlightenment.

Isaac



Re: Half success

1999-09-21 Thread Tom Spindler

 ./plugins/ncurses.ui: undefined symbol: color_set
 
 I have ncurses4.2, gdk1.0.6 from potato(debian).
 Is it the same at your linux? Do they work on any potato?

Well, I don't have a linux, but I'll answer anyway. :)

It seems that only newer versions of ncurses have color_set; since
yours doesn't, just add

#define color_set(a,b) ;

somewhere near the beginning of ncursesUI.cpp (or .h)