net/couriertcpd: remove ipv6 option

The configure script does not know --with-ipv6 anymore.
This commit is contained in:
rillig 2020-05-21 19:21:17 +00:00
parent e45d2e3458
commit b17c22faa8
2 changed files with 1 additions and 19 deletions

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.31 2020/01/26 17:31:48 rillig Exp $
# $NetBSD: Makefile,v 1.32 2020/05/21 19:21:17 rillig Exp $
DISTNAME= courier-${COURIER_VERSION}
PKGNAME= ${DISTNAME:S/-/tcpd-/}
@ -16,8 +16,6 @@ CONFLICTS= courier-imap<4.1.1
USE_TOOLS+= gmake pkg-config
USE_LANGUAGES= c c++
.include "options.mk"
.include "../../mail/courier-mta/Makefile.common"
# This package doesn't need to depend on courier-authlib -- just fake

View file

@ -1,16 +0,0 @@
# $NetBSD: options.mk,v 1.3 2019/09/26 11:36:55 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.couriertcpd
PKG_SUPPORTED_OPTIONS= inet6
PKG_SUGGESTED_OPTIONS= inet6
.include "../../mk/bsd.options.mk"
###
### IPv6 support.
###
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --with-ipv6
.else
CONFIGURE_ARGS+= --without-ipv6
.endif