Merge pull request #422 from jbeich/dragonfly
Unbreak build on DragonFly and OpenBSD
This commit is contained in:
commit
fd6ff8264c
|
@ -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