External, Non-PPA KXStudio Repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
813B

  1. --- libpng-static-1.6.50.orig/configure.ac
  2. +++ libpng-static-1.6.50/configure.ac
  3. @@ -167,15 +167,6 @@ AC_CHECK_FUNCS([pow], ,
  4. AC_CHECK_FUNC([clock_gettime], , [AC_MSG_WARN([not building timepng])])
  5. AM_CONDITIONAL([HAVE_CLOCK_GETTIME], [test "$ac_cv_func_clock_gettime" = "yes"])
  6. -AC_ARG_WITH(zlib-prefix,
  7. - AS_HELP_STRING([[[--with-zlib-prefix]]],
  8. - [prefix that may have been used in installed zlib]),
  9. - [ZPREFIX=${withval}],
  10. - [ZPREFIX='z_'])
  11. -AC_CHECK_LIB([z], [zlibVersion], ,
  12. - [AC_CHECK_LIB([z], [${ZPREFIX}zlibVersion], ,
  13. - [AC_MSG_ERROR([zlib not installed])])])
  14. -
  15. # The following is for pngvalid, to ensure it catches FP errors even on
  16. # platforms that don't enable FP exceptions, the function appears in the math
  17. # library (typically), it's not an error if it is not found.