From: Matthew Barr Date: Tue, 27 Sep 2016 05:56:40 +0000 (+1000) Subject: Header guards X-Git-Tag: v4.5.0^2~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a2dc430a38707294710c009415e39552106a72aa;p=thirdparty%2Fvectorscan.git Header guards --- diff --git a/cmake/config.h.in b/cmake/config.h.in index c7b577c2..5434668e 100644 --- a/cmake/config.h.in +++ b/cmake/config.h.in @@ -1,5 +1,8 @@ /* used by cmake */ +#ifndef CONFIG_H_ +#define CONFIG_H_ + /* "Define if the build is 32 bit" */ #cmakedefine ARCH_32_BIT @@ -91,3 +94,5 @@ /* define if reverse_graph requires patch for boost 1.62.0 */ #cmakedefine BOOST_REVGRAPH_PATCH + +#endif /* CONFIG_H_ */