diff options
author | grant <grant@pkgsrc.org> | 2003-12-11 09:57:20 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-12-11 09:57:20 +0000 |
commit | a900bcf374307a6406dbf3695d490116b0cf335a (patch) | |
tree | e1e552ad0901a85b276782379e1cfca2dd425103 /audio/sox/Makefile | |
parent | 92f6643bc8367a4eb125baaac9c1db649bb6f39d (diff) | |
download | pkgsrc-a900bcf374307a6406dbf3695d490116b0cf335a.tar.gz |
the configure script uses --disable-oss-dsp to disable OSS support,
not --without-oss-dsp. fixes linking on NetBSD.
(how did this ever link given that -lossaudio is not passed??)
Diffstat (limited to 'audio/sox/Makefile')
-rw-r--r-- | audio/sox/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/sox/Makefile b/audio/sox/Makefile index 63786855bef..45634a0cc5c 100644 --- a/audio/sox/Makefile +++ b/audio/sox/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2003/12/08 14:41:38 wiz Exp $ +# $NetBSD: Makefile,v 1.26 2003/12/11 09:57:20 grant Exp $ DISTNAME= sox-12.17.4 PKGREVISION= 2 @@ -15,7 +15,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-fast-ulaw \ --enable-fast-alaw \ --with-sun-audio \ - --without-oss-dsp \ + --disable-oss-dsp \ --with-ogg-vorbislib=${BUILDLINK_PREFIX.libvorbis}/lib \ --with-ogg-vorbisinc=${BUILDLINK_PREFIX.libvorbis}/include |