~mordred/gearmand/solaris-64-fixes

« back to all changes in this revision

Viewing changes to libgearman/common.h

  • Committer: Brian Aker
  • Date: 2009-01-31 23:46:41 UTC
  • mfrom: (19.1.75 fixes)
  • Revision ID: brian@tangent.org-20090131234641-5dxq383nylwcsr8e
MergeĀ Eric.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
# endif
67
67
#endif
68
68
 
69
 
#ifdef HAVE_EVENT_H
 
69
#ifdef HAVE_LIBEVENT
70
70
#include <event.h>
71
71
#endif
72
72
 
150
150
  uint32_t dcon_total;
151
151
  gearmand_con_st *free_dcon_list;
152
152
  uint32_t free_dcon_count;
153
 
#ifdef HAVE_EVENT_H
 
153
#ifdef HAVE_LIBEVENT
154
154
  struct event_base *base;
155
155
  struct event listen_event;
156
156
#endif
169
169
  gearman_server_con_st server_con;
170
170
  gearman_con_st *con;
171
171
  short last_events;
172
 
#ifdef HAVE_EVENT_H
 
172
#ifdef HAVE_LIBEVENT
173
173
  struct event event;
174
174
#endif
175
175
};