mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-13 15:50:59 +00:00
vasprintf does not exist in solaris, so adding another ifndef
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11068 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
15d45c0604
commit
e18156535b
@ -315,7 +315,7 @@ int vasprintf(char **ret, const char *format, va_list ap);
|
||||
|
||||
static int esl_vasprintf(char **ret, const char *fmt, va_list ap)
|
||||
{
|
||||
#ifndef WIN32
|
||||
#if !defined(WIN32) && !defined(__sun)
|
||||
return vasprintf(ret, fmt, ap);
|
||||
#else
|
||||
char *buf;
|
||||
|
Loading…
x
Reference in New Issue
Block a user