On a fresh Debian system (Squeeze/Sid) I have installed the following packages using apt-get:
- ocaml-batteries-included
- libpcre-ocaml-dev
- libcamlnet-ssl-ocaml-dev
- libldap-ocaml-dev
When compiling code I get errors such as:
ocamlfind: [WARNING] The DLL dllnetaccel_c.so occurs in multiple directories: /usr/lib/ocaml/stublibs
ocamlfind: [WARNING] The DLL dllnetaccel_c.so occurs in multiple directories: /usr/local/lib/ocaml/3.11.2/stublibs
ocamlfind: [WARNING] The DLL dllnetsys.so occurs in multiple directories: /usr/lib/ocaml/stublibs
ocamlfind: [WARNING] The DLL dllnetsys.so occurs in multiple directories: /usr/local/lib/ocaml/3.11.2/stublibs
They are non-identical:
$ diff /usr/lib/ocaml/stublibs/dllnetsys.so /usr/local/lib/ocaml/3.11.2/stublibs/dllnetsys.so
Binary files /usr/lib/ocaml/stublibs/dllnetsys.so and /usr/local/lib/ocaml/3.11.2/stublibs/dllnetsys.so differ
My code stll compiles, but which of these are the correct ones, and how can I suppress this apparently spurious warning?
Thanks!