diff options
author | maya <maya@pkgsrc.org> | 2016-12-12 09:22:54 +0000 |
---|---|---|
committer | maya <maya@pkgsrc.org> | 2016-12-12 09:22:54 +0000 |
commit | ee3309b9e0a01b55506c0d357c308bd5c364b8c7 (patch) | |
tree | 95ec138e4f50103bfd1fbcd9c81215df203a2449 /devel | |
parent | dd32ab0ed1d1ae904e109d7517b4ad2cbf3c1264 (diff) | |
download | pkgsrc-ee3309b9e0a01b55506c0d357c308bd5c364b8c7.tar.gz |
glib2: don't build with libmount on linux, avoids spurious dependency
on libmount-dev (not provided in pkgsrc, linux only)
no response from maintainer yet.
this package being broken on bulk builds leads to 3472 dependents being
broken, so commit anyway.
from mutek in PR pkg/51681
Diffstat (limited to 'devel')
-rw-r--r-- | devel/glib2/Makefile.common | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/devel/glib2/Makefile.common b/devel/glib2/Makefile.common index ea85fe1e7b2..5f83a4e8dd5 100644 --- a/devel/glib2/Makefile.common +++ b/devel/glib2/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.52 2016/11/25 12:42:21 prlw1 Exp $ +# $NetBSD: Makefile.common,v 1.53 2016/12/12 09:22:54 maya Exp $ # # used by devel/glib2/Makefile # used by devel/gdbus-codegen/Makefile @@ -37,6 +37,8 @@ CONFIGURE_ARGS+= --disable-man # Requires xsltproc and Docbook. CONFIGURE_ARGS+= --disable-modular-tests # Avoid unnecessary autotools invocation. CONFIGURE_ARGS+= --disable-maintainer-mode +# Avoid linux dependency on libmount-dev +CONFIGURE_ARGS.Linux+= --disable-libmount # When ICONV_TYPE=gnu ensure we explicitly use the GNU version, to avoid # conflicts between iconv.h from converters/libiconv and builtin libiconv |