From: chas w. <ch...@us...> - 2009-11-30 16:57:04
|
Update of /cvsroot/linux-atm/linux-atm/src/test In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv18795/src/test Modified Files: Makefile.am isp.c Removed Files: mkerrnos.pl Log Message: merge 2.5.1 branch into HEAD Index: Makefile.am =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/test/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile.am 1 Jan 2008 00:14:53 -0000 1.3 --- Makefile.am 30 Nov 2009 16:56:52 -0000 1.4 *************** *** 22,36 **** isp_XTRAS = $(LDADD) isp_LDADD = $(isp_XTRAS) -lfl ! isp_DEPENDENCIES = $(isp_XTRAS) errnos.inc window_SOURCES = window.c CLEANFILES = errnos.inc ! EXTRA_DIST = ispl_y.h README.isp mkerrnos.pl ! ! isp.o: errnos.inc ! ! errnos.inc: mkerrnos.pl ! @PERL@ $(srcdir)/mkerrnos.pl </usr/include/asm/errno.h \ ! >errnos.inc || { rm -f errnos.inc; exit 1; } ! --- 22,29 ---- isp_XTRAS = $(LDADD) isp_LDADD = $(isp_XTRAS) -lfl ! isp_DEPENDENCIES = $(isp_XTRAS) window_SOURCES = window.c CLEANFILES = errnos.inc ! EXTRA_DIST = ispl_y.h README.isp Index: isp.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/test/isp.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** isp.c 9 Oct 2001 22:33:08 -0000 1.2 --- isp.c 30 Nov 2009 16:56:52 -0000 1.3 *************** *** 59,63 **** int value; } table[] = { ! #include "errnos.inc" { NULL, 0 } }; --- 59,96 ---- int value; } table[] = { ! { "EPERM", EPERM }, ! { "ENOENT", ENOENT }, ! { "ESRCH", ESRCH }, ! { "EINTR", EINTR }, ! { "EIO", EIO }, ! { "ENXIO", ENXIO }, ! { "E2BIG", E2BIG }, ! { "ENOEXEC", ENOEXEC }, ! { "EBADF", EBADF }, ! { "ECHILD", ECHILD }, ! { "EAGAIN", EAGAIN }, ! { "ENOMEM", ENOMEM }, ! { "EACCES", EACCES }, ! { "EFAULT", EFAULT }, ! { "ENOTBLK", ENOTBLK }, ! { "EBUSY", EBUSY }, ! { "EEXIST", EEXIST }, ! { "EXDEV", EXDEV }, ! { "ENODEV", ENODEV }, ! { "ENOTDIR", ENOTDIR }, ! { "EISDIR", EISDIR }, ! { "EINVAL", EINVAL }, ! { "ENFILE", ENFILE }, ! { "EMFILE", EMFILE }, ! { "ENOTTY", ENOTTY }, ! { "ETXTBSY", ETXTBSY }, ! { "EFBIG", EFBIG }, ! { "ENOSPC", ENOSPC }, ! { "ESPIPE", ESPIPE }, ! { "EROFS", EROFS }, ! { "EMLINK", EMLINK }, ! { "EPIPE", EPIPE }, ! { "EDOM", EDOM }, ! { "ERANGE", ERANGE }, { NULL, 0 } }; --- mkerrnos.pl DELETED --- |