summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--daemons/clvmd/clvmd-cman.c4
-rw-r--r--daemons/clvmd/clvmd-command.c4
-rw-r--r--daemons/clvmd/clvmd-corosync.c4
-rw-r--r--daemons/clvmd/clvmd-gulm.c3
-rw-r--r--daemons/clvmd/clvmd-openais.c4
-rw-r--r--daemons/clvmd/clvmd-singlenode.c4
-rw-r--r--daemons/clvmd/clvmd.c4
-rw-r--r--daemons/clvmd/lvm-functions.c4
-rw-r--r--daemons/clvmd/refresh_clvmd.c4
-rw-r--r--daemons/clvmd/tcp-comms.c4
-rw-r--r--daemons/cmirrord/logging.h2
-rw-r--r--tools/tools.h4
12 files changed, 23 insertions, 22 deletions
diff --git a/daemons/clvmd/clvmd-cman.c b/daemons/clvmd/clvmd-cman.c
index dec6331b..1d37ca1b 100644
--- a/daemons/clvmd/clvmd-cman.c
+++ b/daemons/clvmd/clvmd-cman.c
@@ -20,7 +20,7 @@
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
-#include <configure.h>
+#include "configure.h"
#include <pthread.h>
#include <sys/types.h>
#include <sys/stat.h>
@@ -40,7 +40,7 @@
#include <fcntl.h>
#include <getopt.h>
#include <errno.h>
-#include <libdevmapper.h>
+#include "libdevmapper.h"
#include <libdlm.h>
#include "clvmd-comms.h"
diff --git a/daemons/clvmd/clvmd-command.c b/daemons/clvmd/clvmd-command.c
index 83d03ef7..d4024ae8 100644
--- a/daemons/clvmd/clvmd-command.c
+++ b/daemons/clvmd/clvmd-command.c
@@ -53,7 +53,7 @@
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
-#include <configure.h>
+#include "configure.h"
#include <pthread.h>
#include <sys/types.h>
#include <sys/utsname.h>
@@ -68,7 +68,7 @@
#include <stddef.h>
#include <unistd.h>
#include <errno.h>
-#include <libdevmapper.h>
+#include "libdevmapper.h"
#include <libdlm.h>
#include "locking.h"
diff --git a/daemons/clvmd/clvmd-corosync.c b/daemons/clvmd/clvmd-corosync.c
index 37281530..347e431c 100644
--- a/daemons/clvmd/clvmd-corosync.c
+++ b/daemons/clvmd/clvmd-corosync.c
@@ -20,7 +20,7 @@
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
-#include <configure.h>
+#include "configure.h"
#include <pthread.h>
#include <sys/types.h>
#include <sys/utsname.h>
@@ -43,7 +43,7 @@
#include <utmpx.h>
#include <syslog.h>
#include <assert.h>
-#include <libdevmapper.h>
+#include "libdevmapper.h"
#include <corosync/corotypes.h>
#include <corosync/cpg.h>
diff --git a/daemons/clvmd/clvmd-gulm.c b/daemons/clvmd/clvmd-gulm.c
index 54dce4d8..b4231814 100644
--- a/daemons/clvmd/clvmd-gulm.c
+++ b/daemons/clvmd/clvmd-gulm.c
@@ -24,6 +24,7 @@
* on the cluster nodes. That is done in tcp-comms.c
*/
+#include "configure.h"
#include <pthread.h>
#include <sys/types.h>
#include <sys/utsname.h>
@@ -46,7 +47,7 @@
#include <utmpx.h>
#include <syslog.h>
#include <assert.h>
-#include <libdevmapper.h>
+#include "libdevmapper.h"
#include <ccs.h>
#include <libgulm.h>
diff --git a/daemons/clvmd/clvmd-openais.c b/daemons/clvmd/clvmd-openais.c
index f67347e9..57449954 100644
--- a/daemons/clvmd/clvmd-openais.c
+++ b/daemons/clvmd/clvmd-openais.c
@@ -20,7 +20,7 @@
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
-#include <configure.h>
+#include "configure.h"
#include <pthread.h>
#include <sys/types.h>
#include <sys/utsname.h>
@@ -43,7 +43,7 @@
#include <utmpx.h>
#include <syslog.h>
#include <assert.h>
-#include <libdevmapper.h>
+#include "libdevmapper.h"
#include <openais/saAis.h>
#include <openais/saLck.h>
diff --git a/daemons/clvmd/clvmd-singlenode.c b/daemons/clvmd/clvmd-singlenode.c
index c7114f26..cbaf5dc9 100644
--- a/daemons/clvmd/clvmd-singlenode.c
+++ b/daemons/clvmd/clvmd-singlenode.c
@@ -15,13 +15,13 @@
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
+#include "configure.h"
#include <netinet/in.h>
#include <sys/un.h>
#include <sys/socket.h>
#include <unistd.h>
#include <fcntl.h>
-#include <configure.h>
-#include <libdevmapper.h>
+#include "libdevmapper.h"
#include <pthread.h>
diff --git a/daemons/clvmd/clvmd.c b/daemons/clvmd/clvmd.c
index 8dbd6ae0..5986cdd6 100644
--- a/daemons/clvmd/clvmd.c
+++ b/daemons/clvmd/clvmd.c
@@ -20,8 +20,8 @@
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
-#include <configure.h>
-#include <libdevmapper.h>
+#include "configure.h"
+#include "libdevmapper.h"
#include <pthread.h>
#include <sys/types.h>
diff --git a/daemons/clvmd/lvm-functions.c b/daemons/clvmd/lvm-functions.c
index 5877a31a..11b17b47 100644
--- a/daemons/clvmd/lvm-functions.c
+++ b/daemons/clvmd/lvm-functions.c
@@ -16,7 +16,7 @@
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
-#include <configure.h>
+#include "configure.h"
#include <pthread.h>
#include <sys/types.h>
#include <sys/utsname.h>
@@ -34,7 +34,7 @@
#include <errno.h>
#include <syslog.h>
#include <assert.h>
-#include <libdevmapper.h>
+#include "libdevmapper.h"
#include <libdlm.h>
#include "lvm-types.h"
diff --git a/daemons/clvmd/refresh_clvmd.c b/daemons/clvmd/refresh_clvmd.c
index 517748bb..24d29fbe 100644
--- a/daemons/clvmd/refresh_clvmd.c
+++ b/daemons/clvmd/refresh_clvmd.c
@@ -20,13 +20,13 @@
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
-#include <configure.h>
+#include "configure.h"
#include <stddef.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <errno.h>
#include <unistd.h>
-#include <libdevmapper.h>
+#include "libdevmapper.h"
#include <stdint.h>
#include <stdio.h>
#include <limits.h>
diff --git a/daemons/clvmd/tcp-comms.c b/daemons/clvmd/tcp-comms.c
index 95fb351f..48c47f16 100644
--- a/daemons/clvmd/tcp-comms.c
+++ b/daemons/clvmd/tcp-comms.c
@@ -23,7 +23,7 @@
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
-#include <configure.h>
+#include "configure.h"
#include <pthread.h>
#include <sys/types.h>
#include <sys/utsname.h>
@@ -44,7 +44,7 @@
#include <syslog.h>
#include <netdb.h>
#include <assert.h>
-#include <libdevmapper.h>
+#include "libdevmapper.h"
#include "clvm.h"
#include "clvmd-comms.h"
diff --git a/daemons/cmirrord/logging.h b/daemons/cmirrord/logging.h
index a3a241f2..40dd462a 100644
--- a/daemons/cmirrord/logging.h
+++ b/daemons/cmirrord/logging.h
@@ -16,7 +16,7 @@
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
-#include <configure.h>
+#include "configure.h"
#include <stdio.h>
#include <stdint.h>
#include <syslog.h>
diff --git a/tools/tools.h b/tools/tools.h
index f379b03d..d96b8dc3 100644
--- a/tools/tools.h
+++ b/tools/tools.h
@@ -19,9 +19,9 @@
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
-#include <configure.h>
+#include "configure.h"
#include <assert.h>
-#include <libdevmapper.h>
+#include "libdevmapper.h"
#include "lvm-types.h"
#include "lvm-logging.h"