Browse Source

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

Originally committed as revision 4048 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 21 years ago
parent
commit
e27ca59b0e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      configure

+ 1
- 1
configure View File

@@ -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


Loading…
Cancel
Save