Fix library function tests in configure.ac (AC_CHECK_FUNCS provides no means of specifying the library to check).

This commit is contained in:
Michael Jumper 2013-07-16 11:27:46 -07:00
parent 3596436c27
commit 77999e6371

View File

@ -87,8 +87,15 @@ AC_SUBST(CUNIT_LIBS)
# Library functions # Library functions
AC_FUNC_MALLOC AC_FUNC_MALLOC
AC_FUNC_REALLOC AC_FUNC_REALLOC
AC_CHECK_FUNCS([clock_gettime gettimeofday memmove memset select strdup png_get_io_ptr \ AC_CHECK_FUNCS([clock_gettime gettimeofday memmove memset select strdup nanosleep])
cairo_format_stride_for_width nanosleep])
AC_CHECK_DECL([png_get_io_ptr],
[AC_DEFINE([HAVE_PNG_GET_IO_PTR])],,
[#include <png.h>])
AC_CHECK_DECL([cairo_format_stride_for_width],
[AC_DEFINE([HAVE_CAIRO_FORMAT_STRIDE_FOR_WIDTH])],,
[#include <cairo/cairo.h>])
# Typedefs # Typedefs
AC_TYPE_SIZE_T AC_TYPE_SIZE_T