]> git.ipfire.org Git - thirdparty/mtr.git/commitdiff
mtr v0.63 v0.63
authorRoger Wolff <r.e.wolff@bitwizard.nl>
Sun, 15 Aug 2004 00:00:00 +0000 (00:00 +0000)
committerTravis Cross <tc@traviscross.com>
Sun, 3 Feb 2013 20:45:38 +0000 (20:45 +0000)
 - 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.

source: ftp://ftp.bitwizard.nl/mtr/mtr-0.63.tar.gz

NEWS
configure.in

diff --git a/NEWS b/NEWS
index fd9f888c713fe5c98181df67a2d37ec5ede809b6..60ee8a166137cfc97b11091d2b4ffd9caffbaccb 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -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 
index 5d63fdff50accffd010113bffde11e983f244296..20570c54938caa4c318ea5749e2c9e15df1bd831 100644 (file)
@@ -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 @@ WANTS_GTK2=$enableval, WANTS_GTK2=no)
 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="")