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
033040f7
Commit
033040f7
authored
May 06, 2014
by
evoskuil
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Integrate GSSAPI option in VS UI options and props.
parent
17735a4e
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
75 additions
and
0 deletions
+75
-0
libzmq.import.props
builds/msvc/vs2010/libzmq.import.props
+1
-0
libzmq.import.xml
builds/msvc/vs2010/libzmq.import.xml
+4
-0
libzmq.props
builds/msvc/vs2010/libzmq/libzmq.props
+2
-0
libzmq.vcxproj.filters
builds/msvc/vs2010/libzmq/libzmq.vcxproj.filters
+18
-0
libzmq.xml
builds/msvc/vs2010/libzmq/libzmq.xml
+6
-0
libzmq.import.props
builds/msvc/vs2012/libzmq.import.props
+1
-0
libzmq.import.xml
builds/msvc/vs2012/libzmq.import.xml
+4
-0
libzmq.props
builds/msvc/vs2012/libzmq/libzmq.props
+2
-0
libzmq.vcxproj.filters
builds/msvc/vs2012/libzmq/libzmq.vcxproj.filters
+18
-0
libzmq.xml
builds/msvc/vs2012/libzmq/libzmq.xml
+6
-0
libzmq.import.props
builds/msvc/vs2013/libzmq.import.props
+1
-0
libzmq.import.xml
builds/msvc/vs2013/libzmq.import.xml
+4
-0
libzmq.props
builds/msvc/vs2013/libzmq/libzmq.props
+2
-0
libzmq.xml
builds/msvc/vs2013/libzmq/libzmq.xml
+6
-0
No files found.
builds/msvc/vs2010/libzmq.import.props
View file @
033040f7
...
...
@@ -17,6 +17,7 @@
<ClCompile>
<AdditionalIncludeDirectories>
$(ProjectDir)..\..\..\..\..\libzmq\include\;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
<PreprocessorDefinitions
Condition=
"'$(Option-openpgm)' == 'true'"
>
ZMQ_HAVE_OPENPGM;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-gssapi)' == 'true'"
>
HAVE_LIBGSSAPI_KRB5;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-sodium)' == 'true'"
>
HAVE_LIBSODIUM;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
...
...
builds/msvc/vs2010/libzmq.import.xml
View file @
033040f7
...
...
@@ -16,6 +16,10 @@
<EnumValue
Name=
""
DisplayName=
"No"
/>
<EnumValue
Name=
"true"
DisplayName=
"Yes"
/>
</EnumProperty>
<EnumProperty
Name=
"Option-gssapi"
DisplayName=
"Enable GSS API"
Description=
"Enable the GSS API build option"
Category=
"gssapi"
>
<EnumValue
Name=
""
DisplayName=
"No"
/>
<EnumValue
Name=
"true"
DisplayName=
"Yes"
/>
</EnumProperty>
</Rule>
<Rule
Name=
"libzmq-linkage-uiextension"
PageTemplate=
"tool"
DisplayName=
"Local Dependencies"
SwitchPrefix=
"/"
Order=
"1"
>
<Rule.Categories>
...
...
builds/msvc/vs2010/libzmq/libzmq.props
View file @
033040f7
...
...
@@ -29,6 +29,7 @@
<PreprocessorDefinitions>
_CRT_SECURE_NO_WARNINGS;FD_SETSIZE=1024;ZMQ_USE_SELECT;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-openpgm)' == 'true'"
>
ZMQ_HAVE_OPENPGM;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-sodium)' == 'true'"
>
HAVE_LIBSODIUM;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-gssapi)' == 'true'"
>
HAVE_LIBGSSAPI_KRB5;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(ConfigurationType)' == 'StaticLibrary'"
>
ZMQ_STATIC;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(ConfigurationType)' == 'DynamicLibrary'"
>
DLL_EXPORT;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
</ClCompile>
...
...
@@ -65,6 +66,7 @@
<Target
Name=
"OptionInfo"
BeforeTargets=
"PrepareForBuild"
>
<Message
Text=
"Option-openpgm : $(Option-openpgm)"
Importance=
"high"
/>
<Message
Text=
"Option-sodium : $(Option-sodium)"
Importance=
"high"
/>
<Message
Text=
"Option-gssapi : $(Option-gssapi)"
Importance=
"high"
/>
</Target>
<Target
Name=
"LinkageInfo"
BeforeTargets=
"PrepareForBuild"
>
...
...
builds/msvc/vs2010/libzmq/libzmq.vcxproj.filters
View file @
033040f7
...
...
@@ -205,6 +205,15 @@
<ClCompile
Include=
"..\..\..\..\src\curve_server.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\gssapi_mechanism_base.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\gssapi_server.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\gssapi_client.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude
Include=
"..\..\..\..\include\zmq_utils.h"
>
...
...
@@ -456,6 +465,15 @@
<ClInclude
Include=
"..\..\..\..\src\curve_server.hpp"
>
<Filter>
src\include
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\..\..\src\gssapi_mechanism_base.hpp"
>
<Filter>
src\include
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\..\..\src\gssapi_server.hpp"
>
<Filter>
src\include
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\..\..\src\gssapi_client.hpp"
>
<Filter>
src\include
</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<Filter
Include=
"include"
>
...
...
builds/msvc/vs2010/libzmq/libzmq.xml
View file @
033040f7
...
...
@@ -4,6 +4,7 @@
<Rule.Categories>
<Category
Name=
"openpgm"
DisplayName=
"openpgm"
/>
<Category
Name=
"sodium"
DisplayName=
"sodium"
/>
<Category
Name=
"gssapi"
DisplayName=
"gssapi"
/>
</Rule.Categories>
<Rule.DataSource>
<DataSource
Persistence=
"ProjectFile"
ItemType=
""
/>
...
...
@@ -16,5 +17,9 @@
<EnumValue
Name=
""
DisplayName=
"No"
/>
<EnumValue
Name=
"true"
DisplayName=
"Yes"
/>
</EnumProperty>
<EnumProperty
Name=
"Option-gssapi"
DisplayName=
"Enable GSS API"
Description=
"Enable GSS API build option"
Category=
"gssapi"
>
<EnumValue
Name=
""
DisplayName=
"No"
/>
<EnumValue
Name=
"true"
DisplayName=
"Yes"
/>
</EnumProperty>
</Rule>
</ProjectSchemaDefinitions>
\ No newline at end of file
builds/msvc/vs2012/libzmq.import.props
View file @
033040f7
...
...
@@ -18,6 +18,7 @@
<ClCompile>
<AdditionalIncludeDirectories>
$(ProjectDir)..\..\..\..\..\libzmq\include\;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
<PreprocessorDefinitions
Condition=
"'$(Option-openpgm)' == 'true'"
>
ZMQ_HAVE_OPENPGM;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-gssapi)' == 'true'"
>
HAVE_LIBGSSAPI_KRB5;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-sodium)' == 'true'"
>
HAVE_LIBSODIUM;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
...
...
builds/msvc/vs2012/libzmq.import.xml
View file @
033040f7
...
...
@@ -16,6 +16,10 @@
<EnumValue
Name=
""
DisplayName=
"No"
/>
<EnumValue
Name=
"true"
DisplayName=
"Yes"
/>
</EnumProperty>
<EnumProperty
Name=
"Option-gssapi"
DisplayName=
"Enable GSS API"
Description=
"Enable the GSS API build option"
Category=
"gssapi"
>
<EnumValue
Name=
""
DisplayName=
"No"
/>
<EnumValue
Name=
"true"
DisplayName=
"Yes"
/>
</EnumProperty>
</Rule>
<Rule
Name=
"libzmq-linkage-uiextension"
PageTemplate=
"tool"
DisplayName=
"Local Dependencies"
SwitchPrefix=
"/"
Order=
"1"
>
<Rule.Categories>
...
...
builds/msvc/vs2012/libzmq/libzmq.props
View file @
033040f7
...
...
@@ -29,6 +29,7 @@
<PreprocessorDefinitions>
_CRT_SECURE_NO_WARNINGS;FD_SETSIZE=1024;ZMQ_USE_SELECT;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-openpgm)' == 'true'"
>
ZMQ_HAVE_OPENPGM;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-sodium)' == 'true'"
>
HAVE_LIBSODIUM;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-gssapi)' == 'true'"
>
HAVE_LIBGSSAPI_KRB5;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(ConfigurationType)' == 'StaticLibrary'"
>
ZMQ_STATIC;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(ConfigurationType)' == 'DynamicLibrary'"
>
DLL_EXPORT;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
</ClCompile>
...
...
@@ -65,6 +66,7 @@
<Target
Name=
"OptionInfo"
BeforeTargets=
"PrepareForBuild"
>
<Message
Text=
"Option-openpgm : $(Option-openpgm)"
Importance=
"high"
/>
<Message
Text=
"Option-sodium : $(Option-sodium)"
Importance=
"high"
/>
<Message
Text=
"Option-gssapi : $(Option-gssapi)"
Importance=
"high"
/>
</Target>
<Target
Name=
"LinkageInfo"
BeforeTargets=
"PrepareForBuild"
>
...
...
builds/msvc/vs2012/libzmq/libzmq.vcxproj.filters
View file @
033040f7
...
...
@@ -205,6 +205,15 @@
<ClCompile
Include=
"..\..\..\..\src\curve_server.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\gssapi_mechanism_base.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\gssapi_server.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
<ClCompile
Include=
"..\..\..\..\src\gssapi_client.cpp"
>
<Filter>
src
</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude
Include=
"..\..\..\..\include\zmq_utils.h"
>
...
...
@@ -456,6 +465,15 @@
<ClInclude
Include=
"..\..\..\..\src\curve_server.hpp"
>
<Filter>
src\include
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\..\..\src\gssapi_mechanism_base.hpp"
>
<Filter>
src\include
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\..\..\src\gssapi_server.hpp"
>
<Filter>
src\include
</Filter>
</ClInclude>
<ClInclude
Include=
"..\..\..\..\src\gssapi_client.hpp"
>
<Filter>
src\include
</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<Filter
Include=
"include"
>
...
...
builds/msvc/vs2012/libzmq/libzmq.xml
View file @
033040f7
...
...
@@ -4,6 +4,7 @@
<Rule.Categories>
<Category
Name=
"openpgm"
DisplayName=
"openpgm"
/>
<Category
Name=
"sodium"
DisplayName=
"sodium"
/>
<Category
Name=
"gssapi"
DisplayName=
"gssapi"
/>
</Rule.Categories>
<Rule.DataSource>
<DataSource
Persistence=
"ProjectFile"
ItemType=
""
/>
...
...
@@ -16,5 +17,9 @@
<EnumValue
Name=
""
DisplayName=
"No"
/>
<EnumValue
Name=
"true"
DisplayName=
"Yes"
/>
</EnumProperty>
<EnumProperty
Name=
"Option-gssapi"
DisplayName=
"Enable GSS API"
Description=
"Enable GSS API build option"
Category=
"gssapi"
>
<EnumValue
Name=
""
DisplayName=
"No"
/>
<EnumValue
Name=
"true"
DisplayName=
"Yes"
/>
</EnumProperty>
</Rule>
</ProjectSchemaDefinitions>
\ No newline at end of file
builds/msvc/vs2013/libzmq.import.props
View file @
033040f7
...
...
@@ -23,6 +23,7 @@
<AdditionalIncludeDirectories>
$(ProjectDir)..\..\..\..\..\libzmq\include\;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
<PreprocessorDefinitions
Condition=
"'$(Option-openpgm)' == 'true'"
>
ZMQ_HAVE_OPENPGM;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-sodium)' == 'true'"
>
HAVE_LIBSODIUM;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-gssapi)' == 'true'"
>
HAVE_LIBGSSAPI_KRB5;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Linkage-libzmq)' == 'static' Or '$(Linkage-libzmq)' == 'ltcg'"
>
ZMQ_STATIC;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
...
...
builds/msvc/vs2013/libzmq.import.xml
View file @
033040f7
...
...
@@ -16,6 +16,10 @@
<EnumValue
Name=
""
DisplayName=
"No"
/>
<EnumValue
Name=
"true"
DisplayName=
"Yes"
/>
</EnumProperty>
<EnumProperty
Name=
"Option-gssapi"
DisplayName=
"Enable GSS API"
Description=
"Enable the GSS API build option"
Category=
"gssapi"
>
<EnumValue
Name=
""
DisplayName=
"No"
/>
<EnumValue
Name=
"true"
DisplayName=
"Yes"
/>
</EnumProperty>
</Rule>
<Rule
Name=
"libzmq-linkage-uiextension"
PageTemplate=
"tool"
DisplayName=
"Local Dependencies"
SwitchPrefix=
"/"
Order=
"1"
>
<Rule.Categories>
...
...
builds/msvc/vs2013/libzmq/libzmq.props
View file @
033040f7
...
...
@@ -29,6 +29,7 @@
<PreprocessorDefinitions>
_CRT_SECURE_NO_WARNINGS;FD_SETSIZE=1024;ZMQ_USE_SELECT;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-openpgm)' == 'true'"
>
ZMQ_HAVE_OPENPGM;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-sodium)' == 'true'"
>
HAVE_LIBSODIUM;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(Option-gssapi)' == 'true'"
>
HAVE_LIBGSSAPI_KRB5;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(ConfigurationType)' == 'StaticLibrary'"
>
ZMQ_STATIC;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<PreprocessorDefinitions
Condition=
"'$(ConfigurationType)' == 'DynamicLibrary'"
>
DLL_EXPORT;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
</ClCompile>
...
...
@@ -65,6 +66,7 @@
<Target
Name=
"OptionInfo"
BeforeTargets=
"PrepareForBuild"
>
<Message
Text=
"Option-openpgm : $(Option-openpgm)"
Importance=
"high"
/>
<Message
Text=
"Option-sodium : $(Option-sodium)"
Importance=
"high"
/>
<Message
Text=
"Option-gssapi : $(Option-gssapi)"
Importance=
"high"
/>
</Target>
<Target
Name=
"LinkageInfo"
BeforeTargets=
"PrepareForBuild"
>
...
...
builds/msvc/vs2013/libzmq/libzmq.xml
View file @
033040f7
...
...
@@ -4,6 +4,7 @@
<Rule.Categories>
<Category
Name=
"openpgm"
DisplayName=
"openpgm"
/>
<Category
Name=
"sodium"
DisplayName=
"sodium"
/>
<Category
Name=
"gssapi"
DisplayName=
"gssapi"
/>
</Rule.Categories>
<Rule.DataSource>
<DataSource
Persistence=
"ProjectFile"
ItemType=
""
/>
...
...
@@ -16,5 +17,9 @@
<EnumValue
Name=
""
DisplayName=
"No"
/>
<EnumValue
Name=
"true"
DisplayName=
"Yes"
/>
</EnumProperty>
<EnumProperty
Name=
"Option-gssapi"
DisplayName=
"Enable GSS API"
Description=
"Enable GSS API build option"
Category=
"gssapi"
>
<EnumValue
Name=
""
DisplayName=
"No"
/>
<EnumValue
Name=
"true"
DisplayName=
"Yes"
/>
</EnumProperty>
</Rule>
</ProjectSchemaDefinitions>
\ No newline at end of file
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