From: Yann E. MORIN" Date: Sun, 13 Jan 2013 22:10:48 +0000 (+0100) Subject: configure: dump checks for standard headers/functions X-Git-Tag: v3.8.0.0~7 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=24b5ad69a4b0e26fbe01c5dfa47643e7795e2158;p=kconfig-frontends configure: dump checks for standard headers/functions As Jan puts it: I would simply direct users to read the compiler error message. That enhances (hopefully) both their knowledge on compiling, and reduces the walltime configure runs. Make it so! :-) Signed-off-by: "Yann E. MORIN" Cc: Jan Engelhardt --- diff --git a/configure.ac b/configure.ac index e035b37..1fef677 100644 --- a/configure.ac +++ b/configure.ac @@ -215,23 +215,6 @@ AC_SUBST([AM_LFLAGS], ["-L -P zconf"]) AC_PROG_YACC AC_SUBST([AM_YFLAGS], ["-t -l -p zconf"]) -#---------------------------------------- -# Check for standard headers -AC_HEADER_STDC -AC_HEADER_STDBOOL -AC_CHECK_HEADERS([ fcntl.h limits.h locale.h ]) -AC_CHECK_HEADERS([ stdlib.h string.h sys/time.h unistd.h ]) -AC_TYPE_SIZE_T - -#---------------------------------------- -# Checks for library functions. -AC_FUNC_MALLOC -AC_FUNC_REALLOC -AC_FUNC_ALLOCA -AC_CHECK_FUNCS([ bzero memmove memset ]) -AC_CHECK_FUNCS([ strcasecmp strchr strcspn strdup strncasecmp strpbrk strrchr strspn strtol ]) -AC_CHECK_FUNCS([ gettimeofday mkdir regcomp setlocale uname ]) - #---------------------------------------- # Check for gettext, for the kconfig frontends [has_gettext="$enable_L10n"]