diff options
author | jlam <jlam@pkgsrc.org> | 2001-10-04 03:49:54 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-10-04 03:49:54 +0000 |
commit | 271f847257d56d7a226bd68fb147994a45e86327 (patch) | |
tree | 3ff6a8218613466fc821ac6ffd38956e11c4665a | |
parent | ded92634310a883f3b5a372e8c293a93d6ac5d6a (diff) | |
download | pkgsrc-271f847257d56d7a226bd68fb147994a45e86327.tar.gz |
Workaround a bug in the configure script where the prefix used to search
for the Ogg headers and libraries is missing when it's not supplied to the
configure script.
-rw-r--r-- | audio/libvorbis/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/audio/libvorbis/Makefile b/audio/libvorbis/Makefile index 0f8981ead9b..668dd5f69d4 100644 --- a/audio/libvorbis/Makefile +++ b/audio/libvorbis/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2001/08/27 14:35:05 tron Exp $ +# $NetBSD: Makefile,v 1.10 2001/10/04 03:49:54 jlam Exp $ DISTNAME= libvorbis-1.0rc2 PKGNAME= libvorbis-1.0.0.6 @@ -9,11 +9,13 @@ MAINTAINER= lukem@netbsd.org HOMEPAGE= http://www.xiph.org/ogg/vorbis/ COMMENT= Library for the Ogg Vorbis audio encoding format -USE_BUILDLINK_ONLY= YES -BUILD_DEPENDS+= autoconf>=2.13:../../devel/autoconf -BUILD_DEPENDS+= automake>=1.4:../../devel/automake +BUILD_DEPENDS+= autoconf>=2.13:../../devel/autoconf +BUILD_DEPENDS+= automake>=1.4:../../devel/automake +USE_BUILDLINK_ONLY= YES GNU_CONFIGURE= YES +CONFIGURE_ARGS+= --with-ogg-prefix=${BUILDLINK_DIR} + USE_LIBTOOL= YES LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig |