Revision: 133394 https://trac.macports.org/changeset/133394 Author: raimue@macports.org Date: 2015-02-28 09:02:23 -0800 (Sat, 28 Feb 2015) Log Message: ----------- sysutils/collectd: Update to 5.4.2 Modified Paths: -------------- users/raimue/ports/sysutils/collectd/Portfile Removed Paths: ------------- users/raimue/ports/sysutils/collectd/files/patch-configure-htonll.diff Modified: users/raimue/ports/sysutils/collectd/Portfile =================================================================== --- users/raimue/ports/sysutils/collectd/Portfile 2015-02-28 16:39:11 UTC (rev 133393) +++ users/raimue/ports/sysutils/collectd/Portfile 2015-02-28 17:02:23 UTC (rev 133394) @@ -4,7 +4,7 @@ PortSystem 1.0 name collectd -version 5.4.1 +version 5.4.2 categories sysutils net platforms darwin license GPL-2 @@ -19,8 +19,8 @@ master_sites http://collectd.org/files/ use_bzip2 yes -checksums sha1 cea47e3936ed081bd71efacf7ba825fc837dc347 \ - sha256 75452129f271cb0aad28e57f12a49070618bbb7b6a9d64cf869e8766fa2f66e0 +checksums sha1 f98847ac8cfcd3a041def620ba07cd2c49b426f8 \ + sha256 9789e900c138b5dbe907d3d744143f12b1e30022276cb1d8c65bbabaf0c4e393 # collectd uses -Werror in their CFLAGS, which turns warnings into errors. # Some of these are not fixable and thus need to be suppressed when clang @@ -36,10 +36,8 @@ livecheck.type regex livecheck.regex ${name}-(\\d+(\\.\\d+)+)\\.tar -patchfiles patch-configure-htonll.diff -patch.pre_args -p1 - use_autoreconf yes +autoreconf.args --install --verbose --force ####################################################### # WARNING: This list is generated by files/dep-gen.sh # Deleted: users/raimue/ports/sysutils/collectd/files/patch-configure-htonll.diff =================================================================== --- users/raimue/ports/sysutils/collectd/files/patch-configure-htonll.diff 2015-02-28 16:39:11 UTC (rev 133393) +++ users/raimue/ports/sysutils/collectd/files/patch-configure-htonll.diff 2015-02-28 17:02:23 UTC (rev 133394) @@ -1,51 +0,0 @@ -From 1a822486f40287f552890a553181fd620c662ada Mon Sep 17 00:00:00 2001 -From: Manuel Luis Sanmartin Rozada <manuel.luis@gmail.com> -Date: Mon, 31 Mar 2014 21:08:05 +0200 -Subject: [PATCH] Fix check for htonll in configure.ac - ---- - configure.ac | 21 +++++++++++---------- - 1 file changed, 11 insertions(+), 10 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 7029e1e..1399e79 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -1207,10 +1207,9 @@ if test "x$have_getmntent" = "xgen"; then - fi - - # Check for htonll --AC_MSG_CHECKING([if have htonll defined]) -- -- have_htonll="no" -- AC_LINK_IFELSE([AC_LANG_PROGRAM( -+AC_CACHE_CHECK([if have htonll defined], -+ [c_cv_have_htonll], -+ AC_LINK_IFELSE([AC_LANG_PROGRAM( - [[[ - #include <sys/types.h> - #include <netinet/in.h> -@@ -1222,12 +1221,14 @@ AC_MSG_CHECKING([if have htonll defined]) - return htonll(0); - ]]] - )], -- [ -- have_htonll="yes" -- AC_DEFINE(HAVE_HTONLL, 1, [Define if the function htonll exists.]) -- ]) -- --AC_MSG_RESULT([$have_htonll]) -+ [c_cv_have_htonll="yes"], -+ [c_cv_have_htonll="no"] -+ ) -+) -+if test "x$c_cv_have_htonll" = "xyes" -+then -+ AC_DEFINE(HAVE_HTONLL, 1, [Define if the function htonll exists.]) -+fi - - # Check for structures - AC_CHECK_MEMBERS([struct if_data.ifi_ibytes, struct if_data.ifi_opackets, struct if_data.ifi_ierrors], --- -2.1.3 -