Index: ossp-pkg/cfg/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/cfg/ChangeLog,v rcsdiff -q -kk '-r1.43' '-r1.44' -u '/v/ossp/cvs/ossp-pkg/cfg/ChangeLog,v' 2>/dev/null --- ChangeLog 2006/08/10 19:32:56 1.43 +++ ChangeLog 2007/10/12 21:02:47 1.44 @@ -10,6 +10,9 @@ Changes between 0.9.10 and 0.9.11 (03-Oct-2005 to 10-Aug-2006): + *) Fix __VA_COPY_USE_{CSP,CPP} fallback macros for va_copy. + [Mark A. Lindner ] + *) Replace "return 0" with the official "yyterminate()" in cfg_syn_scan.l and fix quotation parsing by replacing two "yytext[1]" with the intended "yytext[0]". Index: ossp-pkg/cfg/THANKS RCS File: /v/ossp/cvs/ossp-pkg/cfg/THANKS,v rcsdiff -q -kk '-r1.5' '-r1.6' -u '/v/ossp/cvs/ossp-pkg/cfg/THANKS,v' 2>/dev/null --- THANKS 2006/08/10 19:35:56 1.5 +++ THANKS 2007/10/12 21:02:48 1.6 @@ -18,6 +18,8 @@ Credit has to be given to the following people who contributed ideas, bugfixes, hints, gave platform feedback, etc. (in alphabetical order): + o Mark A. Lindner o Thomas Lotterer o Michael van Elst + Index: ossp-pkg/cfg/aclocal.m4 RCS File: /v/ossp/cvs/ossp-pkg/cfg/aclocal.m4,v rcsdiff -q -kk '-r1.8' '-r1.9' -u '/v/ossp/cvs/ossp-pkg/cfg/aclocal.m4,v' 2>/dev/null --- aclocal.m4 2006/08/10 19:35:56 1.8 +++ aclocal.m4 2007/10/12 21:02:48 1.9 @@ -384,9 +384,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