Sat, 24 Mar 2012 21:40:49 +0100
Introduce many changes to the buildconf and source code including:
(01) clean up, update, and partially update default config files,
(02) seems that Melware is unable to perform release engineering so
update chan_capi to new daily snapshot to solve echo problems,
(03) correct Asterisk inadequate hard coded gmime version check,
(04) force postgresql pthreads linkage to solve build problem,
(05) remove buggy hard coded LibXML configure definitions,
(06) remove local architecture specification to allow GCC
internal logic to determine proper CPU type instead,
(07) remove vendor sound install target causing uncontrolled
downloads and non RPM managed file installation,
(08) solve long outstanding bug in tcptls causing Asterisk
to ignore any intermediate CA certificate signatures,
(09) back out Digium engineering team's bright idea of replacing the
very portable and pervasive POSIX rand(1) with ast_random(), and
then not even implementing it causing all references to fail in
platforms not providing the very new POSIX.1-2008 mkdtemp(3)
function only distributed by BSD and some Linux,
(10) withdraw advanced linker symbol manipulations from SVR5 builds
until either Binutils supports hybrid versioned and anonymous
linker scripts or GCC stops hard coding versioned linker scripts,
(11) correct missing library linkage, some tailored to a specific OS,
(12) remove outdated logic for the no longer distributed gmime-config(1),
(13) remove local gmime buildconf hacks now that Asterisk has corrected
their own build configuration to almost portably support gmime,
(14) solve build problems relating to undetected LibXML paths,
(15) correct erroneous out of tree include definitions,
(16) improve some variable and comment naming,
(17) simplify sound language path hierarchy creation,
and correct australian english installation logic.
1 diff -Nau configure.orig configure
2 Index: configure
3 --- configure.orig 2011-03-21 09:30:50.934813866 +0100
4 +++ configure 2011-03-21 09:31:27.459048318 +0100
5 @@ -8748,6 +8748,7 @@
6 cat confdefs.h >>conftest.$ac_ext
7 cat >>conftest.$ac_ext <<_ACEOF
8 /* end confdefs.h. */
9 +#include <sys/socket.h>
10 #include <netinet/sctp.h>
12 int
13 diff -Nau src/net_uuid.c.orig src/net_uuid.c
14 Index: src/net_uuid.c
15 --- src/net_uuid.c.orig 2008-10-25 01:13:44.000000000 +0200
16 +++ src/net_uuid.c 2011-03-21 14:23:16.000000000 +0100
17 @@ -38,8 +38,10 @@
18 #else
19 #include <sys/types.h>
20 #include <sys/time.h>
21 +#if !defined(__APPLE__) && !defined(__MACH__)
22 #include <sys/sysinfo.h>
23 #endif
24 +#endif
26 /* system dependent call to get the current system time. Returned as
27 100ns ticks since UUID epoch, but resolution may be less than
28 diff -Nau src/nettest_bsd.c.orig src/nettest_bsd.c
29 Index: src/nettest_bsd.c
30 --- src/nettest_bsd.c.orig 2011-03-21 09:20:13.471888999 +0100
31 +++ src/nettest_bsd.c 2011-03-21 09:20:16.343927098 +0100
32 @@ -97,6 +97,7 @@
33 #endif /* NOSTDLIBH */
35 #ifdef WANT_SCTP
36 +#include <sys/socket.h>
37 #include <netinet/sctp.h>
38 #endif
40 diff -Nau src/nettest_sctp.c.orig src/nettest_sctp.c
41 Index: src/nettest_sctp.c
42 --- src/nettest_sctp.c.orig 2011-03-21 09:22:57.248890123 +0100
43 +++ src/nettest_sctp.c 2011-03-21 09:23:02.907197031 +0100
44 @@ -58,6 +58,7 @@
45 #include <netinet/sctp.h>
46 #include <arpa/inet.h>
47 #include <netdb.h>
48 +#include <strings.h>
50 /* would seem that not all sctp.h files define a MSG_EOF, but that
51 MSG_EOF can be the same as MSG_FIN so lets work with that