Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Dec 2017 21:52:04 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r456679 - in head/security/tor: . files
Message-ID:  <201712182152.vBILq4Ew025836@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Mon Dec 18 21:52:04 2017
New Revision: 456679
URL: https://svnweb.freebsd.org/changeset/ports/456679

Log:
  security/tor: Unbreaking on systems without timingsafe_memcmp(3)
  
  timingsafe_memcmp(3) has only been introduced in 12, therefore limiting its use to 12.
  
  Reported by:	Martin Gehlen <zitlo@zitlo.de> (bug reporter)
  Approved by:	adamw (mentor)
  Differential Revision:	https://reviews.freebsd.org/D13502

Added:
  head/security/tor/files/patch-orconfig.h.in   (contents, props changed)
Modified:
  head/security/tor/Makefile

Modified: head/security/tor/Makefile
==============================================================================
--- head/security/tor/Makefile	Mon Dec 18 21:51:42 2017	(r456678)
+++ head/security/tor/Makefile	Mon Dec 18 21:52:04 2017	(r456679)
@@ -3,6 +3,7 @@
 
 PORTNAME=	tor
 PORTVERSION=	0.3.1.9
+PORTREVISION=	1
 CATEGORIES=	security net ipv6
 MASTER_SITES=	TOR
 

Added: head/security/tor/files/patch-orconfig.h.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/tor/files/patch-orconfig.h.in	Mon Dec 18 21:52:04 2017	(r456679)
@@ -0,0 +1,12 @@
+--- orconfig.h.in.orig	2017-11-30 20:34:49 UTC
++++ orconfig.h.in
+@@ -517,7 +517,9 @@
+ #undef HAVE_TIME_H
+ 
+ /* Define to 1 if you have the `timingsafe_memcmp' function. */
++#if __FreeBSD_version >= 1200000 // disabled: timingsafe_memcmp(3) has been added only in 12.0, and isn't yet available on older systems
+ #undef HAVE_TIMINGSAFE_MEMCMP
++#endif
+ 
+ /* Define to 1 if you have the `TLS_method' function. */
+ #undef HAVE_TLS_METHOD



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