LICENSE-MIXING 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. License Mixing with apps, libcurl and Third Party Libraries
  2. ===========================================================
  3. libcurl can be built to use a fair amount of various third party libraries,
  4. libraries that are written and provided by other parties that are distributed
  5. using their own licenses. Even libcurl itself contains code that may cause
  6. problems to some. This document attempts to describe what licenses libcurl and
  7. the other libraries use and what possible dilemmas linking and mixing them all
  8. can lead to for end users.
  9. I am not a lawyer and this is not legal advice!
  10. One common dilemma is that GPL[1]-licensed code is not allowed to be linked
  11. with code licensed under the Original BSD license (with the announcement
  12. clause). You may still build your own copies that use them all, but
  13. distributing them as binaries would be to violate the GPL license - unless you
  14. accompany your license with an exception[2]. This particular problem was
  15. addressed when the Modified BSD license was created, which does not have the
  16. announcement clause that collides with GPL.
  17. libcurl http://curl.haxx.se/docs/copyright.html
  18. Uses an MIT (or Modified BSD)-style license that is as liberal as
  19. possible.
  20. OpenSSL http://www.openssl.org/source/license.html
  21. (May be used for SSL/TLS support) Uses an Original BSD-style license
  22. with an announcement clause that makes it "incompatible" with GPL. You
  23. are not allowed to ship binaries that link with OpenSSL that includes
  24. GPL code (unless that specific GPL code includes an exception for
  25. OpenSSL - a habit that is growing more and more common). If OpenSSL's
  26. licensing is a problem for you, consider using GnuTLS or yassl
  27. instead.
  28. GnuTLS http://www.gnutls.org/
  29. (May be used for SSL/TLS support) Uses the LGPL[3] license. If this is
  30. a problem for you, consider using OpenSSL instead. Also note that
  31. GnuTLS itself depends on and uses other libs (libgcrypt and
  32. libgpg-error) and they too are LGPL- or GPL-licensed.
  33. yassl http://www.yassl.com/
  34. (May be used for SSL/TLS support) Uses the GPL[1] license. If this is
  35. a problem for you, consider using OpenSSL or GnuTLS instead.
  36. NSS http://www.mozilla.org/projects/security/pki/nss/
  37. (May be used for SSL/TLS support) Is covered by the MPL[4] license,
  38. the GPL[1] license and the LGPL[3] license. You may choose to license
  39. the code under MPL terms, GPL terms, or LGPL terms. These licenses
  40. grant you different permissions and impose different obligations. You
  41. should select the license that best meets your needs.
  42. axTLS http://axtls.sourceforge.net/
  43. (May be used for SSL/TLS support) Uses a Modified BSD-style license.
  44. c-ares http://daniel.haxx.se/projects/c-ares/license.html
  45. (Used for asynchronous name resolves) Uses an MIT license that is very
  46. liberal and imposes no restrictions on any other library or part you
  47. may link with.
  48. zlib http://www.gzip.org/zlib/zlib_license.html
  49. (Used for compressed Transfer-Encoding support) Uses an MIT-style
  50. license that shouldn't collide with any other library.
  51. MIT Kerberos http://web.mit.edu/kerberos/www/dist/
  52. (May be used for GSS support) MIT licensed, that shouldn't collide
  53. with any other parts.
  54. Heimdal http://www.pdc.kth.se/heimdal/
  55. (May be used for GSS support) Heimdal is Original BSD licensed with
  56. the announcement clause.
  57. GNU GSS http://www.gnu.org/software/gss/
  58. (May be used for GSS support) GNU GSS is GPL licensed. Note that you
  59. may not distribute binary curl packages that uses this if you build
  60. curl to also link and use any Original BSD licensed libraries!
  61. libidn http://josefsson.org/libidn/
  62. (Used for IDNA support) Uses the GNU Lesser General Public
  63. License [3]. LGPL is a variation of GPL with slightly less aggressive
  64. "copyleft". This license requires more requirements to be met when
  65. distributing binaries, see the license for details. Also note that if
  66. you distribute a binary that includes this library, you must also
  67. include the full LGPL license text. Please properly point out what
  68. parts of the distributed package that the license addresses.
  69. OpenLDAP http://www.openldap.org/software/release/license.html
  70. (Used for LDAP support) Uses a Modified BSD-style license. Since
  71. libcurl uses OpenLDAP as a shared library only, I have not heard of
  72. anyone that ships OpenLDAP linked with libcurl in an app.
  73. libssh2 http://www.libssh2.org/
  74. (Used for scp and sftp support) libssh2 uses a Modified BSD-style
  75. license.
  76. [1] = GPL - GNU General Public License: http://www.gnu.org/licenses/gpl.html
  77. [2] = http://www.fsf.org/licenses/gpl-faq.html#GPLIncompatibleLibs details on
  78. how to write such an exception to the GPL
  79. [3] = LGPL - GNU Lesser General Public License:
  80. http://www.gnu.org/licenses/lgpl.html
  81. [4] = MPL - Mozilla Public License:
  82. http://www.mozilla.org/MPL/