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
26b0aea2
Commit
26b0aea2
authored
Mar 03, 2010
by
Martin Lucina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32 build fixes
parent
352da8ae
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
10 deletions
+14
-10
configure.in
configure.in
+4
-4
Makefile.am
src/Makefile.am
+4
-0
ip.hpp
src/ip.hpp
+5
-5
uuid.hpp
src/uuid.hpp
+1
-1
No files found.
configure.in
View file @
26b0aea2
...
...
@@ -198,10 +198,10 @@ case "${host_os}" in
AC_CHECK_HEADERS(windows.h)
AC_CHECK_LIB(ws2_32, main, ,
[AC_MSG_ERROR([cannot link with ws2_32.dll.])])
AC_CHECK_LIB(
R
pcrt4, main, ,
[AC_MSG_ERROR([cannot link with
R
pcrt4.dll.])])
AC_CHECK_LIB(
I
phlpapi, main, ,
[AC_MSG_ERROR([cannot link with
I
phlpapi.dll.])])
AC_CHECK_LIB(
r
pcrt4, main, ,
[AC_MSG_ERROR([cannot link with
r
pcrt4.dll.])])
AC_CHECK_LIB(
i
phlpapi, main, ,
[AC_MSG_ERROR([cannot link with
i
phlpapi.dll.])])
CFLAGS="${CFLAGS} -std=c99"
on_mingw32="yes"
install_man="no"
...
...
src/Makefile.am
View file @
26b0aea2
...
...
@@ -179,7 +179,11 @@ libzmq_la_SOURCES = app_thread.hpp \
zmq_init.cpp
\
zmq_listener.cpp
if
ON_MINGW
libzmq_la_LDFLAGS
=
-no-undefined
-version-info
@LTVER@ @LIBZMQ_EXTRA_LDFLAGS@
else
libzmq_la_LDFLAGS
=
-version-info
@LTVER@ @LIBZMQ_EXTRA_LDFLAGS@
endif
if
BUILD_PGM
...
...
src/ip.hpp
View file @
26b0aea2
...
...
@@ -30,6 +30,11 @@
#include <arpa/inet.h>
#include <netinet/in.h>
#include <netdb.h>
#endif
#if !defined ZMQ_HAVE_WINDOWS && !defined ZMQ_HAVE_OPENVMS
#include <sys/un.h>
#endif
// Some platforms (notably Darwin/OSX and NetBSD) do not define all AI_
// flags for getaddrinfo(). This can be worked around safely by defining
...
...
@@ -40,11 +45,6 @@
#ifndef AI_NUMERICSERV
#define AI_NUMERICSERV 0
#endif
#endif
#if !defined ZMQ_HAVE_WINDOWS && !defined ZMQ_HAVE_OPENVMS
#include <sys/un.h>
#endif
namespace
zmq
{
...
...
src/uuid.hpp
View file @
26b0aea2
...
...
@@ -29,7 +29,7 @@
defined ZMQ_HAVE_OSX || defined ZMQ_HAVE_CYGWIN
#include <uuid/uuid.h>
#elif defined ZMQ_HAVE_WINDOWS
#include <
R
pc.h>
#include <
r
pc.h>
#endif
namespace
zmq
...
...
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