config/companion_libs/cloog.in
author Anthony Foiani <anthony.foiani@gmail.com>
Thu Apr 26 19:55:59 2012 -0600 (2012-04-26)
changeset 2939 58974be61289
parent 2758 47199f966983
child 2957 3e2f2100a76d
permissions -rw-r--r--
Allow multi-word "install" command.

Autoconf can determine that the correct install command includes flags,
e.g., "/usr/bin/install -c". When using this as a command, we can't
enclose the value in double-quotes, as that makes some shells use the
whole expression as a filename:

# this is the value returned by autoconf and stored in CT_install
$ ins="/usr/bin/install -c"

# if we call it with quotes, the command is not found
$ "${ins}"
bash: /usr/bin/install -c: No such file or directory

# removing the quotes lets it work as expected
$ ${ins}
/usr/bin/install: missing file operand
Try `/usr/bin/install --help' for more information.

Signed-Off-By: Anthony Foiani <anthony.foiani@gmail.com>
     1 # CLooG options
     2 
     3 choice
     4     bool
     5     prompt "CLooG/ppl version"
     6 # Don't remove next line
     7 # CT_INSERT_VERSION_BELOW
     8 
     9 config CLOOG_V_0_15_11
    10     bool
    11     prompt "0.15.11 (EXPERIMENTAL)"
    12     depends on EXPERIMENTAL
    13     select CLOOG_0_15_1x
    14 
    15 config CLOOG_V_0_15_10
    16     bool
    17     prompt "0.15.10"
    18     select CLOOG_0_15_1x
    19 
    20 config CLOOG_V_0_15_9
    21     bool
    22     prompt "0.15.9"
    23 
    24 config CLOOG_V_0_15_8
    25     bool
    26     prompt "0.15.8"
    27 
    28 config CLOOG_V_0_15_7
    29     bool
    30     prompt "0.15.7"
    31 
    32 config CLOOG_V_0_15_6
    33     bool
    34     prompt "0.15.6"
    35 
    36 endchoice
    37 
    38 config CLOOG_VERSION
    39     string
    40 # Don't remove next line
    41 # CT_INSERT_VERSION_STRING_BELOW
    42     default "0.15.11" if CLOOG_V_0_15_11
    43     default "0.15.10" if CLOOG_V_0_15_10
    44     default "0.15.9" if CLOOG_V_0_15_9
    45     default "0.15.8" if CLOOG_V_0_15_8
    46     default "0.15.7" if CLOOG_V_0_15_7
    47     default "0.15.6" if CLOOG_V_0_15_6
    48 
    49 config CLOOG_0_15_1x
    50     bool
    51     select CLOOG_NEEDS_AUTORECONF
    52 
    53 config CLOOG_NEEDS_AUTORECONF
    54     bool