From 38fb0beaaeea86c5e2a50204880415488d3ea2f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Higor=20Eur=C3=ADpedes?= Date: Tue, 27 Jan 2015 20:50:55 -0300 Subject: [PATCH] (qb) Better configure messages --- qb/config.libs.sh | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/qb/config.libs.sh b/qb/config.libs.sh index 79cb66bfd1..ddf4ce7f7c 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -55,7 +55,7 @@ if [ "$HAVE_7ZIP" = "yes" ]; then fi if [ "$HAVE_PRESERVE_DYLIB" = "yes" ]; then - echo "Disabling dlclose() of shared objects for Valgrind support." + echo "Notice: Disabling dlclose() of shared objects for Valgrind support." add_define_make HAVE_PRESERVE_DYLIB "1" fi @@ -111,7 +111,7 @@ if [ "$HAVE_EXYNOS" != "no" ]; then fi if [ "$LIBRETRO" ]; then - echo "Explicit libretro used, disabling dynamic libretro loading ..." + echo "Notice: Explicit libretro used, disabling dynamic libretro loading ..." HAVE_DYNAMIC='no' else LIBRETRO="-lretro" fi @@ -147,6 +147,7 @@ if [ "$HAVE_NETWORKING" = 'yes' ]; then fi HAVE_NETWORK_CMD='yes' else + echo "Warning: All networking features have been disabled." HAVE_NETWORK_CMD='no' HAVE_NETPLAY='no' fi @@ -162,7 +163,7 @@ fi check_lib GETOPT_LONG "$CLIB" getopt_long if [ "$HAVE_DYLIB" = 'no' ] && [ "$HAVE_DYNAMIC" = 'yes' ]; then - echo "Dynamic loading of libretro is enabled, but your platform does not appear to have dlopen(), use --disable-dynamic or --with-libretro=\"-lretro\"". + echo "Error: Dynamic loading of libretro is enabled, but your platform does not appear to have dlopen(), use --disable-dynamic or --with-libretro=\"-lretro\"". exit 1 fi @@ -190,10 +191,10 @@ check_pkgconf SDL2 sdl2 2.0.0 if [ "$HAVE_SDL2" = 'yes' ]; then if [ "$HAVE_SDL2" = 'yes' ] && [ "$HAVE_SDL" = 'yes' ]; then - echo "SDL drivers will be replaced by SDL2 ones." + echo "Notice: SDL drivers will be replaced by SDL2 ones." HAVE_SDL=no elif [ "$HAVE_SDL2" = 'no' ]; then - echo "SDL2 not found, skipping." + echo "Warning: SDL2 not found, skipping." HAVE_SDL2=no fi fi @@ -228,7 +229,7 @@ if [ "$HAVE_OPENGL" != 'no' ] && [ "$HAVE_GLES" != 'yes' ]; then # fix undefined variables PKG_CONF_USED="$PKG_CONF_USED CG" else - echo "Ignoring Cg. Desktop OpenGL is not enabled." + echo "Notice: Ignoring Cg. Desktop OpenGL is not enabled." HAVE_CG='no' fi @@ -244,7 +245,7 @@ if [ "$HAVE_THREADS" != 'no' ]; then ( [ "$HAVE_FFMPEG" = 'auto' ] && ( [ "$HAVE_AVCODEC" = 'no' ] || [ "$HAVE_AVFORMAT" = 'no' ] || [ "$HAVE_AVUTIL" = 'no' ] || [ "$HAVE_SWSCALE" = 'no' ] ) && HAVE_FFMPEG='no' ) || HAVE_FFMPEG='yes' fi else - echo "Not building with threading support. Will skip FFmpeg." + echo "Notice: Not building with threading support. Will skip FFmpeg." HAVE_FFMPEG='no' fi @@ -258,7 +259,7 @@ if [ "$HAVE_KMS" != "no" ]; then if [ "$HAVE_GBM" = "yes" ] && [ "$HAVE_DRM" = "yes" ] && [ "$HAVE_EGL" = "yes" ]; then HAVE_KMS=yes elif [ "$HAVE_KMS" = "yes" ]; then - echo "Cannot find libgbm, libdrm and EGL libraries required for KMS. Compile without --enable-kms." + echo "Error: Cannot find libgbm, libdrm and EGL libraries required for KMS. Compile without --enable-kms." exit 1 else HAVE_KMS=no @@ -270,7 +271,7 @@ check_pkgconf LIBXML2 libxml-2.0 if [ "$HAVE_EGL" = "yes" ]; then if [ "$HAVE_GLES" != "no" ]; then if [ "$GLES_LIBS" ] || [ "$GLES_CFLAGS" ]; then - echo "Using custom OpenGLES CFLAGS ($GLES_CFLAGS) and LDFLAGS ($GLES_LIBS)." + echo "Notice: Using custom OpenGLES CFLAGS ($GLES_CFLAGS) and LDFLAGS ($GLES_LIBS)." add_define_make GLES_LIBS "$GLES_LIBS" add_define_make GLES_CFLAGS "$GLES_CFLAGS" else @@ -317,7 +318,7 @@ check_pkgconf XINERAMA xinerama if [ "$HAVE_X11" = 'yes' ] && [ "$HAVE_XEXT" = 'yes' ] && [ "$HAVE_XF86VM" = 'yes' ]; then check_pkgconf XVIDEO xv else - echo "X11, Xext or xf86vm not present. Skipping X11 code paths." + echo "Notice: X11, Xext or xf86vm not present. Skipping X11 code paths." HAVE_X11='no' HAVE_XVIDEO='no' fi