.... - Macro: AC_ARG_ENABLE (FEATURE, HELP-STRING, [ACTION-IF-GIVEN], [ACTION-IF-NOT-GIVEN]) If the user gave `configure' the option `--enable-FEATURE' or `--disable-FEATURE', run shell commands ACTION-IF-GIVEN. If neither option was given, run shell commands ACTION-IF-NOT-GIVEN. ....
Created attachment 306 [details] proposed patch
When somebody explicitly use ./configure --enable-FEATURE for one of these fixed in proposed patch this feature is disabled.
Patch seems reasonable to me. Unpatched: $ ../configure --enable-lastlog $ grep DISABLE_LAST config.h #define DISABLE_LASTLOG 1 Patched: $ ../configure --enable-lastlog $ grep DISABLE_LASTLOG config.h /* #undef DISABLE_LASTLOG */ We don't use the 3-argument AC_DEFINE*() macros at the moment, though.
Applied, apart from the 3-arg AC_DEFINE_UNQUOTED changes. Thanks.
Mass change of RESOLVED bugs to CLOSED