Skip to main content

All Questions

Tagged with
0 votes
1 answer
118 views

License header for code licensed as GPL 3 only

The text of the GNU GPL 3 license ends with a section titled "How to Apply These Terms to Your New Programs", which states that you should include a license notice within each source file, ...
Eli Minkoff's user avatar
10 votes
5 answers
4k views

Distribute the code as closed source and the end users download GPLv3 dependencies separately

I check the FAQ page of GNU Licenses but cannot find the answer. If someone is using my code (in Python) that is released under GPLv3, does s/he violate my GPLv3 rights if s/he uses my library ...
EKP's user avatar
  • 101
4 votes
1 answer
784 views

"Modding" GPL Software and using in a multi-part commercial application

Here's my dilemna: I own proprietary software that generates HTML. I want my end users to use a GPL v3 open source licensed software that renders HTML in a special GUI. But I want to white label/...
lemon-apples's user avatar
6 votes
2 answers
2k views

Dynamically Linking a Proprietary Module to a GPL-Covered Library (C/C++)

Context Suppose I have two projects called: Foo Bar Goal: The Foo compiles to some sort of dynamic linking library such as a windows .dll and links to project Bar dynamically. And some of the ...
Nasir Hossain's user avatar
6 votes
2 answers
1k views

Is nopCommerce really open source?

I was very curious about the way this project was published, under an NPL license. From what I understand, this license is similar to the GPL v3.0, except that it adds an additional restriction: "...
MrDave1999's user avatar
2 votes
1 answer
642 views

How to use code licensed under GPL-3.0-or-later in a project licensed under GPL-3.0-or-later?

I'd like to use code from project A that was licensed under GPL-3.0-or-later in project B, which is also going to be licensed under GPL-3.0-or-later. What should the license headers in the source ...
mkl's user avatar
  • 235
26 votes
4 answers
5k views

Can an NDA block GPL freedom number 4?

Let's say a company modifies a GPLv3 software. All it's employees can use the modified software and have access to the modified source code. The company's employees don't have the right to distribute ...
ddreian's user avatar
  • 383
2 votes
1 answer
230 views

Explicit linkage of GCC STL source code in end user's code - GPLv3 + GCC runtime exception

My question is related to GPLv3 and GCC runtime exception. I need to include GCC source code in my project. I am an author of an embedded library that is intended to be built using GCC C++ compiler ...
Piotr Grygorczuk's user avatar
3 votes
1 answer
77 views

Does the use of GCC small macros and linker variables make my work GPL?

when using AVR or ARM toolchains for Atmel microcontrollers, is using GCC macros such as __AVR_...__ or linker variables making my code GPL? I know GCC is covered by "GPL 3.0" + "GCC ...
Wind's user avatar
  • 73
3 votes
1 answer
295 views

Adding GPL classpath exception to program

GCC has a special exception that doesn't force you to use GPL for programs compiled with GCC. If I for example had program foo, how can I apply the classpath/GCC/linking exception to it as well? Do I ...
jay's user avatar
  • 31
3 votes
1 answer
1k views

Can my proprietary program use a GPLv3 binary?

I want to use in my program (closed source code) binary (GPL v3) which is used by execute it with parameters and read output/log of this execution. Can I do it? If yes, what information should I ...
needprayfornotaxes's user avatar
0 votes
1 answer
1k views

Can i use MIT licensed library in my GPL3 project

I'm writing a library that I want to use in my GPL3 main project and I wonder if I can license the library using the MIT license.
Ali's user avatar
  • 11
3 votes
1 answer
368 views

Distribute binaries of GNU GPL licensed project without source as copyright holder

I don't quite understand what I, the copyright holder of a project, am permitted to do according to the license I have given my project. I want the source code for most versions of the project to be ...
TwistyTurtleFish's user avatar
24 votes
3 answers
9k views

Can I ignore an open source license if I checkout a version that was released prior to the code having any license?

There's a package on Github that was released fully without any license and it stayed this way for close to a year. Then just recently after no updates since the initial commit, a License was added. ...
vesperknight's user avatar
5 votes
2 answers
2k views

Can I use a GPLv3 JavaScript library on a website I'm developing for a client?

I was intending on using a GPLv3 licensed JavaScript library on a website I'm developing for a client. This library would be part of the theme. Will this necessarily make the entire them GPLv3 so my ...
GPLConfused's user avatar