mtasc/mtasc.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.

     1 Index: install.ml
     2 --- install.ml.orig	2006-08-02 17:59:19 +0200
     3 +++ install.ml	2008-05-30 17:49:27 +0200
     4 @@ -104,10 +104,10 @@
     5  in
     6  let startdir = Sys.getcwd() in
     7  try
     8 -	download();
     9 +	(* download(); *)
    10  	compile();
    11  	Sys.chdir startdir;
    12  with
    13  	Failure msg -> 
    14  		Sys.chdir startdir;
    15 -		prerr_endline msg; exit 1
    16 \ No newline at end of file
    17 +		prerr_endline msg; exit 1
    18 Index: ocaml/mtasc/parser.ml
    19 --- ocaml/mtasc/parser.ml.orig	2007-02-04 14:56:04.000000000 +0100
    20 +++ ocaml/mtasc/parser.ml	2009-02-25 13:52:56.848237653 +0100
    21 @@ -166,8 +166,8 @@
    22  	| [< '(Kwd For,p); '(POpen,_); c = parse_expr_opt; e = parse_for p c >] -> e
    23  	| [< '(Kwd If,p); cond = parse_eval; e = parse_expr_opt; e2 , p2 = parse_else (pos e) >] -> EIf (cond,wrap_var e,e2), punion p p2
    24  	| [< '(Kwd Return,p); v , p2 = parse_eval_option p; >] -> EReturn v , punion p p2
    25 -	| [< '(Kwd Break,p); >] -> EBreak , p
    26 -	| [< '(Kwd Continue,p); >] -> EContinue , p
    27 +	| [< '(Kwd Break,p); placeholder1 >] -> EBreak , p
    28 +	| [< '(Kwd Continue,p); placeholder2 >] -> EContinue , p
    29  	| [< '(Kwd While,p1); v = parse_eval; e = parse_expr_opt >] -> EWhile (v,wrap_var e,NormalWhile) , punion p1 (pos e)
    30  	| [< '(Kwd Do,p1); e = parse_expr; '(Kwd While,_); v = parse_eval; >] -> EWhile (v,wrap_var e,DoWhile) , punion p1 (pos v)
    31  	| [< '(Kwd Switch,p1); v = parse_eval; '(BrOpen,_); el, p2 = parse_switch false >] -> ESwitch (v,el) , punion p1 p2
    32 @@ -278,7 +278,7 @@
    34  and parse_expr_opt = parser
    35  	| [< e = parse_expr >] -> e
    36 -	| [< '(Next,p); >] -> EBlock [] , p
    37 +	| [< '(Next,p); placeholder3 >] -> EBlock [] , p
    39  and parse_for p c = parser
    40  	| [< '(Kwd In,_); v = parse_eval; '(PClose,p2); e = parse_expr_opt >] -> EForIn(c,v,wrap_var e) , punion p p2
    41 @@ -324,7 +324,7 @@
    42  and parse_block callb sp = parser
    43  	| [< e = callb; el,p = parse_block callb sp >] -> e :: el , p
    44  	| [< '(Next,_); el = parse_block callb sp >] -> el
    45 -	| [< '(BrClose,p); >] -> [] , p
    46 +	| [< '(BrClose,p); placeholder4 >] -> [] , p
    47  	| [< '(Eof,_) >] -> error Unclosed_parenthesis sp
    49  and parse_expr_list p = parser
    50 @@ -351,7 +351,7 @@
    52  and parse_import = parser
    53  	| [< '(Const (Ident name),_); p = parse_import2 name >] -> p
    54 -	| [< '(Binop OpMult,_); >] -> [] , None
    55 +	| [< '(Binop OpMult,_); placeholder5 >] -> [] , None
    57  and parse_import2 name = parser
    58  	| [< '(Dot,_); p , n = parse_import >] -> name :: p , n

mercurial