asterisk/asterisk.patch.proxymwi

Tue, 29 Mar 2011 20:04:34 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 29 Mar 2011 20:04:34 +0200
changeset 334
4a34d7a82eab
child 347
10bd406e1c51
permissions
-rw-r--r--

Rework package yet again, correcting and introducing new buildconf logic:
Conditionally disable bootstrap stage comparison correctly, correct
english grammar, better find system as(1) and ld(1), indotruce detailed
optimization option messages, more completely guess cpu types, allow
profiled bootstrapping without a preinstalled GCC because many other
compilers have long since implemented 64-bit arithmetic, instruct make
to build sequentially (not in sparallel) when building a profiled
bootstrap as GCC online documents recommend, and generally improve
comment blocks.

The single most important correction in this changeset relates to the
GCC changed optimization policy since at least GCC 4.5, in which -march
is always passed and not always correctly guessed. In the case of this
package, allowing GCC to guess the architecture leads to wild build
errors at various subcomponents (zlib, libgcc, libiberty...) and
bootstrap stages. It seems quite platform specific, and the safest
approach to correcting this seems to be explicitly always specifying the
-march argument when bootstrapping GCC. Because the best choice 'native'
is not available when bootstrapping using a foreign (non GCC) compiler,
a guess is made according to rpmmacros l_platform in that case.

It is questionable as to whether these recent optimization changes
on the part of GCC or this package are compatible with each other,
or if either are complete or correct at all. At least applying these
corrections allows this package to build again in most cases test.

michael@311 1 Index: channels/chan_sip.c
michael@311 2 diff -Nau channels/chan_sip.c.orig channels/chan_sip.c
michael@311 3 --- channels/chan_sip.c.orig 2011-01-14 18:32:52.000000000 +0100
michael@311 4 +++ channels/chan_sip.c 2011-03-13 14:34:29.000000000 +0100
michael@311 5 @@ -24267,6 +24267,7 @@
michael@311 6 /* Called with peerl lock, but releases it */
michael@311 7 struct sip_pvt *p;
michael@311 8 int newmsgs = 0, oldmsgs = 0;
michael@311 9 + char *s = NULL;
michael@311 10
michael@311 11 if (ast_test_flag((&peer->flags[1]), SIP_PAGE2_SUBSCRIBEMWIONLY) && !peer->mwipvt)
michael@311 12 return 0;
michael@311 13 @@ -24307,6 +24308,11 @@
michael@311 14 }
michael@311 15 /* Recalculate our side, and recalculate Call ID */
michael@311 16 ast_sip_ouraddrfor(&p->sa, &p->ourip, p);
michael@311 17 + /* Set the username = mailbox and remove the context */
michael@311 18 + ast_string_field_build(p, username, "%s", peer->name);
michael@311 19 + s = strchr(p->username, '@');
michael@311 20 + if (s != NULL)
michael@311 21 + *s = 0;
michael@311 22 build_via(p);
michael@311 23 ao2_t_unlink(dialogs, p, "About to change the callid -- remove the old name");
michael@311 24 build_callid_pvt(p);

mercurial