diff options
author | tnn <tnn> | 2009-10-20 09:53:28 +0000 |
---|---|---|
committer | tnn <tnn> | 2009-10-20 09:53:28 +0000 |
commit | fb579fdb34aa8270f28821b6a148ff183722b470 (patch) | |
tree | 63370f5b4b83ac8ae2b41458ba6da4c09815642d /multimedia | |
parent | e93b8f0749d6acdb04ba3974c2ed06aad9e26706 (diff) | |
download | pkgsrc-fb579fdb34aa8270f28821b6a148ff183722b470.tar.gz |
Fix build with dts option:
# The configure handling for --enable-libdca is broken.
# However, it works if you omit the argument and let
# configure autodetect support.
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/mplayer-share/options.mk | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/multimedia/mplayer-share/options.mk b/multimedia/mplayer-share/options.mk index 43acdb81edb..de31cb3e3ea 100644 --- a/multimedia/mplayer-share/options.mk +++ b/multimedia/mplayer-share/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.37 2009/10/18 22:22:10 ahoka Exp $ +# $NetBSD: options.mk,v 1.38 2009/10/20 09:53:28 tnn Exp $ .if defined(PKGNAME) && empty(PKGNAME:Mmplayer-share*) @@ -120,7 +120,10 @@ CONFIGURE_ARGS+= --enable-debug .endif .if !empty(PKG_OPTIONS:Mdts) -CONFIGURE_ARGS+= --enable-libdca +# The configure handling for --enable-libdca is broken. +# However, it works if you omit the argument and let +# configure autodetect support. +#CONFIGURE_ARGS+= --enable-libdca . include "../../audio/libdca/buildlink3.mk" .else CONFIGURE_ARGS+= --disable-libdca |