diff options
author | minskim <minskim@pkgsrc.org> | 2005-03-24 15:37:40 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2005-03-24 15:37:40 +0000 |
commit | 6c25e87617840276a798ebd921f23a9100154346 (patch) | |
tree | eb457e1aab887819ca231d29dbb59c5410a676b0 /pkgtools | |
parent | 327de5a083218d5f98b31aaffcb6de7110b25e19 (diff) | |
download | pkgsrc-6c25e87617840276a798ebd921f23a9100154346.tar.gz |
Include stdint.h because uint32_t is used. Makes the package build on
Linux again.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/digest/files/whirlpool.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgtools/digest/files/whirlpool.c b/pkgtools/digest/files/whirlpool.c index 60abdf79a70..69aeab751a2 100644 --- a/pkgtools/digest/files/whirlpool.c +++ b/pkgtools/digest/files/whirlpool.c @@ -56,8 +56,15 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <errno.h> #include <fcntl.h> +#ifdef HAVE_STDINT_H +#include <stdint.h> +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> |