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:
Michael Jerris
2007-11-16 04:26:00 +00:00
parent e04965cd71
commit 7adaab24f2
5 changed files with 47 additions and 3 deletions

View File

@@ -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.