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
The extern variable _nl_msg_cat_cntr in src/intl/libintl.* is an implementation detail of GNU gettext. Other gettext implementations, such as the one used by musl libc do not provide this external variable. I wonder whether there is a way to implement set_language() without depending on this detail. Here is a related bug report: https://bugs.gentoo.org/906895
The text was updated successfully, but these errors were encountered:
I should have said that the compilation error only occurred with the -Dgettext=true compile option (so that the external gettext is used). Otherwise, it also compiles on the gentoo musl profile.
The new commit works, thank you!
The extern variable
_nl_msg_cat_cntr
insrc/intl/libintl.*
is an implementation detail of GNU gettext. Other gettext implementations, such as the one used by musl libc do not provide this external variable. I wonder whether there is a way to implementset_language()
without depending on this detail. Here is a related bug report: https://bugs.gentoo.org/906895The text was updated successfully, but these errors were encountered: