]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2544] Include stdint.h in the config_parser.h.
authorMarcin Siodelski <marcin@isc.org>
Wed, 19 Dec 2012 17:25:56 +0000 (18:25 +0100)
committerMarcin Siodelski <marcin@isc.org>
Wed, 19 Dec 2012 17:25:56 +0000 (18:25 +0100)
Without this header the build fails on CentOS as it does not recognize
uint32_t type.

src/bin/dhcp4/config_parser.h

index 2ee9cf6bb2712a70ea3a76b97125146bee7a287c..cc4c690f288ba98369483458c5bd406f862e6a7c 100644 (file)
@@ -14,6 +14,7 @@
 
 #include <exceptions/exceptions.h>
 #include <cc/data.h>
+#include <stdint.h>
 #include <string>
 
 #ifndef DHCP4_CONFIG_PARSER_H