From 646c75def2845d51746132c8e0f12bc6ff954ff2 Mon Sep 17 00:00:00 2001 From: oetiker Date: Thu, 24 May 2007 08:26:39 +0000 Subject: [PATCH] use proper preprocessor directives for the config-checks. -- tobi git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@1083 a5681a0c-68f1-0310-ab6d-d61299d08faa --- configure.ac | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/configure.ac b/configure.ac index 636ae65..e508eb3 100644 --- a/configure.ac +++ b/configure.ac @@ -54,15 +54,15 @@ AH_TOP([ AH_BOTTOM([ /* make sure that we pickup the correct stuff from all headers */ #define _XOPEN_SOURCE 600 -#if HAVE_FEATURES_H +#ifdef HAVE_FEATURES_H # include #endif -#if HAVE_SYS_TYPES_H +#ifdef HAVE_SYS_TYPES_H # include #endif -#if HAVE_SYS_PARAM_H +#ifdef HAVE_SYS_PARAM_H # include #endif #ifndef MAXPATH @@ -77,11 +77,11 @@ AH_BOTTOM([ # endif #endif -#if HAVE_ERRNO_H +#ifdef HAVE_ERRNO_H # include #endif -#if HAVE_SYS_MMAN_H +#ifdef HAVE_SYS_MMAN_H # include #endif #if !defined HAVE_MADVISE && defined HAVE_POSIX_MADVISE @@ -97,7 +97,7 @@ AH_BOTTOM([ # define USE_MADVISE 1 #endif -#if HAVE_SYS_STAT_H +#ifdef HAVE_SYS_STAT_H # include #endif @@ -106,26 +106,26 @@ AH_BOTTOM([ #include #endif -#if HAVE_UNISTD_H +#ifdef HAVE_UNISTD_H # include #endif -#if TIME_WITH_SYS_TIME +#ifdef TIME_WITH_SYS_TIME # include # include #else -# if HAVE_SYS_TIME_H +# ifdef HAVE_SYS_TIME_H # include # else # include # endif #endif -#if HAVE_SYS_TIMES_H +#ifdef HAVE_SYS_TIMES_H # include #endif -#if HAVE_SYS_RESOURCE_H +#ifdef HAVE_SYS_RESOURCE_H # include #if (defined(__svr4__) && defined(__sun__)) /* Solaris headers (pre 2.6) don't have a getrusage prototype. @@ -162,31 +162,31 @@ char *strchr (), *strrchr (); # include #endif -#if HAVE_STDIO_H +#ifdef HAVE_STDIO_H # include #endif -#if HAVE_STDLIB_H +#ifdef HAVE_STDLIB_H # include #endif -#if HAVE_CTYPE_H +#ifdef HAVE_CTYPE_H # include #endif -#if HAVE_DIRENT_H +#ifdef HAVE_DIRENT_H # include # define NAMLEN(dirent) strlen((dirent)->d_name) #else # define dirent direct # define NAMLEN(dirent) (dirent)->d_namlen -# if HAVE_SYS_NDIR_H +# ifdef HAVE_SYS_NDIR_H # include # endif -# if HAVE_SYS_DIR_H +# ifdef HAVE_SYS_DIR_H # include # endif -# if HAVE_NDIR_H +# ifdef HAVE_NDIR_H # include # endif #endif @@ -383,7 +383,7 @@ if test "x$enable_mmap" = "xyes"; then AC_CHECK_HEADERS(sys/mman.h) AC_FUNC_MMAP AC_CHECK_FUNCS(mmap munmap) - AC_CHECK_DECLS(madvise, [], [], [#if HAVE_SYS_MMAN_H + AC_CHECK_DECLS(madvise, [], [], [#ifdef HAVE_SYS_MMAN_H # include #endif]) if test "x$ac_cv_have_decl_madvise" = "xyes"; -- 2.11.0