Re: [reSIProcate] Build problem ....
Hello Raj,
Until someone posts a *real* solution here is a quick fix.
The problem is that the variable "RESIP_DATA_LOCAL_SIZE" is not defined.
If you edit your Makefile.pkg (in the sip/build directory) you can do
the following:
Change:
ifneq ($(RESIP_DATA_LOCAL_SIZE),)
RESIP_DATA_LOCAL_SIZE=128
endif
To:
ifneq ($(RESIP_DATA_LOCAL_SIZE),128) #added the 128 here
RESIP_DATA_LOCAL_SIZE=128
endif
Brian.
On Wed, 2004-07-21 at 19:37, Rajan Verma wrote:
> Hi,
>
> I downloaded the latest code of resiprocate
> using following command:
> svn checkout http://scm.sipfoundary.org/rep/resiprocate/main
>
> to get a fix mentioned in some other email thread regarding
> memory leak issue in resiprocate-0.4.0.
>
> I am getting a build error:
> gmake
> g++ -Wall -fPIC -Wno-deprecated -march=i686 -D_REENTRANT -DHAVE_POPT_H -g
> -O2 -I/sw/include -DRESIP_DATA_LOCAL_SIZE= -I../build/..
> -I../build/../contrib/ares -I/usr/kerberos/include/ -DUSE_SSL -DUSE_ARES -c
> -o obj.debug.Linux.i686/os/BaseException.o os/BaseException.cxx
> In file included from ../resiprocate/os/BaseException.hxx:10,
> from os/BaseException.cxx:4:
> ../resiprocate/os/Data.hxx:162: syntax error before `}' token
> ../resiprocate/os/Data.hxx:162: missing ';' before right brace
> ../resiprocate/os/Data.hxx: In member function `bool resip::Data::empty()
> const':
> ../resiprocate/os/Data.hxx:104: `mSize' undeclared (first use this function)
> ../resiprocate/os/Data.hxx:104: (Each undeclared identifier is reported only
> once for each function it appears in.)
>
>
> Am i giving correct command of svn to get latest SVN head?
> svn checkout http://scm.sipfoundary.org/rep/resiprocate/main
>
> or I have to get the latest code from some branch.
>
> Thanks
> Raj
>
> _______________________________________________
> resiprocate-devel mailing list
> resiprocate-devel@xxxxxxxxxxxxxxxxxxx
> https://list.sipfoundry.org/mailman/listinfo/resiprocate-devel
>