Salome HOME
Add autoconf macros
authorrnv <rnv@opencascade.com>
Wed, 3 Aug 2016 14:15:46 +0000 (17:15 +0300)
committerrnv <rnv@opencascade.com>
Tue, 30 Aug 2016 09:27:03 +0000 (12:27 +0300)
adm_local/unix/config_files/CMakeLists.txt
adm_local/unix/config_files/check_Med.m4
adm_local/unix/config_files/check_parmetis.m4 [deleted file]
adm_local/unix/config_files/check_scotch.m4 [deleted file]

index b1a5ec5b425356b0766a51745d4b19a311f8bb89..7d2f7de1bab2e31c5c97524055f8f8cfda4c538f 100644 (file)
@@ -25,8 +25,6 @@ SET(dist_admlocalm4_DATA
     check_bft.m4
     check_fvm.m4
     check_metis.m4
-    check_parmetis.m4
-    check_scotch.m4
     med_check_sizeof_medint.m4
     renumber.m4
     splitter.m4
index b7a5949f5b54fa2e5b008c5bf2672e38cafbd1e5..09ced1d1840f20b1dafdeeafe4f2c0ce6d1504cc 100644 (file)
@@ -42,7 +42,7 @@ AC_ARG_WITH(med,
 
 if test "x${MED_DIR}" == "x" ; then
   AC_MSG_RESULT(for \${MED_ROOT_DIR}: ${MED_ROOT_DIR})
-# no --with-med-dir option used
+   # --with-med option is not used
    if test "x${MED_ROOT_DIR}" != "x" ; then
 
     # MED_ROOT_DIR environment variable defined
@@ -52,8 +52,6 @@ if test "x${MED_DIR}" == "x" ; then
 
 fi
 
-MED_ENABLE_MULTIPR=no
-
 if test -f ${MED_DIR}/idl/salome/MEDCouplingCorbaServant.idl ; then
    AC_MSG_RESULT(Using Med module distribution in ${MED_DIR})
    Med_ok=yes
@@ -70,24 +68,10 @@ if test -f ${MED_DIR}/idl/salome/MEDCouplingCorbaServant.idl ; then
    AC_SUBST(MED_LDFLAGS)
    AC_SUBST(MED_CXXFLAGS)
 
-   # MULTIPR
-   AC_CHECK_FILE(${MED_DIR}/include/salome/MULTIPR_Obj.hxx,
-                 ENABLE_MULTIPR=yes,
-                 ENABLE_MULTIPR=no)
-   AC_SUBST(ENABLE_MULTIPR)
-   MULTIPR_CPPFLAGS=""
-   MULTIPR_LIBS=""
-   if test "x${ENABLE_MULTIPR}" = "xyes" ; then
-      MULTIPR_CPPFLAGS="-DENABLE_MULTIPR"
-      MULTIPR_LIBS="-lMULTIPR_API"
-   fi
-   AC_SUBST(MULTIPR_CPPFLAGS)
-   AC_SUBST(MULTIPR_LIBS)
 else
    AC_MSG_WARN("Cannot find Med module sources")
 fi
 
 AC_MSG_RESULT(for Med: $Med_ok)
-AC_MSG_RESULT(for MULTIPR Med package: $ENABLE_MULTIPR)
 
 ])dnl
