Slashdot Mirror


LGPL or BSD-Style License for Media Codecs?

Josh Coalson asks: "I am the author of FLAC, an open-source lossless audio codec. The core of the project is a reference encoder/decoder library currently licensed under the LGPL. As the format grows more popular I am being been approached by third parties about implementation in proprietary hardware systems. This is natural and I don't have anything against it, but several people are voicing concerns that the LGPL is too strict for use in embedded systems. I want the codec to remain Free, but then again, wide adoption of a format makes it more useful to all users."

"More specifically, the nature of many embedded systems force them to be bound by the stringent requirements of Section 6 the LGPL. In some cases, dynamic linkage is not possible, ruling out 6(b), or causing the terms of the FLAC library to come into conflict with other proprietary libraries. In other cases, it simply is not possible to provide an environment, according to 6(a), where the user can re-link with a different copy of the library.

What are my options? I could stick to my guns, which might limit the adoption of the format, or change the license. I know Vorbis uses the BSD license, but I feel strongly about modifications that are useful for others going back into the free code base. Perhaps there is another middle-ground license that could preserve the Freedom of the code in these cases? Or maybe I am not interpreting the verbiage of the LGPL correctly? Can't I have my cake and eat it too?"

203 comments

  1. Oh don't worry about licensing... by tswinzig · · Score: 5, Interesting

    If the people really like your media format, they will just use it however they like, even if its patented.

    Just look at MP3.

    Now for a more serious answer... Why don't you just re-license it to specific companies that you want to see use it? Maybe even for a re-licensing fee, so that you can make some money off your open source software.

    --

    "And like that ... he's gone."
    1. Re:Oh don't worry about licensing... by pieterh · · Score: 2, Interesting

      The xGPL licenses seem most useful for keeping source code out of predatory hands. However, the BSD licenses encourage the widest possible use.
      The best way to keep control and yet get a wide distribution is to write your own specific license that allows use and modification within certain conditions - e.g. that all changes are provided back to you. Making money is also a very healthy idea. Finally, I don't believe that individuals and small organisations can seriously follow-up on license breakers. If someone wants to steal your product, idea, or code, they will. You simply need to make it easy for the honest majority to use your work.

    2. Re:Oh don't worry about licensing... by aridhol · · Score: 2, Insightful
      write your own specific license


      Or, better yet, get a lawyer to write it for you.
      --
      I can't say that I don't give a fuck. I've just run out of fuck to give.
    3. Re:Oh don't worry about licensing... by Anonymous Coward · · Score: 0

      The biggest problem with this is that most people aren't remotely qualified to write a software license. The legalese involved is a nightmare, and "home-grown" licenses usually come up short (just take a look at the Artistic License).

      I would say that dual licensing it can work, or you can re-license it (as the original copyright holder) for specific third parties. Here you can run into lots of troubles, and would need a good lawyer to help you out. Also, you need to make sure you hold the copyright, and not a third party (such as the FSF, etc).

  2. Perhaps... by gfxguy · · Score: 2, Interesting

    you could release the current version of the library to them under a different license (a contract giving them special permission to use the current version of the library in their proprietary product).

    You might even be able to make a couple bucks off it.

    The library - current and future versions - would still be free.

    --
    Stupid sexy Flanders.
  3. ERK ERK ERK by Anonymous Coward · · Score: 0

    FAP FAP FAP

    WERD

    Does anyone have a moist towellete?

  4. If the code is yours... by Molech · · Score: 5, Informative

    IANAL, This may have been said already, but if the code is all yours(or if contributors have signed over the copyright), its yours to do with as you see fit. That includes relicensing(maybe for a fee, maybe not) with companies doing embedded systems. Now what gets sticky is if you have accepted patches not written by you, then you are bound by LGPL on that code, and thus can't do that, but if all the code is yours go for it.

    1. Re:If the code is yours... by Arethan · · Score: 3, Informative

      This is exactly what Sleepycat Software does with Berkely DB.
      They will accept patches to their code, but not many of them ever make it in, and the ones that do make it in have the requirement of having the copyright signed over to Sleepycat. Effectively making them the sole owner of the codebase. Which, in turn, allows them to sell a relicensed version of their code to embedded manufacturers. Using this model, they've kept a positive income since day 1.

    2. Re:If the code is yours... by gazbo · · Score: 2, Interesting

      He has said that what he wants to do is keep the format free (as opposed to selling licenses)

      I believe that BSD would be a better choice of license; I don't think I could explain it better than Zeev Suraski did when he announced PHP moving to a pure BSD license at the PHP developers conference (apologies if I misquote, this is from memory):

      GPL is based on the concept that software should be free; BSD license is based on the concept that people should be free

      I think that sums it up wonderfully. RMS is so obsessed with licenses protecting the freedom of software that he seems to have made it to restrictive for the people using it.

      Oh shit, on previewing, it looks like I'm trying to start a flame war.
      >Bastes self ready for roasting<

    3. Re:If the code is yours... by renehollan · · Score: 5, Insightful
      If there is a free version, and your code is useful (and flac looks like it is), you will get patches. It would be a pain to not be able to include them in the non-free version if only because of the maintenance difficulties that a license-based fork would cause.

      Of course, contributers could agree to let their contributions be dual-licensed as well, but it strikes me as unfair that you'd get paid by proprietary licensees for those contributions and the contributors get nothing. This would discourage dual-licensed contributions and lead to a license-based fork soon enough. This would be less of a problem, I suppose, if you received no compensation from proprietary licenses, but that would be unfair for you.

      There is a way out, though, that would (I think) let you GPL the code, and still be able to use it in proprietary products, but it is one hell of a kludge, and relies on a fair amount of trampoline code.

      The GPL requires all statically, and depending on who you ask, dynamically (RMS, of course, says "yes, dynamically too" [my paraphrase]), linked code to be GPL if the result is distributed (an exception is made for libraries normally provided with the O/S, but what is O/S and what is app gets sticky in an embedded environment). However, non-complex communication with non-GPL code via pipes or sockets is O.K. "Non-complex" here is a matter of interpretation, but a classic server or filter utility is generally fine.

      It strikes me that a codec can be interpreted as a filter, or simple server, in a loop-backed TCP/IP networked environment, so this could work. Is this overkill? Sure, but it would avoid the licensing issue completely: embedded systems could just ship with the source. I suppose that even that would not be necessary if the system were ordered on-line -- then an FTP server would suffice.

      From a technical standpoint, this does introduce a lot of pressure on the embedded side: you need a whole TCP/IP stack and ROM and RAM tend to be precious in such systems. The overhead of packetizing and unpacketizing will require a bit of a beefier CPU to boot. I tend to think that even the smallest embedded systems today could handle that, but it is a concern. Of course, the network type the sockets use doesn't have to be AF_INET, permitting some short-cuts.

      As a bonus, the pipe- or socket-based codec would be useful in a processing stream on non-embedded systems -- if you provided a traditional library instead, someone would quickly write such a filter (in the Unix sense, not the audio sense) app anyway.

      --
      You could've hired me.
    4. Re:If the code is yours... by KjetilK · · Score: 2
      Well the problem with this approach is that those who join your project, submitting patches, working on the codec, etc., they need some predictability. To work on a project, you need to know that the leader of the project, the copyright holder, isn't going to run off doing something weird.

      Therefore, I would encourage the use of soem well-known license.

      --
      Employee of Inrupt, Project Release Manager and Community Manager for Solid
    5. Re:If the code is yours... by bfree · · Score: 4, Insightful

      Traditional Flamebait, traditional response :-)

      The problem with the BSD approach of "people should be free" is that it gives people the freedom to destroy the work upon which they are building. What if MS had realised early enough that the Internet was the Next Big Thing and had incorporated the BSD TCP-IP stack in from Dos 3 (for example) but they had modified it slightly so you could work on the MSNet or the Internet? Who would have won the war? Would the net have split? It seems ridiculous now, but then it could have been fiery if they had done early enough!

      The GPL is far more than a BSD licence, it imposes a simple (in theory and concept but maybe not practice yet) set of rules which say that anyone who receives the work under it cannot undermine the project by releasing closed incompatible versions. What if MS now pick up Ogg Vorbis and use a minorly modified but incompatible version for their prefered audio format from now on? These new users will be orphans from the existing user base, benefiting from its work, but unable to benefit from the Freedom they would have had were it still GPL. So BSD does not make people free past one generation (each BSD receiver is free to do what they want, but their users are not free) whereas the GPL makes the software Free and all the users free, the developers are as Free as is possible while preventing them from having the opportunity of reverting some of the benefits of the Freedoms the GPL is designed to uphold.

      --

      Never underestimate the dark side of the Source

    6. Re:If the code is yours... by peter · · Score: 1

      Holy overkill, no need to use TCP or any kind of network socket for local loopback. A simple pipe will do fine. (see pipe(2) and popen(3)) However you do the loopback, you still have the codec in a separate process from the rest of the app, so seeking and stuff like that might be slower. There wouldn't be much of a disadvantage for en/decoding a stream, since even a few memory->memory copies of the data would be small overhead compared to the codec runtime (I don't remember how fast flac is, but I don't think it is a real speed demon).

      --
      #define X(x,y) x##y
      Peter Cordes ; e-mail: X(peter@cordes , .ca)
    7. Re:If the code is yours... by Anonymous Coward · · Score: 0

      "but they had modified it slightly so you could work on the MSNet or the Internet"

      I think the traditional BSD response would be "So what?". As it stood, Microsoft DID come up with a proprietary MSN protocol (shipped with W95), and nobody used it.

      The primary attraction for those who want to "steal"* Berkeley TCP/IP was always interoperability with other systems. That's why the US taxpayers funded TCP/IP work at UC to begin with, and why TCP/IP beat out the gazillion proprietary protocols that were in use 15 years ago.

      *I love this rhetoric because it implies that Bill Joy "stole" the BSD code that he himself wrote when he went off and founded Sun Micro with the motto "The Network Is The Computer". But everyone ignores that and focuses on the MS WinSock and FTP utility and other minor uses of BSD code in Windows from 10 years ago.

    8. Re:If the code is yours... by IronChef · · Score: 2


      If MS had realized that early enough, they would probably have written their own TCP-IP stack if they had to anyway.

    9. Re:If the code is yours... by AbsoluteRelativity · · Score: 1

      > Of course, contributers could agree to let their contributions be dual-licensed as well, but it strikes me as unfair that you'd get paid by proprietary licensees for those contributions and the contributors get nothing.

      The ideal situation is where most of your contributors dont depend upon making money from the contribution, but instead contribute for the benefit of influencing and stabilizing the project. That is where someone needs the software to be patched to work the way they need it to, as oposed to people patching and doing things that are unnecesary at a point in time. If a project makes money on the side, that money will more then likely keep the project alive, at the very least the mainter will see they have made money from this and either reinvest them money in the project or use that money to work more on the project, and incorporate patchs quicker (which a lot of us who do contribute like). Most of the code I have contributed to any project have been license free, that is I literally gave it *free* (license free) to the author so they can incorporate it under their license.

      Anyway the purpose of GPL is not that people can't make money from your work, its to keep your work in the realm of free speech. That is users can see and modify your code, you can see what changes they have made to your code, and you can see how your code holds up when used by other people, etc.

      --
      disclaimer : My views do not represent those of every one else in slashdot.
    10. Re:If the code is yours... by Anonymous Coward · · Score: 0
      Of course, contributers could agree to let their contributions be dual-licensed as well, but it strikes me as unfair that you'd get paid by proprietary licensees for those contributions and the contributors get nothing.

      This problem exists with any open source license, unless all those royalty checks from Red Hat for my patches to GPLed programs they distribute got lost in the mail.

  5. OGG dual licensed by Kevinv · · Score: 1

    OGG guys dual licensed their libraries and SDK's under GPL and BSD for the same reason.

    http://www.vorbis.com/faq.psp#flic

  6. codecs by Anonymous Coward · · Score: 0

    are a sticky subject. LPGL'ing anything in itself is a tricky subject.

    60623

  7. Ogg Vorbis Went Through This by gagravarr · · Score: 3, Informative

    Initially, ogg vorbis was GPL/LGPL. They to wanted lots of people to use the format, implement it in hardware etc. The result is that sometime around Beta 3, they went over to the BSD style license.

    --
    This post will enter the public domain 70 years after my death, unless Disney buys another extension.
  8. Interesting timing by CaseyB · · Score: 2
    It's funny that this should follow so closely on the heels of this other slashdot article about a hardware audio player that stores uncompressed digital audio. There were several comments posted suggesting that the device should have used compression -- specifically FLAC.

    I wonder if somebody at Linn reads /.!

  9. Ginger by Anonymous Coward · · Score: 0

    Totally off topic, I know, but Slashdot won't post the damn thing. The "Ginger/IT" invention is to be revealed next week on Good Morning America. Here is the wave file of Diane Sawyer telling about the unveiling. http://jedstar.com/ginger/

    1. Re:Ginger by Anonymous Coward · · Score: 0

      IT was already revealed on South Park, and it was much more amusing.

    2. Re:Ginger by Anonymous Coward · · Score: 0

      I missed that one! Damn!

    3. Re:Ginger by Anonymous Coward · · Score: 0

      That's because we all know it's a stirling-engine powered motor scooter.

    4. Re:Ginger by Anonymous Coward · · Score: 0

      What, and that's not good enough? It would revolutionize the developing world. Not to mention change the way people in the city travel. I suppose you want a flying car or something. Anyway, I think it will be interesting to see what it turns out to be.

  10. Re:Slashbot Copy n' Paste Reply Table by Anonymous Coward · · Score: 0

    +5 Informative!

  11. You can have several licenses by famebait · · Score: 2, Informative

    You own the copyright. There's nothing to stop you from licensing your code under different terms to select users in
    parallel with your main LGPL distro. What that license would be is a subject of normal negotiations between you and your 'clients', and could even be a custom-written license to make sure that even the changes made in order to embed are released to the public.

    --
    sudo ergo sum
  12. Ogg Vorbis Example by jeriqo · · Score: 5, Informative

    Maybe you should use both licenses, like OggVorbis did.
    The bundled OggVorbis utility software is released under the terms of the GNU GPL, and, the libraries and SDKs are released under the more business friendly BSD license.

    Note that developers are still free to use the specification to independently write closed-source implementations of OggVorbis which are not bound by these licenses.

    --
    Alexis 'jeriqo' BRET
    1. Re:Ogg Vorbis Example by Anonymous Coward · · Score: 1, Interesting

      I personally like the BSD liscense for this issue. The problem is that comapines or individuals can repackage your code in their product (they still have to give copywright, credit info though).
      In all, that's the main problem, but not that specifically. The developer says that he wants FLAC to gain usage, but it's quite possible that by letting some firm use it in their code base, that they make something codec incompatible with the FLAC spec.

      What he needs to do is Copyright the format and the code (music cd's all have the DigitalMusic CD logo on them, indicating compliance with the redbook CDDA spec.) This is to insure that even if they modify the code, the audio must still be decoded by any FLAC compliant decoder. Take MP3 for example: There's a great range of encoders and decoders, each having their own benefits. According to the spec, however, any MP3 should be able to play on any decoder, even if they don't reproduce it exactly the same.

      Of course, this means that you have to make future versions foward compatible too. You can't change the API once it is started. Change the internals, sure, NOT THE API. This is the feature that made MP3 big, and it's the keystone in creating a new format that wants to be prevasive.

  13. So true... by Anonymous Coward · · Score: 0

    Even trolls occasionally make nice posts.

  14. Argh. Well, what is it YOU want? by mindstrm · · Score: 2

    Firstly, if it's your project, you can license and re-license it however you want.

    Secondly, you can't have your cake and eat it too.

    It sounds to me like you basically just don't know what you want. Do you want any changes made and distributed to be shared with everyeone, or do you want peopel to be able to take it and do whatever they want with it, even if it's proprietary and closed? IT's pretty simple.

    If you want something in between, write your own license terms.

    Nothing is stopping you, as copyright holder, from keeping it under lgpl, but licensing it under a royalties scheme to a 3rd party commercial entity.

  15. You Don't Seem to Know What You Want. by Anonymous Coward · · Score: 0

    The question doesn't make much sense, but neither does your site. You can't release something into the public domain (the specs for the codec) AND 'retain the right to change the specification and certify compliance.'

    I would encourage the embedded people to write their own implementation and stay far far away from your supposedly 'free' implementation.

  16. Change your business model by Walter+Bell · · Score: 3, Insightful

    As somebody who has worked on a few commercially available embedded devices, I would like to comment on this:

    The LGPL gives your users quite a few freedoms that they would not ordinarily have under the GPL. To take advantage of this, you will need to change your business plan so that it is based on selling or giving away support, not selling or giving away a scarce product. If the codec is superior and the source code is available, there is no reason why anybody would balk at it being LGPLed.

    You should also ask yourself: who would potentially object to an LGPL code base rather than one licensed under the BSD license? My guess is that the only people who would benefit from you using the BSD license in this case are parasites who seek to sell your hard work for their own personal profit. I don't think they're the ones you want to please; your users are more important.

    Just my 2c.

    ~wally

    1. Re:Change your business model by Anonymous Coward · · Score: 2, Funny

      THOSE PARASITIC BSD BASTARDS! They give me all of their code for free, but they won't try to tell me that I have to do the same thing. I hate those fucks!

    2. Re:Change your business model by Anonymous Coward · · Score: 0

      Why did you rule out "troll" so quickly? Check out my posting history.

      ~wally

    3. Re:Change your business model by Anonymous Coward · · Score: 0

      Troll is a proper subset of the idiot category. All members of set "trolls" are members of the set "idiots".

    4. Re:Change your business model by Erasmus+Darwin · · Score: 3, Interesting
      "You should also ask yourself: who would potentially object to an LGPL code base rather than one licensed under the BSD license? My guess is that the only people who would benefit from you using the BSD license in this case are parasites who seek to sell your hard work for their own personal profit."

      If you reread the article text, you'll see that it emphasizes embedded systems. These are people doing things that would be 100% A-OK if they were using the same business model on a regular, full-featured PC where dynamic linking was an option. More specifically, someone can already write a closed-source, commercial player that only dynamically links with the LGPL'd codec.

      However, in an embedded system, resources tend to be much more scarce. You don't always have the luxury of people able to dynamically link in the codec. It's still the same conceptual act of providing a commercial player that uses a free codec, but it violates the license due to hardware constraints.

      I will agree that the BSD license would benefit parasites interested in pulling an embrace-and-extend on the FLAC standard itself, but it also benefits people who want to be able to, say, add FLAC support to an existing portable mp3 player without giving away all their non-FLAC-specific code on that system. While such a case is contrary to the hardcore free software goal (everything should be free as in speech), I don't think it necessarily violates the FLAC goals, as FLAC was obviously consciously placed under the more flexible LGPL.

    5. Re:Change your business model by Anonymous Coward · · Score: 0

      Ooooh, AC took a math class. Ooooh.

    6. Re:Change your business model by Snocone · · Score: 2

      THOSE PARASITIC BSD BASTARDS! They give me all of their code for free, but they won't try to tell me that I have to do the same thing. I hate those fucks!

      Mod parent up :)

    7. Re:Change your business model by slaytanic+killer · · Score: 1

      You have made an error of omission. The author could put it under the LGPL and then accept requests to ease the LGPL's requirements.

    8. Re:Change your business model by b100m · · Score: 1

      Agreed. The LGPL is used for embedding is it not? It doesn't get much friendlier that that.

      just my $0.02

    9. Re:Change your business model by Anonymous Coward · · Score: 0

      I wish I could both mod up the parent post (I think it's hilarious) and highlight a subtle problem its point. I may try. :)

      It's not parasitic to release your code under a BSD license. Everybody knows that. It's one of the freest ways to give your code away and still retain copyright.

      However, someone else asking you to release under BSD -- especially without some kind of compensation -- is sortof questionable....

  17. If they want your codec in proprietary systems... by Codifex+Maximus · · Score: 2

    let them negotiate a separate license contract with you.

    I'm sure that will clear up any questions, ambiguity or doubt.

    --
    Codifex Maximus ~ In search of... a shorter sig.
  18. BSD won't let you sofware free. by famazza · · Score: 4, Insightful

    By using BSD-type license you let your code to every software house uses it as they want. It can even release a version using your "free" code using a non-free license.

    Perhaps as you said LGPL will be very restrive for embedded systems, you are almost right, there's no how to recompile embedded software.

    I think you have 3 choices. Fork LGPL and build your own version with a special paragraph for embedded systems. Build a special version of your library with another license.

    Or you can ask every potencial "user" (the library user is the programmer/projectist) to find a way to easily update the firmware and allow the user to compile it.

    I think that the second option is the best, but you can choose. :o)

    --

    -=-=-=-=
    I know life isn't fair, but why can't it ever be un-fair in MY favor!?
  19. BSD license all the way... by DrBoom · · Score: 3, Insightful

    It meets every definition of "free" that matters.

    Sure, someone can take the source and do things to it without feeding it back to the community, but they then run the risk of making their implementation incompatible with everything else. They also bear the burden of maintaining their own fork of the code. Speaking as someone who is considering using flac for internal use in a commercial setting, I can tell you that these are powerful disincentives to doing silly things with the code.

    The (L)GPL's virus-like qualities make it a hard sell to the PHB's ... even PHB's like me that believe in free software.

    --
    --------------- Murphy was an otpimist.
    1. Re:BSD license all the way... by Asic+Eng · · Score: 3, Insightful
      Yes, and if the company taking the code is big enough, they can push their derived implementation on the market. For example by making a nice tool to generate files which use the (slightly modified) codec, and giving the tool give away for free. Then they make the changes a "trade secret" making sure *your* player can't play the files using their derived format. If they want they can throw a patent in, too. However even with just a trade secret they can lock you out effectively, thanks to the DMCA.

      IIRC the Kerberos protocol had similar problems at one point.

      What's the problem with LGPL? The code you write remains yours, you don't have to give it to anyone, and if you really want to change the codec, then you have to publish your changes. Seems like a damn fair deal.

      This BSD approach is nice and kind, but if you have to compete with Microsoft, that approach is doomed to failure.

    2. Re:BSD license all the way... by rtaylor · · Score: 2

      MS's Kerberos is a heck of alot closer to usable with other systems (works quite well if you use the base) than it would be if it was GPLd. They would have had a 100% new product.

      Think about that for a minute. TCPIP stack is in the same boat. All the initial recipiants of it extended it a little BUT the fact we're still using it today should indicate something to you. They were good extensions.

      --
      Rod Taylor
    3. Re:BSD license all the way... by DrBoom · · Score: 2, Insightful
      Yes, and if the company taking the code is big enough, they can push their derived implementation on the market. For example by making a nice tool to generate files which use the (slightly modified) codec, and giving the tool give away for free. Then they make the changes a "trade secret" making sure *your* player can't play the files using their derived format.

      That's a risk, yes, but how often does it really happen? I will grant that the old BSD license was actually better in some ways since it required acknowledgement of the original authors of the code -- not a terrible onerous requirement. Still, if the company in question is, say, a certain large evil empire(tm) (or even a malignant barony), do you really think the GPL is going to prevent them from grabbing whatever code they feel like grabbing?

      I'm sure it happens all the time, but it's kind of a karma thing: $DIETY will eventually make them pay for their sins.

      I can give a good example of how some businesses look at this sort of thing, and why: I found some source code on the net for a really useful piece of microcontroller code that would save a lot of development time in a project my company is working on. The "free" license spelled out in the source is restricted to "personal use" -- use in a commercial product is subject to a $.25/copy royalty. We modified the code to suit our purposes and could have just gone ahead and used it without saying a word. Instead, I contacted the author and let him know what we were going to do and actually paid him nearly a kilobuck more to do a code review of our modifications.

      Why?

      • It's the right thing to do. Yes, there are a lot of people who feel this is a good guide for doing business and value the ability to look at themselves in the mirror with a clear conscience every morning.
      • It's the responsible thing to do. As a manager, I have a serious responsibility to the company I work for to not break the law or expose the company to lawsuits, however slight the likelihood of fallout may be.
      • It's the smart thing to do. If I tell my engineers to go ahead and rip off code, I'm probably also telling them that it's OK to rip off lots of other things. It's bad for morale, too, and morale is THE most valuable thing in any business; you don't do things to hurt it if you can possibly help it. Nothing is worse than an apathetic, demoralized developer -- their pr0n collections go up, their output goes down, and the source begins to resemble a roach motel.
      It's just good business all the way around.

      If they want they can throw a patent in, too. However even with just a trade secret they can lock you out effectively, thanks to the DMCA. IIRC the Kerberos protocol had similar problems at one point. What's the problem with LGPL? The code you write remains yours, you don't have to give it to anyone, and if you really want to change the codec, then you have to publish your changes.

      Well, they have to publish their methods in a patent, so it would be pretty easy to figure out it it's a derivative work and show prior art. No DMCA sillines required.

      Seems like a damn fair deal. This BSD approach is nice and kind, but if you have to compete with Microsoft, that approach is doomed to failure.

      Umm, yeah. BSD is dead. Has been for a long time. I've read about it several times over the past few years, so it must be true. Oddly, the URL at the top of this post still works. Maybe they prepaid their Web hosting service and it's just running on autopilot...
      --
      --------------- Murphy was an otpimist.
    4. Re:BSD license all the way... by david.johns · · Score: 1
      You're missing part of the point, at least. In general it is not possible to create an open-source product that is popular, consistent (non-forked), and able to be commercialized.

      You can choose any two. ;)

      The reason: there is _always_ inherent value in making a closed fork if you intend to sell the code. Close forks don't have to be incompatible with originals (Kerberos, for instance) but may have additional functionality protected by other IP mechanisms such as a non-negotiable clickthrough contract that says, "I will not create a competing product" on the specification for the extensions to the otherwise open protocol.

      This allows you to enforce inequity between otherwise consistent versions of the same tool, which is called a "competitive advantage" by some people. What an amazing thing - it's in the license. The GPL has one of those, too...

      Also, BSD'd code can be grabbed and GPL'd. Won't usually do much good, but you don't have a "100% new product."

  20. LGPL. Absolutely. by DG · · Score: 4, Informative

    Any piece of software, in order to be forever useful, needs three essential freedoms:

    1) Universal availibility of source

    2) Freedom to modify that source

    3) Freedom to redistribute that modified source, under any terms you (as the modifier) wish, as long as those terms do not infringe any of these three freedoms.

    Lose any of these Three Freedoms, and the project is irrevocably harmed.

    Using a "looser" licence may help the adoption rate, initially, but you run the signifigant risk of having one of these adopters modify the code and refuse to fold those modifications back into the main tree. Once you have done that, then the project has forked, and it's whole purpose (a common standard that is sure to work anywhere) has been compromised.

    Far better that the adoption rate be slower, if by doing so it ensures universal compatibility and the retention of the project's Freedom.

    Go with the LGPL. The leading "L" allows those who would use your library to remain proprietary, if they so choose (ie, the use of your library does not force the GPL on them - the freedom to choose not to adopt the GPL at project start is important too) but ensures that the library itself remains Free and useful.

    Good luck!

    --
    Want to learn about race cars? Read my Book
    1. Re:LGPL. Absolutely. by Erasmus+Darwin · · Score: 2
      "The leading "L" allows those who would use your library to remain proprietary, if they so choose"

      It's an embedded systems issue, though. Proprietary application dynamically linked to an LGPL library on a regular PC? No problem. Proprietary application dynamically linked to an LGPL library on an embedded device? Resource problems. Proprietary application statically linked to an LGPL library on an embedded device? License problems.

      Even though people are doing what's identical in overall intent/spirit to a permitted activity, technical limitations shoot it down.

    2. Re:LGPL. Absolutely. by romanski · · Score: 1

      Proprietary application statically linked to an LGPL library on an embedded device? License problems.
      I do not think so - as long as you provide possibility to re-link proprietary (object) code to the (modified) library. Anyway he can always clarify that in "his" license that statical linking is OK. This is what FLTK guys do :-)
      Roman

    3. Re:LGPL. Absolutely. by j7953 · · Score: 2
      Using a "looser" licence may help the adoption rate, initially, but you run the signifigant risk of having one of these adopters modify the code and refuse to fold those modifications back into the main tree. Once you have done that, then the project has forked, and it's whole purpose (a common standard that is sure to work anywhere) has been compromised.

      A copyleft license is probably the most effective way to prevent forking of your project, but it's not the only protection. A well-known name can be used as a protection as well, by allowing use of the name only for compatible implementations.

      Either trademark the name and license it only to those whose software is compatible. The problem is that in order to prevent the mark from becoming unenforcable, you'll have to enforce it against everyone who uses it without license (even against other free software projects). I don't know if you can grant a license for the trademark to anyone who uses an unmodified version of your code. Ask a lawyer about this if you like this idea.

      The other option is to deny usage rights for the name in the software's license, similar to what the Apache license is doing. This is probably less safe than what trademark protection can offer, but it's also less work for you. Maybe you can rewrite that part of the Apache license so that users of unmodified versions of the library may use the name.

      Note that either of these methods requires some marketing to be effective. Denying people to use the name is effective only if not using the name is a marketing disadvantage to them, which it is only if the name is well-known.

      --
      Sig (appended to the end of comments I post, 54 chars)
    4. Re:LGPL. Absolutely. by Anonymous Coward · · Score: 0

      GPL/LGPL software can be transformed into close source.

      have a look to http://www.atani-software.net/
      this guy took a GPL genesis emulator, and transformed it to a close source software.

      As he says :
      "Attn all, I am not releasing the source at this time for DCGen. I know this is a possible violation of the original GPL license from James Ponder."

    5. Re:LGPL. Absolutely. by Arandir · · Score: 2

      Using a "looser" licence may help the adoption rate, initially, but you run the signifigant risk of having one of these adopters modify the code and refuse to fold those modifications back into the main tree. Once you have done that, then the project has forked, and it's whole purpose (a common standard that is sure to work anywhere) has been compromised.

      You are making the assumption that forking is bad and that keeping everything in one source tree is good. I'll argue the opposite. The ability to fork is a Good Thing(tm). Show me a software project that is not allowed to fork and you'll be showing me a proprietary software project.

      FreeBSD and NetBSD forked off of 386BSD because the latter project had stagnated under its maintainer. OpenBSD forked off of NetBSD because of a difference in goals. None of the non-free forks of the BSD code base (SunOS, BSDi, Darwin, etc) has harmed any of these projects, and there is ample evidence that cross pollination occurs even there.

      RMS makes an argument that software should be free because its nature allows it to be exactly copied without harming the original. If that is true, then what harm can come of the original if someone forks the codebase? What harm can come of the original if someone creates a proprietary derivative? None!

      Both copyleft and unrestricted licenses have their place in the development world. Copyleft is great if the author wishes to retain ownership of the software while pretending to not own it. Unrestriced licenses, on the other hand, are great if you merely want to share your code with other people.

      --
      A Government Is a Body of People, Usually Notably Ungoverned
  21. "Clarifications" by pete-classic · · Score: 2

    Why not do what Linus does with Linux and make "clarifications" (aka exceptions) that allow limited slack on linking requirements for embedded systems?

    That way, you can demand all distributed modifications, while removing the barriers that are troubling you.

    -Peter

  22. I think you answer your own question. by Anonymous Coward · · Score: 0

    "I want the codec to remain Free...

  23. Go BSD by Snowfox · · Score: 2
    Company motives and philosophical stances aside, if LGPL scares companies off, and it does, they'll use something else.

    If they use something else, it's quite likely to be some form of hackery that's only available with Windows and/or SDMI support.

    In the end, more accessibility is likely to come to free software by taking the approach that's less "free" on the surface. Take it with a grain of salt, but in my opinion this is one of those cases where the BSD license is more "free" than the GNU license.

  24. WOOP! WOOP! Imitator alert! by Anonymous Coward · · Score: 0

    nice try...

  25. GPL, of course. by SumDeusExMachina · · Score: 1
    Why they would even post a question like this on Slashdot leaves me to wonder whether it isn't just a slow news day. Obviously, it would be better to use a GPL license for your media codecs, because then derivative works of the codec couldn't be used to take away your freedom.

    Concievably, a company like micro$oft would be able to take a BSD-licensed codec and incorporate it into Media Player to take away the freedom of the viewer in both the form of a restrictive EULA and also a content "protection" system that revokes the fair-use rights that the user has been promised.

    --

    Is your company running tools written by ma
  26. Let's beat the dead horse kids! by Anonymous Coward · · Score: 0
    A thinly disguised BSD v GPL troll.

    Can we get back to KDE v GNOME wars? They're generally much more interesting.

    1. Re:Let's beat the dead horse kids! by kaimiike1970 · · Score: 1

      I actually am a fan of the vi vs. emacs wars... those others are for wimps.

      --


      Do a google search before posting.
  27. Licenses by Agarwaen+The+Tired · · Score: 1

    If you have someone who is running into problems with certain sections of your license perhaps you should have them come up with a proposal for a license. After all if they want to use your code but have problems with certain sections of the code then they will know how to rewrite it so they can use it. Your probably not going to find a license that gives you everything you want(without some heavy searching) so collaborate and create your own. Maybe release it under the BSD license in the mean time. Think about what parts you want them to be able modify without sending it back and what parts you want to be feed back to you. It's tough but if you have someone already blocked by the license you can shift the work onto them.

  28. Question by Anonymous Coward · · Score: 0

    Is this a shameless plug to get people to d/l (or contribute) to his open source project?

    Sure he -sounds- sincere, but you have to to get a good ask slashdot posted...

    I think you people have been had.

    1. Re:Question by Anonymous Coward · · Score: 0

      Nevermind - I found the answer here. It seems to be between 25 and 50% smaller than the original - with some 60% reductions depending on source material. Encode time is about 20% of real time at default encoding (just from my cursory review of the tables there).

  29. 2 licenses by Daneel · · Score: 1

    Just like Ximian is going to license their Mono stuff under GPL *and* another license specifically for embedded usage, you might do the same. You should mail Miguel on this, he usually is most responsive.

  30. Katz pool by Anonymous Coward · · Score: 0

    Fire up team:
    We need to start a pool for how long it will be before we have a new JonKatz "article" regarding the Columbine-like conspiracy in Boston.

    I say, the submission will appear by 4:30pm, today, 28-Nov-2001. If I win, I get to kick Katz's lilly white butt.

  31. A Different Licence by Shelrem · · Score: 1

    A few people have pointed out that if you're the sole contributor, you're free to licence the software as you see fit. However, even if this is the case, I don't think it solves the problem. Essentially what the author wants is to keep the codebase Free and have all changes come back to the community. What the author doesn't care about that the LGPL does is the ability to relink with other libraries, since that can be pretty diffecult with hardware.

    After a little exploration at gnu.org's Free licence list i saw the "licence of Guile" (third one down) that looks like exactly what you're looking for. The licence is not on the web, though, so you'll have to download Guile and see for yourself. It says it's essentially the GPL only with a blanket statement allowing linking with non-free software.

    Hope that helps,
    ben.c

  32. use the BSD license by TheGratefulNet · · Score: 5, Interesting
    speaking as a software developer who works on embedded systems (routers, in my case), there's just NO WAY we'd ever touch anything that wasn't BSD. in all the jobs I've had that used any form of unix in our product, it either was BSD style licensing or it was ignored by us.

    the legal issues are just not worth messing with. case in point - we've had to go out of our way to NOT use libreadline since its so 'hardline' on being GPL. it would be great to be able to use it, but we fear having to release our own code just due to the overzealousness of GPL when it comes to touching our own proprietary code.

    I can say for sure, if you care about getting your code in shipping commercial products, consider BSD licensing. be aware that there's nothing forcing a company to pay or even ask you if they can use it, then. otoh, even when we were willing to compensate the readline author, he didn't want to consider any other licensing scheme, so we 'walked away' and had to find another lib to solve our problem.

    GPL is a total mess when it comes to a commercial company that wants to ship a product without fear of being told it has to release ALL its code (even its local home-grown code).

    I'm a major linux fan. I like the idea of opensource. but I also have to work for a living and that means writing software that will be owned by the company and never ever given out. there IS a balance - and GPL ain't it.

    --

    --
    "It is now safe to switch off your computer."
    1. Re:use the BSD license by Anonymous Coward · · Score: 0
      GPL is a total mess when it comes to a commercial company that wants to ship a product without fear of being told it has to release ALL its code

      In case you didn't notice, it has been done intentionally exactly to avoid companies making proprietary products to use GPL code without giving back anything.

      But the discussion here is about LGPL (not GPL) and BSD (without the advertising clause, I'd hope).

      LGPL allows semi-proprietary products, in that modifications to the distributed LGPL code have to be available, and it has to be possibile to relink the proprietary code with a different version of the LGPL code (i.e. distribute .o files).

      BSD license allows completely proprietary products. This is OK for several developers, but not for ALL developers out there, and if someone wants its code and derivatives to be free, well, it's a respectable opinion like every other (so don't blame the readline authors - they have their reasons to do so).

      The copyright holder(s) of the code could also decide to release everything as GPL, and for a (small?) fee give the option to have everything with another license allowing the incorporation in proprietary products. See TrollTech Qt, for example.

    2. Re:use the BSD license by jacoplane · · Score: 1

      Probably best to release it as LGPL, and negotiate with individual licencees who wish to use BSD. That way at least you can get a feeling as to whether or not someone is to be trusted with the BSD version of your code. Perhaps ask for compensation if someone wants to use a less restricted license like BSD.

    3. Re:use the BSD license by Ogerman · · Score: 3, Insightful

      Sounds like it's your company, not the GPL, that is out of balance. If you're developing routers, then you're trying to sell hardware, not software. Why the heck should the software be proprietary? That argument is about as stupid as companies (like NVidia) who refuse to support Open Source drivers for their hardware because PHB's think it will magically protect them from competitors reverse engineering (as if the time-consuming process reverse engineering is actually a smart market move in the first place!) If your company instead used entirely GPL code, not only would you have a larger base of code to work with and incorporate into your own, but you might get some helpful community feedback. And since you're talking routers, security matters. I would gladly pay a little more for a router based around GPL-free software.

    4. Re:use the BSD license by slaytanic+killer · · Score: 1

      I have a question for you. If on his website, he made it clear he was willing to make exceptions to the LGPL for this purpose (assuming it can be done is a watertight legal manner, just like for any proprietary software you may license), would you consider using his codec then?

    5. Re:use the BSD license by TheGratefulNet · · Score: 2
      If you're developing routers, then you're trying to sell hardware, not software. Why the heck should the software be proprietary?

      I'll have to punt here, since if you have to ask, you obviously haven't "been there" before.

      device drivers, ip-stack, kernel - all need changing to be tuned to your special hardware and features offered. its not only the hardware that's the value-add, it is the software as well.

      I'm all for submitting back software updates that don't "give the store away". no problem here. but to say that ALL changes must be kicked back - that's extremely naieve.

      That argument is about as stupid as companies (like NVidia) who refuse to support Open Source drivers

      a $100 device and a $1M device are quite quite different, wouldn't you agree? high end router companies (like the ones I was referring to) will simply NOT release source to anything that they've put significant value-add into. sorry if that reasoning escapes you.

      And since you're talking routers, security matters. I would gladly pay a little more for a router based around GPL-free software.

      when you wake up from your dream, do let us know. million dollar software/hardware devices are in a different class from commodity hardware-based systems.

      --

      --
      "It is now safe to switch off your computer."
    6. Re:use the BSD license by Anonymous Coward · · Score: 0

      Use the new BSD license and watch your work be embraced & extended away as some proprietary interest makes an incompatible version of FLAC and ships it in huge numbers. Then watch the e-mail pour in as FLAC users blame you for the incompatibilities in the FLAC-like version shipping with ConHugeCo's proprietary device.

      A lot of companies like the idea of Open Source software licenses like the new BSD license because it prevents them from having to spend money to work on developing something themselves. It's so much easier to embrace & extend something someone else has written. The lazy companies don't like the idea of the Free Software movement because of the ethics that push keeping changes within the community.

    7. Re:use the BSD license by peter · · Score: 1

      Of course you couldn't use readline, since they on purpose use the full GPL to stop proprietary people like you from using it. They figure that if you're going to keep your work to yourself, they'll keep their work to themselves when it comes to you.

      You say

      GPL is a total mess when it comes to a
      commercial company that wants to ship a product
      without fear of being told it has to release ALL
      its code (even its local home-grown code).

      You seem to be missing the point about the GPL, since the GPL is all about requiring you to release all the in-house code you develop and link to GPLed code.

      You haven't mentioned the lesser GPL at all, for some reason. The LGPL is the one that only requires you to release changes made to code covered by it, and not code it is only linked to. (I suppose it could get messy when you have header files with significant macros, or something like that. I haven't worked on projects like yours, so I haven't had to deal with any of those problems.)

      --
      #define X(x,y) x##y
      Peter Cordes ; e-mail: X(peter@cordes , .ca)
    8. Re:use the BSD license by Anonymous Coward · · Score: 0
      With the death of Walnut Creek CD Rom, the last significant commercial player in the BSD field died. The BSD license is partly to blame.

      One of the reasons BSD is struggling is because the license does nothing to restrict code hoarding, while also not encouraging code sharing.

      The saddest irony is that the BSD license was entirely accidental, it ws not intended to be a "philosophy"; in fact the original license was ad hoc without much thought given to its implications. The irony is that despite its accidental nature, latter day zealots, remind one of the cultists in Monty Pythons' the Life of Brian proclaiming "follow the shoe, follow the shoe!"

    9. Re:use the BSD license by Arandir · · Score: 1

      You haven't mentioned the lesser GPL at all, for some reason.

      That's because the Library GPL is a sticky wicket when it comes to embedded software.

      --
      A Government Is a Body of People, Usually Notably Ungoverned
    10. Re:use the BSD license by Arandir · · Score: 2

      It's a boring wednesday, so I'll feed the trolls since they're so funny swinging on their branches in their tiny cages.

      With the death of Walnut Creek CD Rom, the last significant commercial player in the BSD field died. The BSD license is partly to blame.

      Walnut Creek was a distributor of other people's software. Among their offerings were GPL Slackware, BSDL FreeBSD, and a shitload of proprietary shareware CDs. The BSD license wasn't a part of their business model. BSD licensed code was a part of their infrastructure, and if I'm not mistaken, their FreeBSD based ftp server still holds a record.

      Walnut Creek CDROM went out of business because their services were no longer needed. They made money by selling CDROMs, and the more people with access to the internet and especially broadband, the less profitable they became. At one time the only way I could get Slackware or FreeBSD was by paying $39.95 to Walnut Creek. Now all I have to do is spend two hours of download time and I can burn off as many copies as I want. The *only* reason I kept Slackware and FreeBSD subscriptions going was because I wanted to support those projects financially.

      One of the reasons BSD is struggling is because the license does nothing to restrict code hoarding, while also not encouraging code sharing.

      BSD is struggling? Hah! To the contrary, it seems that the Great WindRiver Dumping of FreeBSD was the best thing that ever happened to the project. The world now knows that FreeBSD isn't dependent upon commercial sponsorship, and it has become much more viable.

      FreeBSD 4.4 came out only a couple of months ago. OpenBSD 3.0 came out this week. NetBSD now runs on the PS/2. These are vibrant and growing projects.

      There is not social agenda attached to the BSD license. You take that as being a negative, but to a lot of people that's a positive. There is a time and a place to preach, pontificate, argue, and try to change the world. For many of us, a software distribution is not that time or place.

      The BSD license is about what the author has done with the software, not what he or she wants you or anyone else to do with the software.

      The saddest irony is that the BSD license was entirely accidental, it was not intended to be a "philosophy".

      That's the best part about it! You don't have to read a political diatribe at the beginning of the license. You aren't required to redistribute social opinions contrary to your own. It's politically neutral. That may offend you, but for many people in the Open Source world, it's a breath of fresh air.

      --
      A Government Is a Body of People, Usually Notably Ungoverned
    11. Re:use the BSD license by Anonymous Coward · · Score: 0
      The saddest irony is that the BSD license was entirely accidental
      No, the saddest thing is that one of the former FreeBSD employees at Walnut Creek committed suicide over this past Thanksgiving weekend. His brother said that he had been despondent ever since losing his FreeBSD job, and was unable to find re-employment. That is the human tragedy.
    12. Re:use the BSD license by peter · · Score: 1
      device drivers, ip-stack, kernel - all need changing to be tuned to your special hardware and features offered. its not only the hardware that's the value-add, it is the software as well.

      Ok, I understand that part of what makes people want to buy your product, and be willing to shell out for the price you ask, is that there is good software for it that makes it do what it's supposed to, and fast. What I don't understand is how releasing the source to that software interferes with adding value. Wouldn't it still add value if people could see the source?

      I suppose part of your reluctance to release source would be reluctance to help your competitors. However, if you released your source under the (full, not lesser) GPL, your competitors couldn't use it in their product unless they also released their sources. If that happened, then your industry would be a software sharing utopia... :) OTOH, your competitors could look at the source to see how you do things, and then re-implement the good ideas themselves. There would be nothing illegal about that. The real question here is, how hardware-specific is your value-add? Would you be adding value to your competitors products too, if you released the source? If the answer is yes, then we have an example of the tragedy of the commons, or the so-called prisoner's dilemma. Human nature sucks :(

      --
      #define X(x,y) x##y
      Peter Cordes ; e-mail: X(peter@cordes , .ca)
    13. Re:use the BSD license by TheGratefulNet · · Score: 2
      What I don't understand is how releasing the source to that software interferes with adding value. Wouldn't it still add value if people could see the source?

      there's a little minor detail known as 'keeping one step ahead of competition'. releasing your value-add software patches will give them an edge that you may not want to give them (most of us are stock owners and do care about getting to the top before the competitors).

      why is NOT giving out hardware info well understood, but giving out software info NOT well understood? an edge is an edge. if you're working 12hr days to get to market first with a quality product, why should it just be given out free? (this is the problem I have with crazies like RMS - they don't seem to live on the same planet as the rest of us).

      your competitors couldn't use it in their product unless they also released their sources.

      in theory, yes. but in practice, even just delaying a few months (tangling things up in legal work) could give them an edge. just like M$ - they'll eventually end up being found guilty of strongarming; but by the time they pay their penalty, all the competition has been long crushed and out of business.

      us geeks can argue^Hdiscuss this subject all we want. but I'll put dollars to donuts that no major company that is pricing their toys at this stratosphere will EVER consider anything but BSD. the bean counters won't take the chance, the VC's wont authorize it and even the customers might not like it (long long story; and sounds counter-intuitive, but I assure you there's a truth to this that I just can't go into for various reasons..)

      --

      --
      "It is now safe to switch off your computer."
    14. Re:use the BSD license by ryanvm · · Score: 2
      Commercial success and the GPL can and do mix well. Obviously, it does require being careful about the integration, but oftentimes the results are worth it.

      Case in point: TiVo (At its heart lies the Linux kernel.)

    15. Re:use the BSD license by Ogerman · · Score: 2

      There's a little minor detail known as 'keeping one step ahead of competition'. releasing your value-add software patches will give them an edge that you may not want to give them (most of us are stock owners and do care about getting to the top before the competitors)

      Or you could just release the 'value-add' GPL'edsoftware patches only after the product is ready to ship out. And if the patches are really that specific to your hardware, what advantage are they to competitors anyways?

      why is NOT giving out hardware info well understood, but giving out software info NOT well understood? an edge is an edge

      I don't believe in holding back hardware detail either if they may be valuable to the customer in some fashion. Sure, you can have your trade secrets. But if your competition is really that desperate, they'll reverse engineer your products whether they're open or not.

      the bean counters won't take the chance, the VC's wont authorize it

      Of course they won't. Because they think only inside the box of what they learned in business school. Doesn't mean we geeks have to let them push us around. Unfortunately, not enough geeks have the motivation or self confidence to strike out on their own. But that's a whole 'nuther can of worms.

    16. Re:use the BSD license by gallenarlen · · Score: 1

      umm maybe it's just me, but I always thought that the source RPMS provided by NVIDIA actually contained source code. And as far as I know those things are indeed drivers. Possibly not windows drivers, but that doesn't matter.
      You can see them here.

    17. Re:use the BSD license by benb · · Score: 1

      > I'll put dollars to donuts that no major company
      > that is pricing their toys at this stratosphere
      > will EVER consider anything but BSD.

      Netscape. Quicknet. Countless others.

      Where are my dollars? (No, you can't pay in stock options >:-> .)

    18. Re:use the BSD license by TheGratefulNet · · Score: 2
      And if the patches are really that specific to your hardware, what advantage are they to competitors anyways?

      the problem is, you can't be selective when you write software. if it touches this or that, you're compelled to release (under regular GPL) your goods. so while some hardware handlers might not be immediately useful to the competition, some other code that exists entirely in pure software space might also have to be released; and this isn't desirable for obvious reasons.

      I firmly believe there are places for totally free software, totally closed-source software, and stuff in between. there isn't a one-size-fits-all license - and there shouldn't be! just allow the freedom to choose your license based on your own special circumstance. in our case, bsd fit the bill and was the only license that we were able to realistically consider. this is the real world, like it or not.

      --

      --
      "It is now safe to switch off your computer."
    19. Re:use the BSD license by TheGratefulNet · · Score: 2
      huh? since when is netscape at the same level as a carrier-class router? I don't know much about h323, but it also sounds more like a consumer or end-user level product than a backbone router.

      which part of 'stratosphere' didn't you understand?

      --

      --
      "It is now safe to switch off your computer."
  33. BSD like... by MosesJones · · Score: 2


    Scope is an Open Source HMVC Java thingy developed by someone at the company where I work. The license he uses is BSD like and was accepted as okay by the lawyers here, so we rely on his work both OSS and internal with no issues. It also means we can invest company resources in building up the OSS project while mainting our differentiator in the company.

    --
    An Eye for an Eye will make the whole world blind - Gandhi
  34. BSD license? by tmroyster · · Score: 1

    Doesn't the BSD license allow other companies
    to use your code without compensation? I understand that parts of the windows TCP stack are actually from BSD.

    I believe sleepycat software http://www.sleepycat.com uses GPL for people who want it free and their own license for companies
    who need it.

  35. Patented algorithm? by Pyromage · · Score: 1

    Consider this: if 1) It is implemented in the hardware itself, and not merely as software in the embedded system, then it's a new implementation of a free algorithm, and there is no conflict. OTOH, 2) if they are just putting your lib on a rom, then the LGPL ought to apply. My opinion in this case is of what the LGPL should do. One, you get credit. Two, Anything they change, obviously must be given back to the community. Now, I think they should be allowed to do this, Sure, it might bring it into contact with non-GPL software, but that really shouldn't make a differance here, even if it does. Why not just append a new clause onto the license? Modify it so the requirements are only dynamic linking when possible, and static is ok in embedded devices? It's the right way: it allows people to use it.

  36. Netscape Public lIcense or similar perhaps by jspaleta · · Score: 2
    I think the NPL or what ever the source code from netscape was released under had a clause demanding all changes come back to netscape....



    Dual license the project code under the LGPL and your own license, that you feel frees up the embedded system work while making sure improvement code comes back to you and can be put under the dual licensing scheme. And you might even be able to get some development funding from the embedded hardwaare people who want to use yer codec if you write the dual license to allow for licensing fees.

    In any event a dual license scheme,if you can get away with it, is the way to go...but you'd have to get permission from all the developers in your project to agree to that arrangement. If its a one man project at this point...its easy to get the legalese of the matter resolved...you just have to have a long discussion with yourself and then you just have to make it clear that any code submitted to the project must be cleared for dual licensing before yuou will merge it in.

    If it ends up being that there isn't much interest in the second license you create yourself you still have the option of dropping the second license from future releases and just releasing it under the LGPL again.

    This way the code from your project will always be out there under the LGPL for people to use in other LGPL compatible projects...and you can negotiate special circumstances with a the second license...so that the codec can be used in situations the LGPL really wasnt designed to address, like embedded systems.

    -jef

    -jef

  37. First, what are your goals? by Per+Abrahamsen · · Score: 4, Informative
    There is no right license for all purposes, it all depends on your goals.

    In this case, if you find it acceptable that people make changes to your code and distribute the result without sharing them, use the (new) , it is small, simple and give you the minimal legal protection against getting sued.

    If not, I suggest the MPL/GPL/LGPL tripple license used by Mozilla for new code (actually the GPL part is unnecesary, but it is safest to use the text pointed to by the link, since it has been proffread by lawyers). The MPL part will make it useful for embedded and most other purposes, the (L)GPL for use in (L)GPL projects, and it still means changes to your files will be made public.

    1. Re:First, what are your goals? by ftobin · · Score: 2, Insightful

      I found your How to choose a free software license to be well written, and it is probably helpful to a lot of people.

    2. Re:First, what are your goals? by Anonymous Coward · · Score: 0

      I found your posting to be content-free and probably wasting the time of a lot of people.

    3. Re:First, what are your goals? by Per+Abrahamsen · · Score: 1

      Thanks.

      I just need to learn be more careful when previewing :-(

  38. *BSD is dying by Anonymous Coward · · Score: 0
    Netcraft now confirms: *BSD is dying

    Yet another crppling bombshell hit the beleaguered *BSD community when recently IDC confrmed that *BSD accounts for less than a fraction of 1 percent of all servers. Coming on the heels of the latest Netcraft survey which plainly states that *BSD has lost more market share, this news serves to reinforce what we've known all along. *BSD is collapsing in complete disarray, as further exemplified by failing dead last in th recent Sys Admin comprehensive networking test.

    You don't need to be a Kreskin to predict *BSD's future. The hand writing is on the wall: *BSD faces a bleak future. In fact there won't be any future at all for *BSD because *BSD is dying. Things are looking very bad for *BSD. As many of us are already aware, *BSD continues to lose market share. Red ink flows like a river of blood. FreeBSD is the most endangered of them all, having lost 93% of its core developers.

    Let's keep to the facts and look at the numbers.

    OpenBSD leader Theo states that there are 7000 users of OpenBSD. How many users of NetBSD are there? Let's see. The number of OpenBSD versus NetBSD posts on Usenet is roughly in ratio of 5 to 1. Therefore there are about 7000/5 = 1400 NetBSD users. BSD/OS posts on Usenet are about half of the volume of NetBSD posts. Therefore there are about 700 users of BSD/OS. A recent article put FreeBSD at about 80 percent of the *BSD market. Therefore there are (7000+1400+700)*4 = 36400 FreeBSD users. This is consistent with the number of FreeBSD Usenet posts.

    Due to the troubles of Walnut Creek, abysmal sales and so on, FreeBSD went out of business and was taken over by BSDI who sell another troubled OS. Now BSDI is also dead, its corpse turned over to yet another charnel house.

    All major surveys show that *BSD has steadily declined in market share. *BSD is very sick and its long term survival prospects are very dim. If *BSD is to survive at all it will be among OS hobbyist dabblers. *BSD continues to decay. Nothing short of a miracle could save it at this point in time. For all practical purposes, *BSD is dead.

    Fact: *BSD is dead

  39. Take a look at the DiVX 4.11 licencse by Dynedain · · Score: 1

    take a look at the licensing for divx 4.11. The mac version says it uses an open source license (I'm not sure which since I don't have a mac), but the Windows and Linux versions both use the following EULA: DIVXNETWORKS, INC. END-USER LICENSE AGREEMENT YOU SHOULD CAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS BEFORE USING THIS PRODUCT. IT CONTAINS SOFTWARE, THE USE OF WHICH IS LICENSED BY DIVXNETWORKS, INC., TO ITS CUSTOMERS FOR THEIR USE ONLY AS SET FORTH BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE. USING ANY PART OF THE SOFTWARE INDICATES THAT YOU ACCEPT THESE TERMS. LICENSE: DivXNetworks, Inc. grants you a personal, limited, non- exclusive license to use the accompanying software program(s) (the "Software") subject to the terms and restrictions set forth in this License Agreement. You are not permitted to lease or rent (except under separate mutually agreeable terms set forth in writing), distribute or sublicense the Software or to use the Software in a time-sharing arrangement or in any other unauthorized manner. Further, no license is granted to you in the human readable code of the Software (source code). Except as provided below, this License Agreement does not grant you any rights to patents, copyrights, trade secrets, trademarks, or any other rights in respect to the Software. The Software is licensed to be used on any computing device. You may reproduce and provide one (1) copy of such Software for each computing device on which such Software is used as permitted hereunder. Otherwise, the Software and supporting documentation may be copied only as essential for backup or archive purposes in support of your use of the Software as permitted hereunder. You must reproduce and include all copyright notices and any other proprietary rights notices appearing on the Software on any copies that you make. NO ASSIGNMENT; NO REVERSE ENGINEERING: You may transfer the Software and this License Agreement to another party if the other party agrees in writing to accept the terms and conditions of this License Agreement. If you transfer the Software, you must at the same time either transfer all copies of the Software as well as the supporting documentation to the same party or destroy any such materials not transferred. Except as set forth above, you may not transfer or assign the Software or your rights under this License Agreement. Modification, reverse engineering, reverse compiling, or disassembly of the Software is expressly prohibited. Analyzing the input to and output from the Software is expressly prohibited except when this is done solely to evaluate the subjective quality of the Software's visual and audio processes. You may not otherwise modify, alter, adapt, port, or merge the Software except as specified in this License Agreement. EXPORT RESTRICTIONS: You agree that you will not export or re-export the Software or accompanying documentation (or any copies thereof) or any products utilizing the Software or such documentation in violation of any applicable laws or regulations of the United States or the country in which you obtained them. TRADE SECRETS; TITLE: You acknowledge and agree that the structure, sequence and organization of the Software are the valuable trade secrets of DivXNetworks, Inc. and its suppliers. You agree to hold such trade secrets in confidence. You further acknowledge and agree that ownership of, and title to, the Software and all subsequent copies thereof regardless of the form or media are held by DivXNetworks, Inc. and its suppliers. TRADEMARKS AND COPYRIGHTS: "DivX" is a trademark of DivXNetworks, Inc. You may not remove, alter, deface, overprint, or otherwise obscure any DivXNetworks, Inc. trademark, service mark, or copyright notices included with this Software. NO COMMERCIAL USE: This License Agreement grants you the right to use the Software for personal use only. Commercial use of the Software or of the work products resulting from its use is not permitted under this License Agreement. Such use may be permitted under another license, which must be separately agreed to by you and DivXNetworks, Inc. INTELLECTUAL PROPERTY: All intellectual property rights in and to this Software are and shall remain in DivXNetworks, Inc. TERM AND TERMINATION: This License Agreement is effective until terminated. You may terminate it at any time by destroying the Software and documentation together with all copies and merged portions in any form. It will also terminate immediately if you fail to comply with any term or condition of this License Agreement. Upon such termination you agree to destroy the Software and documentation, together with all copies and merged portions in any form. GOVERNING LAW: This License Agreement shall be governed by the laws of the State of California and by the laws of the United States, excluding their conflicts of law principles. The United Nations Convention on Contracts for the International Sale of Goods (1980) is hereby excluded in its entirety from application to this License Agreement. LIMITED WARRANTY; LIMITATION OF LIABILITY: EXCEPT AS EXPRESSLY PROVIDED OTHERWISE IN A WRITTEN AGREEMENT BETWEEN DIVXNETWORKS, INC. AND YOU, THE SOFTWARE IS NOW PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OR THE WARRANTY OF NON-INFRINGEMENT. WITHOUT LIMITING THE FOREGOING, DIVXNETWORKS, INC. MAKES NO WARRANTY THAT (i) THE SOFTWARE WILL MEET YOUR REQUIREMENTS, (ii) THE USE OF THE SOFTWARE WILL BE UNINTERRUPTED, TIMELY, SECURE, OR ERROR-FREE, (iii) THE RESULTS THAT MAY BE OBTAINED FROM THE USE OF THE SOFTWARE WILL BE ACCURATE OR RELIABLE, (iv) THE QUALITY OF THE SOFTWARE WILL MEET YOUR EXPECTATIONS, (v) ANY ERRORS IN THE SOFTWARE WILL BE CORRECTED, AND/OR (vi) YOU MAY USE, PRACTICE, EXECUTE, OR ACCESS THE SOFTWARE WITHOUT VIOLATING THE INTELLECTUAL PROPERTY RIGHTS OF OTHERS. SOME STATES OR JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES OR LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY MAY LAST, SO THE ABOVE LIMITATIONS MAY NOT APPLY TO YOU. IF TEXAS LAW IS NOT HELD TO APPLY TO THIS AGREEMENT FOR ANY REASON, THEN IN JURISDICTIONS WHERE WARRANTIES, GUARANTEES, REPRESENTATIONS, AND/OR CONDITIONS OF ANY TYPE MAY NOT BE DISCLAIMED, ANY SUCH WARRANTY, GUARANTEE, REPRESENATION AND/OR WARRANTY IS: (1) HEREBY LIMITED TO THE PERIOD OF EITHER (A) THIRTY (30) DAYS FROM THE DATE OF OPENING THE PACKAGE CONTAINING THE SOFTWARE OR (B) THE SHORTEST PERIOD ALLOWED BY LAW IN THE APPLICABLE JURISDICTION IF A THIRTY (30) DAY LIMITATION WOULD BE UNENFORCEABLE; AND (2) THE SOLE LIABILITY OF DIVXNETWORKS, INC. FOR ANY BREACH OF ANY SUCH WARRANTY, GUARANTEE, REPRESENTATION, AND/OR CONDITION SHALL BE TO PROVIDE YOU WITH A NEW COPY OF THE SOFTWARE. IN NO EVENT SHALL DIVXNETWORKS, INC. OR ITS SUPPLIERS BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT DIVXNETWORKS, INC. HAD BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE. SOME JURISDICTIONS PROHIBIT THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, SO THE ABOVE LIMITATIONS MAY NOT APPLY TO YOU. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY. SEVERABILITY: In the event any provision of this License Agreement is found to be invalid, illegal or unenforceable, the validity, legality and enforceability of any of the remaining provisions shall not in any way be affected or impaired and a valid, legal and enforceable provision of similar intent and economic impact shall be substituted therefor. ENTIRE AGREEMENT: This License Agreement sets forth the entire understanding and agreement between you and DivXNetworks, Inc., supersedes all prior agreements, whether written or oral, with respect to the Software, and may be amended only in a writing signed by both parties. For information about commercial licensing please email licensing@divxnetworks.com DivXNetworks, Inc. 10350 Science Center Drive Building 14, Suite 140 San Diego, California 92121 16 July 2001 Now, this is only the license for the non-commercial codec so that people can actually watch the stuff. Licencsing for commercial uses is different and information on it can be obtained by emailing licensing@divxnetworks.com. Considering Blizzard just got a license to use DiVX to distribute their trailers and say they only keep QT arround for the Mac users, it seems that whatever license DivX is using for commercial application in proprietary and non proprietary systems might be exactly what you are looking for.

    --
    I'm out of my mind right now, but feel free to leave a message.....
    1. Re:Take a look at the DiVX 4.11 licencse by Anonymous Coward · · Score: 0

      This isn't totally applicable. DivX video (no uppercase "V") is not the same as OpenDivX video. The OpenDivX source is licensed under something Project Mayo calls the "DivX Open License." The DivX sourec is not open, and is not available.

      The group has stated repeatedly that the two sources are distinct, and I don't have any reason to doubt them. Nevertheless, the license DivXNetworks uses for DivX isn't really applicable to the discussion here, because DivX is not an open source media technology.

      /!

    2. Re:Take a look at the DiVX 4.11 licencse by Anonymous Coward · · Score: 0

      Why do all of these shitwits developing new codecs have to call them "Divx"?

      Trying to confuse your product with the 'underground' DivX-smiley v3 (hacked Microsoft codec) is just a bizarre marketing tactic. It's confusing, and the target market (porn rippers) aren't falling for it.

  40. Just remember one thing... by Todd+Knarr · · Score: 3, Interesting

    You own the code. Nothing says you have to license it under only one license. So, simple solution. License it to the public under the LGPL. If someone wants to use it in a proprietary embedded device, license it to them under a conventional license or whatever license you want. You can do that, you're the owner of the code. The two licenses won't interfere with each other, as long as you make sure to include in the proprietary license wording to the effect that this license is non-exclusive and does not affect your licensing of the code to other parties under other terms. You give the proprietary people what they're happy with without endangering the free nature of the code as licensed to everyone else.

  41. Embedded software is different - look at Tivo by GGardner · · Score: 3, Insightful
    L/GPL wasn't written with embedded software in mind, and it shows. Consider the use of this codec in a portable digital music player -- all the code would be burned into ROM, and there is no way for the user to replace/update the code or libraries within the code.

    Even if all the code in the gizmo is under the GPL, the end-user has none of the freedoms to fix/update/hack it which RMS likes to talk about.

    Just look at the Tivo -- what benefit does a Tivo owner have because the kernel is GPL'ed -- has anyone rebuilt their Tivo linux kernel to fix a bug in it? I doubt it. Certainly the Tivo people benefit from having a robust, stable, flexible, royalty-free kernel. But the freedoms the GPL and LGPL theoretically give to the tivo owners seem hypothetical at best.

    1. Re:Embedded software is different - look at Tivo by Fnkmaster · · Score: 4, Informative
      I will beg to differ entirely on the Tivo. I've gained lots of benefits from the fact that the kernel is GPLed. For example, people were able to build loadable modules for TivoNet, a hacked together ethernet card for Tivo, because of it. If it used some weird proprietary kernel, it would be tons harder to do all the great stuff I've done. Admittedly, nobody has gone around recompiling the kernel, though there is a fishy issue with their 2.5 software - they added some nasty filesystem checksum checks to the kernel to prevent hacks. Some people were waiting for them to release source, but we ended up getting around the problem with a bit of hex editing before the 2.5 Tivo software kernel source was ever released.


      So you are partially right, but there have clearly been huge benefits in comprehensibility and hackability which have contributed significantly to the market success of the Tivo in the "geek" crowd, which has driven adoption among a lot of others, even if they gain nothing per se from the use of Linux on the Tivo.

    2. Re:Embedded software is different - look at Tivo by GGardner · · Score: 2
      I will beg to differ entirely on the Tivo. I've gained lots of benefits from the fact that the kernel is GPLed


      I maintain my point. The reason people could add an ethernet card (and driver ?) to the tivo is that they are familiar with the OS, not because it is GPLed. If the Tivo's OS was Windows NT (embedded) ((uck)), or, more probably, Windows CE, which lots of hackers are familiar with, I bet that same ethernet driver could have been added.

    3. Re:Embedded software is different - look at Tivo by Zathrus · · Score: 2

      Just look at the Tivo -- what benefit does a Tivo owner have because the kernel is GPL'ed -- has anyone rebuilt their Tivo linux kernel to fix a bug in it? I doubt it.

      Actually, yes. Back when the first HD hacks were being performed on the TiVo someone hacked the kernel to fix a bug that prevented support of >40 GB drives. I believe the kernel in the current software release on the TiVo (2.5) already has this fixed, or they've found a different workaround, since you can now create 225+ hour TiVo's (previously the 40GB issue limited you to ~80 hour ones (2 40G drives)).

      Sorry, can't provide the links or verify that the above numbers are dead on since my employer blocks AVS Forum.

      That said, I'll abstain from commenting on the real issue of the thread. I'm not sufficiently familiar with the ins and outs of MPL/LGPL/BSD licenses. The BSD license is more real world friendly, and many other posters have good points about the downsides of a company deciding to privately fork development off.
  42. Think about patents by tlk+nnr · · Score: 1

    If you choose a BSD style licence, think about patents.
    The BSD licence doesn't prevent an author from
    applying for a patent, and distributing the
    code "for free".
    A few years later you can come and sue for patent
    infringement.
    That's a known problem for Linux kernel drivers,
    and I assume that media codecs are a large patent
    minefield.
    Example:
    http://www.uwsg.iu.edu/hypermail/linux/kernel/01 09 .2/0805.html

  43. This would be my solution... by Millennium · · Score: 2

    Continue to release your library under the LGPL. Then, create complete codumentation for the codec, complete with code or pseudocode examples, to aid in reimplementation, and release this under a license which allows for commercial development. Consider adding a clause to the license which forces readers who modify and don't redistribute to use a different name. Perhaps something similar to the MAME license would work for this.

    The idea is to make reimplementation of the codec easy, while keeping your own code free. While this isn't an ideal solution, it may be a workable one.

  44. "Embedded" is the crux of the problem by skia · · Score: 2, Insightful
    I thought that the real question here is how applicable the LGPL is in embedded devices. It's all fine and dandy on a full-fledged OS-type platform to say "you've got to link to this free code dynamically" or "this code needs to treat this free library as a swappable resource so that it may be modified by users at will" (clearly paraphrased), but what does it mean to link to a library dynamically on an embedded device? Doesn't the very nature of its embeddedness serve to make all dynamic references ostensibly static?

    Moreover, seeing as modified libraries may not always be able to be copied/loaded/uploaded to an embedded device even if the source, etc. for all the free libs are provided, how can that device fulfill the requirements of the GPLs (these devices cannot provide a "suitable shared library mechanism")? Source that you are free to modify but not free to use does not sound particularly free (or useful) to me.

    --

    --

  45. Look at GPL like MAD MP3 decoder by jeffmock · · Score: 1

    I like the way the MAD MPEG audio decoder is
    licensed. It's GPL code, but the author is open about licensing it to commercial closed-source projects. I think this is a nice arrangement:

    http://www.mars.org/home/rob/proj/mpeg/

    jeff

  46. What is so restrictive about LGPL? by mickeyreznor · · Score: 1

    Commercial, closed source products, have been made from both PLIB and SDL, which are both LGPL, and without any legal problems.

  47. This is why you should never GPL anything(or LGPL) by greggman · · Score: 0, Flamebait

    FreeBSD allows even proprietary (closed-source) developers to contribute to open-source projects and still use the results in their own work/projects. This is a win for everybody.

    If the code is GPLed only other GPL programmers can use and contribute to it.

    FreeBSD is the "lets all share and co-operate as much as possible" license

    GPL is the "lets all try to stop/ban proprietary software" type of license. If you don't believe me, go read the GNU Manifesto and all the other literature on www.gnu.org. GPL is NOT about SHARING. You can share without GPL.

  48. god dammit! don't click on the plib link by mickeyreznor · · Score: 1

    i misspelled it. here correct one. sorry.

  49. Very good Idea by Srin+Tuar · · Score: 5, Insightful


    Charge them a reasonable one-time relicensing fee that gives them an non-exclusive unlimited license to the code base with the exception that they may not patent any algorithms derived from the codebase. Also make sure the price is reasonable and small.


    You can keep the main release LGPL, and anytime you take on a new code contributor ask them to agree to a release saying that FLAC may be privately relicensed upon those specific terms above and that all proceeds will go towards the development of FLAC.


    So you can eat your cake and have it too. And if the company comes back wanting a license to a more recent version of the code- which has been evolving with LGPL contributions, then they can pay another one-time relicensing fee (a form of recurring funding if development keeps up)


    Now this probably wont get you as wide distribution as a BSD license, because of the small hassle, but its the next best thing if you want to keep your copyleft. And your guaranteed to get compensated by anyone who wants to develop FLAC, either with LGPL code or hard cash.

    1. Re:Very good Idea by Secret+Coward · · Score: 1
      And if the company comes back wanting a license to a more recent version of the code- which has been evolving with LGPL contributions

      Is this legal? If a third party contributes to the LGPL code, don't you have to get their permission before you change the license?

    2. Re:Very good Idea by Srin+Tuar · · Score: 1


      read the whole post- esp the part about a release.
      It wouldnt need to be over-formal- perhaps just a comment block above any significant contributed code that says the developer of the following is not adverse to relicensing of the code given that it follows the stated guildlines.


      There would have to be a designee of who is the arbiter of such relicensing, but nothing stops someone who doesnt trust said designee from forking and creating a non-relicensable branch, but that might only happen if the designee were to become a lax maintainer or abuse the relicensing contracts (which is what they amount to, since they are not part of the copyright).


      FWIW, IANAL, etc

    3. Re:Very good Idea by jrockway · · Score: 1

      > Charge them a reasonable one-time relicensing fee that gives them an non-exclusive unlimited license to the code base with the exception that they may not patent any algorithms derived from the codebase. Also make sure the price is reasonable and small.

      What if I fork the codebase and charge less?

      --
      My other car is first.
  50. keep it free, if you can afford to by dephex · · Score: 1

    You could change the license to require imbedded versions to be made available via a website yours, theirs or both) but allow proprietary packaging and deployment of the code in products. To address Concerns about competition, a reasonable delay between deployment and public availability could be worked into the the license (say 6 - 12 months) that would allow a developing company to stay well ahead of their competitors.

    The way I see it, the interest of third parties simply illustrates the need for a imbedded version of FLAC that would be available under LGPL.

    --
    People who sacrifice beauty for efficiency get what they deserve. - The Woodpecker
  51. Individual Function Linking by Milican · · Score: 3, Interesting
    Embedded developers don't want to include an entire library if all they need is one function. I am an embedded developer myself and I don't use common c functions like printf or scanf unless I know I have some memory to spare. The reason is because as soon as you use one of these functions the whole dern library with all the other zillion functions is linked into your executable, and this of course makes a big executable. Sometimes you can't fit your program into the scarce memory because of it.

    However, there is an elegant solution. The solution, which I discovered by using some ThreadX code, is to implement each function in a separate file. That way you only link in the functions you need on a function by function basis! The result for ThreadX is an extremely configurable kernel with very lean code size.

    Therefore, I think you should keep the library licensed as LGPL and separate all of the functions into individual source files. As you guys know the LGPL only governs the library not any of the files that use the library like GPL. So if you or anyone else (embedded developers too) makes changes to the library they are required to let everyone else know about it. This has nothing to do with the application. In this case the embedded developers seem to want the BSD license so they can only put in what they need of the code, or in a worst case scenario they may want to rape and pillage the code and not give back to the community.

    In summary, by keeping the code licensed under LGPL and separating your files out function by function your library will be lean for embedded developers, keep developers both commercial and non-commercial contributing to your code and prevent parasitic companies from making money off of your hard work without giving back a thing.

    As an additional guide here are some links regarding the license models:



    Enjoy.

    JOhn
    1. Re:Individual Function Linking by Anonymous Coward · · Score: 1, Insightful

      Linkers can be told to remove unused functions if you link statically. So, you are dumb if you avoid the standard library for that reason.

    2. Re:Individual Function Linking by Milican · · Score: 2

      Hmm... maybe some, but not necessarily all. As a matter of fact I don't know of any. Keep in mind that not all embedded tools have the sophistication of your Microsoft VC++ toolset. Also, instead of being a twit, hiding behind your AC status, and sending out jabbing remarks flame boy perhaps you could enlighten us on how to do it. I come to slashdot to learn from my peers. Perhaps you could grow up and do the same.

      JOhn

    3. Re:Individual Function Linking by The+Finn · · Score: 1

      I don't know what the original poster is using as a linker, but the GNU linker won't even bother pulling in object files from archives / libraries unless they satisfy an undefined symbol dependency, even when linking statically. you can have tons of routines in your libraries, and only get the ones linked in that you directly or indirectly reference.

      this only works if you have your routines split out one-per-file, otherwise the linker has to do extra work to hunt down dead routines...

      --
      NetBSD: the cathedral vs the bizzare.
  52. Reformated Repost of DiVX Licencsing by Dynedain · · Score: 1

    take a look at the licensing for divx 4.11. The mac version says it uses an open source license (I'm not sure which since I don't have a mac), but the Windows and Linux versions both use the following EULA:

    DIVXNETWORKS, INC. END-USER LICENSE AGREEMENT

    YOU SHOULD CAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS BEFORE
    USING THIS PRODUCT. IT CONTAINS SOFTWARE, THE USE OF WHICH IS LICENSED
    BY DIVXNETWORKS, INC., TO ITS CUSTOMERS FOR THEIR USE ONLY AS SET FORTH
    BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS
    AGREEMENT, DO NOT USE THE SOFTWARE. USING ANY PART OF THE SOFTWARE
    INDICATES THAT YOU ACCEPT THESE TERMS.

    LICENSE: DivXNetworks, Inc. grants you a personal, limited, non-
    exclusive license to use the accompanying software program(s) (the
    "Software") subject to the terms and restrictions set forth in this
    License Agreement. You are not permitted to lease or rent (except under
    separate mutually agreeable terms set forth in writing), distribute or
    sublicense the Software or to use the Software in a time-sharing
    arrangement or in any other unauthorized manner. Further, no license is
    granted to you in the human readable code of the Software (source code).
    Except as provided below, this License Agreement does not grant you any
    rights to patents, copyrights, trade secrets, trademarks, or any other
    rights in respect to the Software.

    The Software is licensed to be used on any computing device. You may
    reproduce and provide one (1) copy of such Software for each computing
    device on which such Software is used as permitted hereunder. Otherwise,
    the Software and supporting documentation may be copied only as
    essential for backup or archive purposes in support of your use of the
    Software as permitted hereunder. You must reproduce and include all
    copyright notices and any other proprietary rights notices appearing on
    the Software on any copies that you make.

    NO ASSIGNMENT; NO REVERSE ENGINEERING: You may transfer the Software and
    this License Agreement to another party if the other party agrees in
    writing to accept the terms and conditions of this License Agreement. If
    you transfer the Software, you must at the same time either transfer all
    copies of the Software as well as the supporting documentation to the
    same party or destroy any such materials not transferred. Except as set
    forth above, you may not transfer or assign the Software or your rights
    under this License Agreement.

    Modification, reverse engineering, reverse compiling, or disassembly of
    the Software is expressly prohibited. Analyzing the input to and output
    from the Software is expressly prohibited except when this is done
    solely to evaluate the subjective quality of the Software's visual and
    audio processes. You may not otherwise modify, alter, adapt, port, or
    merge the Software except as specified in this License Agreement.

    EXPORT RESTRICTIONS: You agree that you will not export or re-export the
    Software or accompanying documentation (or any copies thereof) or any
    products utilizing the Software or such documentation in violation of
    any applicable laws or regulations of the United States or the country
    in which you obtained them.

    TRADE SECRETS; TITLE: You acknowledge and agree that the structure,
    sequence and organization of the Software are the valuable trade secrets
    of DivXNetworks, Inc. and its suppliers. You agree to hold such trade
    secrets in confidence. You further acknowledge and agree that ownership
    of, and title to, the Software and all subsequent copies thereof
    regardless of the form or media are held by DivXNetworks, Inc. and its
    suppliers.

    TRADEMARKS AND COPYRIGHTS: "DivX" is a trademark of DivXNetworks, Inc.
    You may not remove, alter, deface, overprint, or otherwise obscure any
    DivXNetworks, Inc. trademark, service mark, or copyright notices
    included with this Software.

    NO COMMERCIAL USE: This License Agreement grants you the right to use
    the Software for personal use only. Commercial use of the Software or of
    the work products resulting from its use is not permitted under this
    License Agreement. Such use may be permitted under another license,
    which must be separately agreed to by you and DivXNetworks, Inc.

    INTELLECTUAL PROPERTY: All intellectual property rights in and to this
    Software are and shall remain in DivXNetworks, Inc.

    TERM AND TERMINATION: This License Agreement is effective until
    terminated. You may terminate it at any time by destroying the Software
    and documentation together with all copies and merged portions in any
    form. It will also terminate immediately if you fail to comply with any
    term or condition of this License Agreement. Upon such termination you
    agree to destroy the Software and documentation, together with all
    copies and merged portions in any form.

    GOVERNING LAW: This License Agreement shall be governed by the laws of
    the State of California and by the laws of the United States, excluding
    their conflicts of law principles. The United Nations Convention on
    Contracts for the International Sale of Goods (1980) is hereby excluded
    in its entirety from application to this License Agreement.

    LIMITED WARRANTY; LIMITATION OF LIABILITY: EXCEPT AS EXPRESSLY PROVIDED
    OTHERWISE IN A WRITTEN AGREEMENT BETWEEN DIVXNETWORKS, INC. AND YOU, THE
    SOFTWARE IS NOW PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
    EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OR
    THE WARRANTY OF NON-INFRINGEMENT. WITHOUT LIMITING THE FOREGOING,
    DIVXNETWORKS, INC. MAKES NO WARRANTY THAT (i) THE SOFTWARE WILL MEET
    YOUR REQUIREMENTS, (ii) THE USE OF THE SOFTWARE WILL BE UNINTERRUPTED,
    TIMELY, SECURE, OR ERROR-FREE, (iii) THE RESULTS THAT MAY BE OBTAINED
    FROM THE USE OF THE SOFTWARE WILL BE ACCURATE OR RELIABLE, (iv) THE
    QUALITY OF THE SOFTWARE WILL MEET YOUR EXPECTATIONS, (v) ANY ERRORS IN
    THE SOFTWARE WILL BE CORRECTED, AND/OR (vi) YOU MAY USE, PRACTICE,
    EXECUTE, OR ACCESS THE SOFTWARE WITHOUT VIOLATING THE INTELLECTUAL
    PROPERTY RIGHTS OF OTHERS. SOME STATES OR JURISDICTIONS DO NOT ALLOW THE
    EXCLUSION OF IMPLIED WARRANTIES OR LIMITATIONS ON HOW LONG AN IMPLIED
    WARRANTY MAY LAST, SO THE ABOVE LIMITATIONS MAY NOT APPLY TO YOU. IF
    TEXAS LAW IS NOT HELD TO APPLY TO THIS AGREEMENT FOR ANY REASON, THEN IN
    JURISDICTIONS WHERE WARRANTIES, GUARANTEES, REPRESENTATIONS, AND/OR
    CONDITIONS OF ANY TYPE MAY NOT BE DISCLAIMED, ANY SUCH WARRANTY,
    GUARANTEE, REPRESENATION AND/OR WARRANTY IS: (1) HEREBY LIMITED TO THE
    PERIOD OF EITHER (A) THIRTY (30) DAYS FROM THE DATE OF OPENING THE
    PACKAGE CONTAINING THE SOFTWARE OR (B) THE SHORTEST PERIOD ALLOWED BY
    LAW IN THE APPLICABLE JURISDICTION IF A THIRTY (30) DAY LIMITATION WOULD
    BE UNENFORCEABLE; AND (2) THE SOLE LIABILITY OF DIVXNETWORKS, INC. FOR
    ANY BREACH OF ANY SUCH WARRANTY, GUARANTEE, REPRESENTATION, AND/OR
    CONDITION SHALL BE TO PROVIDE YOU WITH A NEW COPY OF THE SOFTWARE.

    IN NO EVENT SHALL DIVXNETWORKS, INC. OR ITS SUPPLIERS BE LIABLE TO YOU
    OR ANY THIRD PARTY FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR
    CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING,
    WITHOUT LIMITATION, THOSE RESULTING FROM LOSS OF USE, DATA OR PROFITS,
    WHETHER OR NOT DIVXNETWORKS, INC. HAD BEEN ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGES, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN
    CONNECTION WITH THE USE OF THE SOFTWARE. SOME JURISDICTIONS PROHIBIT THE
    EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL
    DAMAGES, SO THE ABOVE LIMITATIONS MAY NOT APPLY TO YOU. THESE
    LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE
    OF ANY LIMITED REMEDY.

    SEVERABILITY: In the event any provision of this License Agreement is
    found to be invalid, illegal or unenforceable, the validity, legality
    and enforceability of any of the remaining provisions shall not in any
    way be affected or impaired and a valid, legal and enforceable provision
    of similar intent and economic impact shall be substituted therefor.

    ENTIRE AGREEMENT: This License Agreement sets forth the entire
    understanding and agreement between you and DivXNetworks, Inc.,
    supersedes all prior agreements, whether written or oral, with respect
    to the Software, and may be amended only in a writing signed by both
    parties.

    For information about commercial licensing please email licensing@divxnetworks.com
    DivXNetworks, Inc.
    10350 Science Center Drive
    Building 14, Suite 140
    San Diego, California 92121
    16 July 2001

    Now, this is only the license for the non-commercial codec so that people can actually watch the stuff. Licencsing for commercial uses is different and information on it can be obtained by emailing licensing@divxnetworks.com. Considering Blizzard just got a license to use DiVX to distribute their trailers and say they only keep QT arround for the Mac users, it seems that whatever license DivX is using for commercial application in proprietary and non proprietary systems might be exactly what you are looking for.

    --
    I'm out of my mind right now, but feel free to leave a message.....
  53. BSD vs LGPL by WebBug · · Score: 3, Insightful

    A lot of interesting replies, and since this is going to take me some time to articulate clearly there'll be more by the time I'm done.

    The BSD style license is a good license because it allows the end user a good deal of flexibility.

    The GPL is a good license because it protects the code base from proprietary obfuscation.

    The BSD may be bad because it does not force the end user to report back to the original author, though it does not forbid this. My experience in working with BSD style licensing is that MOST changes find their way back to the developer.

    The GPL may be bad because it does not take into account the reliality of the commercial market. It simply prohibits the end user from making those changes that they may require to make their product a commercial success.

    Having said all that, my personal choice has always been to make my code PUBLIC DOMAIN if I want it freely available, otherwise I retain FULL copyright.

    Afterall, if freedom is what you want then you MUST allow freedom. I do not feel that it is legitimate to say that something is free if you want to place restrictions on its use.

    If you want to retain COMPLETE control then look at some sort of realistic license that fits your business model. Otherwise, I'd say, if you want your code to be FREE then make it FREE, without restriction of any sort.

    Which is probably the big advantage of the BSD style license.

    --
    Later . . . . . . WebBug // I don't really have 8 arms but . . .
  54. Donate it to the Public Domain by Anonymous Coward · · Score: 0

    That's the end of your licensing problems as long as all outside contributions to your code tree are in the PD as well.

  55. Re:Oh don't worry about licensing... [NOT SO FAST] by ryanvm · · Score: 5, Insightful
    Why don't you just re-license it to specific companies that you want to see use it?

    Although it would be nice, this is probably not going to be as easy as you suggest.

    The problem is that FLAC is an open source project hosted on SourceForge. As such, it is probably very likely that the project owner has accepted code from various contributors. This means that unless these contributors have explicitly granted him the copyright ownership of their code, he is in no position to re-license it.

    At this point, he has two options:
    1 - Replace all contributed code with his own; and do so without infringing on the anyone's copyright.
    2 - Get everyone who contributed to grant him copyright ownership. Which, depending on how many people contributed, can be quite difficult.

    I've always liked this idea for making money from Free software. You basically charge only those people who have no intention of giving back to the community. Unfortunately, unless you have planned ahead, it can be pretty difficult to pull off.

    Good luck, buddy.

  56. Re:This is why you should never GPL anything(or LG by shepd · · Score: 1

    >FreeBSD is the "lets all share and co-operate as much as possible" license

    BSD is the license that let Microsoft steal your various IP utilities (FTP, et al.) and integrate them into their proprietary OS without giving back.

    Do a grep for "regents" sometime in C:\windows (or wherever you find a windows install).

    >GPL is the "lets all try to stop/ban proprietary software" type of license.

    Yup. That's because GPL programmers don't want MS (and others) to lift sections of their code verbatim and call it theirs.

    Do you notice that the level of difficulty of finding out who wrote ftp.exe on windows is way beyond the abilities of anyone who is a windows sysadmin? May as well be written by MS for all they know.

    >FreeBSD allows even proprietary (closed-source) developers to contribute to open-source projects and still use the results in their own work/projects. This is a win for everybody.

    That's interesting. Is MS working on Windows for BSD as co-operation for "using" BSD code?

    Clearly, the BSD license is a big win for corporations, not such a big win for the "little guy".

    >GPL is NOT about SHARING. You can share without GPL.

    GPL is about HONESTY in sharing. Dishonest companies can lift BSD code without the slightest worry. Only honest companies committed to open source can use GPL.

    --
    If you could be told what you can see or read, then it follows that you could be told what to say or think - BoC
  57. Public Domain + whatever by KjetilK · · Score: 2
    I think the important thing here is not what license you use for the code that you write yourself. The important thing is what you do to the specification: It should be in the public domain. This makes it possible for anybody, whatever purpose they implement for, to make an implementation of the codec, even if they find the conditions you set for the software that you write unacceptable. It is my opinion that the protocols that we use to communicate must be in the public domain.

    Yeah, and this is what the Ogg project does. Their code is released under a BSD license, but the spec is in the public domain (though they reserve the right to say which systems conform to the spec, which is a very vice decision).

    Then, what license you use for the your own software is of minor importance. But since the Ogg project made a decision to go BSD after thinking about it long and well, and your situation seems to be very similar to theirs, I guess it is a good choice.

    --
    Employee of Inrupt, Project Release Manager and Community Manager for Solid
  58. Question by Anonymous Coward · · Score: 0

    What level of compression does FLAC offer for audio? AKA, we know it is a lossless scheme -- but how small does it get the files compared to a WAV or AIFF.

  59. My Concern with BSD... by Greyfox · · Score: 2
    I'd be concerned, using a BSD style license, that some Evil Company (That shall remain nameless heh heh) would subvert the codec in some way, rather like they did with Kerberos. Such subversions would be impossible under the lgpl.

    That's not to say that the lgpl doesn't have its problems too. There's a lot of grey area for things like static linking versus dynamic, for example. Back when I was working at the Evil Satellite company, about the only way to get the project to run, due to different library levels on all the developer's workstations, was to do static linking. Of course, they were also looking at using GNU Gettext (A GPLed project) for their translation when I left, too...

    --

    I'm trying to teach myself to set people on fire with my mind... Is it hot in here?

    1. Re:My Concern with BSD... by Anonymous Coward · · Score: 0

      The LGPL doesn't require dynamic linking. Static linking is OK too, if you distribute the .o files so that the user can relink it herself.

  60. GPL with exception by Wesley+Felter · · Score: 3, Informative

    The GCC project has gone through this exact problem with several of their libraries (libgcc, libgcj), and the solution they settled on is the GPL with an exception that using the library doesn't make the main program subject to the requirements of the GPL. Thus the libraries can be statically linked into proprietary embedded systems, but all modifications still have to be released.

    1. Re:GPL with exception by joelsherrill · · Score: 2, Insightful

      RTEMS (see http://www.oarcorp.com/RTEMS is an embedded RTOS that uses this approach. We got the idea from other "run-time" libraries in the GNU software suite. This is very similar to the exception used by the GNAT (GNU Ada) run-time. I believe there should be a special version of the GPL called something like the "Run-Time GPL" to address cases like this. There is no point in every project writing their own exception paragraph and possibly creating loopholes.

      The specific paragraph we add to the GPL is:

      "As a special exception, including RTEMS header files in a file, instantiating RTEMS generics or templates, or linking other files with RTEMS objects to produce an executable application, does not by itself cause the resulting executable application to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU Public License."

      Be aware that if your software is useable in non-embedded systems, you might want a more
      pure version of the GPL. Someone mentioned allowing the exception on systems without dynamic linking.

      We have tried very hard over the past 10 years to walk a fine line between being free software for embedded systems and placing undue restrictions on those using our software. It is a tough balancing act but we like this solution. Making your own strange license requires that you explain it which is no fun either. :)

  61. Qt by ShrimpX · · Score: 0

    Sound like you need exactly what Qt is doing. Qt has two licenses: GPL and a Qt license. If you want to use Qt to build proprietary apps, you use the Qt license. If you want it to build GPL'd apps, you use the GPL license. (KDE is using the GPL license)

    Basically, it boils down to this: "You make money, we make money. You don't make money, we don't care."

  62. Check out the eCos license.. by sadr · · Score: 1

    eCos is a RTOS published by Cygnus (now Redhat) that targets the very systems you are describing. It is licensed under the Red Hat eCos Public License Version 1.1.

    I don't know if it's fully "free" (especially since the end-user can't reasonably upgrade many of these products), but it's reasonable for the kind of situation you are running into.

    See http://www.redhat.com/embedded/technologies/ecos/e coslicense.html

    You could offer it under such a license only if the environment does not support dynamic loading of libraries, etc.

    SKG

  63. Ever hear of cross licensing? by Anonymous Coward · · Score: 0

    "I really want it to remain free" are you suggesting it has to be an either or proposition?

    What makes you think that if it remains free it won't have any chance at adoption?

  64. A possible solution by skidt+og+kanel · · Score: 1

    I suspect that the "GNAT Modified GPL" (GMGPL) solves your problem, since it specifically allows non-dynamic linking of libraries without infecting a program using the GMGPL'ed library.


    Jacob

    --
    Atheism is a non-prophet organisation.
  65. Be friendly to those who would be friendly to you. by iskander · · Score: 2, Insightful

    Please, pardon me if I have misunderstood that part of your statement, but I just have to put in my 0,02 Euros. You said:

    [...] the more business friendly BSD license

    Think for a moment about the motivation of a business for asking the developer of a GPL'd software product to change the license. The reason traditional businesses (like Apple and Microsoft) encourage independent developers to choose the BSD license is that traditional businesses (like Apple and Microsoft) can then integrate the independent developer's code into a closed-source commercial product without paying a licensing fee or even contributing to the free source code base in good faith.

    If companies were willing to release the source code of the software system into which the GPL'd code was integrated, no separate licensing arrangement would be necessary and no licensing fee would be due. So, you see, for companies that support free software, the GPL is at least as "business friendly" as the BSD license; in fact, for those companies, the GPL is more business-friendly than the BSD license because it (theoretically) prevents unscrupulous competitors from appropriating the software product it protects.

    The authors of the GPL sought to increase the quantity and quality of GPL'd software, as well as to guarantee the continued availability of source code for a particular software product -- and this seems to be what FLAC's author wants, too. I think tswinzing's post offers excellent advice: charge closed-source shops for their closed-source licenses. A switch to a BSD license would take away the competitive advantage that those companies who may already be willing to release the rest of the system under a GPL-compatible license now enjoy. When seen in that light, changing the license to BSD would subvert the author's goal of contributing to increasing the availability of free software and to the free software community's long-term goal of making all hardware interfaces open.

    A very insightful man once warned us of how an unscrupulous company could take advantage of a community of people who believe in sharing by simply asking for a handout. We must remain vigilant, because that danger still exists. I hope, dearly, that the author of FLAC will stick to his guns even in the face of these most persuasive beggars.

  66. GPL is no more "honest" than BSD by Anonymous Coward · · Score: 1, Informative

    Under the GPL, anyone who lifts the code is dishonest.

    Under the BSD, anyone who lifts the code is following the licensing terms in a perfectly acceptable way - there is no "dishonesty" involved.

    1. Re:GPL is no more "honest" than BSD by shepd · · Score: 1

      Most people in the world consider it dishonest to take someones work and purposely obscure their name from it so that they can put their name on it. (ie: Taking the glory when you've done no work).

      It's plagarism, and I suppose you could say you want your work plagarized, so if that's what people licensing BSD code want people to do, well, maybe more people should be doing it. :-)

      I think I should suggest to Microsoft they take BSD OS, rip all the references to BSD out of it (except in the binaries), and market it as Xenix generation 2.

      --
      If you could be told what you can see or read, then it follows that you could be told what to say or think - BoC
  67. balanced approach by epine · · Score: 1


    I think the GPL/LGPL makes the most sense for systems, the least sense for libraries which support programming activities, where the BSD license is just fine.

    In a similar context, I decided to create a GPL conformance suite for a protocol implementation under the BSD license.

    I'm strongly against monomaniacal unitarianism. My bible is the book "In Praise of Diversity" by Freeman Dyson.

    A conformance suite is useless unless everyone contributes back their extensions / additions. A protocol is useless unless it is widely adopted. I license is useless if it makes a political statement without making the world a better place. In situations like this, a little common sense goes a long way.

  68. Embedded friendly LGPL by AaronW · · Score: 2

    I think people might have problems with LGPL software due to the changes that may be required for various embedded operating systems. Take a look at zlib for how to make a library embedded friendly. In zLib, all of the OS related code is in a single file which makes porting very easy. Remember, in embedded systems, functions like malloc and printf might not be available.

    I worked on a project where I had to change the boot loader to use zLib so the image would fit into the flash memory. zLib was very simple to use due to the excellent abstraction layer. I had *no* operating system to rely on.

    Now zLib is under a BSD-style license instead of LGPL. For a LGPL library to work, just make the OS wrapper files BSD but the core LGPL. If it is written properly, anyone embedding the code should only have to change the OS wrappers, or if any changes are made to the core they would not reveal the internal workings of their product (unless they want to add some feature they want to remain proprietary to the core).

    --
    This post is encrypted twice with ROT-13. Documenting or attempting to crack this encryption is illegal.
  69. vp3 license? by akb · · Score: 2
    A bit offtopic but such is life.

    What do people think of the license for VP3. It has some weird provisions about derived software always being compatible with the original codec and some weird patent language.

    VP3 is a codec that will be supported by Realplayer and Quicktime, the source was released a few months back.

  70. Reference Implementation by rgmoore · · Score: 2

    A key question is exactly how you deal with your codec. If you have a definitive external specification for the codec, so that your code is just a reference implementation, I'd recommend a BSD-style license. In that case, any implementation of the code must comply with the specification. That limits the ability of companies to create proprietary extensions and damage users of the free version, so a permissive license makes sense. I'd only go to a LGPL-type license if the code is the only specification for the codec.

    This is what I've done for the handful of software that I've released. All of my programs are associated with papers that describe the function of the program in enough detail that a motivated, competent programmer could re-implement them without looking at my code. Since anyone could rewrite them from scratch and avoid any license I put on the code, I don't see a whole lot of point in putting on a restrictive licence in the first place.

    --

    There's no point in questioning authority if you aren't going to listen to the answers.

  71. Relicense It by RWarrior(fobw) · · Score: 2

    It's easy. As the copyright owner, you may issue other licences that are outside the LGPL. How about this:

    Company A wants a licence but doesn't want the hassle of the LGPL. Company A pays you $X for the right to use the codec in an embedded system, but you insert a clause in their licence that states that they may not change the codec, and if they do, they must release the changes to the codec (but not the whole of their work), or they must send the changes to you for possible inclusion in the LGPL version, releasing their copyright on those changes in the process.

    This would mean:

    1) You would get paid for their non-LGPL use of your property.

    2) They would get the opportunity to use the codec in a non-free device, if they don't modify the codec.

    3) If they modify the codec, the community would get the changes back in a free manner.

    4) You could provide a list of licencees in the codec documentation, as in, "These people have the right to use the codec in a non-free way." This eliminates charges of stealing LGPL code (which has popped on on Slashdot in the past), and provides a little good advertising for the company as a good-faith player who went out of their way to do things right. As a proponent of free software, that might make *ME* more likely to buy their product to reward their good behavior.

    5) If you don't want the money on some strange principle, you could either donate it to some worthy cause, or just issue the licences for free.

    The key here isn't the money, it's the license. Just because you've issued the software under an open license doesn't mean you can't issue the software again under a closed license, because even under the LGPL, YOU remain the copyright holder, and you may use or reuse the copyright in any way you choose.

    --
    Remove the caps and hold to a mirror.
  72. What's the problem? by Anonymous Coward · · Score: 0

    If these people want to do a hardware implementation, isn't that by definition a separate implementation of the FLAC standard? Why is there a license conflict at all? Or do you mean they want to create a small system that runs your code? In that case, if they use the unmodified source, there again shouldn't be a problem. But why do that instead of a hardware implementation?

  73. sleepycat approach worth looking at... by Anonymous Coward · · Score: 0

    there was a Slashdot article on how sleepycat does their licensing not long ago. It may not be a perfect match to your situation, but it is worth a look.

  74. Re:Oh don't worry about licensing... [NOT SO FAST] by peter · · Score: 1

    He's already considering switching from the lesser GPL to BSD-style. If he could do that, he can sell the priviledge of implementing using it in a proprietary system to whoever he wants. (AFAIK, it's likely that doing _either_ of those things will be a challenge, for the reasons you point out.)

    --
    #define X(x,y) x##y
    Peter Cordes ; e-mail: X(peter@cordes , .ca)
  75. correction (FLAC is *L*GPL'd) and praise for Josh by iskander · · Score: 1

    Please, forgive my having referred to FLAC as a GPL'd product although it is LGPL'd; I did so out of conversational habit rather than rhetorical malice -- honestly, I did.

    Also, I wish to commend FLAC's maintainer for seeking the opinion of his community before making a decision; regardless of his final decision, praise is due to him for his having made this consultation in good faith and in a public forum. I hope other maintainers, too, will meet this standard when faced with similar situations.

  76. wxWindows license. by MAXOMENOS · · Score: 3, Insightful
    If you haven't done this yet, I'd strongly recommend you look over the wxWindows license. It's basically a modified LGPL that has no restrictions on distribution of derived binaries.

    I'd recommend this over the BSD license because it removes the opportinity for certain crooked companies to "embrace and extend" your CODEC. You still retain control of the CODEC design.

    Another possibility you may want to explore, is having two licenses: GPL for free download, and closed-source proprietary for closed-source, commercial projects. Trolltech does this and they're apparently quite successful.

    Just my two cents.

  77. What's the problem? by DaoudaW · · Score: 2

    IANAL, but I keep re-reading your post, then re-reading the license, and I don't see a problem. The "Lesser" GPL was designed to allow combining free software with proprietary software. All the gyrations in point 5 regarding compiling vs. linking and uses vs. derives are just technical ways of keeping the free software distinct and free. Point 6 was written for situations such as yours. Since you expressed the desire to keep FLAC free, go for 6c or 6d and you should be home free.

  78. What (L)GPL and BSD Licenses Are Good For by dh003i · · Score: 1

    GPL in general is good to ensure that all of the improvements made upon an open-sourced code are reintegrated back into the community code. This prevents forking by allowing all conflicting versions to be united into one if a standard is desired; it also allows for variability because anyone can make a variation.

    BSD license is good to allow anyone to contribute to and improve open-sourced code, but does not require that the improvement be resubmitted back into the community pool. This allows for slightly quicker development when it comes to businesses being involved. However, it also leads to the possibility of unresovable forking. Look at what happened with the variations of UNIX; they forked in different proprietary directions, each fork unresolvable with its neighbor because everyone licensed their code under "can't touch this" mentality.

    As another alternative license I've proposed, one may want to say: "Any modifications to this code may be distributed under any open-source license," with provisions to ensure that businesses don't use this as a way to make one version, release it under open source, then EULA updates.

    The idea that people who rely on open-sourced code to make an improvement or product should have to resubmit that to the open-sourced pool is justified and reasonable: "If I can see farther than others, it is only because I have stood upon the shoulders of giants." The vast majority of accomplishments possible today, are possible because decades and centuries ago, people contributed to public knowledge openly. In deference to those contributions, progress made on the "back" of such contributions should be available for all of society.

  79. Re:Be friendly to those who would be friendly to y by hawk · · Score: 2
    >The
    >reason traditional businesses (like Apple and Microsoft) encourage
    >independent developers to choose the BSD license is that traditional
    >businesses (like Apple and Microsoft) can then integrate the
    >independent developer's code into a closed-source commercial product
    >without paying a licensing fee or even contributing to the free source
    >code base in good faith.


    Huh? Go look at the changelogs, particularly the number from apple, and try saying that again. It just wouldn't make economic sense for apple to not return the bugfixes--they then have to separately maintain their base.


    hawk

  80. It sounds like Sleepycat and Berkeley DB... by pjimenez · · Score: 1

    A couple of weeks ago, here in /., there was a thread about making money in open source... In the interview, Michael Olson mentioned something about the business model they adopted and its adoption in other library-related projects... I think it could be an interesting way to have commercial AND Free adoption... :-)

  81. Re:Oh don't worry about licensing... [NOT SO FAST] by david.johns · · Score: 1

    It has occurred to me repeatedly that this is a positive model for the open source community, but I really would like to see a license that really pulls it off. I think it was the MPL that I was looking at that was almost appropriate, but it's not GPL-enough. Maybe I'm spewing smoke. I'll look into it. However, if anybody knows of a GPL-with-the-copyright-clause style license, I would love to be sure.

  82. Bill got the answer by HansMoser · · Score: 0, Offtopic

    Now that we know that the GPL realy has an effect -- use it.

  83. dual-license by h4x0r-3l337 · · Score: 0, Flamebait

    I find it vaguely amusing that you chose to license FLAC under the LGPL, but do not seem to be aware of the possibility of dual-licensing. This just goes to prove my theory that most people license software under (L)GPL because it's the "cool" thing to do, not because they actually believe in the principles for which the GPL stands, let alone understand the consequences of their choice.

  84. Sell LGPL exceptions? by Adam+J.+Richter · · Score: 2

    If these unnamed businesses that find even the LGPL onerous are legitimate, they should have no problem paying you serious money to switch to the new BSD terms. They support the proprietary model, and you've worked hard on this project.

    If they do not pay, then, your sticking with LGPL will help the development of the core free version (although perhaps hindering proprietary forks) by ensuring that future enhancements to libFLAC are incorporated, which is particularly important in the case of something that is likely to be incrementally improved by tinkering or where standardization and interoperability may be affect adoption.

    Although I personally prefer LGPL'ed libraries, I would be remiss in not mentioning that, by similar argument, you might could go further and set up a "FLAC consortium" that companies would pay a small amount of money to in order go get the right to use libFLAC under something like LGPL (but which would not conflict with the requirement to pay dues).

  85. slim that is on your shoes by Anonymous Coward · · Score: 0

    Well I would move to a bsd license but allow the source code to be viewed look at enlightenment as an example. They were gpl at first but grappled the same issues that my project experienced

  86. add exceptions into the lience... by Computer+suck! · · Score: 1

    after reading up on the GPL, you have the right, as copyright holder, to make exceptions. So if company X for PDAy needs a more aggreable lience just add LGPL.legalObsucifyer("Company X has the right to include unmodified versions compied into there application PDAy");

    CS!

  87. Misunderstanding of intent? by Spinality · · Score: 2, Interesting

    Several of the posts here imply that Josh's intent is to find a way to sell FLAC to vendors for use in embedded systems. Those posts suggest a mix of open-source and fee-based licensing, and seem to view the embedded system vendors as folks who should essentially be paying a tax to subsidize development.

    But my take on the original question is quite different. I believe that Josh's goal is to make this software available for free, to all, including embedded system vendors; but he sees(correctly) that such vendors generally have a hard time using open source components, because of the nature of how their systems are sold, distributed, and supported. It's not necessarily practical or reasonable to compel a hardware vendor to provide the means for recompilation/relinking etc. -- even though all parties may feel that an open-source component is the best technical solution, and that using it would help to establish good industry-wide standards. (This is also true of device drivers and other components where, even if the vendors don't conform 100% to open source requirements, a watered-down standarization is still far better than if each vendor rolls his own solution. Many 'benign' proprietary software vendors would love to use open source tools and components in a non-exploiting way, i.e. as a way to improve industry-wide interoperability and standardization -- as opposed to 'evil' vendors who would seek to put a private label on open source components and sell the result -- but of course even with good intents this can't be done, since a software vendor is committing the sin of trying to get paid for its R&D costs. But that's another argument.)

    There are many good suggestions here. I think this is an extremely interesting /. thread, and it has raised some key issues.

    The bottom line for me is a basic problem with many open source licenses: Licensing restrictions often prevent a developer from making software available to folks who common sense says should be able to use it; and they often prevent a product vendor from incorporating software in ways that common sense says is consistent with the open source philosophy and would improve the overall quality of products and range of choices available to end-users.

    Thanks to all who have made thoughtful posts here.

    --
    -- We all have enough strength to endure the misfortunes of other people. La Rochefoucauld
  88. Vorbis uses LGPL. by Dragonbyght · · Score: 1

    This is kind of funny because just today my lawyers told me to rip Vorbis support out of the Ultima Online client because of it's license. I know that their FAQ says that it uses BSD but apparently it is out of date. So the UO client will stick with MP3 support only. Too bad for Ogg.

    1. Re:Vorbis uses LGPL. by jmoffitt · · Score: 2, Informative

      It does not use LGPL. The license file in both the libogg and libvorbis distributions, as well as the top 20 lines of every source file clearly state that it is licensed under the BSD license.

      Not only that, but I have several contacts at EA and have met personally with many of the audio people there and they are all aware of this to the best of my knowledge.

      One of the primary motivators for this decision was EA asking for an easier license.

      Please contact me directly or give me the info to talk to your lawyer. I can easily straighten this out.

  89. 3rd Option by Royster · · Score: 2

    What are my options? I could stick to my guns, which might limit the adoption of the format, or change the license.

    If you own the copyright on the codec and on your software, you can release it under the LGPL and simultaneously license it for use in embedded projects.

    --
    I have discovered a truly marvelous sig, unfortunately the sig limit is too small to contain i
  90. Don't be too quick to rule out 6(b) by Z80ster · · Score: 1

    The copyleft code could be put in a seperate memory device and accessed by a list of pointers simular to a dll.

  91. Re:Be friendly to those who would be friendly to y by Anonymous Coward · · Score: 0

    Two points:

    1 -- There is a tradition in the BSD community for the companies involved to give back. Perhaps MS didn't give anything back, but Apple released their derivative work (Darwin) under an open source license and there are plenty of other companies who have also given back to the BSD community. Just because some company favors the BSD license doesn't mean their out to steal your work and give you nothing in return.

    2 -- GPL is often not a realistic option, even for companies that want to support open source. A lot of commercial products contain software licensed from multiple parties. Even if a company wants to GPL its code, they may not be able to because it's linked against proprietary code licensed from another party.

    The BSD license is "business friendly" because it gives people freedom to combine free software and proprietary software, so that a company can participate in the community (both taking and giving) and license critical proprietary technologies that they need to make their product work. The GPL is all or nothing. For example, if your product depends on incorporating some proprietary, patented color conversion technology, then you can't link GPL code. For every company that the GPL prevents from taking & not giving back, there is another company that wants to participate in good faith but can't.

  92. Get a lawyer by fabbe · · Score: 1

    I'd get a lawyer to discuss this with immediately. Explain your goals and show them the GPL and LGPL. Ask what your options are. Ask them about dual-licencing. They'll give you the legal answers you need.

    At the same time, keep this in mind (you wrote, and I quote):

    "Free" means that the specification of the stream format is in the public domain... [1]

    Does this mean someone could read the specs and make their own implementation without any licensing issues at all? Perhaps this would be a good solution - you could provide consultation for a fee and get some money for your work...

    FLAC should be and stay an open format. The source code is all either LGPL'd or GPL'd. [2]

    If those things are important to you, you'll work out solutions that allow both the format to be used widely in commercial products, while retaining the requirements of the [L]GPL.

    Have you considered talking to the people interested in using FLAC in their products, or are just just listening to people who speak hypotethically? Who says the LGPL isn't fine for them?

  93. MPL by samantha · · Score: 2

    I don't really see you have a problem with LGPL in this case. But if you do you might consider the Mozilla Public License which simply states that all changes to files within the covered code must be made public. It has no restrictions on linking with any such files or libraries built on them that I am aware of. Also a dual LGPL/MPL license is fairly common. BSD on the other hand provides no production at all for continued software freedom.

  94. Shoot the hostage? by Anonymous Coward · · Score: 0

    Assume they don't patent it and yet popularise a modified version of the code... WHAT DO YOU DO?

  95. Ogg Vorbis went BSD - with Stallman's support by g8oz · · Score: 1

    There is a comment on the ogg site, explaining a lengthy email exchange they had with RMS.
    They all came to the conclusion that such a basic building block of the Internet like open audio needed a BSD-style license.

    If it worked for them, it can work for you.

  96. Sleepycat does this by basfromasd · · Score: 1

    Sleepycat does this for their Berkeley DB software. They use (their version of) GPL and you can obtain a commercial license as well for commercial, redistributed, proprietary software. That's how they make a living.

    Bas

  97. Use pipes and a simple filesystem by yerricde · · Score: 2

    GPL is often not a realistic option, even for companies that want to support open source. A lot of commercial products contain software licensed from multiple parties. Even if a company wants to GPL its code, they may not be able to because it's linked against proprietary code licensed from another party.

    To link GNU GPL 2 licensed code to proprietary code in an embedded environment, use a pair of pipes and a simple filesystem. The GPL requires only that everything linked into one "executable" be GPL compatible, and if you have all your proprietary stuff isolated in one area of flash memory and all the GPL software in another (perhaps using some sort of simple filesystem), and you limit communication between GPL code and proprietary code to a pair of pipes, you can obey the GPL.

    It becomes even easier with the GNU Lesser GPL 2.1, as LGPL code such as FLAC can run in-process with proprietary code, but you still have to provide a method to relink and reflash.

    --
    Will I retire or break 10K?
    1. Re:Use pipes and a simple filesystem by Anonymous Coward · · Score: 0

      But that's kind of like the proverbial criminal getting off on a technicality, isn't it? Sure there are ways to design your software architecture to circumvent the GPL, but I personally wouldn't be comfortable doing so. Even if you're not violating the letter of the license, you're definately violating its intent, and you're opening yourself up to accusations of wrongdoing.

      In my opinion, if somebody releases their code under the GPL, they're making a statement that they don't want it to be mixed with proprietary code. I presume that people understand this may have the affect of preventing some company or person from participating in the community in good faith, and they have chosen this license because the "copyleft" nature of it is more important.

  98. Dynamic linking a codec is easy by yerricde · · Score: 1

    However, in an embedded system, resources tend to be much more scarce. You don't always have the luxury of people able to dynamically link in the codec.

    And exactly why can't you dynamically link code on an embedded system? The vtable for a lossless audio decompressor would take what, eight machine words? See also my previous comment that gives a way to run even GPL software on an embedded system.

    --
    Will I retire or break 10K?
    1. Re:Dynamic linking a codec is easy by mr_data_esq · · Score: 1

      You can dynamically link on an embedded system, but whether there's any point to it depends on the system.

      A low-cost portable audio player will likely be designed so that all the code runs from ROM. There might not even be an OS, per se'; so there will be no program loader, and no linker, nor will there be any need for these. Dynamic linking, in the traditional sense, would require that a loader and linker be present.

      Object files are not, generally speaking, directly executable; they must be relocated, and symbols must be resolved in the linking code. It makes no sense to do this sort of thing in a ROM-based environment, on a device which will run only one program.

      Your idea of partitioning out the GPLed code and communicating with it through pipes or sockets is fine, but not necessarily for the close confines of an OS-less system without the notion of sockets or pipes. Most of the current crop of audio players seem to be built around fairly capable MCUs like the Super-H, the ColdFire or an ARM7TDMI core, and any of these are perfectly capable of handling multiple processes (Linux, or ucLinux, has been ported to them all); but when you're under deadline to get a product out, the machinery of multiple processes, linkers, loaders, and IPC starts to look, well, just a little bit frivolous.

      Very small embedded operating systems do exist: ucLinux can be shrunk to amazingly small sizes, eCos even smaller. But for the kinds of devices under consideration, even these are of little use.

      A portable "jukebox" device is usually designed to run only one program; that program's function is fixed. Therefore, the ROM image will usually be executable, statically linked object code, and the image will have been prepared on a cross-compilation system. Dynamic linking has little place in that sort of environment.

  99. I recommend the third option by yerricde · · Score: 1

    you are almost right, there's no how to recompile embedded software.

    But you also said:

    Fork LGPL and build your own version with a special paragraph for embedded systems.

    The Guile scripting engine and the Linux kernel have a similar exception in their licenses. However, I like the following method:

    Or you can ask every potencial "user" (the library user is the programmer/projectist) to find a way to easily update the firmware and allow the user to compile it.

    Bulls-eye. It's just a matter of

    1. get the right cross-GCC distribution,
    2. repeat(compile, link, emulate) until working, and
    3. reflash the firmware.
    --
    Will I retire or break 10K?
  100. Don't listen to them by Anonymous Coward · · Score: 0

    License it LGPL. If they want to link it into something proprietary, have them explicitly ask permission, and grant it on a case-by-case basis. If you want, you could even charge a small licensing fee to make it worth the hassle.

  101. No, shoot *everyone* by DrBoom · · Score: 1

    Oops, just kidding. :)

    Seems like this will post to the wrong part of the thread again -- I dunno if this is an Opera problem or a /. bug.

    If it's a BSD license and you just want to see your superior code out in the big wide world, you win the grand prize! Your code lives on and is doing Useful Things! Maybe their implentation is better, but you can be proud of getting something off the ground. Chances are that's not the case, though -- I doubt many corporations have developers who are as bright and motivated as the people that start and maintain these labors of love. BigCorp would probably rather pay the original developer to extend the tool.

    If it's a GPL'ish kind of thing, sic some law-boys on their butts (on a contingency basis, so the bigger the target, the better). Furthermore, send a news release to every rabidly pro-GPL site you can find and watch the offender get DDoS'd, h4x0r3d, spammed, and immolated in the court of public opinion. Just because you're not BigCorp doesn't mean that you are powerless.

    --
    --------------- Murphy was an otpimist.
  102. Use flash memory by yerricde · · Score: 1

    Consider the use of this codec in a portable digital music player -- all the code would be burned into ROM, and there is no way for the user to replace/update the code

    Two words: Flash memory. See also my previous comment.

    --
    Will I retire or break 10K?
  103. GUILE License == "LGPL Done Right" by Big+Jojo · · Score: 3, Informative

    Also known as "GPL plus Library Exception", where the "exception" is:

    As a special exception, if you link this library with other files to produce an executable, this library does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License.

    The effect is that it gets rid of the static linking constraint of LGPL, but it's still a CopyLeft license so that it can't be proprietized.

    This is used in the GNU runtimes for Java (libgcj, classpath, classpathx, etc) as well as GUILE, an embedded Scheme interpreter.

  104. Opt for Freedom by Brett+Glass · · Score: 1
    In the article above, the author says he wishes his software to be "free." In that case, his only alternative is to license it under a truly free license such as the BSD License or the MIT X License.

    Code licensed under the GPL or LGPL is not free in any sense of the word. It's not free "as in speech," because there are major strings attached. And it's not free "as in beer," because the GPL and LGPL force the developer to forfeit any reward he or she might get from improving the code. (He or she must also forfeit all rewards for a product which incorporates even one or two lines of GPLed or LGPLed code, even if the overwhelming majority of the code is his or her own work.)

    A truly free license does not limit what you can do with the code, but only what you can do to the author who generously released it to the world. (For example, you can't sue for bugs.) This is true freedom. The GPL's preamble makes deceptive claims that it creates freedom in an attempt to persuade hackers to sign onto Stallman's anti-business agenda. But the fact is that the GPL makes software anything but free.

    --Brett Glass

  105. If you wanted ... by TZ180 · · Score: 1

    a flame war over Linux vs *BSD, why did you just say so

    --
    A real life BSD zealot.
  106. Cant do it by Srin+Tuar · · Score: 1
    Since you, being the only designee of the release agreements signed by all contributors, are the only person with the authority to relicense, they couldnt do it.


    They could fork the codebase still, making a LGPL only version, but they could not sell a private non-LGPL license.

  107. Re:Slashbot Copy n' Paste Reply Table by smackmonkey · · Score: 0

    How could you forget:

    "Can you imagine a Beowulf Cluster of these?"

    --

    --
    CNN declares War on Islam!
    Left-wing America declares War on its Civil Liberties!
  108. You may wish to protect the format by Trongy · · Score: 1

    Even if you allow others to change the code and not release the source (BSD style license), you may wish to restrict what they can to with the code.
    e.g
    1. disallow changes to the file format to prevent the creation of an encrypted file format that other players can't use.
    or
    2. require backwards compatibilty with FLAC files if they change the format. This might allow for embedded players that can use still use an encrypted FLAC files, but must also play standard flac files.

    otherwise someone might create an embedded system that only plays encrypted FLAC files. This would be not free and not useful to most users.

    Chris

  109. Unleashing the ire of free software troopers by iskander · · Score: 1

    The fact that you can do something doesn't mean that you should, and I think (I hope?) most companies know better than to do something that would almost certainly unleash the ire of the free software troopers and perhaps even the fearsome wrath of those notoriously villainous Slashdot users (amongst whom I may be counted, I suppose) whose ferocious Web activity is feared by site administrators the world over!

  110. Greater GPL by iskander · · Score: 1

    I agree with the parent, which I would moderate as insightful if I could. I, too, have often suspected that the ample resources available in a modern computing environment make it feasible to violate the spirit of the GPL, if not the letter, by writing a message-passing interface to the desired functionality into the GPL'd code and then implementing the corresponding client as closed-source. Perhaps it is time for something like a "Greater" GPL that would address these issues and thereby satisfy the more aggressively militant free software advocates.

  111. BSD hands down by bagder · · Score: 1

    If the companies find bugs or extend the core, you can be almost certain that they will post changes back to the maintainers even if they aren't forced to do that by the license. Lagging behind the official releases and updates will otherwise put an increasing load on the developers that they want to avoid.

    Using BSD will get you more commercial users, thus a wider audience and more people that are likely to use it and find bugs.

    The Fear of Exploitation is often greatly exaggerated.

  112. Re:Be friendly to those who would be friendly to y by Courageous · · Score: 2


    It's not as simple as you make it out to be. If I decide to incorporate a GPL product into an internal effort, I've unilaterally made the decision for all other members of my company when they wish to adopt my product. They have no real choice but to use the GPL as well.

    C//

  113. u need a strategic policy statement about licenses by iskander · · Score: 1

    In my view, the proper order of things is to look at the licenses first and the products second; that is, if the terms of a particular license are unacceptable to you or to those who depend on you to make the decision, you ought not to be looking at the software products covered by said license. Your company ought to have a strategic policy statement regarding acceptable licensing terms; this would give you a framework within which to evaluate the suitability of a particular license and spare you the agony of second-guessing everybody else who might depend on your decision. Assuming I have understood you correctly, the real problem you are (hypothetically) facing is that your company does not have an adequate strategic policy statement concerning licensing terms for outsourced products; once your company has addressed that issue, whether or not to incorporate a GPL product into an internal effort is either a non-issue (i.e., the GPL just doesn't mix well with your company's strategic policy) or decidable based on the particular product's technical merit alone.

  114. Re:u need a strategic policy statement about licen by Courageous · · Score: 2

    While you are quite right about the situation, that really emphasizes my point: adopting a BSD-style piece of software doesn't require me to consult with a corportate attorney, and if no "acceptible use policy" is present, no problem.

    GPL introduces a great deal of difficulty for commercial workers.

    C//