Salome HOME
compatibility hdf 1.8.x
[modules/kernel.git] / salome_adm / unix / config_files / check_hdf5.m4
1 dnl  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 dnl
3 dnl  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 dnl  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 dnl
6 dnl  This library is free software; you can redistribute it and/or
7 dnl  modify it under the terms of the GNU Lesser General Public
8 dnl  License as published by the Free Software Foundation; either
9 dnl  version 2.1 of the License.
10 dnl
11 dnl  This library is distributed in the hope that it will be useful,
12 dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 dnl  Lesser General Public License for more details.
15 dnl
16 dnl  You should have received a copy of the GNU Lesser General Public
17 dnl  License along with this library; if not, write to the Free Software
18 dnl  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 dnl
20 dnl  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 dnl
22 AC_DEFUN([CHECK_HDF5],[
23 AC_REQUIRE([AC_PROG_CC])dnl
24 AC_REQUIRE([AC_PROG_CPP])dnl
25
26 AC_CHECKING(for HDF5)
27
28 AC_ARG_WITH(hdf5,
29     [AC_HELP_STRING([--with-hdf5=DIR],[root directory path to hdf5 installation])],
30     [HDF5HOME="$withval"
31       AC_MSG_RESULT("select $withval as path to hdf5")
32     ])
33
34 AC_SUBST(HDF5_INCLUDES)
35 AC_SUBST(HDF5_LIBS)
36 AC_SUBST(HDF5_MT_LIBS)
37
38 HDF5_INCLUDES=""
39 HDF5_LIBS=""
40 HDF5_MT_LIBS=""
41
42 hdf5_ok=no
43
44 LOCAL_INCLUDES=""
45 LOCAL_LIBS=""
46 LOCAL_RLIBS=""
47
48 if test -z $HDF5HOME
49 then
50    AC_MSG_WARN(undefined HDF5HOME variable which specify hdf5 installation directory)
51 else
52    LOCAL_INCLUDES="-I$HDF5HOME/include"
53    if test "x$HDF5HOME" = "x/usr"
54    then
55       LOCAL_LIBS=""
56    else
57       LOCAL_LIBS="-L$HDF5HOME/lib"
58       LOCAL_RLIBS="-R$HDF5HOME/lib"
59    fi
60 fi
61
62 dnl hdf5 headers
63
64 CPPFLAGS_old="$CPPFLAGS"
65 CPPFLAGS="$CPPFLAGS $LOCAL_INCLUDES"
66 AC_CHECK_HEADER(hdf5.h,hdf5_ok=yes ,hdf5_ok=no)
67 CPPFLAGS="$CPPFLAGS_old"
68
69
70 if  test "x$hdf5_ok" = "xyes"
71 then
72
73 dnl hdf5 library
74
75   LIBS_old="$LIBS"
76   LIBS="$LIBS $LOCAL_LIBS"
77   AC_CHECK_LIB(hdf5,H5open,hdf5_ok=yes,hdf5_ok=no)
78   LIBS="$LIBS_old"
79
80 fi
81
82 if  test "x$hdf5_ok" = "xyes"
83 then
84   HDF5_INCLUDES="$LOCAL_INCLUDES"
85   HDF5_LIBS="$LOCAL_LIBS -lhdf5 $LOCAL_RLIBS"
86   HDF5_MT_LIBS="$LOCAL_LIBS -lhdf5 $LOCAL_RLIBS"
87 fi
88
89 if  test "x$hdf5_ok" = "xyes"
90 then
91   HDF5_INCLUDES="$HDF5_INCLUDES -DH5_USE_16_API"
92 fi
93
94 AC_MSG_RESULT(for hdf5: $hdf5_ok)
95
96 ])dnl