Salome HOME
Fix compilation problems on RedHat
[modules/smesh.git] / build_configure
1 #!/bin/bash
2
3 #
4 # Tool for updating list of .in file for the SALOME project 
5 # and regenerating configure script
6 #
7 # Author : Marc Tajchman - CEA
8 # Date : 10/10/2002
9 # Modified by : Alexander BORODIN (OCN) - autotools usage
10 # $Header$
11 #
12
13 ORIG_DIR=`pwd`
14 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
15
16 ########################################################################
17 # Test if the KERNEL_ROOT_DIR is set correctly
18
19 if test ! -d "${KERNEL_ROOT_DIR}"; then
20     echo "failed : KERNEL_ROOT_DIR variable is not correct !"
21     exit
22 fi
23
24 # Test if the KERNEL_SRC is set correctly
25
26 #if test ! -d "${KERNEL_SRC}"; then
27 #    echo "failed : KERNEL_SRC variable is not correct !"
28 #    exit
29 #fi
30
31 ########################################################################
32 # Test if the GUI_ROOT_DIR is set correctly
33
34 if test ! -d "${GUI_ROOT_DIR}"; then
35     echo "failed : GUI_ROOT_DIR variable is not correct !"
36     exit
37 fi
38
39 ########################################################################
40 # Test if the MED_ROOT_DIR is set correctly
41
42 if test ! -d "${MED_ROOT_DIR}"; then
43     echo "failed : MED_ROOT_DIR variable is not correct !"
44     exit
45 fi
46
47 ########################################################################
48 # Test if the GEOM_ROOT_DIR is set correctly
49
50 if test ! -d "${GEOM_ROOT_DIR}"; then
51     echo "failed : GEOM_ROOT_DIR variable is not correct !"
52     exit
53 fi
54
55
56 cd ${CONF_DIR}
57 ABS_CONF_DIR=`pwd`
58
59 mkdir -p salome_adm/unix/config_files
60 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files/* salome_adm/unix/config_files
61 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/pythonbe.py salome_adm/unix
62
63 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/SALOMEconfig.h.in salome_adm/unix
64
65 cp -f ${GUI_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
66 cp -f ${MED_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
67 cp -f ${GEOM_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
68
69 # remove KERNEL deprecated configure files
70 for deprecated in ac_cc_warnings.m4 ac_cxx_partial_specialization.m4 \
71   check_mico.m4 config.guess ltmain.sh ac_cxx_bool.m4 ltconfig ac_cxx_typename.m4 \
72     check_pthreads.m4 config.sub libtool.m4 ac_cxx_mutable.m4 missing
73     do
74       rm -f salome_adm/unix/config_files/${deprecated}
75       done
76       
77
78 # ____________________________________________________________________
79 # aclocal creates the aclocal.m4 file from the standard macro and the
80 # custom macro embedded in the directory salome_adm/unix/config_files
81 # and KERNEL config_files directory.
82 # output:
83 #   aclocal.m4
84 #   autom4te.cache (directory)
85 echo "====================================================== aclocal"
86
87 aclocal -I adm_local/unix/config_files -I salome_adm/unix/config_files  || exit 1
88
89 # ____________________________________________________________________
90 # libtoolize creates some configuration files (ltmain.sh,
91 # config.guess and config.sub). It only depends on the libtool
92 # version. The files are created in the directory specified with the
93 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
94 # output:
95 #   salome_adm/unix/config_files/config.guess
96 #   salome_adm/unix/config_files/config.sub
97 #   salome_adm/unix/config_files/ltmain.sh
98 #echo "====================================================== libtoolize"
99
100 libtoolize --force --copy --automake || exit 1
101
102 # ____________________________________________________________________
103 # autoconf creates the configure script from the file configure.ac (or
104 # configure.in if configure.ac doesn't exist)
105 # output:
106 #   configure
107 echo "====================================================== autoconf"
108
109 autoconf
110
111 # ____________________________________________________________________
112 # automake creates some scripts used in building process
113 # (install-sh, missing, ...). It only depends on the automake
114 # version. The files are created in the directory specified with the
115 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
116 # creates the Makefile.in files from the Makefile.am files.
117 # output:
118 #   salome_adm/unix/config_files/compile
119 #   salome_adm/unix/config_files/depcomp
120 #   salome_adm/unix/config_files/install-sh
121 #   salome_adm/unix/config_files/missing
122 #   salome_adm/unix/config_files/py-compile
123 #   Makefile.in (from Makefile.am)
124 echo "====================================================== automake"
125
126 automake --copy --gnu --add-missing