svn commit: samba r5284 - in branches/SAMBA_4_0/source/lib/events: .

metze at samba.org metze at samba.org
Wed Feb 9 13:51:15 GMT 2005


Author: metze
Date: 2005-02-09 13:51:14 +0000 (Wed, 09 Feb 2005)
New Revision: 5284

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=5284

Log:
this is needed on my server

+/* this #undef is needed on my SuSE 9.2 Box with glibc-devel-2.3.3-118 */
+#undef u32

as sys/epoll.h has this:
typedef union epoll_data
{
  void *ptr;
  int fd;
  uint32_t u32;
  uint64_t u64;
} epoll_data_t;
	
metze

Modified:
   branches/SAMBA_4_0/source/lib/events/events.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/events/events.c
===================================================================
--- branches/SAMBA_4_0/source/lib/events/events.c	2005-02-08 23:17:44 UTC (rev 5283)
+++ branches/SAMBA_4_0/source/lib/events/events.c	2005-02-09 13:51:14 UTC (rev 5284)
@@ -66,6 +66,8 @@
 #endif
 
 #if WITH_EPOLL
+/* this #undef is needed on my SuSE 9.2 Box with glibc-devel-2.3.3-118 */
+#undef u32
 #include <sys/epoll.h>
 #endif
 



More information about the samba-cvs mailing list