8 lines
163 B
Bash
8 lines
163 B
Bash
|
#!/usr/bin/env bash
|
||
|
${CPP:-${CC:-cc} -E} ${CPPFLAGS} - > /dev/null 2> /dev/null << EOF
|
||
|
#include <systemd/sd-daemon.h>
|
||
|
EOF
|
||
|
if test $? -eq 0 ; then
|
||
|
echo systemd
|
||
|
fi
|