Hi,
We found some problems to link the source code under Visual Studio 2008
due to a limitation in pa_debugprint.c
The lines:
#if (_MSC_VER) && (_MSC_VER <= 1400)
#define VSNPRINTF _vsnprintf
should be replaced by:
#if (_MSC_VER) && (_MSC_VER <= 1500)
#define VSNPRINTF _vsnprintf
Would it be possible to change this in the trunk?
How can I create a ticket in the trac?
Thanks a lot,
javier
On Wed, Sep 10, 2008 at 9:08 AM, "Javier Rodríguez (Genaker)" <
javier.rodriguez@genaker.net> wrote:
Hi,
We found some problems to link the source code under Visual Studio 2008
due to a limitation in pa_debugprint.c
The lines:
#if (_MSC_VER) && (_MSC_VER <= 1400)
#define VSNPRINTF _vsnprintf
should be replaced by:
#if (_MSC_VER) && (_MSC_VER <= 1500)
#define VSNPRINTF _vsnprintf
Would it be possible to change this in the trunk?
Thanks for the report. Unfortunately we can't change this in pjsip trunk,
since we link the PortAudio sources directly to their SVN (and we don't have
write access to their SVN). Let me see if they have changed this, and if not
then suggest this to them.
I'll be back..
On Wed, Sep 10, 2008 at 6:17 PM, Benny Prijono bennylp@pjsip.org wrote:
Thanks for the report. Unfortunately we can't change this in pjsip trunk,
since we link the PortAudio sources directly to their SVN (and we don't have
write access to their SVN). Let me see if they have changed this, and if not
then suggest this to them.
i think it has been fixed in portaudio svn r1384 and that was 4 month ago
:)
I'll be back..
Visit our blog: http://blog.pjsip.org
pjsip mailing list
pjsip@lists.pjsip.org
http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org
On Wed, Sep 10, 2008 at 11:47 AM, atik atik.khan@gmail.com wrote:
On Wed, Sep 10, 2008 at 6:17 PM, Benny Prijono bennylp@pjsip.org wrote:
Thanks for the report. Unfortunately we can't change this in pjsip trunk,
since we link the PortAudio sources directly to their SVN (and we don't have
write access to their SVN). Let me see if they have changed this, and if not
then suggest this to them.
i think it has been fixed in portaudio svn r1384 and that was 4 month ago
:)
Ah yeah, I think you reported that a while ago. I just added a ticket for
this: http://trac.pjsip.org/repos/ticket/621
thanks
Benny