Slashdot Mirror


Seminar On Details Of The GPL And Related Licenses

bkuhn writes "Given the recent confusion about LGPL on slashdot, and the concern it raised for those convincing corporate legal departments to adopt to Free Software, perhaps your readers might be interested in FSF's legal seminar on the GPL and related licenses. The first one is in Silicon Valley, and if it is successful, we hope to hold others in the next 8 months in New York City and Tokyo." Since the FSF and the GNU project have long created and fought for software that's shareable, Free, and Not UNIX, what's taught at these seminars will probably differ sharply from what you can hear at next Monday's SCO conference call on the "IBM lawsuit, UNIX Ownership and Copyrights."

5 of 171 comments (clear)

  1. Erm, Timothy?? by SuperDuG · · Score: 4, Insightful
    What the hell does SCO have to do with GPL? I mean really this just seems like a way to jab at SCO for something completely not on topic.

    Lets see, GPL, GNU not UNIX, so lets mention SCO? Where the hell is the logic, just seems like you wanted to post a link that might cause a little slashdotting to SCO's site. One might infer this as particularly malicious.

    SCO has never once said anything against the GNU, in fact the GNU actually semi-support the SCO standpoint, if code was not given by the author than it violated the codes original copyright.

    I do believe making this thread appaling to the commentors because of a mention to SCO is pretty tasteless and definantelly offtopic.

    --
    Ignore the "p2p is theft" trolls, they're just uninformed
  2. Oh, please by The+Bungi · · Score: 4, Insightful
    Since the FSF and the GNU project

    Please spare us the editorial comment. In yesterday's article, Dave Turner specifically bemoaned the fact that CowboyNeal had not double-checked his facts and just went ahead and posted. The story submitter then apologized to Dave for going "sensational", which is apparently the only way to get a story through the "editors" nowadays, with the exception of anything that remotely smells of "M$" or the RIAA.

    So I think an apology to the FSF (and your readers) is in order.

  3. We call it "hereditary" by TuringTest · · Score: 4, Insightful
    I have no moderation points, so i'll bite the troll.

    How can a voluntarily adopted license "force" anybody? As you say, you just have to reject the use of GPLed software if you don't like it. And remember that the GPL must only be accepted if you redistribute another's program, not just if you use it. A programmer should be aware of the terms in which the code she relies upon is licensed, right?

    The whole point of the GPL is to build a community of people freely sharing code and donating it to each other. The license is tuned and tweaked to do just that, and do it really well.

    If someone want to use the GPL for a different purpose (like, say, earning some money), hey, the code it's free! They can do it, but they should be very aware that the license is not intended to do that. So, it's not the FSF fault if they got it wrong, as their goals are cristal clear.

    --
    Singularity: a belief in the "God" idea with the "demiurge" relation inverted.
    1. Re:We call it "hereditary" by JoeBuck · · Score: 4, Insightful

      There are good arguments to use the GPL, even for business-minded folks who disagree with RMS's idea that all software must be free.

      The GPL is quite usable for making money. Consider TrollTech, the providers of QT. Their use of the GPL/QPL combo (though the GPL alone would work just as well) got the product of a small Norwegian company known all over the world, and the fact that proprietary developers don't like the GPL means that Troll Tech can sell developer licenses at significant cost.

      BSD fans who accuse GPL fans of communism have it backwards: giving work away completely for any purpose, from each according to his ability, to each according to his need, is a hallmark of the BSD license. As Russ Nelson (of OSI) has said, "When I write proprietary software I expect to get paid". By choosing the GPL instead of a non-copyleft license, the author is in a sense insisting on compensation for his work, either in the form of changes that get contributed back, or with the possibility of selling someone a license to use terms other than the GPL.

      What might really harm the BSD folks is the growing practice by holders of software patents to license those patents for use in GPL code, but not in non-copylefted code. IBM is doing a lot of this: they've made some of their patents available to both the Linux kernel and GCC. I would prefer to see no patents at all, but don't see a way of letting the BSD folks use the patents without effectively giving the patent away to all. They could say, OK, BSD folks, use of the patent is OK as long as full source is provided for the whole app, but did you notice that these conditions are effectively a copyleft, like the GPL (if you use it you have to give the whole source away)?

  4. Re:Never could understand by IamTheRealMike · · Score: 4, Insightful
    The main problems are that people don't understand, or are confused by:

    a) The references to derivative works - what exactly is a derivative work? How can you tell?

    b) The meaning of redistribution.

    The whole Java/LGPL thing was a storm in a teacup caused by people who didn't understand the wording or the spirit of the license.

    I sometimes wonder if it's due to the nature of the people involved. Programming is sometimes an sexact and inflexible science - literality is important. The law on the other hand is anything but those things.

    So, for instance, I've seen people wrangle and argue over exactly what is and isn't linking, without realising that this is beside the point - the LGPL is very clear that if you use the code in your program, the user should be able to drop in a replacement they compiled themselves - otherwise, what is the point of having the source (for the user) if they are powerless to use it to improve their own apps? In standard C or C++ apps, static linking prevents the user from doing that, so you can't do it (or rather, you must offer a version that uses dynamic linkage). In Java, all linkage is dynamic, so as long as the user can drop in a new jarfile, or set of classes, you're set. In Python etc, you're almost always compliant even if you embed the code direct into the source files, because the user can still go in an edit those parts. At least, that's *my* interpretation.

    Likewise, I've seen people say you can't link GPLd code with anything other than a GPLd program - also rubbish. Any GPL compatible license will do.

    Basically people forget that licenses are agreements between the author of the code, and themselves. The author expresses their wishes for how the code can be used, and you must abide by those wishes. The GPL/LGPL/BSD and so on are just useful boilerplates to save people reinventing the wheel. You can always ask the copyright holder to grant you a commercial license if you want to use some GPLd code - they may so no, but also they may not.