dynare/m4/ax_matio.m4

53 lines
1.5 KiB
Plaintext
Raw Normal View History

2012-09-18 17:14:02 +02:00
dnl Detect the MATIO Library.
dnl
dnl Copyright (C) 2012 Dynare Team
dnl
dnl This file is part of Dynare.
dnl
dnl Dynare is free software: you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foundation, either version 3 of the License, or
dnl (at your option) any later version.
dnl
dnl Dynare is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
dnl GNU General Public License for more details.
dnl
dnl You should have received a copy of the GNU General Public License
dnl along with Dynare. If not, see <http://www.gnu.org/licenses/>.
AC_DEFUN([AX_MATIO],
[
AC_ARG_WITH(matio, AC_HELP_STRING([--with-matio=DIR], [prefix to MATIO installation]),
matio_prefix="$withval", matio_prefix="")
has_matio=yes
if test "x$matio_prefix" != "x"; then
2012-09-20 07:50:04 +02:00
CPPFLAGS_MATIO="-I$withval/include"
2012-09-18 17:14:02 +02:00
LDFLAGS_MATIO="-L$withval/lib"
else
2012-09-20 07:50:04 +02:00
CPPFLAGS_MATIO=""
2012-09-18 17:14:02 +02:00
LDFLAGS_MATIO=""
fi
2012-09-20 07:50:04 +02:00
ac_save_CPPFLAGS="$CPPFLAGS"
2012-09-18 17:14:02 +02:00
ac_save_LDFLAGS="$LDFLAGS"
LIBADD_MATIO=""
2012-09-20 07:50:04 +02:00
CPPFLAGS="$CPPFLAGS_MATIO $CPPFLAGS"
2012-09-18 17:14:02 +02:00
LDFLAGS="$LDFLAGS_MATIO $LDFLAGS"
AC_CHECK_HEADER([matio.h], [], [has_matio=no])
AC_CHECK_LIB([matio], [Mat_Open], [LIBADD_MATIO="-lmatio"], [has_matio=no])
2012-09-20 07:50:04 +02:00
CPPFLAGS="$ac_save_CPPFLAGS"
2012-09-18 17:14:02 +02:00
LDFLAGS="$ac_save_LDFLAGS"
LIBS="$ac_save_LIBS"
2012-09-20 07:50:04 +02:00
AC_SUBST(CPPFLAGS_MATIO)
2012-09-18 17:14:02 +02:00
AC_SUBST(LIBADD_MATIO)
AC_SUBST(LDFLAGS_MATIO)
])