~ubuntu-branches/debian/lenny/xserver-xorg-video-nv/lenny

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Kyle McMartin
  • Date: 2007-03-19 14:08:02 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070319140802-llr8iovnl7jihfk1
Tags: 1:2.0.0-0ubuntu1
* New upstream version,
  - GeForce8800 support (8800GTX/GTS)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
AC_PREREQ(2.57)
24
24
AC_INIT([xf86-video-nv],
25
 
        1.2.2.1,
 
25
        2.0.0,
26
26
        [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
27
27
        xf86-video-nv)
28
28
 
63
63
PKG_CHECK_MODULES(XORG, [xorg-server xproto fontsproto $REQUIRED_MODULES])
64
64
sdkdir=$(pkg-config --variable=sdkdir xorg-server)
65
65
 
 
66
# Check for optional compile-time support
 
67
AC_ARG_ENABLE(g80, AC_HELP_STRING([--disable-g80],
 
68
                                  [Disable G80 support [[default=no]]]),
 
69
              [SUPPORT_G80="$enableval"],
 
70
              [SUPPORT_G80=yes])
 
71
AM_CONDITIONAL(SUPPORT_G80, test x$SUPPORT_G80 = xyes)
 
72
if test "$SUPPORT_G80" = yes; then
 
73
        AC_DEFINE(SUPPORT_G80,1,[Enable G80 support])
 
74
        echo "Enabling G80 support"
 
75
fi
 
76
 
66
77
# Checks for libraries.
67
78
 
68
79
# Checks for header files.