1
0
mirror of https://github.com/ostreedev/ostree.git synced 2025-03-06 00:58:44 +03:00

configure: make missing prototypes an error always

This commit is contained in:
Colin Walters 2011-10-21 11:27:40 -04:00
parent 5146890457
commit ad4ae3c0f1

@ -18,8 +18,8 @@ if test "x$GCC" = "xyes"; then
*) CFLAGS="$CFLAGS -Wall" ;;
esac
case " $CFLAGS " in
*[\ \ ]-Wmissing-prototypes[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -Wmissing-prototypes" ;;
*[\ \ ]-Werror=missing-prototypes[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -Werror=missing-prototypes" ;;
esac
fi
changequote([,])dnl