diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-02-11 16:29:40 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-02-11 16:29:40 -0800 |
commit | f15b8097a00299291263cfe64947942564ccc373 (patch) | |
tree | ff42338380d935285caf81337ac8607ce26a915b /configure.ac | |
parent | de7b5bb18da4e5a626794db292f8b41d30aa2232 (diff) |
Use autoconf to check for <protocols/rwhod.h> instead of OS-specific ifdefs
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index fa66a66..7134af7 100644 --- a/configure.ac +++ b/configure.ac @@ -72,7 +72,7 @@ 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]) +AC_CHECK_HEADERS([paths.h protocols/rwhod.h]) # Checks for pkg-config packages PKG_CHECK_MODULES(XLOAD, xaw7 xmu xt x11 [xproto >= 7.0.17]) |