summaryrefslogtreecommitdiff
path: root/sysutils/fam
diff options
context:
space:
mode:
authortv <tv>2005-03-14 22:40:09 +0000
committertv <tv>2005-03-14 22:40:09 +0000
commit50f560e23f56cb1f5511759670beaa5491f52c09 (patch)
treed9dab4209a3c0f6333678d371b497af539656999 /sysutils/fam
parent4ef68cc17b96d16d999c69873b20560931350409 (diff)
downloadpkgsrc-50f560e23f56cb1f5511759670beaa5491f52c09.tar.gz
Don't include <inttypes.h> if configure didn't find it.
Diffstat (limited to 'sysutils/fam')
-rw-r--r--sysutils/fam/distinfo4
-rw-r--r--sysutils/fam/patches/patch-ab4
2 files changed, 4 insertions, 4 deletions
diff --git a/sysutils/fam/distinfo b/sysutils/fam/distinfo
index d474e5f36fa..53f35c3539c 100644
--- a/sysutils/fam/distinfo
+++ b/sysutils/fam/distinfo
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.20 2005/03/01 23:06:55 dmcmahill Exp $
+$NetBSD: distinfo,v 1.21 2005/03/14 22:40:09 tv Exp $
SHA1 (fam-2.7.0.tar.gz) = 6c2316f02acf89a41c42ffc3d7fd9cf5eada83a8
RMD160 (fam-2.7.0.tar.gz) = 1895b578d6a141c36d5bee4e3fbbc2a298a91430
Size (fam-2.7.0.tar.gz) = 301974 bytes
SHA1 (patch-aa) = 9e777dc42b92081b8ca8670277c561f0b6e28d9f
-SHA1 (patch-ab) = faac6d48f2c807d5a854a17e4ea43ef94315299a
+SHA1 (patch-ab) = 88add19778bbc586e41249a59afb7ba643ff3a5d
SHA1 (patch-ac) = 676966b0372780af4ee5536276132a04dd038863
SHA1 (patch-ad) = 19364c8dd3f887a59f41556206c8c2d179577932
SHA1 (patch-ae) = aa8fed958555d6870367fd202a6117ddcb5a1da9
diff --git a/sysutils/fam/patches/patch-ab b/sysutils/fam/patches/patch-ab
index 2c455537926..cff6395cefb 100644
--- a/sysutils/fam/patches/patch-ab
+++ b/sysutils/fam/patches/patch-ab
@@ -1,4 +1,4 @@
-$NetBSD: patch-ab,v 1.5 2004/12/09 18:45:32 minskim Exp $
+$NetBSD: patch-ab,v 1.6 2005/03/14 22:40:09 tv Exp $
--- config.h.in.orig 2003-01-19 18:40:15.000000000 -0600
+++ config.h.in
@@ -60,7 +60,7 @@ $NetBSD: patch-ab,v 1.5 2004/12/09 18:45:32 minskim Exp $
#undef uid_t
+
+/* Use standard POSIX type if BSD type is not available */
-+#ifndef u_int32_t
++#if !defined(u_int32_t) && defined(HAVE_INTTYPES_H)
+#include <inttypes.h>
+typedef uint32_t u_int32_t;
+#endif