diff --git a/.gitlab/gen_ci.hs b/.gitlab/gen_ci.hs index 7401c1f0cd7cd9c7dbb408331da845f0681b144d..50ffe0b58ec9720578ae8bdc3527ece1f1454b4b 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 c07f09dc47b6a199b56542324cc6440e5a1c3eec..04e48134ece78ff837e2be566c4b260e9e4f7101 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" } },