The variable name is "max_response_timeouts"
[freeradius.git] / acinclude.m4
index 592b584..9e42ff2 100644 (file)
@@ -217,14 +217,30 @@ AC_DEFUN([FR_SMART_CHECK_INCLUDE], [
 ac_safe=`echo "$1" | sed 'y%./+-%__pm%'`
 old_CPPFLAGS="$CPPFLAGS"
 smart_include=
-smart_include_dir=
+dnl #  The default directories we search in (in addition to the compilers search path)
+smart_include_dir="/usr/local/include /opt/include"
+
+dnl #  Our local versions
+_smart_try_dir=
+_smart_include_dir=
+
+dnl #  Add variants with the different prefixes and one with no prefix
+for _prefix in $smart_prefix ""; do
+  for _dir in $smart_try_dir; do
+    _smart_try_dir="${_smart_try_dir} ${_dir}/${_prefix}"
+  done
+
+  for _dir in $smart_include_dir; do
+    _smart_include_dir="${_smart_include_dir} ${_dir}/${_prefix}"
+  done
+done
 
 dnl #
-dnl #  Try first any user-specified directory, otherwise we may pick up
+dnl #  Try any user-specified directory first otherwise we may pick up
 dnl #  the wrong version.
 dnl #
-if test "x$smart_try_dir" != "x"; then
-  for try in $smart_try_dir; do
+if test "x$_smart_try_dir" != "x"; then
+  for try in $_smart_try_dir; do
     AC_MSG_CHECKING([for $1 in $try])
     CPPFLAGS="-isystem $try $old_CPPFLAGS"
     AC_TRY_COMPILE([$2
@@ -244,30 +260,58 @@ if test "x$smart_try_dir" != "x"; then
 fi
 
 dnl #
-dnl #  Try using the default includes.
+dnl #  Try using the default includes (with prefixes).
 dnl #
 if test "x$smart_include" = "x"; then
-  AC_MSG_CHECKING([for $1])
-  AC_TRY_COMPILE([$2
-                 #include <$1>],
-                [int a = 1;],
-                [
-                  smart_include=" "
-                  AC_MSG_RESULT(yes)
-                  break
-                ],
-                [
-                  smart_include=
-                  AC_MSG_RESULT(no)
-                ])
+  for _prefix in $smart_prefix; do
+    AC_MSG_CHECKING([for ${_prefix}/$1])
+
+    AC_TRY_COMPILE([$2
+                   #include <$1>],
+                  [int a = 1;],
+                  [
+                    smart_include="-isystem ${_prefix}/"
+                    AC_MSG_RESULT(yes)
+                    break
+                  ],
+                  [
+                    smart_include=
+                    AC_MSG_RESULT(no)
+                  ])
+  done
+fi
+
+dnl #
+dnl #  Try using the default includes (without prefixes).
+dnl #
+if test "x$smart_include" = "x"; then
+    AC_MSG_CHECKING([for $1])
+
+    AC_TRY_COMPILE([$2
+                   #include <$1>],
+                  [int a = 1;],
+                  [
+                    smart_include=" "
+                    AC_MSG_RESULT(yes)
+                    break
+                  ],
+                  [
+                    smart_include=
+                    AC_MSG_RESULT(no)
+                  ])
 fi
 
 dnl #
 dnl #  Try to guess possible locations.
 dnl #
 if test "x$smart_include" = "x"; then
-  FR_LOCATE_DIR(smart_include_dir,$1)
-  for try in $smart_include_dir /usr/local/include /opt/include; do
+
+  for prefix in $smart_prefix; do
+    FR_LOCATE_DIR(_smart_include_dir,"${_prefix}/${1}")
+  done
+  FR_LOCATE_DIR(_smart_include_dir, $1)
+
+  for try in $_smart_include_dir; do
     AC_MSG_CHECKING([for $1 in $try])
     CPPFLAGS="-isystem $try $old_CPPFLAGS"
     AC_TRY_COMPILE([$2
@@ -294,6 +338,12 @@ if test "x$smart_include" != "x"; then
   CPPFLAGS="$smart_include $old_CPPFLAGS"
   SMART_CPPFLAGS="$smart_include $SMART_CPPFLAGS"
 fi
+
+dnl #
+dnl #  Consume prefix, it's not likely to be used
+dnl #  between multiple calls.
+dnl #
+smart_prefix=
 ])
 
 dnl #######################################################################
@@ -459,48 +509,65 @@ AC_DEFUN([VL_LIB_READLINE], [
 ])dnl
 
 dnl #
-dnl #  Figure out which storage class specifier for Thread Local Storage is supported by the compiler
+dnl #  Check if we have the choose expr builtin
 dnl #
 AC_DEFUN([FR_HAVE_BUILTIN_CHOOSE_EXPR],
 [
-dnl #
-dnl #  See if the compilation works with __thread, for thread-local storage
-dnl #
   AC_MSG_CHECKING(for __builtin_choose_expr support in compiler)
   AC_RUN_IFELSE(
     [AC_LANG_SOURCE(
       [[
         int main(int argc, char **argv) {
-               return __builtin_choose_expr(0, 1, 0);
+          return __builtin_choose_expr(0, 1, 0);
         }
       ]])
-    ],[have_builtin=yes],[have_builtin=no],[have_builtin=no])
-  AC_MSG_RESULT($have_builtin)
-  if test "x$have_builtin" = "xyes"; then
+    ],[have_builtin_choose_expr=yes],[have_builtin_choose_expr=no],[have_builtin_choose_expr=no])
+  AC_MSG_RESULT($have_builtin_choose_expr)
+  if test "x$have_builtin_choose_expr" = "xyes"; then
     AC_DEFINE([HAVE_BUILTIN_CHOOSE_EXPR],1,[Define if the compiler supports __builtin_choose_expr])
   fi
 ])
 
 dnl #
-dnl #  Figure out which storage class specifier for Thread Local Storage is supported by the compiler
+dnl #  Check if we have the types compatible p builtin
 dnl #
 AC_DEFUN([FR_HAVE_BUILTIN_TYPES_COMPATIBLE_P],
 [
+  AC_MSG_CHECKING(for __builtin_types_compatible_p support in compiler)
+  AC_RUN_IFELSE(
+    [AC_LANG_SOURCE(
+      [[
+        int main(int argc, char **argv) {
+          return !(__builtin_types_compatible_p(char *, char *));
+        }
+      ]])
+    ],[have_builtin_types_compatible_p=yes],[have_builtin_types_compatible_p=no],[have_builtin_types_compatible_p=no])
+  AC_MSG_RESULT($have_builtin_types_compatible_p)
+  if test "x$have_builtin_types_compatible_p" = "xyes"; then
+    AC_DEFINE([HAVE_BUILTIN_TYPES_COMPATIBLE_P],1,[Define if the compiler supports __builtin_types_compatible_p])
+  fi
+])
+
+dnl #
+dnl #  Check if we have the bwsap64 builtin
+dnl #
+AC_DEFUN([FR_HAVE_BUILTIN_BSWAP_64],
+[
 dnl #
 dnl #  See if the compilation works with __thread, for thread-local storage
 dnl #
-  AC_MSG_CHECKING(for __builtin_types_compatible_p support in compiler)
+  AC_MSG_CHECKING(for __builtin_bswap64 support in compiler)
   AC_RUN_IFELSE(
     [AC_LANG_SOURCE(
       [[
         int main(int argc, char **argv) {
-               return !(__builtin_types_compatible_p(char *, char *));
+          return (__builtin_bswap64(0));
         }
       ]])
-    ],[have_builtin=yes],[have_builtin=no],[have_builtin=no])
-  AC_MSG_RESULT($have_builtin)
-  if test "x$have_builtin" = "xyes"; then
-    AC_DEFINE([HAVE_BUILTIN_TYPES_COMPATIBLE_P],1,[Define if the compiler supports __builtin_types_compatible_p])
+    ],[have_builtin_bswap64=yes],[have_builtin_bswap64=no],[have_builtin_bswap64=no])
+  AC_MSG_RESULT($have_builtin_bswap64)
+  if test "x$have_builtin_bswap64" = "xyes"; then
+    AC_DEFINE([HAVE_BUILTIN_BSWAP_64],1,[Define if the compiler supports __builtin_types_compatible_p])
   fi
 ])