summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2015-03-19 19:16:31 +0000
committerjoerg <joerg@pkgsrc.org>2015-03-19 19:16:31 +0000
commit02f1f19b5c2b45a5f9cdb7ac83cd81a04a1f9eaf (patch)
tree9a340cff78fb91a9bd3f429a2084a21692f624b3 /sysutils
parentdf4d5ea4952250149f9d6eb659a2ac2552398e47 (diff)
downloadpkgsrc-02f1f19b5c2b45a5f9cdb7ac83cd81a04a1f9eaf.tar.gz
Fix format string on ILP32 platforms with 64bit time_t.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/netbt-hcidump/Makefile3
-rw-r--r--sysutils/netbt-hcidump/distinfo4
-rw-r--r--sysutils/netbt-hcidump/patches/patch-tools_parser_parser.h4
3 files changed, 6 insertions, 5 deletions
diff --git a/sysutils/netbt-hcidump/Makefile b/sysutils/netbt-hcidump/Makefile
index 87c1a6e6fe0..fbf0431cc47 100644
--- a/sysutils/netbt-hcidump/Makefile
+++ b/sysutils/netbt-hcidump/Makefile
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.10 2014/12/30 08:39:13 plunky Exp $
+# $NetBSD: Makefile,v 1.11 2015/03/19 19:16:31 joerg Exp $
DISTNAME= bluez-5.27
PKGNAME= netbt-hcidump-${BLUEZ_VERSION}
+PKGREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= http://www.kernel.org/pub/linux/bluetooth/
EXTRACT_SUFX= .tar.xz
diff --git a/sysutils/netbt-hcidump/distinfo b/sysutils/netbt-hcidump/distinfo
index 98f5e79cf23..306d9168101 100644
--- a/sysutils/netbt-hcidump/distinfo
+++ b/sysutils/netbt-hcidump/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.13 2014/12/30 08:39:13 plunky Exp $
+$NetBSD: distinfo,v 1.14 2015/03/19 19:16:31 joerg Exp $
SHA1 (bluez-5.27.tar.xz) = c1707e8ae38b299c07e6c18ff3c26a4b928d03bf
RMD160 (bluez-5.27.tar.xz) = 21cec0a67c70215cc6972a0bfd5679b1a5fa8fac
@@ -18,6 +18,6 @@ SHA1 (patch-tools_hcidump.c) = ca6871ca562bc218ce445edf8b364f528d260d4e
SHA1 (patch-tools_parser_Makefile) = 5f3e3c3b73a88756e485318d4b00e64d42366fa3
SHA1 (patch-tools_parser_bnep.c) = efbbe5f4cd47dcb0bf72c16bd67d9d93ba7cd43a
SHA1 (patch-tools_parser_lmp.c) = f410be55cf07f6d7f7d3b1466b7fbe708b1a6de5
-SHA1 (patch-tools_parser_parser.h) = f644764b717fa8d1ae7935cc83b4199e6cd69159
+SHA1 (patch-tools_parser_parser.h) = 19ff1cdd8d7af71d9ae86497d3e1f49ae9db9a2a
SHA1 (patch-tools_parser_rfcomm.h) = 917dd10203c62de7679909fc014a69ccd2a5185d
SHA1 (patch-tools_parser_tcpip.c) = e06881372e8edf23f22c1a0a61c9bc346381a0e3
diff --git a/sysutils/netbt-hcidump/patches/patch-tools_parser_parser.h b/sysutils/netbt-hcidump/patches/patch-tools_parser_parser.h
index fefd2ee16a5..7e081943494 100644
--- a/sysutils/netbt-hcidump/patches/patch-tools_parser_parser.h
+++ b/sysutils/netbt-hcidump/patches/patch-tools_parser_parser.h
@@ -1,4 +1,4 @@
-$NetBSD: patch-tools_parser_parser.h,v 1.1 2014/12/30 08:39:13 plunky Exp $
+$NetBSD: patch-tools_parser_parser.h,v 1.2 2015/03/19 19:16:31 joerg Exp $
the device ID is a string on netbt stack
@@ -21,7 +21,7 @@ the device ID is a string on netbt stack
+ tm.tm_hour, tm.tm_min, tm.tm_sec, (unsigned long)f->ts.tv_usec);
} else
- printf("%8lu.%06lu ", f->ts.tv_sec, f->ts.tv_usec);
-+ printf("%8lu.%06lu ", f->ts.tv_sec, (unsigned long)f->ts.tv_usec);
++ printf("%8ju.%06lu ", (uintmax_t)f->ts.tv_sec, (unsigned long)f->ts.tv_usec);
}
printf("%c ", (f->in ? '>' : '<'));
parser.state = 1;