diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2021-09-01 00:13:46 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2021-09-12 13:45:43 -0400 |
commit | 214d03568f75fbd578cc97d46f48d5d882f3870b (patch) | |
tree | 745b2a5a8b038d78feed64bb49c2ae652d13ad70 /docs/markdown/snippets | |
parent | 3cddb0e5c6e2fbc71e64e5cbbacb3b88ad2ad816 (diff) | |
download | meson-214d03568f75fbd578cc97d46f48d5d882f3870b.zip meson-214d03568f75fbd578cc97d46f48d5d882f3870b.tar.gz meson-214d03568f75fbd578cc97d46f48d5d882f3870b.tar.bz2 |
new custom dependency lookup for iconv
Also internally needed by intl, so add that as a proxied dependency
instead of coding it manually.
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/iconv-dependency.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/markdown/snippets/iconv-dependency.md b/docs/markdown/snippets/iconv-dependency.md new file mode 100644 index 0000000..21a2985 --- /dev/null +++ b/docs/markdown/snippets/iconv-dependency.md @@ -0,0 +1,8 @@ +## New custom dependency for iconv + +``` +dependency('iconv') +``` + +will now check for the functionality of libiconv.so, but first check if it is +provided in the libc (for example in glibc or musl libc on Linux). |