Update of /cvsroot/libsysio/libsysio/drivers
In directory sc8-pr-cvs1:/tmp/cvs-serv20406/drivers
Modified Files:
Tag: b_lustre
Makefile.am
Log Message:
add Lee's socket driver, with:
- use real fd number to _sysio_fd_set()
- disable bind(),listen()...
- build fix in tests
Index: Makefile.am
===================================================================
RCS file: /cvsroot/libsysio/libsysio/drivers/Makefile.am,v
retrieving revision 1.2.4.1
retrieving revision 1.2.4.2
diff -u -w -b -B -p -r1.2.4.1 -r1.2.4.2
--- Makefile.am 15 Aug 2003 07:43:15 -0000 1.2.4.1
+++ Makefile.am 8 Sep 2003 03:52:28 -0000 1.2.4.2
@@ -17,4 +17,10 @@ else
YOD_DRIVER =
endif
-SUBDIRS = $(NATIVE_DRIVER) $(INCORE_DRIVER) $(YOD_DRIVER)
+if WITH_SOCKETS
+SOCKETS_DRIVER = sockets
+else
+SOCKETS_DRIVER =
+endif
+
+SUBDIRS = $(NATIVE_DRIVER) $(INCORE_DRIVER) $(YOD_DRIVER) $(SOCKETS_DRIVER)
|