File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Original file line number Diff line number Diff line change @@ -340,10 +340,19 @@ if build "av1"; then
340
340
build_done " av1"
341
341
fi
342
342
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
+
343
352
if build " openssl" ; then
344
353
download " https://www.openssl.org/source/openssl-1.1.1c.tar.gz" " openssl-1.1.1c.tar.gz"
345
354
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
347
356
execute make -j $MJOBS
348
357
execute make install
349
358
build_done " openssl"
@@ -418,4 +427,4 @@ elif [[ ! $SKIPINSTALL == "yes" ]]; then
418
427
fi
419
428
fi
420
429
421
- exit 0
430
+ exit 0
You can’t perform that action at this time.
0 commit comments