Hi,

If I'm not mistaken the configure.ac scripts of 0.6.0 and cvs contain a
bug.  If --enable-loopback (or --enable-loopback=yes, or ... )is passed to
the configure-script, the loopback driver is _not_ built.

The following patch should solve this minor problem.

Index: configure.ac
===================================================================
RCS file: /cvsroot/rtnet/rtnet/configure.ac,v
retrieving revision 1.30
diff -u -r1.30 configure.ac
--- configure.ac        21 Jan 2004 14:38:16 -0000      1.30
+++ configure.ac        29 Jan 2004 14:01:12 -0000
@@ -682,7 +682,7 @@
        AC_HELP_STRING([--enable-loopback], [build loopback driver
(default: enabled)]),
        [case "$enableval" in
        n | no ) CONFIG_RTNET_LOOPBACK=no ;;
-       *) unset CONFIG_RTNET_LOOPBACK ;;
+       *) CONFIG_RTNET_LOOPBACK=yes ;;
        esac],
        CONFIG_RTNET_LOOPBACK=yes)
 AC_MSG_RESULT([${CONFIG_RTNET_LOOPBACK:-no}])




regards,

klaas



-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
_______________________________________________
RTnet-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/rtnet-users

Reply via email to