From 5c7ebe0724cc3294c238175a1608dc1feedf5194 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Fri, 29 Sep 2017 12:05:37 +0200 Subject: [PATCH] pkg/libfixmath: upgrade version to work with gcc6 With gcc6, libfixmath unittests do not compile because of a negative value left shift error '-Werror=shift-negative-value'. All uses of F16C with negative value are affected. Changelog: * Fix '-Werror=shift-negative-value' for gcc 6 * make some member functions const https://github.com/PetteriAimonen/libfixmath/compare/ad9ed940e57d43432b276e95aee6ca9df6f23ccd...7f9c966b5c473770dc93940e3e6e5323f3c1ad69 --- pkg/libfixmath/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/libfixmath/Makefile b/pkg/libfixmath/Makefile index 8310a405e9..b3bdd6efd7 100644 --- a/pkg/libfixmath/Makefile +++ b/pkg/libfixmath/Makefile @@ -1,5 +1,5 @@ PKG_NAME := libfixmath -PKG_VERSION := ad9ed940e57d43432b276e95aee6ca9df6f23ccd +PKG_VERSION := 7f9c966b5c473770dc93940e3e6e5323f3c1ad69 PKG_URL := https://github.com/PetteriAimonen/libfixmath PKG_LICENSE := MIT