diff options
author | Greg Hudson <ghudson@mit.edu> | 2014-02-26 17:39:55 -0500 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2014-02-26 18:05:23 -0500 |
commit | 654ea67e99ea91e39896d55c0e6dd3bfc8ee049a (patch) | |
tree | 2eab6ec3c16e67dcef77f78b0e93ea7243e370ad /src/lib | |
parent | a2ac57b0ec230efed06fabc2d55db1fcbc6f7ea3 (diff) | |
download | krb5-654ea67e99ea91e39896d55c0e6dd3bfc8ee049a.tar.gz krb5-654ea67e99ea91e39896d55c0e6dd3bfc8ee049a.tar.xz krb5-654ea67e99ea91e39896d55c0e6dd3bfc8ee049a.zip |
Fix two omissions in stdint.h changes
Since we no longer prefix an "#include <stdint.h>" in the gssapi.h
preamble at build time, include it in gssapi.hin.
Update util/gss/kernel-lib/Makefile.in to account for gssapi_krb5.h
being in the source tree.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/gssapi/generic/gssapi.hin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/gssapi/generic/gssapi.hin b/src/lib/gssapi/generic/gssapi.hin index 54433f7035..f67e75c1d4 100644 --- a/src/lib/gssapi/generic/gssapi.hin +++ b/src/lib/gssapi/generic/gssapi.hin @@ -52,6 +52,8 @@ extern "C" { #define KRB5_CALLCONV_C #endif +#include <stdint.h> + /* * First, include stddef.h to get size_t defined. */ |