summaryrefslogtreecommitdiff
path: root/source4/lib/events/events_standard.c
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2008-04-24 17:28:30 -0400
committerSimo Sorce <idra@samba.org>2008-05-14 00:03:01 -0400
commit136f369b23946698c9fcfd217444ddc0614cde85 (patch)
treece83f0dc2e5ad12d0433cae6b8482be67921b7ce /source4/lib/events/events_standard.c
parent0e4ae88d3856869a5bb327ed26e155f22bdffc09 (diff)
downloadsamba-136f369b23946698c9fcfd217444ddc0614cde85.tar.gz
samba-136f369b23946698c9fcfd217444ddc0614cde85.tar.bz2
samba-136f369b23946698c9fcfd217444ddc0614cde85.zip
Make it possible to build libevents standalone.
(This used to be commit 10415bb738d51afdebbfeae976923e086805ae84)
Diffstat (limited to 'source4/lib/events/events_standard.c')
-rw-r--r--source4/lib/events/events_standard.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/source4/lib/events/events_standard.c b/source4/lib/events/events_standard.c
index 7b945b154d..4e41c42206 100644
--- a/source4/lib/events/events_standard.c
+++ b/source4/lib/events/events_standard.c
@@ -27,13 +27,18 @@
at runtime we fallback to select()
*/
+#if _SAMBA_BUILD_
#include "includes.h"
+#include "lib/util/dlinklist.h"
+#else
+#include "replace.h"
+#include "events_util.h"
+#endif
#include "system/filesys.h"
#include "system/network.h"
#include "system/select.h" /* needed for HAVE_EVENTS_EPOLL */
-#include "lib/util/dlinklist.h"
-#include "lib/events/events.h"
-#include "lib/events/events_internal.h"
+#include "events.h"
+#include "events_internal.h"
struct std_event_context {
/* a pointer back to the generic event_context */