diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-02-11 15:59:33 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-02-11 16:07:05 -0800 |
commit | de7b5bb18da4e5a626794db292f8b41d30aa2232 (patch) | |
tree | 46d5d126c13e3daf5f65fe3f3c8c6129db1f5386 /configure.ac | |
parent | f16d6f2c273c6896a4e79ac9db7a80c830794392 (diff) |
Use autoconf to check for <paths.h> instead of ifdef BSD
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index ed5b51f..fa66a66 100644 --- a/configure.ac +++ b/configure.ac @@ -72,6 +72,8 @@ AM_CONDITIONAL(USE_GETTEXT, test "x$USE_GETTEXT" = "xyes") # BSD & GNU libc use <stdlib.h>, Solaris requires <sys/loadavg.h> AC_CHECK_FUNCS([getloadavg], [AC_CHECK_HEADERS([sys/loadavg.h])]) +AC_CHECK_HEADERS([paths.h]) + # Checks for pkg-config packages PKG_CHECK_MODULES(XLOAD, xaw7 xmu xt x11 [xproto >= 7.0.17]) |