From 5fdbf108c4bacd16044349d7b7f610e636042abe Mon Sep 17 00:00:00 2001 From: Yuri Victorovich Date: Mon, 18 Dec 2017 21:52:04 +0000 Subject: 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 (bug reporter) Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D13502 --- security/tor/Makefile | 1 + security/tor/files/patch-orconfig.h.in | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 security/tor/files/patch-orconfig.h.in (limited to 'security/tor') diff --git a/security/tor/Makefile b/security/tor/Makefile index 6a710b025a2c..90afc596129a 100644 --- a/security/tor/Makefile +++ b/security/tor/Makefile @@ -3,6 +3,7 @@ PORTNAME= tor PORTVERSION= 0.3.1.9 +PORTREVISION= 1 CATEGORIES= security net ipv6 MASTER_SITES= TOR diff --git a/security/tor/files/patch-orconfig.h.in b/security/tor/files/patch-orconfig.h.in new file mode 100644 index 000000000000..5f670c9debb3 --- /dev/null +++ b/security/tor/files/patch-orconfig.h.in @@ -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 -- cgit v1.2.3