Displaying 1 result from an estimated 1 matches for "sbmlode_includ".
Did you mean:
sbmlode_include
2005 Oct 05
1
Problems with autoconf example from r-ext.
..._INIT([SBMLodeSolveR])
dnl Select an optional include path, from a configure option
dnl or from an environment variable.
AC_ARG_WITH([sbmlode-include],
AC_HELP_STRING([--with-sbmlode-include=INCLUDE_PATH],
[the location of SBMLODE header files]),
[sbmlode_include_path=$withval])
if test [ -n "$sbmlode_include_path" ] ; then
AC_SUBST([CPPFLAGS],["-I${sbmlode_include_path} ${CPPFLAGS}"])
else
if test [ -n "${SBMLODE_INCLUDE}" ] ; then
AC_SUBST([CPPFLAGS],["-I${SBMLODE_INCLUDE} ${CPPFLAGS}"])
fi
fi
dnl dit...