[bwm-tools-devel] COMMIT - r69 - trunk
Brought to you by:
nkukard
From: <sv...@li...> - 2005-04-12 10:12:41
|
Author: nkukard Date: 2005-04-12 10:11:31 +0000 (Tue, 12 Apr 2005) New Revision: 69 Modified: trunk/configure trunk/configure.ac Log: * Small wording fix Modified: trunk/configure =================================================================== --- trunk/configure 2005-04-06 09:26:55 UTC (rev 68) +++ trunk/configure 2005-04-12 10:11:31 UTC (rev 69) @@ -1046,7 +1046,7 @@ both] --with-tags[=TAGS] include additional configurations [automatic] - --with-rrdtool-source Specify directory where rrdtool sources are + --with-rrdtool-source Specify that you have the rrdtool sources in the main build dir --with-xml-prefix=PFX Prefix where libxml is installed (optional) --with-xml-exec-prefix=PFX Exec prefix where libxml is installed (optional) @@ -19497,7 +19497,7 @@ subdirs="$subdirs rrdtool" - RRDTOOL_LIBS="$top_builddir/rrdtool/src/.libs/librrdtool.a" + RRDTOOL_LIBS="\$(top_builddir)/rrdtool/src/.libs/librrdtool.a" else Modified: trunk/configure.ac =================================================================== --- trunk/configure.ac 2005-04-06 09:26:55 UTC (rev 68) +++ trunk/configure.ac 2005-04-12 10:11:31 UTC (rev 69) @@ -43,10 +43,10 @@ AC_CHECK_LIB([panel], [panel_window]) AC_ARG_WITH([rrdtool-source], - [ --with-rrdtool-source Specify directory where rrdtool sources are], + [ --with-rrdtool-source Specify that you have the rrdtool sources in the main build dir], [ AC_CONFIG_SUBDIRS(rrdtool) - RRDTOOL_LIBS="$top_builddir/rrdtool/src/.libs/librrdtool.a" + RRDTOOL_LIBS="\$(top_builddir)/rrdtool/src/.libs/librrdtool.a" ], [ AC_CHECK_LIB([rrd], [rrd_create],have_librrd=yes,,"-lm") |