4 # Verify that LUSTRE_VERSION was defined properly
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.])
15 # fixup $target_os for use in other places
17 AC_DEFUN([LB_CANONICAL_SYSTEM],
26 AC_SUBST(lb_target_os)
32 # Check for file existance even when cross compiling
34 AC_DEFUN([LB_CHECK_FILE],
35 [AS_VAR_PUSHDEF([lb_File], [lb_cv_file_$1])dnl
36 AC_CACHE_CHECK([for $1], lb_File,
37 [if test -r "$1"; then
38 AS_VAR_SET(lb_File, yes)
40 AS_VAR_SET(lb_File, no)
42 AS_IF([test AS_VAR_GET(lb_File) = yes], [$2], [$3])[]dnl
43 AS_VAR_POPDEF([lb_File])dnl
49 # LB_CHECK_FILE over multiple files
51 AC_DEFUN([LB_CHECK_FILES],
52 [AC_FOREACH([AC_FILE_NAME], [$1],
53 [LB_CHECK_FILE(AC_FILE_NAME,
54 [AC_DEFINE_UNQUOTED(AS_TR_CPP(HAVE_[]AC_FILE_NAME), 1,
55 [Define to 1 if you have the
61 # LB_ARG_LIBS_INCLUDES
63 # support for --with-foo, --with-foo-includes, and --with-foo-libs in
64 # a single magical macro
66 AC_DEFUN([LB_ARG_LIBS_INCLUDES],
67 [lb_pathvar="m4_bpatsubst([$2], -, _)"
68 AC_MSG_CHECKING([for $1])
70 AC_HELP_STRING([--with-$2=path],
74 if test x$withval = xyes ; then
75 eval "$lb_pathvar='$3'"
77 eval "$lb_pathvar='$withval'"
79 AC_MSG_RESULT([${!lb_pathvar:-no}])
81 if test x${!lb_pathvar} != x -a x${!lb_pathvar} != xno ; then
82 AC_MSG_CHECKING([for $1 includes])
83 AC_ARG_WITH([$2-includes],
84 AC_HELP_STRING([--with-$2-includes=path],
85 [path to $1 includes]),
88 lb_includevar="${lb_pathvar}_includes"
89 if test x$withval = xyes ; then
90 eval "${lb_includevar}='${!lb_pathvar}/include'"
92 eval "${lb_includevar}='$withval'"
94 AC_MSG_RESULT([${!lb_includevar}])
96 AC_MSG_CHECKING([for $1 libs])
97 AC_ARG_WITH([$2-libs],
98 AC_HELP_STRING([--with-$2-libs=path],
102 lb_libvar="${lb_pathvar}_libs"
103 if test x$withval = xyes ; then
104 eval "${lb_libvar}='${!lb_pathvar}/lib'"
106 eval "${lb_libvar}='$withval'"
108 AC_MSG_RESULT([${!lb_libvar}])
116 # Handle internal/external libsysio
118 AC_DEFUN([LB_PATH_LIBSYSIO],
119 [AC_ARG_WITH([sysio],
120 AC_HELP_STRING([--with-sysio=path],
121 [set path to libsysio source (default is included libsysio)]),
123 case $lb_target_os in
132 AC_MSG_CHECKING([location of libsysio])
133 enable_sysio="$with_sysio"
136 AC_MSG_RESULT([internal])
137 LB_CHECK_FILE([$srcdir/libsysio/src/rmdir.c],[],[
138 AC_MSG_ERROR([A complete internal libsysio was not found.])
140 LIBSYSIO_SUBDIR="libsysio"
141 SYSIO="$PWD/libsysio"
144 AC_MSG_RESULT([disabled])
147 AC_MSG_RESULT([$with_sysio])
148 LB_CHECK_FILE([$with_sysio/lib/libsysio.a],[],[
149 AC_MSG_ERROR([A complete (built) external libsysio was not found.])
156 # We have to configure even if we don't build here for make dist to
158 AC_CONFIG_SUBDIRS(libsysio)
164 # Enable Cray XT3 features
166 AC_DEFUN([LB_CONFIG_CRAY_XT3],
167 [AC_MSG_CHECKING([whether to build Cray XT3 features])
168 AC_ARG_ENABLE([cray_xt3],
169 AC_HELP_STRING([--enable-cray-xt3],
170 [enable building of Cray XT3 features]),
171 [enable_cray_xt3='yes'],[enable_cray_xt3='no'])
172 AC_MSG_RESULT([$enable_cray_xt3])
173 if test x$enable_cray_xt3 != xno; then
174 AC_DEFINE(CRAY_XT3, 1, Enable Cray XT3 Features)
181 # Enable BGL features
183 AC_DEFUN([LB_CONFIG_BGL],
184 [AC_MSG_CHECKING([whether to build BGL features])
186 AC_HELP_STRING([--enable-bgl],
187 [enable building of BGL features]),
188 [enable_bgl='yes'],[enable_bgl='no'])
189 AC_MSG_RESULT([$enable_bgl])
190 if test x$enable_bgl != xno; then
191 AC_DEFINE(BGL_SUPPORT, 1, Enable BGL Features)
195 enable_liblustre='no'
196 enable_libreadline='no'
203 # check for in-tree snmp support
205 AC_DEFUN([LB_PATH_SNMP],
206 [LB_CHECK_FILE([$srcdir/snmp/lustre-snmp.c],[SNMP_DIST_SUBDIR="snmp"])
207 AC_SUBST(SNMP_DIST_SUBDIR)
208 AC_SUBST(SNMP_SUBDIR)
214 # Build kernel modules?
216 AC_DEFUN([LB_CONFIG_MODULES],
217 [AC_MSG_CHECKING([whether to build kernel modules])
218 AC_ARG_ENABLE([modules],
219 AC_HELP_STRING([--disable-modules],
220 [disable building of Lustre kernel modules]),
222 LC_TARGET_SUPPORTED([
228 AC_MSG_RESULT([$enable_modules ($target_os)])
230 if test x$enable_modules = xyes ; then
239 # This is strange - Lustre supports a target we don't
240 AC_MSG_ERROR([Modules are not supported on $target_os])
251 AC_DEFUN([LB_CONFIG_UTILS],
252 [AC_MSG_CHECKING([whether to build utilities])
253 AC_ARG_ENABLE([utils],
254 AC_HELP_STRING([--disable-utils],
255 [disable building of Lustre utility programs]),
256 [],[enable_utils='yes'])
257 AC_MSG_RESULT([$enable_utils])
258 if test x$enable_utils = xyes ; then
259 LB_CONFIG_INIT_SCRIPTS
268 AC_DEFUN([LB_CONFIG_TESTS],
269 [AC_MSG_CHECKING([whether to build Lustre tests])
270 AC_ARG_ENABLE([tests],
271 AC_HELP_STRING([--disable-tests],
272 [disable building of Lustre tests]),
277 AC_MSG_RESULT([$enable_tests])
285 AC_DEFUN([LB_CONFIG_DOCS],
286 [AC_MSG_CHECKING([whether to build docs])
288 AC_HELP_STRING([--disable-doc],
289 [skip creation of pdf documentation]),
291 if test x$enable_doc = xyes ; then
300 AC_MSG_RESULT([$enable_doc])
305 # LB_CONFIG_INIT_SCRIPTS
307 # our init scripts only work on red hat linux
309 AC_DEFUN([LB_CONFIG_INIT_SCRIPTS],
310 [ENABLE_INIT_SCRIPTS=0
311 if test x$enable_utils = xyes ; then
312 AC_MSG_CHECKING([whether to install init scripts])
313 # our scripts only work on red hat systems
314 if test -f /etc/init.d/functions -a -f /etc/sysconfig/network ; then
315 ENABLE_INIT_SCRIPTS=1
321 AC_SUBST(ENABLE_INIT_SCRIPTS)
327 # add -include config.h
329 AC_DEFUN([LB_CONFIG_HEADERS],
330 [AC_CONFIG_HEADERS([config.h])
331 CPPFLAGS="-include \$(top_builddir)/config.h $CPPFLAGS"
332 EXTRA_KCFLAGS="-include $PWD/config.h $EXTRA_KCFLAGS"
333 AC_SUBST(EXTRA_KCFLAGS)
339 # defines for including the toplevel Rules
341 AC_DEFUN([LB_INCLUDE_RULES],
342 [INCLUDE_RULES="include $PWD/build/Rules"
343 AC_SUBST(INCLUDE_RULES)
349 # 'fixup' default paths
351 AC_DEFUN([LB_PATH_DEFAULTS],
352 [# directories for binaries
353 AC_PREFIX_DEFAULT([/usr])
358 # Directories for documentation and demos.
359 docdir='${datadir}/doc/$(PACKAGE)'
370 # checks on the C compiler
372 AC_DEFUN([LB_PROG_CC],
374 AC_MSG_CHECKING([for buggy compiler])
375 CC_VERSION=`$CC -v 2>&1 | grep "^gcc version"`
377 AC_MSG_RESULT([buggy compiler found!])
379 echo " '$CC_VERSION'"
380 echo " has been known to generate bad code, "
381 echo " please get an updated compiler."
382 AC_MSG_ERROR([sorry])
384 case "$CC_VERSION" in
388 # ost_pack_niobuf putting 64bit NTOH temporaries on the stack
389 # without "sub $0xc,%esp" to protect the stack from being
390 # stomped on by interrupts (bug 606)
391 "gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-98)")
394 # mandrake's similar sub 0xc compiler bug
395 # http://marc.theaimsgroup.com/?l=linux-kernel&m=104748366226348&w=2
396 "gcc version 2.96 20000731 (Mandrake Linux 8.1 2.96-0.62mdk)")
400 AC_MSG_RESULT([no known problems])
404 # --------- unsigned long long sane? -------
405 AC_CHECK_SIZEOF(unsigned long long, 0)
406 echo "---> size SIZEOF $SIZEOF_unsigned_long_long"
407 echo "---> size SIZEOF $ac_cv_sizeof_unsigned_long_long"
408 if test $ac_cv_sizeof_unsigned_long_long != 8 ; then
409 AC_MSG_ERROR([** we assume that sizeof(long long) == 8. Tell phil@clusterfs.com])
413 AC_CHECK_DECL([__i386__], [], [
415 if test x$enable_bgl != xyes; then
416 AC_MSG_CHECKING([if $CC accepts -m64])
419 AC_TRY_COMPILE([],[],[
429 CPPFLAGS="-I\$(top_builddir)/lnet/include -I\$(top_srcdir)/lnet/include -I\$(top_builddir)/lustre/include -I\$(top_srcdir)/lustre/include $CPPFLAGS"
431 LLCPPFLAGS="-D__arch_lib__ -D_LARGEFILE64_SOURCE=1"
434 LLCFLAGS="-g -Wall -fPIC"
437 # everyone builds against lnet and lustre
438 EXTRA_KCFLAGS="$EXTRA_KCFLAGS -g -I$PWD/lnet/include -I$PWD/lustre/include"
439 AC_SUBST(EXTRA_KCFLAGS)
445 # AM_CONDITIONAL instances for everything
446 # (so that portals/lustre can disable some if needed)
447 AC_DEFUN([LB_CONDITIONALS],
448 [AM_CONDITIONAL(MODULES, test x$enable_modules = xyes)
449 AM_CONDITIONAL(UTILS, test x$enable_utils = xyes)
450 AM_CONDITIONAL(TESTS, test x$enable_tests = xyes)
451 AM_CONDITIONAL(DOC, test x$ENABLE_DOC = x1)
452 AM_CONDITIONAL(INIT_SCRIPTS, test x$ENABLE_INIT_SCRIPTS = "x1")
453 AM_CONDITIONAL(LINUX, test x$lb_target_os = "xlinux")
454 AM_CONDITIONAL(DARWIN, test x$lb_target_os = "xdarwin")
456 # this lets lustre cancel libsysio, per-branch or if liblustre is
458 if test "x$LIBSYSIO_SUBDIR" = xlibsysio ; then
459 if test "x$with_sysio" != xyes ; then
464 AC_SUBST(LIBSYSIO_SUBDIR)
467 LB_LINUX_CONDITIONALS
468 LB_DARWIN_CONDITIONALS
477 # main configure steps
479 AC_DEFUN([LB_CONFIGURE],
496 LC_CONFIG_CLIENT_SERVER
507 if test "$SNMP_DIST_SUBDIR" ; then
515 [Makefile:build/Makefile.in.toplevel]
518 build/autoconf/Makefile
525 if test "$SNMP_DIST_SUBDIR" ; then
529 AC_SUBST(ac_configure_args)
531 MOSTLYCLEANFILES='.*.cmd .*.flags *.o *.ko *.mod.c .depend .*.1.*'
532 AC_SUBST(MOSTLYCLEANFILES)
541 LLCPPFLAGS: $LLCPPFLAGS
543 EXTRA_KCFLAGS: $EXTRA_KCFLAGS
546 Type 'make' to build Lustre.