From: Luc B. <luc...@ma...> - 2009-05-22 15:50:59
|
On 22 May 2009, at 16:33, Julian Seward wrote: >> Is patching is_systemish_library_name the only work around then? > > Well, it's here, it's now, it's zero effort, and it should work. True enough. It works like a charm. I added /sw/ to content Fink users too. *** coregrind/m_debuginfo/readmacho.c (10109) 2009-05-22 17:48:16 +0200 --- coregrind/m_debuginfo/readmacho.c (working version) 2009-05-22 17:48:16 +0200 *************** *** 647,653 **** --- 647,655 ---- { vg_assert(name); if (0 == VG_(strncasecmp)(name, "/usr/", 5) + || 0 == VG_(strncasecmp)(name, "/opt/", 5) + || 0 == VG_(strncasecmp)(name, "/sw/", 4) || 0 == VG_(strncasecmp)(name, "/bin/", 5) || 0 == VG_(strncasecmp)(name, "/sbin/", 6) || 0 == VG_(strncasecmp)(name, "/System/", 8) Thanks a lot. Luc |