From: Lars Wendler Date: Tue, 1 Mar 2022 15:11:05 +0000 (+0100) Subject: Convert "if" calls to AS_IF macro for the block that handles X11 X-Git-Tag: dbus-1.15.0~101^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c71f013a64cd7f6de4c9cf3cf3b236239d713eb1;p=thirdparty%2Fdbus.git Convert "if" calls to AS_IF macro for the block that handles X11 --- diff --git a/configure.ac b/configure.ac index 8816a9500..91bd898ca 100644 --- a/configure.ac +++ b/configure.ac @@ -1108,14 +1108,14 @@ AC_ARG_ENABLE([x11-autolaunch], AS_HELP_STRING([--enable-x11-autolaunch], [build with X11 auto-launch support]), [], [enable_x11_autolaunch=auto]) -if test "x$dbus_win" = xyes; then - if test "x$enable_x11_autolaunch" = xyes; then +AS_IF([test "x$dbus_win" = xyes], [ + AS_IF([test "x$enable_x11_autolaunch" = xyes], [ AC_MSG_ERROR([X11 auto-launch is not supported on Windows]) - fi + ]) enable_x11_autolaunch=no have_x11=no -else if test "x$with_x" != xno; then +], [test "x$with_x" != xno], [ PKG_CHECK_MODULES([X], [x11], [AC_DEFINE([HAVE_X11], [1], [Define to 1 if you have X11 library]) have_x11=yes @@ -1128,13 +1128,12 @@ else if test "x$with_x" != xno; then ) have_x11=no ]) -else +], [ have_x11=no AS_IF([test "x$enable_x11_autolaunch" = "xyes"], [ AC_MSG_ERROR([--enable-x11-autolaunch and --without-x are not compatible]) ]) -fi -fi +]) if test "x$enable_x11_autolaunch,$have_x11" = xyes,no; then AC_MSG_ERROR([X11 auto-launch requires X headers/libraries])