diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-03-16 19:04:54 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-03-16 19:04:54 +0000 |
commit | e27ca59b0e658da7044774903ad78ca78a046d3c (patch) | |
tree | cfa8502d05e4e9274eda32169b4261459263e7f0 /configure | |
parent | 15b34f6386f1ddc52c454bb09f72e5b2d1d92205 (diff) | |
download | ffmpeg-e27ca59b0e658da7044774903ad78ca78a046d3c.tar.gz |
zlib detection fix by (Gildas Bazin <gbazin altern org<)
Originally committed as revision 4048 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -854,7 +854,7 @@ if (zlibVersion() != ZLIB_VERSION) return 0; } 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" # XXX: more tests needed - runtime test fi |