Re: [linux-audio-dev] Re: [announce] [patch] Voluntary Kernel Preemption Patch

2004-07-15 Thread Florin Andrei
On Sat, 2004-07-10 at 22:25, Andrew Morton wrote: > What we need to do is to encourage audio testers to use ALSA drivers, to > enable CONFIG_SND_DEBUG in the kernel build and to set > /proc/asound/*/*/xrun_debug and to send us the traces which result from > underruns. Just out of curiosity: If i

[linux-audio-dev] Re: [a-users] Re: [a-devel] File system and Voluntary Kernel Preemption

2004-07-15 Thread Lee Revell
On Thu, 2004-07-15 at 04:53, Damien Cirotteau wrote: > On Thu, Jul 15, 2004 at 10:35:47AM +0200, Free Ekanayaka wrote : > > |--==> "DC" == Damien Cirotteau <[EMAIL PROTECTED]> writes: > > > > DC> Hi all, > > DC> some very interesting links submited by simmo on IRC > > > > DC> File system:

Re: [linux-audio-dev] softwerk moves on

2004-07-15 Thread Paul Davis
>Isn't this the problem pkg-config solved? Who cares where they got it >from as long as it's installed and works.. this is where the special magic of C++ kicks in. what if they were compiled with gcc3.4? or gcc2.95?or gcc-anything-other-than-what-the-user- is-about-to-compile-softwerk-with? what

Re: [linux-audio-dev] softwerk moves on

2004-07-15 Thread Dave Robillard
On Thu, 2004-07-15 at 21:08, Paul Davis wrote: > >On Thu, 2004-07-15 at 20:24, Paul Davis wrote: > >> >Seems to work for every other project out there... I'm sure you have > >> > >> which c++ projects are you referring to? > > > >I don't know. I will say for certain that not every single GNU/Linu

Re: [linux-audio-dev] softwerk moves on

2004-07-15 Thread Paul Davis
>On Thu, 2004-07-15 at 20:24, Paul Davis wrote: >> >Seems to work for every other project out there... I'm sure you have >> >> which c++ projects are you referring to? > >I don't know. I will say for certain that not every single GNU/Linux >C++ project out there bundles gtkmm and friends with it.

Re: [linux-audio-dev] softwerk patch

2004-07-15 Thread Dave Robillard
On Thu, 2004-07-15 at 20:28, Paul Davis wrote: > >I got softwerk running, but couldn't for the life of me figure out how > >to change the step values (other than middle clicking which makes them > >all 127). Looking at the code, doesn't look like there's even anything > > they are text entry widg

Re: [linux-audio-dev] yet another softwerk patch

2004-07-15 Thread Dave Robillard
The trigger dialog wasn't showing anything (channel select, note select, etc.) making it pretty unusable. Looking at the code, all the -'s for vpadding in trigger_ui.cc (starting at line 123) seem to be making everything disappear. New version of gtkmm has a different behaviour maybe? Anyway

Re: [linux-audio-dev] softwerk moves on

2004-07-15 Thread Dave Robillard
On Thu, 2004-07-15 at 20:24, Paul Davis wrote: > >Seems to work for every other project out there... I'm sure you have > > which c++ projects are you referring to? I don't know. I will say for certain that not every single GNU/Linux C++ project out there bundles gtkmm and friends with it. Howev

Re: [linux-audio-dev] softwerk patch

2004-07-15 Thread Paul Davis
>I got softwerk running, but couldn't for the life of me figure out how >to change the step values (other than middle clicking which makes them >all 127). Looking at the code, doesn't look like there's even anything they are text entry widgets. just click or use TAB/right or left arrows to naviga

Re: [linux-audio-dev] softwerk moves on

2004-07-15 Thread Paul Davis
>pkg-config --cflags gtk+ works.. IIRC, the configure script was >complaining about not being able to find gtk.pc, but the file is >actually gtk+.pc (my PKG_CONFIG_PATH was set correctly..) oh dear, i seem to have some gnome-config nonsense that allowed "gtk" to work. fixed in my source. >Seems t

Re: [linux-audio-dev] softwerk patch

2004-07-15 Thread Dave Robillard
I got softwerk running, but couldn't for the life of me figure out how to change the step values (other than middle clicking which makes them all 127). Looking at the code, doesn't look like there's even anything there to change the values (for mouse anyway, didn't look at the keyboard stuff). So

Re: [linux-audio-dev] softwerk moves on

2004-07-15 Thread Dave Robillard
On Thu, 2004-07-15 at 19:40, Paul Davis wrote: > >CPPFLAGS="-I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 > >-I/usr/lib/glib/include" > > > >and add -lgtk and -lglib to the final linking. > > thats odd, i'll check it. i use pkg-config to get the libs needed, and > they should be included. on my s

Re: [linux-audio-dev] softwerk moves on

2004-07-15 Thread Paul Davis
>CPPFLAGS="-I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 >-I/usr/lib/glib/include" > >and add -lgtk and -lglib to the final linking. thats odd, i'll check it. i use pkg-config to get the libs needed, and they should be included. on my system they show up automatically. what does pkg-con

Re: [linux-audio-dev] softwerk moves on

2004-07-15 Thread Dave Robillard
On Wed, 2004-07-14 at 22:28, Paul Davis wrote: > correction to a minor build issue: > > http://linuxaudiosystems.com/softwerk/softwerk-2.0.1.tar.bz2 FWIW, to get it to build on my debian (unstable/testing) system, I had to set CPPFLAGS="-I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/li

Re: [linux-audio-dev] softwerk moves on

2004-07-15 Thread iain duncan
Just out of curiousity, what gui library did you use for softwerk, and if you were to do it over again, would you still use the same one? I'm i used gtk--, a C++ thin wrapper of GTK+. i would use it again. If I may ask you and others on here, how does this stack up against fltk? I'm going to be

Re: [linux-audio-dev] softwerk moves on

2004-07-15 Thread Paul Davis
>> correction to a minor build issue: >> >> http://linuxaudiosystems.com/softwerk/softwerk-2.0.1.tar.bz2 > >Just out of curiousity, what gui library did you use for softwerk, and >if you were to do it over again, would you still use the same one? I'm i used gtk--, a C++ thin wrapper of GTK+.

Re: [linux-audio-dev] softwerk moves on

2004-07-15 Thread iain duncan
correction to a minor build issue: http://linuxaudiosystems.com/softwerk/softwerk-2.0.1.tar.bz2 Just out of curiousity, what gui library did you use for softwerk, and if you were to do it over again, would you still use the same one? I'm planning on looking through the code as a good way to lea