In the last episode (Oct 02), Desmond Chapman said:
>
> * Checking libpng *
> compiling the following source file:
> #include
> #include
> extern "C" int main(void)
> {
> printf("found version %s", PNG_LIBPNG_VER_STRING);
> #if PNG_LIBPNG_VER >= 10205
> printf(", OK.\n");
> return
* Checking libpng *
compiling the following source file:
#include
#include
extern "C" int main(void)
{
printf("found version %s", PNG_LIBPNG_VER_STRING);
#if PNG_LIBPNG_VER >= 10205
printf(", OK.\n");
return 0;
#else
printf(", expected version 1.2.5 or higher\n");
return 1;
#en