From: Tobias Brunner Date: Thu, 14 Sep 2017 09:59:30 +0000 (+0200) Subject: utils: Include stdint.h X-Git-Tag: 5.6.1dr3~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4593353c97347fc9505a5a4fe3cfb66b246874f;p=thirdparty%2Fstrongswan.git utils: Include stdint.h Recent releases of glibc don't include the full stdint.h header in some network headers included by utils.h. So uintptr_t might not be defined. Since we use fixed width integers, including the latter, all over the place we make sure the complete file is included. Fixes #2425. --- diff --git a/src/libstrongswan/utils/utils.h b/src/libstrongswan/utils/utils.h index 33b8d1956b..ec994bfc5b 100644 --- a/src/libstrongswan/utils/utils.h +++ b/src/libstrongswan/utils/utils.h @@ -25,6 +25,7 @@ #define _GNU_SOURCE #include #include +#include #include #include #include