Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Jan 2021 10:59:09 +0000 (UTC)
From:      Emanuel Haupt <ehaupt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r560281 - in head/net/socat: . files
Message-ID:  <202101041059.104Ax99v067477@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ehaupt
Date: Mon Jan  4 10:59:09 2021
New Revision: 560281
URL: https://svnweb.freebsd.org/changeset/ports/560281

Log:
  Update to 1.7.4.0

Added:
  head/net/socat/files/patch-compat.h   (contents, props changed)
Deleted:
  head/net/socat/files/patch-filan.c
  head/net/socat/files/patch-procan.c
Modified:
  head/net/socat/Makefile
  head/net/socat/distinfo

Modified: head/net/socat/Makefile
==============================================================================
--- head/net/socat/Makefile	Mon Jan  4 10:52:39 2021	(r560280)
+++ head/net/socat/Makefile	Mon Jan  4 10:59:09 2021	(r560281)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	socat
-PORTVERSION=	1.7.3.4
-PORTREVISION=	1
+PORTVERSION=	1.7.4.0
 CATEGORIES=	net
 MASTER_SITES=	http://www.dest-unreach.org/socat/download/ \
 		LOCAL/ehaupt

Modified: head/net/socat/distinfo
==============================================================================
--- head/net/socat/distinfo	Mon Jan  4 10:52:39 2021	(r560280)
+++ head/net/socat/distinfo	Mon Jan  4 10:59:09 2021	(r560281)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1578296334
-SHA256 (socat-1.7.3.4.tar.bz2) = 972374ca86f65498e23e3259c2ee1b8f9dbeb04d12c2a78c0c9b5d1cb97dfdfc
-SIZE (socat-1.7.3.4.tar.bz2) = 490552
+TIMESTAMP = 1609754594
+SHA256 (socat-1.7.4.0.tar.bz2) = c8273b30e933be0ad8d509ae75e19ecedf1a60081bb942ed36f2dd8950de3d58
+SIZE (socat-1.7.4.0.tar.bz2) = 509023

Added: head/net/socat/files/patch-compat.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/socat/files/patch-compat.h	Mon Jan  4 10:59:09 2021	(r560281)
@@ -0,0 +1,40 @@
+--- compat.h.orig	2021-01-03 18:23:22 UTC
++++ compat.h
+@@ -134,6 +134,8 @@ typedef int sig_atomic_t;
+ #    define F_uint64_t "%u"
+ #  elif HAVE_BASIC_UINT64_T==6
+ #    define F_uint64_t "%lu"
++#  elif HAVE_BASIC_UINT64_T==8
++#    define F_uint64_t "%llu"
+ #  else
+ #    error "HAVE_BASIC_UINT64_T is out of range:" HAVE_BASIC_UINT64_T
+ #  endif
+@@ -147,7 +149,7 @@ typedef int sig_atomic_t;
+ #  elif HAVE_BASIC_INT16_T==3
+ #    define F_int16_t "%d"
+ #  elif HAVE_BASIC_INT16_T==5
+-#    define F_int16_t "%l"
++#    define F_int16_t "%ld"
+ #  else
+ #    error "HAVE_BASIC_INT16_T is out of range:" HAVE_BASIC_INT16_T
+ #  endif
+@@ -161,7 +163,7 @@ typedef int sig_atomic_t;
+ #  elif HAVE_BASIC_INT32_T==3
+ #    define F_int32_t "%d"
+ #  elif HAVE_BASIC_INT32_T==5
+-#    define F_int32_t "%l"
++#    define F_int32_t "%ld"
+ #  else
+ #    error "HAVE_BASIC_INT32_T is out of range:" HAVE_BASIC_INT32_T
+ #  endif
+@@ -175,7 +177,9 @@ typedef int sig_atomic_t;
+ #  elif HAVE_BASIC_INT64_T==3
+ #    define F_int64_t "%d"
+ #  elif HAVE_BASIC_INT64_T==5
+-#    define F_int64_t "%l"
++#    define F_int64_t "%ld"
++#  elif HAVE_BASIC_INT64_T==7
++#    define F_int64_t "%lld"
+ #  else
+ #    error "HAVE_BASIC_INT64_T is out of range:" HAVE_BASIC_INT64_T
+ #  endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101041059.104Ax99v067477>