haxe/haxe.patch

Sat, 24 Mar 2012 21:40:49 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 24 Mar 2012 21:40:49 +0100
changeset 414
fd611cde817f
parent 112
6052d0605a74
permissions
-rw-r--r--

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.

michael@112 1 Index: haxe/doc/install.ml
michael@112 2 --- haxe/doc/install.ml.orig 2007-12-16 14:37:46 +0100
michael@112 3 +++ haxe/doc/install.ml 2008-05-30 14:06:45 +0200
michael@112 4 @@ -144,10 +144,10 @@
michael@112 5 in
michael@112 6 let startdir = Sys.getcwd() in
michael@112 7 try
michael@112 8 - download();
michael@112 9 + (* download(); *)
michael@112 10 compile();
michael@112 11 Sys.chdir startdir;
michael@112 12 with
michael@112 13 Failure msg ->
michael@112 14 Sys.chdir startdir;
michael@112 15 - prerr_endline msg; exit 1
michael@112 16 \ No newline at end of file
michael@112 17 + prerr_endline msg; exit 1
michael@113 18 Index: haxe/parser.ml
michael@113 19 --- haxe/parser.ml.orig 2008-11-25 21:20:36.000000000 +0100
michael@113 20 +++ haxe/parser.ml 2009-02-25 13:44:52.464412227 +0100
michael@113 21 @@ -299,9 +299,9 @@
michael@113 22 }
michael@113 23
michael@113 24 and parse_type_path_or_const = parser
michael@113 25 - | [< '(Const (String s),_); >] -> TPConst (String s)
michael@113 26 - | [< '(Const (Int i),_); >] -> TPConst (Int i)
michael@113 27 - | [< '(Const (Float f),_); >] -> TPConst (Float f)
michael@113 28 + | [< '(Const (String s),_); placeholder1 >] -> TPConst (String s)
michael@113 29 + | [< '(Const (Int i),_); placeholder2 >] -> TPConst (Int i)
michael@113 30 + | [< '(Const (Float f),_); placeholder3 >] -> TPConst (Float f)
michael@113 31 | [< t = parse_type_path >] -> TPType t
michael@113 32
michael@113 33 and parse_type_path_next t = parser

mercurial