X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=configure.ac;h=b23d8268b453846ed21097873b9b4d7f32ee9cc7;hb=eb3f17d3211772519c721d7f6bc8b6e5d880a29b;hp=a0bd955011706ed6a1c2da0250fb06a5602c5a56;hpb=1b2b47d5fd5474e35ae15678f6eefe6f4ee45795;p=rrdtool.git diff --git a/configure.ac b/configure.ac index a0bd955..b23d826 100644 --- a/configure.ac +++ b/configure.ac @@ -6,16 +6,31 @@ dnl 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.99908020600]) +AC_INIT([rrdtool],[1.3rc1]) + dnl for testing a numberical version number comes handy dnl the released version are dnl a.bccc dnl the devel versions will be something like dnl a.b999yymmddhh -NUMVERS=1.299908020600 +NUMVERS=1.299908051200 AC_SUBST(NUMVERS) + +dnl for the linker to understand which version the library is compatible with +dnl we must keep a separate library version cout of the format c:r:a if any +dnl functionality is changed do c++ prior to release +dnl if only implementation changed but all interfaces are kept, do r++ +dnl when only functionality was added, do a++ if any functionality was +dnl removed to a=0. +dnl +dnl see http://sourceware.org/autobook/autobook/autobook_91.html +dnl +LIBVERS=3:0:1 +AC_SUBST(LIBVERS) + AC_CANONICAL_TARGET AM_INIT_AUTOMAKE AC_CONFIG_HEADERS([rrd_config.h]) @@ -139,7 +154,7 @@ AH_BOTTOM([ #ifdef HAVE_SYS_RESOURCE_H # include #if (defined(__svr4__) && defined(__sun__)) -/* Solaris headers (pre 2.6) don't have a getrusage prototype. +/* Solaris headers (pre 2.6) do not have a getrusage prototype. Use this instead. */ extern int getrusage(int, struct rusage *); #endif /* __svr4__ && __sun__ */ @@ -292,8 +307,10 @@ dnl gettext GETTEXT_PACKAGE=rrdtool AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package]) +AM_GLIB_GNU_GETTEXT() IT_PROG_INTLTOOL([0.35.0],[no-xml]) -AM_GLIB_GNU_GETTEXT + +AM_MAINTAINER_MODE dnl How the vertical axis label is printed AC_ARG_VAR(RRDGRAPH_YLEGEND_ANGLE, @@ -627,8 +644,13 @@ AC_SUBST(ALL_LIBS) CONFIGURE_PART(Prep for Building Language Bindings) -dnl Check for Perl. +dnl Check for Perl and friends +PATH=/usr/perl5/bin:$PATH +export PATH AC_PATH_PROG(PERL, perl, no) +AC_PATH_PROG(POD2MAN, pod2man, no) +AC_PATH_PROG(POD2HTML, pod2html, no) + AC_ARG_ENABLE(perl,[ --disable-perl do not build the perl modules], [],[enable_perl=yes]) @@ -781,7 +803,7 @@ if test "$enable_tcl" = "yes"; then done if test "$enable_tcl" = "no"; then - AC_MSG_WARN([tclConfig.sh not found - Tcl interface won't be built]) + AC_MSG_WARN([tclConfig.sh not found - Tcl interface will not be built]) else . $tcl_config TCL_PACKAGE_DIR="$TCL_PACKAGE_PATH/tclrrd$VERSION"