git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89355
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
#include "asterisk/abstract_jb.h"
-#include <unistd.h>
-#ifdef POLLCOMPAT
-#include "asterisk/poll-compat.h"
-#else
+#ifdef HAVE_POLL
#include <sys/poll.h>
+#else
+#include "asterisk/poll-compat.h"
#endif
#if defined(__cplusplus) || defined(c_plusplus)
#ifndef _ASTERISK_IO_H
#define _ASTERISK_IO_H
-#ifdef POLLCOMPAT
-#include "asterisk/poll-compat.h"
-#else
+#ifdef HAVE_POLL
#include <sys/poll.h> /* For POLL* constants */
+#else
+#include "asterisk/poll-compat.h"
#endif
#if defined(__cplusplus) || defined(c_plusplus)
AST_LIBS += $(SSL_LIB)
AST_LIBS += $(BKTR_LIB)
-ifneq ($(findstring darwin,$(OSARCH)),)
+ifeq ($(POLL_AVAILABLE),)
OBJS+=poll.o
- ASTCFLAGS+=-DPOLLCOMPAT
-else
- ifeq ($(wildcard /usr/include/sys/poll.h),)
- OBJS+=poll.o
- ASTCFLAGS+=-DPOLLCOMPAT
- endif
endif
ifeq ($(wildcard /usr/include/dlfcn.h),)