updated
[rrdtool.git] / configure.ac
1 dnl RRDtool AutoConf script ... 
2 dnl ---------------------------
3 dnl
4 dnl Created by Jeff Allen, Tobi Oetiker, Blair Zajac
5 dnl
6 dnl
7
8 dnl tell automake the this script is for rrdtool
9 AC_INIT(src/rrd_tool.c)
10 AC_CONFIG_AUX_DIR(config)
11 AC_CANONICAL_TARGET([])
12 AM_INIT_AUTOMAKE(rrdtool, 1.1.0)
13 AM_CONFIG_HEADER(config/config.h)
14
15 dnl all our local stuff like install scripts and include files
16 dnl is in there
17
18
19 dnl determine the type of system we are running on
20
21
22 AC_SUBST(VERSION)
23
24 dnl where we install our stuff ...
25 AC_PREFIX_DEFAULT( /usr/local/rrdtool-1.1.0 )
26
27 dnl Minimum Autoconf version required.
28 AC_PREREQ(2.52)
29
30 dnl At the TOP of the HEADER
31
32 AH_TOP([
33
34 #ifndef CONFIG_H
35 #define CONFIG_H
36 /* IEEE can be prevented from raising signals with fpsetmask(0) */
37 #undef MUST_DISABLE_FPMASK
38
39 /* IEEE math only works if SIGFPE gets actively set to IGNORE */
40
41 #undef MUST_DISABLE_SIGFPE
42
43 /* realloc does not support NULL as argument */
44 #undef NO_NULL_REALLOC
45  ])
46
47 AH_BOTTOM([
48
49 /* define strrchr, strchr and memcpy, memmove in terms of bsd funcs
50    make sure you are NOT using bcopy, index or rindex in the code */
51       
52 #if STDC_HEADERS
53 # include <string.h>
54 #else
55 # ifndef HAVE_STRCHR
56 #  define strchr index
57 #  define strrchr rindex
58 # endif
59 char *strchr (), *strrchr ();
60 # ifndef HAVE_MEMMOVE
61 #  define memcpy(d, s, n) bcopy ((s), (d), (n))
62 #  define memmove(d, s, n) bcopy ((s), (d), (n))
63 # endif
64 #endif
65
66
67 #if NO_NULL_REALLOC
68 # define rrd_realloc(a,b) ( (a) == NULL ? malloc( (b) ) : realloc( (a) , (b) ))
69 #else
70 # define rrd_realloc(a,b) realloc((a), (b))
71 #endif      
72
73 #if HAVE_MATH_H
74 #  include <math.h>
75 #endif
76
77 #if HAVE_FLOAT_H
78 #  include <float.h>
79 #endif
80
81 #if HAVE_IEEEFP_H
82 #  include <ieeefp.h>
83 #endif
84
85 #if HAVE_FP_CLASS_H
86 #  include <fp_class.h>
87 #endif
88
89 /* for Solaris */
90 #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASS))
91 #  define HAVE_ISINF 1
92 #  define isinf(a) (fpclass(a) == FP_NINF || fpclass(a) == FP_PINF)
93 #endif
94
95 /* for OSF1 Digital Unix */
96 #if (! defined(HAVE_ISINF) && defined(HAVE_FP_CLASS) && defined(HAVE_FP_CLASS_H))
97 #  define HAVE_ISINF 1
98 #  define isinf(a) (fp_class(a) == FP_NEG_INF || fp_class(a) == FP_POS_INF)
99 #endif
100
101 #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASSIFY) && defined(FP_PLUS_INF) && defined(FP_MINUS_INF))
102 #  define HAVE_ISINF 1
103 #  define isinf(a) (fpclassify(a) == FP_MINUS_INF || fpclassify(a) == FP_PLUS_INF)
104 #endif
105
106 #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASSIFY) && defined(FP_INFINITE))
107 #  define HAVE_ISINF 1
108 #  define isinf(a) (fpclassify(a) == FP_INFINITE)
109 #endif
110
111 /* for AIX */
112 #if (! defined(HAVE_ISINF) && defined(HAVE_CLASS))
113 #  define HAVE_ISINF 1
114 #  define isinf(a) (class(a) == FP_MINUS_INF || class(a) == FP_PLUS_INF)
115 #endif
116
117 #if (! defined (HAVE_FINITE) && defined (HAVE_ISFINITE))
118 #  define HAVE_FINITE 1
119 #  define finite(a) isfinite(a)
120 #endif
121
122 #if (! defined(HAVE_FINITE) && defined(HAVE_ISNAN) && defined(HAVE_ISINF))
123 #  define HAVE_FINITE 1
124 #  define finite(a) (! isnan(a) && ! isinf(a))
125 #endif
126
127 #ifndef HAVE_FINITE
128 #error "Can't compile without finite function"
129 #endif
130
131 #ifndef HAVE_ISINF
132 #error "Can't compile without isinf function"
133 #endif
134
135 #endif /* CONFIG_H */
136 ])
137
138
139 dnl Define library subdirectory names here.
140 CGI_LIB_DIR=cgilib-0.4
141 FREETYPE_LIB_DIR=freetype-2.0.5
142 ART_LIB_DIR=libart_lgpl-2.3.7
143 PNG_LIB_DIR=libpng-1.2.0
144 ZLIB_LIB_DIR=zlib-1.1.4
145
146 dnl substitute them in all the files listed in AC_OUTPUT
147 AC_SUBST(CGI_LIB_DIR)
148 AC_SUBST(ART_LIB_DIR)
149 AC_SUBST(PNG_LIB_DIR)
150 AC_SUBST(FREETYPE_LIB_DIR)
151 AC_SUBST(ZLIB_LIB_DIR)
152 AC_SUBST(PERLFLAGS)
153
154 INCLUDED_LIB(cgi,cgiInit)
155 INCLUDED_LIB(art_lgpl,art_vpath_add_point)
156 INCLUDED_LIB(png,png_access_version_number)
157 INCLUDED_LIB(freetype,FT_Init_FreeType)
158 INCLUDED_LIB(z,zlibVersion)
159
160 dnl Check for Perl.
161 AC_PATH_PROG(PERL, perl, no)
162 if test "x$PERL" = "xno"; then
163         COMP_PERL=
164 else
165         COMP_PERL="perl_piped perl_shared"
166         AC_MSG_CHECKING(for shared library extension)
167         SO_EXT=`$PERL -e 'use Config; if (defined $Config{so} and $Config{so} ne 'a') {print "$Config{so}\n"} else {print "so\n"};'`
168         AC_MSG_RESULT($SO_EXT)
169         AC_MSG_CHECKING(for the C compiler perl wants to use to build its modules)
170         PROBLEMCC=`$PERL -e 'use Config; map {if (-x "$_/$Config{cc}"){exit 0}} split /:/, $ENV{PATH};print $Config{cc}'`
171         if test x$PROBLEMCC != x; then
172                 AC_MSG_RESULT(no)
173                 echo Could not find the Compiler: '"'$PROBLEMCC'"'
174                 echo which has been used to build perl. You may have to compile
175                 echo your own copy of perl to make this work. Binary perls often
176                 echo exhibit this problem
177                 exit 1
178         else
179                 AC_MSG_RESULT(found)
180         fi
181 fi
182 AC_SUBST(COMP_PERL)
183 AC_SUBST(SO_EXT)
184
185 dnl Check for Tcl.
186 withval=""
187 AC_ARG_WITH(tcllib,[  --with-tcllib=DIR       location of the tclConfig.sh])
188 found=0
189 AC_MSG_CHECKING(for tclConfig.sh in $withval)
190 if test -f "$withval/tclConfig.sh" ; then
191         tcl_config=$withval/tclConfig.sh
192         found=1
193         AC_MSG_RESULT(yes)
194         break
195 else
196         AC_MSG_RESULT(no)
197 fi
198
199 if test $found -eq 0 ; then
200         AC_MSG_WARN([tclConfig.sh not found - Tcl interface won't be built])
201 else
202         . $tcl_config
203 fi
204
205 dnl Pass additional perl options when generating Makefile from Makefile.PL
206 # Options to pass when configuring perl module
207 AC_ARG_WITH(perl-options,
208 [  --with-perl-options=[OPTIONS]  options to pass on command-line when
209                           generating Makefile from Makefile.PL],
210 [PERL_MAKE_OPTIONS=$withval])
211 AC_SUBST(PERL_MAKE_OPTIONS)
212
213 AM_CONDITIONAL(COMP_TCL, test x$found = x1 )
214
215 AC_SUBST(TCL_PREFIX)
216 AC_SUBST(TCL_SHLIB_CFLAGS)
217 AC_SUBST(TCL_SHLIB_LD)
218 AC_SUBST(TCL_SHLIB_SUFFIX)
219 AC_SUBST(TCL_PACKAGE_PATH)
220 AC_SUBST(TCL_LD_SEARCH_FLAGS)
221
222 dnl Check for the compiler and static/shared library creation.
223 AC_PROG_CC
224 AC_PROG_CPP
225
226 dnl don't build a shared library ...
227 dnl this can be changed when running configure
228 AC_DISABLE_SHARED
229 AC_PROG_LIBTOOL
230
231 dnl Checks for header files.
232 AC_HEADER_STDC
233 AC_CHECK_HEADERS(fcntl.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)
234
235 dnl Checks for typedefs, structures, and compiler characteristics.
236 AC_C_CONST
237 AC_HEADER_TIME
238 AC_STRUCT_TM
239
240 dnl Checks for libraries.
241 AC_CHECK_FUNC(acos, , AC_CHECK_LIB(m, acos))
242
243 dnl Check for nroff
244 AC_PATH_PROGS(NROFF, gnroff nroff)
245 AC_PATH_PROGS(TROFF, groff troff)
246
247 dnl Does the compiler like -Wall and -pedantic?
248 if test "x$GCC" = "xyes"; then
249   oCFLAGS=$CFLAGS
250   CFLAGS="$CFLAGS -Wall -pedantic -Wshadow -Wpointer-arith -Wcast-align -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline"
251   AC_CACHE_CHECK(if we can use GCC-specific compiler options, rd_cv_gcc_opt,
252                 [AC_TRY_COMPILE( , return 0 ,
253                     rd_cv_gcc_opt=yes,
254                     rd_cv_gcc_opt=no )
255                ]
256         )
257   if test $rd_cv_gcc_opt = no; then
258          CFLAGS=$oCFLAGS
259   fi
260 fi
261
262 dnl add pic flag in any case this makes sure all our code is relocatable
263 CFLAGS="$CFLAGS "`grep pic_flag= libtool | sed -e 's/.*pic_flag=//' -e 's/"//g'`
264
265 ZLIB_CFLAGS=$CFLAGS
266 dnl it seems that hpux chockes on -fPIC for some reason
267 case $target_os in
268 *hpux*)
269         ZLIB_CFLAGS=`echo $CFLAGS|sed -e 's/-fPIC/-fpic/g'`
270 ;;
271 esac
272 AC_SUBST(ZLIB_CFLAGS)
273
274 dnl Checks for library functions.
275 AC_FUNC_STRFTIME
276 AC_FUNC_VPRINTF
277
278 dnl for each function found we get a definition in config.h 
279 dnl of the form HAVE_FUNCTION
280
281 AC_CHECK_FUNCS(strerror snprintf vsnprintf fpclass class fp_class isnan memmove strchr mktime getrusage gettimeofday)
282
283 dnl HP-UX 11.00 does not have finite but does have isfinite as a macro
284 AC_CHECK_FUNCS(fpclassify, ,
285   [AC_MSG_CHECKING(for fpclassify with <math.h>)
286     AC_TRY_LINK([#include <math.h>], [float f = 0.0; fpclassify(f)],
287       AC_MSG_RESULT(yes)
288       AC_DEFINE(HAVE_FPCLASSIFY), AC_MSG_RESULT(no))])
289 AC_CHECK_FUNCS(finite, ,
290   [AC_CHECK_FUNCS(isfinite, ,
291     [AC_MSG_CHECKING(for isfinite with <math.h>)
292     AC_TRY_LINK([#include <math.h>], [float f = 0.0; isfinite(f)],
293       AC_MSG_RESULT(yes)
294       AC_DEFINE(HAVE_ISFINITE), AC_MSG_RESULT(no))])])
295 AC_CHECK_FUNCS(isinf, ,
296   [AC_MSG_CHECKING(for isinf with <math.h>)
297     AC_TRY_LINK([#include <math.h>], [float f = 0.0; isinf(f)],
298       AC_MSG_RESULT(yes)
299       AC_DEFINE(HAVE_ISINF), AC_MSG_RESULT(no))])
300
301 dnl what does realloc do if it gets called with a NULL pointer
302
303 AC_CACHE_CHECK([if realloc can deal with NULL], rd_cv_null_realloc,
304 [AC_TRY_RUN([#include <stdlib.h>
305               int main(void){
306               char *x = NULL;
307               x = realloc (x,10);
308               if (x==NULL) return 1;
309               return 0;
310              }],
311            [rd_cv_null_realloc=yes],[rd_cv_null_realloc=nope],:)])
312
313 if test x"$rd_cv_null_realloc" = xnope; then
314 AC_DEFINE(NO_NULL_REALLOC)
315 fi
316
317 dnl determine how to get IEEE math working
318 dnl AC_IEEE(MESSAGE, set rd_cv_ieee_[var] variable, INCLUDES,
319 dnl   FUNCTION-BODY, [ACTION-IF-FOUND [,ACTION-IF-NOT-FOUND]])
320
321 AC_C_BIGENDIAN
322
323 AC_DEFUN(AC_IEEE, 
324 AC_MSG_CHECKING([if IEEE math works $1])
325 AC_CACHE_VAL([rd_cv_ieee_$2],
326 [AC_TRY_RUN([$3
327
328 #if HAVE_MATH_H
329 #  include <math.h>
330 #endif
331
332 #if HAVE_FLOAT_H
333 #  include <float.h>  
334 #endif
335
336 #if HAVE_IEEEFP_H
337 #  include <ieeefp.h>
338 #endif
339
340 #if HAVE_FP_CLASS_H
341 #  include <fp_class.h>
342 #endif
343
344 /* Solaris */
345 #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASS))
346 #  define HAVE_ISINF 1
347 #  define isinf(a) (fpclass(a) == FP_NINF || fpclass(a) == FP_PINF)
348 #endif
349
350 /* Digital UNIX */
351 #if (! defined(HAVE_ISINF) && defined(HAVE_FP_CLASS) && defined(HAVE_FP_CLASS_H))
352 #  define HAVE_ISINF 1
353 #  define isinf(a) (fp_class(a) == FP_NEG_INF || fp_class(a) == FP_POS_INF)
354 #endif 
355
356 /* AIX */
357 #if (! defined(HAVE_ISINF) && defined(HAVE_CLASS))
358 #  define HAVE_ISINF 1
359 #  define isinf(a) (class(a) == FP_MINUS_INF || class(a) == FP_PLUS_INF)
360 #endif
361
362 #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASSIFY) && defined(FP_PLUS_INF) && defined(FP_MINUS_INF))
363 #  define HAVE_ISINF 1
364 #  define isinf(a) (fpclassify(a) == FP_MINUS_INF || fpclassify(a) == FP_PLUS_INF)
365 #endif
366
367 #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASSIFY) && defined(FP_INFINITE))
368 #  define HAVE_ISINF 1
369 #  define isinf(a) (fpclassify(a) == FP_INFINITE)
370 #endif
371
372 #include <stdio.h>
373 int main(void){
374     double nan,inf,c,zero;
375     $4;
376     /* some math to see if we get a floating point exception */
377     zero=sin(0.0); /* don't let the compiler optimize us away */
378     nan=0.0/zero; /* especially here */
379     inf=1.0/zero; /* and here. I want to know if it can do the magic */
380                   /* at run time without sig fpe */
381     c = inf + nan;
382     c = inf / nan;
383     if (! isnan(nan)) {printf ("not isnan(NaN) ... "); return 1;}
384     if (nan == nan) {printf ("nan == nan ... "); return 1;}
385     if (! isinf(inf)) {printf ("not isinf(oo) ... "); return 1;}
386     if (! isinf(-inf)) {printf ("not isinf(-oo) ... "); return 1;}
387     if (! inf > 0) {printf ("not inf > 0 ... "); return 1;}
388     if (! -inf < 0) {printf ("not -inf < 0 ... "); return 1;}
389     return 0;
390  }],
391
392 rd_cv_ieee_$2=yes,
393 rd_cv_ieee_$2=no,
394 :)])
395 dnl these we run regardles is cached or not
396 if test x${rd_cv_ieee_$2} = "xyes"; then
397  AC_MSG_RESULT(yes)
398  $5
399 else
400  AC_MSG_RESULT(no)
401  $6
402 fi
403
404 )
405
406 _cflags=${CFLAGS}
407 AC_IEEE([out of the box], works, , , ,
408   [CFLAGS="$_cflags -ieee"
409   AC_IEEE([with the -ieee switch], switch, , , ,
410     [CFLAGS="$_cflags -qfloat=nofold"
411     AC_IEEE([with the -qfloat=nofold switch], nofold, , , ,
412       [CFLAGS="$_cflags -w -qflttrap=enable:zerodivide"
413       AC_IEEE([with the -w -qflttrap=enable:zerodivide], flttrap, , , ,
414        [CFLAGS="$_cflags -mieee"
415        AC_IEEE([with the -mieee switch], mswitch, , , ,
416          [CFLAGS="$_cflags -q float=rndsngl"
417          AC_IEEE([with the -q float=rndsngl switch], qswitch, , , ,
418            [CFLAGS="$_cflags -OPT:IEEE_comparisons=ON"
419            AC_IEEE([with the -OPT:IEEE_comparisons=ON switch], ieeecmpswitch, , , ,
420              [CFLAGS=$_cflags
421              AC_IEEE([with fpsetmask(0)], mask,
422                [#include <floatingpoint.h>], [fpsetmask(0)],
423                [AC_DEFINE(MUST_DISABLE_FPMASK)
424                PERLFLAGS="CCFLAGS=-DMUST_DISABLE_FPMASK"],
425                [AC_IEEE([with signal(SIGFPE,SIG_IGN)], sigfpe,
426                  [#include <signal.h>], [signal(SIGFPE,SIG_IGN)],
427                  [AC_DEFINE(MUST_DISABLE_SIGFPE)
428                  PERLFLAGS="CCFLAGS=-DMUST_DISABLE_SIGFPE"],            
429                  AC_MSG_ERROR([
430 Your Compiler does not do propper IEEE math ... Please find out how to
431 make IEEE math work with your compiler and let me know (oetiker@ee.ethz.ch).
432 Check config.log to see what went wrong ...
433 ]))])])])])])])])])
434
435
436 AC_CONFIG_FILES([examples/shared-demo.pl                        \
437           examples/piped-demo.pl                        \
438           examples/stripes.pl                           \
439           examples/bigtops.pl                           \
440           examples/minmax.pl                            \
441           examples/cgi-demo.cgi                         \
442           examples/Makefile                             \
443           doc/Makefile                                  \
444           libraries/Makefile                            \
445           libraries/cgilib-0.4/Makefile                 \
446           libraries/libart_lgpl-2.3.7/Makefile          \
447           libraries/libpng-1.2.0/Makefile               \
448           libraries/zlib-1.1.4/Makefile                 \
449           libraries/freetype-2.0.5/Makefile             \
450           src/Makefile                                  \
451           bindings/Makefile                             \
452           bindings/tcl/Makefile                         \
453           Makefile])
454 AC_CONFIG_COMMANDS([default],[[\
455           chmod +x examples/*.cgi examples/*.pl]],[[]])
456 AC_OUTPUT
457
458 AC_MSG_CHECKING(in)
459 AC_MSG_RESULT(and out again)
460
461 echo $ECHO_N "ordering CD from http://ee-staff.ethz.ch/~oetiker/wish $ECHO_C" 1>&6
462 sleep 1
463 echo $ECHO_N ".$ECHO_C" 1>&6
464 sleep 1
465 echo $ECHO_N ".$ECHO_C" 1>&6
466 sleep 1
467 echo $ECHO_N ".$ECHO_C" 1>&6
468 sleep 1
469 echo $ECHO_N ".$ECHO_C" 1>&6
470 sleep 1
471 AC_MSG_RESULT([ just kidding ;-)])
472 echo
473 echo "----------------------------------------------------------------"
474 echo "Config is DONE!"
475 echo
476 echo "Type 'make' to compile the software and use 'make install' to "
477 echo "install everything to: $prefix."
478 echo
479 echo "If you want to install the perl"
480 echo "modules in site-perl, try 'make site-perl-install'."
481 echo 
482 echo "       ... that wishlist is NO JOKE. If you find RRDtool useful"
483 echo "make me happy. Go to http://ee-staff.ethz.ch/~oetiker/wish and"
484 echo "place an order."
485 echo 
486 echo "                               -- Tobi Oetiker <tobi@oetiker.ch>"
487 echo "----------------------------------------------------------------"