diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2010-01-04 17:15:26 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2010-01-04 17:15:26 +0200 |
commit | 834551d2469d72d2192d519e00525114e7d7a457 (patch) | |
tree | 71fa592812a8a414931bafcaedb7c2a7f1a1a86f /configure.ac | |
parent | 554f3f0cfb10cc2494f4a232646dc8bdda7ea962 (diff) | |
download | rpm-834551d2469d72d2192d519e00525114e7d7a457.tar.gz |
Clean up poll() vs select() tests
- move the includes out of system.h, not commonly needed
- <poll.h> is conditional as we actually provide a fallback through select(),
but for <sys/select.h> missing there's no fallback so doesn't make
much sense to test for (and both poll.h and sys/select.h are posix anyway...)
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 4305d3cd5..c0d3416aa 100644 --- a/configure.ac +++ b/configure.ac @@ -360,7 +360,7 @@ AC_CHECK_HEADERS(locale.h) AC_CHECK_HEADERS(limits.h) AC_CHECK_HEADERS(fcntl.h getopt.h memory.h netdb.h) -AC_CHECK_HEADERS(sys/ipc.h sys/select.h) +AC_CHECK_HEADERS(sys/ipc.h) AC_CHECK_HEADERS(sys/mman.h sys/utsname.h sys/wait.h) AC_CHECK_HEADERS(mntent.h sys/mnttab.h sys/systemcfg.h) |