On 06/07/07, Need Help <[EMAIL PROTECTED]> wrote: > One more interesting thing. The ".../agent/mibgroup/Makefile.in" file > contents is shown below and it seems to have definitions for OBJS, LOBJS and > SRCS as you describe they should be (see below) > > OBJS = @mib_module_list_o@ > LOBJS = @mib_module_list_lo@ > SRCS = @mib_module_list_c@
Aha! That the problem then. These definitions are broken. Try replacing these three lines with the following: ======= @mib_module_list_o@ @mib_module_list_lo@ @mib_module_list_c@ OBJS = $(mib_module_list_o) LOBJS = $(mib_module_list_lo) SRCS = $(mib_module_list_c) ======= That's been fixed in the 5.4.x line, but obviously since 5.4 was released. The upcoming 5.4.1 should be OK. Dave ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Net-snmp-coders mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/net-snmp-coders
