X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=configure.ac;h=c9732dfa4f81cbd2a1e8cf5a1cd92890317f94a1;hb=e80c7c14c37fcc17ffd7fb49350e378dbc765f2a;hp=ebd0df8fdbc2fa766844c109f5a6492de224069a;hpb=43576b330db3c4e4dafb93703e28595f1417b337;p=rrdtool.git diff --git a/configure.ac b/configure.ac index ebd0df8..c9732df 100644 --- a/configure.ac +++ b/configure.ac @@ -8,13 +8,13 @@ dnl Inspiration from http://autoconf-archive.cryp.to dnl tell automake the this script is for rrdtool dnl the official version number is dnl a.b.c -AC_INIT([rrdtool],[1.2.15]) +AC_INIT([rrdtool],[1.2.19]) dnl for testing a numberical version number comes handy dnl the released version are dnl a.bccc dnl the devl versions will be something like dnl a.b999yymmddhh -NUMVERS=1.2015 +NUMVERS=1.2019 AC_SUBST(NUMVERS) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE @@ -504,6 +504,7 @@ else fi + AC_MSG_CHECKING(Ruby Modules to build) AC_MSG_RESULT(${COMP_RUBY:-No Ruby Modules will be built}) @@ -583,7 +584,13 @@ AM_PATH_PYTHON(2.3,[],[enable_python=no]) AM_CHECK_PYTHON_HEADERS(,[enable_python=no;AC_MSG_WARN(could not find Python headers)]) fi -AM_CONDITIONAL(BUILD_PYTHON,[test "$enable_python" = "yes"]) +if test x$enable_python = xno; then + COMP_PYTHON= +else + COMP_PYTHON="python" +fi + +AC_SUBST(COMP_PYTHON) dnl Check for nroff AC_PATH_PROGS(NROFF, gnroff nroff) @@ -609,7 +616,6 @@ AC_CONFIG_FILES([src/Makefile]) AC_CONFIG_FILES([bindings/Makefile]) AC_CONFIG_FILES([bindings/tcl/Makefile]) AC_CONFIG_FILES([bindings/tcl/ifOctets.tcl]) -AC_CONFIG_FILES([bindings/python/Makefile]) AC_CONFIG_FILES([Makefile]) AC_CONFIG_COMMANDS([default],[[ chmod +x examples/*.pl]],[[]])