[Ekiga-devel-list] Compilation errors in ekiga given from opal



Hi,

Snapshots are back... Trying to compile ekiga, I receive an error given because of http://opalvoip.svn.sourceforge.net/viewvc/opalvoip/opal/trunk/src/sip/sipep.cxx?r1=21186&r2=21211
(look for first occurrence of the word register for the change)

Here is a patch fixing this (it seems that the account with the error is returned in aor2 param, so I use this one).

There is a second error which appears, this time I do not know how to cope with it:

[...] .deps/sip-endpoint.Tpo -c -o sip-endpoint.o `test -f 'endpoints/sip-endpoint.cpp' || echo './'`endpoints/sip-endpoint.cpp endpoints/sip-endpoint.cpp: In member function ‘SIPURL Opal::Sip::EndPoint::GetRegisteredPartyName(const SIPURL&)’: endpoints/sip-endpoint.cpp:1045: error: ‘class SIPHandler’ has no member named ‘GetTargetAddress’

--
Eugen
--- ekiga/src/endpoints/sip-endpoint.cpp.orig	2008-10-04 20:03:44.000000000 +0200
+++ ekiga/src/endpoints/sip-endpoint.cpp	2008-10-05 19:51:32.000000000 +0200
@@ -609,8 +609,9 @@
   params.m_minRetryTime = 0;
   params.m_maxRetryTime = 0;
 
-  if (!SIPEndPoint::Register (params))
-    OnRegistrationFailed (aor.str (), SIP_PDU::MaxStatusCode, account.is_enabled ());
+  PString aor2;
+  if (!SIPEndPoint::Register (params, aor2))
+    OnRegistrationFailed (aor2, SIP_PDU::MaxStatusCode, account.is_enabled ());
 }
 
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]