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

@ -41,8 +41,8 @@ AM_MAINTAINER_MODE
# Checks for functions, headers, structures, etc.
AC_CHECK_HEADERS([termios.h])
AC_CHECK_MEMBERS([struct sysinfo.totalram],[],[],[AC_INCLUDES_DEFAULT
#include <sys/sysinfo.h>
])
#include <sys/sysinfo.h>
])
AC_CHECK_FUNCS([swapctl])
AC_CHECK_FUNCS([asprintf])
@ -60,8 +60,7 @@ PKG_CHECK_MODULES(DRM, [libdrm_intel >= 2.4.38 libdrm])
PKG_CHECK_MODULES(PCIACCESS, [pciaccess >= 0.10])
# for dma-buf tests
AC_ARG_ENABLE(nouveau,
AS_HELP_STRING([--disable-nouveau],
AC_ARG_ENABLE(nouveau, AS_HELP_STRING([--disable-nouveau],
[Enable use of nouveau API for prime tests (default: enabled)]),
[NOUVEAU=$enableval], [NOUVEAU=yes])
if test "x$NOUVEAU" = xyes; then
@ -70,7 +69,6 @@ if test "x$NOUVEAU" = xyes; then
fi
AM_CONDITIONAL(HAVE_NOUVEAU, [test "x$NOUVEAU" = xyes])
# for testdisplay
PKG_CHECK_MODULES(CAIRO, cairo)
PKG_CHECK_MODULES(LIBUDEV, [libudev], [udev=yes], [udev=no])
@ -135,5 +133,5 @@ AC_CONFIG_FILES([
tools/Makefile
debugger/Makefile
debugger/system_routine/Makefile
])
])
AC_OUTPUT