diff options
author | marino <marino@pkgsrc.org> | 2012-07-20 14:13:53 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2012-07-20 14:13:53 +0000 |
commit | fd053ffa51b7ad34d10b8f270380089db9533a76 (patch) | |
tree | 108799fa85d95dfd88cb9f7f22961783a1b111a4 | |
parent | b30d4b0ecccdbc47e4fae84c98ebcc730b080929 (diff) | |
download | pkgsrc-fd053ffa51b7ad34d10b8f270380089db9533a76.tar.gz |
net/mldonkey-gui: CONFIGURE_ARGS+= --disable-option-checking
On DragonFly, this package always halted on the configure stage with the
message, "configure: error: unrecognized options: --with-libintl-prefix"
We couldn't find the source of this obsolete configure option, it didn't
come from mldonkey and devel/gettext-lib isn't a dependency. Adding
--disable-option-checking changed allowed this to be a warning rather than
a fatal error and also allows a successful build.
Background: DragonFly doesn't have libintl in base.
-rw-r--r-- | net/mldonkey-gui/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mldonkey-gui/Makefile b/net/mldonkey-gui/Makefile index 7752594e2ac..344c7aa909f 100644 --- a/net/mldonkey-gui/Makefile +++ b/net/mldonkey-gui/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.52 2012/07/15 08:22:52 wiz Exp $ +# $NetBSD: Makefile,v 1.53 2012/07/20 14:13:53 marino Exp $ # .include "../../net/mldonkey/Makefile.common" @@ -15,6 +15,7 @@ USE_TOOLS+= pkg-config INSTALLATION_DIRS= bin libexec/mldonkey CONFIGURE_ARGS+= --enable-gui=newgui2 +CONFIGURE_ARGS+= --disable-option-checking do-install: ${RM} -f ${DESTDIR}${PREFIX}/bin/mlgui |