xserver/os/meson.build
Jon TURNEY 3b3ce4a55b meson: Test to build xserver_poll.c was inverted
Test to build xserver_poll.c was inverted compared to autoconf. Build
xserver_poll.c if poll is missing.

Reviewed-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Jon Turney <jon.turney@dronecode.org.uk>
2017-05-04 10:28:08 -04:00

75 lines
1.4 KiB
Meson

srcs_os = [
'WaitFor.c',
'access.c',
'auth.c',
'backtrace.c',
'client.c',
'connection.c',
'inputthread.c',
'io.c',
'mitauth.c',
'oscolor.c',
'osinit.c',
'ospoll.c',
'utils.c',
'xdmauth.c',
'xsha1.c',
'xstrans.c',
'xprintf.c',
'log.c',
]
# Wrapper code for missing C library functions
srcs_libc = []
if not cc.has_function('reallocarray')
srcs_libc += 'reallocarray.c'
endif
if not cc.has_function('strcasecmp')
srcs_libc += 'strcasecmp.c'
endif
if not cc.has_function('strcasestr')
srcs_libc += 'strcasestr.c'
endif
if not cc.has_function('strlcat')
srcs_libc += 'strlcat.c'
endif
if not cc.has_function('strlcpy')
srcs_libc += 'strlcpy.c'
endif
if not cc.has_function('strndup')
srcs_libc += 'strndup.c'
endif
if not cc.has_function('timingsafe_memcmp')
srcs_libc += 'timingsafe_memcmp.c'
endif
if not cc.has_function('poll')
srcs_os += 'xserver_poll.c'
endif
if cc.has_function('sigaction')
srcs_os += 'busfault.c'
endif
if get_option('xdmcp')
srcs_os += 'xdmcp.c'
endif
libxlibc = []
if srcs_libc.length() > 0
libxlibc = static_library('libxlibc',
srcs_libc,
include_directories: inc,
)
endif
libxserver_os = static_library('libxserver_os',
srcs_os,
include_directories: inc,
dependencies: [
common_dep,
dl_dep,
sha1_dep,
dependency('xau')
],
link_with: libxlibc,
)