From a2babe27e86bc7d085a7c4408e1011cb6635f2ba Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Mon, 16 Dec 2013 18:57:21 +0200 Subject: [PATCH] configure: break up AC_CHECK_HEADERS into one header-file per line Break up AC_CHECK_HEADERS macro into one header-file per line so it's easier to read and make changes. Signed-off-by: Ilya Dryomov --- configure.ac | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ab2e49dd707a..4c3afa367203 100644 --- a/configure.ac +++ b/configure.ac @@ -582,7 +582,22 @@ AC_CHECK_MEMBER([struct fiemap_extent.fe_logical], [AC_MSG_NOTICE([linux/fiemap.h was not found or not usable; using local Ceph copy])], [[#include ]]) -AC_CHECK_HEADERS([sys/xattr.h arpa/inet.h netdb.h netinet/in.h sys/file.h sys/ioctl.h sys/mount.h sys/param.h sys/socket.h sys/statvfs.h sys/time.h sys/vfs.h syslog.h utime.h]) +AC_CHECK_HEADERS([ \ + arpa/inet.h \ + netdb.h \ + netinet/in.h \ + sys/file.h \ + sys/ioctl.h \ + sys/mount.h \ + sys/param.h \ + sys/socket.h \ + sys/statvfs.h \ + sys/time.h \ + sys/vfs.h \ + sys/xattr.h \ + syslog.h \ + utime.h \ +]) # sync_file_range AC_CHECK_FUNC([sync_file_range], -- 2.47.3