Whamcloud - gitweb
added check for libxml2 development libraries
[fs/lustre-release.git] / lustre / configure.in
1 AC_INIT
2 AC_CANONICAL_SYSTEM
3
4 # Copyright (C) 2001  Cluster File Systems, Inc.
5 #
6 # This code is issued under the GNU General Public License.
7 # See the file COPYING in this distribution
8
9 # Automake variables.  Steal the version number from lustre.spec.in.
10 AM_INIT_AUTOMAKE(obd, builtin([esyscmd], [sed -ne '/^%define version /{ s/.*version //; p; q; }' scripts/lustre.spec.in]))
11 #AM_MAINTAINER_MODE
12 AC_PROG_CC
13 AC_PROG_RANLIB
14
15
16 # Check for required packages
17 *
18
19 AC_PATH_PROG([XML2_CONFIG], [xml2-config], [],)
20 if test -z "$XML2_CONFIG"; then
21         AC_MSG_ERROR([xml2-config not found; libxml2-dev libraries must be installed.])
22 fi
23 XML2_CFLAGS=$($XML2_CONFIG --cflags)
24 XML2_LIBS=$($XML2_CONFIG --libs)
25 AC_SUBST(XML2_CFLAGS)
26 AC_SUBST(XML2_LIBS)
27
28 # Kernel build environment.
29 ac_default_prefix=
30 bindir='${exec_prefix}/usr/bin'
31 sbindir='${exec_prefix}/usr/sbin'
32
33 linuxdir_def=/usr/src/linux
34 AC_ARG_ENABLE(linuxdir, [  --enable-linuxdir=[path] set path to Linux source (default=/usr/src/linux)],, enable_linuxdir=$linuxdir_def)
35
36 LINUX=$enable_linuxdir
37 AC_SUBST(LINUX)
38
39 sinclude(archdep.m4)
40
41 KINCFLAGS='-I. -I$(top_srcdir)/include -I$(PORTALS)/include -I$(LINUX)/include'
42 CPPFLAGS="$KINCFLAGS $ARCHCPPFLAGS"
43
44 portalsdir_def='$(top_srcdir)/../portals'
45 AC_ARG_ENABLE(portalsdir, [  --enable-portalsdir=[path] set path to Portals source (default=../portals)],, enable_portalsdir=$portalsdir_def)
46 PORTALS=$enable_portalsdir
47 AC_SUBST(PORTALS)
48
49 AC_MSG_CHECKING(if make dep has been run in kernel source)
50 if test -f $LINUX/include/linux/config.h ; then
51         AC_MSG_RESULT(yes)
52 else
53         AC_MSG_ERROR(** cannot find $LINUX/include/linux/config.h. Run make dep in $LINUX.)
54 fi
55
56 AC_MSG_CHECKING(if autoconf.h is in kernel source)
57 if test -f $LINUX/include/linux/autoconf.h ; then
58         AC_MSG_RESULT(yes)
59 else
60         AC_MSG_ERROR(** cannot find $LINUX/include/linux/autoconf.h. Run make config in $LINUX.)
61 fi
62
63
64 AC_MSG_CHECKING(for Linux release)
65
66 dnl We need to rid ourselves of the nasty [ ] quotes.
67 changequote(, )
68 LVERSION="`sed -ne 's/^VERSION[         ]*=[    ]*//gp' $LINUX/Makefile`"
69 PATCHLEVEL="`sed -ne 's/^PATCHLEVEL[    ]*=[    ]*//gp' $LINUX/Makefile`"
70 SUBLEVEL="`sed -ne 's/^SUBLEVEL[        ]*=[    ]*//gp' $LINUX/Makefile`"
71 EXTRAVERSION="`sed -ne 's/^EXTRAVERSION[        ]*=[    ]*//gp' $LINUX/Makefile`"
72 changequote([, ])
73
74 RELEASE="$LVERSION.$PATCHLEVEL.$SUBLEVEL$EXTRAVERSION"
75 moduledir='$(libdir)/modules/'$RELEASE
76 AC_SUBST(moduledir)
77 AC_SUBST(EXTRAVERSION)
78
79 modulefsdir='$(moduledir)/fs'
80 AC_SUBST(modulefsdir)
81
82 AC_MSG_RESULT($RELEASE)
83 AC_SUBST(RELEASE)
84
85 # Directories for documentation and demos.
86 docdir='${prefix}/usr/share/doc/$(PACKAGE)'
87 AC_SUBST(docdir)
88
89 demodir='$(docdir)/demo'
90 AC_SUBST(demodir)
91
92 AC_OUTPUT(Makefile lib/Makefile ldlm/Makefile obdecho/Makefile ptlrpc/Makefile \
93         osc/Makefile mdc/Makefile mds/Makefile ost/Makefile utils/Makefile \
94         tests/Makefile obdfilter/Makefile obdclass/Makefile \
95         llite/Makefile obdfs/Makefile demos/Makefile \
96         doc/Makefile scripts/Makefile scripts/lustre.spec \
97         extN/Makefile)