[phodav] build: require GIO version 2.44



commit 8ab659edc72061f228ab6644ee2c3db645dff31a
Author: Jakub Janků <jjanku redhat com>
Date:   Fri Aug 2 16:28:59 2019 +0200

    build: require GIO version 2.44
    
    GIO 2.44 introduced g_output_stream_write_all_async and
    g_input_stream_read_all_async, both of which will be used
    in the following patches.
    
    Signed-off-by: Jakub Janků <jjanku redhat com>

 meson.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/meson.build b/meson.build
index 0d0fd58..5686fc0 100644
--- a/meson.build
+++ b/meson.build
@@ -29,9 +29,9 @@ conf = configuration_data()
 
 deps = []
 if host_machine.system() == 'windows'
-  deps += dependency('gio-windows-2.0', version : '>= 2.38')
+  deps += dependency('gio-windows-2.0', version : '>= 2.44')
 else
-  deps += dependency('gio-unix-2.0', version : '>= 2.38')
+  deps += dependency('gio-unix-2.0', version : '>= 2.44')
 endif
 
 deps += dependency('libsoup-2.4', version : '>= 2.48.0')


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]