diff options
author | Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> | 2019-03-23 17:40:10 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-03-25 23:19:53 +0000 |
commit | 5c3a6b5dff21ac06bc24583e96aba4f4f1624b6c (patch) | |
tree | 2c4a3e6c9ce1b43fcf83aa85ee73f62f8346fac7 /meta/recipes-devtools/ninja | |
parent | 62ec8e470d7ab0a8310d58474a297f2dda5d4590 (diff) | |
download | poky-5c3a6b5dff21ac06bc24583e96aba4f4f1624b6c.tar.gz |
ninja: update to 1.9.0
(From OE-Core rev: a72b970b7fec9bea45583223e5f95bba385fa0d3)
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/ninja')
-rw-r--r-- | meta/recipes-devtools/ninja/ninja/fix-musl.patch | 39 | ||||
-rw-r--r-- | meta/recipes-devtools/ninja/ninja_1.9.0.bb (renamed from meta/recipes-devtools/ninja/ninja_1.8.2.bb) | 6 |
2 files changed, 43 insertions, 2 deletions
diff --git a/meta/recipes-devtools/ninja/ninja/fix-musl.patch b/meta/recipes-devtools/ninja/ninja/fix-musl.patch new file mode 100644 index 0000000000..543d4f1c48 --- /dev/null +++ b/meta/recipes-devtools/ninja/ninja/fix-musl.patch | |||
@@ -0,0 +1,39 @@ | |||
1 | 2ff54ad7478a90bd75c91e434236a Mon Sep 17 00:00:00 2001 | ||
2 | From: makepost <makepost@firemail.cc> | ||
3 | Date: Mon, 24 Dec 2018 03:13:16 +0200 | ||
4 | Subject: [PATCH] Use st_mtim if st_mtime is macro, fix #1510 | ||
5 | |||
6 | In POSIX.1-2008, sys_stat has a st_mtim member and a st_mtime backward | ||
7 | compatibility macro. Should help avoid hardcoding platform detection. | ||
8 | --- | ||
9 | src/disk_interface.cc | 14 ++++---------- | ||
10 | 1 file changed, 4 insertions(+), 10 deletions(-) | ||
11 | |||
12 | diff --git a/src/disk_interface.cc b/src/disk_interface.cc | ||
13 | index d4c2fb087..dc297c449 100644 | ||
14 | --- src/disk_interface.cc | ||
15 | +++ /src/disk_interface.cc | ||
16 | @@ -202,19 +202,13 @@ TimeStamp RealDiskInterface::Stat(const string& path, string* err) const { | ||
17 | // that it doesn't exist. | ||
18 | if (st.st_mtime == 0) | ||
19 | return 1; | ||
20 | -#if defined(__APPLE__) && !defined(_POSIX_C_SOURCE) | ||
21 | +#if defined(_AIX) | ||
22 | + return (int64_t)st.st_mtime * 1000000000LL + st.st_mtime_n; | ||
23 | +#elif defined(__APPLE__) | ||
24 | return ((int64_t)st.st_mtimespec.tv_sec * 1000000000LL + | ||
25 | st.st_mtimespec.tv_nsec); | ||
26 | -#elif (_POSIX_C_SOURCE >= 200809L || _XOPEN_SOURCE >= 700 || defined(_BSD_SOURCE) || defined(_SVID_SOURCE) || \ | ||
27 | - defined(__BIONIC__) || (defined (__SVR4) && defined (__sun)) || defined(__FreeBSD__)) | ||
28 | - // For glibc, see "Timestamp files" in the Notes of http://www.kernel.org/doc/man-pages/online/pages/man2/stat.2.html | ||
29 | - // newlib, uClibc and musl follow the kernel (or Cygwin) headers and define the right macro values above. | ||
30 | - // For bsd, see https://github.com/freebsd/freebsd/blob/master/sys/sys/stat.h and similar | ||
31 | - // For bionic, C and POSIX API is always enabled. | ||
32 | - // For solaris, see https://docs.oracle.com/cd/E88353_01/html/E37841/stat-2.html. | ||
33 | +#elif defined(st_mtime) // A macro, so we're likely on modern POSIX. | ||
34 | return (int64_t)st.st_mtim.tv_sec * 1000000000LL + st.st_mtim.tv_nsec; | ||
35 | -#elif defined(_AIX) | ||
36 | - return (int64_t)st.st_mtime * 1000000000LL + st.st_mtime_n; | ||
37 | #else | ||
38 | return (int64_t)st.st_mtime * 1000000000LL + st.st_mtimensec; | ||
39 | #endif | ||
diff --git a/meta/recipes-devtools/ninja/ninja_1.8.2.bb b/meta/recipes-devtools/ninja/ninja_1.9.0.bb index c6fcfef3dd..1b06328961 100644 --- a/meta/recipes-devtools/ninja/ninja_1.8.2.bb +++ b/meta/recipes-devtools/ninja/ninja_1.9.0.bb | |||
@@ -5,9 +5,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a81586a64ad4e476c791cda7e2f2c52e" | |||
5 | 5 | ||
6 | DEPENDS = "re2c-native ninja-native" | 6 | DEPENDS = "re2c-native ninja-native" |
7 | 7 | ||
8 | SRCREV = "253e94c1fa511704baeb61cf69995bbf09ba435e" | 8 | SRCREV = "b25c08bda4949192c69cea4cee057887341a2ffc" |
9 | 9 | ||
10 | SRC_URI = "git://github.com/ninja-build/ninja.git;branch=release" | 10 | SRC_URI = "git://github.com/ninja-build/ninja.git;branch=release \ |
11 | file://fix-musl.patch \ | ||
12 | " | ||
11 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>.*)" | 13 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>.*)" |
12 | 14 | ||
13 | S = "${WORKDIR}/git" | 15 | S = "${WORKDIR}/git" |