4 # Tool for updating list of .in file for the SALOME project
5 # and regenerating configure script
7 # File : build_configure
8 # Author : Marc Tajchman - CEA
13 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
15 ########################################################################
16 # Test if the KERNEL_ROOT_DIR is set correctly
18 if test ! -d "${KERNEL_ROOT_DIR}"; then
19 echo "failed : KERNEL_ROOT_DIR variable is not correct !"
23 ########################################################################
24 # Test if the GUI_ROOT_DIR is set correctly
26 if test ! -d "${GUI_ROOT_DIR}"; then
27 echo "failed : GUI_ROOT_DIR variable is not correct !"
31 ########################################################################
32 # Test if the MED_ROOT_DIR is set correctly
34 if test ! -d "${MED_ROOT_DIR}"; then
35 echo "failed : MED_ROOT_DIR variable is not correct !"
39 ########################################################################
40 # Test if the RANDOMIZER_ROOT_DIR is set correctly
42 if test ! -d "${RANDOMIZER_ROOT_DIR}"; then
43 echo "failed : RANDOMIZER_ROOT_DIR variable is not correct !"
47 ########################################################################
48 # Test if the VISU_ROOT_DIR is set correctly
50 if test ! -d "${VISU_ROOT_DIR}"; then
51 echo "failed : VISU_ROOT_DIR variable is not correct !"
55 # Test if the KERNEL_SRC is set correctly
57 #if test ! -d "${KERNEL_SRC}"; then
58 # echo "failed : KERNEL_SRC variable is not correct !"
61 ########################################################################
62 # find_in - utility function
65 # find_in directory filename
67 # Finds files following the *.in pattern, recursively in the
68 # directory (first argument).
69 # Results are appended into the file (second argument)
71 # Difference from the standard unix find is that files are tested
80 # if the first argument is not a directory, returns
82 if [ ! -d "$1" ] ; then
86 # dont look in the CVS directories
90 */adm_local/*) return ;;
94 # for each regular file contained in the directory
95 # test if it's a .in file
101 *.in) echo " "$i" \\" >> $f;;
107 # for each subdirectory of the first argument, proceeds recursively
111 if [ -d "$i" ] ; then
118 #######################################################################
119 # Generate list of .in files (Makefile.in, config.h.in, etc)
120 # appending it in file configure.in
126 # Common part of the configure.in file
128 chmod u+w configure.in.base
129 if ! \cp -f configure.in.base configure.in_tmp1
132 echo "error : can't create files in" ${CONF_DIR}
134 chmod u-w configure.in.base
137 chmod u-w configure.in.base
139 if [ -e "${CONF_DIR}/salome_adm" ] ; then
140 \rm -f ${CONF_DIR}/salome_adm
143 # make a link allowing AC_OUTPUT to find the salome_adm/.../*.in files
144 echo "" >> configure.in_tmp1
145 echo 'ln -fs ${KERNEL_ROOT_DIR}/salome_adm ${ROOT_SRCDIR}/salome_adm' >> configure.in_tmp1
147 echo "" >> configure.in_tmp1
148 echo "AC_OUTPUT([ \\" >> configure.in_tmp1
151 # List of .in files in the adm/unix directory
152 # These files MUST be on top of AC_OUTPUT list so we
153 # put them "manually"
155 # Attention, l'ordre d'entrée des fichiers doit être choisi avec
158 echo " ./salome_adm/unix/SALOMEconfig.h \\" >> configure.in_tmp1
159 echo " ./salome_adm/unix/F77config.h \\" >> configure.in_tmp1
160 echo " ./salome_adm/unix/sstream \\" >> configure.in_tmp1
162 echo " ./salome_adm/unix/depend \\" >> configure.in_tmp1
163 echo " ./adm_local/unix/make_omniorb \\" >> configure.in_tmp1
164 echo " ./salome_adm/unix/envScript \\" >> configure.in_tmp1
165 echo " ./salome_adm/unix/make_module \\" >> configure.in_tmp1
167 # _CS_gbo Pour assurer ls construction correct de la chaîne de
168 # dépendance, il apparaît nécessaire de surcharger le make_conclude
169 # (resp. make_commence) pardéfaut, c'est à dire le make_conclude de
170 # salome_adm, par le make_conclude (resp. make_commence) du module,
171 # c'est à dire le make_conclude (resp. make_commence) du répertoire
173 echo " ./adm_local/unix/make_commence \\" >> configure.in_tmp1
174 echo " ./salome_adm/unix/make_conclude \\" >> configure.in_tmp1
176 \rm -f configure.in_tmp2 configure.in_tmp3
177 touch configure.in_tmp2
179 find_in . configure.in_tmp2
181 # _CS_gbo_100204 Mise à jour du filtre pour prise en compte des
182 # restrictions imposées par les versions récente de autoconf.
183 sed -e '/^...\/salome_adm/d' \
184 -e '/configure.in/d' \
185 -e '/^...\/adm_local/d' \
186 -e 's/.in / /' configure.in_tmp2 >> configure.in_tmp1
188 echo "])" >> configure.in_tmp1
190 # delete the link created for AC_OUTPUT
191 echo "" >> configure.in_tmp1
192 #echo 'rm -f ${ROOT_SRCDIR}/salome_adm' >> configure.in_tmp1
193 \mv configure.in_tmp1 configure.in_new
194 \rm -f configure.in_tmp2 configure.in_tmp3
197 ########################################################################
198 # Create new (or replace old) configure.in file
199 # Print a message if the file is write protected
203 if test ! -f configure.in
205 echo -n "Creating new file 'configure.in' ... "
206 if \mv configure.in_new configure.in >& /dev/null
210 echo "error, check your file permissions"
213 echo -n "Updating 'configure.in' file ... "
214 if ! \cp configure.in configure.in_old >& /dev/null
218 echo "Can't backup previous configure.in"
219 echo -n "Continue (you will not be able to revert) - (Y/N) ? "
228 if \cp configure.in_new configure.in >& /dev/null
233 echo "error, can't update previous configure.in"
237 ########################################################################
238 # Use autoconf to rebuild the configure script
243 echo -n "Updating 'configure' script ... "
245 echo -n "Creating 'configure' script ... "
248 aclocal -I adm_local/unix/config_files -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
249 -I ${GUI_ROOT_DIR}/adm_local/unix/config_files \
250 -I ${MED_ROOT_DIR}/adm_local/unix/config_files \
251 -I ${RANDOMIZER_ROOT_DIR}/adm_local/unix/config_files \
252 -I ${VISU_ROOT_DIR}/adm_local/unix/config_files
257 echo "failed (check file permissions and/or user quotas ...)"