pkgsrc/mail/fdm/options.mk

23 lines
396 B
Makefile
Raw Normal View History

# $NetBSD: options.mk,v 1.2 2015/09/25 13:08:44 leot Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.fdm
PKG_SUPPORTED_OPTIONS= debug pcre
PKG_SUGGESTED_OPTIONS= pcre
.include "../../mk/bsd.options.mk"
#
# Debug
#
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-debug
.endif
#
# PCRE support
#
.if !empty(PKG_OPTIONS:Mpcre)
MAKE_ENV+= PCRE=1
. include "../../devel/pcre/buildlink3.mk"
.endif