From 6e7fe8ee727c171de27f6d1c8d77c0f246813649 Mon Sep 17 00:00:00 2001 From: Ben Gamari <ben@smart-cactus.org> Date: Wed, 8 Feb 2023 08:46:21 -0500 Subject: [PATCH] Disable futimens on Darwin. See #22938 --- .gitlab/gen_ci.hs | 2 ++ .gitlab/jobs.yaml | 3 +++ 2 files changed, 5 insertions(+) diff --git a/.gitlab/gen_ci.hs b/.gitlab/gen_ci.hs index 7401c1f0cd7c..50ffe0b58ec9 100755 --- a/.gitlab/gen_ci.hs +++ b/.gitlab/gen_ci.hs @@ -409,6 +409,8 @@ opsysVariables Amd64 (Darwin {}) = , "ac_cv_func_clock_gettime" =: "no" -- # Only newer OS Xs support utimensat. See #17895 , "ac_cv_func_utimensat" =: "no" + -- # Only newer OS Xs support futimens. See #22938 + , "ac_cv_func_futimens" =: "no" , "LANG" =: "en_US.UTF-8" , "CONFIGURE_ARGS" =: "--with-intree-gmp --with-system-libffi" -- Fonts can't be installed on darwin diff --git a/.gitlab/jobs.yaml b/.gitlab/jobs.yaml index c07f09dc47b6..04e48134ece7 100644 --- a/.gitlab/jobs.yaml +++ b/.gitlab/jobs.yaml @@ -480,6 +480,7 @@ "TEST_ENV": "x86_64-darwin-validate", "XZ_OPT": "-9", "ac_cv_func_clock_gettime": "no", + "ac_cv_func_futimens": "no", "ac_cv_func_utimensat": "no" } }, @@ -2478,6 +2479,7 @@ "TEST_ENV": "x86_64-darwin-release", "XZ_OPT": "-9", "ac_cv_func_clock_gettime": "no", + "ac_cv_func_futimens": "no", "ac_cv_func_utimensat": "no" } }, @@ -3590,6 +3592,7 @@ "NIX_SYSTEM": "x86_64-darwin", "TEST_ENV": "x86_64-darwin-validate", "ac_cv_func_clock_gettime": "no", + "ac_cv_func_futimens": "no", "ac_cv_func_utimensat": "no" } }, -- GitLab