netgenplugin/adm_local/unix/config_files/check_NETGENPLUGIN.m4

76 lines
2.4 KiB
Plaintext
Raw Normal View History

2012-08-09 17:45:31 +06:00
dnl Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
2009-02-17 12:15:34 +05:00
dnl
2012-08-09 17:45:31 +06:00
dnl Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
dnl CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2009-02-17 12:15:34 +05:00
dnl
2012-08-09 17:45:31 +06:00
dnl This library is free software; you can redistribute it and/or
dnl modify it under the terms of the GNU Lesser General Public
dnl License as published by the Free Software Foundation; either
dnl version 2.1 of the License.
2009-02-17 12:15:34 +05:00
dnl
2012-08-09 17:45:31 +06:00
dnl This library 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 GNU
dnl Lesser General Public License for more details.
2009-02-17 12:15:34 +05:00
dnl
2012-08-09 17:45:31 +06:00
dnl You should have received a copy of the GNU Lesser General Public
dnl License along with this library; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2009-02-17 12:15:34 +05:00
dnl
2012-08-09 17:45:31 +06:00
dnl See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2009-02-17 12:15:34 +05:00
dnl
2012-08-09 17:45:31 +06:00
#------------------------------------------------------------
# Check availability of Salome NETGEN mesh plugin module
# distribution
#------------------------------------------------------------
2004-03-26 12:05:19 +05:00
AC_DEFUN([CHECK_NETGENPLUGIN],[
2004-03-26 12:05:19 +05:00
AC_CHECKING(for NETGEN mesh plugin)
2004-03-26 12:05:19 +05:00
NGplugin_ok=no
2004-03-26 12:05:19 +05:00
NETGENPLUGIN_LDLAGS=""
NETGENPLUGIN_CXXFLAGS=""
2004-03-26 12:05:19 +05:00
AC_ARG_WITH(netgenplugin,
[ --with-netgenplugin=DIR root directory path of NETGEN mesh plugin installation ],
NETGENPLUGIN_DIR="$withval",NETGENPLUGIN_DIR="")
2004-03-26 12:05:19 +05:00
if test "x$NETGENPLUGIN_DIR" == "x" ; then
2004-03-26 12:05:19 +05:00
# no --with-netgenplugin-dir option used
2004-03-26 12:05:19 +05:00
if test "x$NETGENPLUGIN_ROOT_DIR" != "x" ; then
2004-03-26 12:05:19 +05:00
# NETGENPLUGIN_ROOT_DIR environment variable defined
NETGENPLUGIN_DIR=$NETGENPLUGIN_ROOT_DIR
2004-03-26 12:05:19 +05:00
fi
#
fi
if test -f ${NETGENPLUGIN_DIR}/lib${LIB_LOCATION_SUFFIX}/salome/libNETGENEngine.so ; then
NGplugin_ok=yes
AC_MSG_RESULT(Using NETGEN mesh plugin distribution in ${NETGENPLUGIN_DIR})
if test "x$NETGENPLUGIN_ROOT_DIR" == "x" ; then
NETGENPLUGIN_ROOT_DIR=${NETGENPLUGIN_DIR}
fi
AC_SUBST(NETGENPLUGIN_ROOT_DIR)
2004-03-26 12:05:19 +05:00
NETGENPLUGIN_LDFLAGS=-L${NETGENPLUGIN_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
NETGENPLUGIN_CXXFLAGS=-I${NETGENPLUGIN_DIR}/include/salome
2004-03-26 12:05:19 +05:00
AC_SUBST(NETGENPLUGIN_LDFLAGS)
AC_SUBST(NETGENPLUGIN_CXXFLAGS)
else
AC_MSG_WARN("Cannot find compiled NETGEN mesh plugin distribution")
fi
2004-03-26 12:05:19 +05:00
AC_MSG_RESULT(for NETGEN mesh plugin: $NGplugin_ok)
2004-03-26 12:05:19 +05:00
])dnl