mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-24 06:05:56 -05:00
Limit signalfd.h header check to linux platforms
This commit is contained in:
parent
2f99797d9a
commit
f4025c4b5d
@ -93,7 +93,11 @@ if test x$use_itunes = xtrue; then
|
||||
PKG_CHECK_MODULES(LIBPLIST, [ libplist >= 0.16 ])
|
||||
fi
|
||||
|
||||
AC_CHECK_HEADER(sys/signalfd.h, , AC_MSG_ERROR([signalfd required; glibc 2.9+ recommended]))
|
||||
case "$host" in
|
||||
*linux*)
|
||||
AC_CHECK_HEADER(sys/signalfd.h, , AC_MSG_ERROR([signalfd required; glibc 2.9+ recommended]))
|
||||
;;
|
||||
esac
|
||||
|
||||
AC_CHECK_SIZEOF(void *)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user