Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Slashdot Log In

Log In

[ Create a new account ]

Ask Slashdot: Comparing Open Source Licenses

Posted by Cliff on Mon May 17, 1999 09:38 AM
from the stuff-to-wonder-about dept.
El-ahrairah asks: "I've been working on several projects over the course of the last few years, each of which have reached the stage where we are planning their release to the public under Open Source licenses. I have done quite a bit of research into various OS models, but I am nevertheless no legal scholar. what I am wondering is this: what are the pros and cons of various licenses, are any YAOSL (yet another Open Source licence) models valuable, does a line by line comparison of longstanding and new licenses exist?"
This discussion has been archived. No new comments can be posted.
Display Options Threshold:
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • Restrictively Unrestrictive by Anonymous Coward (Score:1) Monday May 17 1999, @05:20AM
  • Re:Which licence? by Anonymous Coward (Score:1) Monday May 17 1999, @09:04AM
  • Re:GPL, BSD, Artistic, and so on by Anonymous Coward (Score:1) Tuesday May 18 1999, @03:55AM
  • Who'll want to use it? by Anonymous Coward (Score:2) Monday May 17 1999, @08:02AM
  • Good Comparisons in the Open Sources book by Anonymous Coward (Score:2) Monday May 17 1999, @08:14AM
  • One thing seems clear in the chaos .. by Anonymous Coward (Score:2) Tuesday May 18 1999, @02:56AM
  • by Anonymous Coward on Monday May 17 1999, @06:03AM (#1888734)
    Many people happen to like the BSD credit where due clause.

    If someone takes my code and sells it as part of their product, the *least* they can do is be gracious enough to acknowledge my contribution to what they're selling.

    What the BSD license basically does is make this a requirement. Is this obnoxious? Well, if someone was going to do the right thing anyway and give credit to the people who actually wrote the code, then this creates no real additional burden. If someone was going to *not* provide credit where it's due, well, not giving any recognition either credit or financial to the people who's code you're selling is pretty obnoxious, don't you think?

    Also, you misinterpreted the wording of this clause in a major way. It says:

    All advertising materials mentioning features or use of this software must display the following acknowledgement

    Suppose I write code for a specific cool-neat-feature and you put it in your product. This clause does *not* require that all advertisements for your product contain the credit statement. It only requires that advertisements that specifically mentions my code or the use of my code acknowledge that it's my code. That's a big difference.
  • by Anonymous Coward on Monday May 17 1999, @05:54AM (#1888735)
    Basically, software licenses in free software are a form of social engineering. Your choice of license should steer people towards doing what you really want them to do.

    Some examples of goals to consider:

    * Credit given to you. Beyond simply asking people to give credit where it's due, you also might want to have a way to refute when other people claim to have written your code. (it happens)

    * Integration into commerical products. Some people want this, for example in order to get the code/feature/technology more widely used. Some people don't want this, for example to prevent others from making a profit off your work.

    * Control over the "official" distribution. Some people want to make sure that the software named "foo" is theirs; if someone else creates a derivative, they should name it something other than "foo" so as to not confuse things and potentially hurt your reputation.

    * As a general rule, you want to disclaim everything you can and even things you can't. Otherwise some scumbag will sue you for their misuse of your free software.

    The first item basically summarizes the goals of the BSD license: prevent others from claiming that they instead wrote the code, and to require others to give credit where it's due. The BSD license is very typical of licenses that allow commercial products to take your code.

    The second item's other side basically summarizes the goal of the GPL: preventing your free code from becoming someone else's non-free code and someone else's profit.

    The third item basically summarizes the goal of the Artistic license: prevent bozos from releasing branch versions of your code with the same name and making you look bad in the eyes of users who confusedly thought their version was your program.
    Reputation protection.

    There are a whole lot of yet-another-licenses out there. Most of them suck and should be avoided. In particular, they have served to greatly confuse what used to be a relatively simple thing. Use a standard license if at all possible. Really. Better to have slightly less optimal legal terms that are well understood than optimal legal terms that people can't decipher. By the time lawyers are reading the licenses, something is usually wrong.

    Many of the new generation of "open source" licenses are "you have to be free, but we don't have to be free" licenses, which might also be phrased as "we want other people to write code for our product for free" licenses. Don't go there.
  • A short, sweet alternative... by gavinhall (Score:2) Tuesday May 18 1999, @08:38AM
  • Re:Which licence? by zerblat (Score:1) Wednesday May 19 1999, @03:36AM
  • Use the same license... by Per Abrahamsen (Score:1) Monday May 17 1999, @10:00AM
  • by Frater 219 (1455) on Tuesday May 18 1999, @06:16AM (#1888742) Journal

    > All GPL'ed stuff belongs to Stallman, read the license.


    You can find the GPL here [fsf.org]. If you actually do read it, you will find that noplace within it does Stallman, nor the FSF, claim copyright nor special privilege over GPLed software.

    The license does contain some passage specific to software copyrighted by the FSF, for instance the following:


    # 10. If you wish to incorporate parts of the Program into
    # other free programs whose distribution conditions
    # are different, write to the author to ask for permission.
    # For software which is copyrighted by the Free Software
    # Foundation, write to the Free Software Foundation;
    # we sometimes make exceptions for this.


    Read that carefully. FSF does not claim to be the author nor the copyright holder of all GPLed software. Your claim is at best a myth, and at worst a lie which comes close to being FUD.

    If you object to some particular provision in the GPL, release your software under a modified version. You could, for instance, strip out the versioning provision (the part which specifies that the licensed software may be licensed under newer versions of the GPL) or add a BSD-style credit-due provision.

    In the future, when you call on others to RTFM, please don't make claims which contradict the text of the relevant FM.
  • by Frater 219 (1455) on Tuesday May 18 1999, @08:29AM (#1888743) Journal
    You are correct on the matter of revising the license, but not on the matter of versioning. In order for the versioning provision to be in effect, the author has to either explicitly state that the software is licensed under the GPL version N and "any later version", or not mention any version number.

    It may be that the FSF's model copyright notice uses the "any later version" language. However, the copyright notice is separable from the license itself; you can write your own copyright notice placing your software explicitly under the GPL version 2 and no other version.

    Furthermore, the original poster claimed that Stallman owned all software released under GPL. ("All GPL'ed stuff belongs to Stallman") This, of course, remains false. Copyright vests in the author, not in Stallman or FSF, unless the author assigns it to Stallman or FSF. While Stallman might like authors to do that, it's not a requirement of using the GPL, nor does the GPL even imply that Stallman or the FSF want copyright over all free software.
  • Re:The right license depends on YOUR goals. by jmorris42 (Score:1) Tuesday May 18 1999, @09:18AM
  • Re:The right license depends on YOUR goals. by jmorris42 (Score:1) Tuesday May 18 1999, @10:49PM
  • No way this thread can answer the question for you unless you tell us what YOU want to accomplish.

    As for me, I'm a selfish bastard so I'd never consider anything but the GPL or LGPL for any code I happen to generate. The only reason I'd let others have my stuff for free is to be able to get patches back.

    Others have different motives so would pick a BSD license. I can tell you that as a practical matter your choice is between a BSDish or GPL license. Any other sillyness in a license tends to just kill a project. It might not seem logical, but it is true.
  • Use a common license by jnik (Score:1) Tuesday May 18 1999, @10:16AM
  • Open Sources book is _NOT_ GPL-ed by Phil Hands (Score:1) Tuesday May 18 1999, @03:21AM
  • LSL --- unenforcible ? by Phil Hands (Score:2) Tuesday May 18 1999, @03:09AM
  • Will people please stop crying FUD! by Dr. Evil (Score:1) Tuesday May 18 1999, @08:40AM
  • Re:Preventing from bundling with non-free software by dvdeug (Score:1) Tuesday May 18 1999, @06:01AM
  • Re:License for your goals by Eivind Eklund (Score:1) Wednesday May 19 1999, @11:30AM
  • License for your goals by Eivind Eklund (Score:2) Wednesday May 19 1999, @03:09AM
  • Which licence? (Score:3)

    by joe_fish (6037) on Monday May 17 1999, @07:30AM (#1888754) Homepage Journal
    I've been working on a project for the past 6 months that is just about is a state worth releasing - and I've been considering which licence to use.

    I would have GPLed it already but for these concerns.

    • People go around saying things like 'GPL means you can't link with non-GPL stuff' Now IANAL but I don't think it does, and the confusion is not good.
    • There appears to be a GPL3 in the works and I would expect that it will address some of the issues that RMS complains about. So maybe it will restrict plug-ins. Is this good? Do I want RMS to be deciding how my project is controlled? (Maybe I'll be forced to call it GNU/Project! :)
    • I'm not sure I want to be involved with a project that simultaneously criticizes the BSD self advertisement clause, and engages in obvious self advertising with the GNU/Linux debate.

    Opinions?

  • Re:Which licence? by eponymous cohort (Score:1) Tuesday May 18 1999, @04:04AM
  • Re:The right license depends on YOUR goals. by eponymous cohort (Score:1) Tuesday May 18 1999, @04:21AM
  • Re:You forgot one thing... by eponymous cohort (Score:1) Tuesday May 18 1999, @04:35AM
  • SETI@home (Re:Basic License Choices) by Cally (Score:2) Tuesday May 18 1999, @04:43AM
  • Re:Which licence? by Cadaver (Score:1) Monday May 17 1999, @08:04AM
  • Re:GPL vs. BSD by Carl (Score:1) Monday May 17 1999, @07:39AM
  • Re:list of types of licenses? by Carl (Score:2) Monday May 17 1999, @07:20AM
  • by Carl (12719) on Monday May 17 1999, @07:13AM (#1888762) Homepage
    Nice summary.

    If you want to read more please read the preamble of the GPL [gnu.org]. And other articles on the fsf/gnu site starting with What is Copyleft [gnu.org] article.

    Another good place is the Social Contract [debian.org] of the Debian project. There is some more info on their What does free mean [debian.org] page where they list some different licenses and the features of those licenses. (And a warning against creating Yet Another Free License).

    Cheers Carl

    P.S. You might also like the diagram showing relationship between different categories of software [gnu.org].
  • Re:One thing seems clear in the chaos .. by cjs (Score:1) Tuesday May 18 1999, @04:36AM
  • Re:profit from GPL code without distributing? by cjs (Score:1) Wednesday May 19 1999, @07:39AM
  • Re:Whatever you choose by warmi (Score:1) Wednesday June 02 1999, @03:52AM
  • list of types of licenses? by LadyNymphaea (Score:1) Monday May 17 1999, @05:57AM
  • Re:One thing seems clear in the chaos .. by RinkRat (Score:1) Wednesday May 19 1999, @12:06PM
  • Re:GPL vs. BSD by gehrehmee (Score:1) Monday May 17 1999, @05:03AM
  • Re:GPL vs. BSD by Jonas Öberg (Score:2) Monday May 17 1999, @05:19AM
  • Re:Please, don't spread FUD by Eric Kidd (Score:2) Tuesday May 18 1999, @09:40AM
  • by Eric Kidd (21408) on Monday May 17 1999, @10:58AM (#1888772) Homepage

    The best license choices are (in no particular order) the GPL, LGPL, XFree86 and fixed BSD license.

    The GPL

    The GNU General Public License is used for Linux and GCC. It allows anyone to make copies of your code--and change things as they wish--but it doesn't allow one user to take these rights away from another user. Use the GPL if you want every user of your program to always have source available.

    The LGPL

    The GNU Lesser (or Library) General Public License is like the GPL, but allows proprietary software to link against a free library. The Linux C library uses the LGPL. Use this if you want your code to remain free, but don't care about who uses it in their program.

    The XFree86 License

    This license allows anybody to do anything with your code, but it tries to prevent people from suing you. For example, a software company could take your program and turn it into a proprietary product without giving you any money. The X Window System uses this license.

    The BSD License

    The BSD license is sort of like the XFree86 license, but older versions had a bad bug. The older BSD licenses required certain phrases to appear in advertisements for the software. Because of this, it used to be illegal to advertise a NetBSD CD-ROM without giving credit to 75 people in every ad. Newer versions of the BSD license often remove the obnoxious advertising clause. If you want to use the BSD license, it's probably safer to use the XFree86 license instead--they both do the same thing, but no version of the XFree86 license contains bugs.

    Custom Licenses

    Avoid these if at all possible. Writing new open source licenses is very, very difficult and most people (even good lawyers) screw it up. The licenses listed above should cover most possibilities, and each one is known to work.

  • Re:Protections for "commercialized" Open Source co by for(;;); (Score:1) Tuesday May 18 1999, @04:31AM
  • Protecting the author by WNight (Score:1) Wednesday May 19 1999, @12:19AM
  • by CLAVDIVS (24163) on Monday May 17 1999, @07:34AM (#1888775)
    I was thinking about OSS licenses after reading the "Restrictively Unrestrictive" article. The mother of a friend of mine is a published SF/fantasy author; some other friends of hers include a band on an indy label. As a result, I've picked up some stories here and there about the troubles artists sometimes have trying to get artistic integrity and a decent paycheck to coexist.

    When these two topic threads collided in my brain, the idea that sprung forth was this: Essentially the FreeBSD license, but with an extra clause stating that if someone wants to incorporate part of the licensed code into a product to be sold for money, they need the programmer's permission to do so. The programmer reserves the rights under the license to negotiate conditions for the codes use: if he likes the company and feels charitable, he can just tell them to go on and do it; if he has ethical problems with the company or what they might do with the code, he could flat out refuse; or for various points between, he could negotiate payment for the code, either as a flat fee or a royalty (knowing more about the lit. and music business than the software business, I have no idea if the royalty thing would ever happen).

    Also, it should be clearly stated that previous arrangements for commercial distribution IN NO WAY set a precedent for future agreements (this would hopefully protect the programmer when he tells WeSaySo Inc. that he wants sagans of dollars for his code, and they yell and scream about how he let Applix use it all for just a free commecial-use license).

    Thoughts, anyone? Do I have a good idea here, or should I just lay off the crack?
  • profit from GPL code without distributing? by Jean (Score:1) Tuesday May 18 1999, @08:11AM
  • Re:Which licence? by Real Timer (Score:1) Wednesday May 19 1999, @08:37PM
  • Re:Protections for "commercialized" Open Source co by Znork (Score:1) Monday May 17 1999, @10:36AM
  • Re:Have you looked over the licenses? by Znork (Score:1) Wednesday May 19 1999, @10:27AM
  • Re:GPL vs. BSD (Score:3)

    by Neil Franklin (32480) on Monday May 17 1999, @06:37AM (#1888780) Homepage
    > GPL protects the rights of the author
    > BSD license is more free

    I do not think that that describes the crucial difference. I fact it is borderline to being simply wrong.

    Both licenses aim at protecting the author(s), but they have different ideas of what constitutes "the author(s)".

    - BSD assumes an small central group ("cathedral") of authors (such as CSRG), who want to retain control over the end product.

    - GPL assumes multiple/many distributed ("bazaar") authors who want to attract more participants by guaranteeing no hording.

    So it is mainly an centralism/anarchism thing, an issue of social organisation style.

    To select a license for your project, read above two descriptions and select which authorship model you are more comfortable with. Then use the license developed for that type. Now what about that for choice?

    --
  • Re:Yeah, free to deny me my rights by CaptnZilog (Score:1) Tuesday May 18 1999, @08:46AM
  • Re:Not quite what I meant by CaptnZilog (Score:1) Wednesday May 19 1999, @09:02AM
  • whoops... by CaptnZilog (Score:1) Wednesday May 19 1999, @10:01AM
  • Re:LSL --- unenforcible ? by Paul Johnson (Score:1) Thursday May 20 1999, @12:12AM
  • by Paul Johnson (33553) on Monday May 17 1999, @06:18AM (#1888785) Homepage

    You might want to consider Liberal Source Software as a licensing model. We haven't produced an actual license yet, but its in the works. See here [elj.com] for details.

    Briefly, the idea is to distribute software with source code and a license that allows experimental use, modification, and the distribution of modified copies, but requires payment for any kind of "real use", for whatever value of "real" is appropriate to the software. In most cases that would be commercial use, but for example with a game it would mean actually playing the game. A key part of the scheme is that the revenue is shared amongst the developers in proportion to their contributions.

    This was extensively discussed on Slashdot a while ago, under the heading "Commercial Open Source Software". Some people thought it was a good idea, others did not like it. Since then I've added some more explanations and clarifications based on the comments I received.

    Paul.

  • Another FUD spreader... by dcs (Score:1) Monday May 17 1999, @10:49AM
  • Please, don't spread FUD by dcs (Score:1) Tuesday May 18 1999, @04:04AM
  • You forgot one thing... by dcs (Score:1) Tuesday May 18 1999, @04:10AM
  • That's a *LIE* by dcs (Score:2) Monday May 17 1999, @10:44AM
  • Re:GPL vs. BSD by cmc (Score:1) Monday May 17 1999, @04:56AM
  • FreeBSD license by cmc (Score:1) Monday May 17 1999, @07:11AM
  • GPL vs. BSD (Score:3)

    by cmc (44956) on Monday May 17 1999, @04:52AM (#1888792) Homepage
    While the GPL protects the rights of the author if the author wishes to keep the code open for others to contribute to, the BSD license is more free in that it allows people to integrate BSD-licensed code into closed source products, allowing people to make money. They both allow the code to be sold, but only one allows it to be sold only in binary form, with source made unavailible.

  • Have you looked over the licenses? by unyun (Score:1) Tuesday May 18 1999, @07:37AM
  • by CBM (51233) on Tuesday May 18 1999, @06:18AM (#1888794)

    People go around saying things like 'GPL means you can't link with non-GPL stuff' Now IANAL but I don't think it does, and the confusion is not good.

    The GPL doesn't govern what you do internally with copylefted code. As it states,

    Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program).

    The only question comes when you want to distribute a work based on copylefted code. Then you need to be sure that you comply with all of the modification and distribution terms of the license. The GPL thus does not prevent a person from downloading libreadline (which is licensed under the GPL) and combining it with their own non-free work, as long as they do not distribute the combined work. If they do want to distribute it, then the terms of all components must be made compatible with the GPL.

    The LGPL may also be relevant. It does permit an author to distribute non-free works which link against a LGPL library. The non-free work can be distributed under the authors own terms, as long as it contains no library-derived code. As the license states,

    A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License.

    Again, if the library and the program are linked, then the resulting derived work must be distributed under a compatibly free license.

    Therefore, I would argue that while there are still significant responsibilities to the author when he links against GPL or LGPL code, it is incorrect to say that "you can't link [GPL code] against non-GPL stuff."

  • Distributed Copyright by ClarkEvans (Score:1) Tuesday May 18 1999, @09:28AM
  • 40 replies beneath your current threshold.