GNOME Bugzilla – Bug 160052
Undefined stpcpy causes segfault on IA64
Last modified: 2005-01-09 19:34:53 UTC
On IA64, an the compiler assumes that an function without a prototype returns a 32 bit integer. This means if the function actually returns a pointer (64 bits), the top bits are disregarded. The imported version of neon uses stpcpy(), but stpcpy() requires _GNU_SOURCE to be defined. Please define it, possibly as per the included patch. Thanks, -i
Created attachment 34348 [details] [review] define _GNU_SOURCE all the time
*** Bug 163285 has been marked as a duplicate of this bug. ***
Created attachment 35744 [details] [review] Defines _GNU_SOURCE globally. Patch I am going to commit to HEAD.