1 dnl RRDtool AutoConf script ...
2 dnl ---------------------------
4 dnl Created by Jeff Allen, Tobi Oetiker, Blair Zajac
6 dnl Inspiration from http://autoconf-archive.cryp.to
8 dnl tell automake the this script is for rrdtool
9 dnl the official version number is
11 AC_INIT([rrdtool],[1.2.19])
12 dnl for testing a numberical version number comes handy
13 dnl the released version are
15 dnl the devl versions will be something like
21 AC_CONFIG_HEADERS([rrd_config.h])
23 dnl all our local stuff like install scripts and include files
27 dnl determine the type of system we are running on
31 AC_PREFIX_DEFAULT( /usr/local/rrdtool-$PACKAGE_VERSION )
33 dnl Minimum Autoconf version required.
36 dnl At the TOP of the HEADER
42 /* IEEE can be prevented from raising signals with fpsetmask(0) */
43 #undef MUST_DISABLE_FPMASK
45 /* IEEE math only works if SIGFPE gets actively set to IGNORE */
47 #undef MUST_DISABLE_SIGFPE
49 /* realloc does not support NULL as argument */
50 #undef NO_NULL_REALLOC
56 /* define strrchr, strchr and memcpy, memmove in terms of bsd funcs
57 make sure you are NOT using bcopy, index or rindex in the code */
64 # define strrchr rindex
66 char *strchr (), *strrchr ();
68 # define memcpy(d, s, n) bcopy ((s), (d), (n))
69 # define memmove(d, s, n) bcopy ((s), (d), (n))
75 # define rrd_realloc(a,b) ( (a) == NULL ? malloc( (b) ) : realloc( (a) , (b) ))
77 # define rrd_realloc(a,b) realloc((a), (b))
80 #if NEED_MALLOC_MALLOC_H
81 # include <malloc/malloc.h>
97 # include <fp_class.h>
101 #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASS))
102 # define HAVE_ISINF 1
103 # define isinf(a) (fpclass(a) == FP_NINF || fpclass(a) == FP_PINF)
106 /* solaris 10 it defines isnan such that only forte can compile it ... bad bad */
107 #if (defined(HAVE_ISNAN) && defined(isnan) && defined(HAVE_FPCLASS))
109 # define isnan(a) (fpclass(a) == FP_SNAN || fpclass(a) == FP_QNAN)
112 /* for OSF1 Digital Unix */
113 #if (! defined(HAVE_ISINF) && defined(HAVE_FP_CLASS) && defined(HAVE_FP_CLASS_H))
114 # define HAVE_ISINF 1
115 # define isinf(a) (fp_class(a) == FP_NEG_INF || fp_class(a) == FP_POS_INF)
118 #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASSIFY) && defined(FP_PLUS_INF) && defined(FP_MINUS_INF))
119 # define HAVE_ISINF 1
120 # define isinf(a) (fpclassify(a) == FP_MINUS_INF || fpclassify(a) == FP_PLUS_INF)
123 #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASSIFY) && defined(FP_INFINITE))
124 # define HAVE_ISINF 1
125 # define isinf(a) (fpclassify(a) == FP_INFINITE)
129 #if (! defined(HAVE_ISINF) && defined(HAVE_CLASS))
130 # define HAVE_ISINF 1
131 # define isinf(a) (class(a) == FP_MINUS_INF || class(a) == FP_PLUS_INF)
134 #if (! defined (HAVE_FINITE) && defined (HAVE_ISFINITE))
135 # define HAVE_FINITE 1
136 # define finite(a) isfinite(a)
139 #if (! defined(HAVE_FINITE) && defined(HAVE_ISNAN) && defined(HAVE_ISINF))
140 # define HAVE_FINITE 1
141 # define finite(a) (! isnan(a) && ! isinf(a))
145 #error "Can't compile without finite function"
149 #error "Can't compile without isinf function"
152 #endif /* RRD_CONFIG_H */
155 dnl Process Special Options
156 dnl -----------------------------------
158 dnl How the vertical axis label is printed
159 AC_ARG_VAR(RRDGRAPH_YLEGEND_ANGLE,
160 [Vertical label angle: 90.0 (default) or 270.0])
161 AC_DEFINE_UNQUOTED(RRDGRAPH_YLEGEND_ANGLE,${RRDGRAPH_YLEGEND_ANGLE:-90.0},
162 [Vertical label angle: 90.0 (default) or 270.0])
164 AC_ARG_ENABLE(rrdcgi,[ --disable-rrdcgi disable building of rrdcgi],
165 [],[enable_rrdcgi=yes])
167 dnl Check if we run on a system that has fonts
168 AC_ARG_WITH(rrd-default-font,
169 [ --with-rrd-default-font=[OPTIONS] set the full path to your default font.],
170 [RRD_DEFAULT_FONT=$withval],[
171 if test -d ${WINDIR:-nodir}/cour.ttf ; then
172 RRD_DEFAULT_FONT=`cd $WINDIR;pwd`/cour.ttf
174 RRD_DEFAULT_FONT='$(fontsdir)/$(fonts_DATA)'
178 dnl Use mmap in rrd_update instead of seek+write
179 AC_ARG_ENABLE([mmap],
180 [ --disable-mmap disable mmap in rrd_update, use seek+write instead],
185 AC_ARG_ENABLE(pthread,[ --disable-pthread disable multithread support],
186 [],[enable_pthread=yes])
190 CONFIGURE_PART(Audit Compilation Environment)
193 dnl Check for the compiler and static/shared library creation.
198 dnl which flags does the compile support?
199 if test "$GCC" = "yes"; then
200 for flag in -fno-strict-aliasing -Wall -std=gnu99 -pedantic -Wshadow -Wpointer-arith -Wcast-align -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline -W; do
202 CFLAGS="$CFLAGS $flag"
203 cachename=rd_cv_gcc_flag_`echo $flag|sed 's/[[^A-Za-z]]/_/g'`
204 AC_CACHE_CHECK([if gcc likes the $flag flag], $cachename,
205 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[return 0 ]])],[eval $cachename=yes],[eval $cachename=no])])
206 if eval test \$$cachename = no; then
214 AC_SUBST(RRD_DEFAULT_FONT)
216 CONFIGURE_PART(Checking for Header Files)
218 dnl Checks for header files.
221 AC_CHECK_HEADERS(sys/stat.h sys/types.h fcntl.h time.h locale.h fp_class.h malloc.h unistd.h ieeefp.h math.h sys/time.h sys/times.h sys/param.h sys/resource.h float.h)
223 dnl Checks for typedefs, structures, and compiler characteristics.
228 dnl Checks for libraries.
229 AC_CHECK_FUNC(acos, , AC_CHECK_LIB(m, acos))
231 dnl add pic flag in any case this makes sure all our code is relocatable
232 eval `./libtool --config | grep pic_flag`
233 CFLAGS="$CFLAGS $pic_flag"
235 CONFIGURE_PART(Test Library Functions)
237 dnl Checks for library functions.
243 dnl for each function found we get a definition in config.h
244 dnl of the form HAVE_FUNCTION
246 AC_CHECK_FUNCS(tzset mbstowcs opendir readdir chdir chroot getuid setlocale strerror strerror_r snprintf vsnprintf fpclass class fp_class isnan memmove strchr mktime getrusage gettimeofday)
249 if test "x$enable_mmap" = xyes; then
252 # the normal mmap test does not work in cygwin
254 if [ "x${ac_cv_func_mmap}" = xyes ]; then
255 ac_cv_func_mmap_fixed_mapped=yes
265 CONFIGURE_PART(IEEE Math Checks)
267 dnl HP-UX 11.00 does not have finite but does have isfinite as a macro so we need
268 dnl actual code to check if this works
269 AC_CHECK_FUNCS(fpclassify, ,
270 [AC_MSG_CHECKING(for fpclassify with <math.h>)
271 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>
272 volatile int x;volatile float f; ]], [[x = fpclassify(f)]])],[AC_MSG_RESULT(yes)
273 AC_DEFINE(HAVE_FPCLASSIFY)],[AC_MSG_RESULT(no)])])
274 AC_CHECK_FUNCS(finite, ,
275 [AC_CHECK_FUNCS(isfinite, ,
276 [AC_MSG_CHECKING(for isfinite with <math.h>)
277 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>
278 volatile int x;volatile float f; ]], [[x = isfinite(f)]])],[AC_MSG_RESULT(yes)
279 AC_DEFINE(HAVE_ISFINITE)],[AC_MSG_RESULT(no)])])])
280 AC_CHECK_FUNCS(isinf, ,
281 [AC_MSG_CHECKING(for isinf with <math.h>)
282 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>
283 volatile int x;volatile float f; ]], [[x = isinf(f)]])],[AC_MSG_RESULT(yes)
284 AC_DEFINE(HAVE_ISINF)],[AC_MSG_RESULT(no)])])
288 CONFIGURE_PART(Resolve Portability Issues)
290 dnl what does realloc do if it gets called with a NULL pointer
292 AC_CACHE_CHECK([if realloc can deal with NULL], rd_cv_null_realloc,
293 [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdlib.h>
297 if (x==NULL) return 1;
299 }]])],[rd_cv_null_realloc=yes],[rd_cv_null_realloc=nope],[:])])
301 if test x"$rd_cv_null_realloc" = xnope; then
302 AC_DEFINE(NO_NULL_REALLOC)
306 dnl solaris has some odd defines it needs in order to propperly compile ctime_r
307 AC_MSG_CHECKING([if ctime_r need special care to act posixly correct])
310 [[#include <time.h>]],
311 [[ctime_r(NULL,NULL,0)]]
313 [ CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
316 [[#include <time.h>]],
317 [[ctime_r(NULL,NULL)]]
319 [AC_MSG_RESULT([yes, this seems to be solaris style])],
320 [AC_MSG_ERROR([Can't figure how to compile ctime_r])]
325 [[#include <time.h>]],
326 [[ctime_r(NULL,NULL)]]
329 [AC_MSG_ERROR([Can't figure how to compile ctime_r])]
335 dnl Check for pthreads
336 dnl http://autoconf-archive.cryp.to/acx_pthread.m4
338 AC_SUBST(MULTITHREAD_CFLAGS)
339 AC_SUBST(MULTITHREAD_LDFLAGS)
341 if test $enable_pthread != no; then
343 MULTITHREAD_CFLAGS=$PTHREAD_CFLAGS
344 MULTITHREAD_LDFLAGS=$PTHREAD_LIBS
349 dnl since we use lots of *_r functions all over the code we better
350 dnl make sure they are known
352 if test "x$x_rflag" != "xno"; then
353 CPPFLAGS="$CPPFLAGS $x_rflag"
356 AM_CONDITIONAL(BUILD_MULTITHREAD,[test $enable_pthread != no])
359 dnl see if we have to include malloc/malloc.h
360 AC_MSG_CHECKING([do we need malloc/malloc.h])
363 [[#include <stdlib.h>]],
366 [ AC_MSG_RESULT([nope, works out of the box]) ],
369 [[#include <stdlib.h>
370 #include <malloc/malloc.h>]],
373 [AC_DEFINE(NEED_MALLOC_MALLOC_H)
374 AC_MSG_RESULT([yes we do])],
375 [AC_MSG_ERROR([Can not figure how to compile malloc])]
381 CONFIGURE_PART(Findr 3rd-Party Libraries)
384 AM_CONDITIONAL(BUILD_RRDCGI,[test $enable_rrdcgi != no])
388 EX_CHECK_ALL(art_lgpl_2, art_vpath_add_point, libart_lgpl/libart.h, libart-2.0, 2.3.17, ftp://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/, /usr/include/libart-2.0)
389 EX_CHECK_ALL(z, zlibVersion, zlib.h, zlib, 1.2.3, http://www.gzip.org/zlib/, "")
390 EX_CHECK_ALL(png, png_access_version_number, png.h, libpng, 1.2.10, http://prdownloads.sourceforge.net/libpng/, "")
391 EX_CHECK_ALL(freetype, FT_Init_FreeType, ft2build.h, freetype2, 2.1.10, http://prdownloads.sourceforge.net/freetype/, /usr/include/freetype2)
393 if test "$EX_CHECK_ALL_ERR" = "YES"; then
394 AC_MSG_ERROR([Please fix the library issues listed above and try again.])
403 CONFIGURE_PART(Prep for Building Language Bindings)
406 AC_PATH_PROG(PERL, perl, no)
408 AC_ARG_ENABLE(perl,[ --disable-perl do not build the perl modules],
409 [],[enable_perl=yes])
412 AC_ARG_VAR(PERLCC, [[] C compiler for Perl modules])
413 AC_ARG_VAR(PERLCCFLAGS, [[] CC flags for Perl modules])
414 AC_ARG_VAR(PERLLD, [[same as PERLCC] Linker for Perl modules])
415 AC_ARG_VAR(PERLLDFLAGS, [[] LD flags for Perl modules])
417 if test "x$PERL" = "xno" -o x$enable_perl = xno; then
420 COMP_PERL="perl_piped perl_shared"
421 AC_MSG_CHECKING(for the perl version you are running)
422 PERL_VERSION=`$PERL -MConfig -e 'print $Config{version}'`
423 AC_MSG_RESULT($PERL_VERSION)
424 if test -z "$PERLCC"; then
425 AC_MSG_CHECKING(for the C compiler perl wants to use to build its modules)
426 perlcc=`$PERL -MConfig -e 'print $Config{cc}'`
427 AC_MSG_RESULT($perlcc)
428 if test ! -x "$perlcc"; then
429 AC_PATH_PROG(PERL_CC, "${perlcc}", no)
430 if test "$PERL_CC" = "no"; then
432 I would not find the Compiler ($perlcc) that was originally used to compile
433 your perl binary. You should either make sure that this compiler is
434 available on your system, pick an other compiler and set PERLCC
435 appropriately, or use a different perl setup that was compiled locally.
437 I will disable the compilation of the RRDs perl module for now.
439 COMP_PERL="perl_piped"
445 AC_MSG_CHECKING(Perl Modules to build)
446 AC_MSG_RESULT(${COMP_PERL:-No Perl Modules will be built})
448 # Options to pass when configuring perl module
450 test "$ppref" = "NONE" && ppref=$ac_default_prefix
452 PERL_MAKE_OPTIONS="PREFIX=$ppref LIB=$ppref/lib/perl/$PERL_VERSION"
454 dnl pass additional perl options when generating Makefile from Makefile.PL
455 AC_ARG_ENABLE(perl-site-install,
456 [ --enable-perl-site-install by default the rrdtool perl modules are installed
457 together with rrdtool in $prefix/lib/perl. You have to
458 put a 'use lib qw($prefix/lib/perl)' into your scripts
459 when you want to use them. When you set this option
460 the perl modules will get installed wherever
461 your perl setup thinks it is best.],
462 [PERL_MAKE_OPTIONS=],[])
464 if test ! -z "$PERLCC"; then
465 PERL_MAKE_OPTIONS="$PERL_MAKE_OPTIONS CC=$PERLCC"
467 if test ! -z "$PERLCCFLAGS"; then
468 PERL_MAKE_OPTIONS="$PERL_MAKE_OPTIONS CCFLAGS=$PERLCCFLAGS"
471 if test -z "$PERLLD"; then
474 PERL_MAKE_OPTIONS="$PERL_MAKE_OPTIONS LD=$PERLLD"
476 if test ! -z "$PERLLDFLAGS"; then
477 PERL_MAKE_OPTIONS="$PERL_MAKE_OPTIONS LDFLAGS=$PERLLDFLAGS"
481 AC_ARG_WITH(perl-options,
482 [ --with-perl-options=[OPTIONS] options to pass on command-line when
483 generating Makefile from Makefile.PL. If you set this
484 option, interesting things may happen unless you know
485 what you are doing!],
486 [PERL_MAKE_OPTIONS=$withval])
488 AC_SUBST(PERL_MAKE_OPTIONS)
491 AC_SUBST(PERL_VERSION)
494 AC_PATH_PROG(RUBY, ruby, no)
496 AC_ARG_ENABLE(ruby,[ --disable-ruby do not build the ruby modules],
497 [],[enable_ruby=yes])
500 if test "x$RUBY" = "xno" -o x$enable_ruby = xno; then
508 AC_MSG_CHECKING(Ruby Modules to build)
509 AC_MSG_RESULT(${COMP_RUBY:-No Ruby Modules will be built})
511 dnl pass additional ruby options when generating Makefile from Makefile.PL
512 AC_ARG_ENABLE(ruby-site-install,
513 [ --enable-ruby-site-install by default the rrdtool ruby modules are installed
514 together with rrdtool in $prefix/lib/ruby. You have to
515 add $prefix/lib/ruby/$ruby_version/$sitearch to you $: variable
516 for ruby to find the RRD.so file.],
517 [RUBY_MAKE_OPTIONS=],[RUBY_MAKE_OPTIONS="sitedir=$prefix/lib/ruby"])
520 AC_ARG_WITH(ruby-options,
521 [ --with-ruby-options=[OPTIONS] options to pass on command-line when
522 generating Makefile from extconf.rb. If you set this
523 option, interesting things may happen unless you know
524 what you are doing!],
525 [RUBY_MAKE_OPTIONS=$withval])
527 AC_SUBST(RUBY_MAKE_OPTIONS)
534 AC_ARG_ENABLE(tcl,[ --disable-tcl do not build the tcl modules],
537 if test "$enable_tcl" = "yes"; then
540 AC_ARG_WITH(tcllib,[ --with-tcllib=DIR location of the tclConfig.sh])
542 for dir in $withval /usr/lib /usr/local/lib; do
543 AC_MSG_CHECKING(for tclConfig.sh in $dir)
544 if test -f "$dir/tclConfig.sh" ; then
545 tcl_config=$dir/tclConfig.sh
554 if test "$enable_tcl" = "no"; then
555 AC_MSG_WARN([tclConfig.sh not found - Tcl interface won't be built])
558 TCL_PACKAGE_DIR="$TCL_PACKAGE_PATH/tclrrd$VERSION"
560 AC_ARG_ENABLE(tcl,[ --enable-tcl-site install the tcl extension in the tcl tree],
561 [],[enable_tcl_site=yes])
565 AM_CONDITIONAL(BUILD_TCL, test "$enable_tcl" = "yes" )
566 AM_CONDITIONAL(BUILD_TCL_SITE, test "$enable_tcl_site" = "yes" )
569 AC_SUBST(TCL_SHLIB_CFLAGS)
570 AC_SUBST(TCL_SHLIB_LD)
571 AC_SUBST(TCL_SHLIB_SUFFIX)
572 AC_SUBST(TCL_PACKAGE_PATH)
573 AC_SUBST(TCL_LD_SEARCH_FLAGS)
574 AC_SUBST(TCL_STUB_LIB_SPEC)
575 AC_SUBST(TCL_VERSION)
576 AC_SUBST(TCL_PACKAGE_DIR)
578 AC_ARG_ENABLE(python,[ --disable-python do not build the python modules],
579 [],[enable_python=yes])
581 if test "$enable_python" = "yes"; then
583 AM_PATH_PYTHON(2.3,[],[enable_python=no])
584 AM_CHECK_PYTHON_HEADERS(,[enable_python=no;AC_MSG_WARN(could not find Python headers)])
587 if test x$enable_python = xno; then
593 AC_SUBST(COMP_PYTHON)
596 AC_PATH_PROGS(NROFF, gnroff nroff)
597 AC_PATH_PROGS(TROFF, groff troff)
599 AC_ARG_VAR(RRDDOCDIR, [[DATADIR/doc/PACKAGE-VERSION] Documentation directory])
600 if test -z "$RRDDOCDIR"; then
601 RRDDOCDIR='${datadir}/doc/${PACKAGE}-${VERSION}'; fi
604 CONFIGURE_PART(Apply Configuration Information)
606 AC_CONFIG_FILES([examples/shared-demo.pl])
607 AC_CONFIG_FILES([examples/piped-demo.pl])
608 AC_CONFIG_FILES([examples/stripes.pl])
609 AC_CONFIG_FILES([examples/bigtops.pl])
610 AC_CONFIG_FILES([examples/minmax.pl])
611 AC_CONFIG_FILES([examples/4charts.pl])
612 AC_CONFIG_FILES([examples/perftest.pl])
613 AC_CONFIG_FILES([examples/Makefile])
614 AC_CONFIG_FILES([doc/Makefile])
615 AC_CONFIG_FILES([src/Makefile])
616 AC_CONFIG_FILES([bindings/Makefile])
617 AC_CONFIG_FILES([bindings/tcl/Makefile])
618 AC_CONFIG_FILES([bindings/tcl/ifOctets.tcl])
619 AC_CONFIG_FILES([bindings/python/Makefile])
620 AC_CONFIG_FILES([Makefile])
622 AC_CONFIG_COMMANDS([default],[[ chmod +x examples/*.pl]],[[]])
626 AC_MSG_RESULT(and out again)
628 echo $ECHO_N "ordering CD from http://tobi.oetiker.ch/wish $ECHO_C" 1>&6
630 echo $ECHO_N ".$ECHO_C" 1>&6
632 echo $ECHO_N ".$ECHO_C" 1>&6
634 echo $ECHO_N ".$ECHO_C" 1>&6
636 echo $ECHO_N ".$ECHO_C" 1>&6
638 AC_MSG_RESULT([ just kidding ;-)])
640 echo "----------------------------------------------------------------"
641 echo "Config is DONE!"
643 echo " With MMAP IO: $ac_cv_func_mmap_fixed_mapped"
644 echo " Perl Modules: $COMP_PERL"
645 echo " Perl Binary: $PERL"
646 echo " Perl Version: $PERL_VERSION"
647 echo " Perl Options: $PERL_MAKE_OPTIONS"
648 echo " Ruby Modules: $COMP_RUBY"
649 echo " Ruby Binary: $RUBY"
650 echo " Ruby Options: $RUBY_MAKE_OPTIONS"
651 echo " Build Tcl Bindings: $enable_tcl"
652 echo " Build Python Bindings: $enable_python"
653 echo " Build rrdcgi: $enable_rrdcgi"
654 echo " Build librrd MT: $enable_pthread"
657 echo "Type 'make' to compile the software and use 'make install' to "
658 echo "install everything to: $prefix."
660 echo " ... that wishlist is NO JOKE. If you find RRDtool useful"
661 echo "make me happy. Go to http://tobi.oetiker.ch/wish and"
662 echo "place an order."
664 echo " -- Tobi Oetiker <tobi@oetiker.ch>"
665 echo "----------------------------------------------------------------"