Skip to content
This repository was archived by the owner on Mar 19, 2020. It is now read-only.

Commit 0fbe042

Browse files
committed
adjusted makefiles
1 parent fdbe076 commit 0fbe042

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
include Makefile.common
2+
CFLAGS += -DHAVE_POLL

Makefile.cygwin

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
include Makefile.common
2-
CFLAGS += -DWINDOWS_BUILD
2+
CFLAGS += -DWINDOWS_BUILD -DHAVE_POLL
33
LIBS += -largp

libircclient-src/fd_watcher.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@
55
#ifdef __cplusplus
66
extern "C" {
77
#endif
8-
8+
9+
#if !defined(HAVE_SELECT) && !defined(HAVE_POLL) && !defined(HAVE_EPOLL)
10+
#warning "you have not defined HAVE_SELECT, HAVE_POLL or HAVE_EPOLL, therefore using HAVE_SELECT at fdwatcher"
911
#define HAVE_SELECT
12+
#endif
1013

1114
#define FDW_READ 0x01
1215
#define FDW_WRITE 0x02

0 commit comments

Comments
 (0)