From: Joshua Oreman Date: Fri, 7 Aug 2009 09:23:30 +0000 (-0700) Subject: [legal] Add MIT licence declaration X-Git-Tag: v0.9.8~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f274a695007233d0f1dcc9357fa6bc57c7b467f;p=thirdparty%2Fipxe.git [legal] Add MIT licence declaration Signed-off-by: Michael Brown --- diff --git a/src/include/compiler.h b/src/include/compiler.h index 7c1aa1f47..d368aec04 100644 --- a/src/include/compiler.h +++ b/src/include/compiler.h @@ -501,6 +501,16 @@ int __debug_disable; #define FILE_LICENCE_BSD2 \ PROVIDE_SYMBOL ( __licence_bsd2 ) +/** Declare a file as being under the one-clause MIT-style licence + * + * This licence declaration is applicable when a file states itself to + * be licensed under terms allowing redistribution for any purpose + * with or without fee, provided that the copyright notice and + * permission notice appear in all copies. + */ +#define FILE_LICENCE_MIT \ + PROVIDE_SYMBOL ( __licence_mit ) + /** Declare a particular licence as applying to a file */ #define FILE_LICENCE( _licence ) FILE_LICENCE_ ## _licence