← Back to team overview

kicad-developers team mailing list archive

[PATCH 1/2] Reduce minimum required Pixman version

 

The newest version is 0.34. 1.0 doesn't exist, this only worked because
there is no actual version test.
---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8d71af2c6..349d69df8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -531,7 +531,7 @@ endif()
 # Find Cairo library, required
 #
 find_package( Cairo 1.8.8 REQUIRED )
-find_package( Pixman 1.0 REQUIRED )
+find_package( Pixman 0.30 REQUIRED )
 
 #
 # Find Boost library, required.

Follow ups