Commit e819b329 authored by Geoff Simmons's avatar Geoff Simmons

trackrdrd: add pkg-config for apr and apr-utils

parent 02300e03
...@@ -71,6 +71,8 @@ AC_CHECK_FILE([$VARNISHSRC/include/varnishapi.h], ...@@ -71,6 +71,8 @@ AC_CHECK_FILE([$VARNISHSRC/include/varnishapi.h],
) )
PKG_CHECK_MODULES([AMQ], [activemq-cpp]) PKG_CHECK_MODULES([AMQ], [activemq-cpp])
PKG_CHECK_MODULES([APR], [apr-1])
PKG_CHECK_MODULES([APU], [apr-util-1])
# From Varnish configure.ac # From Varnish configure.ac
# Now that we're done using the compiler to look for functions and # Now that we're done using the compiler to look for functions and
......
INCLUDES = -I$(VARNISHSRC)/include -I$(VARNISHSRC) @AMQ_CFLAGS@ INCLUDES = -I$(VARNISHSRC)/include -I$(VARNISHSRC) @AMQ_CFLAGS@ @APR_CFLAGS@ \
@APU_CFLAGS@
bin_PROGRAMS = trackrdrd bin_PROGRAMS = trackrdrd
...@@ -29,7 +30,9 @@ trackrdrd_LDADD = \ ...@@ -29,7 +30,9 @@ trackrdrd_LDADD = \
$(VARNISHSRC)/lib/libvarnishapi/libvarnishapi.la \ $(VARNISHSRC)/lib/libvarnishapi/libvarnishapi.la \
$(VARNISHSRC)/lib/libvarnish/libvarnish.la \ $(VARNISHSRC)/lib/libvarnish/libvarnish.la \
${PTHREAD_LIBS} \ ${PTHREAD_LIBS} \
@AMQ_LIBS@ @AMQ_LIBS@ \
@APR_LIBS@ \
@APU_LIBS@
BUILT_SOURCES = revision.h usage.h BUILT_SOURCES = revision.h usage.h
MAINTAINERCLEANFILES = revision.h usage.h MAINTAINERCLEANFILES = revision.h usage.h
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment