summaryrefslogtreecommitdiff
path: root/source/include
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-09-13 09:23:05 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:18:31 -0500
commitd8e88386748d3952c6a82726c9d36cad870992fd (patch)
tree7d22838f7b8b04588fabd45523e9ca46235d53d7 /source/include
parent8662e1481504c50a45416ae09ec19b834164e77c (diff)
downloadsamba-d8e88386748d3952c6a82726c9d36cad870992fd.tar.gz
r18447: make sure we bail out if the config.h is not generated
by samba's configure. this could happen when you have done a standalone build in lib/replace/, lib/talloc, ... metze
Diffstat (limited to 'source/include')
-rw-r--r--source/include/includes.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/include/includes.h b/source/include/includes.h
index dc7db5d3bb1..5850103145c 100644
--- a/source/include/includes.h
+++ b/source/include/includes.h
@@ -23,8 +23,15 @@
#ifndef NO_CONFIG_H /* for some tests */
#include "lib/replace/replace.h"
+
+/* make sure we have included the correct config.h */
+#ifndef CONFIG_H_IS_FROM_SAMBA
+#warn "make sure you have removed all config.h files from standalone builds!"
+#error "the included config.h isn't from samba!"
#endif
+#endif /* NO_CONFIG_H */
+
#include "local.h"
#ifdef __GNUC__