pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/socat Support systems where time_t is equivalent t...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/536532cfea77
branches:  trunk
changeset: 555883:536532cfea77
user:      apb <apb%pkgsrc.org@localhost>
date:      Wed Mar 11 08:40:32 2009 +0000

description:
Support systems where time_t is equivalent to "long long" or
"unsigned long long".

diffstat:

 net/socat/Makefile         |   3 ++-
 net/socat/distinfo         |   3 ++-
 net/socat/patches/patch-aa |  15 +++++++++++++++
 3 files changed, 19 insertions(+), 2 deletions(-)

diffs (42 lines):

diff -r c695f9f53644 -r 536532cfea77 net/socat/Makefile
--- a/net/socat/Makefile        Wed Mar 11 08:26:11 2009 +0000
+++ b/net/socat/Makefile        Wed Mar 11 08:40:32 2009 +0000
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.17 2008/10/25 18:21:18 adrianp Exp $
+# $NetBSD: Makefile,v 1.18 2009/03/11 08:40:32 apb Exp $
 
 DISTNAME=      socat-1.7.0.0
+PKGREVISION=   1
 CATEGORIES=    net
 MASTER_SITES=  http://www.dest-unreach.org/socat/download/
 
diff -r c695f9f53644 -r 536532cfea77 net/socat/distinfo
--- a/net/socat/distinfo        Wed Mar 11 08:26:11 2009 +0000
+++ b/net/socat/distinfo        Wed Mar 11 08:40:32 2009 +0000
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.11 2008/10/25 18:21:18 adrianp Exp $
+$NetBSD: distinfo,v 1.12 2009/03/11 08:40:32 apb Exp $
 
 SHA1 (socat-1.7.0.0.tar.gz) = f20badcaff11c4dad1e89f2ce396bd60a14d3464
 RMD160 (socat-1.7.0.0.tar.gz) = b03ef9ba23c45a55632dac17930b4a26346aa430
 Size (socat-1.7.0.0.tar.gz) = 547219 bytes
+SHA1 (patch-aa) = c10b68a5ca36ec27c6e77a01f6f89a832a4862eb
diff -r c695f9f53644 -r 536532cfea77 net/socat/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/net/socat/patches/patch-aa        Wed Mar 11 08:40:32 2009 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-aa,v 1.6 2009/03/11 08:40:32 apb Exp $
+
+--- compat.h.orig      2008-10-05 22:23:07.000000000 +0200
++++ compat.h
+@@ -232,6 +232,10 @@
+ #define F_time "%ld"
+ #  elif HAVE_BASIC_TIME_T==6
+ #define F_time "%lu"
++#  elif HAVE_BASIC_TIME_T==7
++#define F_time "%lld"
++#  elif HAVE_BASIC_TIME_T==8
++#define F_time "%llu"
+ #  else
+ #error "HAVE_BASIC_TIME_T is out of range:" HAVE_BASIC_TIME_T
+ #  endif



Home | Main Index | Thread Index | Old Index