diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-09-28 15:32:41 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-09-28 15:32:41 +0200 |
commit | e197a504753cbe8d08adbd5e58deaf839fe4ca53 (patch) | |
tree | e8d63aa95694f388961537dca04c3c9b5ce81f73 | |
parent | e7da86053b3df2882816b0df8089e1a51b61939f (diff) | |
download | osc-graphics-e197a504753cbe8d08adbd5e58deaf839fe4ca53.tar.gz |
include config.h
-rw-r--r-- | src/layer.cpp | 4 | ||||
-rw-r--r-- | src/layer_box.cpp | 4 | ||||
-rw-r--r-- | src/layer_image.cpp | 4 | ||||
-rw-r--r-- | src/layer_video.cpp | 4 | ||||
-rw-r--r-- | src/main.cpp | 4 | ||||
-rw-r--r-- | src/osc_server.cpp | 4 |
6 files changed, 24 insertions, 0 deletions
diff --git a/src/layer.cpp b/src/layer.cpp index fdb3a3d..f1db856 100644 --- a/src/layer.cpp +++ b/src/layer.cpp @@ -1,3 +1,7 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <string.h> #include <bsd/sys/queue.h> diff --git a/src/layer_box.cpp b/src/layer_box.cpp index b720d5c..f57594c 100644 --- a/src/layer_box.cpp +++ b/src/layer_box.cpp @@ -1,3 +1,7 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <math.h> #include <SDL.h> diff --git a/src/layer_image.cpp b/src/layer_image.cpp index a0d6d55..89eb795 100644 --- a/src/layer_image.cpp +++ b/src/layer_image.cpp @@ -1,3 +1,7 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <math.h> #include <SDL.h> diff --git a/src/layer_video.cpp b/src/layer_video.cpp index 8b3169a..1734d9e 100644 --- a/src/layer_video.cpp +++ b/src/layer_video.cpp @@ -1,3 +1,7 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <assert.h> #include <math.h> diff --git a/src/main.cpp b/src/main.cpp index d31f14f..aef57a1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,3 +1,7 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/src/osc_server.cpp b/src/osc_server.cpp index c3eb328..8c172bc 100644 --- a/src/osc_server.cpp +++ b/src/osc_server.cpp @@ -1,3 +1,7 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <stdarg.h> #include <stdio.h> |