Codebase list findlib / 719d180
New upstream version 1.9.5 Stéphane Glondu 1 year, 3 months ago
4 changed file(s) with 14 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
488488 package_dir="$(dirname "${file}")"
489489 if [ "${package_dir}" = '.' ]; then
490490 echo "${package}: found"
491 package_subdir='.'
491492 package_dir='^'
492493 else
494 package_subdir="${package_dir}"
493495 package_dir="+${package_dir}"
494496 echo "${package}: found (in ${package_dir})"
495497 fi
496 eval "${package}_dir=\"${package_dir}\""
498 package_key="$(echo "${package}" | tr - _)"
499 eval "${package_key}_dir=\"${package_dir}\""
500 eval "${package_key}_subdir=\"${package_subdir}\""
497501 if [ "$package" = 'num' ]; then
498502 generated_META="${generated_META} num num-top"
499503 numtop='num-top'
546550 have_natdynlink=0
547551 natdynlink=""
548552 camlp4_dynlink=""
549 if [ -f "${ocaml_core_stdlib}/${dynlink_dir#+}/dynlink.cmxa" ]; then
553 if [ -f "${ocaml_core_stdlib}/${dynlink_subdir}/dynlink.cmxa" ]; then
550554 have_natdynlink=1
551555 natdynlink="archive(native) = \"dynlink.cmxa\""
552556 camlp4_dynlink="dynlink"
8484 List of Changes
8585 ==============================================================================
8686
87 - 1.9.5:: fixes a bug in the scripting that slipped into 1.9.4
88
8789 - 1.9.4: Also finds the libraries str.cm(x)a, unix.cm(x)a, and dynlink.cm(x)a
8890 in subdirectories of the OCaml standard library, as needed for OCaml-4.14
8991 (David Allsopp).
109109 <ul>
110110
111111 <li>
112 <p><em>1.9.5:</em>: fixes a bug in the scripting that
113 slipped into 1.9.4</p>
114 </li>
115
116 <li>
112117 <p><em>1.9.4:</em> Also finds the libraries str.cm(x)a, unix.cm(x)a,
113118 and dynlink.cm(x)a in subdirectories of the OCaml standard library,
114119 as needed for OCaml-4.14 (David Allsopp).</p>
00 opam-version: "2.0"
11 name: "ocamlfind"
2 version: "1.9.4.git"
2 version: "1.9.5.git"
33 license: "MIT"
44 synopsis: "A library manager for OCaml"
55 maintainer: "Thomas Gazagnaire <thomas@gazagnaire.org>"