LayerManagement: auto-generated config.h was missing include guards
authorTimo Lotterbach <timo.lotterbach@bmw-carit.de>
Tue, 8 May 2012 12:45:34 +0000 (14:45 +0200)
committerTimo Lotterbach <timo.lotterbach@bmw-carit.de>
Tue, 8 May 2012 12:45:34 +0000 (14:45 +0200)
introduced include guards in tample config.h.cmake

config/res/config.h.cmake

index 829ea46..b6a5343 100644 (file)
@@ -17,6 +17,9 @@
  * limitations under the License.
  *
  ****************************************************************************/
+#ifndef __CONFIG_H__
+#define __CONFIG_H__
+
 #include "Log.h"
 
 // Auto-generated. Do not modify.
     LOG_DEBUG("Config", "WITH_WAYLAND_X11    = ${WITH_WAYLAND_X11}"); \
     LOG_DEBUG("Config", "WITH_XTHREADS       = ${WITH_XTHREADS}"); \
     LOG_DEBUG("Config", "WITH_DLT            = ${WITH_DLT}");
+
+#endif // __CONFIG_H__