Salome HOME
Updated copyright comment
[modules/med.git] / adm_local / unix / config_files / splitter.m4
1 dnl Copyright (C) 2007-2024  CEA, EDF, 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, or (at your option) any later version.
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
23 dnl define macros :
24 dnl AC_ENABLE_SPLITTER AC_DISABLE_SPLITTER
25 dnl author Vincent BERGEAUD
26 dnl
27 # AC_ENABLE_SPLITTER
28 AC_DEFUN([AC_ENABLE_SPLITTER], [dnl
29 define([AC_ENABLE_SPLITTER_DEFAULT], ifelse($1, yes, yes, no))dnl
30 AC_ARG_ENABLE(splitter,
31 changequote(<<, >>)dnl
32 <<  --enable-splitter[=PKGS]  build with splitter tool [default=>>AC_ENABLE_SPLITTER_DEFAULT],
33 changequote([, ])dnl
34 [p=${PACKAGE-default}
35 case "$enableval" in
36 yes) enable_splitter=yes ;;
37 no) enable_splitter=no ;;
38 *)
39   enable_splitter=no
40   # Look at the argument we got.  We use all the common list separators.
41   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
42   for pkg in $enableval; do
43     if test "X$pkg" = "X$p"; then
44       enable_splitter=yes
45     fi
46   done
47   IFS="$ac_save_ifs"
48   ;;
49 esac],
50 enable_splitter=AC_ENABLE_SPLITTER_DEFAULT)dnl
51
52 if test "X$enable_splitter" = "Xyes"; then
53   ENABLE_SPLITTER="yes"
54   AC_SUBST(ENABLE_SPLITTER)
55 fi
56 ])
57
58 # AC_DISABLE_SPLITTER - set the default flag to --disable-splitter
59 AC_DEFUN([AC_DISABLE_SPLITTER], [AC_ENABLE_SPLITTER(no)])
60