zynaddsubfx

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

commit 14d2751bed1e6bb11805bb17e4a73e622c85a4ac
parent affd682b9843632b758cb8070562b33467f0b271
Author: fundamental <mark.d.mccurry@gmail.com>
Date:   Thu, 29 Oct 2009 18:21:29 -0400

Params: added pthread.h include to fix compile

Added #include <pthread.h> in PADnoteParameters.h to fix windows compile error
Patch by: Tobias Doerffel

Diffstat:
MAUTHORS.txt | 2+-
Msrc/Params/PADnoteParameters.h | 1+
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/AUTHORS.txt b/AUTHORS.txt @@ -13,6 +13,6 @@ Contributors: Achim Settelmeier (QUERTZ keyboard layout for virtual keyboard) Jérémie Andréi (AZERTY keyboard layout, Array index fix, OSS failsafe) Alexis Ballier (const char* <-> string mismatch, NULLMidi prototype fix) - Tobias Doerffel (static vs instance variables alteration) + Tobias Doerffel (static-instance variables fix, missing include fix) James Morris (Memory leaks in FLTK GUI) diff --git a/src/Params/PADnoteParameters.h b/src/Params/PADnoteParameters.h @@ -35,6 +35,7 @@ #include "FilterParams.h" #include "Presets.h" #include <string> +#include <pthread.h> class PADnoteParameters:public Presets {