1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-10 06:43:13 +02:00

FD_SETSIZE crap

This commit is contained in:
stskeeps
2002-08-10 15:40:08 +00:00
parent bb95bdfa7c
commit f8f829840d
3 changed files with 10 additions and 2 deletions
+2
View File
@@ -1457,3 +1457,5 @@ seen. gmtime warning still there
- Removed src/s_unreal.c contained 2 functions, 1 never used, 1 used once
- Removed /hash (did nothing), removed /post (replaced by scan_http)
- Modulized /vhost, /cycle, /svsjoin, /svspart
- Fixed a autoconf problem where FD_SETSIZE was NOT replaced when it wasn't big enough
(abort() problem on some installs.)
+4 -1
View File
@@ -371,7 +371,10 @@ if (FD_SETSIZE >= $ac_fd)
exit(0);
exit(1);
}
], AC_MSG_RESULT(yes), FD_SETSIZE="-DFD_SETSIZE=$ac_fd" AC_MSG_RESULT(no))
], AC_MSG_RESULT(yes), [
FD_SETSIZE="-DFD_SETSIZE=$ac_fd"
AC_MSG_RESULT(no)
])
AC_SUBST(FD_SETSIZE)
case "${host_cpu}-${host_os}" in
SunOS*5.*)
Vendored
+4 -1
View File
@@ -10552,8 +10552,11 @@ else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
( exit $ac_status )
FD_SETSIZE="-DFD_SETSIZE=$ac_fd" echo "$as_me:$LINENO: result: no" >&5
FD_SETSIZE="-DFD_SETSIZE=$ac_fd"
echo "$as_me:$LINENO: result: no" >&5
echo "${ECHO_T}no" >&6
fi
rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi