[Libsysio-commit] HEAD: libsysio/tests Makefile.am
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2004-10-24 20:53:56
|
Update of /cvsroot/libsysio/libsysio/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16408/tests Modified Files: Makefile.am Log Message: The changes to internalize the initialization of the sockets driver means the, similar, init in the test code was redundant. That's fatal. Fixed with this mod. Index: Makefile.am =================================================================== RCS file: /cvsroot/libsysio/libsysio/tests/Makefile.am,v retrieving revision 1.21 retrieving revision 1.22 diff -u -w -b -B -p -r1.21 -r1.22 --- Makefile.am 14 Oct 2004 14:59:29 -0000 1.21 +++ Makefile.am 24 Oct 2004 20:53:46 -0000 1.22 @@ -28,16 +28,8 @@ YOD_DRIVER_NAME= YOD_DRIVER_CFLAGS= endif -if WITH_SOCKETS_DRIVER -SOCKETS_DRIVER_NAME=sockets -SOCKETS_DRIVER_CFLAGS= -I$(top_srcdir)/drivers/sockets -else -SOCKETS_DRIVER_NAME= -SOCKETS_DRIVER_CFLAGS= -endif - DRIVERS=$(NATIVE_DRIVER_NAME) $(INCORE_DRIVER_NAME) $(YOD_DRIVER_NAME) \ - $(STFD_DEV_NAME) $(SOCKETS_DRIVER_NAME) + $(STFD_DEV_NAME) CMNSRC=startup.c drv_init_all.c drv_data.c |