config/tools/libelf.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Dec 22 18:21:51 2008 +0000 (2008-12-22)
changeset 1105 3ba2a43353df
parent 975 c43713a3bf7e
child 1439 2fbb4aea2a88
permissions -rw-r--r--
Rationalise ./configure
- borrow a lot of ideas from Michael ABBOTT ( http://sourceware.org/ml/crossgcc/2008-12/msg00030.html )
- should be conforming to POSIX 1003.1-2008, non compliance due to bashsims is to be considered a bug
- as a result, it now works with dash
- make a little easier to read in some places
- enforce 4-space indentation
- get rid of futile 'return $?'
- quote all variables assignments
- save and restore IFS prior to and after using alternate values
- simplify the TOOLS_TO_CHECK listing

What's left:
- provide a mean to actually _compare_ version numbers
- change the TOOLS_TO_CHECK pattern style to be able to use '|' in regexp

/trunk/configure | 243 127 116 0 ++++++++++++++++++++++++++++++++------------------------------
1 file changed, 127 insertions(+), 116 deletions(-)
yann@245
     1
# libelf config file
yann@245
     2
yann@916
     3
config TOOL_libelf
yann@245
     4
    help
yann@245
     5
      libelf lets you read, modify or create ELF files in an
yann@245
     6
      architecture-independent way.
yann@245
     7
yann@245
     8
choice
yann@245
     9
    bool
yann@245
    10
    prompt "libelf version"
yann@245
    11
yann@369
    12
config LIBELF_V_0_8_10
yann@369
    13
    bool
yann@369
    14
    prompt "0.8.10"
yann@369
    15
yann@245
    16
# CT_INSERT_VERSION_ABOVE
yann@245
    17
# Don't remove above line!
yann@245
    18
endchoice
yann@245
    19
yann@245
    20
config LIBELF_VERSION
yann@245
    21
    string
yann@369
    22
    default "0.8.10" if LIBELF_V_0_8_10
yann@245
    23
# CT_INSERT_VERSION_STRING_ABOVE
yann@245
    24
# Don't remove above line!