diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2012-07-17 21:22:57 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2012-07-17 21:37:28 +0100 |
commit | caef63e0268e59e439b030a9a338e81d5cf8e311 (patch) | |
tree | c853ced8515e58d7322d55cb4ead708bd78e71ab /src/legacy/i810/Makefile.am | |
parent | 53ff19f45a3cc4863845c23e8d3c2c2b95e03fd9 (diff) |
i810: Split xaa routines from common acceleration methods
Some of the routines in i810_accel.c are specific to XAA whilst others
are used elsewhere, for example in i810_dri.c. Therefore we have to be
selective over which ones we compile out without xaa.
Reported-by: Knut Petersen <Knut_Petersen@t-online.de>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/legacy/i810/Makefile.am')
-rw-r--r-- | src/legacy/i810/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/legacy/i810/Makefile.am b/src/legacy/i810/Makefile.am index 07a384f6..51489b8c 100644 --- a/src/legacy/i810/Makefile.am +++ b/src/legacy/i810/Makefile.am @@ -8,6 +8,7 @@ AM_CFLAGS = @CWARNFLAGS@ @XORG_CFLAGS@ @DRM_CFLAGS@ @DRI_CFLAGS@ @PCIACCESS_CFLA $(NULL) liblegacy_i810_la_SOURCES = \ + i810_accel.c \ i810_common.h \ i810_cursor.c \ i810_driver.c \ @@ -20,7 +21,7 @@ liblegacy_i810_la_SOURCES = \ if XAA liblegacy_i810_la_SOURCES += \ - i810_accel.c + i810_xaa.c endif if DGA |