Slashdot Mirror


Free Software Licensing Quiz

mpawlo writes: "How much do you know about free software licensing? Time to find out! In a quiz presented by the Free Software Foundation you can test your abilities. How should Joan license her web browser?"

38 of 95 comments (clear)

  1. Ugh. by reaper20 · · Score: 2

    That was complicated and ugly - but considering how much effort some of my Windows IT brethren have been putting into Licensing 6.0, it's not too bad.

    1. Re:Ugh. by moncyb · · Score: 2

      AC writes: All the more reason that companies avoid the GPL. It is predatory, complicated, and...

      Yeah, I even thought the LGPL wasn't that bad. Question 8 proved me wrong. In fact, I thought I knew the GPL well, but I still got 3 questions wrong! What about question 2, why can't he do number I? So once you modify a GPLed program, you're required to only distribute the modified version and never the original?????? #3 seems hypocritical--RMS can create all the restrictions he wants, but any code that links with his license cannot have any?

      Now I'm not even sure I even want to donate code to any already existing GPLed projects anymore.

      Are there any licenses out there that say "you are required to distribute source code with binaries for this component, but you can do anything you want with other components you create"??? It would be nice with projects that I don't want to use the BSD license. Maybe I'll have to come up with my own, however I hear that it comes with legal tanglings and etc. Although I was thinking of coming up with one that disallows a bunch of people and companies that've pissed me off from using my program. Maybe I should include RMS on the list!

    2. Re:Ugh. by jbn-o · · Score: 2, Insightful
      All the more reason that companies avoid the GPL.

      You sound like you're talking about Microsoft, the chief objector to the GNU GPL, and their FUD speeches attacking the GNU GPL (in a similar name-calling, no-specifics-required, mud-slinging way). But for all their flaming, they're not doing the one thing you'd think they would do given their position: avoid distributing GNU GPL-covered works.

    3. Re:Ugh. by jbn-o · · Score: 2, Informative
      What about question 2, why can't he do number I?

      Nobody said Fred couldn't do (I), the question is what fulfills his obligation to distribute source to the modified browser.

      To whittle down the answers on that particular question, keep in mind what constitutes distributing complete source code to Fred's binary. Obviously Joan's source code doesn't have Fred's modifications, so I is out. II, III, and IV might look good until you notice that III only distributes patches to Joan's original source. That's not good enough in the event that you want complete source code to Fred's derivative and the source code Fred generated his patches against is inaccessible, so III is out. That leaves II and IV, which are equivalent and good (putting aside the difference betwen "alongside" and "along with"). [I know the real standard here is what the GPL says, not what parallel scenario I can dream up to justify the GPL's clauses, but I'm trying to write something accessible to those who aren't so familiar with the GPL.]

      So once you modify a GPLed program, you're required to only distribute the modified version and never the original??????

      No, that's not what it says at all. Whether you distribute the original source code is up to you. The GPL only requires you distribute the source code to the binaries you're distributing (if you're distributing binaries). Recipients of the binary should be able to modify it, and that requires the source code that corresponds to their binary (not some other version, no matter how improved it may be).

      #3 seems hypocritical--RMS can create all the restrictions he wants, but any code that links with his license cannot have any?

      Question #3 is aimed at making sure people don't try and sneak around the GPL by linking in code that is not available under the same permissions as the GPL. It's important to make sure people can share and modify the whole GPL'd program, not just part of it. The GPL allows Fred to charge for distributing Joan's browser or any derivative of Joan's browser. So linking in code that can't be distributed for a fee is linking in GPL-incompatible code.

      Therefore the acceptable answers are quickly narrowed to the "Yes" answers (1 and 2): the sample license violates the GPL. Of those two, answer 2 is correct because the section 6 of the GNU GPL states that Fred cannot apply additional restrictions to any part of the code. Answer 1 is incorrect because the GPL only requires distributing binaries linked against GPL-compatible code and the GPL is not the only GPL-compatible license.

      Maybe I'll have to come up with my own, however I hear that it comes with legal tanglings and etc.

      You heard correctly, writing your own license is very difficult. It is not to be taken lightly. The GNU GPL has seen real court time and been confirmed as an enforceable and binding license. I think most people would be hard pressed to create a license that can survive court examination for the entire license.

      Although I was thinking of coming up with one that disallows a bunch of people and companies that've pissed me off from using my program. Maybe I should include RMS on the list!

      Before you rush off in a huff to write a license you'll most likely regret, consider that your aggravation stems from your misunderstanding of what the GNU GPL and GNU LGPL say. Since you got 3 questions wrong, you shouldn't be so quick to judge RMS, the GNU GPL & LGPL licenses, or the FSF harshly. I suggest jotting down your objections, learning what the Free Software movement is after, how the movement RMS started goes about achieving their wishes, learning what obstacles stand in the way, and then see if your objections have merit.

    4. Re:Ugh. by Pogue+Mahone · · Score: 2
      Question 8 proved me wrong.

      I'd challenge the given answer to question 8 on 2 (maybe 3) grounds: 1. The LGPL (linked in the answer) says that you must allow reverse engineering for debugging purposes. It doesn't extend that requirement to reverse engineering for any private purpose, as asked in the question. 2. You don't have to explictly allow reverse engineering in any case. All you have to do is refrain from forbidding it. If you do nothing, you comply. Maybe 3. Many enlightened countries have written the right to reverse-engineer for "compatibility" into law, trumping anything to the contrary in so-called licensing agreements.

      --
      Every bloody emperor has his hand up history's skirt [Peter Hammill/VdGG]
    5. Re:Ugh. by Twylite · · Score: 2
      provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications

      Frankly, this scares the shit out of me. It gives carte blanch for any intended user to modify the work, which implies (without saying so explicitly) the availability of source code.

      Now put this in the context of using C++ compiled with GCC. The binary must be linked against libstdc++, which is LGPL.

      Unless I'm going completely off the wall, this says that any C++ program compiled with GCC must have its source available to customers. Viral indeed!

      Does someone want to tell me if I've lost the plot, and why?

      --
      i-name =twylite [http://public.xdi.org/=twylite], see idcommons.net
    6. Re:Ugh. by Zocalo · · Score: 2
      Yeah, I even thought the LGPL wasn't that bad. Question 8 proved me wrong.

      Question 8 got me too, although I did a lot better than I expected since I'm not really involved in releasing or distributing code and tend to prefer BSD style licensing anyway. I had thought that this issue was precisely what the Lesser GPL was supposed to solve though, all this seemed to do for me was raise the point that maybe Microsoft has a valid arguement.

      I mean, suppose that I have a proprietary program running on Windows and commercial *NIXs that I want to be able to offer on Linux, but need to ensure that the code is not freely available for business reasons - it would give competitors an advantage for example. According to Question 8, if I so much as link against an LGPL library then my code is open to reverse engineering and my competitors will effectively have full access to my algorithms. Under those circumstances there is no way I am going to be able to offer my application under Linux without an awful lot of reinventing the wheel.

      I may be mis-interpreting this, but it seems to me that the LGPL as stands would actually prevent commercial back-room applications, such as SAP for example, from being ported to Linux. Can anyone who understands the LGPL better than I shed some light on this, because this does not seem like a "good thing" to me.

      --
      UNIX? They're not even circumcised! Savages!
  2. Educational purposes by mpawlo · · Score: 2

    A quiz is great for educational purposes, but I think this test only will be mastered (and even taken) by the pro's. Someone (don't look at me!) should construct a test with easier and more general questions on free software and related licensing issues. I guess such an easier test could encourage more people to use and develop free software. The test linked above will most probably discourage newbies from free software rather than encourage them. Great quiz for pro's, though.

    Regards

    Mikael

    1. Re:Educational purposes by Radical+Rad · · Score: 2

      But didn't it make a difference that he was putting a URL to *his* website on the CD? If he had made the URL point to the author's website where she made the software available in the first place then maybe the answer would have been different. IANFL so I don't know.

  3. Joan should quit developing by glenstar · · Score: 3, Funny
    Joan wants to distribute copies of her browser statically linked to Postfix (a mail server)...

    What in the hell is Joan thinking of linking a web browser to a mail server? I think Joan is automatically disqualified from ever developing software, much less having the ability to determine which license to use.

    1. Re:Joan should quit developing by Yarn · · Score: 4, Funny

      Remember, this quiz is from the people who developed emacs...

      --
      -Yarn - Rio Karma: Excellent
  4. Ugh... by rtaylor · · Score: 2

    Whelp, I got 90% right which I suppose means I understand the basics (these weren't obscure cases) but considering the amount of time it took me I'm going to stick with BSD licensed stuff.

    Atleast with that I'm guarenteed that contributions back to software I wrote a majority of won't prevent me from using the damn stuff myself.

    --
    Rod Taylor
  5. Re:Rationale? by neocon · · Score: 2, Insightful

    No, it's like a man who's so `free' that you have an armed guard standing by to make sure he doesn't buy himself lunch, in case that might result in him being enslaved...

  6. Lawyers by m_evanchik · · Score: 2

    Jesus Fuck.

    Since when did legal studies become the main concern for computer afficianados?

    That quiz has to be a goof. I think Microsoft hacked into FSF's servers to scare people away from open-source.

    There is something very, very wrong here.

    These legalisms are paralyzing to a fertile, inquisitive mind.

    1. Re:Lawyers by m_evanchik · · Score: 2

      You are correct. I misspelled "afficionados".

      In every other objection you have, you are dead wrong.

      A basic knowledge of the law is necessary to live in a civilized society.

      My point, which you failed to understand, is that when legal considerations become so pervasive and convoluted, so that one must be a specialist ,i.e. a lawyer, to properly understand them, the law is no longer helpful, but a detriment and distraction to the task at hand, in this case computer programming.

      The law is not an end in itself, but is supposed to be a tool to allow us to live our lives peacefully.

      You and I obviously have different points of views. You see computing as a symbol to be used in political action. I just see computing as something intellectually interesting in and of itself, of which the social, legal, economic and political aspects play a smallish part.

      Your bringing up the Skylarov case only strngthens my point. Skylarov's problem was not an ignorance of the law, as he deliberately tried to present his ideas in what he thought was a legal manner. Skylarov got caught up in a confusing and malicious legal fight, when all he wanted to do was investigate some interesting encryptation problems.

      I like what the FSF and GNU stand for. I just wonder if they are taking the wrong approach, by piling legalisms on legalisms.

      The point is not to get hackers to become lawyers. The point should be to get the lawyers off of the hackers' backs.

      It is not shameful to be ignorant of the law when the laws in question are deliberately obscure.

    2. Re:Lawyers by jbn-o · · Score: 2, Informative
      ...[W]hen legal considerations become so pervasive and convoluted, so that one must be a specialist ,i.e. a lawyer, to properly understand them, the law is no longer helpful, but a detriment and distraction to the task at hand, in this case computer programming.

      Some might say the same thing about computer programming or using a computer recreationally. Fortunately we don't need to be experts to understand a great deal about copyright, we need to study it, ask questions, have discussions, and learn. There are so many interesting intersections between computing, economics, law, and politics, I sincerely doubt a reasonable person could find only "smallish" interests after reading some good books.

      Understanding a system is the first step to changing it. Try to understand what's going on with copyright law by reading non-technical books written for a general audience like Lawrence Lessig's "The Future of Ideas" or Siva Vaidhyanathan's "Copywrongs and Copyrights". Both of them contain plenty of commonly accessible examples on where the law and computing intersect. Then try reading the references they point to, such as US Supreme Court cases and important appellate court decisions. I've found that the more I persist by reading and learning, the more I come to understand the ins and outs of copyright law and the more I appreciate the effort.

    3. Re:Lawyers by m_evanchik · · Score: 2

      It's fine that you are interested in the legal issues of intellectual property. I happen to have a particular interest in the economic aspects of said topic.

      That is one reason I find open-source model so compelling. From an economic point-of-view, it is a new paradigm of software development. It is also a fairly simple and elegant solution that does not get bogged down in itself. The system itself is of tangential interest. It is interesting to specialists such as myself. But at its heart it is interesting because non-specialists can easily apply it to get stuff done. When Linus Torvalds was developing Linux as open-source, he wasn't really doing it for idealistic reasons. He was just a computer hacker trying to get a cool massive hack hacked.

      The problem with the GPL is that it is starting to take itself too seriously. You, personally, might have a special interest in its arcane intricacies, but for the end-user, it has become cumbersome.

      The fact that people have to take obscure and confusing tests and still be confused by the GPL does not suggest that those people are idiots. The end user is not made to serve the GPL. The GPL is meant to serve the end user. Confusion means that it is broken. Even from a legal point of view, the GPL is untested.

      It's fine for you to enjoy the ins and outs of copyright law. It is a shame if it is necessary for every creator of intellectual property to become an expert in it. I don't mean to say people should not have a basic understanding of these issues. But the legal framework involved has become so confusing as to be counterproductive.

      Getting back to the original subject, the GPL quiz, it is poorly written and indicative of sloppy legal thinking. Bad contracts and laws can be just as frustrating as bad code. It is especially frustrating when you don't want to parse legalisms as a requirement to parse computer code.

      End Rant.

  7. Re:Being a "cheapskate" and software freedom. by JanneM · · Score: 2
    Also, the problem doesn't come up merely by not distributing source code with binaries, but by not making it available at all. One can comply with the GPL in ways other than distributing source code with binaries. Distributing both source code and binaries simultaneously from the same location is probably the most convenient way to comply.

    No. The FAQ explicitly states that you must offer the source through mail for a small fee if you do not ship source with the binaries. It doesn't matter how you distribute the thing.

    You're supposed to provide the source code by mail-order on a physical medium, if someone orders it. You are welcome to offer people a way to copy the corresponding source code by FTP, in addition to the mail-order option, but FTP access to the source is not sufficient to satisfy section 3 of the GPL.

    When a user orders the source, you have to make sure to get the source to that user. If a particular user can conveniently get the source from you by anonymous FTP, fine--that does the job. But not every user is on a network. The rest of the users are just as entitled to get the source code from you, which means you must be prepared to send it to them by post.

    If the FTP access is convenient enough, perhaps no one will choose to mail-order a copy. If so, you will never have to ship one. But you cannot assume that.

    Of course, it's easiest to just send the source with the binary in the first place.


    Now, a lot of people would think that if you distribute the binary via FTP, having a source package right next to it would be 'distributing source with the binary', just with the option for the user of actually taking it or refraining as they see fit. I strongly suspect that FSF:s interpretation rather is that the source must accompany the binary in the same, single, package. The argument for mail is that people may not have access to a network (which they evidently had thirty seconds earlier, when downloading the binary). At the same time, there seems to be no specification as to what physical medium to use; I could mail a QIC40 tape with the source and not having to worry if you can dredge up a tape unit able to read it. Yes, this is stupid.

    Oh, BTW, if question #8 is about static linking, please make this clear; as it stands, you can answer either way, depending on how you interpret the question.

    /Janne
    --
    Trust the Computer. The Computer is your friend.
  8. Re:Being a "cheapskate" and software freedom. by jbn-o · · Score: 2, Informative
    No. The FAQ explicitly states that you must offer the source through mail for a small fee if you do not ship source with the binaries. It doesn't matter how you distribute the thing.

    Actually, when it comes to distributing binaries without source code and you want to go with the written offer option, section 3b of the GNU GPL says the applicable cost is "no more than your cost of physically performing source distribution". So you don't have to charge anything if you don't want to.

    But on a larger issue, your rejection is simultaneously unclear and doesn't invalidate anything you quoted from me. I'm fully aware of the requirement of offering source code through the mail when someone orders it (I never contested this requirement). You read something into my words that was not there. I was not trying to present a complete list of alternatives (the GNU GPL itself is fine for that).

    Now, a lot of people would think that if you distribute the binary via FTP, having a source package right next to it would be 'distributing source with the binary', just with the option for the user of actually taking it or refraining as they see fit. I strongly suspect that FSF:s interpretation rather is that the source must accompany the binary in the same, single, package.

    Consider your suspicions allayed. One question speaks to your suspicions. Distributing two archives as you describe is fine. Distributing source code in the same archive as the binaries is also fine. Network distribution makes it possible for the binary archive to be accessible where the source archive is not (this can happen via FTP, not just via web sites). This presents a problem and is easily solved by distributing source code and binaries together in the same archive.

    The argument for mail is that people may not have access to a network (which they evidently had thirty seconds earlier, when downloading the binary).

    When the GNU GPL was written not everyone had network access that allowed them to download all the source code they want to GPL'd programs. People still don't have that level of access. Networks do go down, some people pay per byte and have to ration their usage, and a variety of other limitations. The GPL has to account for people passing copies of GPL-covered software via other means too. I don't know about you but I have manually passed out copies of GPL-covered software to people (I always put the complete machine-readable source code on the same medium as the binaries if I'm distributing binaries). These people deserve source code too.

    At the same time, there seems to be no specification as to what physical medium to use; I could mail a QIC40 tape with the source and not having to worry if you can dredge up a tape unit able to read it. Yes, this is stupid.

    If you're only distributing source code, you would want to distribute it in a medium people could use otherwise people would not want your source code. If you're distributing binaries, section 3a specifies "a medium customarily used for software interchange", section 3b specifies a written offer (valid for at least 3 years) that offers source distribution on "a medium customarily used for software interchange", and section 3c talks about passing on a copy of the information you received in accordance with section 3b.

    Oh, BTW, if question #8 is about static linking, please make this clear; as it stands, you can answer either way, depending on how you interpret the question.

    It appears you are trying to send a message to the editors of the quiz. You should know that I did not write the quiz.

    Question 4 sets the scene here, "FooCorp distributes a modified version LibIdo library linked to their proprietary program Frobber.". The GNU LGPL notes in the preamble, "When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library." and thus subject to the terms of the license of the work being linked in (in that quiz scenario, the LGPL).

    Section 6 of the GNU LGPL requires the license under which you distribute a "work that uses the Library" to allow for "modification of the work for the customer's own use and reverse engineering for debugging such modifications". So it would not matter whether Frobber links in the modified LibIdo statically or dynamically, either way Frobber is a derivative of the modified LibIdo and that LibIdo is a derivative of Peter's library. Therefore, in the end, the proper answer to the question #8 is "yes".

  9. Re:Quite Disappointing by isorox · · Score: 2

    Really? I have a couple of friends being paid to develop and install Free software (web based content system). The organisation they are working for doesnt care what happens to the system after they write it, they pay $4000 to get the system written, then its done. No problem. Most of the system is already written in bits and bobs of gpl code arround. They pay programers to put it together (think building lego when the bricks are free).

    Ultimatly, if you dont like the GPL, fine, dont use it in your code. I could hardly see microsoft letting you off any easier.

  10. The "Right" Answer Is Wrong by John+Hasler · · Score: 2

    The correct answer to question 9 is 1. No one is alleging that FooCorp is infringing any patents.

    --
    Warning: this article may contain humor, sarcasm, parody, and perhaps even irony. Read at your own risk.
  11. For people with no Internet access by yerricde · · Score: 2

    If I share software with you I can't simply tell you where the source is, I have to give it to you or make a written offer?

    Say my sister doesn't have access to the Internet. Given only a URL, how is she supposed to fetch the source code? (Read More...)

    --
    Will I retire or break 10K?
  12. Source several OOMs bigger than the binary? by yerricde · · Score: 3

    I'm developing a video game to be released under the GNU General Public License. The binary (executable + video and sound assets) will be about 256 KB, and the source code for the executable portion of the file plus the custom build tools is about 256 KB. The problem is that the "source code" for the whole project, as defined by the GPL, may exceed 50 MB (primarily large lossless video and sound files), and because this is my first project, I can't afford very much web space. I can't re-license the software because it uses the LZO compression library, which is licensed under the GNU GPL, not the Lesser GPL. (I can switch to any other packer library with similar speed, but I don't want to have to go all the way back to RLE compression.)

    If the source code is several orders of magnitude bigger than the binary and requires manual processing in the build process, how should I distribute my software electronically in order to comply with the letter and spirit of the GNU GPL?

    --
    Will I retire or break 10K?
    1. Re:Source several OOMs bigger than the binary? by ttfkam · · Score: 3, Insightful

      I would suggest talking to a lawyer about it (and/or contacting the FSF), but don't forget snail mail.

      You can put just what you need online and provide the complete "source" via CD in the mail if requested. Remember that you can charge for the materials necessary to mail them a copy so that it's not an undue financial burden. If your game turns out to be quite popular, check around for hosting; there are folks out there who have the bandwidth and need a reason for people to come check out their services.

      If it doesn't turn out to be that popular a game or folks just don't care about the source (it happens a lot), then it's a moot point anyway. But in the event that it is popular, there are options open to you. If anything, I would think the FSF would rather shell out the server space than let a popular piece of GPL goodness get mired down in programmer exhaustion.

      --

      - I don't need to go outside, my CRT tan'll do me just fine.
    2. Re:Source several OOMs bigger than the binary? by tunah · · Score: 2

      Stick the video and sound assets into a seperate file (like iD did with their .pak files with quake). This may have other benefits, but in particular it means that the assets don't have to be GPL'd, so you're in compliance with the letter of the law. If you want to (and I presume you do), provide compressed versions of the assets (eg make the asset library a simple zip file). Technically now the assets wouldn't be covered by the GPL, just everything else. If you are concerned about that, just write an exception into your copy of the GPL. It's sacred, but not *that* sacred. :)

      --
      Free Java games for your phone: Tontie, Sokoban
    3. Re:Source several OOMs bigger than the binary? by yerricde · · Score: 2

      You can put just what you need online and provide the complete "source" via CD in the mail if requested.

      I've considered that, but the GPL FAQ states: "The GPL insists that redistributors of binaries without sources provide an offer in writing to send the sources, because that's the only way we can make sure that users can get the sources. So if you want to distribute binaries by anonymous FTP, you have to distribute sources along with them."

      In other words, if I distribute binaries electronically, I have to either distribute source code electronically or restrict binary distribution to those who own a printer.

      From the GPL FAQ: "This should not be hard. If you can find a site to distribute your program, you can surely find one that has room for the sources." I'm not sure that the authors of the GPL had situations in mind where the source code is several orders of magnitude larger than the binary.

      If it doesn't turn out to be that popular a game or folks just don't care about the source (it happens a lot), then it's a moot point anyway.

      If I do not comply with the letter of the GPL from the outset, I am infringing the copyright on the LZO library, and Markus F.X.J. Oberhumer can sue me for up to $150,000 in statutory damages under U.S. copyright law.

      The only way I can truly make this a moot point is if I can make a case that the way I store asset files (essentially a file system within the ROM) counts as "mere aggregation" under the GPL.

      --
      Will I retire or break 10K?
    4. Re:Source several OOMs bigger than the binary? by ttfkam · · Score: 2
      The GPL insists that redistributors of binaries without sources provide an offer in writing to send the sources...

      You assume that an offer in writing cannot be in electronic form. Is a README file or LICENSE file not "in writing?" There is no provision of which I am aware that mandates a piece of paper dictating your intentions.

      IANAL, but if LICENSE files did not constitute a legally binding contract, how would the BSDL or the GPL ever have an effect? As I said before, I would suggest contacting a lawyer and/or the FSF, but I don't think this is as big a problem as you are making it.
      --

      - I don't need to go outside, my CRT tan'll do me just fine.
    5. Re:Source several OOMs bigger than the binary? by spitzak · · Score: 2
      I don't think there is a problem. The compressed video and sound are fine, as they are playable using the open-source code and can easily be considered the "usual form of the source". For instance you can easily imagine a game devloper who just keeps the compressed versions.

      I think in fact you are trying to make a bogus example to show that the GPL won't work. It works fine.

  13. Re:Being a "cheapskate" and software freedom. by ttfkam · · Score: 2
    The GPL has to account for people passing copies of GPL-covered software via other means too. I don't know about you but I have manually passed out copies of GPL-covered software to people (I always put the complete machine-readable source code on the same medium as the binaries if I'm distributing binaries). These people deserve source code too.

    But then doesn't this make you their distributor?

    If I get a CD from GPLCorp Inc. that contains only binaries, make copies of the CD, and give away the copies to a group of people, is GPLCorp Inc. still responsible for sending source to all of these people? Or have GPLCorp Inc.'s resposibilities ended with providing a source CD only to me, and am I now the point of contact for all of these people? I should hope it's the latter.
    --

    - I don't need to go outside, my CRT tan'll do me just fine.
  14. Re:Ignorance does not always lead to bliss. by Twylite · · Score: 2

    Ensuring freedom for who, exactly? When I develop software "for free", I want people to use it. The more people use common libraries, the less we are faced with a diversity of protocols and formats. That means commercial organisations too - FSF/OSS developers spend most of their time playing "compatibility catchup".

    But most importantly, the GPL fails in its efforts to encourage code sharing, because it locks out the largest potential resource of high-quality, useful code: business.

    Business can't use GPL code in its products, and is skeptical about LGPL (with good reason: see section 6 of the LGPL!). So it doesn't use (L)GPL code, doesn't contribute back (via testing, maintenance or extension), and neither side benefits. The only time businesses LIKE the GPL is when they release their own code, because it restricts competitors from using it.

    BSD licenses OTOH allow everyone to share. Sure, some people abuse the situation. But the community loses nothing in real terms.

    --
    i-name =twylite [http://public.xdi.org/=twylite], see idcommons.net
  15. Re:Being a "cheapskate" and software freedom. by JanneM · · Score: 2

    OK, first, I totally missed that section on electronic distribution. Seems that if you offer the software through FTP, offering the source on the same site will fulfill any obligations. That'll teach me to actually find the facts before spouting. :)

    As I read it, I don't think the mail requierement is in force when distributing over the net. In any case, the 'customary medium' for source distribution today is the net, not a physical medium - I don't even own a CD-ROM, and I haven't used an actual floppy for at least a year.

    The thing about #8 is still very confusing. I wasn't trying to send a message; I apparently thought LGPL allowed different things than it actually does. What, exactly _is_ the point of LGPL if you can't link an LGPL lib with proprietary code without opening that code? Seems there is room to define a license like "This is GPL, with the exception that you may freely dynamically (ie. at runtime) link this software with software bearing any license without any obligations of the GPL having any effect on that software".

    /Janne

    --
    Trust the Computer. The Computer is your friend.
  16. What if each disc can hold only one file? by yerricde · · Score: 2

    Stick the video and sound assets into a seperate file

    The target system uses interchangeable ROM cartridges and has only one ROM connector. I don't want the user to have to swap cartridges several times during game play, and I don't want to have to provide two expensive ROM cartridges in each package.

    (like iD did with their .pak files with quake)

    I'm already storing asset files in .gbfs archives. (The .gbfs format is an archive format I designed, somewhat similar to .tar, .pak, .zip, .jar, .dat used by other programs.) However, because a program on the target system can access only one file (the ROM), I have to concatenate the asset files to the end of the executable. Does concatenating several files count as "linking" if I also provide a tool to extract the individual .exe and .gbfs files?

    If you want to (and I presume you do), provide compressed versions of the assets (eg make the asset library a simple zip file).

    I already do that, but the assets are already 20 MB zipped before counting the lossy compression used to pack the assets into the pak file. Lossy compression of source code is not permitted by the GPL, as a lossy compressed audio or image file is no longer "the preferred form for making modifications to the work."

    If you are concerned about that, just write an exception into your copy of the GPL.

    I am not authorized to do that. The program includes a library (M.F.X.J. Oberhumer's LZO) under the GNU GPL, and I am not permitted to link it against anything not under the GPL. I cannot contact Mr. Oberhumer because he does not accept mail not encrypted with PGP, and I cannot use PGP because I don't know anybody who would sign my keys.

    If concatenating several files in a reversible manner does not count as "linking," then I don't have a problem.

    --
    Will I retire or break 10K?
  17. Re:Being a "cheapskate" and software freedom. by JanneM · · Score: 2

    Such a license would go against the whole point in using the GNU GPL. Free Software developers have to make advantages for one another and produce software that is Free Software. Linking with non-free software is antithetical to the Free Software movement because this movement maintains everyone should have the four fundamental freedoms of Free Software for all of their software. Distributing software linked with non-free software prevents people from having complete software freedom (more specifically, studying, modifying, and distributing source code).

    Granted. However, given that I need to develop closed software, I need to know whether I can use LGPL licenced components or if I have to look at other options. What really worries me is that gcc (and glibc) may be too restrictive, licence wise, to develop closed software at all - in which case I kind of wonder why FSF have not gone after those who do so.

    In any case, if we release any libraries or other code, the alternative is probably a non-FSF license, seeing how the LGPL does not do what we need.

    /Janne

    --
    Trust the Computer. The Computer is your friend.
  18. FSF: Binary FTP requires source FTP by yerricde · · Score: 2

    I'm not aware of the part of the GNU GPL that requires "electronic" distribution.

    But the GPL FAQ states that if the binaries are distributed electronically, the source code must also be distributed electronically. The sheer size of the source code may prohibit me from distributing the software electronically at all.

    Also, if the work is not a derivative of anything GPL'd, the GNU GPL would not apply to you (assuming you are the copyright holder on this work)

    I am not. Read what I had written: "I can't re-license the software because it uses the LZO compression library, which is licensed under the GNU GPL." The LZO library was written by Markus F.X.J. Oberhumer, who does not have a plain e-mail address.

    This is a non-problem if and only if reversibly concatenating an executable with asset files counts as either "mere aggregation" and/or "just data" under the GPL.

    --
    Will I retire or break 10K?
  19. Re:Copyright power is great and long-lasting. by Twylite · · Score: 2
    The LGPL does not make you use the LGPL as the license for your derivative work, but it has some say in what the license for your derivative work must allow

    My point was very simply that the LGPL is itself a viral license: section 6 requires that a work linked to LGPL covered code be modifiable. It implies that object code (so that the work can be relinked against a modified version of the library) is sufficient, but this is unclear, as the section refers to two different things as constituting "a work".

    At the very least, this means that if you use g++ to compile your C++ programs (which will then in all liklihood uses the facilities of libstdc++, which is covered by the LGPL) you must distribute the object files to allow relinked against a different version of libstdc++. At worst, it requires you to make your source code available to customers.

    --
    i-name =twylite [http://public.xdi.org/=twylite], see idcommons.net
  20. Re:Ignorance does not always lead to bliss. by Twylite · · Score: 2

    I am fully versed in the FSF's philosophies. I just disagree with them. I do not find the GPL in the interests of "all computer users" because it has serious (negative) implications for creativity, standardization, and the sharing process.

    RMS's rampant anti-Copyright arguments are fatally flawed in their assumption that software can exist in a form beneficial for all, without an economic model. RMS has also brainwashed people into accepting his explanation of "free speech" versus "free beer". The GPL enforces (not merely permits) "free speech", but also "free beer".

    What this means for the man in the street is Bad News. Seeing a need, an industry can produce software to fulfil that need. In doing so it engages in economic activity, providing jobs to people like (surprise surprise) us. But if it must use the GPL, it can only be guaranteed a single sale. The first purchaser is permitted the rights to modify and redistribute the software, and resell it. No, not just it - but infinite copies, at any price (s)he choses. So it comes down to the fact that business cannot survive under an "only GPL" model.

    On the flip side of the coin, let's assume that business is NOT involved. Free Software developers have got together and made a product. The end user STILL loses. Why? Because free software is notoriously shit compared to commercial alternatives when it comes to usability. It is typically made by geeks, for geeks. More specifically, the free software movement today is characterised by following. All of the features present in "productivity apps" (those which are of interest to normal home users) have debuted in commercial software, and the ideas simply copied.

    All of this goes to say that the GPL stifles creativity. When there is no economic incentive, creativity declines.

    Very few people benefit from the "freedom" offered by GPL software, unless we're talking "free beer". The vast majority of end users do not have the means to use the source code, and are confused and intimidated by the GPL. This reduces the sharing process. I am bound by severe legal constraints if I choose to give a copy of a GPL application to someone. I must include the source code (inconvenient, since I may not have chosen to obtain it), or provide an offer to provide the person with the source code. The GPL says it is NOT sufficient that I merely direct the recipient to the web site of the original source code (even if I haven't made any modifications), because as the distributor the onus is on ME to provide the source.

    So much for easy sharing.

    Which brings me to standardization, the central topic of my original post. Contrary to your belief, I don't want businesses to be treated as charities. I want meaningful contribution in both directions. And given the history of the situation, I don't believe this can be achieved using the GPL.

    The FSF can treat itself as a sole light in the darkness of Copyright, fighting to bring a new age of Enlightenment to desktops near and far. And it can fail, because its efforts are continually divided by the (perceived) requirement to provide compatibility.

    Or it can make reasonable efforts to reconcile its philosophy with that of the rest of the world, and work together nicely for a better future. And that means a give-and-take relationship with industry. "You can't have this unless you give us the commercial product its going to be a tiny part of" is not a give-and-take relationship.

    The BSD license allows a business to benefit from free software. And it allows the business to contribute back in a manner it sees fit. A business almost certainly doesn't want to spend millions developing a commercial product, and then give it away for free (speech and/or beer), but it is likely to be willing to contribute extensions, fixes, and code that doesn't threaten its commercial model back into the free software space.

    Or, to put it another way: if you don't give them anything, why the hell should they give something to you?

    There are very few companies that can, or do, practice "embrace and extend". It only works effectively if you are a monopoly.

    --
    i-name =twylite [http://public.xdi.org/=twylite], see idcommons.net
  21. So how do I get my GPG key signed? by yerricde · · Score: 2

    So don't distribute your work electronically.

    Would you get one of, say, the media player apps if you couldn't get it for free online?

    So much of this issue centers on your erroneous belief that the GNU GPL requires you to distribute electronically.

    I understand that the GNU GPL does not require this, but the behavior of the typical Internet surfer does. The typical Internet surfer would rather just click the little X button in the upper right corner of her browser than order a CD on an impulse. And if I start selling CDs online, I have to pay upwards of $200 per year for an SSL certificate to protect my e-commerce from the man in the middle, don't I?

    You could accede to Oberhumer's wishes and try GPG

    I have considered this path. However, when I looked into GPG, I found no way of getting my key signed by a prominent GPG user, or even by any GPG user. Isn't that a prerequisite for entering the "web of trust" or whatever they call it?

    phony electronic distribution requirement

    You try selling a game that doesn't have a downloadable playable demo. Players like to know what they're getting into before they buy something.

    --
    Will I retire or break 10K?
  22. Not bogus. Here's the name of the project: by yerricde · · Score: 2

    The compressed video and sound are fine, as they are playable using the open-source code and can easily be considered the "usual form of the source".

    From the GPL: "The source code for a work means the preferred form of the work for making modifications to it." Would you rather make modifications to a sound recording using a single stereo Ogg file, using a single stereo PCM WAV file, or using WAV files of the individual tracks (one per instrument) plus the script for the mixer?

    I think in fact you are trying to make a bogus example to show that the GPL won't work. It works fine.

    --
    Will I retire or break 10K?