mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 09:26:17 +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
19 lines
401 B
Meson
19 lines
401 B
Meson
kqueue_sources = [
|
|
'gkqueuefilemonitor.c',
|
|
'kqueue-helper.c',
|
|
'kqueue-missing.c',
|
|
'dep-list.c',
|
|
]
|
|
|
|
kqueue_lib = static_library('kqueue',
|
|
sources : [kqueue_sources],
|
|
include_directories : [configinc, glibinc],
|
|
dependencies : [
|
|
gioenumtypes_dep,
|
|
libglib_dep,
|
|
gmodule_inc_dep,
|
|
],
|
|
gnu_symbol_visibility : 'hidden',
|
|
pic : true,
|
|
c_args : [gio_c_args, gio_c_args_internal])
|