From ae118eb5f53ffdb78e68c34acb6f791ac007cae3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1n=20Tomko?= Date: Tue, 25 Sep 2018 16:49:53 +0200 Subject: [PATCH] configure: sort AC_CHECK_HEADERS argument list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ján Tomko Reviewed-by: Erik Skultety --- configure.ac | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/configure.ac b/configure.ac index e5ad4874f4..cea42ee119 100644 --- a/configure.ac +++ b/configure.ac @@ -353,23 +353,23 @@ AC_CHECK_FUNCS_ONCE([\ dnl Availability of various common headers (non-fatal if missing). AC_CHECK_HEADERS([\ - pwd.h \ - regex.h \ - sys/un.h \ - sys/poll.h \ - syslog.h \ - mntent.h \ - net/ethernet.h \ - linux/magic.h \ - sys/un.h \ - sys/syscall.h \ - sys/sysctl.h \ - netinet/tcp.h \ ifaddrs.h \ libtasn1.h \ - sys/ucred.h \ - sys/mount.h \ + linux/magic.h \ + mntent.h \ + net/ethernet.h \ + netinet/tcp.h \ + pwd.h \ + regex.h \ stdarg.h \ + syslog.h \ + sys/mount.h \ + sys/poll.h \ + sys/syscall.h \ + sys/sysctl.h \ + sys/ucred.h \ + sys/un.h \ + sys/un.h \ ]) dnl Check whether endian provides handy macros. AC_CHECK_DECLS([htole64], [], [], [[#include ]])