diff -ur mtr-0.62/NEWS mtr-0.63/NEWS
--- mtr-0.62/NEWS	Thu Aug 12 18:41:47 2004
+++ mtr-0.63/NEWS	Sun Aug 15 22:52:55 2004
@@ -1,4 +1,18 @@
 WHAT'S NEW?
+  v0.63 Suggestion by RCW: Add -lm at line 70 of Configure.in.
+        On my system no ill effects ensued, so this version released 
+        so that he can test if it still works on his sytem. 
+
+        Let me add that it's stupid that I have to specify that this
+        this program now requires Automake version 1.5 to build, where
+        Automake was intended to make software independent of different
+        versions of build software!
+
+        For those concerned about the above statement: If you're just
+        trying to compile and use MTR, there is no need for automake. 
+        Just when you're messing with the configure and build system of
+        mtr is automake a tool you need. 
+	
   v0.62 Apparently someone changed gethostbyname into gethostbyname2
         in mtr.c in an attempt to add IPV6 support. For systems without
         ipv6 support, the old gethostbyname should be used! Linux 
diff -ur mtr-0.62/configure mtr-0.63/configure
--- mtr-0.62/configure	Wed Aug 11 13:40:17 2004
+++ mtr-0.63/configure	Sun Aug 15 22:47:02 2004
@@ -793,7 +793,7 @@
 
 # Define the identity of the package.
 PACKAGE=mtr
-VERSION=0.62
+VERSION=0.63
 cat >> confdefs.h <<EOF
 #define PACKAGE "$PACKAGE"
 EOF
@@ -2080,7 +2080,7 @@
   if test "x$no_gtk" = x ; then
      echo "$ac_t""yes (version $gtk_config_major_version.$gtk_config_minor_version.$gtk_config_micro_version)" 1>&6
      CFLAGS="$CFLAGS $GTK_CFLAGS"
-                           LIBS="$LIBS $GTK_LIBS"     
+                           LIBS="$LIBS $GTK_LIBS -lm"     
   else
      echo "$ac_t""no" 1>&6
      if test "$PKG_CONFIG" = "no" ; then
diff -ur mtr-0.62/configure.in mtr-0.63/configure.in
--- mtr-0.62/configure.in	Wed Aug 11 13:40:16 2004
+++ mtr-0.63/configure.in	Sun Aug 15 22:45:47 2004
@@ -1,5 +1,5 @@
 AC_INIT(mtr.c)
-AM_INIT_AUTOMAKE(mtr, 0.62)
+AM_INIT_AUTOMAKE(mtr, 0.63)
 
 
 AC_SUBST(GTK_OBJ)
@@ -52,7 +52,7 @@
 if test "x$WANTS_GTK" = "xyes"; then
 	if test "x$WANTS_GTK2" = "xyes"; then
                 AM_PATH_GTK_2_0(2.0.0, CFLAGS="$CFLAGS $GTK_CFLAGS"
-                           LIBS="$LIBS $GTK_LIBS",
+                           LIBS="$LIBS $GTK_LIBS -lm",
                            AC_MSG_WARN(Building without GTK2 display support)
                            AC_DEFINE(NO_GTK)
                            GTK_OBJ="")
Only in mtr-0.63: configure.odl
