diff options
author | minskim <minskim@pkgsrc.org> | 2005-09-11 16:29:58 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2005-09-11 16:29:58 +0000 |
commit | 19ddf31ff163ec1b09bce099bae07a0590f1e931 (patch) | |
tree | 0693f26425be33dc1dabfe09dc0a07a2e41c8709 /textproc | |
parent | 4caa7639382127b699965eecf2461b6981326728 (diff) | |
download | pkgsrc-19ddf31ff163ec1b09bce099bae07a0590f1e931.tar.gz |
Make sure that filters are built statically until dlopen() detection
in configure is fixed. The problem was reported to the author by
wiz@. This makes installed files match with PLIST on platforms with
libdl. Bump PKGREVISION.
Approved by wiz@.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/aspell/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/textproc/aspell/Makefile b/textproc/aspell/Makefile index 30735972a7e..d8ece801c11 100644 --- a/textproc/aspell/Makefile +++ b/textproc/aspell/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.35 2005/07/15 20:14:03 jlam Exp $ +# $NetBSD: Makefile,v 1.36 2005/09/11 16:29:58 minskim Exp $ # DISTNAME= aspell-0.60.3 +PKGREVISION= 1 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GNU:=aspell/} @@ -25,6 +26,10 @@ CONFIGURE_ARGS+= --enable-curses=ncurses CONFIGURE_ARGS+= --enable-pkgdatadir=${PREFIX}/share/aspell CONFIGURE_ARGS+= --enable-dict-dir=${PREFIX}/lib/aspell +# configure fails to detect dlopen() on NetBSD. Disable dynamic +# loading of filters until it is fixed. +CONFIGURE_ARGS+= --enable-compile-in-filters + REPLACE_PERL= scripts/aspell-import SUBST_CLASSES+= bash |