mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
Ports/ntbtls: Update ntbtls to version 0.3.1
This also sets the sysroot to to allow it to find libgpg-error when building with Clang.
This commit is contained in:
parent
9ca3ef6024
commit
37bf6adc13
Notes:
sideshowbarker
2024-07-17 05:02:35 +09:00
Author: https://github.com/EWouters Commit: https://github.com/SerenityOS/serenity/commit/37bf6adc13 Pull-request: https://github.com/SerenityOS/serenity/pull/20901 Reviewed-by: https://github.com/gmta ✅ Reviewed-by: https://github.com/timschumi
2 changed files with 4 additions and 3 deletions
|
@ -228,7 +228,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
|
||||||
| [`nnn`](nnn/) | nnn file manager | 4.8 | https://github.com/jarun/nnn |
|
| [`nnn`](nnn/) | nnn file manager | 4.8 | https://github.com/jarun/nnn |
|
||||||
| [`npiet`](npiet/) | Piet language interpreter | 1.3f | https://www.bertnase.de/npiet/ |
|
| [`npiet`](npiet/) | Piet language interpreter | 1.3f | https://www.bertnase.de/npiet/ |
|
||||||
| [`npth`](npth/) | New GNU Portable Threads Library | 1.6 | https://gnupg.org/software/npth/index.html |
|
| [`npth`](npth/) | New GNU Portable Threads Library | 1.6 | https://gnupg.org/software/npth/index.html |
|
||||||
| [`ntbtls`](ntbtls/) | The Not Too Bad TLS Library | 0.2.0 | https://gnupg.org/software/ntbtls/index.html |
|
| [`ntbtls`](ntbtls/) | The Not Too Bad TLS Library | 0.3.1 | https://gnupg.org/software/ntbtls/index.html |
|
||||||
| [`nyancat`](nyancat/) | Nyancat | | https://github.com/klange/nyancat |
|
| [`nyancat`](nyancat/) | Nyancat | | https://github.com/klange/nyancat |
|
||||||
| [`ObjFW`](ObjFW/) | ObjFW | 2903ecd | https://objfw.nil.im/ |
|
| [`ObjFW`](ObjFW/) | ObjFW | 2903ecd | https://objfw.nil.im/ |
|
||||||
| [`oksh`](oksh/) | oksh | 7.1 | https://github.com/ibara/oksh |
|
| [`oksh`](oksh/) | oksh | 7.1 | https://github.com/ibara/oksh |
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env -S bash ../.port_include.sh
|
#!/usr/bin/env -S bash ../.port_include.sh
|
||||||
port='ntbtls'
|
port='ntbtls'
|
||||||
version='0.2.0'
|
version='0.3.1'
|
||||||
useconfigure='true'
|
useconfigure='true'
|
||||||
use_fresh_config_sub='true'
|
use_fresh_config_sub='true'
|
||||||
config_sub_paths=(
|
config_sub_paths=(
|
||||||
|
@ -13,7 +13,7 @@ depends=(
|
||||||
'zlib'
|
'zlib'
|
||||||
)
|
)
|
||||||
files=(
|
files=(
|
||||||
"https://gnupg.org/ftp/gcrypt/ntbtls/ntbtls-${version}.tar.bz2#649fe74a311d13e43b16b26ebaa91665ddb632925b73902592eac3ed30519e17"
|
"https://gnupg.org/ftp/gcrypt/ntbtls/ntbtls-${version}.tar.bz2#8922181fef523b77b71625e562e4d69532278eabbd18bc74579dbe14135729ba"
|
||||||
)
|
)
|
||||||
|
|
||||||
pre_configure() {
|
pre_configure() {
|
||||||
|
@ -26,6 +26,7 @@ configure() {
|
||||||
--build="$("${workdir}/build-aux/config.guess")" \
|
--build="$("${workdir}/build-aux/config.guess")" \
|
||||||
--with-libgcrypt-prefix="${SERENITY_INSTALL_ROOT}/usr/local" \
|
--with-libgcrypt-prefix="${SERENITY_INSTALL_ROOT}/usr/local" \
|
||||||
--with-libgpg-error-prefix="${SERENITY_INSTALL_ROOT}/usr/local" \
|
--with-libgpg-error-prefix="${SERENITY_INSTALL_ROOT}/usr/local" \
|
||||||
|
--with-sysroot="${SERENITY_INSTALL_ROOT}" \
|
||||||
--with-ksba-prefix="${SERENITY_INSTALL_ROOT}/usr/local"
|
--with-ksba-prefix="${SERENITY_INSTALL_ROOT}/usr/local"
|
||||||
# It's documented as "--with-libksba-prefix" (note the "lib"), but if it is set it is
|
# It's documented as "--with-libksba-prefix" (note the "lib"), but if it is set it is
|
||||||
# immediately overwritten by whatever is given through "--with-ksba-prefix",
|
# immediately overwritten by whatever is given through "--with-ksba-prefix",
|
||||||
|
|
Loading…
Reference in a new issue