Index: ossp-pkg/uuid/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v rcsdiff -q -kk '-r1.149' '-r1.150' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v' 2>/dev/null --- ChangeLog 2007/10/12 20:34:47 1.149 +++ ChangeLog 2007/10/12 20:57:24 1.150 @@ -12,6 +12,9 @@ For a more brief summary please have a look at the NEWS file. Changes between 1.5.1 and 1.6.0 (31-Jul-2006 to 19-May-2007) + + o Fix __VA_COPY_USE_{CSP,CPP} fallback macros for va_copy. + [Mark A. Lindner ] o PostgreSQL bindings: use SET_VARSIZE() instead of assigning to bytea->v_len under PostgreSQL >= 8.3 Index: ossp-pkg/uuid/aclocal.m4 RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/aclocal.m4,v rcsdiff -q -kk '-r1.3' '-r1.4' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/aclocal.m4,v' 2>/dev/null --- aclocal.m4 2006/08/02 13:11:09 1.3 +++ aclocal.m4 2007/10/12 20:57:24 1.4 @@ -194,9 +194,9 @@ dnl # 6. check for assignment approach (assuming va_list is a pointer) __va_copy_check(ASP, [do { *(d) = *(s); } while (0)]) dnl # 7. check for memory copying approach (assuming va_list is a struct) - __va_copy_check(CPS, [memcpy((void *)&(d), (void *)&(s)), sizeof((s))]) + __va_copy_check(CPS, [memcpy((void *)&(d), (void *)&(s), sizeof((s)))]) dnl # 8. check for memory copying approach (assuming va_list is a pointer) - __va_copy_check(CPP, [memcpy((void *)(d), (void *)(s)), sizeof(*(s))]) + __va_copy_check(CPP, [memcpy((void *)(d), (void *)(s), sizeof(*(s)))]) if test ".$ac_cv_va_copy" = .; then AC_ERROR([no working implementation found]) fi