summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-06-16 11:13:22 +0200
committerAndreas Kling <kling@serenityos.org>2021-06-16 20:08:13 +0200
commitd7f0d5ffb8c0bfdf6205363ab56df1336b0b3a42 (patch)
tree8af9ba9cc88457da0a2346810b8813f540767fd1
parentdd35bd158e67be45b3bf839655ea13d09e12f943 (diff)
downloadserenity-d7f0d5ffb8c0bfdf6205363ab56df1336b0b3a42.zip
Ports: Disable gettext support for libiconv
libiconv and gettext have a circular dependency. In an ideal world we'd build libiconv without gettext support first, then gettext and finally libiconv again with gettext support. However, if the libiconv port detects gettext on the host system while the gettext port hasn't been built yet things break. This disables gettext support for the libiconv port for now.
-rwxr-xr-xPorts/libiconv/package.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/libiconv/package.sh b/Ports/libiconv/package.sh
index 8080c89fa9..ed8f502887 100755
--- a/Ports/libiconv/package.sh
+++ b/Ports/libiconv/package.sh
@@ -2,7 +2,7 @@
port=libiconv
version=1.16
useconfigure=true
-configopts=--enable-shared
+configopts="--enable-shared --disable-nls"
files="https://ftpmirror.gnu.org/gnu/libiconv/libiconv-${version}.tar.gz libiconv-${version}.tar.gz
https://ftpmirror.gnu.org/gnu/libiconv/libiconv-${version}.tar.gz.sig libiconv-${version}.tar.gz.sig
https://ftpmirror.gnu.org/gnu/gnu-keyring.gpg gnu-keyring.gpg"