Whamcloud - gitweb
b_port_step files
[fs/lustre-release.git] / build / autoconf / lustre-build.m4
1 #
2 # LB_CHECK_VERSION
3 #
4 # Verify that LUSTRE_VERSION was defined properly
5 #
6 AC_DEFUN([LB_CHECK_VERSION],
7 [if test "LUSTRE_VERSION" = "LUSTRE""_VERSION" ; then
8         AC_MSG_ERROR([This script was not built with a version number.])
9 fi
10 ])
11
12 #
13 # LB_PATH_LIBSYSIO
14 #
15 # Handle internal/external libsysio
16 #
17 AC_DEFUN([LB_PATH_LIBSYSIO],
18 [AC_ARG_WITH([sysio],
19         AC_HELP_STRING([--with-sysio=path],
20                         [set path to libsysio source (default is included libsysio)]),
21         [],[with_sysio='yes'])
22 AC_MSG_CHECKING([location of libsysio])
23 enable_sysio="$with_sysio"
24 case x$with_sysio in
25         xyes)
26                 AC_MSG_RESULT([internal])
27                 AC_CHECK_FILE([$srcdir/libsysio/src/rmdir.c],[],[
28                         AC_MSG_ERROR([A complete internal libsysio was not found.])
29                 ])
30                 AC_CONFIG_SUBDIRS(libsysio)
31                 LIBSYSIO_SUBDIR="libsysio"
32                 SYSIO='$(top_srcdir)/libsysio'
33                 ;;
34         xno)
35                 AC_MSG_RESULT([disabled])
36                 ;;
37         *)
38                 AC_MSG_RESULT([$with_sysio])
39                 AC_CHECK_FILE([$with_sysio/src/libsysio.a],[],[
40                         AC_MSG_ERROR([A complete (built) external libsysio was not found.])
41                 ])
42                 SYSIO=$with_sysio
43                 enable_sysio="yes"
44                 ;;
45 esac
46 AC_SUBST(LIBSYSIO_SUBDIR)
47 AC_SUBST(SYSIO)
48 ])
49
50 #
51 # LB_PATH_CRAY_PORTALS
52 #
53 # Support for external Cray portals
54 #
55 AC_DEFUN([LB_PATH_CRAY_PORTALS],
56 [AC_MSG_CHECKING([for Cray portals])
57 AC_ARG_WITH([cray-portals],
58         AC_HELP_STRING([--with-cray-portals=path],
59                        [path to cray portals]),
60         [
61                 if test "$with_cray_portals" != no; then
62                         CRAY_PORTALS_PATH=$with_cray_portals
63                         CRAY_PORTALS_INCLUDES="$with_cray_portals/include"
64                         CRAY_PORTALS_LIBS="$with_cray_portals"
65                 fi
66         ],[with_cray_portals=no])
67 AC_SUBST(CRAY_PORTALS_PATH)
68 AC_MSG_RESULT([$CRAY_PORTALS_PATH])
69
70 AC_MSG_CHECKING([for Cray portals includes])
71 AC_ARG_WITH([cray-portals-includes],
72         AC_HELP_STRING([--with-cray-portals-includes=path],
73                        [path to cray portals includes]),
74         [
75                 if test "$with_cray_portals_includes" != no; then
76                         CRAY_PORTALS_INCLUDES="$with_cray_portals_includes"
77                 fi
78         ])
79 AC_SUBST(CRAY_PORTALS_INCLUDES)
80 AC_MSG_RESULT([$CRAY_PORTALS_INCLUDES])
81
82 AC_MSG_CHECKING([for Cray portals libs])
83 AC_ARG_WITH([cray-portals-libs],
84         AC_HELP_STRING([--with-cray-portals-libs=path],
85                        [path to cray portals libs]),
86         [
87                 if test "$with_cray_portals_libs" != no; then
88                         CRAY_PORTALS_LIBS="$with_cray_portals_libs"
89                 fi
90         ])
91 AC_SUBST(CRAY_PORTALS_LIBS)
92 AC_MSG_RESULT([$CRAY_PORTALS_LIBS])
93
94 if test x$CRAY_PORTALS_INCLUDES != x ; then
95         if test ! -r $CRAY_PORTALS_INCLUDES/portals/api.h ; then
96                 AC_MSG_ERROR([Cray portals headers were not found in $CRAY_PORTALS_INCLUDES.  Please check the paths passed to --with-cray-portals or --with-cray-portals-includes.])
97         fi
98 fi
99 if test x$CRAY_PORTALS_LIBS != x ; then
100         if test ! -r $CRAY_PORTALS_LIBS/libportals.a ; then
101                 AC_MSG_ERROR([Cray portals libraries were not found in $CRAY_PORTALS_LIBS.  Please check the paths passed to --with-cray-portals or --with-cray-portals-libs.])
102         fi
103 fi
104
105 AC_MSG_CHECKING([whether to use Cray portals])
106 if test x$CRAY_PORTALS_INCLUDES != x -a x$CRAY_PORTALS_LIBS != x ; then
107         with_cray_portals=yes
108         AC_DEFINE(CRAY_PORTALS, 1, [Building with Cray Portals])
109         CPPFLAGS="-I$CRAY_PORTALS_INCLUDES $CPPFLAGS"
110         EXTRA_KCFLAGS="-I-I$CRAY_PORTALS_INCLUDES $EXTRA_KCFLAGS"
111 else
112         with_cray_portals=no
113 fi
114 AC_MSG_RESULT([$with_cray_portals])
115 ])
116
117 #
118 # LB_CONFIG_MODULES
119 #
120 # Build kernel modules?
121 #
122 AC_DEFUN([LB_CONFIG_MODULES],
123 [AC_MSG_CHECKING([whether to build kernel modules])
124 AC_ARG_ENABLE([modules],
125         AC_HELP_STRING([--disable-modules],
126                         [disable building of Lustre kernel modules]),
127         [],[
128                 case $target_os in
129                         linux* | darwin*)
130                                 enable_modules='yes'
131                                 ;;
132                         *)
133                                 enable_modules='no'
134                                 ;;
135                 esac
136         ])
137 AC_MSG_RESULT([$enable_modules ($target_os)])
138
139 if test x$enable_modules = xyes ; then
140         case $target_os in
141                 linux*)
142                         LC_LINUX_SUPPORTED([LB_PROG_LINUX],
143                                 [AC_MSG_ERROR([Modules are not supported on $target_os])])
144                         ;;
145                 darwin*)
146                         LC_DARWIN_SUPPORTED([LB_PROG_DARWIN],
147                                 [AC_MSG_ERROR([Modules are not supported on $target_os])])
148                         ;;
149                 *)
150                         AC_MSG_ERROR([Modules are not supported on $target_os])
151                         ;;
152         esac
153 fi
154 ])
155
156 #
157 # LB_CONFIG_UTILS
158 #
159 # Build utils?
160 #
161 AC_DEFUN([LB_CONFIG_UTILS],
162 [AC_MSG_CHECKING([whether to build utilities])
163 AC_ARG_ENABLE([utils],
164         AC_HELP_STRING([--disable-utils],
165                         [disable building of Lustre utility programs])
166         [],[enable_utils='yes'])
167 if test x$with_cray_portals = xyes ; then
168         enable_utils='no'
169 fi
170 AC_MSG_RESULT([$enable_utils])
171 ])
172
173 #
174 # LB_CONFIG_TESTS
175 #
176 # Build tests?
177 #
178 AC_DEFUN([LB_CONFIG_TESTS],
179 [AC_MSG_CHECKING([whether to build Lustre tests])
180 AC_ARG_ENABLE([tests],
181         AC_HELP_STRING([--disable-tests],
182                         [disable building of Lustre tests]),
183         [],[enable_tests='yes'])
184 if test x$with_cray_portals = xyes ; then
185         enable_tests='no'
186 fi
187 AC_MSG_RESULT([$enable_tests])
188 ])
189
190 #
191 # LB_CONFIG_DOCS
192 #
193 # Build docs?
194 #
195 AC_DEFUN([LB_CONFIG_DOCS],
196 [AC_MSG_CHECKING([whether to build docs])
197 AC_ARG_ENABLE(doc,
198         AC_HELP_STRING([--disable-doc],
199                         [skip creation of pdf documentation]),
200         [
201                 if test x$enable_doc = xyes ; then
202                     ENABLE_DOC=1           
203                 else
204                     ENABLE_DOC=0
205                 fi
206         ],[
207                 ENABLE_DOC=0
208                 enable_doc='no'
209         ])
210 AC_MSG_RESULT([$enable_doc])
211 AC_SUBST(ENABLE_DOC)
212 ])
213
214 #
215 # LB_CONFIG_INIT_SCRIPTS
216 #
217 # our init scripts only work on red hat linux
218 #
219 AC_DEFUN([LB_CONFIG_INIT_SCRIPTS],
220 [ENABLE_INIT_SCRIPTS=0
221 if test x$enable_utils = xyes ; then
222         AC_MSG_CHECKING([whether to install init scripts])
223         # our scripts only work on red hat systems
224         if test -f /etc/init.d/functions -a -f /etc/sysconfig/network ; then
225                 ENABLE_INIT_SCRIPTS=1
226                 AC_MSG_RESULT([yes])
227         else
228                 AC_MSG_RESULT([no])
229         fi
230 fi
231 AC_SUBST(ENABLE_INIT_SCRIPTS)
232 ])
233
234 #
235 # LB_CONFIG_HEADERS
236 #
237 # add -include config.h
238 #
239 AC_DEFUN([LB_CONFIG_HEADERS],
240 [AC_CONFIG_HEADERS([config.h])
241 CPPFLAGS="-include \$(top_builddir)/config.h $CPPFLAGS"
242 EXTRA_KCFLAGS="-include $PWD/config.h $EXTRA_KCFLAGS"
243 AC_SUBST(EXTRA_KCFLAGS)
244 ])
245
246 #
247 # LB_INCLUDE_RULES
248 #
249 # defines for including the toplevel Rules
250 #
251 AC_DEFUN([LB_INCLUDE_RULES],
252 [INCLUDE_RULES="include $PWD/build/Rules"
253 AC_SUBST(INCLUDE_RULES)
254 ])
255
256 #
257 # LB_PATH_DEFAULTS
258 #
259 # 'fixup' default paths
260 #
261 AC_DEFUN([LB_PATH_DEFAULTS],
262 [# directories for binaries
263 AC_PREFIX_DEFAULT([/usr])
264
265 sysconfdir='/etc'
266 AC_SUBST(sysconfdir)
267
268 # Directories for documentation and demos.
269 docdir='${datadir}/doc/$(PACKAGE)'
270 AC_SUBST(docdir)
271
272 LP_PATH_DEFAULTS
273 LC_PATH_DEFAULTS
274 ])
275
276 #
277 # LB_PROG_CC
278 #
279 # checks on the C compiler
280 #
281 AC_DEFUN([LB_PROG_CC],
282 [AC_PROG_RANLIB
283 AC_MSG_CHECKING([for buggy compiler])
284 CC_VERSION=`$CC -v 2>&1 | grep "^gcc version"`
285 bad_cc() {
286         AC_MSG_RESULT([buggy compiler found!])
287         echo
288         echo "   '$CC_VERSION'"
289         echo "  has been known to generate bad code, "
290         echo "  please get an updated compiler."
291         AC_MSG_ERROR([sorry])
292 }
293 case "$CC_VERSION" in
294         "gcc version 2.95"*)
295                 bad_cc
296                 ;;
297         # ost_pack_niobuf putting 64bit NTOH temporaries on the stack
298         # without "sub    $0xc,%esp" to protect the stack from being
299         # stomped on by interrupts (bug 606)
300         "gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-98)")
301                 bad_cc
302                 ;;
303         # mandrake's similar sub 0xc compiler bug
304         # http://marc.theaimsgroup.com/?l=linux-kernel&m=104748366226348&w=2
305         "gcc version 2.96 20000731 (Mandrake Linux 8.1 2.96-0.62mdk)")
306                 bad_cc
307                 ;;
308         *)
309                 AC_MSG_RESULT([no known problems])
310                 ;;
311 esac
312
313 # ---------  unsigned long long sane? -------
314 AC_CHECK_SIZEOF(unsigned long long, 0)
315 echo "---> size SIZEOF $SIZEOF_unsigned_long_long"
316 echo "---> size SIZEOF $ac_cv_sizeof_unsigned_long_long"
317 if test $ac_cv_sizeof_unsigned_long_long != 8 ; then
318         AC_MSG_ERROR([** we assume that sizeof(long long) == 8.  Tell phil@clusterfs.com])
319 fi
320
321 CPPFLAGS="-I\$(top_srcdir)/lustre/include -I\$(top_srcdir)/portals/include $CPPFLAGS"
322
323 LLCPPFLAGS="-D__arch_lib__ -D_LARGEFILE64_SOURCE=1"
324 AC_SUBST(LLCPPFLAGS)
325
326 LLCFLAGS="-g -Wall -fPIC"
327 AC_SUBST(LLCFLAGS)
328
329 # everyone builds against portals and lustre
330 EXTRA_KCFLAGS="-g -I$PWD/portals/include -I$PWD/lustre/include"
331 AC_SUBST(EXTRA_KCFLAGS)
332 ])
333
334 #
335 # LB_CONTITIONALS
336 #
337 # AM_CONDITIONAL instances for everything
338 # (so that portals/lustre can disable some if needed)
339 AC_DEFUN([LB_CONDITIONALS],
340 [AM_CONDITIONAL(MODULES, test x$enable_modules = xyes)
341 AM_CONDITIONAL(UTILS, test x$enable_utils = xyes)
342 AM_CONDITIONAL(TESTS, test x$enable_tests = xyes)
343 AM_CONDITIONAL(DOC, test x$ENABLE_DOC = x1)
344 AM_CONDITIONAL(CRAY_PORTALS, test x$with_cray_portals != xno)
345 AM_CONDITIONAL(INIT_SCRIPTS, test x$ENABLE_INIT_SCRIPTS = "x1")
346
347 LB_LINUX_CONDITIONALS
348 LB_DARWIN_CONDITIONALS
349
350 LP_CONDITIONALS
351 LC_CONDITIONALS
352 ])
353
354 #
355 # LB_CONFIGURE
356 #
357 # main configure steps
358 #
359 AC_DEFUN([LB_CONFIGURE],
360 [LB_INCLUDE_RULES
361
362 LB_PATH_DEFAULTS
363
364 LB_PROG_CC
365
366 LB_PATH_LIBSYSIO
367 LB_PATH_CRAY_PORTALS
368
369 LB_CONFIG_DOCS
370 LB_CONFIG_UTILS
371 LB_CONFIG_TESTS
372
373 LB_CONFIG_MODULES
374
375 LC_CONFIG_LIBLUSTRE
376
377 LP_CONFIGURE
378 LC_CONFIGURE
379
380 LB_CONDITIONALS
381 LB_CONFIG_HEADERS
382
383 AC_CONFIG_FILES(
384 [Makefile:build/Makefile.in.toplevel]
385 [autoMakefile
386 build/autoMakefile
387 build/autoconf/Makefile
388 build/Rules
389 build/lustre.spec
390 ])
391
392 LP_CONFIG_FILES
393 LC_CONFIG_FILES
394
395 AC_OUTPUT
396
397 cat <<_ACEOF
398
399 CPPFLAGS: $CPPFLAGS
400 LLCPPFLAGS: $LLCPPFLAGS
401 CFLAGS: $CFLAGS
402 EXTRA_KCFLAGS: $EXTRA_KCFLAGS
403 LLCFLAGS: $LLCFLAGS
404
405 Type 'make' to build Lustre.
406 _ACEOF
407 ])