diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2007-03-08 18:12:43 -0800 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2007-03-08 18:12:43 -0800 |
commit | 06b168ced3cc4aa47cdad21a2351cca674fa26e0 (patch) | |
tree | a13d5bf93611803638a33bfa76814b9a6bf597f5 | |
parent | 23383c2c2e1aa590f69197b1860053d5cb710cf7 (diff) |
Enable G80 support by default.nv-1.99.1
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index acebecf..6b1f98e 100644 --- a/configure.ac +++ b/configure.ac @@ -64,10 +64,10 @@ PKG_CHECK_MODULES(XORG, [xorg-server xproto fontsproto $REQUIRED_MODULES]) sdkdir=$(pkg-config --variable=sdkdir xorg-server) # Check for optional compile-time support -AC_ARG_ENABLE(g80, AC_HELP_STRING([--enable-g80], - [Enable G80 support [[default=no]]]), +AC_ARG_ENABLE(g80, AC_HELP_STRING([--disable-g80], + [Disable G80 support [[default=no]]]), [SUPPORT_G80="$enableval"], - [SUPPORT_G80=no]) + [SUPPORT_G80=yes]) AM_CONDITIONAL(SUPPORT_G80, test x$SUPPORT_G80 = xyes) if test "$SUPPORT_G80" = yes; then AC_DEFINE(SUPPORT_G80,1,[Enable G80 support]) |