diff -crN ./librsvg/Makefile.am /gestconf/project/GNOME_ACL/GNOME/build/sh_build_GNOME/src/./librsvg/Makefile.am
*** ./librsvg/Makefile.am	Mon Jun 30 13:34:03 2003
--- /gestconf/project/GNOME_ACL/GNOME/build/sh_build_GNOME/src/./librsvg/Makefile.am	Thu Oct 30 10:37:38 2003
***************
*** 1,3 ****
--- 1,4 ----
+ 
  SUBDIRS = . gtk-engine gdk-pixbuf-loader doc gimp-plugin
  
  bin_PROGRAMS = rsvg
diff -crN ./librsvg/rsvg-bpath-util.c /gestconf/project/GNOME_ACL/GNOME/build/sh_build_GNOME/src/./librsvg/rsvg-bpath-util.c
*** ./librsvg/rsvg-bpath-util.c	Mon Jan 13 13:37:27 2003
--- /gestconf/project/GNOME_ACL/GNOME/build/sh_build_GNOME/src/./librsvg/rsvg-bpath-util.c	Thu Oct 30 10:38:53 2003
***************
*** 23,33 ****
  */
  
  #include "config.h"
  #include "rsvg-bpath-util.h"
  
  #include <glib/gmem.h>
  #include <glib/gmessages.h>
- #include <math.h>
  #include <string.h>
  
  /* This is adapted from gnome-canvas-bpath-util in libgnomeprint
--- 23,33 ----
  */
  
  #include "config.h"
+ #include <math.h>
  #include "rsvg-bpath-util.h"
  
  #include <glib/gmem.h>
  #include <glib/gmessages.h>
  #include <string.h>
  
  /* This is adapted from gnome-canvas-bpath-util in libgnomeprint
diff -crN ./librsvg/rsvg-css.c /gestconf/project/GNOME_ACL/GNOME/build/sh_build_GNOME/src/./librsvg/rsvg-css.c
*** ./librsvg/rsvg-css.c	Mon Aug  4 19:33:57 2003
--- /gestconf/project/GNOME_ACL/GNOME/build/sh_build_GNOME/src/./librsvg/rsvg-css.c	Thu Oct 30 10:39:22 2003
***************
*** 533,551 ****
  double
  rsvg_css_parse_frequency (const char * str)
  {
! 	double hz;
  	char *end_ptr;
  	
! 	hz = g_ascii_strtod (str, &end_ptr);
  	
  	/* todo: error condition - figure out how to best represent it */
! 	if ((hz == -HUGE_VAL || hz == HUGE_VAL) && (ERANGE == errno))
  		return 0.0;
  	
  	if (end_ptr && !strcmp(end_ptr, "kHz"))
! 		return hz * 1000.;
  	
! 	return hz;
  }
  
  /*
--- 533,551 ----
  double
  rsvg_css_parse_frequency (const char * str)
  {
! 	double hertz;
  	char *end_ptr;
  	
! 	hertz = g_ascii_strtod (str, &end_ptr);
  	
  	/* todo: error condition - figure out how to best represent it */
! 	if ((hertz == -HUGE_VAL || hertz == HUGE_VAL) && (ERANGE == errno))
  		return 0.0;
  	
  	if (end_ptr && !strcmp(end_ptr, "kHz"))
! 		return hertz * 1000.;
  	
! 	return hertz;
  }
  
  /*
diff -crN ./librsvg/rsvg-paint-server.c /gestconf/project/GNOME_ACL/GNOME/build/sh_build_GNOME/src/./librsvg/rsvg-paint-server.c
*** ./librsvg/rsvg-paint-server.c	Mon Feb  3 09:21:49 2003
--- /gestconf/project/GNOME_ACL/GNOME/build/sh_build_GNOME/src/./librsvg/rsvg-paint-server.c	Thu Oct 30 10:39:48 2003
***************
*** 23,28 ****
--- 23,29 ----
  */
  
  #include "config.h"
+ #include <math.h>
  #include "rsvg-paint-server.h"
  #include "rsvg-private.h"
  
***************
*** 31,37 ****
  #include <glib/gstrfuncs.h>
  #include <libart_lgpl/art_affine.h>
  #include <string.h>
- #include <math.h>
  
  #include "rsvg-css.h"
  
--- 32,37 ----
diff -crN ./librsvg/rsvg-path.c /gestconf/project/GNOME_ACL/GNOME/build/sh_build_GNOME/src/./librsvg/rsvg-path.c
*** ./librsvg/rsvg-path.c	Tue Apr 15 08:04:22 2003
--- /gestconf/project/GNOME_ACL/GNOME/build/sh_build_GNOME/src/./librsvg/rsvg-path.c	Thu Oct 30 10:40:22 2003
***************
*** 24,33 ****
  /* This is adapted from svg-path in Gill. */
  
  #include "config.h"
  #include "rsvg-path.h"
  
  #include <glib/gtypes.h>
- #include <math.h>
  #include <stdlib.h>
  #include <string.h>
  
--- 24,33 ----
  /* This is adapted from svg-path in Gill. */
  
  #include "config.h"
+ #include <math.h>
  #include "rsvg-path.h"
  
  #include <glib/gtypes.h>
  #include <stdlib.h>
  #include <string.h>
  
diff -crN ./librsvg/rsvg.c /gestconf/project/GNOME_ACL/GNOME/build/sh_build_GNOME/src/./librsvg/rsvg.c
*** ./librsvg/rsvg.c	Mon Sep  8 13:11:40 2003
--- /gestconf/project/GNOME_ACL/GNOME/build/sh_build_GNOME/src/./librsvg/rsvg.c	Thu Oct 30 10:41:01 2003
***************
*** 25,30 ****
--- 25,32 ----
  
  #include "config.h"
  
+ #include <math.h>
+ 
  #include "rsvg.h"
  #include "rsvg-css.h"
  #include "rsvg-styles.h"
***************
*** 32,38 ****
  #include "rsvg-shapes.h"
  #include "rsvg-text.h"
  
- #include <math.h>
  #include <string.h>
  #include <stdarg.h>
  
--- 34,39 ----
