From: Roger Wolff Date: Sun, 15 Aug 2004 00:00:00 +0000 (+0000) Subject: mtr v0.63 X-Git-Tag: v0.63^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0657553a1602683316776b817d9797322dde0670;p=thirdparty%2Fmtr.git mtr 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. source: ftp://ftp.bitwizard.nl/mtr/mtr-0.63.tar.gz --- diff --git a/NEWS b/NEWS index fd9f888..60ee8a1 100644 --- 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 diff --git a/configure.in b/configure.in index 5d63fdf..20570c5 100644 --- a/configure.in +++ b/configure.in @@ -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="")