summaryrefslogtreecommitdiff
path: root/config/res
diff options
context:
space:
mode:
authorTimo Lotterbach <timo.lotterbach@bmw-carit.de>2012-10-29 03:05:38 -0700
committerTimo Lotterbach <timo.lotterbach@bmw-carit.de>2012-11-20 03:57:50 -0800
commit93f86bd7f8d9ef2aef563b40c2a0f41aa8cfabeb (patch)
tree6eed7fcce7ce09a3137eba31f1f435c7446687b6 /config/res
parentb6629eb9f40b8ee3f5044fe636c5867ae0f38d63 (diff)
downloadlayer_management-93f86bd7f8d9ef2aef563b40c2a0f41aa8cfabeb.tar.gz
3rdParty: added systemd daemon library reference implementation
the reference implementation is available at: http://www.freedesktop.org/software/systemd/man/sd-daemon.html LayerManagerService links to this library added the systemd sd-daemon license information. sd-daemon is located in 3rdParty and is distributed together with the LayerManagement source package. sd-daemon is licensed under MIT license. Signed-off-by: Timo Lotterbach <timo.lotterbach@bmw-carit.de>
Diffstat (limited to 'config/res')
-rw-r--r--config/res/config.h.cmake10
1 files changed, 7 insertions, 3 deletions
diff --git a/config/res/config.h.cmake b/config/res/config.h.cmake
index 17283e8..008a962 100644
--- a/config/res/config.h.cmake
+++ b/config/res/config.h.cmake
@@ -96,6 +96,9 @@
// build tcp/ip ipc module
#cmakedefine WITH_IPC_MODULE_TCP
+// build with native systemd support
+#cmakedefine WITH_SYSTEMD
+
//-----------------------------------------------------------------------------
// human readable report
//-----------------------------------------------------------------------------
@@ -104,8 +107,8 @@
typedef struct
{
- int type;
- const char* description;
+ int type;
+ const char* description;
} buildConfigurationFlag;
#define buildConfigurationFlags \
@@ -130,6 +133,7 @@ typedef struct
{ DEBUG_FLAG, "WITH_WAYLAND_X11 = ${WITH_WAYLAND_X11}" }, \
{ DEBUG_FLAG, "WITH_WL_EXAMPLE = ${WITH_WL_EXAMPLE}" }, \
{ DEBUG_FLAG, "WITH_X11_GLES = ${WITH_X11_GLES}" }, \
-{ DEBUG_FLAG, "WITH_XTHREADS = ${WITH_XTHREADS}" }
+{ DEBUG_FLAG, "WITH_XTHREADS = ${WITH_XTHREADS}" }, \
+{ DEBUG_FLAG, "WITH_SYSTEMD = ${WITH_SYSTEMD}" }
#endif // __CONFIG_H__