configure.ac: Fix spacing

Almost all based on vim's config file type. It got it wrong in a few
places which were fixed by hand.

Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
This commit is contained in:
Ben Widawsky 2013-01-31 13:04:18 -08:00
parent b8e5965e8f
commit 90f0b3dcf3

View File

@ -60,8 +60,7 @@ PKG_CHECK_MODULES(DRM, [libdrm_intel >= 2.4.38 libdrm])
PKG_CHECK_MODULES(PCIACCESS, [pciaccess >= 0.10]) PKG_CHECK_MODULES(PCIACCESS, [pciaccess >= 0.10])
# for dma-buf tests # for dma-buf tests
AC_ARG_ENABLE(nouveau, AC_ARG_ENABLE(nouveau, AS_HELP_STRING([--disable-nouveau],
AS_HELP_STRING([--disable-nouveau],
[Enable use of nouveau API for prime tests (default: enabled)]), [Enable use of nouveau API for prime tests (default: enabled)]),
[NOUVEAU=$enableval], [NOUVEAU=yes]) [NOUVEAU=$enableval], [NOUVEAU=yes])
if test "x$NOUVEAU" = xyes; then if test "x$NOUVEAU" = xyes; then
@ -70,7 +69,6 @@ if test "x$NOUVEAU" = xyes; then
fi fi
AM_CONDITIONAL(HAVE_NOUVEAU, [test "x$NOUVEAU" = xyes]) AM_CONDITIONAL(HAVE_NOUVEAU, [test "x$NOUVEAU" = xyes])
# for testdisplay # for testdisplay
PKG_CHECK_MODULES(CAIRO, cairo) PKG_CHECK_MODULES(CAIRO, cairo)
PKG_CHECK_MODULES(LIBUDEV, [libudev], [udev=yes], [udev=no]) PKG_CHECK_MODULES(LIBUDEV, [libudev], [udev=yes], [udev=no])