summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac1
-rw-r--r--ewmh/ewmh.c.m45
-rw-r--r--icccm/icccm.c4
3 files changed, 10 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 5262b91..621f15a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,6 +2,7 @@ dnl XCB_UTIL_M4_WITH_INCLUDE_PATH requires Autoconf >= 2.62
AC_PREREQ(2.62)
AC_INIT([xcb-util-wm],0.4.0,[xcb@lists.freedesktop.org])
AC_CONFIG_SRCDIR([Makefile.am])
+AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign dist-bzip2])
AM_MAINTAINER_MODE
diff --git a/ewmh/ewmh.c.m4 b/ewmh/ewmh.c.m4
index d951208..769b36b 100644
--- a/ewmh/ewmh.c.m4
+++ b/ewmh/ewmh.c.m4
@@ -26,6 +26,11 @@
* prior written authorization from the authors.
*/
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "xcb_ewmh.h"
#include <string.h>
diff --git a/icccm/icccm.c b/icccm/icccm.c
index ed623d0..f6daf0d 100644
--- a/icccm/icccm.c
+++ b/icccm/icccm.c
@@ -27,6 +27,10 @@
* prior written authorization from the authors.
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <stdlib.h>
#include <limits.h>
#include <string.h>