Salome HOME
Update copyright information
[plugins/netgenplugin.git] / configure.ac
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 #  PLEASE DO NOT MODIFY configure.in FILE
23 #  ALL CHANGES WILL BE DISCARDED BY THE NEXT
24 #  build_configure COMMAND
25 #  CHANGES MUST BE MADE IN configure.in.base FILE
26 # Author : Marc Tajchman (CEA)
27 # Date : 28/06/2001
28 # Modified by : Patrick GOLDBRONN (CEA)
29 # Modified by : Marc Tajchman (CEA)
30 # 13/03/2007: Alexander BORODIN - OCN
31 # Reorganization for usage of autotools
32 # Created from configure.in.base
33 #
34 AC_INIT([Salome2 Project NETGENPLUGIN module], [4.1.4], [webmaster.salome@opencascade.com], [salome])
35 AC_CONFIG_AUX_DIR(salome_adm/unix/config_files)
36 AC_CANONICAL_HOST
37 AC_CANONICAL_TARGET
38 AM_INIT_AUTOMAKE
39
40 XVERSION=`echo $VERSION | awk -F. '{printf("0x%02x%02x%02x",$1,$2,$3)}'`
41 AC_SUBST(XVERSION)
42
43 # set up MODULE_NAME variable for dynamic construction of directories (resources, etc.)
44 MODULE_NAME=netgenplugin
45 AC_SUBST(MODULE_NAME)
46
47 dnl
48 dnl Initialize source and build root directories
49 dnl
50
51 ROOT_BUILDDIR=`pwd`
52 ROOT_SRCDIR=`echo $0 | sed -e "s,[[^/]]*$,,;s,/$,,;s,^$,.,"`
53 cd $ROOT_SRCDIR
54 ROOT_SRCDIR=`pwd`
55 cd $ROOT_BUILDDIR
56
57 AC_SUBST(ROOT_SRCDIR)
58 AC_SUBST(ROOT_BUILDDIR)
59
60 echo
61 echo Source root directory : $ROOT_SRCDIR
62 echo Build  root directory : $ROOT_BUILDDIR
63 echo
64 echo
65
66 if test -z "$AR"; then
67    AC_CHECK_PROGS(AR,ar xar,:,$PATH)
68 fi
69 AC_SUBST(AR)
70
71 dnl Export the AR macro so that it will be placed in the libtool file
72 dnl correctly.
73 export AR
74
75 echo
76 echo ---------------------------------------------
77 echo testing make
78 echo ---------------------------------------------
79 echo
80
81 AC_PROG_MAKE_SET
82 AC_PROG_INSTALL
83 dnl 
84 dnl libtool macro check for CC, LD, NM, LN_S, RANLIB, STRIP + pour les librairies dynamiques !
85
86 AC_ENABLE_DEBUG(yes)
87 AC_DISABLE_PRODUCTION
88
89 echo ---------------------------------------------
90 echo testing libtool
91 echo ---------------------------------------------
92
93 dnl first, we set static to no!
94 dnl if we want it, use --enable-static
95 AC_ENABLE_STATIC(no)
96
97 AC_LIBTOOL_DLOPEN
98 AC_PROG_LIBTOOL
99
100 dnl Fix up the INSTALL macro if it s a relative path. We want the
101 dnl full-path to the binary instead.
102 case "$INSTALL" in
103    *install-sh*)
104       INSTALL='\${KERNEL_ROOT_DIR}'/salome_adm/unix/config_files/install-sh
105       ;;
106 esac
107
108 echo
109 echo ---------------------------------------------
110 echo testing C/C++
111 echo ---------------------------------------------
112 echo
113
114 cc_ok=no
115 dnl inutil car libtool
116 dnl AC_PROG_CC
117 AC_PROG_CXX
118 AC_DEPEND_FLAG
119 # AC_CC_WARNINGS([ansi])
120 cc_ok=yes
121
122 echo
123 echo ---------------------------------------------
124 echo testing Fortran
125 echo ---------------------------------------------
126 echo
127
128 fortran_ok=no
129 AC_PROG_F77
130 AC_F77_LIBRARY_LDFLAGS
131 AC_PROG_FC
132 AC_FC_LIBRARY_LDFLAGS
133 if test "X$FC" != "X" ; then
134    fortran_ok=yes
135 fi
136
137 dnl Library libdl :
138 AC_CHECK_LIB(dl,dlopen)
139
140 dnl add library libm :
141 AC_CHECK_LIB(m,ceil)
142
143 dnl 
144 dnl Well we use sstream which is not in gcc pre-2.95.3
145 dnl We must test if it exists. If not, add it in include !
146 dnl
147
148 AC_CXX_HAVE_SSTREAM
149
150 echo
151 echo ---------------------------------------------
152 echo BOOST Library
153 echo ---------------------------------------------
154 echo
155
156 CHECK_BOOST
157
158 dnl
159 dnl ---------------------------------------------
160 dnl testing MPICH
161 dnl ---------------------------------------------
162 dnl
163
164 CHECK_MPICH
165
166 echo
167 echo ---------------------------------------------
168 echo testing LEX \& YACC
169 echo ---------------------------------------------
170 echo
171
172 lex_yacc_ok=no
173 AC_PROG_YACC
174 AC_PROG_LEX
175 lex_yacc_ok=yes
176
177 echo
178 echo ---------------------------------------------
179 echo testing python
180 echo ---------------------------------------------
181 echo
182
183 CHECK_PYTHON
184
185 AM_PATH_PYTHON(2.3)
186
187 dnl echo
188 dnl echo ---------------------------------------------
189 dnl echo testing java
190 dnl echo ---------------------------------------------
191 dnl echo
192
193 dnl CHECK_JAVA
194
195 echo
196 echo ---------------------------------------------
197 echo testing swig
198 echo ---------------------------------------------
199 echo
200
201 CHECK_SWIG
202
203 echo
204 echo ---------------------------------------------
205 echo testing threads
206 echo ---------------------------------------------
207 echo
208
209 ENABLE_PTHREADS
210
211 echo
212 echo ---------------------------------------------
213 echo testing omniORB
214 echo ---------------------------------------------
215 echo
216
217 CHECK_OMNIORB
218
219 dnl echo
220 dnl echo ---------------------------------------------
221 dnl echo testing mico
222 dnl echo ---------------------------------------------
223 dnl echo
224
225 dnl CHECK_MICO
226
227 echo
228 echo ---------------------------------------------
229 echo default ORB : omniORB
230 echo ---------------------------------------------
231 echo
232
233 DEFAULT_ORB=omniORB
234 CHECK_CORBA
235
236 AC_SUBST_FILE(CORBA)
237 corba=make_$ORB
238 CORBA=adm_local/unix/$corba
239
240 NETGENPLUGIN_WITH_GUI=yes
241
242 AM_CONDITIONAL(NETGENPLUGIN_ENABLE_GUI, [test "${NETGENPLUGIN_WITH_GUI}" = "yes"])
243
244 if test "${NETGENPLUGIN_WITH_GUI}" = "yes"; then
245     echo
246     echo ---------------------------------------------
247     echo testing MSG2QM
248     echo ---------------------------------------------
249     echo
250
251     CHECK_MSG2QM
252
253     echo
254     echo ---------------------------------------------
255     echo testing openGL
256     echo ---------------------------------------------
257     echo
258
259     CHECK_OPENGL
260
261     echo
262     echo ---------------------------------------------
263     echo testing QT
264     echo ---------------------------------------------
265     echo
266
267     CHECK_QT
268
269     echo
270     echo ---------------------------------------------
271     echo testing VTK
272     echo ---------------------------------------------
273     echo
274
275     CHECK_VTK
276
277     echo
278     echo ---------------------------------------------
279     echo Testing GUI
280     echo ---------------------------------------------
281     echo
282
283     CHECK_SALOME_GUI
284
285     echo
286     echo ---------------------------------------------
287     echo Testing full GUI
288     echo ---------------------------------------------
289     echo
290
291     CHECK_CORBA_IN_GUI
292     if test "x${CORBA_IN_GUI}" != "xyes"; then
293       echo "failed : For configure NETGENPLUGIN module necessary full GUI !"
294       exit
295     fi
296 fi
297
298 echo
299 echo ---------------------------------------------
300 echo testing HDF5
301 echo ---------------------------------------------
302 echo
303
304 CHECK_HDF5
305
306 echo
307 echo ---------------------------------------------
308 echo Testing OpenCascade
309 echo ---------------------------------------------
310 echo
311
312 CHECK_CAS
313
314 echo
315 echo ---------------------------------------------
316 echo Testing html generators
317 echo ---------------------------------------------
318 echo
319
320 CHECK_HTML_GENERATORS
321
322 echo
323 echo ---------------------------------------------
324 echo Testing Kernel
325 echo ---------------------------------------------
326 echo
327
328 CHECK_KERNEL
329
330 echo
331 echo ---------------------------------------------
332 echo Testing Geom
333 echo ---------------------------------------------
334 echo
335
336 CHECK_GEOM
337
338  echo
339  echo ---------------------------------------------
340  echo Testing Med
341  echo ---------------------------------------------
342  echo
343  
344 CHECK_MED
345
346 echo
347 echo ---------------------------------------------
348 echo Testing Netgen
349 echo ---------------------------------------------
350 echo
351
352 CHECK_NETGEN
353  
354 echo
355 echo ---------------------------------------------
356 echo Testing SMesh
357 echo ---------------------------------------------
358 echo
359
360 CHECK_SMESH
361
362 echo
363 echo ---------------------------------------------
364 echo Summary
365 echo ---------------------------------------------
366 echo
367
368 #AM_CONDITIONAL( USE_GFORTRAN, [test "$F77" = "gfortran"])
369
370 echo Configure
371 if test "${NETGENPLUGIN_WITH_GUI}" = "yes"; then
372 variables="cc_ok boost_ok lex_yacc_ok python_ok swig_ok threads_ok OpenGL_ok qt_ok vtk_ok hdf5_ok omniORB_ok occ_ok doxygen_ok graphviz_ok Kernel_ok Geom_ok SMesh_ok Netgen_ok"
373 fi
374 if test "${NETGENPLUGIN_WITH_GUI}" = "no"; then
375 variables="cc_ok boost_ok lex_yacc_ok python_ok swig_ok threads_ok hdf5_ok omniORB_ok occ_ok doxygen_ok graphviz_ok Kernel_ok Geom_ok SMesh_ok Netgen_ok"
376 fi
377
378 for var in $variables
379 do
380    printf "   %10s : " `echo \$var | sed -e "s,_ok,,"`
381    eval echo \$$var
382 done
383
384 echo
385 echo "Default ORB   : $DEFAULT_ORB"
386 echo
387
388 dnl We don t need to say when we re entering directories if we re using
389 dnl GNU make becuase make does it for us.
390 if test "X$GMAKE" = "Xyes"; then
391    AC_SUBST(SETX) SETX=":"
392 else
393    AC_SUBST(SETX) SETX="set -x"
394 fi
395
396 dnl copy shells and utilities contained in the bin directory
397 dnl excluding .in files (treated in AC-OUTPUT below) and CVS
398 dnl directory
399
400 echo
401 echo ---------------------------------------------
402 echo generating Makefiles and configure files
403 echo ---------------------------------------------
404 echo
405
406 #AC_OUTPUT_COMMANDS([ \
407 #  chmod +x ./bin/*; \
408 #  chmod +x ./bin/salome/*;
409 #])
410
411 # This list is initiated using autoscan and must be updated manually
412 # when adding a new file <filename>.in to manage. When you execute
413 # autoscan, the Makefile list is generated in the output file configure.scan.
414 # This could be helpfull to update de configuration.
415 AC_OUTPUT([ \
416   ./salome_adm/unix/SALOMEconfig.h \
417   ./adm_local/Makefile \
418   ./adm_local/unix/Makefile \
419   ./adm_local/unix/config_files/Makefile \
420   ./bin/VERSION \
421   ./bin/Makefile \
422   ./NETGENPLUGIN_version.h \
423   ./src/Makefile \
424   ./src/GUI/Makefile \
425   ./src/NETGEN/Makefile \
426   ./src/NETGENPlugin/Makefile \
427   ./resources/Makefile \
428   ./idl/Makefile \
429   Makefile \
430 ])