We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e31340 commit 23a2ebeCopy full SHA for 23a2ebe
packages/ssl/meta.yaml
@@ -11,12 +11,13 @@ source:
11
build:
12
type: cpython_module
13
script: |
14
+ export PKG_CONFIG_PATH="${WASM_LIBRARY_DIR}/lib/pkgconfig"
15
wget ${PYTHON_ARCHIVE_URL} -O Python-${PYVERSION}.tgz
16
tar -xf Python-${PYVERSION}.tgz
17
cd Python-${PYVERSION}
18
19
# OPENSSL_THREADS declares that OPENSSL is threadsafe. We are single threaded so everything is threadsafe.
- emcc $STDLIB_MODULE_CFLAGS -c Modules/_ssl.c -o _ssl.o \
20
+ emcc $SIDE_MODULE_CFLAGS -I Include/ -I. -IInclude/internal/ -c Modules/_ssl.c -o _ssl.o \
21
$(pkg-config --cflags --dont-define-prefix openssl) \
22
-DOPENSSL_THREADS
23
0 commit comments