From: Ilya Dryomov Date: Mon, 16 Dec 2013 16:57:21 +0000 (+0200) Subject: configure: break up AC_CHECK_HEADERS into one header-file per line X-Git-Tag: v0.75~96^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a2babe27e86bc7d085a7c4408e1011cb6635f2ba;p=ceph.git 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 --- 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],