diff options
author | corvid <corvid@lavabit.com> | 2011-12-07 22:56:34 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2011-12-07 22:56:34 +0000 |
commit | f1fdf899084537041ad3c0ce71a151f85068bf2b (patch) | |
tree | 294c88a7e924d197863862dd030542bf2d7a241c | |
parent | e085da494cd14d4edc07917d3720291da5d4bbeb (diff) |
at least get rid of libpng autoconf error msg for now
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2011-December/009212.html
-rw-r--r-- | configure.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.in b/configure.in index d8865bc1..5b7cf273 100644 --- a/configure.in +++ b/configure.in @@ -208,10 +208,8 @@ dnl For debugging and to be user friendly AC_MSG_CHECKING([for libpng version]) png_version=`$PNG_CONFIG --version` case $png_version in - 1.4.*) AC_MSG_RESULT([$png_version (newer version)]) ;; - 1.2.*) AC_MSG_RESULT([$png_version (newer version)]) ;; - 1.0.*) AC_MSG_RESULT([$png_version (older version)]) ;; - *) AC_MSG_RESULT([ERROR]) ;; + 1.[[024]].*) AC_MSG_RESULT([$png_version]) ;; + *) AC_MSG_RESULT([$png_version (unrecognised version)]) ;; esac dnl Try to use options that are supported by all libpng-config versions... |