diff options
author | Alexandros Frantzis <alexandros.frantzis@collabora.com> | 2017-11-16 18:20:52 +0200 |
---|---|---|
committer | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2017-11-27 11:41:17 +0200 |
commit | 8250a61de139a1e3da41bf977ce6e1a657aa69c8 (patch) | |
tree | 9c514309d74fcd9f6b2c43d82598fe462b69bfef /configure.ac | |
parent | 6c2752a863becf41a43c1b0af99e1b713698e0b1 (diff) | |
download | weston-8250a61de139a1e3da41bf977ce6e1a657aa69c8.tar.gz weston-8250a61de139a1e3da41bf977ce6e1a657aa69c8.tar.bz2 weston-8250a61de139a1e3da41bf977ce6e1a657aa69c8.zip |
build,libweston: Use struct timespec for animations
Change code related to animations to use struct timespec to represent
time.
This commit is part of a larger effort to transition the Weston codebase
to struct timespec.
Signed-off-by: Alexandros Frantzis <alexandros.frantzis@collabora.com>
Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
This bumps the libweston major version due to breakage in the animation
ABI. The commits following this one break more ABI in other parts.
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 5f31bbcb..d6a9cbd2 100644 --- a/configure.ac +++ b/configure.ac @@ -3,9 +3,9 @@ m4_define([weston_minor_version], [0]) m4_define([weston_micro_version], [90]) m4_define([weston_version], [weston_major_version.weston_minor_version.weston_micro_version]) -m4_define([libweston_major_version], [3]) +m4_define([libweston_major_version], [4]) m4_define([libweston_minor_version], [0]) -m4_define([libweston_patch_version], [90]) +m4_define([libweston_patch_version], [0]) AC_PREREQ([2.64]) AC_INIT([weston], |