Skip to content
Snippets Groups Projects
Commit 4f1079b9 authored by Bartosz Golaszewski's avatar Bartosz Golaszewski
Browse files

build: check for sys/sysmacros.h in configure


We now need this header to build the core library.

Signed-off-by: default avatarBartosz Golaszewski <bartekgola@gmail.com>
parent c990e216
No related branches found
No related tags found
No related merge requests found
......@@ -81,6 +81,7 @@ AC_CHECK_FUNC([ppoll], [], [FUNC_NOT_FOUND_LIB([ppoll])])
AC_CHECK_HEADERS([getopt.h], [], [HEADER_NOT_FOUND_LIB([getopt.h])])
AC_CHECK_HEADERS([dirent.h], [], [HEADER_NOT_FOUND_LIB([dirent.h])])
AC_CHECK_HEADERS([sys/poll.h], [], [HEADER_NOT_FOUND_LIB([sys/poll.h])])
AC_CHECK_HEADERS([sys/sysmacros.h], [], [HEADER_NOT_FOUND_LIB([sys/sysmacros.h])])
AC_CHECK_HEADERS([linux/gpio.h], [], [HEADER_NOT_FOUND_LIB([linux/gpio.h])])
AC_ARG_ENABLE([tools],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment