view src/configure.ac @ 230:1a3674836579

Provide flags for just-in-time compilation * src/configure.ac: add inst/private/get_vars.m as configured file * inst/private/get_vars.m.in: a function returning proper compiler or linker flags * inst/provate/generate_makefile.m: use flags * src/Makefile.in: add get_vars.m in the cleanall recipe
author Eugenio Gianniti <eugenio.gianniti@mail.polimi.it>
date Fri, 13 Jun 2014 18:45:40 +0200
parents 194f8c66b45a
children e348b84ecb70
line wrap: on
line source

AC_PREREQ([2.67])
AC_INIT([Fem-fenics Package], [0.0.1])

AC_USE_SYSTEM_EXTENSIONS

AC_PROG_CXX
AC_LANG(C++)

PKG_PROG_PKG_CONFIG

# Get Dense include locations
AC_ARG_WITH([eigen-includedir],
  [AS_HELP_STRING([--with-eigen-includedir=DIR],
    [location of the Eigen headers, defaults to /usr/include/])],
  [DENSE_CPPFLAGS="-I$withval"],
  [DENSE_CPPFLAGS='-I/usr/include/'])
AC_SUBST(DENSE_CPPFLAGS)
echo $DENSE_CPPFLAGS

## Check for Eigen
AC_MSG_CHECKING([for eigen3])

EIGEN_CPPFLAGS=
EIGEN_LIBS=

PKG_CHECK_EXISTS([eigen3],
  [EIGEN_CPPFLAGS=`$PKG_CONFIG --cflags eigen3`
   EIGEN_LIBS=`$PKG_CONFIG --libs eigen3`
   AC_MSG_RESULT([yes])],
  [AC_MSG_RESULT([no])
   AC_MSG_ERROR([eigen3 required to install $PACKAGE_NAME])]
  )

AC_SUBST(EIGEN_CPPFLAGS)
AC_SUBST(EIGEN_LIBS)

## Check for dolfin
AC_MSG_CHECKING([for dolfin])

DOLFIN_CPPFLAGS=
DOLFIN_LIBS=

PKG_CHECK_EXISTS([dolfin],
  [DOLFIN_CPPFLAGS=`$PKG_CONFIG --cflags dolfin`
   DOLFIN_LIBS=`$PKG_CONFIG --libs dolfin`
   AC_MSG_RESULT([yes])],
  [AC_MSG_RESULT([no])
   AC_MSG_ERROR([dolfin required to install $PACKAGE_NAME])]
  )

AC_SUBST(DOLFIN_CPPFLAGS)
AC_SUBST(DOLFIN_LIBS)


AC_CHECK_PROG([HAVE_FFC], [ffc], [yes], [no])
if [test $HAVE_FFC = "no"]; then
  AC_MSG_ERROR([ffc required to install $PACKAGE_NAME])
fi

AC_CHECK_PROG([HAVE_MKOCTFILE], [mkoctfile], [yes], [no])
if [test $HAVE_MKOCTFILE = "no"]; then
  AC_MSG_ERROR([mkoctfile required to install $PACKAGE_NAME])
fi

AC_CONFIG_FILES([Makefile ../inst/private/get_vars.m])
AC_OUTPUT