aboutsummaryrefslogtreecommitdiffstats
path: root/tools/cmake/patches/010-backport-macos-fix.patch
diff options
context:
space:
mode:
authorHannu Nyman <hannu.nyman@iki.fi>2018-01-05 23:30:02 +0200
committerJohn Crispin <john@phrozen.org>2018-01-17 08:52:54 +0100
commit3c4df661c0c8d693b5198cbbf61f679c76fdea52 (patch)
tree10256cd94536ec270ff2a075cba0cee54ef1728a /tools/cmake/patches/010-backport-macos-fix.patch
parentb0d513ec91d76cc6b208094d0f78e54f252de573 (diff)
downloadupstream-3c4df661c0c8d693b5198cbbf61f679c76fdea52.tar.gz
upstream-3c4df661c0c8d693b5198cbbf61f679c76fdea52.tar.bz2
upstream-3c4df661c0c8d693b5198cbbf61f679c76fdea52.zip
tools/cmake: update to 3.10.1
Update cmake to 3.10.1 Refresh patches Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'tools/cmake/patches/010-backport-macos-fix.patch')
-rw-r--r--tools/cmake/patches/010-backport-macos-fix.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/cmake/patches/010-backport-macos-fix.patch b/tools/cmake/patches/010-backport-macos-fix.patch
deleted file mode 100644
index 76e92dcb0e..0000000000
--- a/tools/cmake/patches/010-backport-macos-fix.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/Source/kwsys/kwsysPlatformTestsCXX.cxx
-+++ b/Source/kwsys/kwsysPlatformTestsCXX.cxx
-@@ -265,6 +265,12 @@ int main()
- #ifdef TEST_KWSYS_CXX_HAS_UTIMENSAT
- #include <fcntl.h>
- #include <sys/stat.h>
-+#if defined(__APPLE__)
-+#include <AvailabilityMacros.h>
-+#if MAC_OS_X_VERSION_MIN_REQUIRED < 101300
-+#error "utimensat not available on macOS < 10.13"
-+#endif
-+#endif
- int main()
- {
- struct timespec times[2] = { { 0, UTIME_OMIT }, { 0, UTIME_NOW } };