I'd like to move the configure prompts for values earlier in the configure process. Currently they are at the end, which means if you fat-finger a response (or the configure option that provides the value so that you don't need a response), you have to re-run configure and go through the long process of module configuration again. I don't think this should have any real impact, but want to run it by everyone (particularly Wes and Dave) to see if there's a good reason to keep it at the end.
diff --git a/net-snmp/configure.ac b/net-snmp/configure.ac index cc115bb..bd56202 100644 --- a/net-snmp/configure.ac +++ b/net-snmp/configure.ac @@ -42,6 +42,7 @@ AC_SUBST(CONFIGURE_OPTIONS) # checks for system services m4_include([configure.d/config_project_with_enable]) +m4_include([configure.d/config_project_manual]) m4_include([configure.d/config_os_progs]) m4_include([configure.d/config_project_paths]) m4_include([configure.d/config_os_headers]) @@ -71,8 +72,6 @@ AC_SUBST(AGENTLIBS) AC_SUBST(OTHERAGENTLIBOBJS) AC_SUBST(OTHERAGENTLIBLOBJS) -m4_include([configure.d/config_project_manual]) - AC_SUBST(DLLIBS) AC_CONFIG_FILES([Makefile:Makefile.top:Makefile.in:Makefile.rules]) ------------------------------------------------------------------------------ _______________________________________________ Net-snmp-coders mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/net-snmp-coders
