[Commit] Xr/src cairo.c, NONE, 1.1 cairo.h, NONE, 1.1 cairo_color.c, NONE, 1.1 cairo_font.c, NONE, 1.1 cairo_gstate.c, NONE, 1.1 cairo_matrix.c, NONE, 1.1 cairo_misc.c, NONE, 1.1 cairo_path.c, NONE, 1.1 cairo_path_bounds.c, NONE, 1.1 cairo_path_fill.c, NONE, 1.1 cairo_path_stroke.c, NONE, 1.1 cairo_pen.c, NONE, 1.1 cairo_polygon.c, NONE, 1.1 cairo_spline.c, NONE, 1.1 cairo_surface.c, NONE, 1.1 cairo_traps.c, NONE, 1.1 cairoint.h, NONE, 1.1 Makefile.am, 1.5, 1.6 Xr.h, 1.30, NONE xr.c, 1.26, NONE xrcolor.c, 1.7, NONE xrfiller.c, 1.8, NONE xrfont.c, 1.7, NONE xrgstate.c, 1.38, NONE xrint.h, 1.43, NONE xrmatrix.c, 1.3, NONE xrmisc.c, 1.2, NONE xrpath.c, 1.16, NONE xrpathbounds.c, 1.1, NONE xrpathfill.c, 1.1, NONE xrpathstroke.c, 1.2, NONE xrpen.c, 1.20, NONE xrpolygon.c, 1.9, NONE xrspline.c, 1.6, NONE xrstate.c, 1.8, NONE xrstroker.c, 1.25, NONE xrsurface.c, 1.17, NONE xrtraps.c, 1.20, NONE

Carl Worth commit at keithp.com
Fri Jul 18 12:34:22 PDT 2003


Committed by: cworth

Update of /local/src/CVS/Xr/src
In directory home.keithp.com:/tmp/cvs-serv11854/src

Modified Files:
	Makefile.am 
Added Files:
	cairo.c cairo.h cairo_color.c cairo_font.c cairo_gstate.c 
	cairo_matrix.c cairo_misc.c cairo_path.c cairo_path_bounds.c 
	cairo_path_fill.c cairo_path_stroke.c cairo_pen.c 
	cairo_polygon.c cairo_spline.c cairo_surface.c cairo_traps.c 
	cairoint.h 
Removed Files:
	Xr.h xr.c xrcolor.c xrfiller.c xrfont.c xrgstate.c xrint.h 
	xrmatrix.c xrmisc.c xrpath.c xrpathbounds.c xrpathfill.c 
	xrpathstroke.c xrpen.c xrpolygon.c xrspline.c xrstate.c 
	xrstroker.c xrsurface.c xrtraps.c 
Log Message:
Renamed everything from Xr* to cairo_*

--- NEW FILE: cairo.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo.h ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo_color.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo_font.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo_gstate.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo_matrix.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo_misc.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo_path.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo_path_bounds.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo_path_fill.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo_path_stroke.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo_pen.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo_polygon.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo_spline.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo_surface.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairo_traps.c ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cairoint.h ---
(This appears to be a binary file; contents omitted.)

Index: Makefile.am
===================================================================
RCS file: /local/src/CVS/Xr/src/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- Makefile.am	15 May 2003 01:30:57 -0000	1.5
+++ Makefile.am	18 Jul 2003 18:34:19 -0000	1.6
@@ -1,28 +1,27 @@
-lib_LTLIBRARIES = libXr.la
-include_HEADERS = Xr.h
+lib_LTLIBRARIES = libcairo.la
+include_HEADERS = cairo.h
 
-libXr_la_SOURCES = \
-	Xr.h \
-	xr.c \
-	xrint.h \
-	xrcolor.c \
-	xrfont.c \
-	xrgstate.c \
-	xrmatrix.c \
-	xrmisc.c \
-	xrpath.c \
-	xrpathbounds.c \
-	xrpathfill.c \
-	xrpathstroke.c \
-	xrpen.c \
-	xrpolygon.c \
-	xrspline.c \
-	xrstate.c \
-	xrsurface.c \
-	xrtraps.c
+libcairo_la_SOURCES = \
+	cairo.h \
+	cairo.c \
+	cairoint.h \
+	cairo_color.c \
+	cairo_font.c \
+	cairo_gstate.c \
+	cairo_matrix.c \
+	cairo_misc.c \
+	cairo_path.c \
+	cairo_path_bounds.c \
+	cairo_path_fill.c \
+	cairo_path_stroke.c \
+	cairo_pen.c \
+	cairo_polygon.c \
+	cairo_spline.c \
+	cairo_surface.c \
+	cairo_traps.c
 
-libXr_la_LDFLAGS = -version-info @VERSION_INFO@
+libcairo_la_LDFLAGS = -version-info @VERSION_INFO@
 
-INCLUDES = $(XR_CFLAGS) $(X_CFLAGS)
+INCLUDES = $(CAIRO_CFLAGS) $(X_CFLAGS)
 
-libXr_la_LIBADD = $(XR_LIBS) -lm
+libcairo_la_LIBADD = $(CAIRO_LIBS) -lm

--- Xr.h DELETED ---

--- xr.c DELETED ---

--- xrcolor.c DELETED ---

--- xrfiller.c DELETED ---

--- xrfont.c DELETED ---

--- xrgstate.c DELETED ---

--- xrint.h DELETED ---

--- xrmatrix.c DELETED ---

--- xrmisc.c DELETED ---

--- xrpath.c DELETED ---

--- xrpathbounds.c DELETED ---

--- xrpathfill.c DELETED ---

--- xrpathstroke.c DELETED ---

--- xrpen.c DELETED ---

--- xrpolygon.c DELETED ---

--- xrspline.c DELETED ---

--- xrstate.c DELETED ---

--- xrstroker.c DELETED ---

--- xrsurface.c DELETED ---

--- xrtraps.c DELETED ---




More information about the Commit mailing list