added sparc-sun-solaris2.8 to list of broken isfinite implementations
[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 Inspiration from http://autoconf-archive.cryp.to
7  
8 dnl tell automake the this script is for rrdtool
9
10 dnl the official version number is
11 dnl a.b.c
12 AC_INIT([rrdtool],[1.3.1])
13
14 dnl for testing a numberical version number comes handy
15 dnl the released version are
16 dnl a.bccc
17 dnl the devel versions will be something like
18 dnl a.b999yymmddhh 
19 NUMVERS=1.3001
20 AC_SUBST(NUMVERS)
21
22 dnl for the linker to understand which version the library is compatible with
23 dnl we must keep a separate library version cout of the format c:r:a if any
24 dnl if only implementation changed but all interfaces are kept, do r++
25 dnl when only functionality was added do c++,r=0,a++
26 dnl if any functionality was removed do c++,r=0,a=0.
27 dnl
28 dnl see http://sourceware.org/autobook/autobook/autobook_91.html
29 dnl 
30 LIBVERS=4:0:0
31 AC_SUBST(LIBVERS)
32
33 AC_CANONICAL_TARGET
34 AM_INIT_AUTOMAKE
35 AM_MAINTAINER_MODE
36
37 AC_CONFIG_HEADERS([rrd_config.h])
38
39 dnl all our local stuff like install scripts and include files
40 dnl is in there
41
42
43 dnl determine the type of system we are running on
44
45 AC_SUBST(VERSION)
46
47 AC_PREFIX_DEFAULT( /usr/local/rrdtool-$PACKAGE_VERSION )
48
49 dnl Minimum Autoconf version required.
50 AC_PREREQ(2.59)
51
52 dnl At the TOP of the HEADER
53
54 AH_TOP([
55
56 #ifndef RRD_CONFIG_H
57 #define RRD_CONFIG_H
58 /* IEEE can be prevented from raising signals with fpsetmask(0) */
59 #undef MUST_DISABLE_FPMASK
60
61 /* IEEE math only works if SIGFPE gets actively set to IGNORE */
62
63 #undef MUST_DISABLE_SIGFPE
64
65 /* realloc does not support NULL as argument */
66 #undef NO_NULL_REALLOC
67
68 /* lets enable madvise defines in NetBSD */ 
69 #if defined(__NetBSD__)
70 # if !defined(_NETBSD_SOURCE)
71 #  define _NETBSD_SOURCE
72 # endif
73 #endif
74
75  ])
76
77 AH_BOTTOM([
78 /* make sure that we pickup the correct stuff from all headers */
79 #ifdef HAVE_FEATURES_H
80 #undef _XOPEN_SOURCE /* keep unmodified */
81 #undef _BSD_SOURCE /* keep unmodified */
82 #define _XOPEN_SOURCE 600
83 #define _BSD_SOURCE 1
84 # include <features.h>
85 #endif
86
87 /* FreeBSD 4.8 wants this included BEFORE sys/types.h */
88 #ifdef HAVE_SYS_MMAN_H
89 # include <sys/mman.h>
90 #endif
91
92 #ifdef HAVE_SYS_TYPES_H
93 # include <sys/types.h>
94 #endif
95
96 #ifdef HAVE_SYS_PARAM_H
97 # include <sys/param.h>
98 #endif
99 #ifndef MAXPATH
100 # ifdef PATH_MAX
101 #  define MAXPATH PATH_MAX
102 # endif
103 #endif
104 #ifndef MAXPATH
105 /* else try the BSD variant */
106 # ifdef MAXPATHLEN
107 #  define MAXPATH MAXPATHLEN
108 # endif
109 #endif
110
111 #ifdef HAVE_ERRNO_H
112 # include <errno.h>
113 #endif
114
115 #if !defined HAVE_MADVISE && defined HAVE_POSIX_MADVISE
116 /* use posix_madvise family */
117 # define madvise posix_madvise
118 # define MADV_NORMAL POSIX_MADV_NORMAL
119 # define MADV_RANDOM POSIX_MADV_RANDOM
120 # define MADV_SEQUENTIAL POSIX_MADV_SEQUENTIAL
121 # define MADV_WILLNEED POSIX_MADV_WILLNEED
122 # define MADV_DONTNEED POSIX_MADV_DONTNEED
123 #endif
124 #if defined HAVE_MADVISE || defined HAVE_POSIX_MADVISE
125 # define USE_MADVISE 1
126 #endif
127
128 #ifdef HAVE_SYS_STAT_H
129 # include <sys/stat.h>
130 #endif
131
132 #ifdef HAVE_FCNTL_H
133 #include <fcntl.h>
134 #endif
135
136 #ifdef HAVE_UNISTD_H
137 # include <unistd.h>
138 #endif
139
140 #ifdef TIME_WITH_SYS_TIME
141 # include <sys/time.h>
142 # include <time.h>
143 #else
144 # ifdef HAVE_SYS_TIME_H
145 #  include <sys/time.h>
146 # else
147 #  include <time.h>
148 # endif
149 #endif
150
151 #ifdef HAVE_SYS_TIMES_H
152 # include <sys/times.h>
153 #endif
154
155 #ifdef HAVE_SYS_RESOURCE_H
156 # include <sys/resource.h>
157 #if (defined(__svr4__) && defined(__sun__))
158 /* Solaris headers (pre 2.6) do not have a getrusage prototype. 
159    Use this instead. */
160 extern int getrusage(int, struct rusage *);
161 #endif /* __svr4__ && __sun__ */
162 #endif
163
164
165 /* define strrchr, strchr and memcpy, memmove in terms of bsd funcs
166    make sure you are NOT using bcopy, index or rindex in the code */
167       
168 #ifdef STDC_HEADERS
169 # include <string.h>
170 #else
171 # ifndef HAVE_STRCHR
172 #  define strchr index
173 #  define strrchr rindex
174 # endif
175 char *strchr (), *strrchr ();
176 # ifndef HAVE_MEMMOVE
177 #  define memcpy(d, s, n) bcopy ((s), (d), (n))
178 #  define memmove(d, s, n) bcopy ((s), (d), (n))
179 # endif
180 #endif
181
182 #ifdef NO_NULL_REALLOC
183 # define rrd_realloc(a,b) ( (a) == NULL ? malloc( (b) ) : realloc( (a) , (b) ))
184 #else
185 # define rrd_realloc(a,b) realloc((a), (b))
186 #endif
187
188 #ifdef NEED_MALLOC_MALLOC_H
189 #  include <malloc/malloc.h>
190 #endif
191
192 #ifdef HAVE_STDIO_H
193 # include <stdio.h>
194 #endif
195
196 #ifdef HAVE_STDLIB_H
197 # include <stdlib.h>
198 #endif
199
200 #ifdef HAVE_CTYPE_H
201 # include <ctype.h>
202 #endif
203
204 #ifdef HAVE_DIRENT_H
205 # include <dirent.h>
206 # define NAMLEN(dirent) strlen((dirent)->d_name)
207 #else
208 # define dirent direct
209 # define NAMLEN(dirent) (dirent)->d_namlen
210 # ifdef HAVE_SYS_NDIR_H
211 #  include <sys/ndir.h>
212 # endif
213 # ifdef HAVE_SYS_DIR_H
214 #  include <sys/dir.h>
215 # endif
216 # ifdef HAVE_NDIR_H
217 #  include <ndir.h>
218 # endif
219 #endif
220
221 #ifdef MUST_DISABLE_SIGFPE
222 # include <signal.h>
223 #endif
224
225 #ifdef MUST_DISABLE_FPMASK
226 # include <floatingpoint.h>
227 #endif
228
229
230 #ifdef HAVE_MATH_H
231 # include <math.h>
232 #endif
233
234 #ifdef HAVE_FLOAT_H
235 # include <float.h>
236 #endif
237
238 #ifdef HAVE_IEEEFP_H
239 # include <ieeefp.h>
240 #endif
241
242 #ifdef HAVE_FP_CLASS_H
243 # include <fp_class.h>
244 #endif
245
246 /* for Solaris */
247 #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASS))
248 #  define HAVE_ISINF 1
249 #  ifdef isinf
250 #  undef isinf /* confuse autoconf */
251 #  endif
252 #  define isinf(a) (fpclass(a) == FP_NINF || fpclass(a) == FP_PINF)
253 #endif
254
255 /* solaris 10 it defines isnan such that only forte can compile it ... bad bad  */
256 #if (defined(HAVE_ISNAN) && defined(isnan) && defined(HAVE_FPCLASS))
257 #  undef isnan /* confuse autoconf to NOT remove this */
258 #  define isnan(a) (fpclass(a) == FP_SNAN || fpclass(a) == FP_QNAN)
259 #endif
260
261 /* for OSF1 Digital Unix */
262 #if (! defined(HAVE_ISINF) && defined(HAVE_FP_CLASS) && defined(HAVE_FP_CLASS_H))
263 #  define HAVE_ISINF 1
264 #  define isinf(a) (fp_class(a) == FP_NEG_INF || fp_class(a) == FP_POS_INF)
265 #endif
266
267 #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASSIFY) && defined(FP_PLUS_INF) && defined(FP_MINUS_INF))
268 #  define HAVE_ISINF 1
269 #  define isinf(a) (fpclassify(a) == FP_MINUS_INF || fpclassify(a) == FP_PLUS_INF)
270 #endif
271
272 #if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASSIFY) && defined(FP_INFINITE))
273 #  define HAVE_ISINF 1
274 #  define isinf(a) (fpclassify(a) == FP_INFINITE)
275 #endif
276
277 /* for AIX */
278 #if (! defined(HAVE_ISINF) && defined(HAVE_CLASS))
279 #  define HAVE_ISINF 1
280 #  define isinf(a) (class(a) == FP_MINUS_INF || class(a) == FP_PLUS_INF)
281 #endif
282
283 #if (! defined (HAVE_FINITE) && defined (HAVE_ISFINITE))
284 #  define HAVE_FINITE 1
285 #  define finite(a) isfinite(a)
286 #endif
287
288 #if (! defined(HAVE_FINITE) && defined(HAVE_ISNAN) && defined(HAVE_ISINF))
289 #  define HAVE_FINITE 1
290 #  define finite(a) (! isnan(a) && ! isinf(a))
291 #endif
292
293 #ifndef HAVE_FINITE
294 #error "Can't compile without finite function"
295 #endif
296
297 #ifndef HAVE_ISINF
298 #error "Can't compile without isinf function"
299 #endif
300
301 #if (! defined(HAVE_FDATASYNC) && defined(HAVE_FSYNC))
302 #define fdatasync fsync
303 #endif
304
305 #if (!defined(HAVE_FDATASYNC) && !defined(HAVE_FSYNC))
306 #error "Can't compile with without fsync and fdatasync"
307 #endif
308
309 #endif /* RRD_CONFIG_H */
310 ])
311
312 dnl Process Special Options
313 dnl -----------------------------------
314
315 dnl How the vertical axis label is printed
316 AC_ARG_VAR(RRDGRAPH_YLEGEND_ANGLE, 
317  [Vertical label angle: -90.0 (default) or 90.0])
318 AC_DEFINE_UNQUOTED(RRDGRAPH_YLEGEND_ANGLE,${RRDGRAPH_YLEGEND_ANGLE:-90.0},
319  [Vertical label angle: -90.0 (default) or 90.0])
320
321 AC_ARG_ENABLE(rrdcgi,[  --disable-rrdcgi        disable building of rrdcgi],
322 [],[enable_rrdcgi=yes])
323
324 dnl Check if we run on a system that has fonts
325 AC_ARG_WITH(rrd-default-font,
326 [  --with-rrd-default-font=[OPTIONS]  set the full path to your default font.],
327 [RRD_DEFAULT_FONT=$withval],[
328   if test -d ${WINDIR:-nodir}/cour.ttf ; then
329         RRD_DEFAULT_FONT=`cd $WINDIR;pwd`/cour.ttf
330   else
331         RRD_DEFAULT_FONT='"DejaVu Sans Mono,Bitstream Vera Sans Mono,monospace,Courier"'
332   fi
333 ])
334
335 dnl Use mmap in rrd_update instead of seek+write
336 AC_ARG_ENABLE([mmap],
337 [  --disable-mmap          disable mmap in rrd_update, use seek+write instead],
338 [],
339 [enable_mmap=yes])
340
341 AC_ARG_ENABLE(pthread,[  --disable-pthread       disable multithread support],
342 [],[enable_pthread=yes])
343
344 AC_ARG_ENABLE(static-programs,
345      [  --enable-static-programs  Build static programs],
346      [case "${enableval}" in
347        yes) staticprogs=yes ;;
348        no)  staticprogs=no ;;
349        *) AC_MSG_ERROR(bad value ${enableval} for --enable-static-programs) ;;
350      esac],[staticprogs=no])
351 AM_CONDITIONAL(STATIC_PROGRAMS,[test "x$staticprogs" = "xyes"])
352
353
354 CONFIGURE_PART(Audit Compilation Environment)
355
356
357 dnl Check for the compiler and static/shared library creation.
358 AC_PROG_CC
359 AC_PROG_CPP
360 AC_PROG_LIBTOOL
361
362 dnl Try to detect/use GNU features
363 CFLAGS="$CFLAGS -D_GNU_SOURCE"
364
365 dnl which flags does the compiler support?
366 if test "x$GCC" = "xyes"; then
367   for flag in -fno-strict-aliasing -Wall -std=c99 -pedantic -Wundef -Wshadow -Wpointer-arith -Wcast-align -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline -Wold-style-definition -W; do
368     oCFLAGS="$CFLAGS"
369     CFLAGS="$CFLAGS $flag"
370     cachename=rd_cv_gcc_flag_`echo $flag|sed 's/[[^A-Za-z]]/_/g'`
371     AC_CACHE_CHECK([if gcc likes the $flag flag], $cachename,
372        [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[return 0 ]])],[eval $cachename=yes],[eval $cachename=no])])
373     if eval test \$$cachename = no; then
374          CFLAGS="$oCFLAGS"
375     fi
376   done
377 fi
378
379
380
381 AC_SUBST(RRD_DEFAULT_FONT)
382
383 CONFIGURE_PART(Checking for Header Files)
384  
385 dnl Checks for header files.
386 AC_HEADER_STDC
387 AC_HEADER_DIRENT
388 AC_CHECK_HEADERS(features.h sys/stat.h sys/types.h fcntl.h locale.h fp_class.h malloc.h unistd.h ieeefp.h math.h sys/times.h sys/param.h sys/resource.h signal.h float.h stdio.h stdlib.h errno.h string.h ctype.h)
389
390 dnl Checks for typedefs, structures, and compiler characteristics.
391 AC_C_CONST
392 AC_HEADER_TIME
393 AC_STRUCT_TM
394
395 CONFIGURE_PART(Test Library Functions)
396
397 dnl Checks for libraries.
398 AC_CHECK_FUNC(acos, , AC_CHECK_LIB(m, acos))
399
400
401
402 dnl add pic flag in any case this makes sure all our code is relocatable
403 eval `./libtool --config | grep pic_flag`
404 CFLAGS="$CFLAGS $pic_flag"
405
406
407 dnl Checks for library functions.
408 AC_FUNC_STRFTIME
409 AC_FUNC_VPRINTF
410
411 AC_C_BIGENDIAN
412
413 dnl for each function found we get a definition in config.h 
414 dnl of the form HAVE_FUNCTION
415
416 AC_CHECK_FUNCS(tzset fsync mbstowcs opendir readdir chdir chroot getuid setlocale strerror strerror_r snprintf vsnprintf fpclass class fp_class isnan memmove strchr mktime getrusage gettimeofday)
417
418 CONFIGURE_PART(Map/Fadvis/Madvise checking)
419
420 dnl Could use these to know if we need to provide a prototype
421 dnl AC_CHECK_DECLS(fdatasync, [], [], [#include <unistd.h>])
422
423 dnl check for fdatasync. Solaris has fdatasync in the librt
424
425 AC_CHECK_FUNCS(fdatasync, [],  AC_CHECK_LIB(rt, fdatasync, [LIBS="${LIBS} -lrt"; AC_DEFINE(HAVE_FDATASYNC)],[]))
426 dnl if there is no fdatasync we may get lucky with fsync
427 AC_CHECK_FUNCS(fsync)
428
429
430 dnl XXX: dunno about windows.. add AC_CHECK_FUNCS(munmap) there too?
431 if test "x$enable_mmap" = "xyes"; then
432   case "$host" in
433   *cygwin*)
434     # the normal mmap test does not work in cygwin
435     AC_CHECK_FUNCS(mmap)
436     if test "x$ac_cv_func_mmap" = "xyes"; then
437       ac_cv_func_mmap_fixed_mapped=yes
438     fi
439   ;;
440   *)
441     AC_CHECK_HEADERS(sys/mman.h)
442     AC_FUNC_MMAP
443     AC_CHECK_FUNCS(mmap munmap msync)
444     AC_CHECK_DECLS(madvise, [], [], [#ifdef HAVE_SYS_MMAN_H
445                                      # include <sys/mman.h>
446                                      #endif])
447     if test "x$ac_cv_have_decl_madvise" = "xyes";
448     then
449       AC_CHECK_FUNCS(madvise)
450     else
451       AC_CHECK_FUNCS(posix_madvise)
452       if test "x$ac_cv_func_posix_madvise" != "xyes"; then
453         AC_MSG_WARN([madvise() nor posix_madvise() found.])
454       fi
455     fi
456   ;;
457   esac
458   if test "x$ac_cv_func_mmap" != "xyes";
459   then
460     AC_MSG_ERROR([--enable-mmap requested but mmap() was not detected])
461 dnl enable_mmap="no"
462   fi
463 fi
464
465 dnl can we use posix_fadvise
466 AC_CHECK_DECLS(posix_fadvise, [], [], [#define _XOPEN_SOURCE 600
467 #include <fcntl.h>])
468 AC_CHECK_FUNCS(posix_fadvise)
469
470 CONFIGURE_PART(Libintl Processing)
471
472
473 dnl gettext
474 GETTEXT_PACKAGE=rrdtool
475 AC_SUBST(GETTEXT_PACKAGE)
476 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package])
477
478 AM_GLIB_GNU_GETTEXT()
479
480 AC_ARG_ENABLE(libintl,[  --disable-libintl        i18n support (libintl)],
481 [],[enable_libintl=yes])
482
483 if test x$enable_libintl = xyes; then
484   IT_PROG_INTLTOOL([0.35.0],[no-xml])
485 fi
486
487 if test x$enable_libintl = xyes -a x$MSGFMT = xno; then
488   AC_MSG_WARN(I could not find msgfmt. Diabeling libintl build.)
489   enable_libintl=no
490 fi
491
492 if test x$enable_libintl = xyes; then
493   AC_CHECK_HEADERS(libintl.h,[],[AC_MSG_RESULT(disabeling libintl build); enable_libintl=no])
494 fi
495
496 if test x$enable_libintl = xyes ; then
497   dnl it seems bsd synstems need to link against libintl
498   dnl when compiling rrdupdate. lets check        
499   AC_CHECK_LIB(intl, libintl_gettext,[LIB_LIBINTL="-lintl"])
500 fi
501
502 dnl use for linking rrdupdate
503 AC_SUBST(LIB_LIBINTL)
504
505 dnl do not touch the po stuff if we are not going to build intl
506 AM_CONDITIONAL(BUILD_LIBINTL,[test x$enable_libintl = xyes])
507
508 if test x$enable_libintl = xyes; then
509    AC_DEFINE([BUILD_LIBINTL], [], [Use this in code sections to mark them for libintl build])
510 fi
511
512 CONFIGURE_PART(IEEE Math Checks)
513  
514
515 dnl actual code to check if this works
516 AC_CHECK_FUNCS(fpclassify, ,
517   [AC_MSG_CHECKING(for fpclassify with <math.h>)
518     AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>
519 volatile int x;volatile float f; ]], [[x = fpclassify(f)]])],[AC_MSG_RESULT(yes)
520       AC_DEFINE(HAVE_FPCLASSIFY)],[AC_MSG_RESULT(no)])])
521
522 AC_CHECK_FUNCS(isinf, ,
523   [AC_MSG_CHECKING(for isinf with <math.h>)
524     AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>
525 volatile int x;volatile float f;  ]], [[x = isinf(f)]])],[AC_MSG_RESULT(yes)
526       AC_DEFINE(HAVE_ISINF)],[AC_MSG_RESULT(no)])])
527
528 dnl finite is BSD, isfinite is C99, so prefer the latter
529 AC_CACHE_CHECK([whether isfinite is broken],[have_broken_isfinite],[
530 AC_TRY_RUN([
531 #ifdef HAVE_MATH_H
532 #include <math.h>
533 #endif
534 #ifdef HAVE_FLOAT_H
535 #include <float.h>
536 #endif
537 int main ()
538 {
539 #ifdef isfinite
540 #ifdef LDBL_MAX
541   if (!isfinite(LDBL_MAX)) return 1;
542 #endif
543 #ifdef DBL_MAX
544   if (!isfinite(DBL_MAX)) return 1;
545 #endif
546 #endif
547 return 0;
548 }],[
549 have_broken_isfinite=no],have_broken_isfinite=yes,[
550 case "${target}" in
551   hppa*-*-hpux*) have_broken_isfinite=yes ;;
552   sparc-sun-solaris2.8) have_broken_isfinite=yes ;;
553   *) have_broken_isfinite=no ;;
554 esac])
555 ])
556 if test "x$have_broken_isfinite" = "xno"; then
557   AC_DEFINE(HAVE_ISFINITE)
558 else
559 AC_CHECK_FUNCS(finite,[],
560   [AC_CHECK_FUNCS(isfinite,[],
561       [AC_MSG_CHECKING(for isfinite with <math.h>)
562        AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>
563 volatile int x;volatile float f;  ]],[[x = isfinite(f)]])],[AC_MSG_RESULT(yes)
564                 AC_DEFINE(HAVE_ISFINITE)],[AC_MSG_RESULT(no)])])])
565 fi
566
567 AC_FULL_IEEE
568
569 CONFIGURE_PART(Resolve Portability Issues)
570
571 dnl what does realloc do if it gets called with a NULL pointer
572
573 AC_CACHE_CHECK([if realloc can deal with NULL], rd_cv_null_realloc,
574 [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdlib.h>
575               int main(void){
576               char *x = NULL;
577               x = realloc (x,10);
578               if (x==NULL) return 1;
579               return 0;
580              }]])],[rd_cv_null_realloc=yes],[rd_cv_null_realloc=nope],[:])])
581
582 if test x"$rd_cv_null_realloc" = xnope; then
583 AC_DEFINE(NO_NULL_REALLOC)
584 fi
585
586 AC_LANG_PUSH(C)
587 dnl solaris has some odd defines it needs in order to propperly compile ctime_r
588 AC_MSG_CHECKING([if ctime_r need special care to act posixly correct])
589 AC_LINK_IFELSE(
590     AC_LANG_PROGRAM(
591            [[#include <time.h>]],
592            [[ctime_r(NULL,NULL,0)]]
593                    ),
594     [ CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
595       AC_LINK_IFELSE(
596           AC_LANG_PROGRAM(
597                 [[#include <time.h>]],
598                 [[ctime_r(NULL,NULL)]]
599                          ),
600           [AC_MSG_RESULT([yes, this seems to be solaris style])],
601           [AC_MSG_ERROR([Can't figure how to compile ctime_r])]
602       )
603     ],  
604     [ AC_LINK_IFELSE(
605           AC_LANG_PROGRAM(
606                 [[#include <time.h>]],
607                 [[ctime_r(NULL,NULL)]]
608                          ),
609           [AC_MSG_RESULT(no)],
610           [AC_MSG_ERROR([Can't figure how to compile ctime_r])]
611       )
612     ]  
613 )
614 AC_LANG_POP(C)
615
616 dnl Check for pthreads
617 dnl http://autoconf-archive.cryp.to/acx_pthread.m4
618  
619 AC_SUBST(MULTITHREAD_CFLAGS)
620 AC_SUBST(MULTITHREAD_LDFLAGS)
621
622 if test $enable_pthread != no; then 
623  ACX_PTHREAD([
624     MULTITHREAD_CFLAGS=$PTHREAD_CFLAGS
625     MULTITHREAD_LDFLAGS=$PTHREAD_LIBS
626              ],
627              [])
628 fi
629
630 dnl since we use lots of *_r functions all over the code we better
631 dnl make sure they are known
632
633 if test  "x$x_rflag" != "xno"; then
634    CPPFLAGS="$CPPFLAGS $x_rflag"
635 fi
636
637 AM_CONDITIONAL(BUILD_MULTITHREAD,[test $enable_pthread != no])
638
639 AC_LANG_PUSH(C)
640 dnl see if we have to include malloc/malloc.h
641 AC_MSG_CHECKING([do we need malloc/malloc.h])
642 AC_LINK_IFELSE(
643     AC_LANG_PROGRAM(
644            [[#include <stdlib.h>]],
645            [[malloc(1)]]
646                    ),
647     [ AC_MSG_RESULT([nope, works out of the box]) ],
648     [ AC_LINK_IFELSE(
649           AC_LANG_PROGRAM(
650                 [[#include <stdlib.h>
651                   #include <malloc/malloc.h>]],
652                 [[malloc(1)]]
653                          ),
654           [AC_DEFINE(NEED_MALLOC_MALLOC_H)
655            AC_MSG_RESULT([yes we do])],
656           [AC_MSG_ERROR([Can not figure how to compile malloc])]
657       )
658     ]  
659 )
660 AC_LANG_POP(C)
661
662 CONFIGURE_PART(Find 3rd-Party Libraries)
663
664
665 AM_CONDITIONAL(BUILD_RRDCGI,[test $enable_rrdcgi != no])
666
667
668 CORE_LIBS="$LIBS"
669
670 dnl EX_CHECK_ALL(z,          zlibVersion,               zlib.h,                 zlib,        1.2.3,  http://www.gzip.org/zlib/, "")
671 dnl EX_CHECK_ALL(png,        png_access_version_number, png.h,                  libpng,      1.2.10,  http://prdownloads.sourceforge.net/libpng/, "")
672 dnl EX_CHECK_ALL(freetype,   FT_Init_FreeType,          ft2build.h,             freetype2,   2.1.10,  http://prdownloads.sourceforge.net/freetype/, /usr/include/freetype2)
673 dnl EX_CHECK_ALL(fontconfig, FcInit,                    fontconfig.h,           fontconfig,  2.3.1,  http://fontconfig.org/release/, /usr/include)
674 EX_CHECK_ALL(cairo,      cairo_font_options_create,     cairo.h,                cairo-png,   1.4.6,  http://cairographics.org/releases/, "")
675 EX_CHECK_ALL(cairo,      cairo_svg_surface_create,      cairo-svg.h,            cairo-svg,   1.4.6,  http://cairographics.org/releases/, "")
676 EX_CHECK_ALL(cairo,      cairo_pdf_surface_create,      cairo-pdf.h,            cairo-pdf,   1.4.6,  http://cairographics.org/releases/, "")
677 EX_CHECK_ALL(cairo,      cairo_ps_surface_create,       cairo-ps.h,             cairo-ps,    1.4.6,  http://cairographics.org/releases/, "")
678 dnl EX_CHECK_ALL(glib-2.0,   glib_check_version,        glib.h,                 glib-2.0,    2.12.12, ftp://ftp.gtk.org/pub/glib/2.12/, "")
679 EX_CHECK_ALL(pango-1.0,  pango_cairo_context_set_font_options,  pango/pango.h,  pangocairo,  1.17,    http://ftp.gnome.org/pub/GNOME/sources/pango/1.17, "")
680 EX_CHECK_ALL(xml2,       xmlParseFile,                  libxml/parser.h,        libxml-2.0,        2.6.31,  http://xmlsoft.org/downloads.html, /usr/include/libxml2)
681
682 if test "$EX_CHECK_ALL_ERR" = "YES"; then
683   AC_MSG_ERROR([Please fix the library issues listed above and try again.])
684 fi
685
686 ALL_LIBS="$LIBS"
687 LIBS=
688
689 AC_SUBST(CORE_LIBS)
690 AC_SUBST(ALL_LIBS)
691
692 CONFIGURE_PART(Prep for Building Language Bindings)
693   
694 dnl Check for Perl and friends
695 PATH=$PATH:/usr/perl5/bin
696 export PATH
697 AC_PATH_PROG(PERL, perl, no)
698 AC_PATH_PROG(POD2MAN, pod2man, no)
699 AC_PATH_PROG(POD2HTML, pod2html, no)
700
701
702 AC_ARG_ENABLE(perl,[  --disable-perl          do not build the perl modules],
703 [],[enable_perl=yes])
704
705
706 AC_ARG_VAR(PERLCC, [[] C compiler for Perl modules])
707 AC_ARG_VAR(PERLCCFLAGS, [[] CC flags for Perl modules])
708 AC_ARG_VAR(PERLLD, [[same as PERLCC] Linker for Perl modules])
709 AC_ARG_VAR(PERLLDFLAGS, [[] LD flags for Perl modules])
710
711 if test "x$PERL" = "xno" -o  x$enable_perl = xno; then
712         COMP_PERL=
713 else
714         COMP_PERL="perl_piped perl_shared"
715         AC_MSG_CHECKING(for the perl version you are running)
716         PERL_VERSION=`$PERL -MConfig -e 'print $Config{version}'`
717         AC_MSG_RESULT($PERL_VERSION)
718         if test -z "$PERLCC"; then
719             AC_MSG_CHECKING(for the C compiler perl wants to use to build its modules)
720             perlcc=`$PERL -MConfig -e 'print $Config{cc}'`
721             AC_MSG_RESULT($perlcc)
722             if test ! -x "$perlcc"; then
723                 AC_PATH_PROG(PERL_CC, ${perlcc}, no)
724                 if test "$PERL_CC" = "no"; then
725                     AC_MSG_WARN([
726 I would not find the Compiler ($perlcc) that was originally used to compile
727 your perl binary. You should either make sure that this compiler is
728 available on your system, pick an other compiler and set PERLCC
729 appropriately, or use a different perl setup that was compiled locally.
730
731 I will disable the compilation of the RRDs perl module for now.
732 ])
733                     COMP_PERL="perl_piped"
734                 fi
735             fi    
736         fi
737 fi
738
739 AC_MSG_CHECKING(Perl Modules to build)
740 AC_MSG_RESULT(${COMP_PERL:-No Perl Modules will be built})
741
742 # Options to pass when configuring perl module
743 ppref=$prefix
744 test "$ppref" = "NONE" && ppref=$ac_default_prefix
745
746 PERL_MAKE_OPTIONS="PREFIX=$ppref LIB=$ppref/lib/perl/$PERL_VERSION"
747
748 dnl pass additional perl options when generating Makefile from Makefile.PL
749 AC_ARG_ENABLE(perl-site-install,
750 [  --enable-perl-site-install   by default the rrdtool perl modules are installed
751                           together with rrdtool in $prefix/lib/perl. You have to
752                           put a 'use lib qw($prefix/lib/perl)' into your scripts
753                           when you want to use them. When you set this option
754                           the perl modules will get installed wherever
755                           your perl setup thinks it is best.],
756 [PERL_MAKE_OPTIONS=],[])
757
758 if test ! -z "$PERLCC"; then
759    PERL_MAKE_OPTIONS="$PERL_MAKE_OPTIONS CC=$PERLCC"
760
761    if test ! -z "$PERLCCFLAGS"; then
762        PERL_MAKE_OPTIONS="$PERL_MAKE_OPTIONS CCFLAGS=$PERLCCFLAGS"
763    fi
764    
765    if test -z "$PERLLD"; then
766        PERLLD=$PERLCC
767    fi
768    PERL_MAKE_OPTIONS="$PERL_MAKE_OPTIONS LD=$PERLLD"
769   
770    if test ! -z "$PERLLDFLAGS"; then
771        PERL_MAKE_OPTIONS="$PERL_MAKE_OPTIONS LDFLAGS=$PERLLDFLAGS"
772    fi
773 fi
774         
775 AC_ARG_WITH(perl-options,
776 [  --with-perl-options=[OPTIONS]  options to pass on command-line when
777                           generating Makefile from Makefile.PL. If you set this
778                           option, interesting things may happen unless you know
779                           what you are doing!],
780 [PERL_MAKE_OPTIONS=$withval])
781
782 AC_SUBST(PERL_MAKE_OPTIONS)
783 AC_SUBST(PERL)
784 AC_SUBST(COMP_PERL)
785 AC_SUBST(PERL_VERSION)
786
787 dnl Check for Ruby.
788 AC_PATH_PROG(RUBY, ruby, no)
789
790 AC_ARG_ENABLE(ruby,[  --disable-ruby          do not build the ruby modules],
791 [],[enable_ruby=yes])
792
793 AC_MSG_CHECKING(if ruby modules can be built)
794
795 if test "x$RUBY" = "xno" -o  x$enable_ruby = xno; then
796         COMP_RUBY=
797         AC_MSG_RESULT(No .. Ruby not found or disabled)
798 else
799         if $RUBY -e 'require "mkmf"' >/dev/null 2>&1; then
800                 COMP_RUBY="ruby"
801                 AC_MSG_RESULT(YES)
802         else
803                 COMP_RUBY=
804                 AC_MSG_RESULT(Ruby found but mkmf is missing! Install the -dev package)         
805         fi                              
806 fi
807
808
809 dnl pass additional ruby options when generating Makefile from Makefile.PL
810 AC_ARG_ENABLE(ruby-site-install,
811 [  --enable-ruby-site-install   by default the rrdtool ruby modules are installed
812                           together with rrdtool in $prefix/lib/ruby. You have to
813                           add $prefix/lib/ruby/$ruby_version/$sitearch to you $: variable
814                           for ruby to find the RRD.so file.],
815 [RUBY_MAKE_OPTIONS=],[RUBY_MAKE_OPTIONS="sitedir="'$(DESTDIR)'"$prefix/lib/ruby"])
816
817     
818 AC_ARG_WITH(ruby-options,
819 [  --with-ruby-options=[OPTIONS]  options to pass on command-line when
820                           generating Makefile from extconf.rb. If you set this
821                           option, interesting things may happen unless you know
822                           what you are doing!],
823 [RUBY_MAKE_OPTIONS=$withval])
824
825 AC_SUBST(RUBY_MAKE_OPTIONS)
826 AC_SUBST(RUBY)
827 AC_SUBST(COMP_RUBY)
828
829
830 enable_tcl_site=no
831
832 AC_ARG_ENABLE(tcl,[  --disable-tcl           do not build the tcl modules],
833 [],[enable_tcl=yes])
834
835 if test  "$enable_tcl" = "yes"; then
836   dnl Check for Tcl.
837   withval=""
838   AC_ARG_WITH(tcllib,[  --with-tcllib=DIR       location of the tclConfig.sh])
839   enable_tcl=no
840   for dir in $withval /usr/lib /usr/local/lib /usr/lib/tcl8.4 /usr/lib/tcl8.3 ; do
841     AC_MSG_CHECKING(for tclConfig.sh in $dir)
842     if test -f "$dir/tclConfig.sh" ; then
843         tcl_config=$dir/tclConfig.sh
844         enable_tcl=yes
845         AC_MSG_RESULT(yes)
846         break
847     else
848         AC_MSG_RESULT(no)
849     fi
850   done
851
852   if test "$enable_tcl" = "no"; then
853         AC_MSG_WARN([tclConfig.sh not found - Tcl interface will not be built])
854   else
855         . $tcl_config
856         TCL_PACKAGE_DIR="$TCL_PACKAGE_PATH/tclrrd$VERSION"
857         if test -n "$TCL_INC_DIR"; then
858           TCL_INCLUDE_SPEC="$TCL_INCLUDE_SPEC -I$TCL_INC_DIR"
859         fi
860   fi
861   AC_ARG_ENABLE(tcl,[  --enable-tcl-site        install the tcl extension in the tcl tree],
862   [],[enable_tcl_site=yes])
863
864 fi
865
866 AM_CONDITIONAL(BUILD_TCL, test "$enable_tcl" = "yes" )
867 AM_CONDITIONAL(BUILD_TCL_SITE, test "$enable_tcl_site" = "yes" )
868
869
870 AC_SUBST(TCL_PREFIX)
871 AC_SUBST(TCL_SHLIB_CFLAGS)
872 AC_SUBST(TCL_SHLIB_LD)
873 AC_SUBST(TCL_SHLIB_SUFFIX)
874 AC_SUBST(TCL_PACKAGE_PATH)
875 AC_SUBST(TCL_LD_SEARCH_FLAGS)
876 AC_SUBST(TCL_STUB_LIB_SPEC)
877 AC_SUBST(TCL_VERSION)
878 AC_SUBST(TCL_PACKAGE_DIR)
879 AC_SUBST(TCL_INCLUDE_SPEC)
880
881 AC_ARG_ENABLE(python,[  --disable-python        do not build the python modules],
882 [],[enable_python=yes])
883
884 if test  "$enable_python" = "yes"; then
885 dnl Check for python
886 AM_PATH_PYTHON(2.3,[],[enable_python=no])
887 AM_CHECK_PYTHON_HEADERS(,[enable_python=no;AC_MSG_WARN(could not find Python headers)])
888 fi
889
890 if test  x$enable_python = xno; then
891         COMP_PYTHON=
892 else
893         COMP_PYTHON="python"
894 fi
895
896 AC_SUBST(COMP_PYTHON)
897
898 dnl Check for nroff
899 AC_PATH_PROGS(NROFF, gnroff nroff)
900 AC_PATH_PROGS(TROFF, groff troff)
901
902 AC_ARG_VAR(RRDDOCDIR, [[DATADIR/doc/PACKAGE-VERSION] Documentation directory])
903 if test -z "$RRDDOCDIR"; then
904    RRDDOCDIR='${datadir}/doc/${PACKAGE}-${VERSION}'; fi
905
906
907 CONFIGURE_PART(Apply Configuration Information)
908  
909 AC_CONFIG_FILES([examples/shared-demo.pl])
910 AC_CONFIG_FILES([examples/piped-demo.pl])
911 AC_CONFIG_FILES([examples/stripes.pl])
912 AC_CONFIG_FILES([examples/bigtops.pl])
913 AC_CONFIG_FILES([examples/minmax.pl])
914 AC_CONFIG_FILES([examples/4charts.pl])
915 AC_CONFIG_FILES([examples/perftest.pl])
916 AC_CONFIG_FILES([examples/Makefile])
917 AC_CONFIG_FILES([doc/Makefile])
918 AC_CONFIG_FILES([po/Makefile.in])
919 AC_CONFIG_FILES([src/Makefile])
920 AC_CONFIG_FILES([bindings/Makefile])
921 AC_CONFIG_FILES([bindings/tcl/Makefile])
922 AC_CONFIG_FILES([bindings/tcl/ifOctets.tcl])
923 AC_CONFIG_FILES([Makefile])          
924
925 AC_CONFIG_COMMANDS([default],[[ chmod +x examples/*.pl]],[[]])
926 AC_OUTPUT
927
928 AC_MSG_CHECKING(in)
929 AC_MSG_RESULT(and out again)
930
931 echo $ECHO_N "ordering CD from http://tobi.oetiker.ch/wish $ECHO_C" 1>&6
932 sleep 1
933 echo $ECHO_N ".$ECHO_C" 1>&6
934 sleep 1
935 echo $ECHO_N ".$ECHO_C" 1>&6
936 sleep 1
937 echo $ECHO_N ".$ECHO_C" 1>&6
938 sleep 1
939 echo $ECHO_N ".$ECHO_C" 1>&6
940 sleep 1
941 AC_MSG_RESULT([ just kidding ;-)])
942 echo
943 echo "----------------------------------------------------------------"
944 echo "Config is DONE!"
945 echo
946 echo "          With MMAP IO: $enable_mmap"
947 echo "       Static programs: $staticprogs"
948 echo "          Perl Modules: $COMP_PERL"
949 echo "           Perl Binary: $PERL"
950 echo "          Perl Version: $PERL_VERSION"
951 echo "          Perl Options: $PERL_MAKE_OPTIONS"
952 echo "          Ruby Modules: $COMP_RUBY"
953 echo "           Ruby Binary: $RUBY"
954 echo "          Ruby Options: $RUBY_MAKE_OPTIONS"
955 echo "    Build Tcl Bindings: $enable_tcl"
956 echo " Build Python Bindings: $enable_python"
957 echo "          Build rrdcgi: $enable_rrdcgi"
958 echo "       Build librrd MT: $enable_pthread"
959 echo "     Link with libintl: $enable_libintl"
960 echo
961 echo "             Libraries: $ALL_LIBS"
962 echo
963 echo "Type 'make' to compile the software and use 'make install' to "
964 echo "install everything to: $prefix."
965 echo 
966 echo "       ... that wishlist is NO JOKE. If you find RRDtool useful"
967 echo "make me happy. Go to http://tobi.oetiker.ch/wish and"
968 echo "place an order."
969 echo 
970 echo "                               -- Tobi Oetiker <tobi@oetiker.ch>"
971 echo "----------------------------------------------------------------"