https://github.com/python/cpython/commit/47816f465e833a5257a82b759b1081e06381e528
commit: 47816f465e833a5257a82b759b1081e06381e528
branch: main
author: Michael Allwright <[email protected]>
committer: vstinner <[email protected]>
date: 2024-06-07T10:38:15+02:00
summary:

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

Fix Emscripten/WASI pattern in case statement for LDSHARED

files:
M configure
M configure.ac

diff --git a/configure b/configure
index 6cfe114fb2104c..8e605d31bb5eca 100755
--- a/configure
+++ b/configure
@@ -12892,7 +12892,7 @@ then
                LDCXXSHARED='$(CXX) -dynamiclib -F . -framework 
$(PYTHONFRAMEWORK)'
                BLDSHARED="$LDSHARED"
                ;;
-       Emscripten|WASI)
+       Emscripten*|WASI*)
                LDSHARED='$(CC) -shared'
                LDCXXSHARED='$(CXX) -shared';;
        Linux*|GNU*|QNX*|VxWorks*|Haiku*)
diff --git a/configure.ac b/configure.ac
index 8657e09c9a7008..41023ab92bad81 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3417,7 +3417,7 @@ then
                LDCXXSHARED='$(CXX) -dynamiclib -F . -framework 
$(PYTHONFRAMEWORK)'
                BLDSHARED="$LDSHARED"
                ;;
-       Emscripten|WASI)
+       Emscripten*|WASI*)
                LDSHARED='$(CC) -shared'
                LDCXXSHARED='$(CXX) -shared';;
        Linux*|GNU*|QNX*|VxWorks*|Haiku*)

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to