diff options
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | plugingui/image.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 8d5700a..ed1ff25 100644 --- a/configure.in +++ b/configure.in @@ -257,7 +257,7 @@ PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0.21) dnl ====================== dnl Check for sndfile dnl ====================== -PKG_CHECK_MODULES(PNG, libpng >= 1.5) +PKG_CHECK_MODULES(PNG, libpng >= 1.2) dnl ====================== dnl Check for the pthread library diff --git a/plugingui/image.cc b/plugingui/image.cc index e4f7391..32994b6 100644 --- a/plugingui/image.cc +++ b/plugingui/image.cc @@ -82,7 +82,7 @@ void GUI::Image::load(const char* data, size_t size) const char *header = data; // test for it being a png: - if(png_sig_cmp((const png_byte*)header, 0, 8)) { + if(png_sig_cmp((png_byte*)header, 0, 8)) { abort_("[read_png_file] File is not recognized as a PNG file"); } |