List wxWebView backends in configure output

This commit is contained in:
Steven Lamerton 2015-02-14 20:13:47 +00:00 committed by Tobias Taschner
parent 6b314420ec
commit 0ceba8cc59
No known key found for this signature in database
GPG key ID: AE6ECD71294F87FD

View file

@ -8399,7 +8399,22 @@ echo " zlib ${wxUSE_ZLIB}"
echo " expat ${wxUSE_EXPAT}"
echo " libmspack ${wxUSE_LIBMSPACK}"
echo " sdl ${wxUSE_LIBSDL}"
echo " webview_chromium ${wxUSE_WEBVIEW_CHROMIUM}"
echo $ECHO_N " webview ${wxUSE_WEBVIEW}$ECHO_C"
if test "$wxUSE_WEBVIEW" = "yes"; then
echo $ECHO_N " (with backends:$ECHO_C"
if test "$wxUSE_WEBVIEW_WEBKIT" = "yes"; then
echo $ECHO_N " WebKit$ECHO_C"
fi
if test "$wxUSE_WEBVIEW_IE" = "yes"; then
echo $ECHO_N " IE$ECHO_C"
fi
if test "$wxUSE_WEBVIEW_CHROMIUM" = "yes"; then
echo $ECHO_N " Chromium$ECHO_C"
fi
echo ")"
else
echo
fi
echo ""
dnl vi: set et sts=4 sw=4 com=\:dnl: