]> SALOME platform Git repositories - samples/pylight.git/blob - configure.ac
Salome HOME
Light Python sample module
[samples/pylight.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.ac file
26
27 #  Author : Roman NIKOLAEV Open CASCADE S.A.S. (roman.nikolaev@opencascade.com)
28 #  Date   : 13/04/2009
29
30
31 AC_INIT([Salome2 Project PYLIGHT module], [5.1.1], [webmaster.salome@opencascade.com], [SalomePYLIGHT])
32 AC_CONFIG_AUX_DIR(salome_adm/unix/config_files)
33 AC_CANONICAL_HOST
34 AC_CANONICAL_TARGET
35 AM_INIT_AUTOMAKE
36
37 XVERSION=`echo $VERSION | awk -F. '{printf("0x%02x%02x%02x",$1,$2,$3)}'`
38 AC_SUBST(XVERSION)
39
40 # set up MODULE_NAME variable for dynamic construction of directories (resources, etc.)
41 MODULE_NAME=pylight
42 AC_SUBST(MODULE_NAME)
43
44 dnl
45 dnl Initialize source and build root directories
46 dnl
47
48 ROOT_BUILDDIR=`pwd`
49 ROOT_SRCDIR=`echo $0 | sed -e "s,[[^/]]*$,,;s,/$,,;s,^$,.,"`
50 cd $ROOT_SRCDIR
51 ROOT_SRCDIR=`pwd`
52 cd $ROOT_BUILDDIR
53
54 AC_SUBST(ROOT_SRCDIR)
55 AC_SUBST(ROOT_BUILDDIR)
56
57 echo
58 echo Source root directory : $ROOT_SRCDIR
59 echo Build  root directory : $ROOT_BUILDDIR
60 echo
61 echo
62
63 AC_CHECK_PROG(SHELL,sh)
64 AC_SUBST(SHELL)
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 + for shared libraries
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 python
111 echo ---------------------------------------------
112 echo
113
114 CHECK_PYTHON
115
116 AM_PATH_PYTHON(2.3)
117
118 echo
119 echo ---------------------------------------------
120 echo testing QT
121 echo ---------------------------------------------
122 echo
123
124 CHECK_QT
125
126 echo
127 echo ---------------------------------------------
128 echo Testing Kernel
129 echo ---------------------------------------------
130 echo
131
132 CHECK_KERNEL
133
134 echo
135 echo ---------------------------------------------
136 echo Testing GUI
137 echo ---------------------------------------------
138 echo
139
140 CHECK_SALOME_GUI
141
142 echo
143 echo ---------------------------------------------
144 echo Summary
145 echo ---------------------------------------------
146 echo
147
148
149 echo
150 echo ---------------------------------------------
151 echo testing VTK
152 echo ---------------------------------------------
153 echo
154
155 CHECK_VTK
156
157 echo
158 echo ---------------------------------------------
159 echo Testing pyqt
160 echo ---------------------------------------------
161 echo
162
163 CHECK_PYQT
164
165
166 echo Configure
167 variables="python_ok qt_ok pyqt_ok vtk_ok Kernel_ok"
168
169 for var in $variables
170 do
171    printf "   %10s : " `echo \$var | sed -e "s,_ok,,"`
172    eval echo \$$var
173 done
174
175 dnl We don t need to say when we re entering directories if we re using
176 dnl GNU make becuase make does it for us.
177 if test "X$GMAKE" = "Xyes"; then
178    AC_SUBST(SETX) SETX=":"
179 else
180    AC_SUBST(SETX) SETX="set -x"
181 fi
182 echo
183 echo ---------------------------------------------
184 echo generating Makefiles and configure files
185 echo ---------------------------------------------
186 echo
187
188 AC_OUTPUT_COMMANDS([ \
189       chmod +x ./bin/*; \
190 ])
191
192 # This list is initiated using autoscan and must be updated manually
193 # when adding a new file <filename>.in to manage. When you execute
194 # autoscan, the Makefile list is generated in the output file configure.scan.
195 # This could be helpfull to update de configuration.
196 AC_OUTPUT([ \
197   ./salome_adm/unix/SALOMEconfig.h \
198   ./adm_local/Makefile \
199   ./adm_local/unix/Makefile \
200   ./adm_local/unix/config_files/Makefile \
201   ./bin/VERSION \
202   ./bin/Makefile \
203   ./src/Makefile \
204   ./src/PYLIGHTGUI/Makefile \
205   ./resources/Makefile \
206   Makefile \
207 ])