projects
/
chise
/
concord.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
077e9d9
)
- Don't use "AC_CHECK_FUNCS(strnlen)".
author
tomo
<tomo>
Wed, 8 Feb 2012 16:11:39 +0000
(16:11 +0000)
committer
tomo
<tomo>
Wed, 8 Feb 2012 16:11:39 +0000
(16:11 +0000)
- When $ac_cv_func_strnlen_working = "yes", define HAVE_STRNLEN.
configure.in
patch
|
blob
|
history
diff --git
a/configure.in
b/configure.in
index
8ac29b6
..
f9b2ce7
100644
(file)
--- a/
configure.in
+++ b/
configure.in
@@
-61,8
+61,9
@@
AC_C_INLINE
# 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