Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Suppose I use this ActionScript API released under MIT license to build a software: http://www.cove.org/ape/docs/api/

  1. Can I sell that software?
  2. Do I need to give the source code of my software away?
  3. Is anyone receiving my software permitted to resell the software?
share|improve this question
2  
I like this thread but shouldn't it belong to Programmer.SE? – amphibient Sep 26 '12 at 20:49
Isnt there a database to register your project to MIT licence? opensource.org/licenses/bsd-license.php greetings – user1839724 Mar 3 at 10:17

closed as off topic by Wouter J, egrunin, msmucker0527, Mario, Linger Mar 6 at 20:37

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

up vote 79 down vote accepted
  1. You can sell the software.
  2. No, you are not compelled to provide source code.
  3. Anyone who receives source code may do as the license permits. This does not extend to binary distributions.

Read the MIT license. Read the whole thing and understand it. It was meant to be read by ordinary people, unlike other licenses that are very complex:

Copyright (c) year copyright holders

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

share|improve this answer
1  
I agree, read the license, it's short: opensource.org/licenses/mit-license.html – Ben Blank Apr 1 '09 at 18:32
Maybe the thing he wanted to ask was weather he can license his product under some commercial license (is MIT license copyleft?)? – Jox Apr 2 '09 at 7:59
8  
Jox, I pasted the ENTIRE license above so you can see for yourself. BSD/MIT/ISC style licensed software have been included in Mac OS, Windows, etc... You cannot remove the license/copyright, but you can do pretty much anything else. It's not viral. – dwc Apr 2 '09 at 15:19

As always, consult a lawyer. If this library is released strictly using the MIT license then:

(i) Yes, you can sell your software provided you include the MIT license as part of your product. (ii) No, you don't have to share your code with the community but it would be nice. (iii) Yes, reselling is permitted.

MIT License:

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

share|improve this answer

From the "Understanding Open Source and Free Software Licensing" O'Reilly book (PDF):

These licenses, as applied to the original licensed code, allow that code to be used in proprietary software and do not require that open source versions of the code be dis- tributed. Code created under these licenses, or derived from such code, may go “closed” and developments can be made under that proprietary license, which are lost to the open source community. For the same reason, however, these licenses are very flexible and compatible with almost every form of open source license.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.