1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
define([pkgversion], esyscmd([sh -c "grep Version: DESCRIPTION | cut -d' ' -f2 | tr -d '\n'"]))
AC_INIT(units, [pkgversion], edzer.pebesma@uni-muenster.de)
AC_MSG_NOTICE([${PACKAGE_NAME}: ${PACKAGE_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`
CFLAGS=`"${R_HOME}/bin/R" CMD config CFLAGS`
CPPFLAGS=`"${R_HOME}/bin/R" CMD config CPPFLAGS`
LDFLAGS=`"${R_HOME}/bin/R" CMD config LDFLAGS`
CXX=`"${R_HOME}/bin/R" CMD config CXX`
CXXFLAGS=`"${R_HOME}/bin/R" CMD config CXXFLAGS`
AC_LANG(C++)
AC_CHECK_HEADER_STDBOOL
AC_FUNC_ERROR_AT_LINE
AC_PREREQ
AC_PROG_CC
AC_ARG_WITH([udunits2-include],
AS_HELP_STRING([--with-udunits2-include=DIR],
[location of the udunits2 header files]),
[udunits2_include_path=$withval])
if test [ -n "$udunits2_include_path" ] ; then
UD_CPPFLAGS="-I${udunits2_include_path}"
else
if test [ -n "${UDUNITS2_INCLUDE}" ] ; then
UD_CPPFLAGS="-I${UDUNITS2_INCLUDE}"
fi
fi
AC_ARG_WITH([udunits2-lib],
AS_HELP_STRING([--with-udunits2-lib=DIR],
[location of the udunits2 libraries]),
[udunits2_lib_path=$withval])
if test [ -n "$udunits2_lib_path" ] ; then
LIBS="-L${udunits2_lib_path} ${LIBS}"
else
if test [ -n "${UDUNITS2_LIBS}" ] ; then
LIBS="-L${UDUNITS2_LIBS} ${LIBS}"
fi
fi
AC_CHECK_LIB(expat, XML_ParserCreate, [],[], ${LIBS})
if test "${ac_cv_lib_expat_XML_ParserCreate}" == yes; then
LIBS="${LIBS} -lexpat"
fi
CPPFLAGS="${UD_CPPFLAGS} ${CPPFLAGS}"
AC_CHECK_HEADER(udunits2.h, UDUNITS2_DIR=0, [
AC_CHECK_HEADER(udunits2/udunits2.h, UDUNITS2_DIR=1,
UD_ERROR="udunits2.h was not found") ])
AC_CHECK_LIB(udunits2, ut_read_xml,
LIBS="${LIBS} -ludunits2",
UD_ERROR="libudunits2.so was not found")
if test "${UD_ERROR}" != "" ; then AC_MSG_FAILURE([
--------------------------------------------------------------------------------
Configuration failed because ${UD_ERROR}. Try installing:
* deb: libudunits2-dev (Debian, Ubuntu, ...)
* rpm: udunits2-devel (Fedora, EPEL, ...)
* brew: udunits (OSX)
If udunits2 is already installed in a non-standard location, use:
--configure-args='--with-udunits2-lib=/usr/local/lib'
if the library was not found, and/or:
--configure-args='--with-udunits2-include=/usr/include/udunits2'
if the header was not found, replacing paths with appropriate values.
You can alternatively set UDUNITS2_INCLUDE and UDUNITS2_LIBS manually.
--------------------------------------------------------------------------------
]) fi
UD_CPPFLAGS="${UD_CPPFLAGS} ${CPPFLAGS}"
AC_SUBST([LIBS])
AC_SUBST([UD_CPPFLAGS])
AC_SUBST([UDUNITS2_DIR])
AC_CONFIG_FILES([src/Makevars])
AC_OUTPUT
|