[cairo-commit] roadster ChangeLog, 1.92, 1.93 TODO, 1.2,
1.3 configure.ac, 1.13, 1.14
Ian McIntosh
commit at pdx.freedesktop.org
Mon Oct 17 20:05:27 PDT 2005
Committed by: ian
Update of /cvs/cairo/roadster
In directory gabe:/tmp/cvs-serv7805
Modified Files:
ChangeLog TODO configure.ac
Log Message:
* configure.ac: Added -Wall compiler option (show all warnings).
* src/map_draw_cairo.c: The return of Cairo! Now drawing from tile data and using bounding box overlap tests.
* src/map_hittest.c: The return of hittesting!
* src/db.c: Remove dead code.
* src/downloadmanager.c: Properly return a value from a GnomeVFS callback.
* src/import_tiger.c: Switch from GPtrArrays to GArrays for points.
* src/main.c: Properly include libintl.h
* src/map.c: Cleanups. Dead code removal.
* src/map_draw_gdk.c: Add random road segment color option for debugging.
* src/map_math.c: Added polygon clipping and line stitching.
* src/map_tilemanager.c: Do basic line stitching at load time.
* src/mainwindow.c: Cleanups. Move some code to util.c
* src/util.c: Receive some code from mainwindow.c
Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/roadster/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -d -r1.92 -r1.93
--- ChangeLog 12 Oct 2005 03:58:44 -0000 1.92
+++ ChangeLog 18 Oct 2005 03:05:25 -0000 1.93
@@ -1,3 +1,19 @@
+2005-10-17 Ian McIntosh <ian_mcintosh at linuxadvocate.org>
+
+ * configure.ac: Added -Wall compiler option (show all warnings).
+ * src/map_draw_cairo.c: The return of Cairo! Now drawing from tile data and using bounding box overlap tests.
+ * src/map_hittest.c: The return of hittesting!
+ * src/db.c: Remove dead code.
+ * src/downloadmanager.c: Properly return a value from a GnomeVFS callback.
+ * src/import_tiger.c: Switch from GPtrArrays to GArrays for points.
+ * src/main.c: Properly include libintl.h
+ * src/map.c: Cleanups. Dead code removal.
+ * src/map_draw_gdk.c: Add random road segment color option for debugging.
+ * src/map_math.c: Added polygon clipping and line stitching.
+ * src/map_tilemanager.c: Do basic line stitching at load time.
+ * src/mainwindow.c: Cleanups. Move some code to util.c
+ * src/util.c: Receive some code from mainwindow.c
+
2005-10-12 Ian McIntosh <ian_mcintosh at linuxadvocate.org>
* src/mapinfowindow.c:
Index: TODO
===================================================================
RCS file: /cvs/cairo/roadster/TODO,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- TODO 6 Sep 2005 02:44:19 -0000 1.2
+++ TODO 18 Oct 2005 03:05:25 -0000 1.3
@@ -0,0 +1,6 @@
+State boundaries:
+ http://www.census.gov/geo/cob/bdy/st/st00ascii/
+
+Other web link ideas:
+- Weather here (by ZIP?)
+
Index: configure.ac
===================================================================
RCS file: /cvs/cairo/roadster/configure.ac,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- configure.ac 24 Sep 2005 05:25:24 -0000 1.13
+++ configure.ac 18 Oct 2005 03:05:25 -0000 1.14
@@ -25,6 +25,8 @@
ALL_LINGUAS=""
+CFLAGS="$CFLAGS -Wall"
+
AM_GLIB_GNU_GETTEXT
PACKAGE_LOCALE_DIR="${PACKAGE_PREFIX}/${DATADIRNAME}/locale"
More information about the cairo-commit
mailing list