aeolus missing event.h include? (Mac OS X 10.6.8, Xcode 3.2.6)

• Nov 27, 2011 - 02:31
Type
Functional
Severity
S4 - Minor
Status
closed
Project

These and possibly other defines are missing during my aeolus build (I'm switching to Mac OS X 10.6.8, Xcode 3.2.6):
"Event", "ME_NOTEON", and "ME_ CONTROLLER"
They are present in event.h in the libmscore directory, though.

Possible fix (this results in a successful aeolus target build, but I haven't tested the results):

Index: aeolus/aeolus.cpp
===================================================================
--- aeolus/aeolus.cpp (revision 5049)
+++ aeolus/aeolus.cpp (working copy)
@@ -22,7 +22,7 @@
extern QString dataPath;
extern QString mscoreGlobalShare;

-#include "event.h"
+#include "libmscore/event.h"
#include "xml.h"
#include "msynth/sparm_p.h"


Comments