RemoteVstPlugin: define O_BINARY to 0 on Linux

O_BINARY flag is not supported on Linux, therefore define it to 0.
Fixes compilation failure on Linux.

Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
This commit is contained in:
Tobias Doerffel
2009-07-07 18:35:51 +02:00
parent 48a3d4ebe4
commit d6a451bdf5

View File

@@ -44,6 +44,10 @@
#ifdef LMMS_BUILD_LINUX
#ifndef O_BINARY
#define O_BINARY 0
#endif
#ifdef LMMS_HAVE_SCHED_H
#include <sched.h>
#endif