- Don't use "AC_CHECK_FUNCS(strnlen)".
authortomo <tomo>
Wed, 8 Feb 2012 16:11:39 +0000 (16:11 +0000)
committertomo <tomo>
Wed, 8 Feb 2012 16:11:39 +0000 (16:11 +0000)
- When $ac_cv_func_strnlen_working = "yes", define HAVE_STRNLEN.

configure.in

index 8ac29b6..f9b2ce7 100644 (file)
@@ -61,8 +61,9 @@ AC_C_INLINE
 # Checks for library functions.
 AC_FUNC_ALLOCA
 AC_FUNC_STRNLEN
 # Checks for library functions.
 AC_FUNC_ALLOCA
 AC_FUNC_STRNLEN
-
-AC_CHECK_FUNCS(strnlen)
+if test "x$ac_cv_func_strnlen_working" = "xyes"; then
+    AC_DEFINE([HAVE_STRNLEN])
+fi
 
 AC_CONFIG_FILES([Makefile])
 AC_OUTPUT
 
 AC_CONFIG_FILES([Makefile])
 AC_OUTPUT