X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=configure.in;fp=configure.in;h=8794636035b80c88a3fc7858824e8be1e480553f;hb=c4478cec9a3b6e5e0e8e517f97c3e5adb3aacffa;hp=1ddff77486384c6134bdc6522afb8b6bd81b85a5;hpb=7f48cc0de8ff330c053e69f99459eb0e7e8102de;p=ircu2.10.12-pk.git diff --git a/configure.in b/configure.in index 1ddff77..8794636 100644 --- a/configure.in +++ b/configure.in @@ -710,7 +710,12 @@ AC_ARG_WITH([maxcon], [unet_cv_with_maxcon=$unet_maxcon])]) if test x"$unet_cv_with_maxcon" = xyes -o x"$unet_cv_with_maxcon" = xno; then + if test "$unet_maxcon" -lt 32; then + AC_MSG_ERROR([Maximum connections (number of open files minus 4) must be at least 32.]) + fi unet_cv_with_maxcon=$unet_maxcon +elif test "$unet_cv_with_maxcon" -lt 32; then + AC_MSG_ERROR([Maximum connections (--with-maxcon) must be at least 32.]) fi AC_MSG_RESULT([$unet_cv_with_maxcon])