You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
(164) |
Oct
(104) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
(17) |
Jun
|
Jul
(11) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2004 |
Jan
|
Feb
(8) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
(1) |
Nov
|
Dec
(6) |
2005 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
(13) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(7) |
Oct
(2) |
Nov
(6) |
Dec
|
2007 |
Jan
|
Feb
(3) |
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
(6) |
Aug
(36) |
Sep
(3) |
Oct
(1) |
Nov
|
Dec
(23) |
2008 |
Jan
(33) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
(13) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(32) |
Sep
|
Oct
|
Nov
(14) |
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(13) |
2011 |
Jan
(16) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: chas w. <ch...@us...> - 2013-10-25 11:30:13
|
Update of /cvsroot/linux-atm/linux-atm/src/lane In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv2088/src/lane Modified Files: Tag: V2_5_3 ldb.c Log Message: Bug#23 linux-atm-2.5.1/src/lane/ldb.c:89: possible bad if test ? https://sourceforge.net/p/linux-atm/bugs/23/ Index: ldb.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/lane/ldb.c,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** ldb.c 9 Oct 2001 22:33:07 -0000 1.2 --- ldb.c 25 Oct 2013 11:30:10 -0000 1.2.8.1 *************** *** 87,91 **** valid_char(char test) { ! return ((test >= '0' && test <= '9') || (test >= 'a' || test <= 'f') || (test >= 'A' && test <= 'F') || test == 'x' || test == 'X'); } --- 87,91 ---- valid_char(char test) { ! return ((test >= '0' && test <= '9') || (test >= 'a' && test <= 'f') || (test >= 'A' && test <= 'F') || test == 'x' || test == 'X'); } |
From: chas w. <ch...@us...> - 2011-01-24 16:21:48
|
Update of /cvsroot/linux-atm/linux-atm/src/test In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv22549/src/test Modified Files: Tag: V2_5_3 ttcp.c Log Message: integrate 000-debian_16.patch patch from openwrt socket int to socket_t conversion and some warning cleanups. also corrects some errors in the man page macros. Index: ttcp.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/test/ttcp.c,v retrieving revision 1.3 retrieving revision 1.3.4.1 diff -C2 -d -r1.3 -r1.3.4.1 *** ttcp.c 1 Jan 2008 00:14:53 -0000 1.3 --- ttcp.c 24 Jan 2011 16:21:39 -0000 1.3.4.1 *************** *** 93,97 **** struct atm_qos qos; ! int domain, fromlen; int fd; /* fd of network socket */ --- 93,98 ---- struct atm_qos qos; ! int domain; ! socklen_t fromlen; int fd; /* fd of network socket */ *************** *** 467,471 **** { struct sockaddr_atmsvc peer; ! int peerlen = sizeof(peer); if (getpeername(fd, (struct sockaddr *) &peer, &peerlen) < 0) { --- 468,472 ---- { struct sockaddr_atmsvc peer; ! socklen_t peerlen = sizeof(peer); if (getpeername(fd, (struct sockaddr *) &peer, &peerlen) < 0) { *************** *** 499,503 **** #if defined(SO_SNDBUF) || defined(SO_RCVBUF) if (sockbufsize) { ! int len; if (trans) { --- 500,504 ---- #if defined(SO_SNDBUF) || defined(SO_RCVBUF) if (sockbufsize) { ! socklen_t len; if (trans) { |
From: chas w. <ch...@us...> - 2011-01-24 16:21:48
|
Update of /cvsroot/linux-atm/linux-atm/src/mpoad In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv22549/src/mpoad Modified Files: Tag: V2_5_3 io.c mpcd.8 Log Message: integrate 000-debian_16.patch patch from openwrt socket int to socket_t conversion and some warning cleanups. also corrects some errors in the man page macros. Index: io.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/mpoad/io.c,v retrieving revision 1.3 retrieving revision 1.3.4.1 diff -C2 -d -r1.3 -r1.3.4.1 *** io.c 1 Jan 2008 00:14:51 -0000 1.3 --- io.c 24 Jan 2011 16:21:39 -0000 1.3.4.1 *************** *** 522,526 **** { struct sockaddr_atmsvc sa; ! int i, new_fd, sa_len; sa_len = sizeof(sa); --- 522,527 ---- { struct sockaddr_atmsvc sa; ! int i, new_fd; ! socklen_t sa_len; sa_len = sizeof(sa); Index: mpcd.8 =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/mpoad/mpcd.8,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** mpcd.8 9 Oct 2001 22:33:07 -0000 1.2 --- mpcd.8 24 Jan 2011 16:21:39 -0000 1.2.8.1 *************** *** 29,33 **** .SH DESCRIPTION MPOA client ! .SM(MPC) is responsible for creating and receiving internetwork layer shortcuts. Using these shortcuts MPCs forward unicast internetwork layer packets effectively over ATM without need --- 29,33 ---- .SH DESCRIPTION MPOA client ! .SM (MPC) is responsible for creating and receiving internetwork layer shortcuts. Using these shortcuts MPCs forward unicast internetwork layer packets effectively over ATM without need *************** *** 44,48 **** .SM MPOA server ! .SM(MPS). .PP Just as the Linux --- 44,48 ---- .SM MPOA server ! .SM (MPS). .PP Just as the Linux |
From: chas w. <ch...@us...> - 2011-01-24 16:21:48
|
Update of /cvsroot/linux-atm/linux-atm/src/arpd In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv22549/src/arpd Modified Files: Tag: V2_5_3 io.c table.c Log Message: integrate 000-debian_16.patch patch from openwrt socket int to socket_t conversion and some warning cleanups. also corrects some errors in the man page macros. Index: io.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/arpd/io.c,v retrieving revision 1.4 retrieving revision 1.4.4.1 diff -C2 -d -r1.4 -r1.4.4.1 *** io.c 3 Mar 2009 18:23:25 -0000 1.4 --- io.c 24 Jan 2011 16:21:39 -0000 1.4.4.1 *************** *** 278,282 **** ENTRY *entry; VCC *vcc; ! int fd,len,size,error; len = sizeof(addr); --- 278,283 ---- ENTRY *entry; VCC *vcc; ! int fd,error; ! socklen_t len,size; len = sizeof(addr); *************** *** 615,619 **** int get_local(int fd,struct sockaddr_atmsvc *addr) { ! int length,result; length = sizeof(struct sockaddr_atmsvc); --- 616,621 ---- int get_local(int fd,struct sockaddr_atmsvc *addr) { ! int result; ! size_t length; length = sizeof(struct sockaddr_atmsvc); Index: table.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/arpd/table.c,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** table.c 9 Oct 2001 22:33:06 -0000 1.2 --- table.c 24 Jan 2011 16:21:39 -0000 1.2.8.1 *************** *** 102,106 **** char qos_buf[MAX_ATM_QOS_LEN+1]; struct atm_qos qos; ! int size,sndbuf; size = sizeof(addr); --- 102,107 ---- char qos_buf[MAX_ATM_QOS_LEN+1]; struct atm_qos qos; ! int sndbuf; ! socklen_t size; size = sizeof(addr); |
From: chas w. <ch...@us...> - 2011-01-24 16:21:48
|
Update of /cvsroot/linux-atm/linux-atm/src/sigd In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv22549/src/sigd Modified Files: Tag: V2_5_3 atmsigd.conf.4 io.c Log Message: integrate 000-debian_16.patch patch from openwrt socket int to socket_t conversion and some warning cleanups. also corrects some errors in the man page macros. Index: atmsigd.conf.4 =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/sigd/atmsigd.conf.4,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** atmsigd.conf.4 9 Oct 2001 22:33:07 -0000 1.2 --- atmsigd.conf.4 24 Jan 2011 16:21:39 -0000 1.2.8.1 *************** *** 126,130 **** If an option is specified in \fBatmsigd.conf\fP and on the command line, the command line has priority. ! .COMPATIBILITY Certain options used by past versions of \fBatmsigd\fP but no longer documented on the man page are still recognized and supported, but they also yield a --- 126,130 ---- If an option is specified in \fBatmsigd.conf\fP and on the command line, the command line has priority. ! .SH COMPATIBILITY Certain options used by past versions of \fBatmsigd\fP but no longer documented on the man page are still recognized and supported, but they also yield a Index: io.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/sigd/io.c,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** io.c 9 Oct 2001 22:33:07 -0000 1.2 --- io.c 24 Jan 2011 16:21:39 -0000 1.2.8.1 *************** *** 356,360 **** if (bind(s,(struct sockaddr *) &addr,sizeof(addr)) < 0) error = errno; else { ! int size; size = sizeof(addr); --- 356,360 ---- if (bind(s,(struct sockaddr *) &addr,sizeof(addr)) < 0) error = errno; else { ! socklen_t size; size = sizeof(addr); |
From: chas w. <ch...@us...> - 2011-01-24 16:21:48
|
Update of /cvsroot/linux-atm/linux-atm/src/maint In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv22549/src/maint Modified Files: Tag: V2_5_3 atmtcp.c hediag.c Log Message: integrate 000-debian_16.patch patch from openwrt socket int to socket_t conversion and some warning cleanups. also corrects some errors in the man page macros. Index: atmtcp.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/maint/atmtcp.c,v retrieving revision 1.3 retrieving revision 1.3.4.1 diff -C2 -d -r1.3 -r1.3.4.1 *** atmtcp.c 1 Jan 2008 00:14:51 -0000 1.3 --- atmtcp.c 24 Jan 2011 16:21:39 -0000 1.3.4.1 *************** *** 818,822 **** else if (!strcmp(ARG,"listen") || (do_background = !strcmp(ARG,"listen-bg"))) { ! int fd,port,addr_len; int *fd2 = alloc_t(int); --- 818,823 ---- else if (!strcmp(ARG,"listen") || (do_background = !strcmp(ARG,"listen-bg"))) { ! int fd,port; ! socklen_t addr_len; int *fd2 = alloc_t(int); Index: hediag.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/maint/hediag.c,v retrieving revision 1.4 retrieving revision 1.4.4.1 diff -C2 -d -r1.4 -r1.4.4.1 *** hediag.c 30 Nov 2009 16:56:52 -0000 1.4 --- hediag.c 24 Jan 2011 16:21:39 -0000 1.4.4.1 *************** *** 2,5 **** --- 2,6 ---- #include <stdlib.h> #include <unistd.h> + #include <string.h> #include <sys/ioctl.h> #include <sys/types.h> |
From: chas w. <ch...@us...> - 2011-01-24 16:21:48
|
Update of /cvsroot/linux-atm/linux-atm/src/lane In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv22549/src/lane Modified Files: Tag: V2_5_3 connect.c connect_bus.c lane_atm.c lecs.c Log Message: integrate 000-debian_16.patch patch from openwrt socket int to socket_t conversion and some warning cleanups. also corrects some errors in the man page macros. Index: connect.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/lane/connect.c,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** connect.c 9 Oct 2001 22:33:06 -0000 1.2 --- connect.c 24 Jan 2011 16:21:39 -0000 1.2.8.1 *************** *** 259,263 **** { Conn_t *tmp, *newconn; ! int fd, nbytes; static char buffer[BUFSIZE]; LaneControl_t *ctmp; --- 259,264 ---- { Conn_t *tmp, *newconn; ! int fd; ! socklen_t nbytes; static char buffer[BUFSIZE]; LaneControl_t *ctmp; Index: connect_bus.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/lane/connect_bus.c,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** connect_bus.c 9 Oct 2001 22:33:06 -0000 1.2 --- connect_bus.c 24 Jan 2011 16:21:39 -0000 1.2.8.1 *************** *** 171,175 **** { Conn_t *tmp, *newconn; ! int fd, nbytes; static char buffer[BUFSIZE]; struct sockaddr_atmsvc addr; --- 171,176 ---- { Conn_t *tmp, *newconn; ! int fd; ! socklen_t nbytes; static char buffer[BUFSIZE]; struct sockaddr_atmsvc addr; Index: lane_atm.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/lane/lane_atm.c,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** lane_atm.c 9 Oct 2001 22:33:07 -0000 1.2 --- lane_atm.c 24 Jan 2011 16:21:39 -0000 1.2.8.1 *************** *** 139,143 **** struct atm_qos qos; int fd, ret; ! int len = sizeof(address); fd = socket(PF_ATMSVC, SOCK_DGRAM, 0); --- 139,143 ---- struct atm_qos qos; int fd, ret; ! socklen_t len = sizeof(address); fd = socket(PF_ATMSVC, SOCK_DGRAM, 0); Index: lecs.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/lane/lecs.c,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** lecs.c 9 Oct 2001 22:33:07 -0000 1.2 --- lecs.c 24 Jan 2011 16:21:39 -0000 1.2.8.1 *************** *** 120,124 **** fd_set fds; struct sockaddr_atmsvc client; ! int len; unsigned char buffer[P_SIZE]; --- 120,124 ---- fd_set fds; struct sockaddr_atmsvc client; ! socklen_t len; unsigned char buffer[P_SIZE]; |
From: chas w. <ch...@us...> - 2011-01-24 16:21:48
|
Update of /cvsroot/linux-atm/linux-atm/src/led In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv22549/src/led Modified Files: Tag: V2_5_3 zeppelin.8 Log Message: integrate 000-debian_16.patch patch from openwrt socket int to socket_t conversion and some warning cleanups. also corrects some errors in the man page macros. Index: zeppelin.8 =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/led/zeppelin.8,v retrieving revision 1.3 retrieving revision 1.3.4.1 diff -C2 -d -r1.3 -r1.3.4.1 *** zeppelin.8 1 Jan 2008 00:14:51 -0000 1.3 --- zeppelin.8 24 Jan 2011 16:21:39 -0000 1.3.4.1 *************** *** 100,104 **** Ethernet counterpart. .SH FILES ! .IP \fI/var/run/lec[interface number].pid\fP The file containing the process id of zeppelin. .SH BUGS --- 100,104 ---- Ethernet counterpart. .SH FILES ! .IP \fI/var/run/lec[interface\ number].pid\fP The file containing the process id of zeppelin. .SH BUGS |
From: chas w. <ch...@us...> - 2011-01-24 16:21:48
|
Update of /cvsroot/linux-atm/linux-atm/src/lib In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv22549/src/lib Modified Files: Tag: V2_5_3 ans.c sdu2cell.c unix.c Log Message: integrate 000-debian_16.patch patch from openwrt socket int to socket_t conversion and some warning cleanups. also corrects some errors in the man page macros. Index: ans.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/lib/ans.c,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** ans.c 9 Oct 2001 22:33:07 -0000 1.2 --- ans.c 24 Jan 2011 16:21:39 -0000 1.2.8.1 *************** *** 42,46 **** { unsigned char answer[MAX_ANSWER]; ! unsigned char name[MAX_NAME]; unsigned char *pos,*data,*found; int answer_len,name_len,data_len,found_len; --- 42,46 ---- { unsigned char answer[MAX_ANSWER]; ! char name[MAX_NAME]; unsigned char *pos,*data,*found; int answer_len,name_len,data_len,found_len; Index: sdu2cell.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/lib/sdu2cell.c,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** sdu2cell.c 9 Oct 2001 22:33:07 -0000 1.2 --- sdu2cell.c 24 Jan 2011 16:21:39 -0000 1.2.8.1 *************** *** 16,20 **** struct atm_qos qos; int trailer,total,cells; ! int size,i; size = sizeof(qos); --- 16,21 ---- struct atm_qos qos; int trailer,total,cells; ! int i; ! socklen_t size; size = sizeof(qos); Index: unix.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/lib/unix.c,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** unix.c 9 Oct 2001 22:33:07 -0000 1.2 --- unix.c 24 Jan 2011 16:21:39 -0000 1.2.8.1 *************** *** 64,69 **** { struct sockaddr_un addr; - int addr_size; int len; addr_size = sizeof(addr); --- 64,69 ---- { struct sockaddr_un addr; int len; + socklen_t addr_size; addr_size = sizeof(addr); |
From: chas w. <ch...@us...> - 2011-01-24 16:21:48
|
Update of /cvsroot/linux-atm/linux-atm/src/ilmid/asn1 In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv22549/src/ilmid/asn1 Modified Files: Tag: V2_5_3 asn_int.c asn_oid.c Log Message: integrate 000-debian_16.patch patch from openwrt socket int to socket_t conversion and some warning cleanups. also corrects some errors in the man page macros. Index: asn_int.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/ilmid/asn1/asn_int.c,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** asn_int.c 9 Oct 2001 22:33:06 -0000 1.2 --- asn_int.c 24 Jan 2011 16:21:39 -0000 1.2.8.1 *************** *** 186,190 **** unsigned short int indent) { ! fprintf(f,"%d", *v); } --- 186,190 ---- unsigned short int indent) { ! fprintf(f,"%ld", *v); } *************** *** 371,374 **** unsigned short int indent) { ! fprintf(f,"%u", *v); } --- 371,374 ---- unsigned short int indent) { ! fprintf(f,"%lu", *v); } Index: asn_oid.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/ilmid/asn1/asn_oid.c,v retrieving revision 1.3 retrieving revision 1.3.4.1 diff -C2 -d -r1.3 -r1.3.4.1 *** asn_oid.c 3 Mar 2009 18:23:26 -0000 1.3 --- asn_oid.c 24 Jan 2011 16:21:39 -0000 1.3.4.1 *************** *** 128,132 **** firstArcNum = 2; ! fprintf(f,"%u %u", firstArcNum, arcNum - (firstArcNum * 40)); for (; i < v->octetLen ; ) --- 128,132 ---- firstArcNum = 2; ! fprintf(f,"%d %lu", firstArcNum, arcNum - (firstArcNum * 40)); for (; i < v->octetLen ; ) *************** *** 137,141 **** arcNum = (arcNum << 7) + (v->octs[i] & 0x7f); i++; ! fprintf(f," %u", arcNum); } fprintf(f,"}"); --- 137,141 ---- arcNum = (arcNum << 7) + (v->octs[i] & 0x7f); i++; ! fprintf(f," %lu", arcNum); } fprintf(f,"}"); |
From: chas w. <ch...@us...> - 2011-01-24 16:13:39
|
Update of /cvsroot/linux-atm/linux-atm/src/test In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv20642/src/test Modified Files: Tag: V2_5_3 Makefile.am ispl_l.l Log Message: based on the openwrt 200-no_libfl.patch define our own yywrap so we dont need -lfl -- even if we did need -lfl we should use $(LEXLIB) in case something other than flex was used. Index: Makefile.am =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/test/Makefile.am,v retrieving revision 1.4 retrieving revision 1.4.4.1 diff -C2 -d -r1.4 -r1.4.4.1 *** Makefile.am 30 Nov 2009 16:56:52 -0000 1.4 --- Makefile.am 24 Jan 2011 16:13:26 -0000 1.4.4.1 *************** *** 21,25 **** isp_SOURCES = isp.c isp.h ispl_y.y ispl_l.l isp_XTRAS = $(LDADD) ! isp_LDADD = $(isp_XTRAS) -lfl isp_DEPENDENCIES = $(isp_XTRAS) window_SOURCES = window.c --- 21,25 ---- isp_SOURCES = isp.c isp.h ispl_y.y ispl_l.l isp_XTRAS = $(LDADD) ! isp_LDADD = $(isp_XTRAS) isp_DEPENDENCIES = $(isp_XTRAS) window_SOURCES = window.c Index: ispl_l.l =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/test/ispl_l.l,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** ispl_l.l 9 Oct 2001 22:33:08 -0000 1.2 --- ispl_l.l 24 Jan 2011 16:13:26 -0000 1.2.8.1 *************** *** 87,88 **** --- 87,93 ---- exit(1); } + + int yywrap(void) + { + return 1; + } |
From: chas w. <ch...@us...> - 2011-01-24 16:13:38
|
Update of /cvsroot/linux-atm/linux-atm/src/switch/debug In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv20642/src/switch/debug Modified Files: Tag: V2_5_3 Makefile.am Log Message: based on the openwrt 200-no_libfl.patch define our own yywrap so we dont need -lfl -- even if we did need -lfl we should use $(LEXLIB) in case something other than flex was used. Index: Makefile.am =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/switch/debug/Makefile.am,v retrieving revision 1.4 retrieving revision 1.4.4.1 diff -C2 -d -r1.4 -r1.4.4.1 *** Makefile.am 30 Nov 2009 16:56:52 -0000 1.4 --- Makefile.am 24 Jan 2011 16:13:26 -0000 1.4.4.1 *************** *** 6,10 **** sw_debug_XTRAS = $(top_builddir)/src/switch/libsw.a \ $(top_builddir)/src/lib/libatm.la ! sw_debug_LDADD = $(sw_debug_XTRAS) -lfl sw_debug_DEPENDENCIES = $(sw_debug_XTRAS) --- 6,10 ---- sw_debug_XTRAS = $(top_builddir)/src/switch/libsw.a \ $(top_builddir)/src/lib/libatm.la ! sw_debug_LDADD = $(sw_debug_XTRAS) sw_debug_DEPENDENCIES = $(sw_debug_XTRAS) |
From: chas w. <ch...@us...> - 2011-01-24 16:13:37
|
Update of /cvsroot/linux-atm/linux-atm/src/switch/tcp In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv20642/src/switch/tcp Modified Files: Tag: V2_5_3 Makefile.am Log Message: based on the openwrt 200-no_libfl.patch define our own yywrap so we dont need -lfl -- even if we did need -lfl we should use $(LEXLIB) in case something other than flex was used. Index: Makefile.am =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/switch/tcp/Makefile.am,v retrieving revision 1.4 retrieving revision 1.4.4.1 diff -C2 -d -r1.4 -r1.4.4.1 *** Makefile.am 30 Nov 2009 16:56:52 -0000 1.4 --- Makefile.am 24 Jan 2011 16:13:26 -0000 1.4.4.1 *************** *** 6,10 **** sw_tcp_XTRAS = $(top_builddir)/src/switch/libsw.a \ $(top_builddir)/src/lib/libatm.la ! sw_tcp_LDADD = $(sw_tcp_XTRAS) -lfl sw_tcp_DEPENDENCIES = $(sw_tcp_XTRAS) --- 6,10 ---- sw_tcp_XTRAS = $(top_builddir)/src/switch/libsw.a \ $(top_builddir)/src/lib/libatm.la ! sw_tcp_LDADD = $(sw_tcp_XTRAS) sw_tcp_DEPENDENCIES = $(sw_tcp_XTRAS) |
From: chas w. <ch...@us...> - 2011-01-24 16:13:35
|
Update of /cvsroot/linux-atm/linux-atm/src/sigd In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv20642/src/sigd Modified Files: Tag: V2_5_3 Makefile.am cfg_l.l Log Message: based on the openwrt 200-no_libfl.patch define our own yywrap so we dont need -lfl -- even if we did need -lfl we should use $(LEXLIB) in case something other than flex was used. Index: Makefile.am =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/sigd/Makefile.am,v retrieving revision 1.4 retrieving revision 1.4.4.1 diff -C2 -d -r1.4 -r1.4.4.1 *** Makefile.am 30 Nov 2009 16:56:52 -0000 1.4 --- Makefile.am 24 Jan 2011 16:13:26 -0000 1.4.4.1 *************** *** 9,13 **** $(top_builddir)/src/lib/libatm.la \ $(top_builddir)/src/saal/libsaal.a ! atmsigd_LDADD = $(atmsigd_XTRAS) -lfl atmsigd_DEPENDENCIES = mess.c $(atmsigd_XTRAS) --- 9,13 ---- $(top_builddir)/src/lib/libatm.la \ $(top_builddir)/src/saal/libsaal.a ! atmsigd_LDADD = $(atmsigd_XTRAS) atmsigd_DEPENDENCIES = mess.c $(atmsigd_XTRAS) Index: cfg_l.l =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/sigd/cfg_l.l,v retrieving revision 1.3 retrieving revision 1.3.4.1 diff -C2 -d -r1.3 -r1.3.4.1 *** cfg_l.l 1 Jan 2008 00:14:52 -0000 1.3 --- cfg_l.l 24 Jan 2011 16:13:26 -0000 1.3.4.1 *************** *** 118,119 **** --- 118,124 ---- exit(1); } + + int yywrap(void) + { + return 1; + } |
From: chas w. <ch...@us...> - 2011-01-24 16:13:35
|
Update of /cvsroot/linux-atm/linux-atm/src/switch In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv20642/src/switch Modified Files: Tag: V2_5_3 cfg_l.l Log Message: based on the openwrt 200-no_libfl.patch define our own yywrap so we dont need -lfl -- even if we did need -lfl we should use $(LEXLIB) in case something other than flex was used. Index: cfg_l.l =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/switch/cfg_l.l,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** cfg_l.l 9 Oct 2001 22:33:08 -0000 1.2 --- cfg_l.l 24 Jan 2011 16:13:26 -0000 1.2.8.1 *************** *** 72,73 **** --- 72,78 ---- exit(1); } + + int yywrap(void) + { + return 1; + } |
From: chas w. <ch...@us...> - 2011-01-24 16:13:35
|
Update of /cvsroot/linux-atm/linux-atm/src/qgen In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv20642/src/qgen Modified Files: Tag: V2_5_3 Makefile.am ql_l.l Log Message: based on the openwrt 200-no_libfl.patch define our own yywrap so we dont need -lfl -- even if we did need -lfl we should use $(LEXLIB) in case something other than flex was used. Index: Makefile.am =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/qgen/Makefile.am,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.1.2.1 diff -C2 -d -r1.4.2.1 -r1.4.2.1.2.1 *** Makefile.am 28 Dec 2010 14:29:31 -0000 1.4.2.1 --- Makefile.am 24 Jan 2011 16:13:25 -0000 1.4.2.1.2.1 *************** *** 3,7 **** qgen_SOURCES = common.c common.h file.c file.h first.c ql_y.y ql_l.l qgen.c \ qgen.h second.c third.c - qgen_LDADD = -lfl COMPILE = @CC_FOR_BUILD@ @CFLAGS_FOR_BUILD@ --- 3,6 ---- Index: ql_l.l =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/qgen/ql_l.l,v retrieving revision 1.3 retrieving revision 1.3.4.1 diff -C2 -d -r1.3 -r1.3.4.1 *** ql_l.l 30 Nov 2009 16:56:52 -0000 1.3 --- ql_l.l 24 Jan 2011 16:13:25 -0000 1.3.4.1 *************** *** 70,71 **** --- 70,76 ---- exit(1); } + + int yywrap(void) + { + return 1; + } |
From: chas w. <ch...@us...> - 2011-01-24 15:48:42
|
Update of /cvsroot/linux-atm/linux-atm In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv16234 Modified Files: Tag: V2_5_3 README configure.in Log Message: update version to 2.5.3 for this branch Index: README =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/README,v retrieving revision 1.5.2.1 retrieving revision 1.5.2.1.2.1 diff -C2 -d -r1.5.2.1 -r1.5.2.1.2.1 *** README 28 Dec 2010 15:36:07 -0000 1.5.2.1 --- README 24 Jan 2011 15:48:32 -0000 1.5.2.1.2.1 *************** *** 1,3 **** ! ATM on Linux, release 2.5.2 =========================== --- 1,3 ---- ! ATM on Linux, release 2.5.3 =========================== Index: configure.in =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/configure.in,v retrieving revision 1.5.2.1 retrieving revision 1.5.2.1.2.1 diff -C2 -d -r1.5.2.1 -r1.5.2.1.2.1 *** configure.in 28 Dec 2010 15:36:07 -0000 1.5.2.1 --- configure.in 24 Jan 2011 15:48:32 -0000 1.5.2.1.2.1 *************** *** 12,16 **** AC_CANONICAL_SYSTEM ! AM_INIT_AUTOMAKE(linux-atm,2.5.2) LIBVER_CURRENT="1" --- 12,16 ---- AC_CANONICAL_SYSTEM ! AM_INIT_AUTOMAKE(linux-atm,2.5.3) LIBVER_CURRENT="1" |
From: chas w. <ch...@us...> - 2010-12-28 16:35:56
|
Update of /cvsroot/linux-atm/linux-atm/src/q2931 In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv1157/src/q2931 Modified Files: Tag: V2_5_2 Makefile.am Log Message: do not distribute the built sources this should really be a library target Index: Makefile.am =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/q2931/Makefile.am,v retrieving revision 1.2.2.2 retrieving revision 1.2.2.3 diff -C2 -d -r1.2.2.2 -r1.2.2.3 *** Makefile.am 28 Dec 2010 16:05:27 -0000 1.2.2.2 --- Makefile.am 28 Dec 2010 16:35:46 -0000 1.2.2.3 *************** *** 4,7 **** --- 4,9 ---- noinst_PROGRAMS = q.out.o qd.dump.o check_PROGRAMS = q.test + nodist_q_out_o_SOURCES = q.out.h q.out.c q.test.c + nodist_qd_dump_o_SOURCES = qd.out.h qd.out.c qd.dump.c q_test_SOURCES = qtest.c uni.h |
From: chas w. <ch...@us...> - 2010-12-28 16:05:36
|
Update of /cvsroot/linux-atm/linux-atm/src/q2931 In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv26657/src/q2931 Modified Files: Tag: V2_5_2 Makefile.am Log Message: add missing files to EXTRA_DIST so 'make dist' works again Index: Makefile.am =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/q2931/Makefile.am,v retrieving revision 1.2.2.1 retrieving revision 1.2.2.2 diff -C2 -d -r1.2.2.1 -r1.2.2.2 *** Makefile.am 23 Dec 2010 20:56:42 -0000 1.2.2.1 --- Makefile.am 28 Dec 2010 16:05:27 -0000 1.2.2.2 *************** *** 10,14 **** #TESTS = $(check_PROGRAMS) ! EXTRA_DIST = incl.pl mknl.pl msg.fmt TODO CLEANFILES = q.out.h q.out.c q.test.c qd.out.h qd.out.c qd.dump.c qd.test.c \ --- 10,14 ---- #TESTS = $(check_PROGRAMS) ! EXTRA_DIST = op.h qlib.c qlib.h header.c script.awk mknl.pl msg.fmt TODO CLEANFILES = q.out.h q.out.c q.test.c qd.out.h qd.out.c qd.dump.c qd.test.c \ |
From: chas w. <ch...@us...> - 2010-12-28 16:04:50
|
Update of /cvsroot/linux-atm/linux-atm/src/qgen In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv26590/src/qgen Removed Files: Tag: V2_5_2 qlib.h Log Message: qlib.[ch] moved to q2931 --- qlib.h DELETED --- |
From: chas w. <ch...@us...> - 2010-12-28 16:04:21
|
Update of /cvsroot/linux-atm/linux-atm/src/qgen In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv26522/src/qgen Removed Files: Tag: V2_5_2 qlib.c Log Message: qlib.[ch] moved to q2931 --- qlib.c DELETED --- |
From: chas w. <ch...@us...> - 2010-12-28 15:38:52
|
Update of /cvsroot/linux-atm/linux-atm/src/maint In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv20689/src/maint Modified Files: Tag: V2_5_2 .cvsignore Log Message: update .cvsignore Index: .cvsignore =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/maint/.cvsignore,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** .cvsignore 1 Jan 2008 00:14:51 -0000 1.2 --- .cvsignore 28 Dec 2010 15:38:43 -0000 1.2.2.1 *************** *** 13,15 **** sonetdiag zntune ! --- 13,15 ---- sonetdiag zntune ! hediag |
From: chas w. <ch...@us...> - 2010-12-28 15:38:23
|
Update of /cvsroot/linux-atm/linux-atm/src/qgen In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv20589/src/qgen Modified Files: Tag: V2_5_2 .cvsignore Log Message: update .cvsignore's Index: .cvsignore =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/qgen/.cvsignore,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** .cvsignore 30 Nov 2009 16:56:52 -0000 1.3 --- .cvsignore 28 Dec 2010 15:38:14 -0000 1.3.2.1 *************** *** 7,8 **** --- 7,11 ---- ql_y.c ql_y.h + q.out.c + q.out.h + q.test.c |
From: chas w. <ch...@us...> - 2010-12-28 15:38:23
|
Update of /cvsroot/linux-atm/linux-atm/src/extra In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv20589/src/extra Modified Files: Tag: V2_5_2 .cvsignore Log Message: update .cvsignore's Index: .cvsignore =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/extra/.cvsignore,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** .cvsignore 1 Jan 2008 00:14:49 -0000 1.2 --- .cvsignore 28 Dec 2010 15:38:14 -0000 1.2.2.1 *************** *** 2,3 **** --- 2,6 ---- Makefile.in linux-atm.spec + pca200e.bin + pca200e_ecd.bin2 + sba200e_ecd.bin2 |
From: chas w. <ch...@us...> - 2010-12-28 15:36:17
|
Update of /cvsroot/linux-atm/linux-atm In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv20155 Modified Files: Tag: V2_5_2 configure.in README NEWS ChangeLog Log Message: update version strings to 2.5.2 Index: configure.in =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/configure.in,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** configure.in 30 Nov 2009 16:56:51 -0000 1.5 --- configure.in 28 Dec 2010 15:36:07 -0000 1.5.2.1 *************** *** 12,16 **** AC_CANONICAL_SYSTEM ! AM_INIT_AUTOMAKE(linux-atm,2.5.1) LIBVER_CURRENT="1" --- 12,16 ---- AC_CANONICAL_SYSTEM ! AM_INIT_AUTOMAKE(linux-atm,2.5.2) LIBVER_CURRENT="1" Index: README =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/README,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** README 30 Nov 2009 16:56:51 -0000 1.5 --- README 28 Dec 2010 15:36:07 -0000 1.5.2.1 *************** *** 1,3 **** ! ATM on Linux, release 2.5.1 =========================== --- 1,3 ---- ! ATM on Linux, release 2.5.2 =========================== Index: NEWS =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/NEWS,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** NEWS 1 Jan 2008 00:14:49 -0000 1.3 --- NEWS 28 Dec 2010 15:36:07 -0000 1.3.2.1 *************** *** 1,2 **** --- 1,4 ---- + December 28, 2010 Version 2.5.2 is released. + November 30, 2009 Version 2.5.1 is released. December 30, 2007 Version 2.5.0 is released. April 30, 2003 Version 2.4.1 is released. Index: ChangeLog =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/ChangeLog,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** ChangeLog 30 Nov 2009 16:56:51 -0000 1.5 --- ChangeLog 28 Dec 2010 15:36:07 -0000 1.5.2.1 *************** *** 1,2 **** --- 1,21 ---- + Version 2.5.1 to 2.5.2 (28-DEC-2010) + + Bug fixes + --------- + + - fixed automake warnings + - more cross compiling fixes + - respect DESTDIR when installing hosts.atm + + New features + ------------ + + + Other changes + ------------- + + - pca200e/sba200e firmware moved from kernel to linux-atm distribution + + Version 2.5.0 to 2.5.1 (30-NOV-2009) |