View | Details | Raw Unified | Return to bug 201773 | Differences between
and this patch

Collapse All | Expand All

(-)net-mgmt/collectd5/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	collectd
4
PORTNAME=	collectd
5
PORTVERSION=	5.5.0
5
PORTVERSION=	5.5.0
6
PORTREVISION=	1
6
CATEGORIES=	net-mgmt
7
CATEGORIES=	net-mgmt
7
MASTER_SITES=	https://collectd.org/files/ \
8
MASTER_SITES=	https://collectd.org/files/ \
8
		http://collectd.org/files/
9
		http://collectd.org/files/
(-)net-mgmt/collectd5/files/patch-configure.ac (-3 / +30 lines)
Lines 1-5 Link Here
1
--- configure.ac.orig	2015-02-26 11:49:16 UTC
1
--- configure.ac.orig	2015-08-10 21:01:03.912199467 -0700
2
+++ configure.ac
2
+++ configure.ac	2015-08-10 21:03:13.983072533 -0700
3
@@ -120,7 +120,7 @@ then
3
@@ -120,7 +120,7 @@ then
4
 fi
4
 fi
5
 
5
 
Lines 26-32 Link Here
26
 fi
26
 fi
27
 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
27
 AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes")
28
 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
28
 AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes")
29
@@ -3629,7 +3632,7 @@ fi
29
@@ -3576,7 +3579,7 @@
30
 if test "x$with_python" = "xyes"
31
 then
32
 	AC_MSG_CHECKING([for Python CPPFLAGS])
33
-	python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2>&1`
34
+	python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2> /dev/null`
35
 	python_config_status=$?
36
 
37
 	if test "$python_config_status" -ne 0 || test "x$python_include_path" = "x"
38
@@ -3599,7 +3602,7 @@
39
 if test "x$with_python" = "xyes"
40
 then
41
 	AC_MSG_CHECKING([for Python LDFLAGS])
42
-	python_library_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"LIBDIR\").__getitem__(0))" | "$with_python_prog" 2>&1`
43
+	python_library_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"LIBDIR\").__getitem__(0))" | "$with_python_prog" 2> /dev/null`
44
 	python_config_status=$?
45
 
46
 	if test "$python_config_status" -ne 0 || test "x$python_library_path" = "x"
47
@@ -3614,7 +3617,7 @@
48
 if test "x$with_python" = "xyes"
49
 then
50
 	AC_MSG_CHECKING([for Python LIBS])
51
-	python_library_flags=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"BLDLIBRARY\").__getitem__(0))" | "$with_python_prog" 2>&1`
52
+	python_library_flags=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"BLDLIBRARY\").__getitem__(0))" | "$with_python_prog" 2> /dev/null`
53
 	python_config_status=$?
54
 
55
 	if test "$python_config_status" -ne 0 || test "x$python_library_flags" = "x"
56
@@ -3629,7 +3632,7 @@
30
 if test "x$with_python" = "xyes"
57
 if test "x$with_python" = "xyes"
31
 then
58
 then
32
 	LDFLAGS="-L$python_library_path $LDFLAGS"
59
 	LDFLAGS="-L$python_library_path $LDFLAGS"

Return to bug 201773