summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2012-01-08Solaris defines struct winsize in termios.hAlan Coopersmith1-0/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-01-08Provide Solaris implementation of intel_get_total_ram_mbAlan Coopersmith1-0/+5
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-01-04config: restore the libtool minimum version to 1.5Gaetan Nadon1-2/+2
Very few systems still use this old version, but it would be inconvenient to build a video driver with libtool 1.5 and have to build the gpu tools on another system having libtool 2.2. The toolchain version requirements are documented here: http://www.x.org/wiki/ModularDevelopersGuide#GNU_Build_System Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-01-04config: the minimum version for autoconf is 2.60Gaetan Nadon1-2/+2
A version later than 2.60 can be used, but no new features from such a later version can be used in configure.ac. The toolchain version requirements are documented here: http://www.x.org/wiki/ModularDevelopersGuide#GNU_Build_System Minimum version for Automake is 1.10 but we have not written it in any xorg module so far and there has been no issues. Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-01-04config: set-up xorg automatic rebuilding rulesGaetan Nadon1-1/+1
The current code is a noop. Use the same configuration as all the other xorg modules. This will change in the future but it is less confusing when all modules behave the same way. Note that these rules apply to building from a tarball only. Restore autogen.sh to be identical in all xorg modules. Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-01-04config: use project wide xorg warnings variableGaetan Nadon1-12/+0
Use CWARNFLAGS as in all of xorg. There seems to be no reason why this module should be different. The warnings were updated recently for those who install the latest util-macros. Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-01-04config: remove duplicate AC_PROG_CC and AC_PROG__CC_99Gaetan Nadon1-15/+6
The compiler was configured three times. It is done once by XORG_DEFAULT_OPTIONS in util-macros. Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-01-04config: remove unrequired AM_PROG_CC_C_OGaetan Nadon1-1/+0
Required when using per-target flags or subdir-objects with C sources. http://www.gnu.org/software/automake/manual/automake.html Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-01-04Man pages still showing version 1.0 in the 1.1 releaseGaetan Nadon1-2/+4
The patch coverts the man subdir to the standard xorg man page makefile. The version number is automatically updated when a new release is made. The man page section number is no longer hard coded either. The package util-macros at version 1.8 or greater is required. Acked-by: Cyril Brulebois <kibi@debian.org> Reviewed-by: Ben Widawsky <ben@bwidawsk.net> Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2011-12-24Release 1.1Daniel Vetter1-1/+1
2011-11-01cargo-cult the build system into shapeDaniel Vetter1-1/+1
Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2011-11-01always require libdrmDaniel Vetter1-6/+1
... and also add the missing files to lib/Makefile.am Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2011-10-31i-g-t/debugger - make the debugger work with distcheckBen Widawsky1-0/+1
Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
2011-10-31i-g-t/debugger: Only allow the shader debugger if the user has specified a ↵Ben Widawsky1-1/+6
gen4asm Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
2011-07-28intel-gpu-tools/debugging: shader debuggerBen Widawsky1-0/+11
high level summary of the files: * debug_rdata - get current state from debug registers. Helpful when developing the debugger, and could serve some purpose in the future. * eudb - the debugger itself * eviction_macro - generate the proper macro to flush the EU render cache until I get control flow working * pre_cpp - an evaluating c preprocesser like thing, to be used before cpp * sr - the system routine, exception handler which runs on the EU * test - a very basic test system routine * debug.h
2011-06-08scripts: Add throttle.pyChris Wilson1-0/+1
Parses a trace.dat and works out how long each throttle was and how many batches retired within that period (and their average duration). Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2011-04-11Add C99 requirement to autoconf.Ben Widawsky1-0/+1
snprintf is part of the C99 standard and is used in many places in the tools. Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
2011-02-09build: Update autotools configurationJavier Jardón1-10/+18
Replace deprecated macros and use the new libtool syntax Also use silent-rules to make the build option less verbose.
2011-02-08configure: Bump the libdrm dependencyChris Wilson1-1/+1
Whoops, should have done this ages ago for I915_EXEC_BLT Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2010-12-21tests: add display testing programJesse Barnes1-0/+18
Just a simple program to light up all detected outputs at their native mode and respond to hotplug events.
2010-04-08Enable compilation on non-Intel, non-DRM systems.Chris Wilson1-1/+6
A few of the tools can be performed post-mortem from a different system, so it is useful to be able to compile those tools on those foreign systems. Obviously, any program to interact with the PCI device or talk to GEM will fail on a non-Intel system. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2009-12-15Replace dolt and shave with using current autotools.Eric Anholt1-7/+3
2009-09-21Bump to 1.0.2 for release.Eric Anholt1-1/+1
2009-05-19Bump version to 1.0.1 for release.Eric Anholt1-1/+1
2009-05-19Add manpages for all installed binaries.Eric Anholt1-0/+1
2009-03-31Add a couple of other intel_upload_blit_large variants for comparison.Eric Anholt1-1/+1
2009-03-27rename projectEric Anholt1-2/+2
2009-03-27Add intel_stepping from the 2D driver.Eric Anholt1-0/+1
2009-03-26Add the tests we want from libdrm.Eric Anholt1-0/+1
2009-03-26Fix project name/version for distfiles.Eric Anholt1-3/+3
2009-03-26Initial import of intel-graphics-tools with some microbenchmarks.Eric Anholt1-0/+70