Skip to content
Snippets Groups Projects
Commit e27ca59b authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

zlib detection fix by (Gildas Bazin <gbazin altern org<)

Originally committed as revision 4048 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 15b34f63
No related branches found
No related tags found
No related merge requests found
...@@ -854,7 +854,7 @@ if (zlibVersion() != ZLIB_VERSION) ...@@ -854,7 +854,7 @@ if (zlibVersion() != ZLIB_VERSION)
return 0; return 0;
} }
EOF EOF
$cc $CFLAGS -o $TMPE $TMPC -lz 2> /dev/null || zlib="no" $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC -lz 2> /dev/null || zlib="no"
# $TMPE 2> /dev/null > /dev/null || zlib="no" # $TMPE 2> /dev/null > /dev/null || zlib="no"
# XXX: more tests needed - runtime test # XXX: more tests needed - runtime test
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment