https://github.com/cran/RandomFields
Raw File
Tip revision: b56f7a28e59b21773db3483310cae6fa56c716eb authored by Martin Schlather on 26 April 2016, 01:33:08 UTC
version 3.1.12
Tip revision: b56f7a2
configure.ac
# autoconf configure.ac > configure && chmod +x configure

# Urversion vo 2.0.66
# ab 2.0.67 geaendert.

AC_INIT([RandomFields], 1.3) dnl package name, version

        
: ${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`
CC = gcc-4.9 -std=gnu99 -fsanitize=address -fno-omit-frame-pointer
CFLAGS=`"${R_HOME}/bin/R" CMD config CFLAGS`


AC_CONFIG_FILES([src/Makevars])
AC_OUTPUT
back to top