Salome HOME
copy tag mergefrom_BR_V0_1_CC_Salome_04oct07
[modules/yacs.git] / src / wrappergen / src / HXX2SALOME_GENERIC_CLASS_NAME_SRC / adm_local / unix / config_files / check_pthreads.m4
1 dnl  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 dnl  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 dnl 
4 dnl  This library is free software; you can redistribute it and/or 
5 dnl  modify it under the terms of the GNU Lesser General Public 
6 dnl  License as published by the Free Software Foundation; either 
7 dnl  version 2.1 of the License. 
8 dnl 
9 dnl  This library is distributed in the hope that it will be useful, 
10 dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 dnl  Lesser General Public License for more details. 
13 dnl 
14 dnl  You should have received a copy of the GNU Lesser General Public 
15 dnl  License along with this library; if not, write to the Free Software 
16 dnl  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 dnl 
18 dnl  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
19 dnl
20 dnl
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