On Fri, 19 Nov 2004 11:43:05 -0800 [EMAIL PROTECTED] wrote:
WC> The means to include the ieee802dot11 module is
WC> 
WC> ./configure --with-mib-modules="dot11/ieee802dot11"
WC> 
WC> ---- Original message ----
WC> >From: Robert Story (Users) <[EMAIL PROTECTED]>  
WC> >
WC> >Generally configure will check for the existence of the routine and only
WC> >call it if it is already defined. I can only guess that you are using
WC> >configure from and older release, and it assumed the function was always
WC> >defined.

Hmmm... well, it looks like the way configure works that an error from grep
would cause a shutdown routine to be expected. Try taking out the stub routine
your put in, editing configure around line 10292 and changing 

        if grep shutdown_`basename $i` $srcdir/$mibdir/$i.c > /dev/null; then

to

        grep shutdown_`basename $i` $srcdir/$mibdir/$i.c > /dev/null
        if test $? -eq 0; then

and re-running configure. A quick peek in agent/mibgroup/mib_module_shutdown.h
will tell you if it worked.. there shouldn't be any code there for your table.


-- 
Robert Story; NET-SNMP Junkie
Support: <http://www.net-snmp.org/> <irc://irc.freenode.net/#net-snmp>  
Archive: <http://sourceforge.net/mailarchive/forum.php?forum=net-snmp-users>

You are lost in a twisty maze of little standards, all different. 


-------------------------------------------------------
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
_______________________________________________
Net-snmp-users mailing list
[EMAIL PROTECTED]
Please see the following page to unsubscribe or change other options:
https://lists.sourceforge.net/lists/listinfo/net-snmp-users

Reply via email to