diff --git a/.gitignore b/.gitignore index 4867aed..c900bf2 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ findlib-1.2.5.tar.gz /findlib-1.6.3.tar.gz /findlib-1.7.1.tar.gz /findlib-1.7.3.tar.gz +/findlib-1.8.0.tar.gz diff --git a/findlib-1.4-add-debug.patch b/findlib-1.4-add-debug.patch deleted file mode 100644 index 8734d78..0000000 --- a/findlib-1.4-add-debug.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- ./findlib-1.4/src/findlib/Makefile.old 2013-09-13 22:13:25.322978268 +0100 -+++ ./findlib-1.4/src/findlib/Makefile 2013-09-13 22:13:38.289999908 +0100 -@@ -14,7 +14,7 @@ - - # Need compiler-libs since ocaml-4.00 - OCAMLC = ocamlc -I +compiler-libs --OCAMLOPT = ocamlopt -I +compiler-libs -+OCAMLOPT = ocamlopt -I +compiler-libs -g - OCAMLDEP = ocamldep - OCAMLLEX = ocamllex - #CAMLP4O = camlp4 pa_o.cmo pa_op.cmo pr_o.cmo -- diff --git a/findlib-fix-reinstallation-of-num-for-ocaml-4.06.patch b/findlib-fix-reinstallation-of-num-for-ocaml-4.06.patch deleted file mode 100644 index 5bbe66e..0000000 --- a/findlib-fix-reinstallation-of-num-for-ocaml-4.06.patch +++ /dev/null @@ -1,47 +0,0 @@ -diff --git a/configure b/configure -index 6a4a558..3f99074 100755 ---- a/configure -+++ b/configure -@@ -514,7 +514,10 @@ fi - - # dbm? - --if [ -f "${ocaml_core_stdlib}/dbm.cmi" ]; then -+if [ -f "${ocaml_sitelib}/dbm/META" ]; then -+ echo "dbm: package already present" -+ ldbm="" -+elif [ -f "${ocaml_core_stdlib}/dbm.cmi" ]; then - echo "dbm: found" - ldbm="dbm" - else -@@ -524,8 +527,12 @@ fi - - # num? - --if [ -f "${ocaml_core_stdlib}/num.cmi" ]; then -- echo "num: found" -+if [ -f "${ocaml_sitelib}/num/META" ]; then -+ echo "num: package already present" -+ lnum="" -+ numtop="" -+elif [ -f "${ocaml_core_stdlib}/num.cmi" ]; then -+ echo "num: found but not as package" - lnum="num num-top" - numtop="num-top" - else -diff --git a/doc/README.xml b/doc/README.xml -index 248483e..0b2b3b5 100644 ---- a/doc/README.xml -+++ b/doc/README.xml -@@ -110,6 +110,11 @@ configuration files, and library routines in detail.
-git version: Fix reinstallation of "num" for OCaml-4.06. -+
-+1.7.3: Fix regarding num-top: this library is now also - optional, as num.
-