diff options
author | wiz <wiz@pkgsrc.org> | 2008-04-29 11:40:50 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2008-04-29 11:40:50 +0000 |
commit | c38e82c10b63ea7573245e89ee40d43b5b8e6016 (patch) | |
tree | 1df3b685ddc56d5a00b503bc9acaaf151a108329 /textproc/aspell/options.mk | |
parent | 5557a991d43460976e68eddfab31b3ea391107db (diff) | |
download | pkgsrc-c38e82c10b63ea7573245e89ee40d43b5b8e6016.tar.gz |
Update to 0.60.6:
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.
Diffstat (limited to 'textproc/aspell/options.mk')
-rw-r--r-- | textproc/aspell/options.mk | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/textproc/aspell/options.mk b/textproc/aspell/options.mk new file mode 100644 index 00000000000..b647d607cca --- /dev/null +++ b/textproc/aspell/options.mk @@ -0,0 +1,18 @@ +# $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 |