diff options
author | Andrea Canciani <ranma42@gmail.com> | 2011-08-30 16:15:28 +0200 |
---|---|---|
committer | Andrea Canciani <ranma42@gmail.com> | 2011-09-02 12:27:13 +0200 |
commit | 0101a545793291d0fe76b765ba8392ade5faa1a1 (patch) | |
tree | 7294a6416e8036672b41cae84c3f2ff6849154f3 /build | |
parent | e7204a3631d29d334511f291db8c31ce0026e2ce (diff) |
time: Add cairo_time_t type
Add the cairo_time_t type (currently based on cairo_uint64_t) and use
it in cairo-observer and in the perf suite.
Fixes the build on MacOS X (for the src/ subdir) and Win32, whch
failed because they don't provide clock_gettime:
cairo-surface-observer.c:629: error: implicit declaration of function 'clock_gettime'
cairo-surface-observer.c:629: warning: nested extern declaration of 'clock_gettime'
cairo-surface-observer.c:629: error: 'CLOCK_MONOTONIC' undeclared (first use in this function)
...
Diffstat (limited to 'build')
-rw-r--r-- | build/configure.ac.system | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/build/configure.ac.system b/build/configure.ac.system index b405740d..10a2dca8 100644 --- a/build/configure.ac.system +++ b/build/configure.ac.system @@ -53,9 +53,7 @@ dnl ==================================================================== AC_CHECK_LIBM LIBS="$LIBS $LIBM" -AC_CHECK_LIB(rt, sched_yield, [RT_LIBS=-lrt], [RT_LIBS=]) -CAIROPERF_LIBS=$RT_LIBS -AC_SUBST(CAIROPERF_LIBS) +AC_CHECK_LIB(rt, sched_yield) has_shm_open= AC_CHECK_LIB(rt, shm_open, [ @@ -102,10 +100,7 @@ dnl check for mmap support AC_CHECK_HEADERS([sys/mman.h], [AC_CHECK_FUNCS([mmap])]) dnl check for clock_gettime() support -save_LIBS="$LIBS" -LIBS="$LIBS $RT_LIBS" AC_CHECK_HEADERS([time.h], [AC_CHECK_FUNCS([clock_gettime])]) -LIBS="$save_LIBS" dnl check for GNU-extensions to fenv AC_CHECK_HEADER(fenv.h, |