Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
trackrdrd
Project
Project
Details
Activity
Releases
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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
trackrdrd
Commits
478b82d4
Commit
478b82d4
authored
Apr 26, 2015
by
Geoff Simmons
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add --enable configure options to optionally build the MQ plugins
parent
56cd6b46
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
Makefile.am
Makefile.am
+9
-2
configure.ac
configure.ac
+11
-0
No files found.
Makefile.am
View file @
478b82d4
ACLOCAL_AMFLAGS
=
-I
m4
SUBDIRS
=
src src/test src/mq/activemq src/mq/activemq/test
\
src/mq/kafka src/mq/kafka/test
if
AMQ_OPT
MAYBE_AMQ
=
src/mq/activemq src/mq/activemq/test
endif
if
KAFKA_OPT
MAYBE_KAFKA
=
src/mq/kafka src/mq/kafka/test
endif
SUBDIRS
=
src src/test
$(MAYBE_AMQ)
$(MAYBE_KAFKA)
if
HAVE_RST2MAN
dist_man_MANS
=
trackrdrd.3
...
...
configure.ac
View file @
478b82d4
...
...
@@ -78,6 +78,17 @@ PKG_CHECK_MODULES([AMQ], [activemq-cpp])
PKG_CHECK_MODULES([APR], [apr-1])
PKG_CHECK_MODULES([APU], [apr-util-1])
# optionally choose the MQ plugins to build, by default all
AC_ARG_ENABLE([kafka], [AS_HELP_STRING([--enable-kafka],
[build the Kafka MQ plugin @<:@default=yes@:>@])],
[], [enable_kafka=yes])
AM_CONDITIONAL([KAFKA_OPT], [test "$enable_kafka" = yes])
AC_ARG_ENABLE([activemq], [AS_HELP_STRING([--enable-activemq],
[build the ActiveMQ MQ plugin @<:@default=yes@:>@])],
[], [enable_activemq=yes])
AM_CONDITIONAL([AMQ_OPT], [test "$enable_activemq" = yes])
# From Varnish configure.ac
# Now that we're done using the compiler to look for functions and
# libraries, set CFLAGS to what we want them to be for our own code
...
...
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