added an option in the pro file for dsdv, as it is compiled when not used

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6956 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2013-12-22 17:10:56 +00:00
parent fd994a546b
commit 1e52c7f22b
2 changed files with 16 additions and 8 deletions

View file

@ -1847,7 +1847,10 @@ RsGRouter *rsGRouter = NULL ;
#include "services/p3banlist.h"
#include "services/p3bwctrl.h"
#ifdef SERVICES_DSDV
#include "services/p3dsdv.h"
#endif
RsControl *createRsControl(NotifyBase &notify)
@ -2472,7 +2475,7 @@ int RsServer::StartupRetroShare()
p3BandwidthControl *mBwCtrl = new p3BandwidthControl(pqih);
pqih -> addService(mBwCtrl);
#ifdef RS_DSDVTEST
#ifdef SERVICES_DSDV
p3Dsdv *mDsdv = new p3Dsdv(mLinkMgr);
pqih -> addService(mDsdv);
rsDsdv = mDsdv;