vote up 3 vote down star

Consider a Java library "A", which is available under GPL v2, and under a proprietary commercial license.

My company has licensed library A under its commercial license, and I've developed an extension to it, which we'd like to release (to github or whatever). However, we want the extension to be usable by all users of library A, including those who have licensed it commercially, so releasing the extension under GPL is undesirable.

Note that this extension requires library A at compile-time and runtime.

Is it enough to simply provide the sources of the extension under a BSD-esque license, and state that any users of it must acquire library A independently (either under the GPL or via the commercial license made available by the library's publisher)?

Or, is it the case that, because my extension requires a GPL'd library, it must be licensed under the GPL as well?

IANAL (obviously!), and I've already spent about a half hour reading the GPL FAQ (which only confused me more with its discussion of aggregate/derivative works, linking vs. fork/exec, distribution and dependencies, etc). Any clear guidance is most welcome, in my first foray into GPL-related licensing issues.

flag
Which version of the GPL is it licensed under? I have a feeling the tivo-isation clauses will have an impact here as what you seem to be doing is releasing open source code, but open source code that doesn't work without other, potentially proprietary, code. Though tivoisation is more about hardware lockin. en.wikipedia.org/wiki/Tivoization I, too, ANAL of course. – Mark Pim Aug 12 at 12:57
GPL v2, with no 'or later versions' clause. I've updated the question. – Chas Emerick Aug 12 at 13:02
1  
Tivoization is not relevant and the version of the GPL, given the existing versions, doesn't matter in this case. The limitations of the GPL don't really come into play here. Chas is free to release this piece of software under whichever license he wants provided he is not violating a term of the commercial license. If he is kind enough to provide it under a license which is also compatible with the GPL'd version then that is good for the people who use it under the GPL, otherwise he is not under any restrictions of the GPL. (the benefit of buying a commercial license right :) – Christopher Lloyd Aug 12 at 14:42

4 Answers

vote up 3 vote down check

As long as you don't distribute a binary that is linked to the library it should be perfectly ok to share your code under a license of your own liking and tell people to get either the GPL or the commercial version of the lib to compile and run your code.

Of course you need te make sure that your license is compatible to both the commercial license and to the GPL, otherwise people will not be able to use it.

link|flag
This is correct, the important piece is being compatible with both the GPL and the commercial license if you want people to use it in both situations. Not knowing the restrictions of the commercial license I would assume the BSD license is fine as it is GPL compatible. – Christopher Lloyd Aug 12 at 14:33
Thanks very much guys! Looks like MIT License it is :-) (en.wikipedia.org/wiki/MIT_License) – Chas Emerick Aug 12 at 18:03
vote up 2 vote down

If your code includes any part of the software licensed under GPL you won't be able to to release it under BSD. If you are giving away something that users of library A can use, but that people who don't have library A can't use AND it doesn't include any part of library A, you can release it under BSD.

link|flag
Just to clarify, no, we wouldn't be distributing or including any part of the original library with the extension. This is a promising indication, thanks. – Chas Emerick Aug 12 at 13:05
This is not correct, when you change and release software which is under the GPL, your changes can be under any license which is compatible with the GPL. If you mark your changes as under this other license and include the license you are in compliance with the GPL. When part of the larger work the GPL acts as an umbrella and makes the whole thing GPL, but by marking your code with a different license it allows someone to extract that code as-is and use it with the license you want. – Christopher Lloyd Aug 12 at 14:29
1  
I don't think we're disagreeing. The original question is about NOT releasing under GPL. – Sohnee Aug 13 at 9:12
vote up 2 vote down

Well, IANAL obviously, but while the GPL requires derived works to be licensed under the GPL as well, there is no requirement that it cannot be licensed under other licenses additionally.

So I believe you should dual-license (GPL + BSD). Then users of your library can choose either the GPL (if they use A under GPL), or BSD (if they have a proprietary license for A).

link|flag
Oh, that's a thought. I'm off to do more reading, then. :-) – Chas Emerick Aug 12 at 13:05
You don't need to dual license the piece you distribute, the license you choose only needs to be GPL compatible in order to use it with GPL'd software. The reason people dual license is that they want to distribute software under licenses which are not compatible with each other, e.g. commercial + GPL, GPL+MPL. – Christopher Lloyd Aug 12 at 14:23
vote up 1 vote down

Why not submit the extensions back to the original library maintainers and ask them to incorporate them in the original library? That way, they have worry about the licensing, not you.

link|flag
The primary reason is that they have no expertise in the particular domain that our extension is in, and we'll move way faster in making improvements / fixes to it than they would be. Besides, there's lots of (granted, minor) incidental fringe benefits from releasing libraries separately for the company that sponsors the development, etc. – Chas Emerick Aug 12 at 13:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.