zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit 34ae6453cfce684234ca64d7fc446c090175a651
parent 7f8ad5ab5263d353feaa691ecd57d4eddfa6c9d9
Author: fundamental <[email protected]>
Date:   Fri,  1 Jan 2010 18:55:27 -0500

Hack: just a quick hack

Diffstat:
Msrc/CMakeLists.txt | 6+++++-
Msrc/Nio/AlsaEngine.cpp | 4++++
2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt @@ -32,11 +32,15 @@ SET (OssEnable ${ALSA_FOUND} CACHE BOOL #TODO perhaps check for /dev/dsp "Enable support for Open Sound System") SET (PaEnable ${PORTAUDIO_FOUND} CACHE BOOL "Enable support for Port Audio System") +SET (HACK OFF CACHE BOOL + "If you do not know what this does do not touch it") # Now, handle the incoming settings and set define flags/variables based # on this - +if(HACK) + add_definitions(-DHACK=1) +endif(HACK) if (GuiModule STREQUAL qt AND QT_FOUND) set (QtGui TRUE) diff --git a/src/Nio/AlsaEngine.cpp b/src/Nio/AlsaEngine.cpp @@ -192,16 +192,20 @@ bool AlsaEngine::Start() { if(enabled()) return true; +#if !HACK if(!OpenStuff()) return false; +#endif openMidi(); pthread_attr_t attr; enabled = true; +#if !HACK pthread_attr_init(&attr); pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE); pthread_create(&audio.pThread, &attr, _AudioThread, this); +#endif if (NULL != midi.handle) {