Skip to content
Snippets Groups Projects
Commit 506d1eae authored by yanmorin's avatar yanmorin
Browse files

Add 000 support
Remove official/Makefile from the configure
parent cdac1700
No related branches found
No related tags found
No related merge requests found
...@@ -33,6 +33,15 @@ Dependencies build instructions: ...@@ -33,6 +33,15 @@ Dependencies build instructions:
./configure [option] ./configure [option]
make make
make install make install
6/ If you want the new gui
use: ./configure --enable-newgui
and do
cd src/gui/official
QTDIR=/usr/lib/qt4 qmake4 sflphone.pro
ln -s ../../../utilspp
QTDIR=/usr/lib/qt4 make
How to compile SFLphone ? How to compile SFLphone ?
......
...@@ -196,7 +196,6 @@ src/audio/pacpp/source/portaudiocpp/Makefile \ ...@@ -196,7 +196,6 @@ src/audio/pacpp/source/portaudiocpp/Makefile \
src/config/Makefile \ src/config/Makefile \
src/gui/Makefile \ src/gui/Makefile \
src/gui/qt/Makefile \ src/gui/qt/Makefile \
src/gui/official/Makefile \
src/gui/server/Makefile \ src/gui/server/Makefile \
src/zeroconf/Makefile \ src/zeroconf/Makefile \
utilspp/Makefile \ utilspp/Makefile \
......
...@@ -17,6 +17,7 @@ PhoneLineManagerImpl::PhoneLineManagerImpl() ...@@ -17,6 +17,7 @@ PhoneLineManagerImpl::PhoneLineManagerImpl()
, mCurrentLine(NULL) , mCurrentLine(NULL)
, mIsInitialized(false) , mIsInitialized(false)
{ {
EventFactory::instance().registerEvent< CallRelatedEvent >("000");
EventFactory::instance().registerEvent< IncommingEvent >("001"); EventFactory::instance().registerEvent< IncommingEvent >("001");
EventFactory::instance().registerEvent< HangupEvent >("002"); EventFactory::instance().registerEvent< HangupEvent >("002");
EventFactory::instance().registerEvent< TryingStatus >("110"); EventFactory::instance().registerEvent< TryingStatus >("110");
......
...@@ -115,9 +115,9 @@ ManagerImpl::~ManagerImpl (void) ...@@ -115,9 +115,9 @@ ManagerImpl::~ManagerImpl (void)
unloadAudioCodec(); unloadAudioCodec();
delete _error;
delete _tone;
delete _audiodriverPA; delete _audiodriverPA;
delete _tone;
delete _error;
#ifdef USE_ZEROCONF #ifdef USE_ZEROCONF
delete _DNSService; delete _DNSService;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment