Changeset 1017

Show
Ignore:
Timestamp:
03/14/08 22:46:38 (9 months ago)
Author:
alonbl
Message:

Fixup autoconf help

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/alonbl/build/configure.ac

    r1016 r1017  
    8080AC_ARG_ENABLE( 
    8181        [strict], 
    82         [AC_HELP_STRING([--enable-strict], [enable strict compile mode [[default=disabled]]])], 
     82        [AC_HELP_STRING([--enable-strict], [enable strict compile mode @<:@disabled@:>@])], 
    8383        , 
    8484        [enable_strict="no"] 
     
    8787AC_ARG_ENABLE( 
    8888        [pedantic], 
    89         [AC_HELP_STRING([--enable-pedantic], [enable pedantic compile mode [[desfault=disabled]]])], 
     89        [AC_HELP_STRING([--enable-pedantic], [enable pedantic compile mode @<:@disabled@:>@])], 
    9090        , 
    9191        [enable_pedantic="no"] 
     
    9494AC_ARG_ENABLE( 
    9595        [doc], 
    96         [AC_HELP_STRING([--enable-doc], [enable installation of documents. [[default=disabled]]])], 
     96        [AC_HELP_STRING([--enable-doc], [enable installation of documents. @<:@disabled@:>@])], 
    9797        , 
    9898        [enable_doc="no"] 
     
    101101AC_ARG_ENABLE( 
    102102        [api-doc], 
    103         [AC_HELP_STRING([--enable-api-doc], [enable generation and installation of api documents. [[default=disabled]]])], 
     103        [AC_HELP_STRING([--enable-api-doc], [enable generation and installation of api documents. @<:@disabled@:>@])], 
    104104        , 
    105105        [enable_api_doc="no"] 
     
    108108AC_ARG_ENABLE( 
    109109        [pcsc], 
    110         [AC_HELP_STRING([--enable-pcsc], [enable pcsc support. [[default=disabled]]])], 
     110        [AC_HELP_STRING([--enable-pcsc], [enable pcsc support. @<:@disabled@:>@])], 
    111111        , 
    112112        [enable_pcsc="no"] 
     
    115115AC_ARG_ENABLE( 
    116116        [usb], 
    117         [AC_HELP_STRING([--enable-usb], [enable usb support. [[default=disabled]]])], 
     117        [AC_HELP_STRING([--enable-usb], [enable usb support. @<:@disabled@:>@])], 
    118118        , 
    119119        [enable_usb="no"] 
     
    122122AC_ARG_ENABLE( 
    123123        [debug], 
    124         [AC_HELP_STRING([--enable-debug], [enable debug messages. [[default=no]]])], 
     124        [AC_HELP_STRING([--enable-debug], [enable debug messages. @<:@disabled@:>@])], 
    125125        [test "${enableval}" = "yes" && AC_DEFINE([DEBUG], [1], [Enable debug messages.])] 
    126126) 
     
    128128AC_ARG_ENABLE( 
    129129        [sunray], 
    130         [AC_HELP_STRING([--enable-sunray], [enable sunray support. [[default=no]]])], 
     130        [AC_HELP_STRING([--enable-sunray], [enable sunray support. @<:@disabled@:>@])], 
    131131        [test "${enableval}" = "yes" && AC_DEFINE([sunray], [1], [Enable sunray support.])] 
    132132) 
     
    134134AC_ARG_ENABLE( 
    135135        [sunrayclient], 
    136         [AC_HELP_STRING([--enable-sunrayclient], [enable sunray client support. [[default=no]]])], 
     136        [AC_HELP_STRING([--enable-sunrayclient], [enable sunray client support. @<:@disabled@:>@])], 
    137137        [test "${enableval}" = "yes" && AC_DEFINE(sunrayclient, 1, [Enable sunray client support.])] 
    138138) 
     
    140140AC_ARG_WITH( 
    141141        [bundle-dir], 
    142         [AC_HELP_STRING([--with-bundle-dir=PATH], [install bundle file for pcsc-lite to PATH [[not installed]]])], 
     142        [AC_HELP_STRING([--with-bundle-dir=PATH], [install bundle file for pcsc-lite to PATH @<:@not installed@:>@])], 
    143143        [ 
    144144                if test "${withval}" = "yes"; then 
     
    153153AC_ARG_WITH( 
    154154        [udev-dir], 
    155         [AC_HELP_STRING([--with-udev-dir=PATH], [install udev files into PATH [[not installed]]])], 
     155        [AC_HELP_STRING([--with-udev-dir=PATH], [install udev files into PATH @<:@not installed@:>@])], 
    156156        [ 
    157157                if test "${withval}" = "yes"; then 
     
    166166AC_ARG_WITH( 
    167167        [hotplug-dir], 
    168         [AC_HELP_STRING([--with-hotplug-dir=PATH], [install hotplug files into PATH [[not installed]]])], 
     168        [AC_HELP_STRING([--with-hotplug-dir=PATH], [install hotplug files into PATH @<:@not installed@:>@])], 
    169169        [ 
    170170                if test "${withval}" = "yes"; then 
     
    179179AC_ARG_ENABLE( 
    180180        [ifd-dir], 
    181         [AC_HELP_STRING([--with-ifd-dir], [ifd directory. [[default=/usr/lib/ifd]]])], 
     181        [AC_HELP_STRING([--with-ifd-dir], [ifd directory. @<:@/usr/lib/ifd@:>@])], 
    182182        [ifddir="${withval}"], 
    183183        [ifddir="${usrlibdir}/ifd"]