Please do not reply directly to this email. All additional comments should be made in the comments box of this bug.
Summary: ocaml-sqlite-devel doesn't work properly without sqlite-devel, but it's not a dependency
https://bugzilla.redhat.com/show_bug.cgi?id=603230
Summary: ocaml-sqlite-devel doesn't work properly without sqlite-devel, but it's not a dependency Product: Fedora Version: 13 Platform: x86_64 OS/Version: Linux Status: NEW Severity: low Priority: low Component: ocaml-sqlite AssignedTo: rjones@redhat.com ReportedBy: bugzilla@mugon.org QAContact: extras-qa@fedoraproject.org CC: rjones@redhat.com, fedora-ocaml-list@redhat.com Classification: Fedora
Description of problem:
Programs that use ocaml-sqlite-devel cannot be compiled to native code with ocamlfind unless sqlite-devel is installed. However, ocaml-sqlite-devel does not list sqlite-devel as a dependency. It probably should.
Version-Release number of selected component (if applicable): 1.5.6-3.fc13
Steps to Reproduce:
1. Ensure neither ocaml-sqlite-devel nor sqlite-devel is installed. 2. Install ocaml-sqlite-devel. 3. Create an empty file called "empty.ml". 4. Execute "ocamlfind ocamlopt -package sqlite3 -linkpkg empty.ml".
Actual results:
/usr/bin/ld: cannot find -lsqlite3 collect2: ld returned 1 exit status File "caml_startup", line 1, characters 0-1: Error: Error during linking
Expected results:
Successful creation of a.out