From: Julian Seward Date: Tue, 14 Feb 2006 21:55:11 +0000 (+0000) Subject: Apparently on SLES9 the dynamic linker is called (soname'd) ld64.so.1. X-Git-Tag: svn/VALGRIND_3_2_0~264 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25ff562b4367065ddc2e8c6d6045d95f37eea1fd;p=thirdparty%2Fvalgrind.git Apparently on SLES9 the dynamic linker is called (soname'd) ld64.so.1. Add a corresponding strcmp redirect. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5650 --- diff --git a/memcheck/mac_replace_strmem.c b/memcheck/mac_replace_strmem.c index ad906dd688..b79b69bd7f 100644 --- a/memcheck/mac_replace_strmem.c +++ b/memcheck/mac_replace_strmem.c @@ -120,6 +120,7 @@ void complain3 ( Char* s, void* dst, const void* src, int n ) #define m_libc_so_star libcZdsoZa // libc.so* #define m_ld_linux_so_2 ldZhlinuxZdsoZd2 // ld-linux.so.2 #define m_ld_linux_x86_64_so_2 ldZhlinuxZhx86Zh64ZdsoZd2 // ld-linux-x86-64.so.2 +#define m_ld64_so_1 ld64ZdsoZd1 // ld64.so.1 #define STRRCHR(soname, fnname) \ @@ -338,6 +339,7 @@ STRNCMP(m_libc_so_star, strncmp) STRCMP(m_libc_so_star, strcmp) STRCMP(m_ld_linux_x86_64_so_2, strcmp) +STRCMP(m_ld64_so_1, strcmp) #define MEMCHR(soname, fnname) \