mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-24 00:29:58 -05:00
- Rebuild configure script from its sources.
This commit is contained in:
parent
1e2dc657a1
commit
50a11ebcc8
2 changed files with 41 additions and 27 deletions
67
configure
vendored
67
configure
vendored
|
|
@ -18020,7 +18020,9 @@ if test x_$enable_alloc_nonregional = x_yes; then
|
||||||
printf "%s\n" "#define UNBOUND_ALLOC_NONREGIONAL 1" >>confdefs.h
|
printf "%s\n" "#define UNBOUND_ALLOC_NONREGIONAL 1" >>confdefs.h
|
||||||
|
|
||||||
fi
|
fi
|
||||||
if test x_$enable_alloc_checks = x_yes; then
|
if test x_$enable_alloc_checks = x_yes
|
||||||
|
then :
|
||||||
|
|
||||||
|
|
||||||
printf "%s\n" "#define UNBOUND_ALLOC_STATS 1" >>confdefs.h
|
printf "%s\n" "#define UNBOUND_ALLOC_STATS 1" >>confdefs.h
|
||||||
|
|
||||||
|
|
@ -18028,28 +18030,29 @@ printf "%s\n" "#define UNBOUND_ALLOC_STATS 1" >>confdefs.h
|
||||||
|
|
||||||
ASYNCLOOK_ALLOCCHECK_EXTRA_OBJ="alloc.lo"
|
ASYNCLOOK_ALLOCCHECK_EXTRA_OBJ="alloc.lo"
|
||||||
|
|
||||||
else
|
|
||||||
if test x_$enable_alloc_lite = x_yes; then
|
else $as_nop
|
||||||
|
|
||||||
|
if test x_$enable_alloc_lite = x_yes
|
||||||
|
then :
|
||||||
|
|
||||||
|
|
||||||
printf "%s\n" "#define UNBOUND_ALLOC_LITE 1" >>confdefs.h
|
printf "%s\n" "#define UNBOUND_ALLOC_LITE 1" >>confdefs.h
|
||||||
|
|
||||||
else
|
|
||||||
|
else $as_nop
|
||||||
|
|
||||||
|
|
||||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5
|
||||||
printf %s "checking for GNU libc compatible malloc... " >&6; }
|
printf %s "checking for GNU libc compatible malloc... " >&6; }
|
||||||
if test "$cross_compiling" = yes
|
if test ${ac_cv_func_malloc_0_nonnull+y}
|
||||||
then :
|
then :
|
||||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no (crosscompile)" >&5
|
printf %s "(cached) " >&6
|
||||||
printf "%s\n" "no (crosscompile)" >&6; }
|
else $as_nop
|
||||||
case " $LIBOBJS " in
|
|
||||||
*" malloc.$ac_objext "* ) ;;
|
|
||||||
*) LIBOBJS="$LIBOBJS malloc.$ac_objext"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
|
|
||||||
printf "%s\n" "#define malloc rpl_malloc_unbound" >>confdefs.h
|
|
||||||
|
|
||||||
|
if test "$cross_compiling" = yes
|
||||||
|
then :
|
||||||
|
ac_cv_func_malloc_0_nonnull="no (crosscompile)"
|
||||||
else $as_nop
|
else $as_nop
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
/* end confdefs.h. */
|
/* end confdefs.h. */
|
||||||
|
|
@ -18070,9 +18073,26 @@ main (void)
|
||||||
_ACEOF
|
_ACEOF
|
||||||
if ac_fn_c_try_run "$LINENO"
|
if ac_fn_c_try_run "$LINENO"
|
||||||
then :
|
then :
|
||||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
ac_cv_func_malloc_0_nonnull=no
|
||||||
printf "%s\n" "no" >&6; }
|
else $as_nop
|
||||||
case " $LIBOBJS " in
|
ac_cv_func_malloc_0_nonnull=yes
|
||||||
|
fi
|
||||||
|
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
|
||||||
|
conftest.$ac_objext conftest.beam conftest.$ac_ext
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
fi
|
||||||
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_malloc_0_nonnull" >&5
|
||||||
|
printf "%s\n" "$ac_cv_func_malloc_0_nonnull" >&6; }
|
||||||
|
if test "$ac_cv_func_malloc_0_nonnull" = yes
|
||||||
|
then :
|
||||||
|
|
||||||
|
printf "%s\n" "#define HAVE_MALLOC 1" >>confdefs.h
|
||||||
|
|
||||||
|
else $as_nop
|
||||||
|
|
||||||
|
case " $LIBOBJS " in
|
||||||
*" malloc.$ac_objext "* ) ;;
|
*" malloc.$ac_objext "* ) ;;
|
||||||
*) LIBOBJS="$LIBOBJS malloc.$ac_objext"
|
*) LIBOBJS="$LIBOBJS malloc.$ac_objext"
|
||||||
;;
|
;;
|
||||||
|
|
@ -18081,19 +18101,12 @@ esac
|
||||||
|
|
||||||
printf "%s\n" "#define malloc rpl_malloc_unbound" >>confdefs.h
|
printf "%s\n" "#define malloc rpl_malloc_unbound" >>confdefs.h
|
||||||
|
|
||||||
else $as_nop
|
|
||||||
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
|
||||||
printf "%s\n" "yes" >&6; }
|
|
||||||
|
|
||||||
printf "%s\n" "#define HAVE_MALLOC 1" >>confdefs.h
|
|
||||||
|
|
||||||
fi
|
fi
|
||||||
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
|
|
||||||
conftest.$ac_objext conftest.beam conftest.$ac_ext
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# check windows threads (we use them, not pthreads, on windows).
|
# check windows threads (we use them, not pthreads, on windows).
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
in the string correctly. Thanks to Jan Komissar.
|
in the string correctly. Thanks to Jan Komissar.
|
||||||
- Neaten up the change in acx_nlnetlabs.m4 to version 49.
|
- Neaten up the change in acx_nlnetlabs.m4 to version 49.
|
||||||
- Fix fr_atomic_copy_cfg.
|
- Fix fr_atomic_copy_cfg.
|
||||||
|
- Rebuild configure script from its sources.
|
||||||
|
|
||||||
29 September 2025: Yorgos
|
29 September 2025: Yorgos
|
||||||
- Merge #1349: Fix #1346: [FR] Please allow back TLS 1.2.
|
- Merge #1349: Fix #1346: [FR] Please allow back TLS 1.2.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue