From: Rafael L. <lab...@ps...> - 2003-03-02 22:11:29
|
* Joao Cardoso <jc...@fe...> [2003-03-02 20:01]: > 1) --with-double does not appears when we do > > ./configure --help > > but it is honoured if we configure --with-double=no. Fixed in my last cvs commit. It is impressive that we have never included a MY_ARG_WITH for the --with-double option. > 3) ./configure --help | wc -l > > reports 180 lines of help!!!, 7 screen pages! > The options count are: > 29 are --with, > 49 are --enable, > 6 are --disable > 1 is --without I do not see a problem with this. I usually do "./configure --help | less". What we have absolutely to do is to update and improve the documentation in doc/docbook/src/os_notes.xml. > Is it possible to categorize this with sub-help options? I guess not. I do not know exactly what you mean. If you are suggesting that configure should accept new sub-help options like --help-foo and --help-bar, I think we are out of hope. If you are talking about a better presentation when ./configure --help is run, we could do something. For instance, if I modify the MY_ARG_WITH(double,...) that I just committed to read: MY_ARG_WITH(double,[ Options that will affect the behavior of the library: ]AC_HELP_STRING([--with-double], [Compile the library with double precision floating point ($with_double)])) then I have: ./configure --help [...] --with-mkoctfile=file Specify mkoctfile --with-octavex=file Specify Octave Options that will affect the behavior of the library: --with-double Compile the library with double precision floating point ($with_double) --with-www-user=NAME User name at WWW host [...] Of course, this will only be meaninful if we do a reorganisation of configure.ac and sysloc.in to regroup the calls to MY_ARG_WITH and MY_ARG_ENABLE in a logical order. -- Rafael |