Salome HOME
To see which hdf5 we're using in configure log
[modules/kernel.git] / salome_adm / unix / config_files / DEPRECATED / check_pthreads.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 #@synonpsis CHECK_PTHREADS
23 dnl  check for pthreads system interfaces.
24 dnl  set CFLAGS_PTHREADS,  CXXFLAGS_PTHREADS and LIBS_PTHREADS to
25 dnl  flags to compiler flags for multithread program compilation (if exists),
26 dnl  and library, if one required.
27 dnl
28 dnl@author   (C) Ruslan Shevchenko <Ruslan@Shevchenko.Kiev.UA>, 1998
29 dnl@id $Id$
30 dnl ----------------------------------------------------------------
31 dnl CHECK_PTHREADS
32 AC_DEFUN([CHECK_PTHREADS],[
33 AC_CXX_OPTION(-pthread,CPPFLAGS,flag=yes,flag=no)
34
35 if test $flag = no; then
36   AC_REQUIRE([AC_CANONICAL_SYSTEM])dnl
37   AC_CHECK_HEADER(pthread.h,AC_DEFINE(HAVE_PTHREAD_H))
38   AC_CHECK_LIB(posix4,nanosleep, LIBS_PTHREADS="-lposix4",LIBS_PTHREADS="")
39   AC_CHECK_LIB(pthread,pthread_mutex_lock, 
40                LIBS_PTHREADS="-lpthread $LIBS_PTHREADS",LIBS_PTHREADS="")
41 else
42     case $host_os in
43       osf*)
44         LIBS_PTHREADS="-lpthread $LIBS_PTHREADS"
45         ;;
46     esac
47 fi
48
49 if test $flag = no && test x$LIBS_PTHREADS = x; then
50   threads_ok=no
51 else
52   threads_ok=yes
53 fi
54 ])dnl
55 dnl
56 dnl