From 4aa2b7230439dd1c5c357b685365e915f3171aa2 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 13 Feb 2020 05:26:06 +0100 Subject: Replace our custom signalfd() fallback with glib one (available as of 2.54) Back in 2011 SIGWINCH couldn't be used with g_unix_signal_add. This has changed in 2.54 (released Sep. 2017). That means we can drop our wrapper now. --- src/Makefile.am | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 3579dc0..6c81c83 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,17 +1,12 @@ bin_PROGRAMS = pa-sink-ctl pa_sink_ctl_SOURCES = interface.c command.c config.c pa-sink-ctl.c -EXTRA_pa_sink_ctl_SOURCES = unix_signal.c - -if !HAVE_SIGNALFD -pa_sink_ctl_SOURCES += unix_signal.c -endif AM_CFLAGS = $(GCC_CFLAGS) AM_CPPFLAGS = $(PULSE_CFLAGS) $(PULSE_MAINLOOP_CFLAGS) $(GLIB_CFLAGS) \ -include $(top_builddir)/config.h pa_sink_ctl_LDADD = $(GLIB_LIBS) $(PULSE_LIBS) $(PULSE_MAINLOOP_LIBS) $(CURSES_LIBS) -noinst_HEADERS = interface.h command.h config.h pa-sink-ctl.h ctl.h unix_signal.h +noinst_HEADERS = interface.h command.h config.h pa-sink-ctl.h ctl.h dist_man_MANS = pa-sink-ctl.1 EXTRA_DIST = pa-sink-ctl.1.txt -- cgit