diff options
| author | Allan Jude <allanjude@FreeBSD.org> | 2023-01-25 01:20:16 +0000 |
|---|---|---|
| committer | Allan Jude <allanjude@FreeBSD.org> | 2023-01-25 01:20:16 +0000 |
| commit | b3392d84da5bf2162baf937c77e0557f3fd8a52b (patch) | |
| tree | d9bfa8081b46f82d07e21f8ff8e70627a2aec35f /lib/module.modulemap | |
| parent | f6ae97673c28bdb9ae795bd235ab6f26f2536a2d (diff) | |
Import zstd 1.5.2vendor/zstd/1.5.2vendor/zstd
Diffstat (limited to 'lib/module.modulemap')
| -rw-r--r-- | lib/module.modulemap | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/module.modulemap b/lib/module.modulemap new file mode 100644 index 000000000000..bbb939782e1e --- /dev/null +++ b/lib/module.modulemap @@ -0,0 +1,25 @@ +module libzstd [extern_c] { + header "zstd.h" + export * + config_macros [exhaustive] /* zstd.h */ \ + ZSTD_STATIC_LINKING_ONLY, \ + ZSTDLIB_VISIBLE, \ + ZSTD_DLL_EXPORT, \ + ZSTDLIB_STATIC_API, \ + ZSTD_DISABLE_DEPRECATE_WARNINGS, \ + ZSTD_CLEVEL_DEFAULT, \ + /* zdict.h */ ZDICT_STATIC_LINKING_ONLY, \ + ZDICTLIB_VISIBILITY, \ + ZDICT_DISABLE_DEPRECATE_WARNINGS, \ + /* zstd_errors.h */ ZSTDERRORLIB_VISIBILITY + + module dictbuilder [extern_c] { + header "zdict.h" + export * + } + + module errors [extern_c] { + header "zstd_errors.h" + export * + } +} |
