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
62535916
Commit
62535916
authored
Nov 13, 2018
by
Luca Boccassi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: radix tree never used in autotools builds
Solution: add a switch and a default to autoconf
parent
25e069d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
configure.ac
configure.ac
+15
-0
No files found.
configure.ac
View file @
62535916
...
...
@@ -819,6 +819,21 @@ if test "x$enable_libunwind" != "xno"; then
])
fi
AC_ARG_ENABLE([radix-tree],
AS_HELP_STRING([--enable-radix-tree],
[Use radix tree implementation to manage subscriptions [default=DRAFT]]),
[radix_tree=$enableval],
[radix_tree=$enable_drafts])
AM_CONDITIONAL([ENABLE_RADIX_TREE], [test x$radix_tree != xno])
if test "x$radix_tree" = "xyes"; then
AC_MSG_NOTICE([Using radix tree implementation to manage subscriptions])
AC_DEFINE(ZMQ_USE_RADIX_TREE, 1, [Use radix tree implementation to manage subscriptions])
else
AC_MSG_NOTICE([Using mtree implementation to manage subscriptions])
fi
# See if clang-format is in PATH; the result unblocks the relevant recipes
WITH_CLANG_FORMAT=""
AS_IF([test x"$CLANG_FORMAT" = x],
...
...
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