From 54a5d867d39abd9db484424d2f7b95662d960e15 Mon Sep 17 00:00:00 2001 From: Matthias Kramm Date: Mon, 3 Aug 2009 18:57:59 +0200 Subject: [PATCH] updated .gitignore, new as3 test cases, build system fixes --- .gitignore | 17 +++++++++++++++++ lib/as3/.gitignore | 7 +++++++ lib/as3/ok/cdata.as | 19 +++++++++++++++++++ lib/as3/ok/staticself.as | 17 +++++++++++++++++ lib/gfxpoly/.gitignore | 1 + lib/pdf/.gitignore | 10 +++++++++- m4/lowercase.m4 | 3 ++- 7 files changed, 72 insertions(+), 2 deletions(-) create mode 100644 lib/as3/ok/cdata.as create mode 100644 lib/as3/ok/staticself.as create mode 100644 lib/gfxpoly/.gitignore diff --git a/.gitignore b/.gitignore index fe4f5e0..f7baca2 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,13 @@ *.swf *.ps *.pyc +*.png +*.diff +*.PDF +*.wav +m +*dSYM +tags lib/python/*.so lib/python/*.dll swfcombine @@ -29,6 +36,10 @@ t r cming gen +Makefile +lib/pdf/Makefile +src/Makefile +swfs/Makefile ./Makefile Makefile.common Makefile.new @@ -58,3 +69,9 @@ lib/pdf/xpdf* swfs/PreLoaderTemplate swfs/keyboard_viewer swfs/simple_viewer +avi2swf/Makefile +lib/Makefile +lib/action/Makefile +lib/python/Makefile +lib/readers/Makefile +tmp/ diff --git a/lib/as3/.gitignore b/lib/as3/.gitignore index ac94f81..4273dfe 100644 --- a/lib/as3/.gitignore +++ b/lib/as3/.gitignore @@ -2,3 +2,10 @@ testwrite testrewrite testpaths testreadwrite testwrite.c testrewrite.c testpaths.c testreadwrite.c parser.tab.c parser.tab.h tokenizer.yy.c +.tests.cache +tags +parser +parser.output +run +mklib +t.as diff --git a/lib/as3/ok/cdata.as b/lib/as3/ok/cdata.as new file mode 100644 index 0000000..b586b24 --- /dev/null +++ b/lib/as3/ok/cdata.as @@ -0,0 +1,19 @@ +package { + import flash.display.MovieClip + + public class Main extends flash.display.MovieClip { + + function test() + { + return (]]].]].]>.]]]>).toString(); + } + + function Main() { + if(this.test() == "[0][]]<]>]]].]].]>.]") + trace("ok"); + else + trace("error"); + trace("[exit]"); + } + } +} diff --git a/lib/as3/ok/staticself.as b/lib/as3/ok/staticself.as new file mode 100644 index 0000000..88bc6dc --- /dev/null +++ b/lib/as3/ok/staticself.as @@ -0,0 +1,17 @@ +package +{ + public class T + { + } + public class Main + { + public static const t = new T(); + public static const BASE = new Main(); + + function Main() + { + trace("ok"); + trace("[exit]"); + } + } +} diff --git a/lib/gfxpoly/.gitignore b/lib/gfxpoly/.gitignore new file mode 100644 index 0000000..9daeafb --- /dev/null +++ b/lib/gfxpoly/.gitignore @@ -0,0 +1 @@ +test diff --git a/lib/pdf/.gitignore b/lib/pdf/.gitignore index 10779d8..b4ce7f2 100644 --- a/lib/pdf/.gitignore +++ b/lib/pdf/.gitignore @@ -1 +1,9 @@ -m pdf2swf *.o *.obj *.pdf *.swf switch Makefile +m +pdf2swf +pdftoppm +*.o +*.obj +*.pdf +*.swf +switch +Makefile diff --git a/m4/lowercase.m4 b/m4/lowercase.m4 index 0d9cd9a..9e36f06 100644 --- a/m4/lowercase.m4 +++ b/m4/lowercase.m4 @@ -11,5 +11,6 @@ else AC_MSG_RESULT(no) fi ]) - +rm -f __abcdefghijklmnopqrstuvwxyz.txt +rm -f __ABCDEFGHIJKLMNOPQRSTUVWXYZ.txt -- 1.7.10.4