# $NetBSD: options.mk,v 1.4 2023/04/13 16:45:47 osa Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.njs PKG_SUPPORTED_OPTIONS= ssl xml PKG_SUGGESTED_OPTIONS= pcre ssl PKG_OPTIONS_REQUIRED_GROUPS= regex PKG_OPTIONS_GROUP.regex= pcre pcre2 .include "../../mk/bsd.options.mk" .if !empty(PKG_OPTIONS:Mpcre) .include "../../devel/pcre/buildlink3.mk" SUBST_CLASSES+= fix-pcre SUBST_STAGE.fix-pcre= pre-configure SUBST_FILES.fix-pcre= auto/pcre SUBST_SED.fix-pcre= -e 's,/usr/pkg,${BUILDLINK_PREFIX.pcre},g' SUBST_NOOP_OK.fix-pcre= yes .else CONFIGURE_ARGS+= --no-pcre2 .endif .if !empty(PKG_OPTIONS:Mpcre2) .include "../../devel/pcre2/buildlink3.mk" SUBST_CLASSES+= fix-pcre2 SUBST_STAGE.fix-pcre2= pre-configure SUBST_FILES.fix-pcre2= auto/pcre SUBST_SED.fix-pcre2= -e 's,/usr/pkg,${BUILDLINK_PREFIX.pcre2},g' SUBST_NOOP_OK.fix-pcre2=yes .endif .if !empty(PKG_OPTIONS:Mssl) .include "../../security/openssl/buildlink3.mk" .else CONFIGURE_ARGS+= --no-openssl .endif .if !empty(PKG_OPTIONS:Mxml) .include "../../textproc/libxml2/buildlink3.mk" .else CONFIGURE_ARGS+= --no-libxml2 .endif