annotate armadillo-2.4.4/configure @ 5:79b343f3e4b8

In thi version the problem of letters assigned to each segment has been solved.
author maxzanoni76 <max.zanoni@eecs.qmul.ac.uk>
date Wed, 11 Apr 2012 13:48:13 +0100
parents 8b6102e2a9b0
children
rev   line source
max@0 1 #!/bin/sh
max@0 2
max@0 3 ABORT=no
max@0 4
max@0 5 check_cmake()
max@0 6 {
max@0 7 (cmake --version) </dev/null >/dev/null 2>&1 ||
max@0 8 {
max@0 9 echo "error: cmake 2.6 must be present to configure and install Armadillo"
max@0 10 echo ""
max@0 11 echo "cmake might be available as a package for your system,"
max@0 12 echo "or can be downloaded from http://cmake.org"
max@0 13 ABORT=yes
max@0 14 }
max@0 15 }
max@0 16
max@0 17 check_cmake
max@0 18
max@0 19 test "$ABORT" = yes && exit -1
max@0 20
max@0 21 rm -f CMakeCache.txt
max@0 22 cmake .
max@0 23