naota 14/07/05 01:18:42 Added: w3mmee-0.3.2_p24-boehm-gc.patch Log: Add a patch to detect boehm-gc version properly. #514140 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key F8551514)
Revision Changes Path 1.1 www-client/w3mmee/files/w3mmee-0.3.2_p24-boehm-gc.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/w3mmee/files/w3mmee-0.3.2_p24-boehm-gc.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/w3mmee/files/w3mmee-0.3.2_p24-boehm-gc.patch?rev=1.1&content-type=text/plain Index: w3mmee-0.3.2_p24-boehm-gc.patch =================================================================== diff --git a/configure b/configure index 32afb35..3be66fd 100755 --- a/configure +++ b/configure @@ -1503,7 +1503,7 @@ if [ -n "$gclib" -a -n "$gcinclude" ]; then #include <gc.h> main() { - extern unsigned GC_version; + unsigned GC_version = GC_get_version(); printf("%d%02d%03d\n",(GC_version>>16)&0xff,(GC_version>>8)&0xff,GC_version&0xff); } EOF