Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
8b86dcf8
Commit
8b86dcf8
authored
Feb 19, 2010
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build on cygwin enabled
parent
72705454
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
+6
-0
AUTHORS
AUTHORS
+1
-0
configure.in
configure.in
+3
-0
poller.hpp
src/poller.hpp
+2
-0
No files found.
AUTHORS
View file @
8b86dcf8
...
...
@@ -4,6 +4,7 @@ Contributors
Alexej Lotz
Asko Kauppi
Barak Amar
Bernd Prager
Chris Wong
Conrad D. Steenberg
Dhruva Krishnamurthy
...
...
configure.in
View file @
8b86dcf8
...
...
@@ -200,6 +200,9 @@ case "${host_os}" in
on_mingw32="yes"
install_man="no"
;;
*cygwin*)
AC_DEFINE(ZMQ_HAVE_CYGWIN, 1, [Have Cygwin])
;;
*)
AC_MSG_ERROR([unsupported system: ${host_os}.])
;;
...
...
src/poller.hpp
View file @
8b86dcf8
...
...
@@ -61,6 +61,8 @@ namespace zmq
typedef
devpoll_t
poller_t
;
#elif defined ZMQ_HAVE_OPENVMS
typedef
select_t
poller_t
;
#elif defined ZMQ_HAVE_CYGWIN
typedef
select_t
poller_t
;
#else
#error Unsupported platform
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment