config/tools/libelf.in
author Joachim Nilsson <jocke@vmlinux.org>
Thu Jan 07 19:20:31 2010 +0100 (2010-01-07)
branch1.5
changeset 1710 56653c9b885e
parent 1535 073d351bdcd3
child 1615 50b25816f5bb
permissions -rw-r--r--
libc/uClibc: add patch to fix IP frames on BE targets

Pack netinet structs to be possible to use for creating
IP frames on big-endian targets.

Signed-off-by: Joachim Nilsson <jocke@vmlinux.org>
[yann.morin.1998@anciens.enib.fr: removed getline patch, already in]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
(transplanted from 5c246abe7716271c0ce31d980d92eb9a304995c8)
     1 # libelf config file
     2 
     3 config TOOL_libelf
     4     help
     5       libelf lets you read, modify or create ELF files in an
     6       architecture-independent way.
     7 
     8 choice
     9     bool
    10     prompt "libelf version"
    11 # Don't remove next line
    12 # CT_INSERT_VERSION_BELOW
    13 
    14 config LIBELF_V_0_8_12
    15     bool
    16     prompt "0.8.12"
    17 
    18 config LIBELF_V_0_8_11
    19     bool
    20     prompt "0.8.11"
    21 
    22 config LIBELF_V_0_8_10
    23     bool
    24     prompt "0.8.10"
    25 
    26 endchoice
    27 
    28 config LIBELF_VERSION
    29     string
    30 # Don't remove next line
    31 # CT_INSERT_VERSION_STRING_BELOW
    32     default "0.8.12" if LIBELF_V_0_8_12
    33     default "0.8.11" if LIBELF_V_0_8_11
    34     default "0.8.10" if LIBELF_V_0_8_10