X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=configure.in;h=fb0877839383b7611adb7548d511938351327d79;hp=92434ec7d044945f9a25914804cd0df289acade1;hb=0de11ead3663a1248ae0f0f97a2896845774a7d4;hpb=13d9e0c5a7e03559a2b5bf405b526098b15bd0e6 diff --git a/configure.in b/configure.in index 92434ec7..fb087783 100644 --- a/configure.in +++ b/configure.in @@ -252,13 +252,21 @@ AC_ARG_WITH(poll, CPPFLAGS="-I$withval/include $CPPFLAGS" LDFLAGS="-L$withval/lib $LDFLAGS" fi - AC_CHECK_FUNCS(poll, x_io_backend=poll\(\), + AC_CHECK_FUNCS(poll, [ + AC_CHECK_HEADERS(poll.h, + x_io_backend=poll\(\), + AC_MSG_ERROR( + [Can't enable poll IO support!]) + ) + ], [ AC_MSG_ERROR([Can't enable poll IO support!]) - ) + ]) fi ], [ - AC_CHECK_FUNCS(poll, x_io_backend=poll\(\)) + AC_CHECK_FUNCS(poll, [ + AC_CHECK_HEADERS(poll.h, x_io_backend=poll\(\)) + ]) ] ) @@ -332,7 +340,7 @@ else fi if test "$x_io_backend" = "none"; then - AC_MSG_ERROR([No useabe IO API activated/found!?]) + AC_MSG_ERROR([No useable IO API activated/found!?]) fi # use SSL?