From 874bd92604f4d33ff425af9f42e8e936f4269a01 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Tue, 21 Jul 2020 23:23:52 +0200 Subject: [PATCH] Only require libpng 1.2 in CMakeLists This version is sufficient for rgbgfx to function properly, according to testing. The security problems are not ours to decide, however! --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e6b76110..14cc07d4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,7 +47,7 @@ if(srcdir STREQUAL bindir) message(FATAL_ERROR "Terminating configuration") endif() -find_package(PNG 1.6 REQUIRED) +find_package(PNG 1.2 REQUIRED) find_package(BISON REQUIRED) find_package(FLEX)