]> granicus.if.org Git - taglib/commitdiff
#include guards in CMake generated headers.
authorTsuda Kageyu <tsuda.kageyu@gmail.com>
Fri, 2 Dec 2016 08:26:43 +0000 (17:26 +0900)
committerTsuda Kageyu <tsuda.kageyu@gmail.com>
Fri, 2 Dec 2016 08:26:43 +0000 (17:26 +0900)
config.h.cmake
taglib/taglib_config.h.cmake

index 7eb5993f5247aa7d6fa20e6f87307933f77a2136..90ae2ebabe3fe6f07db4d784fb9380705deda185 100644 (file)
@@ -1,5 +1,8 @@
 /* config.h. Generated by cmake from config.h.cmake */
 
+#ifndef TAGLIB_CONFIG_H
+#define TAGLIB_CONFIG_H
+
 /* Defined if your compiler supports some byte swap functions */
 #cmakedefine   HAVE_BOOST_BYTESWAP 1
 #cmakedefine   HAVE_GCC_BYTESWAP 1
@@ -31,3 +34,5 @@
 #cmakedefine   TRACE_IN_RELEASE 1
 
 #cmakedefine TESTS_DIR "@TESTS_DIR@"
+
+#endif
index 5f0ee6cfd92f4aa7e28005409bb51161c5ea2029..915f130aaa8a9232fce758bf6d5099ad10babb05 100644 (file)
@@ -1,6 +1,11 @@
 /* taglib_config.h. Generated by cmake from taglib_config.h.cmake */
 
+#ifndef TAGLIB_TAGLIB_CONFIG_H
+#define TAGLIB_TAGLIB_CONFIG_H
+
 /* These values are no longer used. This file is present only for compatibility reasons. */
 
 #define   TAGLIB_WITH_ASF 1
 #define   TAGLIB_WITH_MP4 1
+
+#endif