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
1c33941b
Commit
1c33941b
authored
Apr 15, 2010
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of git@github.com:sustrik/zeromq2
parents
ea18d30c
370cde09
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
27 additions
and
16 deletions
+27
-16
c_local_lat.vcproj
builds/msvc/c_local_lat/c_local_lat.vcproj
+1
-1
c_local_thr.vcproj
builds/msvc/c_local_thr/c_local_thr.vcproj
+1
-1
c_remote_lat.vcproj
builds/msvc/c_remote_lat/c_remote_lat.vcproj
+1
-1
c_remote_thr.vcproj
builds/msvc/c_remote_thr/c_remote_thr.vcproj
+1
-1
libzmq.vcproj
builds/msvc/libzmq/libzmq.vcproj
+2
-2
configure.in
configure.in
+11
-2
xmlParser.cpp
foreign/xmlParser/xmlParser.cpp
+1
-1
zmq.h
include/zmq.h
+8
-6
Makefile.am
src/Makefile.am
+1
-1
No files found.
builds/msvc/c_local_lat/c_local_lat.vcproj
View file @
1c33941b
...
@@ -166,7 +166,7 @@
...
@@ -166,7 +166,7 @@
UniqueIdentifier=
"{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
UniqueIdentifier=
"{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
>
>
<File
<File
RelativePath=
"..\..\..\perf\local_lat.c"
RelativePath=
"..\..\..\perf\local_lat.c
pp
"
>
>
</File>
</File>
</Filter>
</Filter>
...
...
builds/msvc/c_local_thr/c_local_thr.vcproj
View file @
1c33941b
...
@@ -166,7 +166,7 @@
...
@@ -166,7 +166,7 @@
UniqueIdentifier=
"{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
UniqueIdentifier=
"{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
>
>
<File
<File
RelativePath=
"..\..\..\perf\local_thr.c"
RelativePath=
"..\..\..\perf\local_thr.c
pp
"
>
>
</File>
</File>
</Filter>
</Filter>
...
...
builds/msvc/c_remote_lat/c_remote_lat.vcproj
View file @
1c33941b
...
@@ -166,7 +166,7 @@
...
@@ -166,7 +166,7 @@
UniqueIdentifier=
"{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
UniqueIdentifier=
"{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
>
>
<File
<File
RelativePath=
"..\..\..\perf\remote_lat.c"
RelativePath=
"..\..\..\perf\remote_lat.c
pp
"
>
>
</File>
</File>
</Filter>
</Filter>
...
...
builds/msvc/c_remote_thr/c_remote_thr.vcproj
View file @
1c33941b
...
@@ -166,7 +166,7 @@
...
@@ -166,7 +166,7 @@
UniqueIdentifier=
"{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
UniqueIdentifier=
"{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
>
>
<File
<File
RelativePath=
"..\..\..\perf\remote_thr.c"
RelativePath=
"..\..\..\perf\remote_thr.c
pp
"
>
>
</File>
</File>
</Filter>
</Filter>
...
...
builds/msvc/libzmq/libzmq.vcproj
View file @
1c33941b
...
@@ -40,7 +40,7 @@
...
@@ -40,7 +40,7 @@
/>
/>
<Tool
<Tool
Name=
"VCCLCompilerTool"
Name=
"VCCLCompilerTool"
AdditionalOptions=
"-D
ZMQ_BUILDING_LIBZMQ_WITH_MSVC
"
AdditionalOptions=
"-D
DLL_EXPORT
"
Optimization=
"0"
Optimization=
"0"
MinimalRebuild=
"true"
MinimalRebuild=
"true"
BasicRuntimeChecks=
"3"
BasicRuntimeChecks=
"3"
...
@@ -112,7 +112,7 @@
...
@@ -112,7 +112,7 @@
/>
/>
<Tool
<Tool
Name=
"VCCLCompilerTool"
Name=
"VCCLCompilerTool"
AdditionalOptions=
"-D
ZMQ_BUILDING_LIBZMQ_WITH_MSVC
"
AdditionalOptions=
"-D
DLL_EXPORT
"
Optimization=
"2"
Optimization=
"2"
EnableIntrinsicFunctions=
"true"
EnableIntrinsicFunctions=
"true"
RuntimeLibrary=
"2"
RuntimeLibrary=
"2"
...
...
configure.in
View file @
1c33941b
...
@@ -260,8 +260,15 @@ AC_CHECK_HEADERS(ifaddrs.h, [AC_DEFINE(ZMQ_HAVE_IFADDRS, 1, [Have ifaddrs.h head
...
@@ -260,8 +260,15 @@ AC_CHECK_HEADERS(ifaddrs.h, [AC_DEFINE(ZMQ_HAVE_IFADDRS, 1, [Have ifaddrs.h head
# Use c++ in subsequent tests
# Use c++ in subsequent tests
AC_LANG(C++)
AC_LANG(C++)
# Optional stuff
# pkg-config is used if found, and is required for builds with OpenPGM.
AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
# However, we need to provide a way to disable it entirely when the user
# knows what she's doing and it's use is undesirable, such as when
# cross-compiling.
AC_ARG_WITH([pkg-config], [AS_HELP_STRING([--without-pkg-config],
[do not use pkg-config [default=no]])])
if test "x$with_pkg_config" != "xno"; then
AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
fi
# Checks for typedefs, structures, and compiler characteristics.
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_HEADER_STDBOOL
...
@@ -328,6 +335,7 @@ if test "x$with_pgm_ext" != "xno"; then
...
@@ -328,6 +335,7 @@ if test "x$with_pgm_ext" != "xno"; then
AC_MSG_RESULT([yes])
AC_MSG_RESULT([yes])
# Test if we have pkg-config
# Test if we have pkg-config
if test "x$with_pkg_config" != "xno"; then
if test "x$have_pkg_config" != "xyes"; then
if test "x$have_pkg_config" != "xyes"; then
AC_MSG_ERROR([the --with-pgm option requires that pkg-config be installed.]);
AC_MSG_ERROR([the --with-pgm option requires that pkg-config be installed.]);
fi
fi
...
@@ -336,6 +344,7 @@ if test "x$with_pgm_ext" != "xno"; then
...
@@ -336,6 +344,7 @@ if test "x$with_pgm_ext" != "xno"; then
PKG_CHECK_MODULES([GLIB], [glib-2.0 gthread-2.0])
PKG_CHECK_MODULES([GLIB], [glib-2.0 gthread-2.0])
LIBZMQ_EXTRA_CXXFLAGS="${LIBZMQ_EXTRA_CXXFLAGS} ${GLIB_CFLAGS} "
LIBZMQ_EXTRA_CXXFLAGS="${LIBZMQ_EXTRA_CXXFLAGS} ${GLIB_CFLAGS} "
LIBZMQ_EXTRA_LDFLAGS="${LIBZMQ_EXTRA_LDFLAGS} ${GLIB_LIBS} "
LIBZMQ_EXTRA_LDFLAGS="${LIBZMQ_EXTRA_LDFLAGS} ${GLIB_LIBS} "
fi
# Gzip, Perl and Python are required duing PGM build
# Gzip, Perl and Python are required duing PGM build
AC_CHECK_PROG(have_gzip, gzip, yes, no)
AC_CHECK_PROG(have_gzip, gzip, yes, no)
...
...
foreign/xmlParser/xmlParser.cpp
View file @
1c33941b
...
@@ -94,7 +94,7 @@
...
@@ -94,7 +94,7 @@
//#include <crtdbg.h>
//#include <crtdbg.h>
//#endif
//#endif
#define WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#include <
W
indows.h> // to have IsTextUnicode, MultiByteToWideChar, WideCharToMultiByte to handle unicode files
#include <
w
indows.h> // to have IsTextUnicode, MultiByteToWideChar, WideCharToMultiByte to handle unicode files
// to have "MessageBoxA" to display error messages for openFilHelper
// to have "MessageBoxA" to display error messages for openFilHelper
#endif
#endif
...
...
include/zmq.h
View file @
1c33941b
...
@@ -30,13 +30,15 @@ extern "C" {
...
@@ -30,13 +30,15 @@ extern "C" {
#include "winsock2.h"
#include "winsock2.h"
#endif
#endif
/* Microsoft Visual Studio uses non-standard way to export/import symbols. */
/* Win32 needs special handling for DLL exports */
#if defined ZMQ_BUILDING_LIBZMQ_WITH_MSVC
#if defined _WIN32
#define ZMQ_EXPORT __declspec(dllexport)
# if defined DLL_EXPORT
#elif defined _MSC_VER
# define ZMQ_EXPORT __declspec(dllexport)
#define ZMQ_EXPORT __declspec(dllimport)
# else
# define ZMQ_EXPORT __declspec(dllimport)
# endif
#else
#else
#define ZMQ_EXPORT
#
define ZMQ_EXPORT
#endif
#endif
/******************************************************************************/
/******************************************************************************/
...
...
src/Makefile.am
View file @
1c33941b
...
@@ -176,7 +176,7 @@ libzmq_la_SOURCES = app_thread.hpp \
...
@@ -176,7 +176,7 @@ libzmq_la_SOURCES = app_thread.hpp \
zmq_listener.cpp
zmq_listener.cpp
if
ON_MINGW
if
ON_MINGW
libzmq_la_LDFLAGS
=
-no-undefined
-version-info
@LTVER@ @LIBZMQ_EXTRA_LDFLAGS@
libzmq_la_LDFLAGS
=
-no-undefined
-
avoid-version
-
version-info
@LTVER@ @LIBZMQ_EXTRA_LDFLAGS@
else
else
libzmq_la_LDFLAGS
=
-version-info
@LTVER@ @LIBZMQ_EXTRA_LDFLAGS@
libzmq_la_LDFLAGS
=
-version-info
@LTVER@ @LIBZMQ_EXTRA_LDFLAGS@
endif
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