config/companion_libs/cloog.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 17 23:06:02 2010 +0100 (2010-01-17)
changeset 1740 c57458bb354d
parent 1535 073d351bdcd3
child 1873 4477403726db
permissions -rw-r--r--
configure: do not require hg when configuring in an hg clone

When configuring in an hg clone, we need hg to compute the version string.
It can happen that users do not have Mercurial (eg. if they got a snapshot
rather that they did a full clone). In this case, we can still run, of
course, so simply fill the version string with a sufficiently explicit
value, that does not require hg. The date is a good candidate.
     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_7
    10     bool
    11     prompt "0.15.7"
    12 
    13 config CLOOG_V_0_15_6
    14     bool
    15     prompt "0.15.6"
    16 
    17 config CLOOG_V_0_15_5
    18     bool
    19     prompt "0.15.5 (OBSOLETE)"
    20     depends on OBSOLETE
    21 
    22 config CLOOG_V_0_15_4
    23     bool
    24     prompt "0.15.4 (OBSOLETE)"
    25     depends on OBSOLETE
    26 
    27 config CLOOG_V_0_15_3
    28     bool
    29     prompt "0.15.3 (OBSOLETE)"
    30     depends on OBSOLETE
    31 
    32 endchoice
    33 
    34 config CLOOG_VERSION
    35     string
    36 # Don't remove next line
    37 # CT_INSERT_VERSION_STRING_BELOW
    38     default "0.15.7" if CLOOG_V_0_15_7
    39     default "0.15.6" if CLOOG_V_0_15_6
    40     default "0.15.5" if CLOOG_V_0_15_5
    41     default "0.15.4" if CLOOG_V_0_15_4
    42     default "0.15.3" if CLOOG_V_0_15_3