blob: 51439390f17910e4f4053e50bf563ecbab206e86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
diff -up ntop-5.0.1/configure.in.rrdtool ntop-5.0.1/configure.in
--- ntop-5.0.1/configure.in.rrdtool 2016-10-16 20:32:46.194496951 +0200
+++ ntop-5.0.1/configure.in 2016-10-16 20:32:57.392486940 +0200
@@ -893,19 +893,19 @@ else
fi
fi
-RRD_LIB="-L${RRD_HOME}/lib -lrrd_th"
+RRD_LIB="-L${RRD_HOME}/lib -lrrd"
-if test -f "$RRD_HOME/lib/librrd_th.so"; then
+if test -f "$RRD_HOME/lib/librrd.so"; then
AC_MSG_RESULT(checking for rrdtool... yes)
else
- if test -f "$RRD_HOME/lib/librrd_th.dylib"; then # OSX
+ if test -f "$RRD_HOME/lib/librrd.dylib"; then # OSX
AC_MSG_RESULT(checking for rrdtool... yes)
else
- if test -f "$RRD_HOME/lib/librrd_th.a"; then
+ if test -f "$RRD_HOME/lib/librrd.a"; then
AC_MSG_RESULT(checking for rrdtool... yes)
else
- AC_CHECK_LIB([rrd_th], [main])
- if test ".${ac_cv_lib_rrd_th_main}" != ".yes"; then
+ AC_CHECK_LIB([rrd], [main])
+ if test ".${ac_cv_lib_rrd_main}" != ".yes"; then
AC_MSG_ERROR(Unable to find RRD at $RRD_HOME: please use --with-rrd-home=DIR);
AC_MSG_ERROR(RRD source can be downloaded from http://www.rrdtool.org/);
else
|