e0085ac361
Changes in version 0.2.2.39 - 2012-09-11 Tor 0.2.2.39 fixes two more opportunities for remotely triggerable assertions. o Security fixes: - Fix an assertion failure in tor_timegm() that could be triggered by a badly formatted directory object. Bug found by fuzzing with Radamsa. Fixes bug 6811; bugfix on 0.2.0.20-rc. - Do not crash when comparing an address with port value 0 to an address policy. This bug could have been used to cause a remote assertion failure by or against directory authorities, or to allow some applications to crash clients. Fixes bug 6690; bugfix on 0.2.1.10-alpha. No CVEs for these vulnerabilities yet.
30 lines
593 B
Makefile
30 lines
593 B
Makefile
# $OpenBSD: Makefile,v 1.60 2012/09/12 21:09:28 pascal Exp $
|
|
|
|
COMMENT= anonymity service using onion routing
|
|
|
|
DISTNAME= tor-0.2.2.39
|
|
CATEGORIES= net
|
|
HOMEPAGE= http://www.torproject.org/
|
|
|
|
MAINTAINER= Pascal Stumpf <Pascal.Stumpf@cubes.de>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += c crypto event m pthread ssl z
|
|
|
|
MASTER_SITES= ${HOMEPAGE}dist/
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= --with-ssl-dir=/usr
|
|
|
|
DB_DIR= /var/tor
|
|
SUBST_VARS+= DB_DIR
|
|
|
|
FAKE_FLAGS= sysconfdir=${PREFIX}/share/examples
|
|
|
|
.include <bsd.port.mk>
|