diff options
author | Marcin KoĆcielnicki <koriakin@0x04.net> | 2010-02-27 15:04:37 +0000 |
---|---|---|
committer | Jakob Bornecrantz <jakob@vmware.com> | 2010-02-28 00:25:22 +0000 |
commit | afd74ec555a61d7006db90f0c038ff026e76d303 (patch) | |
tree | ee977b4aebfcc9ef7b52a69957725a7e21ba43c2 | |
parent | f6dc964e1d4d43e4053b84b31e76d974af128276 (diff) |
Add config.h macro HAVE_NOUVEAU
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index ef7700f9..40634c5f 100644 --- a/configure.ac +++ b/configure.ac @@ -154,6 +154,9 @@ if test "x$VMWGFX" = xyes; then fi AM_CONDITIONAL(HAVE_NOUVEAU, [test "x$NOUVEAU" = xyes]) +if test "x$NOUVEAU" = xyes; then + AC_DEFINE(HAVE_NOUVEAU, 1, [Have nouveau (nvidia) support]) +fi AM_CONDITIONAL(HAVE_RADEON, [test "x$RADEON" = xyes]) |