You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FYI, this started happening recently because libiconv-1.17 (released 2022) exports the locale_charset symbol whereas in libiconv-1.16 (released 2019) the symbol was NOT exported. So when building with libiconv-1.16 libdatrie's configure did not detect locale_charset.
Here is a patch for configure that sets ICONV_LIBS=-liconv if configure detects that it wants to use libiconv based on the presence of locale_charset (in addition to the case where configure decides it wants to use libiconv for iconv_open). This was build tested with and without libiconv.
This allows the presence of locale_charset to indicate that -liconv is to be used.
Before libiconv-1.17, the locale_charset symbol was not exported (and
so locale_charset was not detected).
Fixestlwg#25
Noticed on FreeBSD 12 with the libiconv package installed (in /usr/local).
The link command is missing
-liconv
The text was updated successfully, but these errors were encountered: