1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-01 01:17:02 +00:00

security/tor: Update to 0.3.2.9

This release contains many new features and many bugfixes.
Plesee see the complete list here:
https://blog.torproject.org/tor-0329-released-we-have-new-stable-series

Additionally, this update adds "#include <osreldate.h>" to qualm the
compiler warning that was caused by the previous fix.

Now security/tor and security/tor-devel are identical.

Submitted by:	myself
Reported by:	upstream notification
Approved by:	adamw (mentor)
Differential Revision:	https://reviews.freebsd.org/D13820
This commit is contained in:
Yuri Victorovich 2018-01-14 19:24:40 +00:00
parent 5e2054da56
commit f0ad21c6bb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=458993
3 changed files with 6 additions and 6 deletions

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= tor
PORTVERSION= 0.3.1.9
PORTREVISION= 1
DISTVERSION= 0.3.2.9
CATEGORIES= security net ipv6
MASTER_SITES= TOR

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1512146746
SHA256 (tor-0.3.1.9.tar.gz) = 6e1b04f7890e782fd56014a0de5075e4ab29b52a35d8bca1f6b80c93f58f3d26
SIZE (tor-0.3.1.9.tar.gz) = 6092702
TIMESTAMP = 1515542628
SHA256 (tor-0.3.2.9.tar.gz) = 435a7b91aa98d8b1a0ac1f60ca30c0ff3665b18a02e570bab5fe27935829160f
SIZE (tor-0.3.2.9.tar.gz) = 6250442

View File

@ -1,9 +1,10 @@
--- orconfig.h.in.orig 2017-11-30 20:34:49 UTC
+++ orconfig.h.in
@@ -517,7 +517,9 @@
@@ -517,7 +517,10 @@
#undef HAVE_TIME_H
/* Define to 1 if you have the `timingsafe_memcmp' function. */
+#include <osreldate.h>
+#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