diff options
author | Rosen Penev <rosenp@gmail.com> | 2019-05-01 12:35:37 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2019-05-01 12:50:30 -0700 |
commit | ba4f02b1f04e9b29a9eb8c3ce317aef59e04e19b (patch) | |
tree | 4a611f6c96124bb9e270987bc09f5e39decd449f /libs/icu/Makefile | |
parent | 4072e78dbe00f9690f94e3c0388ae607cb0b37b1 (diff) |
icu: Fix compilation with uClibc-ng
uClibc-ng does not define these math functions in math.h , only in
tgmath.h. Therefore the cmath header will not work.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'libs/icu/Makefile')
-rw-r--r-- | libs/icu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/icu/Makefile b/libs/icu/Makefile index 9b2d20b72..e7ca37bf5 100644 --- a/libs/icu/Makefile +++ b/libs/icu/Makefile @@ -11,7 +11,7 @@ PKG_NAME:=icu4c MAJOR_VERSION:=64 MINOR_VERSION:=2 PKG_VERSION:=$(MAJOR_VERSION).$(MINOR_VERSION) -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(MAJOR_VERSION)_$(MINOR_VERSION)-src.tgz PKG_SOURCE_URL:=https://github.com/unicode-org/icu/releases/download/release-$(MAJOR_VERSION)-$(MINOR_VERSION) |