pkgsrc/mail/fdm/options.mk
leot b12afb7281 fdm: Fix the build with OpenSSL 1.1.0 and minor cosmetic changes
- Fix the build with OpenSSL 1.1.0 backporting a patch from upstream.
- Minor mostly cosmetic changes (pointed out by pkglint)
- Take MAINTAINERship

Bump PKGREVISION
2018-05-04 15:33:22 +00:00

22 lines
393 B
Makefile

# $NetBSD: options.mk,v 1.3 2018/05/04 15:33:22 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