summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/Factory.cpp')
-rw-r--r--src/uscxml/Factory.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/uscxml/Factory.cpp b/src/uscxml/Factory.cpp
index 9b6a84a..21e820a 100644
--- a/src/uscxml/Factory.cpp
+++ b/src/uscxml/Factory.cpp
@@ -129,6 +129,7 @@ Factory::Factory() {
}
}
#else
+#if 1
#ifdef UMUNDO_FOUND
{
UmundoInvoker* invoker = new UmundoInvoker();
@@ -166,7 +167,7 @@ Factory::Factory() {
}
#endif
-#if (defined OPENAL_FOUND && (defined LIBSNDFILE_FOUND || defined AUDIOTOOLBOX_FOUND))
+#if (defined OPENAL_FOUND && (defined LIBSNDFILE_FOUND || defined AUDIOTOOLBOX_FOUND))
{
OpenALInvoker* invoker = new OpenALInvoker();
registerInvoker(invoker);
@@ -218,12 +219,14 @@ Factory::Factory() {
registerIOProcessor(ioProcessor);
}
#endif
+#endif
// these are always available
{
NULLDataModel* dataModel = new NULLDataModel();
registerDataModel(dataModel);
}
+#if 0
{
XHTMLInvoker* invoker = new XHTMLInvoker();
registerInvoker(invoker);
@@ -274,6 +277,7 @@ Factory::Factory() {
}
#endif
+#endif
}
Factory::~Factory() {