diff --git a/adm_local/unix/config_files/check_parmetis.m4 b/adm_local/unix/config_files/check_parmetis.m4
deleted file mode 100644 (file)
index 90321fe..0000000
+++ /dev/null
@@ -1,217 +0,0 @@
-dnl Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
-dnl
-dnl Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-dnl CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
-dnl
-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, or (at your option) any later version.
-dnl
-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.
-dnl
-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
-dnl
-dnl See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
-dnl
-
-#for a future use...see further down AC_DEFUN([CHECK_PARMETISV4]
-
-#for use with ParMETIS V3
-AC_DEFUN([CHECK_PARMETIS],[
-AC_REQUIRE([AC_PROG_CC])dnl
-AC_REQUIRE([AC_PROG_CPP])dnl
-AC_REQUIRE([CHECK_MPI])dnl
-
-AC_CHECKING(for ParMETIS V3 Library)
-
-AC_LANG_SAVE
-AC_LANG_C
-
-PARMETIS_CPPFLAGS=""
-PARMETIS_LIBS=""
-ENABLE_PARMETIS="no"
-
-AC_CHECKING(for ParMETIS location)
-AC_ARG_WITH(parmetis,
-            [  --with-parmetis=DIR      root directory path to ParMETIS library installation ],
-            [PARMETISDIR="$withval"
-             AC_MSG_RESULT("select $withval as path to ParMETIS library")])
-
-AC_MSG_RESULT(\$PARMETISDIR = ${PARMETISDIR})
-
-CPPFLAGS_old="${CPPFLAGS}"
-LIBS_old=$LIBS
-
-if test "x${PARMETISDIR}" != "x" ; then
-  PARMETIS_CPPFLAGS="-DMED_ENABLE_PARMETIS -I${PARMETISDIR} ${MPI_INCLUDES}"
-  PARMETIS_LIBS="-L${PARMETISDIR} -lparmetis -lmetis ${MPI_LIBS}"
-fi
-
-parmetis_ok=no
-parmetis_headers_ok=no
-parmetis_binaries_ok=no
-
-dnl ParMETIS headers
-AC_CHECKING(for ParMETIS headers)
-CPPFLAGS="${CPPFLAGS_old} ${PARMETIS_CPPFLAGS}"
-
-parmetis_include_dir_ok=yes
-if test "x${PARMETISDIR}" != "x" ; then
-  AC_CHECK_FILE(${PARMETISDIR}/parmetis.h,
-                parmetis_include_dir_ok=yes,
-                parmetis_include_dir_ok=no)
-fi
-
-if test "x${parmetis_include_dir_ok}" = "xyes" ; then
-  AC_TRY_COMPILE([#include <parmetis.h>],
-                 [ParMETIS_V3_PartGeom(0,0,0,0,0)],
-                 parmetis_headers_ok=yes,
-                 parmetis_headers_ok=no)
-fi
-
-if test "x${parmetis_headers_ok}" = "xyes" ; then
-  AC_MSG_RESULT(\$PARMETIS_CPPFLAGS = ${PARMETIS_CPPFLAGS})
-fi
-AC_MSG_RESULT(for ParMETIS headers: $parmetis_headers_ok)
-
-if test "x${parmetis_headers_ok}" = "xyes" ; then
-  dnl ParMETIS binaries
-  AC_CHECKING(for ParMETIS binaries)
-  parmetis_lib_dir_ok=yes
-  AC_CHECK_FILE(${PARMETISDIR}/libparmetis.a,
-                parmetis_lib_dir_ok=yes,
-                parmetis_lib_dir_ok=no)
-
-  if test "x${parmetis_lib_dir_ok}" = "xyes" ; then
-    LIBS="${LIBS_old} ${PARMETIS_LIBS}"
-    AC_TRY_LINK([#include <parmetis.h>],
-                [ParMETIS_V3_PartGeom(0,0,0,0,0)],
-                parmetis_binaries_ok=yes,
-                parmetis_binaries_ok=no)
-  fi
-fi
-
-if test "x${parmetis_binaries_ok}" = "xyes" ; then
-  AC_MSG_RESULT(\$PARMETIS_LIBS = ${PARMETIS_LIBS})
-fi
-AC_MSG_RESULT(for ParMETIS binaries: $parmetis_binaries_ok)
-
-CPPFLAGS="${CPPFLAGS_old}"
-LIBS="${LIBS_old}"
-
-if test "x${parmetis_headers_ok}" = "xyes" ; then
-  if test "x${parmetis_binaries_ok}" = "xyes" ; then
-    parmetis_ok=yes
-    ENABLE_PARMETIS="yes"
-    # ParMETIS includes METIS, so we redefine METIS cppflags and libs
-    # And metis.h #include parmetis.h + mpi.h
-    metis_ok=yes
-    ENABLE_METIS="yes"
-    METISDIR=${PARMETISDIR}
-    METIS_CPPFLAGS="-DMED_ENABLE_METIS -I${METISDIR}/METISLib ${PARMETIS_CPPFLAGS}"
-    METIS_LIBS="-L${METISDIR} -lmetis ${MPI_LIBS}"
-  fi
-fi
-
-AC_MSG_RESULT(for ParMETIS: $parmetis_ok)
-
-AC_SUBST(ENABLE_PARMETIS)
-AC_SUBST(PARMETIS_CPPFLAGS)
-AC_SUBST(PARMETIS_LIBS)
-AC_SUBST(ENABLE_METIS)
-AC_SUBST(METIS_CPPFLAGS)
-AC_SUBST(METIS_LIBS)
-
-AC_LANG_RESTORE
-
-])dnl
-
-#for a future use...
-AC_DEFUN([CHECK_PARMETISV4],[
-AC_REQUIRE([AC_PROG_CC])dnl
-AC_REQUIRE([AC_PROG_CPP])dnl
-AC_REQUIRE([CHECK_MPI])dnl
-
-AC_CHECKING(for ParMETIS V4 Library)
-
-AC_LANG_SAVE
-AC_LANG_C
-
-PARMETIS_CPPFLAGS=""
-PARMETIS_LIBS=""
-ENABLE_PARMETIS="no"
-
-AC_CHECKING(for ParMETIS location)
-AC_ARG_WITH(parmetis,
-            [  --with-parmetis=DIR      root directory path to ParMETIS library installation ],
-            [PARMETISDIR="$withval"
-             AC_MSG_RESULT("select $withval as path to ParMETIS library")])
-
-AC_MSG_RESULT(\$PARMETISDIR = ${PARMETISDIR})
-
-CPPFLAGS_old="${CPPFLAGS}"
-LIBS_old=$LIBS
-
-if test "x${PARMETISDIR}" != "x" ; then
-  PARMETIS_CPPFLAGS="-DMED_ENABLE_PARMETIS -I${PARMETISDIR}/include ${MPI_INCLUDES}"
-  PARMETIS_LIBS="-L${PARMETISDIR}/lib -lparmetis -lmetis ${MPI_LIBS}"
-fi
-
-parmetis_ok=no
-parmetis_headers_ok=no
-parmetis_binaries_ok=no
-
-dnl ParMETIS headers
-AC_CHECKING(for ParMETIS headers)
-CPPFLAGS="${CPPFLAGS_old} ${PARMETIS_CPPFLAGS}"
-
-parmetis_include_dir_ok=yes
-if test "x${PARMETISDIR}" != "x" ; then
-  AC_CHECK_FILE(${PARMETISDIR}/include/parmetis.h,
-                parmetis_headers_ok=yes,
-                parmetis_headers_ok=no)
-fi
-
-if test "x${parmetis_headers_ok}" = "xyes" ; then
-  AC_MSG_RESULT(\$PARMETIS_CPPFLAGS = ${PARMETIS_CPPFLAGS})
-fi
-AC_MSG_RESULT(for ParMETIS headers: $parmetis_headers_ok)
-
-if test "x${parmetis_headers_ok}" = "xyes" ; then
-  dnl ParMETIS binaries
-  AC_CHECKING(for ParMETIS binaries)
-  AC_CHECK_FILE(${PARMETISDIR}/lib/libparmetis.a,
-                parmetis_binaries_ok=yes,
-                parmetis_binaries_ok=no)
-fi
-
-if test "x${parmetis_binaries_ok}" = "xyes" ; then
-  AC_MSG_RESULT(\$PARMETIS_LIBS = ${PARMETIS_LIBS})
-fi
-AC_MSG_RESULT(for ParMETIS binaries: $parmetis_binaries_ok)
-
-CPPFLAGS="${CPPFLAGS_old}"
-LIBS="${LIBS_old}"
-
-if test "x${parmetis_headers_ok}" = "xyes" ; then
-  if test "x${parmetis_binaries_ok}" = "xyes" ; then
-    parmetis_ok=yes
-    ENABLE_PARMETIS="yes"
-  fi
-fi
-
-AC_MSG_RESULT(for ParMETIS: $parmetis_ok)
-
-AC_SUBST(ENABLE_PARMETIS)
-AC_SUBST(PARMETIS_CPPFLAGS)
-AC_SUBST(PARMETIS_LIBS)
-
-AC_LANG_RESTORE
-
-])dnl
diff --git a/adm_local/unix/config_files/check_scotch.m4 b/adm_local/unix/config_files/check_scotch.m4
deleted file mode 100644 (file)
index 0bb9e13..0000000
+++ /dev/null
@@ -1,147 +0,0 @@
-dnl Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
-dnl
-dnl Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-dnl CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
-dnl
-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, or (at your option) any later version.
-dnl
-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.
-dnl
-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
-dnl
-dnl See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
-dnl
-
-AC_DEFUN([CHECK_SCOTCH],[
-
-AC_CHECKING(for scotch)
-
-AC_LANG_SAVE
-AC_LANG_C
-
-dnl
-dnl default values
-dnl
-SCOTCH_CPPFLAGS="SCOTCH_CPPFLAGS_NOT_DEFINED"
-SCOTCH_LIBS="SCOTCH_LIBS_NOT_FOUND"
-SCOTCH_LIBSUFFIX="-not-defined"
-
-ENABLE_SCOTCH="no"
-
-AC_CHECKING(for scotch location)
-
-AC_ARG_WITH(scotch,
-            [  --with-scotch=DIR      root directory path to SCOTCH library installation ],
-            [SCOTCHDIR="$withval"
-             AC_MSG_RESULT([Select $withval as path to SCOTCH library])])
-
-if test "x${SCOTCHDIR}" = "x" ; then
-  AC_MSG_WARN(SCOTCHDIR is not specified)
-  AC_MSG_NOTICE(Trying native scotch...)
-  SCOTCHDIR=/usr
-fi
-
-CPPFLAGS_old="${CPPFLAGS}"
-LIBS_old=$LIBS
-
-scotch_ok=no
-scotch_headers_ok=no
-scotch_binaries_ok=no
-
-dnl
-dnl SCOTCH headers
-dnl
-AC_CHECKING(for SCOTCH headers)
-
-for d in ${SCOTCHDIR}/include ${SCOTCHDIR}/include/scotch ${SCOTCHDIR}/bin ${SCOTCHDIR} ; do
-  dnl
-  dnl check scotch.h file availability
-  dnl
-  AC_CHECK_FILE([${d}/scotch.h],
-                [scotch_include_dir_ok=yes],
-                [scotch_include_dir_ok=no])
-
-  if test "x${scotch_include_dir_ok}" = "xyes" ; then
-    LOCAL_INCLUDES="-DMED_ENABLE_SCOTCH -I${d} ${MPI_INCLUDES}"
-    CPPFLAGS="${CPPFLAGS_old} ${LOCAL_INCLUDES} -std=c99"
-    AC_TRY_COMPILE([
-      #include <stdio.h>
-      #include <scotch.h>
-      ],
-      [SCOTCH_Graph* graph; SCOTCH_graphInit(graph)],
-      [scotch_headers_ok=yes],
-      [scotch_headers_ok=no])
-    if test "x${scotch_headers_ok}" = "xyes" ; then
-      break;
-    fi
-  fi
-done
-
-dnl
-dnl result for headers
-dnl
-AC_MSG_RESULT(for scotch headers: $scotch_headers_ok)
-
-dnl
-dnl SCOTCH libraries
-dnl
-if test "x${scotch_headers_ok}" = "xyes" ; then
-  AC_CHECKING(for scotch libraries)
-
-  for d in ${SCOTCHDIR}/lib ${SCOTCHDIR}/lib64 ${SCOTCHDIR}/lib/scotch ${SCOTCHDIR}/lib64/scotch ${SCOTCHDIR}/bin ${SCOTCHDIR} ; do
-    LOCAL_LIBS="-L${d} -lscotch -lscotcherr"
-    LIBS="${LIBS_old} ${LOCAL_LIBS}"
-    AC_TRY_LINK([
-      #include <stdio.h>
-      #include <scotch.h>
-      ],
-      [SCOTCH_Graph* graph; SCOTCH_graphInit(graph)],
-      [scotch_binaries_ok=yes],
-      [scotch_binaries_ok=no])
-    if test "x${scotch_binaries_ok}" = "xyes" ; then
-      break;
-    fi
-  done
-fi
-
-dnl
-dnl result for libraries
-dnl
-AC_MSG_RESULT(for scotch libraries: $scotch_binaries_ok)
-
-dnl
-dnl summary
-dnl
-if test "x${scotch_binaries_ok}" = "xyes" ; then
-  SCOTCH_CPPFLAGS=${LOCAL_INCLUDES}
-  SCOTCH_LIBS=${LOCAL_LIBS}
-  SCOTCH_LIBSUFFIX=""
-  ENABLE_SCOTCH="yes"
-  scotch_ok=yes
-  AC_MSG_RESULT(\$SCOTCH_CPPFLAGS  = ${SCOTCH_CPPFLAGS})
-  AC_MSG_RESULT(\$SCOTCH_LIBS      = ${SCOTCH_LIBS})
-  AC_MSG_RESULT(\$SCOTCH_LIBSUFFIX = ${SCOTCH_LIBSUFFIX})
-fi
-AC_MSG_RESULT(for scotch: $scotch_ok)
-
-CPPFLAGS="${CPPFLAGS_old}"
-LIBS="${LIBS_old}"
-
-AC_SUBST(SCOTCH_CPPFLAGS)
-AC_SUBST(SCOTCH_LIBSUFFIX)
-AC_SUBST(SCOTCH_LIBS)
-AC_SUBST(ENABLE_SCOTCH)
-
-AC_LANG_RESTORE
-
-])dnl
-
-