mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
fix(curl)
libpsl causes some weird downstream behavior in php
This commit is contained in:
parent
a9726758af
commit
38f7b09a0c
1 changed files with 11 additions and 6 deletions
|
@ -12,14 +12,19 @@ dependencies:
|
||||||
openssl.org: ^1.1
|
openssl.org: ^1.1
|
||||||
curl.se/ca-certs: '*'
|
curl.se/ca-certs: '*'
|
||||||
zlib.net: ^1.2.11
|
zlib.net: ^1.2.11
|
||||||
rockdaboot.github.io/libpsl: ^0 # added in 8.6.0
|
|
||||||
|
|
||||||
build:
|
build:
|
||||||
- ./configure
|
script:
|
||||||
--prefix={{prefix}}
|
- ./configure $ARGS
|
||||||
--with-openssl
|
|
||||||
--with-ca-fallback # uses openssl’s certs (which we control)
|
|
||||||
- make --jobs {{ hw.concurrency }} install
|
- make --jobs {{ hw.concurrency }} install
|
||||||
|
env:
|
||||||
|
ARGS:
|
||||||
|
- --prefix={{prefix}}
|
||||||
|
- --with-openssl
|
||||||
|
# causes weird downstream bugs in php
|
||||||
|
- --without-libpsl
|
||||||
|
# uses openssl’s certs (which we control)
|
||||||
|
- --with-ca-fallback
|
||||||
|
|
||||||
test:
|
test:
|
||||||
- curl -i pkgx.sh
|
- curl -i pkgx.sh
|
||||||
|
|
Loading…
Reference in a new issue