diff options
author | Christian Heimes <christian@python.org> | 2022-06-30 16:04:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-30 16:04:10 (GMT) |
commit | 67d208fbee119ed1bca0765a9aa779e31fea98b3 (patch) | |
tree | 56074a27d64c9533faa6ce7b8d8b38da42d0f4f1 | |
parent | ea39b77de9fa25b447d0b4148f75f351076e890a (diff) | |
download | cpython-67d208fbee119ed1bca0765a9aa779e31fea98b3.zip cpython-67d208fbee119ed1bca0765a9aa779e31fea98b3.tar.gz cpython-67d208fbee119ed1bca0765a9aa779e31fea98b3.tar.bz2 |
gh-93491: Fix PEP 11 tier detection for FreeBSD (GH-94441)
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -6302,7 +6302,7 @@ case $host/$ac_cv_cc_name in #( PY_SUPPORT_TIER=3 ;; #( s390x-*-linux-gnu/gcc) : PY_SUPPORT_TIER=3 ;; #( - x86_64-*-freebsd/clang) : + x86_64-*-freebsd*/clang) : PY_SUPPORT_TIER=3 ;; #( *) : PY_SUPPORT_TIER=0 diff --git a/configure.ac b/configure.ac index ba38133..ab1c687 100644 --- a/configure.ac +++ b/configure.ac @@ -1121,7 +1121,7 @@ AS_CASE([$host/$ac_cv_cc_name], [s390x-*-linux-gnu/gcc], [PY_SUPPORT_TIER=3], dnl Linux on 64bit s390x (big endian), glibc, gcc dnl [wasm32-unknown-emscripten/clang], [PY_SUPPORT_TIER=3], dnl WebAssembly Emscripten dnl [wasm32-unknown-wasi/clang], [PY_SUPPORT_TIER=3], dnl WebAssembly System Interface - [x86_64-*-freebsd/clang], [PY_SUPPORT_TIER=3], dnl FreeBSD on AMD64 + [x86_64-*-freebsd*/clang], [PY_SUPPORT_TIER=3], dnl FreeBSD on AMD64 [PY_SUPPORT_TIER=0] ) |