Changes in version 0.2.6.6 - 2015-03-24 Tor 0.2.6.6 is the first stable release in the 0.2.6 series. It adds numerous safety, security, correctness, and performance improvements. Client programs can be configured to use more kinds of sockets, AutomapHosts works better, the multithreading backend is improved, cell transmission is refactored, test coverage is much higher, more denial-of-service attacks are handled, guard selection is improved to handle long-term guards better, pluggable transports should work a bit better, and some annoying hidden service performance bugs should be addressed.
32 lines
771 B
Makefile
32 lines
771 B
Makefile
# $OpenBSD: Makefile,v 1.78 2015/03/26 21:32:30 pascal Exp $
|
|
|
|
COMMENT= anonymity service using onion routing
|
|
|
|
DISTNAME= tor-0.2.6.6
|
|
CATEGORIES= net
|
|
HOMEPAGE= https://www.torproject.org/
|
|
|
|
MAINTAINER= Pascal Stumpf <Pascal.Stumpf@cubes.de>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += c crypto event m pthread ssl z
|
|
|
|
MASTER_SITES= https://www.torproject.org/dist/
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
AUTOCONF_VERSION = 2.69
|
|
# PIE is already taken care of on a per-arch basis, and we have stack protection
|
|
# anyway on FRAME_GROWS_DOWN archs.
|
|
CONFIGURE_ARGS= --with-ssl-dir=/usr \
|
|
--disable-gcc-hardening
|
|
CONFIGURE_ENV+=ac_cv_member_struct_ssl_method_st_get_cipher_by_char=no
|
|
|
|
DB_DIR= /var/tor
|
|
SUBST_VARS+= DB_DIR
|
|
|
|
FAKE_FLAGS= sysconfdir=${PREFIX}/share/examples
|
|
|
|
.include <bsd.port.mk>
|