I am new to component building, and I have noticed that other components have a comment on top of their units like agreement, terms and condition etc. whether its free or commercial.

How important is to register(license) your own component and how/where? and when do you need to register it?

How about freeware? Must have a license too?

how do we know that they're using it?


+1 vote to all good answers

link|improve this question

feedback

5 Answers

up vote 2 down vote accepted

The license is an agreement between you and your customers. It is not important if the library is commercial with $1M price or freeware. The person who has started to use it, got it from you (copyright owner). So, he/she is your customer. And, as a customer, he/she may expect something from you. To make these expectations meet your own requirements / thoughts, you have to have an agreement with your customer.

To simplify things, take some existing license text as a base for your own one. If in there you find something missing which is important to you, then just put that into the text. For example, you may give the full right to change the copyright text and redistribute the library as the customer wants it. Or you may prohibit that.

The library units are a part of your library. To make that clear for others, you may put a comment at the unit top. There you may say, "this unit is a part of the library Xxx. For more details check the license text". Or something like that.

link|improve this answer
2  
This is really hard to understand. You are not using commas and full stops correctly. – RickL Jun 18 '10 at 9:41
feedback

I think it's a must to always have a license for anything that you distribute publicly. Even if it is freeware take up at least a license that ensures that you are never responsible for damages. There is a wide choice of suitable licenses you could use such as MPL/GPL and so on.

link|improve this answer
When you acknowledge that people can be stupid and malfeasant... – François Jun 18 '10 at 17:37
feedback

Even if you do not ask money for the use of your code, it is important to claim your copyright and to tell people what they can and cannot do when using your code. That is what a licensen does. Of course it doesn't guarantee that everybody will abide by your "license", but at least they can't claim ignorance or your failure to state what is allowed/acceptable. Some blog authors have phrases along these lines: "You can do use this code however you see fit, even without attribution, except you can't claim it as your own."

Edit: And as Remko points out a disclaimer to avoid damage claims can be pretty important too.

link|improve this answer
feedback

While its not a requirement for you to add this information to the top of any unit you release, it is good manners. It easily tells anyone who might be interested in using your unit, any constraints on such usage (such as not using in commercial products, or a notification be placed in the about of the main product... or even who to send a beer or postcard too).

link|improve this answer
feedback

If you don't put a license on your code, nobody else can legally use it. Really.

If you write code, you automatically own the copyright on it (unless you explicitly release it into the public domain). That means that nobody else is legally allowed to copy it without your consent. One of the main functions of any license is to give that consent. Sometimes there are conditions on that consent, but every license includes language along the lines of "you're allowed to copy this code and compile it into your applications". Without that, anybody who uses your code is breaking the law.

Many people think that if you post your code online, you probably intended for it to be free to use. But legally, you could choose to prosecute them for using your code, even if you posted it publicly. I know of people who will not use software if it doesn't have a license, simply because they don't need the legal questions hanging over their head.

If you don't want to think too hard about which license to use, just use the MIT license. It basically says "use this however you want".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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