Re: extreme solaris wackiness

1999-09-21 Thread robert

On 20 Sep, Tom Spindler wrote:
 Well, I think I'm getting closer to finding what's causing the
 Solaris strangeness; for one, it appears that sometimes the LWP
 or Reader gets stuck, and so WasteTime() gets called an awful
 lot. A side effect seems to be the creation of several hundred
 threads. :)

Wow -- there is some *strange* shit going on over there. Have you taken
a look at the solaris implementation of all the Thread/Mutex/Semaphore
stuff?

--ruaok Freezerburn! All else is only icing. -- Soul Coughing

Robert Kaye -- [EMAIL PROTECTED]  http://moon.eorbit.net/~robert



bpp undeclared.

1999-09-21 Thread Timothy Ball

Just did a checkout of the 1.5 stuff. Got a bpp undeclared error. It's
in line:
ui/theme/unix/src/GTKBitmap.cpp:for (int bit = bpp - 1; bit
= 0; bit--)

anyone care if I make it 32?

--timball



Re: Themes: features request

1999-09-21 Thread Isaac Richards

At 12:54 AM 9/22/99 +0300, you wrote:
2. theme path should probably be pointing to _the_ xml file, not directory.
then directory would be assumed one level up the xml file path.

Naw, I think using the dir is the right way to do it...  We need to have a
standardized starting xml file for the theme, or else stuff like loading
from .tgzs or .zips won't work.

Isaac



Re: 1.5 on linux?

1999-09-21 Thread Tom Spindler

  If your system can handle `make depend`, you should do so after CVS
 
 Hmm. The problem is that I do this every time:
 cd freeamp/cvs ; cvs -d update ; cd ..
 cp -R cvs/freeamp freeamp ; cd freeamp
 ./configure ; make

Right after ./configure, you still want to do `make clean` before doing
`make`.



Half success

1999-09-21 Thread Gabor Fleischer

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?

Flcsy

URL: http://flocsy.spedia.net   MAIL:[EMAIL PROTECTED]
SMS: [EMAIL PROTECTED] ICQ:27733935
Ha meg szeretnd tudni hogyan kereshetsz bngszs kzben egy kis zsebpnzt:
http://www.spedia.net/cgi-bin/dir/tz.cgi?run=show_svcfl=8vid=119891



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)