diff options
author | Andres Freund | 2025-03-18 18:40:05 +0000 |
---|---|---|
committer | Andres Freund | 2025-03-26 23:45:32 +0000 |
commit | 8eadd5c73c44708ecd45b9fd3ac54a550511d16f (patch) | |
tree | 45074275a931018bf5854dcae95b64a22ee16da0 /meson_options.txt | |
parent | f056f75dafd0025d26efaca026a87f14c079a130 (diff) |
aio: Add liburing dependency
Will be used in a subsequent commit, to implement io_method=io_uring. Kept
separate for easier review.
Reviewed-by: Noah Misch <[email protected]>
Discussion: https://postgr.es/m/uvrtrknj4kdytuboidbhwclo4gxhswwcpgadptsjvjqcluzmah%40brqs62irg4dt
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt index 702c4517145..dd7126da3a7 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -106,6 +106,9 @@ option('libcurl', type : 'feature', value: 'auto', option('libedit_preferred', type: 'boolean', value: false, description: 'Prefer BSD Libedit over GNU Readline') +option('liburing', type : 'feature', value: 'auto', + description: 'io_uring support, for asynchronous I/O') + option('libxml', type: 'feature', value: 'auto', description: 'XML support') |