summaryrefslogtreecommitdiffstats
path: root/mcop/dispatcher.cpp
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2021-05-24 17:04:53 +0200
committergregory guy <gregory-tde@laposte.net>2021-06-03 18:24:44 +0200
commit425f41c77dcf1616c36e678b9201c87f582efbde (patch)
tree6b99a14c169ad472127e87e3aa7464ef64749e8d /mcop/dispatcher.cpp
parentec80625a625cd5b868a69dc59d2f326569651b95 (diff)
downloadarts-425f41c77dcf1616c36e678b9201c87f582efbde.tar.gz
arts-425f41c77dcf1616c36e678b9201c87f582efbde.zip
some updates on cmake stuff in order to build aRts with optional backend (alsa, jack...)feat/cmake_update
Rename gslconfig.h.in into gslconfig.h.cmake for consistency with the other modules. Add man3 pages (gsl). Add Network Audio System (Nas) support. Add Open Sound System (OSS) support. Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'mcop/dispatcher.cpp')
-rw-r--r--mcop/dispatcher.cpp19
1 files changed, 10 insertions, 9 deletions
diff --git a/mcop/dispatcher.cpp b/mcop/dispatcher.cpp
index 580a268..fc3763d 100644
--- a/mcop/dispatcher.cpp
+++ b/mcop/dispatcher.cpp
@@ -20,7 +20,10 @@
*/
-#include <config.h>
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "dispatcher.h"
#include "delayedreturn.h"
#include "startupmanager.h"
@@ -43,14 +46,12 @@
#include <errno.h>
#include <iostream>
-#if TIME_WITH_SYS_TIME
-# include <sys/time.h>
-# include <time.h>
-#elif HAVE_SYS_TIME_H
-# include <sys/time.h>
-#else
-# include <time.h>
-#endif
+#if defined(HAVE_SYS_TIME_H)
+#include <sys/time.h>
+#endif
+#if defined(TIME_WITH_SYS_TIME)
+#include <time.h>
+#endif
/* Dispatcher private data class (to ensure binary compatibility) */