aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorkinichiro <kinichiro.inoguchi@gmail.com>2017-03-09 22:49:04 +0900
committerkinichiro <kinichiro.inoguchi@gmail.com>2017-03-09 23:00:04 +0900
commit8877e9bc55fdbdb70c967b7720f57fba148a7dda (patch)
tree233b458c35130b15172908d6f0e9e99e6a078152 /m4
parent27f08790305216e5730c5bb5352db9f616c4c56f (diff)
downloadportable-8877e9bc55fdbdb70c967b7720f57fba148a7dda.tar.gz
portable-8877e9bc55fdbdb70c967b7720f57fba148a7dda.tar.bz2
portable-8877e9bc55fdbdb70c967b7720f57fba148a7dda.zip
Add recallocarray
Diffstat (limited to 'm4')
-rw-r--r--m4/check-libc.m47
1 files changed, 6 insertions, 1 deletions
diff --git a/m4/check-libc.m4 b/m4/check-libc.m4
index c66364e..22f0b35 100644
--- a/m4/check-libc.m4
+++ b/m4/check-libc.m4
@@ -3,7 +3,8 @@ AC_DEFUN([CHECK_LIBC_COMPAT], [
3AC_CHECK_HEADERS([err.h readpassphrase.h]) 3AC_CHECK_HEADERS([err.h readpassphrase.h])
4# Check for general libc functions 4# Check for general libc functions
5AC_CHECK_FUNCS([asprintf inet_ntop inet_pton memmem readpassphrase]) 5AC_CHECK_FUNCS([asprintf inet_ntop inet_pton memmem readpassphrase])
6AC_CHECK_FUNCS([reallocarray strlcat strlcpy strndup strnlen strsep strtonum]) 6AC_CHECK_FUNCS([reallocarray recallocarray])
7AC_CHECK_FUNCS([strlcat strlcpy strndup strnlen strsep strtonum])
7AC_CHECK_FUNCS([timegm _mkgmtime]) 8AC_CHECK_FUNCS([timegm _mkgmtime])
8AM_CONDITIONAL([HAVE_ASPRINTF], [test "x$ac_cv_func_asprintf" = xyes]) 9AM_CONDITIONAL([HAVE_ASPRINTF], [test "x$ac_cv_func_asprintf" = xyes])
9AM_CONDITIONAL([HAVE_INET_NTOP], [test "x$ac_cv_func_inet_ntop" = xyes]) 10AM_CONDITIONAL([HAVE_INET_NTOP], [test "x$ac_cv_func_inet_ntop" = xyes])
@@ -11,6 +12,7 @@ AM_CONDITIONAL([HAVE_INET_PTON], [test "x$ac_cv_func_inet_pton" = xyes])
11AM_CONDITIONAL([HAVE_MEMMEM], [test "x$ac_cv_func_memmem" = xyes]) 12AM_CONDITIONAL([HAVE_MEMMEM], [test "x$ac_cv_func_memmem" = xyes])
12AM_CONDITIONAL([HAVE_READPASSPHRASE], [test "x$ac_cv_func_readpassphrase" = xyes]) 13AM_CONDITIONAL([HAVE_READPASSPHRASE], [test "x$ac_cv_func_readpassphrase" = xyes])
13AM_CONDITIONAL([HAVE_REALLOCARRAY], [test "x$ac_cv_func_reallocarray" = xyes]) 14AM_CONDITIONAL([HAVE_REALLOCARRAY], [test "x$ac_cv_func_reallocarray" = xyes])
15AM_CONDITIONAL([HAVE_RECALLOCARRAY], [test "x$ac_cv_func_recallocarray" = xyes])
14AM_CONDITIONAL([HAVE_STRLCAT], [test "x$ac_cv_func_strlcat" = xyes]) 16AM_CONDITIONAL([HAVE_STRLCAT], [test "x$ac_cv_func_strlcat" = xyes])
15AM_CONDITIONAL([HAVE_STRLCPY], [test "x$ac_cv_func_strlcpy" = xyes]) 17AM_CONDITIONAL([HAVE_STRLCPY], [test "x$ac_cv_func_strlcpy" = xyes])
16AM_CONDITIONAL([HAVE_STRNDUP], [test "x$ac_cv_func_strndup" = xyes]) 18AM_CONDITIONAL([HAVE_STRNDUP], [test "x$ac_cv_func_strndup" = xyes])
@@ -177,6 +179,9 @@ fi
177if test "x$ac_cv_func_reallocarray" = "xno" ; then 179if test "x$ac_cv_func_reallocarray" = "xno" ; then
178 echo reallocarray >> $crypto_p_sym 180 echo reallocarray >> $crypto_p_sym
179fi 181fi
182if test "x$ac_cv_func_recallocarray" = "xno" ; then
183 echo recallocarray >> $crypto_p_sym
184fi
180if test "x$ac_cv_func_strlcat" = "xno" ; then 185if test "x$ac_cv_func_strlcat" = "xno" ; then
181 echo strlcat >> $crypto_p_sym 186 echo strlcat >> $crypto_p_sym
182fi 187fi