From 8c0cb89a4f00704223101c8a380da1ceb33d706a Mon Sep 17 00:00:00 2001 From: Lubos Lunak Date: Sun, 23 Dec 2012 22:25:49 +0100 Subject: multiple include guard for config_global.h Strictly speaking not necessary, but it should prevent compilers from needlessly opening the file repeatedly. --- config/config_global.h.in | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'config') diff --git a/config/config_global.h.in b/config/config_global.h.in index 63effa9eab07..7080a69635ea 100644 --- a/config/config_global.h.in +++ b/config/config_global.h.in @@ -9,8 +9,13 @@ Any change in this header will cause a rebuild of almost everything. */ +#ifndef CONFIG_GLOBAL_H +#define CONFIG_GLOBAL_H + #undef HAVE_CXX11_DELETE #undef HAVE_GCC_BUILTIN_ATOMIC #undef HAVE_SFINAE_ANONYMOUS_BROKEN #undef HAVE_THREADSAFE_STATICS #undef HAVE_SYSLOG_H + +#endif -- cgit