Whamcloud - gitweb
land b_eq on HEAD
[fs/lustre-release.git] / lustre / configure.in
1 # Copyright (C) 2001-2003 Cluster File Systems, Inc.
2 #
3 # This code is issued under the GNU General Public License.
4 # See the file COPYING in this distribution
5
6 AC_INIT
7 AC_CANONICAL_SYSTEM
8
9 # Automake variables.  Steal the version number from lustre.spec.in.
10 AM_INIT_AUTOMAKE(lustre, builtin([esyscmd], [sed -ne '/^%define version /{ s/.*version //; p; q; }' scripts/lustre.spec.in]))
11 #AM_MAINTAINER_MODE
12
13 # LLNL patches their ext3 and calls it extN
14 AC_ARG_ENABLE(extN, [  --enable-extN use extN instead of ext3 for lustre backend])
15 AM_CONDITIONAL(EXTN, test x$enable_extN = xyes)
16
17 # specify wether to build doc or not
18 AC_ARG_ENABLE(doc, [  --disable-doc skip creation of pdf documentation],
19                    [
20                         if test x$enable_doc = xyes ; then
21                             ENABLE_DOC=1           
22                         else
23                             ENABLE_DOC=0
24                         fi
25                    ],
26                    [ ENABLE_DOC=0 ])
27 AM_CONDITIONAL(DOC, test x$ENABLE_DOC = x1)
28 AC_SUBST(ENABLE_DOC)
29
30 # the pinger is temporary, until we have the recovery node in place
31 AC_ARG_ENABLE(pinger, [  --disable-pinger disable recovery pinger support])
32 if test x$enable_pinger != xno ; then
33   AC_DEFINE(ENABLE_PINGER, 1, Use the Pinger)
34 fi
35
36 AC_ARG_WITH(obd-buffer-size, [  --with-obd-buffer-size=[size] set lctl ioctl maximum bytes (default=8192)],OBD_BUFFER_SIZE=$with_obd_buffer_size,OBD_BUFFER_SIZE=8192)
37 AC_DEFINE_UNQUOTED(OBD_MAX_IOCTL_BUFFER, $OBD_BUFFER_SIZE, [IOCTL Buffer Size])
38
39 # specify location of libsysio tree
40 AC_ARG_WITH(sysio, [  --with-sysio=[path] set path to libsysio source (default=../libsysio)], sysiodir=$withval)
41 if test x$sysiodir = x; then
42         SYSIO='$(top_srcdir)/../libsysio'
43 else
44         SYSIO=$sysiodir
45 fi
46 AC_SUBST(SYSIO)
47
48 # snap compilation 
49 AC_ARG_ENABLE(snapfs, [ --enable-snapfs build snapfs])
50 AM_CONDITIONAL(SNAPFS, test x$enable_snapfs = xyes)
51
52 # smfs compilation 
53 AC_ARG_ENABLE(smfs, [ --enable-smfs build smfs])
54 AM_CONDITIONAL(SMFS, test x$enable_smfs = xyes)
55
56
57
58 sinclude(portals/build.m4)
59 sinclude(portals/archdep.m4)
60
61 if test x$enable_inkernel = xyes ; then
62         find . -name Makefile.mk | sed 's/.mk$//' | xargs -n 1 \
63                 sh -e -x -c '(cp -f $0.mk $0.in)'
64 fi
65
66 AM_CONFIG_HEADER(portals/include/config.h)
67
68 AC_OUTPUT([Makefile lvfs/Makefile portals/Makefile portals/Kernelenv \
69           portals/libcfs/Makefile portals/portals/Makefile \
70           portals/unals/Makefile portals/knals/Makefile \
71           portals/router/Makefile portals/knals/socknal/Makefile \
72           portals/knals/gmnal/Makefile portals/knals/qswnal/Makefile \
73           portals/knals/scimacnal/Makefile \
74           portals/knals/ibnal/Makefile \
75           portals/utils/Makefile portals/tests/Makefile portals/doc/Makefile \
76           obdecho/Makefile ptlrpc/Makefile liblustre/Makefile liblustre/tests/Makefile \
77           lov/Makefile osc/Makefile mdc/Makefile mds/Makefile ost/Makefile \
78           cobd/Makefile ptlbd/Makefile conf/Makefile  tests/Makefile \
79           utils/Makefile utils/Lustre/Makefile obdfilter/Makefile \
80           obdclass/Makefile smfs/Makefile snapfs/Makefile snapfs/utils/Makefile \
81           include/Makefile include/linux/Makefile llite/Makefile doc/Makefile scripts/Makefile \
82           scripts/lustre.spec])