99c1120dea
2019-05-25 balsa-2.5.7 - encryption, HTML email improvements; bug fixes. 2018-06-01 balsa-2.5.6 - webkit2 external load fix; reply-to-group improvements. 2018-02-26 balsa-2.5.5 - crypto and networking improvements; portability fixes. 2016-12-09 balsa-2.5.3 - gtk3 branch is master now; more bugfixes and ports. 2015-05-30 balsa-2.5.2 - a release of various bug fixes collected in gtk3 branch. 2013-04-27 balsa-2.5.1 - next batch of improvents for your mailing pleasure! 2013-02-28 balsa-2.5.0 - buildable against gtk3 - goes official!
21 lines
548 B
Makefile
21 lines
548 B
Makefile
# $NetBSD: options.mk,v 1.4 2019/09/14 18:57:10 nia Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.balsa
|
|
PKG_SUPPORTED_OPTIONS= compface ldap sqlite
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mcompface)
|
|
CONFIGURE_ARGS+= --with-compface
|
|
. include "../../graphics/compface/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mldap)
|
|
CONFIGURE_ARGS+= --with-ldap
|
|
. include "../../databases/openldap-client/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Msqlite)
|
|
CONFIGURE_ARGS+= --with-sqlite
|
|
. include "../../databases/sqlite3/buildlink3.mk"
|
|
.endif
|