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 /perf | |
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 'perf')
-rw-r--r-- | perf/Makefile.am | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/perf/Makefile.am b/perf/Makefile.am index 3ac60da5..4344b98c 100644 --- a/perf/Makefile.am +++ b/perf/Makefile.am @@ -48,7 +48,6 @@ cairo_perf_micro_DEPENDENCIES = \ libcairoperf_la_SOURCES = \ $(libcairoperf_sources) \ $(libcairoperf_headers) -libcairoperf_la_LIBADD = $(CAIROPERF_LIBS) cairo_analyse_trace_SOURCES = \ $(cairo_analyse_trace_sources) \ |