build: make Meson treat kqueue conditional as one
src/meson.build:82:3: ERROR: Unknown statement.
This commit is contained in:
parent
0b377537ec
commit
78223caea3
|
@ -81,8 +81,8 @@ endif
|
||||||
host_system = host_machine.system()
|
host_system = host_machine.system()
|
||||||
if host_system == 'linux'
|
if host_system == 'linux'
|
||||||
cflags += ['-DHAS_INOTIFY']
|
cflags += ['-DHAS_INOTIFY']
|
||||||
elif host_system == 'freebsd' or host_system == 'netbsd' or
|
elif (host_system == 'freebsd' or host_system == 'netbsd' or
|
||||||
host_system == 'dragonfly' or host_system == 'openbsd'
|
host_system == 'dragonfly' or host_system == 'openbsd')
|
||||||
cflags += ['-DHAS_KQUEUE']
|
cflags += ['-DHAS_KQUEUE']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue