1

I downloaded findlib from http://download.camlcity.org/download/findlib-1.3.2.tar.gz. After configure successfully, make all reports:

for p in findlib; do ( cd src/$p; make all ); done
"Makefile", line 141: Could not find depend
make: fatal errors encountered -- cannot continue
*** Error code 1enter code here

I am using FreeBSD 9.0. After pkg_add -r ocaml, there is no findlib.

Sincerely!

z_axis
  • 8,272
  • 7
  • 41
  • 61

1 Answers1

3

Apparently there is an up-to-date ocaml-findlib port. Have you tried it?

gasche
  • 31,259
  • 3
  • 78
  • 100
  • the ocaml-findlib port works, thanks! But why cannot i compile the downloaded tar file ? – z_axis Jul 09 '12 at 01:02
  • 1
    Well, for a start I suppose you should rather use `gmake`. For other details, see the patches distributed with the port. – gasche Jul 09 '12 at 04:44