https://github.com/cran/Matrix
Raw File
Tip revision: d48c7564aa3a9da931870fc54265f7c133f17caf authored by Douglas Bates on 22 July 2002, 00:00:00 UTC
version 0.3-19
Tip revision: d48c756
configure.ac
AC_INIT([src/SVD.cc])
: ${R_HOME=`R RHOME`}
if test -z "${R_HOME}"; then
  echo "could not determine R_HOME"
  exit 1
fi
CC=`${R_HOME}/bin/R CMD config CC`
AC_PROG_CC
F77=`${R_HOME}/bin/R CMD config F77`
AC_PROG_F77
ACX_BLAS([], AC_MSG_ERROR([could not find your BLAS library], 1))
ACX_LAPACK([], AC_MSG_ERROR([could not find your LAPACK library], 1))
AC_OUTPUT([src/Makevars])
back to top