[FFmpeg-cvslog] configure: fix libcdio check
Mans Rullgard
git at videolan.org
Fri Oct 19 14:10:06 CEST 2012
ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Thu Oct 18 22:38:12 2012 +0100| [1cd432e167b1a80853760c89a33606e2b5f229c2] | committer: Mans Rullgard
configure: fix libcdio check
The compiler/linker flags passed to check_lib2 should not be quoted.
Signed-off-by: Mans Rullgard <mans at mansr.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1cd432e167b1a80853760c89a33606e2b5f229c2
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
index 218e513..2bdc4b0 100755
--- a/configure
+++ b/configure
@@ -3377,7 +3377,7 @@ enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack &&
enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
enabled libcdio &&
- check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open "-lcdio_paranoia -lcdio_cdda -lcdio"
+ check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio
enabled x11grab &&
require X11 X11/Xlib.h XOpenDisplay -lX11 &&
More information about the ffmpeg-cvslog
mailing list