On Sat, May 3, 2008 at 6:15 PM, Tim Blechmann <[EMAIL PROTECTED]> wrote: > > NameError: name 'libsource' is not defined: > > this is resolved ...
Works! > > Checking for C header file portaudio/portaudio_config.h... (cached) > no > > that is fine ... the portaudio/portaudio_config.h file has been added to > portaudio a short time ago ... i am using it to detect, if portaudio > supports jack, so that i can set the jack name to `Nova' instead of > `Portaudio' ... I checked out the portaudio svn, but I don't see it there after make install. In any case, I got it working by removing the comment for the #ifdef line in portaudio.cpp. Nice one! Eager to play with it.. Steve diff --git a/source/kernel/audio_backend/portaudio.cpp b/source/kernel/audio_backend/portaudio.cpp index 21df63c..a091657 100644 --- a/source/kernel/audio_backend/portaudio.cpp +++ b/source/kernel/audio_backend/portaudio.cpp @@ -20,9 +20,9 @@ #ifdef HAVE_PORTAUDIO #include "portaudio.hpp" -/* #ifdef HAVE_PORTAUDIO_CONFIG_H */ +#ifdef HAVE_PORTAUDIO_CONFIG_H #include "portaudio/portaudio_config.h" -/* #endif /\* HAVE_PORTAUDIO_CONFIG_H *\/ */ +#endif /\* HAVE_PORTAUDIO_CONFIG_H *\/ */ #endif /* HAVE_PORTAUDIO */ namespace nova _______________________________________________ nova-dev mailing list [email protected] http://klingt.org/cgi-bin/mailman/listinfo/nova-dev http://tim.klingt.org/nova
