[cairo-commit] roadster ChangeLog,1.35,1.36 configure.ac,1.10,1.11

Nathan Fredrickson commit at pdx.freedesktop.org
Thu Mar 3 20:35:44 PST 2005


Committed by: nrf

Update of /cvs/cairo/roadster
In directory gabe:/tmp/cvs-serv4762

Modified Files:
	ChangeLog configure.ac 
Log Message:
    * configure.ac: Enable directives to disable deprecated features.
    * src/main.c: Call gnome_program_init() instead of deprecated gnome_program_init().
    * src/mainwindow.c: Call gdk_draw_drawable() instead of deprecated gdk_draw_pixmap().


Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/roadster/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- ChangeLog	4 Mar 2005 04:06:35 -0000	1.35
+++ ChangeLog	4 Mar 2005 04:35:42 -0000	1.36
@@ -1,4 +1,9 @@
 2005-03-03  Nathan Fredrickson  <nathan at silverorange.com>
+	* configure.ac: Enable directives to disable deprecated features.
+	* src/main.c: Call gnome_program_init() instead of deprecated gnome_program_init().
+	* src/mainwindow.c: Call gdk_draw_drawable() instead of deprecated gdk_draw_pixmap().
+
+2005-03-03  Nathan Fredrickson  <nathan at silverorange.com>
 	* src/gui.c: Call gtk_main_quit() to shutdown properly and look for glade file in source dir first.
 	* src/main.c: Clean up.
 	* src/layers.c: Look for style file in source dir first.

Index: configure.ac
===================================================================
RCS file: /cvs/cairo/roadster/configure.ac,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- configure.ac	3 Mar 2005 06:45:09 -0000	1.10
+++ configure.ac	4 Mar 2005 04:35:42 -0000	1.11
@@ -18,7 +18,6 @@
 AM_PROG_CC_STDC
 AC_PROG_CXX
 AC_STDC_HEADERS
-dnl AC_PROG_RANLIB
 AC_PROG_LIBTOOL
 AC_PROG_INTLTOOL
 
@@ -75,9 +74,7 @@
 AC_MSG_CHECKING([whether to disable deprecated glib/gtk+/etc. features])
 if test "$set_enable_deprecated" != "yes"; then
 	AC_MSG_RESULT(yes)
-dnl disbale this until we're ready to clean up deprecated stuff
-dnl	ROADSTER_DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED"
-	ROADSTER_DISABLE_DEPRECATED=""
+	ROADSTER_DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED"
 else
 	AC_MSG_RESULT(no)
 	ROADSTER_DISABLE_DEPRECATED=""
@@ -85,7 +82,6 @@
 AC_SUBST(ROADSTER_DISABLE_DEPRECATED)
 
 dnl ========= check for MySQL ==================================================
-dnl AM_PATH_MYSQL([4.1.0], , AC_MSG_ERROR([MySQL >= 4.1.0 is required.]))
 AC_ARG_WITH(mysql,
     [  --with-mysql=<path>     prefix of mysql installation.],
     [ MYSQL_PREFIX=$with_mysql ],




More information about the cairo-commit mailing list