open-src/driver/xf86-video-intel/build-dri-new.patch
author Niveditha Rau <Niveditha.Rau@Sun.COM>
Fri, 19 Sep 2008 08:46:08 -0700
changeset 544 e0bb9c4e0462
permissions -rw-r--r--
6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
544
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
     1
--- configure.ac	Mon Aug 25 18:28:31 2008
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
     2
+++ configure.ac	Mon Sep 15 15:32:01 2008
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
     3
@@ -37,7 +37,7 @@
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
     4
 # Checks for programs.
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
     5
 AC_DISABLE_STATIC
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
     6
 AC_PROG_LIBTOOL
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
     7
-DOLT
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
     8
+#DOLT
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
     9
 AC_PROG_CC
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    10
 AM_PROG_CC_C_O
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    11
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    12
@@ -84,7 +84,11 @@
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    13
 
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    14
 # Checks for pkg-config packages
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    15
 PKG_CHECK_MODULES(XORG, [xorg-server xproto fontsproto $REQUIRED_MODULES])
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    16
-sdkdir=$(pkg-config --variable=sdkdir xorg-server)
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    17
+AC_ARG_WITH(xorg-sdk-dir,
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    18
+	    AC_HELP_STRING([--with-xorg-sdk-dir=DIR],
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    19
+		           [Default xorg sdk include directory [[default is taken from pkgconfig]]]),
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    20
+	    [sdkdir="$withval"],
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    21
+	    [sdkdir=$(pkg-config --variable=sdkdir xorg-server)])
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    22
 
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    23
 # Checks for libraries.
e0bb9c4e0462 6711182 Update to intel_drv 2.4.0 or higher to support the Eaglelake Graphics from Intel
Niveditha Rau <Niveditha.Rau@Sun.COM>
parents:
diff changeset
    24