diff --git a/contrib/libtests/pngimage.c b/contrib/libtests/pngimage.c index 83bdaf4ce6..95b3cd112f 100644 --- a/contrib/libtests/pngimage.c +++ b/contrib/libtests/pngimage.c @@ -1016,7 +1016,12 @@ compare_read(struct display *dp, int applied_transforms) C(height); C(bit_depth); C(color_type); - C(interlace_method); +# ifdef PNG_WRITE_INTERLACING_SUPPORTED + /* If write interlace has been disabled the PNG is still written + * correctly but as a simple, not interlacedd, PNG. + */ + C(interlace_method); +# endif C(compression_method); C(filter_method);