From 60b458f5b38cdb684d04f860ac5ac93a61f59914 Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Sat, 13 Mar 2021 19:46:57 +0100 Subject: [PATCH] Ports: Fix 'bc' port Previously, these features were apparently auto-disabled, because we do not yet support and never did support translations or the FIONREAD ioctl. --- Ports/bc/package.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Ports/bc/package.sh b/Ports/bc/package.sh index a446b1fd55..483918be1f 100755 --- a/Ports/bc/package.sh +++ b/Ports/bc/package.sh @@ -10,5 +10,7 @@ auth_import_key="E2A30324A4465A4D5882692EC08038BDF280D33E" auth_opts="bc-${version}.tar.xz.sig" configure() { - run env HOSTCC=gcc ./"$configscript" + # NLS needs many things, none of which we support. + # History needs FIONREAD ioctl, which we don't support yet. + run env HOSTCC=gcc ./"$configscript" --disable-nls --disable-history }