dba9994c71
* The spell checking feature was implemented (requires GtkSpell). * The drop of files is allowed on the whole composition window. * The insertion of text by drag and drop was disabled. * The PGP interface is disabled if GnuPG is not available. * A bug that aborted program if invalid UTF-8 text is put in the log window was fixed. * The pane between summary and message view became more visible. * Reply-to-list is not enabled for subscribe confirmation request etc. * The bug that the separator of newsgroups was broken was fixed. * The bug that broke the summary selection when mark, unread, and colorlabel flags were changed while the summary was sorted by them was fixed. * The bug that caused crash when quote colors dialog was closed by the window close button was fixed. * The bug that showed wrong value if the total size of a folder was more than 2GB was fixed.
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# $NetBSD: options.mk,v 1.1 2005/11/19 10:46:11 xtraeme Exp $
|
|
#
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.sylpheed-devel
|
|
PKG_SUPPORTED_OPTIONS= jpilot ldap inet6 gtkspell gpgme
|
|
PKG_SUGGESTED_OPTIONS= inet6 gpgme
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
FACES_IS_INSTALLED!= ${PKG_INFO} -e faces || ${ECHO}
|
|
.if empty(FACES_IS_INSTALLED)
|
|
. include "../../graphics/compface/buildlink3.mk"
|
|
.else
|
|
. include "../../mail/faces/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mldap)
|
|
CONFIGURE_ARGS+= --enable-ldap
|
|
.include "../../databases/openldap/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mjpilot)
|
|
CONFIGURE_ARGS+= --enable-jpilot
|
|
.include "../../comms/pilot-link-libs/buildlink3.mk"
|
|
.include "../../comms/jpilot/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mgtkspell)
|
|
CONFIGURE_ARGS+= --enable-gtkspell
|
|
. include "../../textproc/gtkspell/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gtkspell
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mgpgme)
|
|
CONFIGURE_ARGS+= --enable-gpgme
|
|
. include "../../security/gpgme/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gpgme
|
|
.endif
|
|
|