summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a6fc28c)
raw | patch | inline | side by side (parent: a6fc28c)
author | David Bercovitz <d-bercovitz@ti.com> | |
Thu, 27 Oct 2011 11:53:52 +0000 (13:53 +0200) | ||
committer | David Bercovitz <d-bercovitz@ti.com> | |
Thu, 27 Oct 2011 11:53:52 +0000 (13:53 +0200) |
Usage of Conditionals describes that a conditional
must be defined before it is used in configure.ac
using the macro AM_CONDITIONAL.
This commit fixes ./configure step when --enable-test is
undefined.
must be defined before it is used in configure.ac
using the macro AM_CONDITIONAL.
This commit fixes ./configure step when --enable-test is
undefined.
configure.ac | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index f07ff9636a5bc0d386fd91a7133701f901b7fedb..e80c08ebac7ace53856251df50a034bc7f77ccea 100644 (file)
--- a/configure.ac
+++ b/configure.ac
# Check for individual driver implementations... not required for
# libdri2, but is required for the test app to map the buffer..
PKG_CHECK_MODULES(NOUVEAU, libdrm_nouveau, [HAVE_NOUVEAU=yes], [HAVE_NOUVEAU=no])
- AM_CONDITIONAL(ENABLE_NOUVEAU, [test "x$HAVE_NOUVEAU" = xyes])
if test "x$HAVE_NOUVEAU" = "xyes"; then
have_drm_driver=yes
AC_DEFINE(HAVE_NOUVEAU, 1, [Have nouveau support])
fi
PKG_CHECK_MODULES(OMAP, libdrm_omap, [HAVE_OMAP=yes], [HAVE_OMAP=no])
- AM_CONDITIONAL(ENABLE_OMAP, [test "x$HAVE_OMAP" = xyes])
if test "x$HAVE_OMAP" = "xyes"; then
have_drm_driver=yes
AC_DEFINE(HAVE_OMAP, 1, [Have omap support])
TEST=no
fi
fi
+AM_CONDITIONAL(ENABLE_OMAP, [test "x$HAVE_OMAP" = xyes])
+AM_CONDITIONAL(ENABLE_NOUVEAU, [test "x$HAVE_NOUVEAU" = xyes])
AM_CONDITIONAL(ENABLE_TEST, [test "x$TEST" = xyes])
# Allow checking code with lint, sparse, etc.