Source: harfbuzz
Version: 0.9.14-1
Severity: important
Tags: patch upstream

Hi,

In output of nm utility, symbols are marked with 'D' on powerpc64-linux instead 
of 'T',
because powerpc64-linux uses "64-bit PowerPC ELF ABI", 
in which function descriptors are found in data section.
http://refspecs.linuxfoundation.org/ELF/ppc64/PPC-elf64abi.html

Here is a patch attached.

Buildlogs:
http://buildd.debian-ports.org/status/package.php?p=harfbuzz&suite=experimental

Regards,
-- 
Hiroyuki Yamamoto
A75D B285 7050 4BF9 AEDA  91AC 3A10 59C6 5203 04DC
diff -Nurd harfbuzz-0.9.14.orig/src/check-symbols.sh harfbuzz-0.9.14/src/check-symbols.sh
--- harfbuzz-0.9.14.orig/src/check-symbols.sh	2013-03-19 18:47:13.000000000 +0900
+++ harfbuzz-0.9.14/src/check-symbols.sh	2013-04-04 16:20:58.000000000 +0900
@@ -21,7 +21,7 @@
 	lib=`echo "$def" | sed 's/[.]def$//;s@.*/@@'`
 	so=.libs/lib${lib}.so
 
-	EXPORTED_SYMBOLS="`nm "$so" | grep ' [BCDGINRSTVW] ' | grep -v ' T _fini\>\| T _init\>\| _fdata\>\| _ftext\>\| __bss_start\>\| __bss_start__\>\| __bss_end__\>\| _edata\>\| _end\>\| _bss_end__\>\| __end__\>' | cut -d' ' -f3`"
+	EXPORTED_SYMBOLS="`nm "$so" | grep ' [BCDGINRSTVW] ' | grep -v ' T\|D _fini\>\| T\|D _init\>\| _fdata\>\| _ftext\>\| __bss_start\>\| __bss_start__\>\| __bss_end__\>\| _edata\>\| _end\>\| _bss_end__\>\| __end__\>' | cut -d' ' -f3`"
 
 	if test -f "$so"; then
 

Reply via email to