From: oetiker Date: Sat, 12 Apr 2008 09:29:10 +0000 (+0000) Subject: alter order of header inclusion for FreeBSD 4.8 compatibility X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=1b2b47d5fd5474e35ae15678f6eefe6f4ee45795;p=rrdtool.git alter order of header inclusion for FreeBSD 4.8 compatibility git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@1324 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/MakeMakefile b/MakeMakefile index ba642cf..057c629 100755 --- a/MakeMakefile +++ b/MakeMakefile @@ -33,7 +33,7 @@ then else automake=automake-1.9 aclocal="aclocal-1.9" - for d in /usr/pack/automake-1.9.5-to/share/aclocal-1.9 /usr/share/aclocal-1.9 /usr/pack/rrdtool-1.3svn-to/share/aclocal /usr/pack/intltool-0.37.0-to/share/aclocal ; do + for d in /usr/pack/automake-1.9.5-to/share/aclocal-1.9 /usr/share/aclocal-1.9 /usr/share/aclocal /usr/pack/rrdtool-1.3svn-to/share/aclocal /usr/pack/intltool-0.37.0-to/share/aclocal ; do [ -d $d ] && aclocal="$aclocal -I $d" done fi diff --git a/configure.ac b/configure.ac index 48c03c6..a0bd955 100644 --- a/configure.ac +++ b/configure.ac @@ -68,6 +68,11 @@ AH_BOTTOM([ # include #endif +/* FreeBSD 4.8 wants this included BEFORE sys/types.h */ +#ifdef HAVE_SYS_MMAN_H +# include +#endif + #ifdef HAVE_SYS_TYPES_H # include #endif @@ -91,10 +96,6 @@ AH_BOTTOM([ # include #endif -#ifdef HAVE_SYS_MMAN_H -# include -#endif - #if !defined HAVE_MADVISE && defined HAVE_POSIX_MADVISE /* use posix_madvise family */ # define madvise posix_madvise