Changeset 1017
- Timestamp:
- 03/14/08 22:46:38 (9 months ago)
- Files:
-
- 1 modified
-
branches/alonbl/build/configure.ac (modified) (13 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/alonbl/build/configure.ac
r1016 r1017 80 80 AC_ARG_ENABLE( 81 81 [strict], 82 [AC_HELP_STRING([--enable-strict], [enable strict compile mode [[default=disabled]]])],82 [AC_HELP_STRING([--enable-strict], [enable strict compile mode @<:@disabled@:>@])], 83 83 , 84 84 [enable_strict="no"] … … 87 87 AC_ARG_ENABLE( 88 88 [pedantic], 89 [AC_HELP_STRING([--enable-pedantic], [enable pedantic compile mode [[desfault=disabled]]])],89 [AC_HELP_STRING([--enable-pedantic], [enable pedantic compile mode @<:@disabled@:>@])], 90 90 , 91 91 [enable_pedantic="no"] … … 94 94 AC_ARG_ENABLE( 95 95 [doc], 96 [AC_HELP_STRING([--enable-doc], [enable installation of documents. [[default=disabled]]])],96 [AC_HELP_STRING([--enable-doc], [enable installation of documents. @<:@disabled@:>@])], 97 97 , 98 98 [enable_doc="no"] … … 101 101 AC_ARG_ENABLE( 102 102 [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@:>@])], 104 104 , 105 105 [enable_api_doc="no"] … … 108 108 AC_ARG_ENABLE( 109 109 [pcsc], 110 [AC_HELP_STRING([--enable-pcsc], [enable pcsc support. [[default=disabled]]])],110 [AC_HELP_STRING([--enable-pcsc], [enable pcsc support. @<:@disabled@:>@])], 111 111 , 112 112 [enable_pcsc="no"] … … 115 115 AC_ARG_ENABLE( 116 116 [usb], 117 [AC_HELP_STRING([--enable-usb], [enable usb support. [[default=disabled]]])],117 [AC_HELP_STRING([--enable-usb], [enable usb support. @<:@disabled@:>@])], 118 118 , 119 119 [enable_usb="no"] … … 122 122 AC_ARG_ENABLE( 123 123 [debug], 124 [AC_HELP_STRING([--enable-debug], [enable debug messages. [[default=no]]])],124 [AC_HELP_STRING([--enable-debug], [enable debug messages. @<:@disabled@:>@])], 125 125 [test "${enableval}" = "yes" && AC_DEFINE([DEBUG], [1], [Enable debug messages.])] 126 126 ) … … 128 128 AC_ARG_ENABLE( 129 129 [sunray], 130 [AC_HELP_STRING([--enable-sunray], [enable sunray support. [[default=no]]])],130 [AC_HELP_STRING([--enable-sunray], [enable sunray support. @<:@disabled@:>@])], 131 131 [test "${enableval}" = "yes" && AC_DEFINE([sunray], [1], [Enable sunray support.])] 132 132 ) … … 134 134 AC_ARG_ENABLE( 135 135 [sunrayclient], 136 [AC_HELP_STRING([--enable-sunrayclient], [enable sunray client support. [[default=no]]])],136 [AC_HELP_STRING([--enable-sunrayclient], [enable sunray client support. @<:@disabled@:>@])], 137 137 [test "${enableval}" = "yes" && AC_DEFINE(sunrayclient, 1, [Enable sunray client support.])] 138 138 ) … … 140 140 AC_ARG_WITH( 141 141 [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@:>@])], 143 143 [ 144 144 if test "${withval}" = "yes"; then … … 153 153 AC_ARG_WITH( 154 154 [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@:>@])], 156 156 [ 157 157 if test "${withval}" = "yes"; then … … 166 166 AC_ARG_WITH( 167 167 [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@:>@])], 169 169 [ 170 170 if test "${withval}" = "yes"; then … … 179 179 AC_ARG_ENABLE( 180 180 [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@:>@])], 182 182 [ifddir="${withval}"], 183 183 [ifddir="${usrlibdir}/ifd"]
