-
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.
Add a CairoScript interpreter library and use it to replay the test output for the CairoScript backend. The library is also used by the currently standalone Sphinx debugger [git://anongit.freedesktop.org/~ickle/sphinx]. The syntax/operator semantics are not yet finalized, but are expected to mature before the next stable release.
- Loading branch information
Chris Wilson
committed
Nov 13, 2008
1 parent
a856371
commit cdfffc7
Showing
15 changed files
with
10,801 additions
and
33 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
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
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,17 @@ | ||
Cairo is free software. | ||
|
||
Every source file in the implementation of cairo is available to be | ||
redistributed and/or modified under the terms of either the GNU Lesser | ||
General Public License (LGPL) version 2.1 or the Mozilla Public | ||
License (MPL) version 1.1. Some files are available under more | ||
liberal terms, but we believe that in all cases, each file may be used | ||
under either the LGPL or the MPL. | ||
|
||
See the following files in this directory for the precise terms and | ||
conditions of either license: | ||
|
||
COPYING-LGPL-2.1 | ||
COPYING-MPL-1.1 | ||
|
||
Please see each file in the implementation for copyright and licensing | ||
information, (in the opening comment of each file). |
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,21 @@ | ||
lib_LTLIBRARIES = libcairo-script-interpreter.la | ||
|
||
cairoincludedir=$(includedir)/cairo | ||
cairoinclude_HEADERS = cairo-script-interpreter.h | ||
libcairo_script_interpreter_la_SOURCES = \ | ||
cairo-script-private.h \ | ||
cairo-script-file.c \ | ||
cairo-script-hash.c \ | ||
cairo-script-interpreter.c \ | ||
cairo-script-objects.c \ | ||
cairo-script-operators.c \ | ||
cairo-script-scanner.c \ | ||
cairo-script-stack.c \ | ||
$(NULL) | ||
libcairo_script_interpreter_la_CPPFLAGS = -I$(top_srcdir)/src | ||
libcairo_script_interpreter_la_CFLAGS = $(CAIRO_CFLAGS) | ||
libcairo_script_interpreter_la_LDFLAGS = -version-info $(CAIRO_LIBTOOL_VERSION_INFO) -no-undefined $(export_symbols) | ||
libcairo_script_interpreter_la_LIBADD = -lz $(CAIRO_LIBS) -L$(top_builddir)/src -lcairo | ||
|
||
EXTRA_DIST = \ | ||
COPYING |
Oops, something went wrong.