diff options
author | dsainty <dsainty@pkgsrc.org> | 2008-08-15 01:41:42 +0000 |
---|---|---|
committer | dsainty <dsainty@pkgsrc.org> | 2008-08-15 01:41:42 +0000 |
commit | 4a4e8f4c956010af84d003d5ed74176bedb38798 (patch) | |
tree | b73049048ede05e6dbe58a55cea6ef4469332995 /sysutils | |
parent | e0f4087723361675dd390fe2d3e43149ecb19560 (diff) | |
download | pkgsrc-4a4e8f4c956010af84d003d5ed74176bedb38798.tar.gz |
gnome-vfs configure fails to complete in extension modules in the absence of
"bzlib.h". Environments without a system-installed "bzlib.h" will fail to
build modules like "audio/gnome-vfs-cdda" with the following:
checking for bzCompressInit in -lbz2... no
checking bzlib.h usability... no
checking bzlib.h presence... no
checking for bzlib.h... no
configure: error: Gnome-vfs requires libbz2 to compile.
*** Error code 1
To fix this, promote bzip2 dependency from gnome-vfs/Makefile to
gnome-vfs/Makefile.common.
XXX Only /usr/pkg/lib/gnome-vfs-2.0/modules/libbzip2.so actually appears to
link with libbz2.so, so it's possible that configure is being overly picky.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/gnome-vfs/Makefile | 3 | ||||
-rw-r--r-- | sysutils/gnome-vfs/Makefile.common | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sysutils/gnome-vfs/Makefile b/sysutils/gnome-vfs/Makefile index 846f5e97b8a..9a11aa8425a 100644 --- a/sysutils/gnome-vfs/Makefile +++ b/sysutils/gnome-vfs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.69 2008/05/05 10:59:55 drochner Exp $ +# $NetBSD: Makefile,v 1.70 2008/08/15 01:41:42 dsainty Exp $ PKGCONFIG_OVERRIDE= gnome-vfs-2.0.pc.in PKGCONFIG_OVERRIDE+= gnome-vfs-module-2.0.pc.in @@ -29,7 +29,6 @@ CONFLICTS+= gnome-vfs2-[0-9]* .include "../../devel/GConf/schemas.mk" -.include "../../archivers/bzip2/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" diff --git a/sysutils/gnome-vfs/Makefile.common b/sysutils/gnome-vfs/Makefile.common index 271c1e4c9f2..0e348313198 100644 --- a/sysutils/gnome-vfs/Makefile.common +++ b/sysutils/gnome-vfs/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.10 2008/06/20 01:09:35 joerg Exp $ +# $NetBSD: Makefile.common,v 1.11 2008/08/15 01:41:42 dsainty Exp $ # GNOME_VFS_VERSION= 2.22.0 @@ -125,6 +125,7 @@ do-install: ${DESTDIR}${PREFIX}/lib/gnome-vfs-2.0/modules .endif +.include "../../archivers/bzip2/buildlink3.mk" .include "../../devel/GConf/buildlink3.mk" .include "../../devel/glib2/buildlink3.mk" .include "../../security/gnutls/buildlink3.mk" |