• @glassware
    link
    9
    edit-2
    1 year ago

    It’s a shame the strategy is now failing because software as a service is so popular. Nothing in the GPL forces you to distribute your changes if you don’t distribute the program. So just put the program on a webserver and let users interact through an API and hey presto, steal as much GPL code as you like.

    Everyone crucified MongoDB when they tried to create a licence that prevents this, and FSF have declared that the problem can’t be solved with licences and everyone just has to boycott non-free software (good luck!).

    End of free software as we know it, IMHO.

    • @[email protected]
      link
      fedilink
      131 year ago

      Wasn’t the Affero GPL (AGPL) created exactely to enforce copyleft in a SaaS environment?

      Quoting from the GNU website:

      [The AGPL] has one added requirement: if you run a modified program on a server and let other users communicate with it there, your server must also allow them to download the source code corresponding to the modified version running there.

      • @glassware
        link
        31 year ago

        The problem is these licences treat network interaction as intrinsically different to linking against a dynamic library. If you link against the code with a binary API that’s a violation, but if you link against it with an HTTP API it’s not.

        GNU Affero doesn’t help with that. Under either GPL or GNU Affero, all you need to do to defeat the virality of the licence is package the code as a service and put all your modifications into a separate proprietary program that interacts with it.

        That’s why MongoDB tried to force users to open source their entire service if it involves a copyleft program. It’s clumsy but I can see why they did it. We need a modern licence that treats any form of interprocess communication the way the GPL treats linking.

        (The page you linked goes on to say that GNU Affero doesn’t solve the SaaS problem and it’s impossible for licences to address it.)