[xserver-commit] xfree86/os-support/bus Makefile.am,1.1,1.2

Daniel Stone xserver-commit@pdx.freedesktop.org


Committed by: daniel

Update of /cvs/xserver/xfree86/os-support/bus
In directory pdx:/tmp/cvs-serv8925/os-support/bus

Modified Files:
	Makefile.am 
Log Message:
ChangeLog: fix up the date of my initial entry, add new entry.

* configure.ac:
* os-support/Makefile.am:
* os-support/bus/Makefile.am:
* OS autodetection magic for the planned supported platforms (Linux,
  BSD, Solaris); also, SBus build for SPARC. Linux/i386 is no longer
  a valid assumption.


Index: Makefile.am
===================================================================
RCS file: /cvs/xserver/xfree86/os-support/bus/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- a/Makefile.am	19 Feb 2004 03:50:06 -0000	1.1
+++ b/Makefile.am	19 Feb 2004 13:18:29 -0000	1.2
@@ -1,5 +1,8 @@
 lib_LIBRARIES = libxf86bus.a
-OSPCISOURCES = linuxPci.c
-libxf86bus_a_SOURCES = Pci.c $(OSPCISOURCES)
+if XF86_BUS_SBUS
+	ARCH_SOURCES = Sbus.c
+endif
+PCI_SOURCES = $(XF86_OS)Pci.c
+libxf86bus_a_SOURCES = Pci.c $(PCI_SOURCES) $(ARCH_SOURCES)
 INCLUDES = $(XF86_INCS)
 AM_CFLAGS = $(XF86_CFLAGS)