Make configure return 0 on success
diff --git a/configure b/configure
index c15da2e..00f7043 100755
--- a/configure
+++ b/configure
@@ -186,7 +186,7 @@ echo "ranlib: $ranlib"
echo "strip: $strip"
echo "static: $static"
echo "shared: $shared"
-enabled shared && {
+if enabled shared; then
echo "msvc: $msvc";
echo "strip: $stripping";
-}
+fi