CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Branch tags: u2_10_11_06
Commit time: 2003-11-18 10:09:55 UTC
Modified files:
Tag: u2_10_11_06
ChangeLog ircd/engine_epoll.c ircd/os_linux.c
Log message:
Author: Entrope <[EMAIL PROTECTED]>
Log message:
* ircd/os_linux.c: Restore the #include <unistd.h>, which is
reportedly necessary on the Fedora Core 1 distribution.
* ircd/engine_epoll.c: #include <sys/types.h>, which is
reportedly necessary on certain RedHat releases.
---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.290.2.129.2.15 ircu2.10/ChangeLog:1.290.2.129.2.16
--- ircu2.10/ChangeLog:1.290.2.129.2.15 Tue Nov 18 02:05:12 2003
+++ ircu2.10/ChangeLog Tue Nov 18 02:09:43 2003
@@ -1,3 +1,10 @@
+2003-11-17 Entrope <[EMAIL PROTECTED]>
+ * ircd/engine_epoll.c: #include <sys/types.h>, which is
+ reportedly necessary on certain RedHat releases.
+
+ * ircd/os_linux.c: Restore the #include <unistd.h>, which is
+ reportedly necessary on the Fedora Core 1 distribution.
+
2003-11-18 Isomer <[EMAIL PROTECTED]>
* ircd/s_auth.c, ircd/res.c: Clean up the preregistration subsystem
allowing customisation of timers, make the dns resolver stats oper only,
Index: ircu2.10/ircd/engine_epoll.c
diff -u ircu2.10/ircd/engine_epoll.c:1.1.2.1 ircu2.10/ircd/engine_epoll.c:1.1.2.2
--- ircu2.10/ircd/engine_epoll.c:1.1.2.1 Wed Nov 5 01:19:44 2003
+++ ircu2.10/ircd/engine_epoll.c Tue Nov 18 02:09:45 2003
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
- * $Id: engine_epoll.c,v 1.1.2.1 2003/11/05 09:19:44 isomer Exp $
+ * $Id: engine_epoll.c,v 1.1.2.2 2003/11/18 10:09:45 isomer Exp $
*/
#include "config.h"
@@ -29,6 +29,7 @@
#include <assert.h>
#include <errno.h>
+#include <sys/types.h>
#include <sys/epoll.h>
#include <sys/socket.h>
#include <time.h>
Index: ircu2.10/ircd/os_linux.c
diff -u ircu2.10/ircd/os_linux.c:1.9.2.1 ircu2.10/ircd/os_linux.c:1.9.2.1.2.1
--- ircu2.10/ircd/os_linux.c:1.9.2.1 Sat Nov 1 02:19:12 2003
+++ ircu2.10/ircd/os_linux.c Tue Nov 18 02:09:45 2003
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
- * $Id: os_linux.c,v 1.9.2.1 2003/11/01 10:19:12 isomer Exp $
+ * $Id: os_linux.c,v 1.9.2.1.2.1 2003/11/18 10:09:45 isomer Exp $
*
*/
#include "config.h"
@@ -40,9 +40,7 @@
#include <sys/times.h>
#include <sys/uio.h>
#include <sys/param.h>
-#if 0
#include <unistd.h>
-#endif
/*
* This is part of the STATS replies. There is no offical numeric for this
----------------------- End of diff -----------------------