On Feb 16, 2000, Peter Eisentraut <[EMAIL PROTECTED]> wrote:
> Configure options change. I'd like to issue an error message to the user
> if they happen to use an old option (or point them to the new one).
if test "x${with_option_name+set}" = xset; then
AC_MSG_ERROR([option-name is deprecated,
Configure options change. I'd like to issue an error message to the user
if they happen to use an old option (or point them to the new one). The
problem is that AC_ARG_WITH automatically adds all options to the help
output, which is sort of against the point of deprecating options. Any
clues?
--