[xserver-commit] xserver/hw/kdrive Makefile.am,1.15,1.16

Eric Anholt xserver-commit@pdx.freedesktop.org
Sun, 30 Nov 2003 20:34:04 -0800


Committed by: anholt

Update of /cvs/xserver/xserver/hw/kdrive
In directory pdx:/home/anholt/xserver/hw/kdrive

Modified Files:
	Makefile.am 
Log Message:
- Add fbdev mode-setting backend to Xati.  It and vesa are compiled
  in when available, with fbdev being used by default.
- Use depth 16 by default when vesa backend is used.
- Add MMIO defines for PowerPC (should be in a common location).

Many thanks for Michel Daenzer for much of this code.


Index: Makefile.am
===================================================================
RCS file: /cvs/xserver/xserver/hw/kdrive/Makefile.am,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- Makefile.am	19 Nov 2003 08:32:33 -0000	1.15
+++ Makefile.am	1 Dec 2003 04:33:32 -0000	1.16
@@ -1,10 +1,14 @@
 if KDRIVEVESA
-VESA_SUBDIRS = vesa ati mach64 mga nvidia r128 smi
+VESA_SUBDIRS = vesa mach64 mga nvidia r128 smi
 endif
 
-SUBDIRS =	\
-	src	\
-	linux	\
-	fbdev	\
-	$(VESA_SUBDIRS)
+if KDRIVEFBDEV
+FBDEV_SUBDIRS = fbdev
+endif
 
+SUBDIRS =			\
+	src			\
+	linux			\
+	$(FBDEV_SUBDIRS)	\
+	$(VESA_SUBDIRS)		\
+	ati