summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorcehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-05-06 10:10:34 +0000
committercehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-05-06 10:10:34 +0000
commit84de3e95a808dcff4456d67a29dfb50a9152e5df (patch)
tree0a391f0908d623132ed9b8de8c4905a5d12f8b19 /configure
parent88b6dd6fc23c051b2e84312dfc1d4b9ac7e57c7a (diff)
downloadmpv-84de3e95a808dcff4456d67a29dfb50a9152e5df.tar.bz2
mpv-84de3e95a808dcff4456d67a29dfb50a9152e5df.tar.xz
Fix compilation with old libschroedinger-dev installed.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31138 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 4c41f5d7fb..4f12093119 100755
--- a/configure
+++ b/configure
@@ -7591,7 +7591,7 @@ if test "$_libschroedinger_lavc" = auto ; then
else
cat > $TMPC << EOF
#include <schroedinger/schro.h>
-int main(void) { schro_init(); return 0; }
+int main(void) { schro_init(); return SCHRO_ENCODER_RATE_CONTROL_CONSTANT_QUALITY; }
EOF
if $_pkg_config --exists schroedinger-1.0 ; then
_inc_schroedinger=$($_pkg_config --silence-errors --cflags schroedinger-1.0)