Module: Mesa Branch: master Commit: 1e3f7bfc9ae4c35f75e6843dda451fde7c107e5c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=1e3f7bfc9ae4c35f75e6843dda451fde7c107e5c
Author: Tapani Pälli <[email protected]> Date: Thu Nov 3 13:44:47 2016 +0200 anv: use limits.h instead of deprecated/obsolete values.h Mesa uses limits.h elsewhere, and this makes is possible to compile anv_allocator.c on Android. Signed-off-by: Tapani Pälli <[email protected]> Reviewed-by: Samuel Iglesias Gonsálvez <[email protected]> --- src/intel/vulkan/anv_allocator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_allocator.c b/src/intel/vulkan/anv_allocator.c index 36cabd7..2249fa6 100644 --- a/src/intel/vulkan/anv_allocator.c +++ b/src/intel/vulkan/anv_allocator.c @@ -24,7 +24,7 @@ #include <stdint.h> #include <stdlib.h> #include <unistd.h> -#include <values.h> +#include <limits.h> #include <assert.h> #include <linux/futex.h> #include <linux/memfd.h> _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
