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.
This commit is contained in:
Ben Wiederhake 2021-03-13 19:46:57 +01:00 committed by Andreas Kling
parent 071b31338a
commit 60b458f5b3

View file

@ -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
}