curl: remove unrecognized option --without-libidn
Upon reading the APKBUILD file for the curl
package I stumbled upon the following options in the build()
function (On lines 157 and 158 respectively):
...
--without-libidn \
--without-libidn2 \
...
While the second option is a valid one, the first one --without-libidn
is now an unrecognized option that isn't mentioned in curl
's configure script.
I believe the latter option --without-libidn2
is the only option that should be used nowadays to disable the usage of IDN.