Re: How to hide help text

2000-02-16 Thread Alexandre Oliva
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,

How to hide help text

2000-02-16 Thread Peter Eisentraut
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? --