spice/tools/Makefile.am
Frediano Ziglio 524acca643 windows: Disable code not working on Windows
- 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>
2019-05-07 10:14:22 +01:00

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)