Questions tagged [gpl]
Questions about the GNU General Public License. If you intend to ask something about this license, CONSIDER NOT TO ASK HERE. Instead check if **Opensource.SE** (https://opensource.stackexchange.com) would not be more appropriate for your question than this site.
496 questions
-2 votes
1 answer
198 views
What counts as disclosing source for software licenses? [closed]
MPL v2, GPL v3 and other licenses alike require giving users access to source code. For desktop applications - does access have to be provided through the user interface (GUI)? Or can it just be ...
1 vote
1 answer
365 views
AGPL - passwords in code
I'm looking at putting up a fan site for an author using code released under the AGPL. Under the AGPL, as I understand it, I would need to publish my code modifications. This is entirely fine. ...
0 votes
2 answers
602 views
To what extent can you use LD_PRELOAD to circumvent the GPL?
I'm not exactly sure what the history behind this, but Debian and Ubuntu currently wraps around some of the PostgreSQL utilities with something called pg_wrapper. This utility uses LD_PRELOAD to ...
-3 votes
1 answer
562 views
GPL with exception to use without publishing the source [closed]
I am using a GPL licensed library which stated clearly that it is OK to link to it in commercial projects without the need to publish your own source code (as an exception to the regular GPL that ...
9 votes
1 answer
435 views
If you manage a BSD-licensed open source project, how do you guard against someone illegally contributing GPL-licensed code?
An open source project licensed under BSD, MIT or another permissive license accepts code contributions from the community. How can I prevent someone from taking GPL-licensed code that they don't own ...
-2 votes
2 answers
1k views
Can I distribute binaries of my GPLv3 software? [closed]
I have licensed my software under GPLv3 and made it available on Github as an open source repository. Am I allowed(under GPLv3) to distribute binary releases of the application so it is easier to use ...
-4 votes
1 answer
249 views
GPLv2 licensed COM objects called in a commercial application [closed]
I have a legacy application that works with DirectShow filters installed in the system, these are essentially treated as COM components and not directly linked or distributed with the application. If ...
2 votes
1 answer
364 views
Using Qt in Open Source App that Communicates with Closed Source Hardware
Preface I'm having trouble determining if I can use the Qt framework for developing a cross platform desktop app. Situation The app is open source, and the libraries it uses are also open source. ...