-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 30606 b: refs/heads/master c: b817f6f h: refs/heads/master v: v3
- Loading branch information
Sam Ravnborg
committed
Jun 9, 2006
1 parent
6ae5c32
commit d4f12e3
Showing
5 changed files
with
86 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: bd5cbcedf446e2f37cf2a37f533a7e1d7dff9312 | ||
refs/heads/master: b817f6feff4a565b08f0e699a5790b4008b8f494 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#ifndef __LICENSE_H | ||
#define __LICENSE_H | ||
|
||
static inline int license_is_gpl_compatible(const char *license) | ||
{ | ||
return (strcmp(license, "GPL") == 0 | ||
|| strcmp(license, "GPL v2") == 0 | ||
|| strcmp(license, "GPL and additional rights") == 0 | ||
|| strcmp(license, "Dual BSD/GPL") == 0 | ||
|| strcmp(license, "Dual MIT/GPL") == 0 | ||
|| strcmp(license, "Dual MPL/GPL") == 0); | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters