I am writing a system in OCaml which I'd like to release open source with a GPL license. However, I'm calling Batteries, which is LGPL, from within my code. Does this contaminate my code with the LGPL license? At first, I'd say NO, but I'm having a hard time distinguishing between: (1) my GPL "standalone" program requires a LGPL library you need to install on your machine if you want to use it and (2) my program in fact "includes" another program which is LGPL and therefore can only be released with the LGPL license.
But then, if it is (2), then GTK+ for example is also LGPL, so that would mean any program with a GUI (a GTK+ one) would not be allowed to be GPL, which doesn't ring true.
Does the distinction between (1) and (2) lie on whether the LGPL library my program depends on is actually distributed along with my program or not? Does it depend on whether I'm using static links to the LGPL library?
Thanks for any clarifications, Surikator.