pkgsrc/net/tnftpd/options.mk

18 lines
377 B
Makefile
Raw Normal View History

# $NetBSD: options.mk,v 1.2 2008/10/09 04:14:29 lukem Exp $
2005-12-02 18:03:54 +01:00
PKG_OPTIONS_VAR= PKG_OPTIONS.tnftpd
PKG_SUPPORTED_OPTIONS= inet6 pam
2005-12-02 18:03:54 +01:00
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
.if !empty(PKG_OPTIONS:Mpam)
.include "../../mk/pam.buildlink3.mk"
CONFIGURE_ARGS+= --with-pam
.endif