fish: do not use wcstod_l() even if found on target

Fix following error when building fish on device with Android 9:

src/builtin_printf.cpp:278:12: error: use of undeclared identifier 'wcstod_l'; did you mean 'wcstold_l'?
    return wcstod_l(s, end, fish_c_locale());
This commit is contained in:
Leonid Pliushch 2019-08-16 22:31:55 +03:00
parent 5c7419b80d
commit b95398e3a5

View File

@ -11,6 +11,7 @@ TERMUX_PKG_DEPENDS="libc++, ncurses, libandroid-support, ncurses-utils, man, bc,
TERMUX_PKG_BUILD_IN_SRC=true TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
ac_cv_file__proc_self_stat=yes ac_cv_file__proc_self_stat=yes
ac_cv_func_wcstod_l=no
--without-included-pcre2 --without-included-pcre2
" "