pkgsrc-wip/bincimap/options.mk
Bartosz Kuzma 184d7d7a0a Binc IMAP is a well designed, modular IMAP server for Maildir. Its goals
are to be secure, stable, and fast, yet flexible and easy to maintain.
Binc IMAP 1.2 is a Maildir only IMAP server (no traditional mbox support).
It needs to be started from inetd.
2006-05-23 18:06:34 +00:00

15 lines
437 B
Makefile

# $NetBSD: options.mk,v 1.1.1.1 2006/05/23 18:06:34 bartoszkuzma Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.bincimap
PKG_SUPPORTED_OPTIONS= ssl
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mssl)
.include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --with-ssl
CONFIGURE_ARGS+= --with-openssl-include=${SSLBASE:Q}/include
CONFIGURE_ARGS+= --with-openssl-lib=${SSLBASE:Q}/lib
.else
CONFIGURE_ARGS+= --without-ssl
.endif