https://github.com/python/cpython/commit/315611aac8383e071bed4eadf4a090164a4d0ea1
commit: 315611aac8383e071bed4eadf4a090164a4d0ea1
branch: 3.12
author: Victor Stinner <vstin...@python.org>
committer: vstinner <vstin...@python.org>
date: 2024-06-07T09:49:54Z
summary:

[3.12] gh-120154: Fix Emscripten/WASI pattern in case statement for LDSHARED… 
(#120204)

gh-120154: Fix Emscripten/WASI pattern in case statement for LDSHARED (#120173)

Fix Emscripten/WASI pattern in case statement for LDSHARED

(cherry picked from commit 47816f465e833a5257a82b759b1081e06381e528)

Co-authored-by: Michael Allwright <cont...@allwright.io>

files:
M configure
M configure.ac

diff --git a/configure b/configure
index 6dc8a66e487b13..9b400038b21d65 100755
--- a/configure
+++ b/configure
@@ -12789,7 +12789,7 @@ then
                        BLDSHARED="$LDSHARED"
                fi
                ;;
-       Emscripten|WASI)
+       Emscripten*|WASI*)
                LDSHARED='$(CC) -shared'
                LDCXXSHARED='$(CXX) -shared';;
        Linux*|GNU*|QNX*|VxWorks*|Haiku*)
diff --git a/configure.ac b/configure.ac
index 8a32cb58f4e263..475a6140960d42 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3356,7 +3356,7 @@ then
                        BLDSHARED="$LDSHARED"
                fi
                ;;
-       Emscripten|WASI)
+       Emscripten*|WASI*)
                LDSHARED='$(CC) -shared'
                LDCXXSHARED='$(CXX) -shared';;
        Linux*|GNU*|QNX*|VxWorks*|Haiku*)

_______________________________________________
Python-checkins mailing list -- python-checkins@python.org
To unsubscribe send an email to python-checkins-le...@python.org
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: arch...@mail-archive.com

Reply via email to