[cairo-commit] pycairo ChangeLog, 1.106, 1.107 configure.ac, 1.20,
1.21
Steve Chaplin
commit at pdx.freedesktop.org
Mon May 9 17:55:41 PDT 2005
- Previous message: [cairo-commit] cairo/src cairo-ft-font.c,1.59,1.60
- Next message: [cairo-commit] pycairo/cairo pycairo-surface.c, 1.35,
1.36 pycairo-private.h, 1.21, 1.22 pycairo-pattern.c, 1.18,
1.19 pycairo.h, 1.28, 1.29 pycairo-context.c, 1.47,
1.48 cairomodule.c, 1.31, 1.32 cairogtkmodule.c, 1.19,
1.20 pycairo-path.c, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: stevech1097
Update of /cvs/cairo/pycairo
In directory gabe:/tmp/cvs-serv27117
Modified Files:
ChangeLog configure.ac
Log Message:
SC
Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/pycairo/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -d -r1.106 -r1.107
--- ChangeLog 9 May 2005 09:12:31 -0000 1.106
+++ ChangeLog 10 May 2005 00:55:39 -0000 1.107
@@ -1,3 +1,33 @@
+2005-05-10 Steve Chaplin <steve1097 at yahoo.com.au>
+
+ * cairo/pycairo-surface.c:
+ * cairo/pycairo-private.h:
+ * cairo/pycairo-pattern.c:
+ * cairo/pycairo.h:
+ * cairo/pycairo-context.c:
+ * cairo/cairomodule.c:
+ rename pycairo_check_status to Pycairo_check_status - public functions
+ should start with 'Py'
+
+ * configure.ac : change the deprecated '-std=c9x' flag to '-std=c99'
+
+ * cairo/pycairo.h:
+ * cairo/pycairo-private.h:
+ * cairo/cairomodule.c:
+ add PycairoImageSurface_Type support
+
+ * cairo/cairogtkmodule.c (surface_create_for_pixbuf):
+ change call to PycairoSurface_FromSurface()
+ to PycairoImageSurface_FromImageSurface()
+
+ * cairo/cairomodule.c (init_cairo): do not add the Path object
+ since its not accessed directly
+
+ * cairo/pycairo-path.c: add PyCairoPath.__str__ method
+
+ * cairo/pycairo-context.c (pycairo_append_path)
+ (pycairo_copy_path_flat): new wrappers
+
2005-05-09 Steve Chaplin <steve1097 at yahoo.com.au>
* examples/warpedtext.py : updated to use copy_path()
Index: configure.ac
===================================================================
RCS file: /cvs/cairo/pycairo/configure.ac,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- configure.ac 9 May 2005 00:52:46 -0000 1.20
+++ configure.ac 10 May 2005 00:55:39 -0000 1.21
@@ -91,13 +91,14 @@
changequote(,)dnl
if test "x$GCC" = xyes; then
case " $CFLAGS " in
- *[\ \ ]-Wall[\ \ ]*) ;;
- *) CFLAGS="$CFLAGS -Wall" ;;
+ *[\ \ ]-std=c99[\ \ ]*) ;;
+ *[\ \ ]-std=c9x[\ \ ]*) ;;
+ *) CFLAGS="$CFLAGS -std=c99" ;;
esac
case " $CFLAGS " in
- *[\ \ ]-std=c9x[\ \ ]*) ;;
- *) CFLAGS="$CFLAGS -std=c9x" ;;
+ *[\ \ ]-Wall[\ \ ]*) ;;
+ *) CFLAGS="$CFLAGS -Wall" ;;
esac
fi
changequote([,])dnl
- Previous message: [cairo-commit] cairo/src cairo-ft-font.c,1.59,1.60
- Next message: [cairo-commit] pycairo/cairo pycairo-surface.c, 1.35,
1.36 pycairo-private.h, 1.21, 1.22 pycairo-pattern.c, 1.18,
1.19 pycairo.h, 1.28, 1.29 pycairo-context.c, 1.47,
1.48 cairomodule.c, 1.31, 1.32 cairogtkmodule.c, 1.19,
1.20 pycairo-path.c, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cairo-commit
mailing list