mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 06:32:44 +00:00
- global signals; - CLOEXEC flag; - mmap and statistics; - IPTOS_LOWDELAY flag; - Unix sockets; - sharing file descriptors through Unix sockets; - TCP_CORK flag. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Victor Toso <victortoso@redhat.com>
26 lines
285 B
Makefile
26 lines
285 B
Makefile
NULL =
|
|
|
|
AM_CPPFLAGS = \
|
|
$(COMMON_CFLAGS) \
|
|
$(SPICE_PROTOCOL_CFLAGS) \
|
|
$(WARN_CFLAGS) \
|
|
$(NULL)
|
|
|
|
AM_LDFLAGS = \
|
|
$(LIBRT) \
|
|
$(NULL)
|
|
|
|
if !OS_WIN32
|
|
noinst_PROGRAMS = \
|
|
reds_stat \
|
|
$(NULL)
|
|
|
|
reds_stat_SOURCES = \
|
|
reds_stat.c \
|
|
$(NULL)
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
meson.build \
|
|
$(NULL)
|