c38e82c10b
Complete list of changes from 0.60.5: * Compile fixes for Gcc 4.3. * Updated to Libtool 2.2.2 and Automake 1.10.1 * Minor tweak to suggestion code which improved suggestion results in certain cases. * Always line buffer stdout and stderr in the Aspell utility when there is the potential for it to be used interactively through a pipe. * Removed debug output in `aspell munch-list'. * Other minor updates and bug fixes.
18 lines
599 B
Makefile
18 lines
599 B
Makefile
# $NetBSD: options.mk,v 1.1 2008/04/29 11:40:50 wiz Exp $
|
|
|
|
# Loadable filter currently don't work on NetBSD, see
|
|
# https://sourceforge.net/tracker/?func=detail&atid=100245&aid=1336865&group_id=245
|
|
# Disable dynamic loading of filters until it is fixed.
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.aspell
|
|
PKG_SUPPORTED_OPTIONS= # none
|
|
#PKG_SUPPORTED_OPTIONS= aspell-loadable-filters
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= filters
|
|
.if !empty(PKG_OPTIONS:Maspell-loadable-filters)
|
|
CONFIGURE_ARGS+= --disable-compile-in-filters
|
|
PLIST.filters= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-compile-in-filters
|
|
.endif
|