mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 17:36:14 +01:00
6b4b4cd889
I made the kqueue failure 100% reliable with `samu -j1` on FreeBSD, and therefore confirmed this fixes that problem. Issue #2929 is an identical failure on win32, so I assume this fixes that, too, but I haven't confirmed. Fixes: #2929
22 lines
500 B
Meson
22 lines
500 B
Meson
giowin32_sources = [
|
|
'gwin32fsmonitorutils.c',
|
|
'gwin32filemonitor.c',
|
|
'gwinhttpvfs.c',
|
|
'gwinhttpfile.c',
|
|
'gwinhttpfileinputstream.c',
|
|
'gwinhttpfileoutputstream.c',
|
|
]
|
|
|
|
giowin32_lib = static_library('giowin32',
|
|
sources : [giowin32_sources],
|
|
include_directories : [configinc, glibinc, gioinc],
|
|
dependencies : [
|
|
libintl,
|
|
gioenumtypes_dep,
|
|
libglib_dep,
|
|
gmodule_inc_dep,
|
|
],
|
|
gnu_symbol_visibility : 'hidden',
|
|
pic : true,
|
|
c_args : [gio_c_args, gio_c_args_internal])
|