[cairo-commit] cairo-ocaml configure.ac, 1.10, 1.11 config.make.in, 1.2, 1.3 Makefile, 1.4, 1.5 ChangeLog, 1.15, 1.16

Olivier Andrieu commit at pdx.freedesktop.org
Tue Mar 1 14:19:54 PST 2005


Committed by: oandrieu

Update of /cvs/cairo/cairo-ocaml
In directory gabe:/tmp/cvs-serv25584

Modified Files:
	configure.ac config.make.in Makefile ChangeLog 
Log Message:
add libsvg-cairo bindings


Index: configure.ac
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/configure.ac,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- configure.ac	26 Jan 2005 00:54:15 -0000	1.10
+++ configure.ac	1 Mar 2005 22:19:52 -0000	1.11
@@ -31,9 +31,13 @@
   use_gtkcairo=no
 fi
 
+# Optional libsvg-cairo support
+PKG_CHECK_MODULES(LIBSVG_CAIRO, libsvg-cairo, use_libsvg_cairo=yes, use_libsvg_cairo=no)
+
 echo
-echo "  GTK+     support: $use_gtk"
-echo "  GTKCairo support: $use_gtkcairo"
+echo "  GTK+         support: $use_gtk"
+echo "  GTKCairo     support: $use_gtkcairo"
+echo "  libsvg-cairo support: $use_libsvg_cairo"
 echo
 
 AC_OUTPUT(config.make)

Index: config.make.in
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/config.make.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- config.make.in	26 Nov 2003 19:45:24 -0000	1.2
+++ config.make.in	1 Mar 2005 22:19:52 -0000	1.3
@@ -23,6 +23,9 @@
 GTKCAIRO_CFLAGS = @GTKCAIRO_CFLAGS@
 GTKCAIRO_LIBS   = $(filter-out $(FILT), at GTKCAIRO_LIBS@)
 
+LIBSVG_CAIRO_CFLAGS = @LIBSVG_CAIRO_CFLAGS@
+LIBSVG_CAIRO_LIBS   = @LIBSVG_CAIRO_LIBS@
+
 cobjs     = $(patsubst %.c, %.o, $(filter %.c,$(1)))
 mlintfs   = $(patsubst %.mli, %.cmi, $(filter %.mli,$(1)))
 mlobjs    = $(patsubst %.ml, %.cmo, $(filter %.ml,$(1)))

Index: Makefile
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/Makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- Makefile	30 Jan 2005 16:25:32 -0000	1.4
+++ Makefile	1 Mar 2005 22:19:52 -0000	1.5
@@ -3,7 +3,7 @@
 	$(MAKE) -C src $@
 
 
-VERSION = 0.3
+VERSION = 0.3.0
 DISTSRC = aclocal.m4 config.make.in configure configure.ac Makefile Makefile.rules \
           doc support/install-sh support/ocaml.m4 \
           src/*.ml src/*.mli src/*.c src/*.h src/Makefile src/.depend_c \

Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- ChangeLog	26 Jan 2005 00:54:15 -0000	1.15
+++ ChangeLog	1 Mar 2005 22:19:52 -0000	1.16
@@ -1,3 +1,16 @@
+2005-03-01  Olivier Andrieu  <oliv__a at users.sourceforge.net>
+
+	* src/ml_svg_cairo.c, src/svg_cairo.ml, src/svg_cairo.mli : add
+	libsvg-cairo bindings
+
+	* test/svg2png.ml : ocaml version of svg2png
+
+	* * : configure stuff
+	
+2005-02-27  Olivier Andrieu  <oliv__a at users.sourceforge.net>
+
+	* test/Makefile, test/kapow.ml : add the kapow example program.
+	
 2005-01-26  Olivier Andrieu  <oliv__a at users.sourceforge.net>
 
 	* configure.ac: require cairo 0.3.0




More information about the cairo-commit mailing list