Codebase list findlib / fab6433
Imported Upstream version 1.4.1 Stephane Glondu 10 years ago
4 changed file(s) with 16 addition(s) and 7 deletion(s). Raw diff Collapse all Expand all
00 #! /bin/sh
1 # $Id: configure 200 2013-06-11 07:26:12Z gerd $
1 # $Id: configure 204 2014-03-02 18:05:35Z gerd $
22 # ----------------------------------------------------------------------
33 #
44
66
77 #set -x
88
9 version="1.4"
9 version="1.4.1"
1010
1111 # Remember the old IFS value:
1212 oldifs="$IFS"
8484 List of Changes
8585 ==============================================================================
8686
87 - 1.4.1:ocamldoc: The order of -ppopt arguments was changed by ocamlfind,
88 which is not correct. (Sylvain Le Gall and Jérémie Dimino.)
89
8790 - 1.4: Fixed performance bug when many arguments need to be processed (Jérôme
8891 Vouillon).
8992 Auto-configuring ocamldoc.opt if it is found (Christopher Zimmermann).
109109 <ul>
110110
111111 <li>
112 <p><em>1.4.1:</em>ocamldoc: The order of -ppopt arguments was
113 changed by ocamlfind, which is not correct. (Sylvain Le Gall and
114 Jérémie Dimino.)</p>
115 </li>
116
117 <li>
112118 <p><em>1.4:</em> Fixed performance bug when many arguments
113119 need to be processed (Jérôme Vouillon).</p>
114120 <p>Auto-configuring ocamldoc.opt if it is found (Christopher
0 (* $Id: frontend.ml 189 2013-01-14 17:10:28Z gerd $
0 (* $Id: frontend.ml 203 2014-03-02 18:04:18Z gerd $
11 * ----------------------------------------------------------------------
22 *
33 *)
11941194 ( Arg.align
11951195 [ "-package",
11961196 Arg.String (fun s ->
1197 packages := Fl_split.in_words s @ !packages),
1197 packages := !packages @ Fl_split.in_words s),
11981198 "<name> Add this package to the search path";
11991199
12001200 "-predicates",
12011201 Arg.String (fun s ->
1202 predicates := Fl_split.in_words s @ !predicates),
1202 predicates := !predicates @ Fl_split.in_words s),
12031203 "<p> Add predicate <p> when calculating dependencies";
12041204
12051205 "-syntax",
12061206 Arg.String (fun s ->
1207 syntax_preds := Fl_split.in_words s @ !syntax_preds),
1207 syntax_preds := !syntax_preds @ Fl_split.in_words s),
12081208 "<p> Use preprocessor with predicate <p>";
12091209
12101210 "-ppopt",
1211 Arg.String (fun s -> pp_opts := s :: !pp_opts),
1211 Arg.String (fun s -> pp_opts := !pp_opts @ [s]),
12121212 "<opt> Append option <opt> to preprocessor invocation";
12131213
12141214 "-thread",