From a4cc953911a745d6e769a03cbe6442ee2fc27cbd Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Wed, 29 Oct 2014 15:44:36 -0500 Subject: Improve and simplify function and header detection logic. Simplify autoconf checks by using AC_CHECK_FUNCS/HEADERS. Clarify some ambiguous dependencies around strnlen/strndup. Unconditionally enable pidwraptest for all arc4random implementations. Remove HAVE_VASPRINTF conditional, since asprintf requires vasprintf. ok @doug --- update.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'update.sh') diff --git a/update.sh b/update.sh index 166f609..97af0ff 100755 --- a/update.sh +++ b/update.sh @@ -305,7 +305,6 @@ test_drivers=( # disabled by-default tests tests_disabled=( biotest - pidwraptest ) $CP $libc_src/string/memmem.c tests/ (cd tests @@ -319,7 +318,7 @@ $CP $libc_src/string/memmem.c tests/ echo "check_PROGRAMS += $TEST" >> Makefile.am echo "${TEST}_SOURCES = $i" >> Makefile.am done - echo "if NO_MEMMEM" >> Makefile.am + echo "if !HAVE_MEMMEM" >> Makefile.am echo "explicit_bzero_SOURCES += memmem.c" >> Makefile.am echo "endif" >> Makefile.am ) -- cgit v1.2.3-55-g6feb