summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-29 16:24:22 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-29 16:24:22 +0000
commit8ee92150f89d23e2be06a0b3eac818e351d753c3 (patch)
tree5d3f4008dceca0f0a3420c3efb427a674bc01a00 /configure
parentb42994bddf5f1a3c9eac4c048799e54bdeb06053 (diff)
downloadmpv-8ee92150f89d23e2be06a0b3eac818e351d753c3.tar.bz2
mpv-8ee92150f89d23e2be06a0b3eac818e351d753c3.tar.xz
more compatible libpng version check
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5901 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index bb7e37fd55..09d46f6b91 100755
--- a/configure
+++ b/configure
@@ -2264,8 +2264,8 @@ cat > $TMPC << EOF
#include <string.h>
int main(void) {
printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
- printf("libpng: %s\n", png_get_libpng_ver(NULL));
- return (strcmp(PNG_LIBPNG_VER_STRING, png_get_libpng_ver(NULL)));
+ printf("libpng: %s\n", png_libpng_ver);
+ return (strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver));
}
EOF
if cc_check -lpng -lz -lm ; then