configure: force check_compile() to link an executable

by using -c (which just creates an object file), we don't catch implicit
function declarations as an error (see discussion of #274).
pull/276/head
rofl0r 2018-12-25 17:58:54 +00:00
parent 49bf4ba772
commit a6959ee715
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -18,7 +18,7 @@ check_compile() {
printf "checking %s ... " "$1"
printf "$3" > "$tmpc"
local res=0
$CC $OUR_CPPFLAGS $CPPFLAGS $2 $CFLAGS -c "$tmpc" -o /dev/null >/dev/null 2>&1 \
$CC $OUR_CPPFLAGS $CPPFLAGS $2 $CFLAGS "$tmpc" -o /dev/null >/dev/null 2>&1 \
|| res=1
test x$res = x0 && \
{ printf "yes\n" ; test x"$2" = x || OUR_CPPFLAGS="$OUR_CPPFLAGS $2" ; } \