diff options
author | obache <obache@pkgsrc.org> | 2008-12-14 07:50:49 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2008-12-14 07:50:49 +0000 |
commit | 9244674af5aa9fa7eb602c335cc386ab3aaa7a02 (patch) | |
tree | 17bf05e1127bb897aa6270d5219f0af09cb8d4e1 /pkgtools | |
parent | 6108b16a8378e24180d5bf64283de2ad620498a9 (diff) | |
download | pkgsrc-9244674af5aa9fa7eb602c335cc386ab3aaa7a02.tar.gz |
Need to include stdint.h for unit64_t on SUA 6.0.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/libnbcompat/files/nbcompat/types.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgtools/libnbcompat/files/nbcompat/types.h b/pkgtools/libnbcompat/files/nbcompat/types.h index c1d5774e720..329b88209bb 100644 --- a/pkgtools/libnbcompat/files/nbcompat/types.h +++ b/pkgtools/libnbcompat/files/nbcompat/types.h @@ -1,4 +1,4 @@ -/* $NetBSD: types.h,v 1.3 2008/10/08 14:28:14 joerg Exp $ */ +/* $NetBSD: types.h,v 1.4 2008/12/14 07:50:49 obache Exp $ */ /*- * Copyright (c) 2004 The NetBSD Foundation, Inc. @@ -44,6 +44,10 @@ #include <inttypes.h> #endif +#if HAVE_STDINT_H +#include <stdint.h> +#endif + /* * Declare macros and functions that may be missing in <sys/types.h>. */ |