aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/intl-dependency.md
AgeCommit message (Collapse)AuthorFilesLines
2021-07-18Set up the 0.59.0 release.0.59.0Jussi Pakkanen1-35/+0
2021-06-17intl custom dependencyEli Schwartz1-0/+35
Checking how to aquire the *gettext family of symbols portably is annoyingly complex, and may come from the libc, or standalone. builtin dependency: This detects if libintl is unneeded, because the *gettext family of symbols is available in the libc. system dependency: This detects if libintl is installed as separate software, linkable via -lintl; unfortunately, GNU gettext does not ship pkg-config files for it. Fixes #3929