summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-11-23 15:46:36 +0000
committerLennart Poettering <lennart@poettering.net>2005-11-23 15:46:36 +0000
commit9d4bf2aa7cd514bb2953de4caad65adc615469c6 (patch)
tree8813a41533d8e59385223adcd3fd6430950f224f
parentb77ca582eb4ec5df34cc81b9b5187a1cebb13532 (diff)
* add a bunch of new licenses
* add mising include to lexer * fix compilation git-svn-id: file:///home/lennart/svn/public/sse/trunk@41 5fbabb74-0606-0410-a5e4-b5cc6a42724e
-rw-r--r--feed/Makefile2
-rwxr-xr-xfeed/sse_fm.py8
-rw-r--r--feed/sse_lex_c.l1
3 files changed, 8 insertions, 3 deletions
diff --git a/feed/Makefile b/feed/Makefile
index d657b04..b23efe3 100644
--- a/feed/Makefile
+++ b/feed/Makefile
@@ -1,4 +1,4 @@
-CFLAGS=-Wall-W -O3 -pipe
+CFLAGS=-Wall -W -O3 -pipe
#CFLAGS=-Wextra -g -O0 -pipe
LIBS=-lfl
diff --git a/feed/sse_fm.py b/feed/sse_fm.py
index 45f6ce4..5efa2da 100755
--- a/feed/sse_fm.py
+++ b/feed/sse_fm.py
@@ -16,7 +16,8 @@ license_blacklist = [
"Other/Proprietary License with Source",
"Other/Proprietary License",
"Aladdin Free Public License (AFPL)",
- "Free For Home Use"
+ "Free For Home Use",
+ "Unknown"
]
license_whitelist = [
@@ -35,7 +36,10 @@ license_whitelist = [
"GNU Free Documentation License (FDL)",
"W3C License",
"Mozilla Public License (MPL)",
- "The Apache License 2.0"
+ "The Apache License 2.0",
+ "Perl License",
+ "The PHP License",
+ "Python License"
]
def process_record(meta):
diff --git a/feed/sse_lex_c.l b/feed/sse_lex_c.l
index 4674b73..e9c2f8e 100644
--- a/feed/sse_lex_c.l
+++ b/feed/sse_lex_c.l
@@ -3,6 +3,7 @@
%{
#include <stdio.h>
+#include <ctype.h>
static void print_with_subwords(const char *w) {
const char *e;