summaryrefslogtreecommitdiff
path: root/configure.ac
blob: b73fe884f82de56db8a06dd26529f0dc0ce1b18c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Process this file with autoconf to produce a configure script

AC_PREREQ(2.57)
AC_INIT([mesa-dri-i9xx], 7.5.0, [], mesa-dri-i9xx)

AM_INIT_AUTOMAKE([dist-bzip2])

AM_MAINTAINER_MODE

# Checks for programs.
AC_DISABLE_STATIC
AC_PROG_LIBTOOL
AC_PROG_CC

# Checks for header files.
AC_HEADER_STDC

PKG_CHECK_MODULES([DRM], [libdrm >= 2.4.3])
# changes in struct gl_fragment_program.
PKG_CHECK_MODULES([DRI], [libmesadri >= 7.5.0 libmesadri < 7.6.0
			  libmesadricommon >= 7.5.0 libmesadricommon < 7.6.0])

AC_OUTPUT([
	Makefile
	i915/Makefile
	i965/Makefile
])