|
List Info
Thread: ./configure --help formating problem?
|
|
| ./configure --help formating problem? |

|
2008-03-14 15:09:07 |
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 "$" = "yes";
then
--
Dr. Ludovic Rousseau
_______________________________________________
opensc-devel mailing list
opensc-devel lists.opensc-project.org
http://www.opensc-project.org/mailman/listinfo/opensc
-devel
|
|
| Re: ./configure --help formating
problem? |

|
2008-03-14 16:28:07 |
Hi!
I did not change this one...
You are correct... but you cannot put [ xxx [asd] ], there
is escape
sequence [ xxx <:asd:> ]
I hope the last commit is OK.
Thanks!
Alon.
On 3/14/08, Ludovic Rousseau <ludovic.rousseau gmail.com> wrote:
> 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 "$" = "yes";
then
>
>
> --
> Dr. Ludovic Rousseau
> _______________________________________________
> opensc-devel mailing list
> opensc-devel lists.opensc-project.org
> http://www.opensc-project.org/mailman/listinfo/opensc
-devel
>
_______________________________________________
opensc-devel mailing list
opensc-devel lists.opensc-project.org
http://www.opensc-project.org/mailman/listinfo/opensc
-devel
|
|
| Re: ./configure --help formating
problem? |

|
2008-03-15 15:02:41 |
On Fri, Mar 14, 2008 at 10:28 PM, Alon Bar-Lev
<alon.barlev gmail.com> wrote:
> I did not change this one...
I have not suggested your name as the culprit
> You are correct... but you cannot put [ xxx [asd] ],
there is escape
> sequence [ xxx <:asd:> ]
>
> I hope the last commit is OK.
OK for me.
Thanks
--
Dr. Ludovic Rousseau
_______________________________________________
opensc-devel mailing list
opensc-devel lists.opensc-project.org
http://www.opensc-project.org/mailman/listinfo/opensc
-devel
|
|
[1-3]
|
|