Changeset 2968 for trunk/linbox/macros/givaro-check.m4
- Timestamp:
- 06/14/08 20:25:46 (6 months ago)
- Files:
-
- 1 modified
-
trunk/linbox/macros/givaro-check.m4 (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/linbox/macros/givaro-check.m4
r2368 r2968 17 17 18 18 AC_ARG_WITH(givaro, 19 [ --with-givaro=<path>|yes|no20 Use Givaro library.21 If argument is no, you do not have the library installed on your machine (set as default).22 If argument is yes or <empty> that means the library is reachable with the standard23 search path (/usr or /usr/local).24 Otherwise you give the <path> to the directory which contain the library.25 ], 19 [ --with-givaro=<path>|yes Use Givaro library. This library is mandatory for 20 LinBox compilation. If argument is yes or <empty> 21 that means the library is reachable with the standard 22 search path (/usr or /usr/local). Otherwise you give 23 the <path> to the directory which contain the 24 library. 25 ], 26 26 [if test "$withval" = yes ; then 27 27 GIVARO_HOME_PATH="${DEFAULT_CHECKING_PATH}" … … 29 29 GIVARO_HOME_PATH="$withval ${DEFAULT_CHECKING_PATH}" 30 30 fi], 31 [ ])31 [GIVARO_HOME_PATH="${DEFAULT_CHECKING_PATH}"]) 32 32 33 min_givaro_version=ifelse([$1], ,3. 0,$1)33 min_givaro_version=ifelse([$1], ,3.2.10,$1) 34 34 35 35 … … 39 39 BACKUP_LIBS=${LIBS} 40 40 41 if test -n "$GIVARO_HOME_PATH" ; then42 41 AC_MSG_CHECKING(for GIVARO >= $min_givaro_version) 43 fi44 42 45 43 for GIVARO_HOME in ${GIVARO_HOME_PATH}
