From: chas w. <ch...@us...> - 2005-02-13 17:47:38
|
Update of /cvsroot/linux-atm/linux-atm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24189 Modified Files: Tag: V2_5_0 ChangeLog configure.in Log Message: point 2 multipoint signalling Index: ChangeLog =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/ChangeLog,v retrieving revision 1.2.2.4 retrieving revision 1.2.2.5 diff -C2 -d -r1.2.2.4 -r1.2.2.5 *** ChangeLog 26 Feb 2004 01:10:37 -0000 1.2.2.4 --- ChangeLog 13 Feb 2005 17:47:18 -0000 1.2.2.5 *************** *** 1,3 **** ! Version 2.4.1 to 2.5.0 (??-???-????) ====================== --- 1,3 ---- ! Version 2.4.1 to 2.5.0 (13-FEB-2005) ====================== *************** *** 15,18 **** --- 15,19 ---- - ilmid updates from ek...@cm... - atmswitch from ele...@in... + - point to multipoint signalling support Other changes Index: configure.in =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/configure.in,v retrieving revision 1.2.2.6 retrieving revision 1.2.2.7 diff -C2 -d -r1.2.2.6 -r1.2.2.7 *** configure.in 25 Sep 2004 12:17:22 -0000 1.2.2.6 --- configure.in 13 Feb 2005 17:47:22 -0000 1.2.2.7 *************** *** 161,164 **** --- 161,182 ---- fi + pmp_send="" + AC_SUBST(pmp_send) + AC_ARG_ENABLE(multipoint, + [ --enable-multipoint Enable point to multipoint signalling], + [AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT + #include <sys/ioctl.h> + #include <linux/atmdev.h> + ], + [[ int fd; + struct atm_iobuf buf; + + ioctl(fd, ATM_ADDPARTY, &buf); + ]])], + [AC_DEFINE(MULTIPOINT, [], [Point to multipoint signalling support for atmsigd.]) + pmp_send="pmp_send"], + [AC_MSG_WARN([*** Multipoint signalling was not enabled. Missing kernel support?])], + [AC_MSG_WARN([*** Multipoint signalling was not enabled. Can't test when cross-compiling.])]) + ]) dnl Xsed="sed -e s/^X//" |