module-gsettings: include signal.h for definition of kill() on Solaris

Fixes build failure with gcc-14 on Solaris 11.4:

../src/modules/gsettings/module-gsettings.c:95:9: error: implicit declaration
 of function ‘kill’ [-Wimplicit-function-declaration]
   95 |         kill(u->pid, SIGTERM);
      |         ^~~~

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
This commit is contained in:
Alan Coopersmith 2024-09-18 14:11:47 -07:00
parent d5df5e9c32
commit 0e852afce3

View file

@ -23,6 +23,7 @@
#include <sys/types.h>
#include <sys/wait.h>
#include <signal.h>
#include <pulsecore/core-error.h>
#include <pulsecore/core-util.h>