Skip to content

Commit cc6765a

Browse files
EWoutersgmta
authored andcommitted
Ports/libgcrypt: Update libgcrypt to version 1.10.2
This also sets the sysroot to to allow it to find libgpg-error and libiconv when building with Clang.
1 parent ffffbfe commit cc6765a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Ports/AvailablePorts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
146146
| [`libfftw3`](libfftw3/) | Fastest Fourier Transform in the West (double precision) | 3.3.10 | https://www.fftw.org/ |
147147
| [`libfftw3f`](libfftw3f/) | Fastest Fourier Transform in the West (single precision) | 3.3.10 | https://www.fftw.org/ |
148148
| [`libfts`](libfts/) | libfts | 1.2.7 | https://github.com/void-linux/musl-fts |
149-
| [`libgcrypt`](libgcrypt/) | libgcrypt | 1.10.1 | https://gnupg.org/software/libgcrypt/index.html |
149+
| [`libgcrypt`](libgcrypt/) | libgcrypt | 1.10.2 | https://gnupg.org/software/libgcrypt/index.html |
150150
| [`libgd`](libgd/) | libgd | 2.3.3 | https://libgd.github.io/ |
151151
| [`libgpg-error`](libgpg-error/) | libgpg-error | 1.45 | https://gnupg.org/software/libgpg-error/index.html |
152152
| [`libiconv`](libiconv/) | GNU libiconv | 1.17 | https://www.gnu.org/software/libiconv/ |

Ports/libgcrypt/package.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env -S bash ../.port_include.sh
22
port='libgcrypt'
3-
version='1.10.1'
3+
version='1.10.2'
44
useconfigure='true'
55
use_fresh_config_sub='true'
66
config_sub_paths=(
@@ -10,7 +10,7 @@ depends=(
1010
'libgpg-error'
1111
)
1212
files=(
13-
"https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-${version}.tar.bz2#ef14ae546b0084cd84259f61a55e07a38c3b53afc0f546bffcef2f01baffe9de"
13+
"https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-${version}.tar.bz2#3b9c02a004b68c256add99701de00b383accccf37177e0d6c58289664cce0c03"
1414
)
1515

1616
pre_configure() {
@@ -21,5 +21,6 @@ configure() {
2121
run ./configure \
2222
--host="${SERENITY_ARCH}-pc-serenity" \
2323
--build="$("${workdir}/build-aux/config.guess")" \
24-
--with-libgpg-error-prefix="${SERENITY_INSTALL_ROOT}/usr/local"
24+
--with-libgpg-error-prefix="${SERENITY_INSTALL_ROOT}/usr/local" \
25+
--with-sysroot="${SERENITY_INSTALL_ROOT}"
2526
}

0 commit comments

Comments
 (0)