config/binutils/elf2flt.in
author Matthieu Crapet <mcrapet@gmail.com>
Wed Jun 06 12:03:12 2012 +0200 (2012-06-06)
changeset 2991 252ade1e9e17
parent 2467 200836977ce6
child 3090 a221c86d9b33
permissions -rw-r--r--
libc/eglibc: fix missing LIBC_TRY_CC_OPTION definition (eglibc 2.15)

Upstream SVN is currently broken:
http://www.eglibc.org/svn/branches/eglibc-2_15/libc/

LIBC_TRY_CC_OPTION macro is not defined in aclocal.m4.
This patch fix the configure script.

Once upstream branch will be fixed this patch could be reverted.

Related patch (committed to eglibc trunk):
Use autoconf macro for testing compiler options with empty input
http://sourceware.org/ml/libc-alpha/2012-03/msg00816.html

Signed-off-by: Matthieu Crapet <mcrapet@gmail.com>

diff -r 1f6c8e4b2b92 -r d10afc5bcc25
patches/eglibc/2_15/110-aclocal-LIBC_TRY_CC_OPTION.patch
yann@1345
     1
# elf2flt options
yann@1345
     2
yann@1345
     3
if ARCH_BINFMT_FLAT
yann@1345
     4
yann@1345
     5
comment "elf2flt"
yann@1345
     6
yann@1345
     7
choice
yann@1345
     8
    bool
yann@1345
     9
    prompt "elf2flt version"
yann@1535
    10
# Don't remove next line
yann@1535
    11
# CT_INSERT_VERSION_BELOW
yann@1345
    12
yann@1345
    13
config ELF2FLT_CVSHEAD
yann@1345
    14
    bool
yann@1345
    15
    prompt "CVS Head"
yann@1345
    16
    help
yann@1345
    17
      Grab the latest version of elf2flt from the CVS repository
yann@1345
    18
yann@1345
    19
config ELF2FLT_CVS_SNAPSHOT
yann@1345
    20
    bool
yann@1345
    21
    prompt "CVS Snapshot"
yann@1345
    22
yann@1345
    23
endchoice
yann@1345
    24
yann@1345
    25
config ELF2FLT_CVS_SNAPSHOT_SPEC
yann@1345
    26
    string
yann@1345
    27
    depends on ELF2FLT_CVS_SNAPSHOT
yann@1345
    28
    default ""
yann@1345
    29
    prompt "CVS refspec for elf2flt"
yann@1345
    30
    help
yann@1345
    31
       What you enter here will be passed verbatim to the cvs checkout command
yann@1345
    32
       so be careful!
yann@1345
    33
yann@1345
    34
config ELF2FLT_VERSION
yann@1345
    35
    string
yann@1345
    36
    default "head" if ELF2FLT_CVSHEAD
yann@1535
    37
# Don't remove next line
yann@1535
    38
# CT_INSERT_VERSION_STRING_BELOW
yann@1345
    39
yann@2467
    40
config ELF2FLT_EXTRA_CONFIG_ARRAY
yann@1345
    41
    string
yann@1345
    42
    prompt "elf2flt extra config"
yann@1345
    43
    default ""
yann@1345
    44
    help
yann@1345
    45
      Extra flags passed onto ./configure when configuring
yann@2469
    46
      
yann@2469
    47
      You can enter multiple arguments here, and arguments can contain spaces
yann@2469
    48
      if they are properly quoted (or escaped, but prefer quotes). Eg.:
yann@2469
    49
          --with-foo="1st arg with 4 spaces" --with-bar=2nd-arg-without-space
yann@1345
    50
yann@1345
    51
endif