• AnyOldName3@lemmy.world
    link
    fedilink
    arrow-up
    54
    arrow-down
    9
    ·
    1 year ago

    Usually FOSS is specifically copyleft licences like the GPL, which Microsoft don’t use. Their open-source stuff tends to be MIT.

    • boonhet@lemm.ee
      link
      fedilink
      arrow-up
      40
      arrow-down
      3
      ·
      edit-2
      1 year ago

      While you’re correct, that’s funny because as a developer using a framework like dotNET, MIT gives YOU more freedom. At least for anything statically linked where the GPL code would end up as part of your binary and force you to GPL your own code I believe.

      • 6xpipe_@lemmy.world
        link
        fedilink
        arrow-up
        26
        ·
        1 year ago

        MIT gives YOU more freedom

        After years of debate about licenses for my own software (that only I use…), my philosophy has been boiled down to this: MIT for libraries. GPL for programs.

        This way, other developers can freely use your library, and your program remains free.

        • boonhet@lemm.ee
          link
          fedilink
          arrow-up
          8
          ·
          1 year ago

          That’s competely sensible if you ask me. Though there’s also nothing wrong with MITing your programs if you want to. By making the source available, you’ve already done plenty for the users.

      • lea@feddit.de
        link
        fedilink
        arrow-up
        8
        arrow-down
        1
        ·
        edit-2
        1 year ago

        At least for anything statically linked where the GPL code would end up as part of your binary and force you to GPL your own code I believe.

        Anything more lax is fine, so you could also release your code under MIT license if you use GPL modules. Yes, it does force you to release your code but after all it’s a protection for the user. Furthermore, GPL does not mean your software has to be free of charge, you can still sell it as long as you attach the source code for the end user.

      • PixxlMan@lemmy.world
        link
        fedilink
        arrow-up
        8
        arrow-down
        1
        ·
        1 year ago

        I find the distinction that dynamically linking GPL is fine but statically linking it is not to be so ridiculous. That’s obviously just an implementation detail. The only conceivable difference other than the pointless “technuchalley your program contains GPL code now as part of the file” is that you have to do dynamic linking, which is slightly slower. How does the fact that your work is dynamically linked vs statically linked make any difference to the people writing GPL libraries??

        • float@feddit.de
          link
          fedilink
          arrow-up
          6
          ·
          1 year ago

          I think that’s for LGPL. For GLP any form of linking requires the code to be licensed under GPL, too. The dynamic linking except isn’t that bad of you think about it. It gives you the freedom to update or replace the library at any time. For security critical libs (TLS, GPG, …) that’s a big plus.

        • bufalo1973@lemmy.ml
          link
          fedilink
          English
          arrow-up
          4
          ·
          edit-2
          1 year ago

          Dynamic linking let’s you use an already packaged library that its source you don’t touch.

          Static linking means you have to show the source just in case you did some change.

        • grue@lemmy.world
          link
          fedilink
          English
          arrow-up
          5
          ·
          1 year ago

          Exactly. Debating which of copyleft or permissive licensing is “more free” is always the wrong question. The correct question is "freedom for whom?

    • Karyoplasma@discuss.tchncs.de
      link
      fedilink
      arrow-up
      1
      ·
      1 year ago

      I thought MIT is the “do whatever you want with my code but don’t blame me if it breaks something”-license. Am I misinformed?