mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 01:26:58 +00:00
add --enable-64 configure flag to build 64 bit with suncc
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6297 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
@@ -27,8 +27,12 @@ typedef double va_double;
|
||||
#if VA_LIST_IS_ARRAY
|
||||
#define VA_LIST_COPY(dest,src) memcpy((dest), (src), sizeof(va_list))
|
||||
#else
|
||||
#if __sun
|
||||
#define VA_LIST_COPY(dest,src) (*(dest) = *(src))
|
||||
#else
|
||||
#define VA_LIST_COPY(dest,src) ((dest) = (src))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/*=========================================================================
|
||||
** Creating XML-RPC values.
|
||||
|
Reference in New Issue
Block a user