[asterisk-dev] simple register doesn't work using 1.8.7.1 on armv5tel

S Adrian dexter at d3xt3r01.tk
Wed Oct 26 14:19:41 CDT 2011


> That issue tracker is read-only, so the status there will never change.
> You, instead, need to find the issue within Jira:
> https://issues.asterisk.org/jira/browse/ASTERISK-17310

Yup,

the 2 lines that look like
main/utils.c:#ifdef __sparc__
should be
main/utils.c:#if defined(__sparc__) || defined(__arm__)

include/asterisk/compat.h:#ifdef __sparc__
becomes
include/asterisk/compat.h:#if defined(__sparc__) || defined(__arm__)

include/asterisk/unaligned.h:#elif defined(SOLARIS) && defined(__sparc__)
becomes
include/asterisk/unaligned.h:#elif (defined(SOLARIS) &&
defined(__sparc__)) || defined(__arm__)

each of these 3 files should also include some #define __arm__ 1 at
the top of the file/defines section :)

I just tested these changes and they work ! Now I wonder when will
these changes be implemented if they are known since like, january !



More information about the asterisk-dev mailing list