mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix alloc with log for allocation size checks.
git-svn-id: file:///svn/unbound/trunk@3442 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
0c43c020b1
commit
a6bc6b5137
3 changed files with 5 additions and 3 deletions
4
configure
vendored
4
configure
vendored
|
|
@ -18150,6 +18150,8 @@ esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
LIBOBJ_WITHOUT_CTIMEARC4="$LIBOBJS"
|
||||||
|
|
||||||
ac_fn_c_check_func "$LINENO" "reallocarray" "ac_cv_func_reallocarray"
|
ac_fn_c_check_func "$LINENO" "reallocarray" "ac_cv_func_reallocarray"
|
||||||
if test "x$ac_cv_func_reallocarray" = xyes; then :
|
if test "x$ac_cv_func_reallocarray" = xyes; then :
|
||||||
$as_echo "#define HAVE_REALLOCARRAY 1" >>confdefs.h
|
$as_echo "#define HAVE_REALLOCARRAY 1" >>confdefs.h
|
||||||
|
|
@ -18164,8 +18166,6 @@ esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
LIBOBJ_WITHOUT_CTIMEARC4="$LIBOBJS"
|
|
||||||
|
|
||||||
if test "$USE_NSS" = "no"; then
|
if test "$USE_NSS" = "no"; then
|
||||||
ac_fn_c_check_func "$LINENO" "arc4random" "ac_cv_func_arc4random"
|
ac_fn_c_check_func "$LINENO" "arc4random" "ac_cv_func_arc4random"
|
||||||
if test "x$ac_cv_func_arc4random" = xyes; then :
|
if test "x$ac_cv_func_arc4random" = xyes; then :
|
||||||
|
|
|
||||||
|
|
@ -998,9 +998,10 @@ AC_REPLACE_FUNCS(strlcat)
|
||||||
AC_REPLACE_FUNCS(strlcpy)
|
AC_REPLACE_FUNCS(strlcpy)
|
||||||
AC_REPLACE_FUNCS(memmove)
|
AC_REPLACE_FUNCS(memmove)
|
||||||
AC_REPLACE_FUNCS(gmtime_r)
|
AC_REPLACE_FUNCS(gmtime_r)
|
||||||
AC_REPLACE_FUNCS(reallocarray)
|
dnl without CTIME, ARC4-functions and without reallocarray.
|
||||||
LIBOBJ_WITHOUT_CTIMEARC4="$LIBOBJS"
|
LIBOBJ_WITHOUT_CTIMEARC4="$LIBOBJS"
|
||||||
AC_SUBST(LIBOBJ_WITHOUT_CTIMEARC4)
|
AC_SUBST(LIBOBJ_WITHOUT_CTIMEARC4)
|
||||||
|
AC_REPLACE_FUNCS(reallocarray)
|
||||||
if test "$USE_NSS" = "no"; then
|
if test "$USE_NSS" = "no"; then
|
||||||
AC_REPLACE_FUNCS(arc4random)
|
AC_REPLACE_FUNCS(arc4random)
|
||||||
AC_REPLACE_FUNCS(arc4random_uniform)
|
AC_REPLACE_FUNCS(arc4random_uniform)
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
29 June 2015: Wouter
|
29 June 2015: Wouter
|
||||||
- iana portlist update.
|
- iana portlist update.
|
||||||
|
- Fix alloc with log for allocation size checks.
|
||||||
|
|
||||||
26 June 2015: Wouter
|
26 June 2015: Wouter
|
||||||
- Fix #677 Fix DNAME responses from cache that failed internal chain
|
- Fix #677 Fix DNAME responses from cache that failed internal chain
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue