~ubuntu-branches/ubuntu/natty/xserver-xorg-video-intel/natty-updates

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Robert Hooker, Bryce Harrington
  • Date: 2011-01-24 12:58:42 UTC
  • mfrom: (0.1.15 experimental)
  • Revision ID: james.westby@ubuntu.com-20110124125842-1ejnvoe3dwa59w1t
Tags: 2:2.14.0-1ubuntu1
* New upstream release.
  - Sandy Bridge RENDER and XVIDEO acceleration
  - i965+ RENDER acceleration
  - Fix backlight on Arrandale (LP: #705949)
* Remaining Ubuntu Changes:
  - debian/apport-gpu-error-intel.py, debian/xserver-xorg-video-intel.udev,
    debian/xserver-xorg-video-intel:
    Add apport script to collect debug information on GPU hangs
  - rules: Install udev rule to run the script when the kernel detects hung GPU
  - 101_copy-fb.patch: Adds feature to driver so Xserver can draw
    root windows with no background.  This enables smooth boot with
    Plymouth.
  - control: Add Recommends on intel-gpu-tools to xserver-xorg-video-intel
    package for use by GPU hang scripts.
  - xserver-xorg-video-intel.preinst.in, xserver-xorg-video-intel.postinst.in,
    rules:
    Don't install /etc/modprobe.d/i915-kms.conf, and remove it on upgrades.
    At best it's redundant (as the kernel defaults to KMS), at worst it breaks
    the ability to disable KMS.
  - 107_solid_nullptr_check.patch: Check null return from uxa_acquire_solid()

[Bryce Harrington]
* Change dep on libudev-dev to not limit to linux-any (fixes FTBS when
  using pbuilder, see deb bug 600823)
* Add python-dev recommends for xserver-xorg-video-intel, needed by
  debian/apport-gpu-error-intel.py
* Drop 106_restore_backlight_at_mode_set.patch:  Included in release

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
# Initialize Autoconf
24
24
AC_PREREQ([2.60])
25
25
AC_INIT([xf86-video-intel],
26
 
        [2.13.901],
 
26
        [2.14.0],
27
27
        [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
28
28
        [xf86-video-intel])
29
29
AC_CONFIG_SRCDIR([Makefile.am])
36
36
 
37
37
# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
38
38
m4_ifndef([XORG_MACROS_VERSION],
39
 
          [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
 
39
          [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen.
 
40
  Hint: either install from source, git://anongit.freedesktop.org/xorg/util/macros or,
 
41
  depending on you distribution, try package 'xutils-dev' or 'xorg-x11-util-macros'])])
 
42
 
40
43
XORG_MACROS_VERSION(1.8)
41
44
XORG_DEFAULT_OPTIONS
42
45
 
 
46
# Require X.Org server macros (i.e. XORG_DRIVER_CHECK_EXT) to check for required modules 
 
47
m4_ifndef([XORG_DRIVER_CHECK_EXT],
 
48
          [m4_fatal([must install xorg-server macros before running autoconf/autogen.
 
49
  Hint: either install from source, git://anongit.freedesktop.org/xorg/xserver or,
 
50
  depending on your distribution, try package 'xserver-xorg-dev' or 'xorg-x11-server-devel'])])
 
51
 
43
52
# Initialize libtool
44
53
AC_DISABLE_STATIC
45
54
AC_PROG_LIBTOOL
84
93
 
85
94
# Obtain compiler/linker options for the driver dependencies
86
95
PKG_CHECK_MODULES(XORG, [xorg-server >= 1.6 xproto fontsproto $REQUIRED_MODULES])
87
 
PKG_CHECK_MODULES(DRM, [libdrm >= 2.4.22])
 
96
PKG_CHECK_MODULES(DRM, [libdrm >= 2.4.23])
88
97
PKG_CHECK_MODULES(PCIACCESS, [pciaccess >= 0.10])
89
98
 
90
99
sdkdir=`$PKG_CONFIG --variable=sdkdir xorg-server`