-ocaml (3.10.0-5) experimental; urgency=low
-
- [ Ralf Treinen ]
+ocaml (3.10.0-5) UNRELEASED; urgency=low
+ [ Ralf Treinen ]
* ocaml-mode.emacsen-install: do not hardcode the emacs flavours for which
to compile ocaml-mode (closes: Bug#433082)
- -- Ralf Treinen <treinen@debian.org> Wed, 18 Jul 2007 18:31:31 +0200
+ [ Stefano Zacchiroli ]
+ * add patch arm_ccheckbound_typo, fix a typing error typo which makes ocaml
+ FTBFS on arm
+
+ -- Stefano Zacchiroli <zack@debian.org> Wed, 25 Jul 2007 17:52:23 +0200
ocaml (3.10.0-4) experimental; urgency=low
stdlib_man_section.dpatch
install_scripts_config.dpatch
install_ocamlbuild.dpatch
+arm_ccheckbound_typo.dpatch
--- /dev/null
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## arm_ccheckbound_typo.dpatch by Stefano Zacchiroli <zack@debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: fix typo (which induce typing error and in turn FTBFS) in the usage of
+## DP: the Ccheckbound type constructore in the arm asm compiler
+
+@DPATCH@
+diff -urNad trunk~/asmcomp/arm/selection.ml trunk/asmcomp/arm/selection.ml
+--- trunk~/asmcomp/arm/selection.ml 2001-03-30 14:22:32.000000000 +0200
++++ trunk/asmcomp/arm/selection.ml 2007-07-25 17:51:02.000000000 +0200
+@@ -106,7 +106,7 @@
+ | _ ->
+ (Iextcall("__modsi3", false), args)
+ end
+- | Ccheckbound ->
++ | Ccheckbound _ ->
+ begin match args with
+ [Cop(Clsr, [arg1; Cconst_int n]); arg2]
+ when n > 0 && n < 32 && not(is_intconst arg2) ->