diff options
author | Andrew Krasavin <noiseless-ak@yandex.ru> | 2022-02-01 06:13:09 +0300 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-02-01 15:51:15 -0500 |
commit | b564e342219b9a453ae2c5857b5aa2bcc54511af (patch) | |
tree | 7467caff2f478cfc96b5a3d1336d646adb08722d /docs/markdown/snippets | |
parent | 248e6cf4736ef9ec636228da66c28f9be03aa74f (diff) | |
download | meson-b564e342219b9a453ae2c5857b5aa2bcc54511af.zip meson-b564e342219b9a453ae2c5857b5aa2bcc54511af.tar.gz meson-b564e342219b9a453ae2c5857b5aa2bcc54511af.tar.bz2 |
new custom dependency lookup for libdl
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/libdl-dependency.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/markdown/snippets/libdl-dependency.md b/docs/markdown/snippets/libdl-dependency.md new file mode 100644 index 0000000..fee780c --- /dev/null +++ b/docs/markdown/snippets/libdl-dependency.md @@ -0,0 +1,8 @@ +## New custom dependency for libdl + +``` +dependency('dl') +``` + +will now check for the functionality of libdl.so, but first check if it is +provided in the libc (for example in libc on OpenBSD or in musl libc on linux). |