meson: get rid of useless HAVE_SYSV_IPC

Signed-off-by: Laurent Carlier <lordheavym@gmail.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
Laurent Carlier 2018-03-01 12:57:27 +01:00 committed by Adam Jackson
parent e02afb9478
commit de4565727a
2 changed files with 0 additions and 3 deletions

View File

@ -40,7 +40,6 @@ if host_machine.system() == 'linux'
endif
endif
os_support_flags += '-DHAVE_SYSV_IPC'
elif host_machine.system() == 'solaris'
srcs_xorg_os_support += [
'solaris/sun_apm.c',
@ -72,7 +71,6 @@ elif host_machine.system() == 'solaris'
error('Unknown CPU family for Solaris build')
endif
os_support_flags += '-DHAVE_SYSV_IPC'
elif host_machine.system().endswith('bsd')
srcs_xorg_os_support += [
'bsd/bsd_VTsw.c',

View File

@ -53,7 +53,6 @@ conf_data.set('HAS_APERTURE_DRV', host_machine.system() == 'openbsd')
# XXX: BUNDLE_ID_PREFIX
# XXX: HAVE_LIBDISPATCH
conf_data.set_quoted('OSNAME', 'Linux') # XXX
conf_data.set('HAVE_SYSV_IPC', '1') # XXX
conf_data.set('HAVE_INPUTTHREAD', '1') # XXX
conf_data.set('HAVE_PTHREAD_SETNAME_NP_WITHOUT_TID', '1') # XXX
conf_data.set('HAVE_LIBBSD', libbsd_dep.found())