diff options
author | Shaun Amott <shaun@FreeBSD.org> | 2008-11-17 16:44:11 +0000 |
---|---|---|
committer | Shaun Amott <shaun@FreeBSD.org> | 2008-11-17 16:44:11 +0000 |
commit | c78c4f90f3d93c76db664afa533277c5e651a0ec (patch) | |
tree | 476b6a1f469d6932998e57481c8e1ae32bbc34e6 /news | |
parent | - Fix plist problem, I was testing on wrong working copy... (diff) |
- Remove SSL OPTION; force OpenSSL dependency instead.
- Remove bogus TCL 8.3 dependency.
Submitted by: Dima Panov via cvs-ports
Notes
Notes:
svn path=/head/; revision=222973
Diffstat (limited to 'news')
-rw-r--r-- | news/inn/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/news/inn/Makefile b/news/inn/Makefile index 560c9bbcdb40..145bde05454d 100644 --- a/news/inn/Makefile +++ b/news/inn/Makefile @@ -33,7 +33,6 @@ OPTIONS= PERL "Embedded Perl script support" On \ TCL "Embedded TCL support" Off \ KERBEROS "Enable Kerberos auth support" Off \ SASL "Enable SASL support (for imapfeed auth)" Off \ - SSL "Enable OpenSSL support (for NNTP over SSL)" On \ TAGGED_HASH "Use tagged hash table for history" Off \ LARGE_FILES "Support for files larger than 2GB" Off \ KEYWORDS "Automatic keyword generation support" On \ @@ -54,6 +53,7 @@ CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \ --with-etc-dir=${INN_ETCDIR} \ --with-run-dir=${INN_RUNDIR} \ --with-db-dir=${INN_DBDIR} \ + --with-ssl=${OPENSSLBASE} \ --enable-ipv6 .include <bsd.port.pre.mk> @@ -65,11 +65,6 @@ CONFIGURE_ENV+= DB_LIB=${BDB_LIB_NAME} CONFIGURE_ARGS+= --with-berkeleydb=${LOCALBASE} .endif -.if defined(WITH_SSL) -.include "${PORTSDIR}/Mk/bsd.openssl.mk" -CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE} -.endif - .if defined(WITH_KERBEROS) . if exists(${LOCALBASE}/bin/krb5-config) LIB_DEPENDS+= gssapi_krb5:${PORTSDIR}/security/krb5 @@ -97,7 +92,6 @@ CONFIGURE_ARGS+= --with-python .if defined(WITH_TCL) USE_TCL= 84 CONFIGURE_ARGS+= --with-tcl=${LOCALBASE} -BUILD_DEPENDS+= ${LOCALBASE}/include/tcl8.3/tcl.h:${PORTSDIR}/lang/tcl83 .endif .if defined(WITH_MAXSOCKET) |