diff options
author | Jian Zhao <jian.j.zhao@intel.com> | 2011-06-22 08:54:59 +0800 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2011-06-22 11:07:08 +0100 |
commit | 8fb98e22a63a4354b049ace7870abb6406541c28 (patch) | |
tree | 1b04f67be7c715a4af52bb2d4a0ec07d538deb8f /configure.ac | |
parent | ea71133da78632d4cfee5b0b4c96e8dddd6cdf44 (diff) |
configure: Define required_xorg_xserver_version later so it can make successfully.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 7bde7680..eea47084 100644 --- a/configure.ac +++ b/configure.ac @@ -20,8 +20,6 @@ # # Process this file with autoconf to produce a configure script -required_xorg_xserver_version=1.6 - # Initialize Autoconf AC_PREREQ([2.63]) AC_INIT([xf86-video-intel], @@ -101,6 +99,8 @@ AC_ARG_ENABLE(sna, [SNA=no]) AM_CONDITIONAL(SNA, test x$SNA != xno) AC_MSG_CHECKING([whether to include SNA support]) + +required_xorg_xserver_version=1.6 if test "x$SNA" != "xno"; then required_xorg_xserver_version=1.10 AC_DEFINE(USE_SNA, 1, [Enable SNA support]) |