Skip to content

Commit

Permalink
Add PAWPAW_SKIP_OPENSSL option
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Dec 5, 2023
1 parent 063bd16 commit 55cf4be
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -713,6 +713,7 @@ jobs:
PAWPAW_SKIP_LTO: 1
PAWPAW_SKIP_GLIB: 1
PAWPAW_SKIP_LV2: 1
PAWPAW_SKIP_OPENSSL: 1
PAWPAW_SKIP_SAMPLERATE: 1
strategy:
matrix:
Expand All @@ -738,10 +739,9 @@ jobs:
- target: wasm
container: debian:12
os: ubuntu-latest
# FIXME build failure: too many sections (40327)
#- target: win32
#container: debian:12
#os: ubuntu-latest
- target: win32
container: debian:12
os: ubuntu-latest
- target: win64
container: debian:12
os: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions bootstrap-cardinal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export PAWPAW_SKIP_LTO=1

export PAWPAW_SKIP_GLIB=1
export PAWPAW_SKIP_LV2=1
export PAWPAW_SKIP_OPENSSL=1
export PAWPAW_SKIP_SAMPLERATE=1

# we just build the whole thing on Windows
Expand Down
4 changes: 4 additions & 0 deletions bootstrap-python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ function build_conf_openssl() {
# ---------------------------------------------------------------------------------------------------------------------
# openssl

if [ -n "${PAWPAW_SKIP_OPENSSL}" ]; then

OPENSSL_URL="https://www.openssl.org/source"
OPENSSL_VERSION="1.1.1w"

Expand All @@ -117,6 +119,8 @@ fi
download openssl "${OPENSSL_VERSION}" "${OPENSSL_URL}"
build_conf_openssl openssl "${OPENSSL_VERSION}" "${OPENSSL_EXTRAFLAGS}"

fi # PAWPAW_SKIP_OPENSSL

# ---------------------------------------------------------------------------------------------------------------------
# custom function for python

Expand Down

0 comments on commit 55cf4be

Please sign in to comment.