configure.in: use AC_TRY_COMPILE to avoid a symlink attack in /tmp during compilation

This commit is contained in:
Simon McVittie 2011-01-05 19:10:12 +00:00
parent 916620ea96
commit d83d74dc68

View file

@ -1085,17 +1085,13 @@ fi
#### gcc warning flags
cc_supports_flag() {
AC_MSG_CHECKING(whether $CC supports "$@")
Cfile=/tmp/foo${$}
touch ${Cfile}.c
$CC -c "$@" ${Cfile}.c -o ${Cfile}.o >/dev/null 2>&1
rc=$?
rm -f ${Cfile}.c ${Cfile}.o
case $rc in
0) AC_MSG_RESULT(yes);;
*) AC_MSG_RESULT(no);;
esac
return $rc
AC_MSG_CHECKING(whether $CC supports "$*")
save_CFLAGS="$CFLAGS"
CFLAGS="$*"
AC_TRY_COMPILE([], [], [rc=yes], [rc=no])
CFLAGS="$save_CFLAGS"
AC_MSG_RESULT([$rc])
test "x$rc" = xyes
}
ld_supports_flag() {