Hello, Using ./configure --help I have: [...] --enable-nsplugin enable nsplugin (signer). [[default=disabled]] --disable-man disable installation of manuals. [[default=enabled], [for], [none], [Windows]] --enable-doc enable installation of documents. [[default=disabled]] --enable-shared[=PKGS] build shared libraries [default=yes] [...]
I think the double [[ ]] are not needed. I think the [ ] around "for", "none" and "Windows" are also not needed Comments? A patch would be something like: Index: configure.ac =================================================================== --- configure.ac (revision 3419) +++ configure.ac (working copy) @@ -145,21 +145,21 @@ AC_ARG_ENABLE( AC_ARG_ENABLE( [pcsc], - [AC_HELP_STRING([--enable-pcsc], [enable pcsc support. [[default=disabled]]] )], + [AC_HELP_STRING([--enable-pcsc], [enable pcsc support. [default=disabled]])] , , [enable_pcsc="no"] ) AC_ARG_ENABLE( [nsplugin], - [AC_HELP_STRING([--enable-nsplugin], [enable nsplugin (signer). [[default=disabled]]])], + [AC_HELP_STRING([--enable-nsplugin], [enable nsplugin (signer). [default=disabled]])], , [enable_nsplugin="no"] ) AC_ARG_ENABLE( [man], - [AC_HELP_STRING([--disable-man], [disable installation of manuals. [[default=enabled for none Windows]]])], + [AC_HELP_STRING([--disable-man], [disable installation of manuals. [default=enabled] for none Windows])], , [ if test "${WIN32}" = "yes"; then -- Dr. Ludovic Rousseau _______________________________________________ opensc-devel mailing list opensc-devel@lists.opensc-project.org http://www.opensc-project.org/mailman/listinfo/opensc-devel