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
bbdd8662
Commit
bbdd8662
authored
Feb 12, 2015
by
somdoron
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
thread safety - supporting windows
parent
6749c9b3
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
43 additions
and
1 deletion
+43
-1
CMakeLists.txt
CMakeLists.txt
+1
-0
platform.hpp.in
builds/cmake/platform.hpp.in
+11
-1
platform.hpp
builds/mingw32/platform.hpp
+9
-0
platform.hpp
builds/msvc/platform.hpp
+8
-0
libzmq.vcxproj
builds/msvc/vs2013/libzmq/libzmq.vcxproj
+3
-0
libzmq.vcxproj.filters
builds/msvc/vs2013/libzmq/libzmq.vcxproj.filters
+9
-0
CMakeLists.txt
tests/CMakeLists.txt
+2
-0
No files found.
CMakeLists.txt
View file @
bbdd8662
...
...
@@ -423,6 +423,7 @@ set(cxx-sources
kqueue.cpp
lb.cpp
mailbox.cpp
mailbox_safe.cpp
mechanism.cpp
metadata.cpp
msg.cpp
...
...
builds/cmake/platform.hpp.in
View file @
bbdd8662
...
...
@@ -86,5 +86,14 @@
#cmakedefine ZMQ_HAVE_WINDOWS
#ifdef ZMQ_HAVE_WINDOWS
#if defined _WIN32_WINNT && _WIN32_WINNT < 0x0600
#undef _WIN32_WINNT
#endif
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0600
#endif
#endif
#endif
\ No newline at end of file
builds/mingw32/platform.hpp
View file @
bbdd8662
...
...
@@ -29,4 +29,13 @@
#define ZMQ_HAVE_WINDOWS
#if defined _WIN32_WINNT && _WIN32_WINNT < 0x0600
#undef _WIN32_WINNT
#endif
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0600
#endif
#endif
builds/msvc/platform.hpp
View file @
bbdd8662
...
...
@@ -29,4 +29,12 @@
#define ZMQ_HAVE_WINDOWS
#if defined _WIN32_WINNT && _WIN32_WINNT < 0x0600
#undef _WIN32_WINNT
#endif
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0600
#endif
#endif
builds/msvc/vs2013/libzmq/libzmq.vcxproj
View file @
bbdd8662
...
...
@@ -76,6 +76,7 @@
<ClInclude
Include=
"..\..\..\..\src\client.hpp"
/>
<ClInclude
Include=
"..\..\..\..\src\clock.hpp"
/>
<ClInclude
Include=
"..\..\..\..\src\command.hpp"
/>
<ClInclude
Include=
"..\..\..\..\src\condition_variable.hpp"
/>
<ClInclude
Include=
"..\..\..\..\src\config.hpp"
/>
<ClInclude
Include=
"..\..\..\..\src\ctx.hpp"
/>
<ClInclude
Include=
"..\..\..\..\src\curve_client.hpp"
/>
...
...
@@ -103,6 +104,7 @@
<ClInclude
Include=
"..\..\..\..\src\lb.hpp"
/>
<ClInclude
Include=
"..\..\..\..\src\likely.hpp"
/>
<ClInclude
Include=
"..\..\..\..\src\mailbox.hpp"
/>
<ClInclude
Include=
"..\..\..\..\src\mailbox_safe.hpp"
/>
<ClInclude
Include=
"..\..\..\..\src\msg.hpp"
/>
<ClInclude
Include=
"..\..\..\..\src\mtrie.hpp"
/>
<ClInclude
Include=
"..\..\..\..\src\mutex.hpp"
/>
...
...
@@ -183,6 +185,7 @@
<ClCompile
Include=
"..\..\..\..\src\kqueue.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\lb.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\mailbox.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\mailbox_safe.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\mechanism.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\metadata.cpp"
/>
<ClCompile
Include=
"..\..\..\..\src\msg.cpp"
/>
...
...
builds/msvc/vs2013/libzmq/libzmq.vcxproj.filters
View file @
bbdd8662
...
...
@@ -232,6 +232,9 @@
<ClCompile
Include=
"..\..\..\..\src\client.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\mailbox_safe.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude
Include=
"..\..\..\..\include\zmq_utils.h"
>
...
...
@@ -504,6 +507,12 @@
<ClInclude
Include=
"..\..\..\..\src\client.hpp"
>
<Filter>
src\include
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\..\..\src\mailbox_safe.hpp"
>
<Filter>
src\include
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\..\..\src\condition_variable.hpp"
>
<Filter>
src\include
</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<Filter
Include=
"include"
>
...
...
tests/CMakeLists.txt
View file @
bbdd8662
...
...
@@ -45,6 +45,8 @@ set(tests
test_connect_rid
test_xpub_nodrop
test_pub_invert_matching
test_thread_safe
test_client_server
)
if
(
NOT WIN32
)
list
(
APPEND tests
...
...
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