mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
17 lines
382 B
Makefile
17 lines
382 B
Makefile
# $NetBSD: options.mk,v 1.3 2012/06/12 15:45:59 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.ssmtp
|
|
PKG_SUPPORTED_OPTIONS= inet6 ssl
|
|
PKG_SUGGESTED_OPTIONS= inet6 ssl
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --enable-inet6
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
CONFIGURE_ARGS+= --enable-ssl
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.endif
|