Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2e3f99f

Browse filesBrowse files
committed
added openssl-1.1.1c build step for --enabled-openssl
1 parent b079a79 commit 2e3f99f
Copy full SHA for 2e3f99f

File tree

Expand file treeCollapse file tree

1 file changed

+11
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+11
-2
lines changed

‎build-ffmpeg

Copy file name to clipboardExpand all lines: build-ffmpeg
+11-2Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,10 +340,19 @@ if build "av1"; then
340340
build_done "av1"
341341
fi
342342

343+
if build "zlib"; then
344+
download "https://www.zlib.net/zlib-1.2.11.tar.gz" "zlib-1.2.11.tar.gz"
345+
cd $PACKAGES/zlib-1.2.11 || exit
346+
execute ./configure --prefix=${WORKSPACE}
347+
execute make -j $MJOBS
348+
execute make install
349+
build_done "zlib"
350+
fi
351+
343352
if build "openssl"; then
344353
download "https://www.openssl.org/source/openssl-1.1.1c.tar.gz" "openssl-1.1.1c.tar.gz"
345354
cd $PACKAGES/openssl-1.1.1c || exit
346-
execute ./config --prefix=${WORKSPACE} --openssldir=${WORKSPACE} shared zlib
355+
execute ./config --prefix=${WORKSPACE} --openssldir=${WORKSPACE} --with-zlib-include=${WORKSPACE}/include/ --with-zlib-lib=${WORKSPACE}/lib no-shared zlib
347356
execute make -j $MJOBS
348357
execute make install
349358
build_done "openssl"
@@ -418,4 +427,4 @@ elif [[ ! $SKIPINSTALL == "yes" ]]; then
418427
fi
419428
fi
420429

421-
exit 0
430+
exit 0

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.