]> git.llucax.com Git - software/libev.git/commitdiff
*** empty log message ***
authorroot <root>
Sun, 4 Nov 2007 16:52:52 +0000 (16:52 +0000)
committerroot <root>
Sun, 4 Nov 2007 16:52:52 +0000 (16:52 +0000)
ev.c
evdns.c
event.c
event.h

diff --git a/ev.c b/ev.c
index 790baee1ed219276382f7d9c2abc6b5aef162001..a80ed9cbb30014ca5128507fd934d817120ce34f 100644 (file)
--- a/ev.c
+++ b/ev.c
@@ -28,7 +28,7 @@
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
-#ifndef EV_STANDALONE
+#ifndef EV_EMBED
 # include "config.h"
 #endif
 
@@ -95,7 +95,9 @@
 #define PID_HASHSIZE  16 /* size of pid hash table, must be power of two */
 /*#define CLEANUP_INTERVAL 300. /* how often to try to free memory and re-check fds */
 
-#include "ev.h"
+#ifndef EV_EMBED
+# include "ev.h"
+#endif
 
 #if __GNUC__ >= 3
 # define expect(expr,value)         __builtin_expect ((expr),(value))
diff --git a/evdns.c b/evdns.c
index 4894401fdfb5bc65ec711a7a18120bed11b7c177..f71c4f631cf57f81aec132b4cd470018d8cd92f2 100644 (file)
--- a/evdns.c
+++ b/evdns.c
@@ -1,4 +1,4 @@
-/* $Id: evdns.c,v 1.7 2007-11-03 20:24:42 root Exp $ */
+/* $Id: evdns.c,v 1.8 2007-11-04 16:52:52 root Exp $ */
 
 /* The original version of this module was written by Adam Langley; for
  * a history of modifications, check out the subversion logs.
 #endif
 
 #ifdef WIN32
+#ifndef EV_EMBED
 #include "misc.h"
 #endif
+#endif
 
 /* #define NDEBUG */
 
@@ -94,7 +96,6 @@
 #include <stdarg.h>
 
 #include "evdns.h"
-#include "log.h"
 #ifdef WIN32
 #include <windows.h>
 #include <winsock2.h>
diff --git a/event.c b/event.c
index 6e26a4863aba962bb6cbc48363277626e98f42fd..83fa71103bb45f99318f6de4cf75fc4b2f37899b 100644 (file)
--- a/event.c
+++ b/event.c
@@ -34,7 +34,9 @@
 #include <sys/time.h>
 #include <assert.h>
 
-#include "event.h"
+#ifndef EV_EMBED
+# include "event.h"
+#endif
 
 #if EV_MULTIPLICITY
 # define dLOOPev struct ev_loop *loop = (struct ev_loop *)ev->ev_base
@@ -110,7 +112,7 @@ int event_dispatch (void)
   return event_base_dispatch (x_cur);
 }
 
-#ifdef EV_STANDALONE
+#ifdef EV_EMBED
 void event_set_log_callback (event_log_cb cb)
 {
   /* nop */
diff --git a/event.h b/event.h
index d21ed3fee5898144fb2db12bdb7f6cc7e5d98c62..48c34e6c1fb5c4c9251df72681b6c691b632b09e 100644 (file)
--- a/event.h
+++ b/event.h
@@ -31,7 +31,9 @@
 #ifndef _EVENT_H_
 #define _EVENT_H_
 
-#include "ev.h"
+#ifndef EV_EMBED
+# include "ev.h"
+#endif
 
 #ifdef __cplusplus
 extern "C" {
@@ -121,7 +123,7 @@ int event_base_dispatch (struct event_base *base);
 int event_base_once (struct event_base *base, int fd, short events, void (*cb)(int, short, void *), void *arg, struct timeval *tv);
 int event_base_priority_init (struct event_base *base, int fd);
 
-#ifndef EV_STANDALONE
+#ifndef EV_EMBED
 # include "event_compat.h"
 #endif