Browse Source

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());
emacs-27
Leonid Plyushch 5 years ago
parent
commit
948e3111b6
No known key found for this signature in database GPG Key ID: 45F2964132545795
  1. 1
      packages/fish/build.sh

1
packages/fish/build.sh

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

Loading…
Cancel
Save