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
a460e5ab
Commit
a460e5ab
authored
Feb 11, 2016
by
Constantin Rack
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1793 from hintjens/master
parents
8e40e67d
e65367ea
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
14 deletions
+15
-14
acinclude.m4
acinclude.m4
+4
-4
configure.ac
configure.ac
+11
-10
No files found.
acinclude.m4
View file @
a460e5ab
...
...
@@ -92,8 +92,8 @@ AC_DEFUN([LIBZMQ_CHECK_DOC_BUILD], [{
# Man pages are built/installed if asciidoc and xmlto are present
# --with-docs=no overrides this
AC_ARG_WITH([docs],
AS_HELP_STRING([--with-docs],
[
Build and install man pages [default=yes
]]),
AS_HELP_STRING([--with
out
-docs],
[
Don't build and install man pages [default=build
]]),
[with_docs=$withval])
if test "x$with_docs" = "xno"; then
...
...
@@ -279,7 +279,7 @@ AC_DEFUN([LIBZMQ_CHECK_ENABLE_DEBUG], [{
# This flag is checked also in
AC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug],
[
Enable debugging information [default=no
]])])
[
enable debugging information [default=disabled
]])])
AC_MSG_CHECKING(whether to enable debugging information)
...
...
@@ -330,7 +330,7 @@ AC_DEFUN([LIBZMQ_WITH_GCOV], [{
AC_REQUIRE([LIBZMQ_CHECK_COMPILERS])
AC_ARG_WITH(gcov, [AS_HELP_STRING([--with-gcov=yes/no],
[
W
ith GCC Code Coverage reporting.])],
[
w
ith GCC Code Coverage reporting.])],
[ZMQ_GCOV="$withval"])
AC_MSG_CHECKING(whether to enable code coverage)
...
...
configure.ac
View file @
a460e5ab
...
...
@@ -53,9 +53,9 @@ PKG_PROG_PKG_CONFIG
m4_pattern_forbid([^PKG_[A-Z_]+$], [missing some pkg-config macros (pkg-config package)])
# Libtool configuration for different targets. See acinclude.m4
AC_ARG_VAR([XMLTO], [
P
ath to xmlto command])
AC_ARG_VAR([XMLTO], [
p
ath to xmlto command])
AC_PATH_PROG([XMLTO], [xmlto])
AC_ARG_VAR([ASCIIDOC], [
P
ath to asciidoc command])
AC_ARG_VAR([ASCIIDOC], [
p
ath to asciidoc command])
AC_PATH_PROG([ASCIIDOC], [asciidoc])
LIBZMQ_CONFIG_LIBTOOL
AC_LIBTOOL_WIN32_DLL
...
...
@@ -103,7 +103,7 @@ AC_MSG_RESULT([$libzmq_tipc_support])
AC_ARG_WITH([relaxed],
[AS_HELP_STRING([--with-relaxed],
[
S
witch off pedantic compiler])],
[
s
witch off pedantic compiler])],
[zmq_relaxed="yes"],
[])
...
...
@@ -115,7 +115,7 @@ fi
AC_ARG_WITH([militant],
[AS_HELP_STRING([--with-militant],
[
E
nable militant API assertions])],
[
e
nable militant API assertions])],
[zmq_militant="yes"],
[])
...
...
@@ -347,19 +347,19 @@ AC_CHECK_HEADERS(sys/uio.h, [AC_DEFINE(ZMQ_HAVE_UIO, 1, [Have uio.h header.])])
# Force not to use eventfd
AC_ARG_ENABLE([eventfd],
[AS_HELP_STRING([--disable-eventfd], [disable eventfd [default=
no
]])],
[AS_HELP_STRING([--disable-eventfd], [disable eventfd [default=
enabled
]])],
[zmq_enable_eventfd=$enableval],
[zmq_enable_eventfd=yes])
if test "x$zmq_enable_eventfd" = "xyes"; then
# Check if we have eventfd.h header file.
AC_CHECK_HEADERS(sys/eventfd.h,
[AC_DEFINE(ZMQ_HAVE_EVENTFD, 1, [Have eventfd extension
.
])])
[AC_DEFINE(ZMQ_HAVE_EVENTFD, 1, [Have eventfd extension])])
fi
# Conditionally build performance measurement tools
AC_ARG_ENABLE([perf],
[AS_HELP_STRING([--
enable-perf], [Build performance measurement tools [default=yes].
])],
[AS_HELP_STRING([--
disable-perf], [don't build performance measurement tools [default=build]
])],
[zmq_enable_perf=$enableval],
[zmq_enable_perf=yes])
...
...
@@ -367,7 +367,7 @@ AM_CONDITIONAL(ENABLE_PERF, test "x$zmq_enable_perf" = "xyes")
# Conditionally build curve key generation tool
AC_ARG_ENABLE([curve-keygen],
[AS_HELP_STRING([--
enable-curve-keygen], [Build curve key-generation tool [default=yes].
])],
[AS_HELP_STRING([--
disable-curve-keygen], [don't build curve-keygen tool [default=build]
])],
[zmq_enable_curve_keygen=$enableval],
[zmq_enable_curve_keygen=yes])
...
...
@@ -424,7 +424,7 @@ fi
# To disable curve, use --disable-curve
AC_ARG_WITH([libsodium],
AS_HELP_STRING([--with-libsodium], [
U
se libsodium instead of built-in tweetnacl [default=no]]))
AS_HELP_STRING([--with-libsodium], [
u
se libsodium instead of built-in tweetnacl [default=no]]))
AS_IF([test "x$with_libsodium" = "xyes"], [
PKG_CHECK_MODULES([sodium], [libsodium], [libsodium_found=yes], [
...
...
@@ -433,11 +433,12 @@ AS_IF([test "x$with_libsodium" = "xyes"], [
])
AC_ARG_ENABLE([curve],
AS_HELP_STRING([--disable-curve], [
D
isable CURVE security [default=no]]))
AS_HELP_STRING([--disable-curve], [
d
isable CURVE security [default=no]]))
if test "x$enable_curve" == "xno"; then
curve_library=""
AC_MSG_NOTICE([CURVE security is disabled])
AM_CONDITIONAL(ENABLE_CURVE_KEYGEN, 0)
elif test "x$with_libsodium" == "xyes"; then
AC_MSG_NOTICE([Using libsodium for CURVE security])
...
...
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