Skip to content

Commit

Permalink
Update build to allow for tracredir plugin build
Browse files Browse the repository at this point in the history
  • Loading branch information
Beirdo committed Mar 28, 2012
1 parent 5de3f97 commit 26186e0
Show file tree
Hide file tree
Showing 4 changed files with 3,963 additions and 1,962 deletions.
2 changes: 1 addition & 1 deletion Makefile.in
Expand Up @@ -114,7 +114,6 @@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PERL = @PERL@
Expand All @@ -128,6 +127,7 @@ PLUGIN_PERL = @PLUGIN_PERL@
PLUGIN_RSSFEED = @PLUGIN_RSSFEED@
PLUGIN_SVNGIT = @PLUGIN_SVNGIT@
PLUGIN_TRAC = @PLUGIN_TRAC@
PLUGIN_TRACREDIR = @PLUGIN_TRACREDIR@
PLUGIN_TROUT = @PLUGIN_TROUT@
PLUGIN_URL = @PLUGIN_URL@
SET_MAKE = @SET_MAKE@
Expand Down
7 changes: 6 additions & 1 deletion bot/src/plugins/Makefile.in
Expand Up @@ -89,7 +89,7 @@ endif
PLUGIN_TRAC = @PLUGIN_TRAC@
ifeq (${PLUGIN_TRAC},yes)
SRCS += trac.c
CFLAGS_trac = -I/usr/include/subversion-1 -I/usr/include/apr-1.0
CFLAGS_trac = -I/usr/include/subversion-1 -I/usr/include/apr-1
CFLAGS_trac += $(shell PKG_CONFIG_PATH=${PKGCONFIGPATH} pkg-config --cflags nxml)
CFLAGS_trac += $(shell PKG_CONFIG_PATH=${PKGCONFIGPATH} pkg-config --cflags mrss)
CFLAGS_trac += $(shell ${CURLCFG} --cflags)
Expand All @@ -99,6 +99,11 @@ ifeq (${PLUGIN_TRAC},yes)
DLLIBS_trac += $(shell ${CURLCFG} --libs)
endif

PLUGIN_TRACREDIR = @PLUGIN_TRACREDIR@
ifeq (${PLUGIN_TRACREDIR},yes)
SRCS += tracredir.c
endif

PLUGIN_TROUT = @PLUGIN_TROUT@
ifeq (${PLUGIN_TROUT},yes)
SRCS += trout.c
Expand Down

0 comments on commit 26186e0

Please sign in to comment.