[Pkg-lustre-svn-commit] updated: [3f0e1de] Updated autogen-run.dpatch Signed-off-by: Patrick Winnertz <winnie at debian.org>

Patrick Winnertz winnie at debian.org
Wed Mar 3 17:23:16 UTC 2010


The following commit has been merged in the master branch:
commit 3f0e1de910fdf6bcfff0e7cee7da110922a875fa
Author: Patrick Winnertz <winnie at debian.org>
Date:   Wed Mar 3 17:17:04 2010 +0100

    Updated autogen-run.dpatch
    Signed-off-by: Patrick Winnertz <winnie at debian.org>

diff --git a/debian/patches/autogen-run.dpatch b/debian/patches/autogen-run.dpatch
index 98e8698..b72d6a6 100755
--- a/debian/patches/autogen-run.dpatch
+++ b/debian/patches/autogen-run.dpatch
@@ -2,13 +2,14 @@
 ## autogen-run.dpatch by Patrick Winnertz <winnie at debian.org>
 ##
 ## All lines beginning with `## DP:' are a description of the patch.
-## DP: result of autogen.sh on lenny, as it currently fails to run on unstable
+## DP: autogen.sh output on lenny, as unstable is broken currently
 
 @DPATCH@
-diff -Nurwd orig/lustre-1.8.2/aclocal.m4 lustre-1.8.2/aclocal.m4
---- orig/lustre-1.8.2/aclocal.m4	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/aclocal.m4	2010-03-03 16:00:08.267634057 +0000
-@@ -873,7 +873,7 @@
+diff --git a/aclocal.m4 b/aclocal.m4
+index bf2b8cd..beb9062 100644
+--- a/aclocal.m4
++++ b/aclocal.m4
+@@ -873,7 +873,7 @@ if test $target_cpu == "powerpc64"; then
  	CC="$CC -m64"
  fi
  
@@ -17,7 +18,7 @@ diff -Nurwd orig/lustre-1.8.2/aclocal.m4 lustre-1.8.2/aclocal.m4
  
  LLCPPFLAGS="-D__arch_lib__ -D_LARGEFILE64_SOURCE=1"
  AC_SUBST(LLCPPFLAGS)
-@@ -3096,6 +3096,7 @@
+@@ -3096,6 +3096,7 @@ LB_LINUX_TRY_COMPILE([
  ])
  ])
  
@@ -25,7 +26,7 @@ diff -Nurwd orig/lustre-1.8.2/aclocal.m4 lustre-1.8.2/aclocal.m4
  #
  # LC_COOKIE_FOLLOW_LINK
  #
-@@ -5944,113 +5945,6 @@
+@@ -5944,113 +5945,6 @@ AC_DEFUN([LN_CONFIG_OFED_SPEC],
  ])
  
  #
@@ -139,73 +140,11 @@ diff -Nurwd orig/lustre-1.8.2/aclocal.m4 lustre-1.8.2/aclocal.m4
  # LS_CONFIGURE
  #
  # configure bits for lustre-snmp
-diff -Nurwd orig/lustre-1.8.2/autoMakefile.am lustre-1.8.2/autoMakefile.am
---- orig/lustre-1.8.2/autoMakefile.am	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/autoMakefile.am	2010-03-03 15:57:14.823633491 +0000
-@@ -4,7 +4,7 @@
- RPM_SUBDIRS := @LDISKFS_SUBDIR@ @LUSTREIOKIT_SUBDIR@
- if LDISKFS_ENABLED
- if !LDISKFS_IN_KERNEL
--EXTRA_SOURCES := @SYMVERFILE@
-+#EXTRA_SOURCES := @SYMVERFILE@
- endif
- endif
- 
-diff -Nurwd orig/lustre-1.8.2/autoMakefile.am.~1~ lustre-1.8.2/autoMakefile.am.~1~
---- orig/lustre-1.8.2/autoMakefile.am.~1~	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/autoMakefile.am.~1~	2010-03-03 15:57:14.823633491 +0000
-@@ -0,0 +1,47 @@
-+SUBDIRS := @LDISKFS_SUBDIR@ @SPL_SUBDIR@ @ZFS_SUBDIR@ . @LIBSYSIO_SUBDIR@ @SNMP_SUBDIR@ @LUSTREIOKIT_SUBDIR@ @LIBCFS_SUBDIR@ lnet lustre
-+DIST_SUBDIRS := @SNMP_DIST_SUBDIR@ libsysio ldiskfs @LUSTREIOKIT_SUBDIR@ @LIBCFS_SUBDIR@ lnet lustre 
-+SOURCES_SUBDIRS := @LDISKFS_SUBDIR@ @LIBCFS_SUBDIR@ lnet lustre
-+RPM_SUBDIRS := @LDISKFS_SUBDIR@ @LUSTREIOKIT_SUBDIR@
-+if LDISKFS_ENABLED
-+if !LDISKFS_IN_KERNEL
-+EXTRA_SOURCES := @SYMVERFILE@
-+endif
-+endif
-+
-+include build/autoMakefile.am.toplevel
-+
-+EXTRA_DIST += config.h.in debian/*
-+
-+if LDISKFS_ENABLED
-+if !LDISKFS_IN_KERNEL
-+ at SYMVERFILE@: @LDISKFS_DIR@/@SYMVERFILE@
-+	touch @SYMVERFILE@
-+	-grep -v ldiskfs @SYMVERFILE@ > @SYMVERFILE at .old
-+	cat @SYMVERFILE at .old @LDISKFS_DIR@/@SYMVERFILE@ > @SYMVERFILE@
-+endif
-+endif
-+
-+CSTK=/tmp/checkstack
-+CSTKO=/tmp/checkstack.orig
-+
-+checkstack:
-+	[ -f ${CSTK} -a ! -s ${CSTKO} ] && mv -f ${CSTK} ${CSTKO} || true
-+	{ for MOD in $$(find . -name "*.ko"); do			     \
-+		objdump -d $$MOD | perl build/checkstack.pl;                 \
-+	  done } | grep -v " bug " | sort -nr | uniq > ${CSTK}
-+	[ -f ${CSTKO} ] && ! diff -u ${CSTKO} ${CSTK} || head -30 ${CSTK}
-+
-+checkstack-update:
-+	[ -f ${CSTK} ] && mv -f ${CSTK} ${CSTKO}
-+
-+checkstack-clean:
-+	rm -f ${CSTK} ${CSTKO}
-+
-+module-dist-hook:
-+	if [ -d CVS -o -d .git ]; then \
-+	    perl lustre/scripts/tree_status.pl > $(distdir)/tree_status; \
-+	elif [ -f tree_status ]; then \
-+	    cp tree_status $(distdir)/tree_status; \
-+	else \
-+	    echo -e "I have no idea how to create a tree_status file in $(distdir).\nPlease file a bug at http://bugzilla.lustre.org/"; \
-+	fi
-diff -Nurwd orig/lustre-1.8.2/autoMakefile.in lustre-1.8.2/autoMakefile.in
---- orig/lustre-1.8.2/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/autoMakefile.in	2010-03-03 16:00:10.711632658 +0000
-@@ -122,12 +122,11 @@
+diff --git a/autoMakefile.in b/autoMakefile.in
+index a7881f3..151f562 100644
+--- a/autoMakefile.in
++++ b/autoMakefile.in
+@@ -122,12 +122,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -219,7 +158,7 @@ diff -Nurwd orig/lustre-1.8.2/autoMakefile.in lustre-1.8.2/autoMakefile.in
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -243,8 +242,6 @@
+@@ -243,8 +242,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -228,7 +167,7 @@ diff -Nurwd orig/lustre-1.8.2/autoMakefile.in lustre-1.8.2/autoMakefile.in
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -258,8 +255,10 @@
+@@ -258,8 +255,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -239,7 +178,7 @@ diff -Nurwd orig/lustre-1.8.2/autoMakefile.in lustre-1.8.2/autoMakefile.in
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -267,26 +266,27 @@
+@@ -267,26 +266,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -270,7 +209,7 @@ diff -Nurwd orig/lustre-1.8.2/autoMakefile.in lustre-1.8.2/autoMakefile.in
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-@@ -301,7 +301,6 @@
+@@ -301,7 +301,6 @@ SUBDIRS := @LDISKFS_SUBDIR@ @SPL_SUBDIR@ @ZFS_SUBDIR@ . @LIBSYSIO_SUBDIR@ @SNMP_
  DIST_SUBDIRS := @SNMP_DIST_SUBDIR@ libsysio ldiskfs @LUSTREIOKIT_SUBDIR@ @LIBCFS_SUBDIR@ lnet lustre 
  SOURCES_SUBDIRS := @LDISKFS_SUBDIR@ @LIBCFS_SUBDIR@ lnet lustre
  RPM_SUBDIRS := @LDISKFS_SUBDIR@ @LUSTREIOKIT_SUBDIR@
@@ -278,7 +217,7 @@ diff -Nurwd orig/lustre-1.8.2/autoMakefile.in lustre-1.8.2/autoMakefile.in
  
  AUTOMAKE_OPTIONS = foreign
  
-@@ -314,6 +313,7 @@
+@@ -314,6 +313,7 @@ FIND_TAG_FILES_CMD = find $(top_srcdir) \
  
  @LINUX25_FALSE@@LINUX_TRUE@@MODULES_TRUE at CLEANFILES = .depend
  
@@ -286,7 +225,7 @@ diff -Nurwd orig/lustre-1.8.2/autoMakefile.in lustre-1.8.2/autoMakefile.in
  EXTRA_DIST = @PACKAGE_TARNAME at .spec					\
  	build/Makefile build/autoMakefile.am.toplevel build/lbuild	\
  	build/linux-merge-config.awk build/linux-merge-modules.awk	\
-@@ -336,6 +336,8 @@
+@@ -336,6 +336,8 @@ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  CONFIG_HEADER = config.h
  CONFIG_CLEAN_FILES = Makefile Rules lustre.spec \
@@ -295,7 +234,7 @@ diff -Nurwd orig/lustre-1.8.2/autoMakefile.in lustre-1.8.2/autoMakefile.in
  	lustre/kernel_patches/targets/2.6-suse.target \
  	lustre/kernel_patches/targets/2.6-vanilla.target \
  	lustre/kernel_patches/targets/2.6-rhel4.target \
-@@ -349,7 +351,8 @@
+@@ -349,7 +351,8 @@ CONFIG_CLEAN_FILES = Makefile Rules lustre.spec \
  	lustre/kernel_patches/targets/rhel-2.4.target \
  	lustre/kernel_patches/targets/suse-2.4.21-2.target \
  	lustre/kernel_patches/targets/sles-2.4.target \
@@ -305,7 +244,7 @@ diff -Nurwd orig/lustre-1.8.2/autoMakefile.in lustre-1.8.2/autoMakefile.in
  DIST_SOURCES =
  
  RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
-@@ -360,8 +363,9 @@
+@@ -360,8 +363,9 @@ RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
  DIST_COMMON = README $(srcdir)/autoMakefile.in \
  	$(srcdir)/build/autoMakefile.am.toplevel $(srcdir)/configure \
  	COPYING ChangeLog Makefile.in aclocal.m4 autoMakefile.am \
@@ -317,7 +256,7 @@ diff -Nurwd orig/lustre-1.8.2/autoMakefile.in lustre-1.8.2/autoMakefile.in
  all: config.h
  	$(MAKE) $(AM_MAKEFLAGS) all-recursive
  
-@@ -405,6 +409,12 @@
+@@ -405,6 +409,12 @@ Rules: $(top_builddir)/config.status $(top_srcdir)/build/Rules.in
  	cd $(top_builddir) && $(SHELL) ./config.status $@
  lustre.spec: $(top_builddir)/config.status lustre.spec.in
  	cd $(top_builddir) && $(SHELL) ./config.status $@
@@ -330,7 +269,7 @@ diff -Nurwd orig/lustre-1.8.2/autoMakefile.in lustre-1.8.2/autoMakefile.in
  lustre/kernel_patches/targets/2.6-suse.target: $(top_builddir)/config.status $(top_srcdir)/lustre/kernel_patches/targets/2.6-suse.target.in
  	cd $(top_builddir) && $(SHELL) ./config.status $@
  lustre/kernel_patches/targets/2.6-vanilla.target: $(top_builddir)/config.status $(top_srcdir)/lustre/kernel_patches/targets/2.6-vanilla.target.in
-@@ -433,6 +443,8 @@
+@@ -433,6 +443,8 @@ lustre/kernel_patches/targets/sles-2.4.target: $(top_builddir)/config.status $(t
  	cd $(top_builddir) && $(SHELL) ./config.status $@
  lustre/kernel_patches/targets/2.6-oel5.target: $(top_builddir)/config.status $(top_srcdir)/lustre/kernel_patches/targets/2.6-oel5.target.in
  	cd $(top_builddir) && $(SHELL) ./config.status $@
@@ -339,7 +278,7 @@ diff -Nurwd orig/lustre-1.8.2/autoMakefile.in lustre-1.8.2/autoMakefile.in
  uninstall-info-am:
  
  # This directory's subdirectories are mostly independent; you can cd
-@@ -546,7 +558,7 @@
+@@ -546,7 +558,7 @@ distcleancheck_listfiles = find . -type f -print
  distdir: $(DISTFILES)
  	$(am__remove_distdir)
  	mkdir $(distdir)
@@ -348,24298 +287,10 @@ diff -Nurwd orig/lustre-1.8.2/autoMakefile.in lustre-1.8.2/autoMakefile.in
  	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
  	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
  	list='$(DISTFILES)'; for file in $$list; do \
-diff -Nurwd orig/lustre-1.8.2/autogen.sh lustre-1.8.2/autogen.sh
---- orig/lustre-1.8.2/autogen.sh	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/autogen.sh	2010-03-03 15:57:14.815634149 +0000
-@@ -0,0 +1,2 @@
-+#!/bin/sh
-+exec bash build/autogen.sh $@ 
-diff -Nurwd orig/lustre-1.8.2/autom4te.cache/output.0 lustre-1.8.2/autom4te.cache/output.0
---- orig/lustre-1.8.2/autom4te.cache/output.0	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/autom4te.cache/output.0	2010-03-03 16:00:10.092633453 +0000
-@@ -0,0 +1,21595 @@
-+@%:@! /bin/sh
-+@%:@ Guess values for system-dependent variables and create Makefiles.
-+@%:@ Generated by GNU Autoconf 2.61 for Lustre LUSTRE_VERSION.
-+@%:@
-+@%:@ Report bugs to <https://bugzilla.lustre.org/>.
-+@%:@ 
-+@%:@ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
-+@%:@ 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-+@%:@ This configure script is free software; the Free Software Foundation
-+@%:@ gives unlimited permission to copy, distribute and modify it.
-+## --------------------- ##
-+## M4sh Initialization.  ##
-+## --------------------- ##
-+
-+# Be more Bourne compatible
-+DUALCASE=1; export DUALCASE # for MKS sh
-+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-+  emulate sh
-+  NULLCMD=:
-+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-+  # is contrary to our usage.  Disable this feature.
-+  alias -g '${1+"$@"}'='"$@"'
-+  setopt NO_GLOB_SUBST
-+else
-+  case `(set -o) 2>/dev/null` in
-+  *posix*) set -o posix ;;
-+esac
-+
-+fi
-+
-+
-+
-+
-+# PATH needs CR
-+# Avoid depending upon Character Ranges.
-+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-+as_cr_digits='0123456789'
-+as_cr_alnum=$as_cr_Letters$as_cr_digits
-+
-+# The user is always right.
-+if test "${PATH_SEPARATOR+set}" != set; then
-+  echo "#! /bin/sh" >conf$$.sh
-+  echo  "exit 0"   >>conf$$.sh
-+  chmod +x conf$$.sh
-+  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
-+    PATH_SEPARATOR=';'
-+  else
-+    PATH_SEPARATOR=:
-+  fi
-+  rm -f conf$$.sh
-+fi
-+
-+# Support unset when possible.
-+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
-+  as_unset=unset
-+else
-+  as_unset=false
-+fi
-+
-+
-+# IFS
-+# We need space, tab and new line, in precisely that order.  Quoting is
-+# there to prevent editors from complaining about space-tab.
-+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-+# splitting by setting IFS to empty value.)
-+as_nl='
-+'
-+IFS=" ""	$as_nl"
-+
-+# Find who we are.  Look in the path if we contain no directory separator.
-+case $0 in
-+  *[\\/]* ) as_myself=$0 ;;
-+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
-+done
-+IFS=$as_save_IFS
-+
-+     ;;
-+esac
-+# We did not find ourselves, most probably we were run as `sh COMMAND'
-+# in which case we are not to be found in the path.
-+if test "x$as_myself" = x; then
-+  as_myself=$0
-+fi
-+if test ! -f "$as_myself"; then
-+  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
-+  { (exit 1); exit 1; }
-+fi
-+
-+# Work around bugs in pre-3.0 UWIN ksh.
-+for as_var in ENV MAIL MAILPATH
-+do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+done
-+PS1='$ '
-+PS2='> '
-+PS4='+ '
-+
-+# NLS nuisances.
-+for as_var in \
-+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
-+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
-+  LC_TELEPHONE LC_TIME
-+do
-+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
-+    eval $as_var=C; export $as_var
-+  else
-+    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+  fi
-+done
-+
-+# Required to use basename.
-+if expr a : '\(a\)' >/dev/null 2>&1 &&
-+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
-+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
-+  as_basename=basename
-+else
-+  as_basename=false
-+fi
-+
-+
-+# Name of the executable.
-+as_me=`$as_basename -- "$0" ||
-+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
-+	 X"$0" : 'X\(//\)$' \| \
-+	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X/"$0" |
-+    sed '/^.*\/\([^/][^/]*\)\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\/\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\/\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+
-+# CDPATH.
-+$as_unset CDPATH
-+
-+
-+if test "x$CONFIG_SHELL" = x; then
-+  if (eval ":") 2>/dev/null; then
-+  as_have_required=yes
-+else
-+  as_have_required=no
-+fi
-+
-+  if test $as_have_required = yes && 	 (eval ":
-+(as_func_return () {
-+  (exit \$1)
-+}
-+as_func_success () {
-+  as_func_return 0
-+}
-+as_func_failure () {
-+  as_func_return 1
-+}
-+as_func_ret_success () {
-+  return 0
-+}
-+as_func_ret_failure () {
-+  return 1
-+}
-+
-+exitcode=0
-+if as_func_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_success failed.
-+fi
-+
-+if as_func_failure; then
-+  exitcode=1
-+  echo as_func_failure succeeded.
-+fi
-+
-+if as_func_ret_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_ret_success failed.
-+fi
-+
-+if as_func_ret_failure; then
-+  exitcode=1
-+  echo as_func_ret_failure succeeded.
-+fi
-+
-+if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
-+  :
-+else
-+  exitcode=1
-+  echo positional parameters were not saved.
-+fi
-+
-+test \$exitcode = 0) || { (exit 1); exit 1; }
-+
-+(
-+  as_lineno_1=\$LINENO
-+  as_lineno_2=\$LINENO
-+  test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" &&
-+  test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; }
-+") 2> /dev/null; then
-+  :
-+else
-+  as_candidate_shells=
-+    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  case $as_dir in
-+	 /*)
-+	   for as_base in sh bash ksh sh5; do
-+	     as_candidate_shells="$as_candidate_shells $as_dir/$as_base"
-+	   done;;
-+       esac
-+done
-+IFS=$as_save_IFS
-+
-+
-+      for as_shell in $as_candidate_shells $SHELL; do
-+	 # Try only shells that exist, to save several forks.
-+	 if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
-+		{ ("$as_shell") 2> /dev/null <<\_ASEOF
-+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-+  emulate sh
-+  NULLCMD=:
-+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-+  # is contrary to our usage.  Disable this feature.
-+  alias -g '${1+"$@"}'='"$@"'
-+  setopt NO_GLOB_SUBST
-+else
-+  case `(set -o) 2>/dev/null` in
-+  *posix*) set -o posix ;;
-+esac
-+
-+fi
-+
-+
-+:
-+_ASEOF
-+}; then
-+  CONFIG_SHELL=$as_shell
-+	       as_have_required=yes
-+	       if { "$as_shell" 2> /dev/null <<\_ASEOF
-+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-+  emulate sh
-+  NULLCMD=:
-+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-+  # is contrary to our usage.  Disable this feature.
-+  alias -g '${1+"$@"}'='"$@"'
-+  setopt NO_GLOB_SUBST
-+else
-+  case `(set -o) 2>/dev/null` in
-+  *posix*) set -o posix ;;
-+esac
-+
-+fi
-+
-+
-+:
-+(as_func_return () {
-+  (exit $1)
-+}
-+as_func_success () {
-+  as_func_return 0
-+}
-+as_func_failure () {
-+  as_func_return 1
-+}
-+as_func_ret_success () {
-+  return 0
-+}
-+as_func_ret_failure () {
-+  return 1
-+}
-+
-+exitcode=0
-+if as_func_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_success failed.
-+fi
-+
-+if as_func_failure; then
-+  exitcode=1
-+  echo as_func_failure succeeded.
-+fi
-+
-+if as_func_ret_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_ret_success failed.
-+fi
-+
-+if as_func_ret_failure; then
-+  exitcode=1
-+  echo as_func_ret_failure succeeded.
-+fi
-+
-+if ( set x; as_func_ret_success y && test x = "$1" ); then
-+  :
-+else
-+  exitcode=1
-+  echo positional parameters were not saved.
-+fi
-+
-+test $exitcode = 0) || { (exit 1); exit 1; }
-+
-+(
-+  as_lineno_1=$LINENO
-+  as_lineno_2=$LINENO
-+  test "x$as_lineno_1" != "x$as_lineno_2" &&
-+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; }
-+
-+_ASEOF
-+}; then
-+  break
-+fi
-+
-+fi
-+
-+      done
-+
-+      if test "x$CONFIG_SHELL" != x; then
-+  for as_var in BASH_ENV ENV
-+        do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+        done
-+        export CONFIG_SHELL
-+        exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
-+fi
-+
-+
-+    if test $as_have_required = no; then
-+  echo This script requires a shell more modern than all the
-+      echo shells that I found on your system.  Please install a
-+      echo modern shell, or manually run the script under such a
-+      echo shell if you do have one.
-+      { (exit 1); exit 1; }
-+fi
-+
-+    
-+fi
-+
-+fi
-+
-+
-+
-+(eval "as_func_return () {
-+  (exit \$1)
-+}
-+as_func_success () {
-+  as_func_return 0
-+}
-+as_func_failure () {
-+  as_func_return 1
-+}
-+as_func_ret_success () {
-+  return 0
-+}
-+as_func_ret_failure () {
-+  return 1
-+}
-+
-+exitcode=0
-+if as_func_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_success failed.
-+fi
-+
-+if as_func_failure; then
-+  exitcode=1
-+  echo as_func_failure succeeded.
-+fi
-+
-+if as_func_ret_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_ret_success failed.
-+fi
-+
-+if as_func_ret_failure; then
-+  exitcode=1
-+  echo as_func_ret_failure succeeded.
-+fi
-+
-+if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
-+  :
-+else
-+  exitcode=1
-+  echo positional parameters were not saved.
-+fi
-+
-+test \$exitcode = 0") || {
-+  echo No shell found that supports shell functions.
-+  echo Please tell autoconf at gnu.org about your system,
-+  echo including any error possibly output before this
-+  echo message
-+}
-+
-+
-+
-+  as_lineno_1=$LINENO
-+  as_lineno_2=$LINENO
-+  test "x$as_lineno_1" != "x$as_lineno_2" &&
-+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
-+
-+  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
-+  # uniformly replaced by the line number.  The first 'sed' inserts a
-+  # line-number line after each line using $LINENO; the second 'sed'
-+  # does the real work.  The second script uses 'N' to pair each
-+  # line-number line with the line containing $LINENO, and appends
-+  # trailing '-' during substitution so that $LINENO is not a special
-+  # case at line end.
-+  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
-+  # scripts with optimization help from Paolo Bonzini.  Blame Lee
-+  # E. McMahon (1931-1989) for sed's syntax.  :-)
-+  sed -n '
-+    p
-+    /[$]LINENO/=
-+  ' <$as_myself |
-+    sed '
-+      s/[$]LINENO.*/&-/
-+      t lineno
-+      b
-+      :lineno
-+      N
-+      :loop
-+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
-+      t loop
-+      s/-\n.*//
-+    ' >$as_me.lineno &&
-+  chmod +x "$as_me.lineno" ||
-+    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
-+   { (exit 1); exit 1; }; }
-+
-+  # Don't try to exec as it changes $[0], causing all sort of problems
-+  # (the dirname of $[0] is not the place where we might find the
-+  # original and so on.  Autoconf is especially sensitive to this).
-+  . "./$as_me.lineno"
-+  # Exit status is that of the last command.
-+  exit
-+}
-+
-+
-+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
-+  as_dirname=dirname
-+else
-+  as_dirname=false
-+fi
-+
-+ECHO_C= ECHO_N= ECHO_T=
-+case `echo -n x` in
-+-n*)
-+  case `echo 'x\c'` in
-+  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
-+  *)   ECHO_C='\c';;
-+  esac;;
-+*)
-+  ECHO_N='-n';;
-+esac
-+
-+if expr a : '\(a\)' >/dev/null 2>&1 &&
-+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
-+rm -f conf$$ conf$$.exe conf$$.file
-+if test -d conf$$.dir; then
-+  rm -f conf$$.dir/conf$$.file
-+else
-+  rm -f conf$$.dir
-+  mkdir conf$$.dir
-+fi
-+echo >conf$$.file
-+if ln -s conf$$.file conf$$ 2>/dev/null; then
-+  as_ln_s='ln -s'
-+  # ... but there are two gotchas:
-+  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
-+  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
-+  # In both cases, we have to default to `cp -p'.
-+  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-+    as_ln_s='cp -p'
-+elif ln conf$$.file conf$$ 2>/dev/null; then
-+  as_ln_s=ln
-+else
-+  as_ln_s='cp -p'
-+fi
-+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-+rmdir conf$$.dir 2>/dev/null
-+
-+if mkdir -p . 2>/dev/null; then
-+  as_mkdir_p=:
-+else
-+  test -d ./-p && rmdir ./-p
-+  as_mkdir_p=false
-+fi
-+
-+if test -x / >/dev/null 2>&1; then
-+  as_test_x='test -x'
-+else
-+  if ls -dL / >/dev/null 2>&1; then
-+    as_ls_L_option=L
-+  else
-+    as_ls_L_option=
-+  fi
-+  as_test_x='
-+    eval sh -c '\''
-+      if test -d "$1"; then
-+        test -d "$1/.";
-+      else
-+	case $1 in
-+        -*)set "./$1";;
-+	esac;
-+	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
-+	???[sx]*):;;*)false;;esac;fi
-+    '\'' sh
-+  '
-+fi
-+as_executable_p=$as_test_x
-+
-+# Sed expression to map a string onto a valid CPP name.
-+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-+
-+# Sed expression to map a string onto a valid variable name.
-+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-+
-+
-+
-+exec 7<&0 </dev/null 6>&1
-+
-+# Name of the host.
-+# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
-+# so uname gets run too.
-+ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
-+
-+#
-+# Initializations.
-+#
-+ac_default_prefix=/usr/local
-+ac_clean_files=
-+ac_config_libobj_dir=.
-+LIB@&t at OBJS=
-+cross_compiling=no
-+subdirs=
-+MFLAGS=
-+MAKEFLAGS=
-+SHELL=${CONFIG_SHELL-/bin/sh}
-+
-+# Identity of this package.
-+PACKAGE_NAME='Lustre'
-+PACKAGE_TARNAME='lustre'
-+PACKAGE_VERSION='LUSTRE_VERSION'
-+PACKAGE_STRING='Lustre LUSTRE_VERSION'
-+PACKAGE_BUGREPORT='https://bugzilla.lustre.org/'
-+
-+ac_unique_file="lustre/obdclass/obdo.c"
-+ac_default_prefix=/usr
-+# Factoring default headers for most tests.
-+ac_includes_default="\
-+#include <stdio.h>
-+#ifdef HAVE_SYS_TYPES_H
-+# include <sys/types.h>
-+#endif
-+#ifdef HAVE_SYS_STAT_H
-+# include <sys/stat.h>
-+#endif
-+#ifdef STDC_HEADERS
-+# include <stdlib.h>
-+# include <stddef.h>
-+#else
-+# ifdef HAVE_STDLIB_H
-+#  include <stdlib.h>
-+# endif
-+#endif
-+#ifdef HAVE_STRING_H
-+# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-+#  include <memory.h>
-+# endif
-+# include <string.h>
-+#endif
-+#ifdef HAVE_STRINGS_H
-+# include <strings.h>
-+#endif
-+#ifdef HAVE_INTTYPES_H
-+# include <inttypes.h>
-+#endif
-+#ifdef HAVE_STDINT_H
-+# include <stdint.h>
-+#endif
-+#ifdef HAVE_UNISTD_H
-+# include <unistd.h>
-+#endif"
-+
-+ac_subst_vars='SHELL
-+PATH_SEPARATOR
-+PACKAGE_NAME
-+PACKAGE_TARNAME
-+PACKAGE_VERSION
-+PACKAGE_STRING
-+PACKAGE_BUGREPORT
-+exec_prefix
-+prefix
-+program_transform_name
-+bindir
-+sbindir
-+libexecdir
-+datarootdir
-+datadir
-+sysconfdir
-+sharedstatedir
-+localstatedir
-+includedir
-+oldincludedir
-+docdir
-+infodir
-+htmldir
-+dvidir
-+pdfdir
-+psdir
-+libdir
-+localedir
-+mandir
-+DEFS
-+ECHO_C
-+ECHO_N
-+ECHO_T
-+LIBS
-+build_alias
-+host_alias
-+target_alias
-+AC_LUSTRE_MAJOR
-+AC_LUSTRE_MINOR
-+AC_LUSTRE_PATCH
-+AC_LUSTRE_FIX
-+AC_LUSTRE_VERSION_STRING
-+AC_LUSTRE_VER_ALLOWED_OFFSET
-+AC_LUSTRE_LIB_VER_OFFSET_WARN
-+AC_LUSTRE_CLI_VER_OFFSET_WARN
-+AC_LUSTRE_CLIENT_URN
-+AC_LUSTRE_MDS_URN
-+AC_LUSTRE_MGS_URN
-+AC_LUSTRE_OSS_URN
-+LDISKFS_ENABLED_TRUE
-+LDISKFS_ENABLED_FALSE
-+build
-+build_cpu
-+build_vendor
-+build_os
-+host
-+host_cpu
-+host_vendor
-+host_os
-+target
-+target_cpu
-+target_vendor
-+target_os
-+INSTALL_PROGRAM
-+INSTALL_SCRIPT
-+INSTALL_DATA
-+CYGPATH_W
-+PACKAGE
-+VERSION
-+ACLOCAL
-+AUTOCONF
-+AUTOMAKE
-+AUTOHEADER
-+MAKEINFO
-+AMTAR
-+install_sh
-+STRIP
-+INSTALL_STRIP_PROGRAM
-+AWK
-+SET_MAKE
-+am__leading_dot
-+CC
-+CFLAGS
-+LDFLAGS
-+CPPFLAGS
-+ac_ct_CC
-+EXEEXT
-+OBJEXT
-+DEPDIR
-+am__include
-+am__quote
-+AMDEP_TRUE
-+AMDEP_FALSE
-+AMDEPBACKSLASH
-+CCDEPMODE
-+am__fastdepCC_TRUE
-+am__fastdepCC_FALSE
-+lb_target_os
-+LIBCFS_SUBDIR
-+LIBCFS_INCLUDE_DIR
-+INCLUDE_RULES
-+LUSTRE
-+rootsbindir
-+demodir
-+pkgexampledir
-+RANLIB
-+CPP
-+GREP
-+EGREP
-+LLCPPFLAGS
-+LLCFLAGS
-+EXTRA_KCFLAGS
-+enable_uoss
-+POSIX_OSD_ENABLED_TRUE
-+POSIX_OSD_ENABLED_FALSE
-+ENABLE_DOC
-+ENABLE_INIT_SCRIPTS
-+LINUX
-+LINUX_OBJ
-+LINUX_CONFIG
-+ARCH_UM
-+UML_CFLAGS
-+MODULE_TARGET
-+linux25
-+KMODEXT
-+LINUXRELEASE
-+moduledir
-+modulefsdir
-+modulenetdir
-+RELEASE
-+SYMVERFILE
-+QSWCPPFLAGS
-+QSWLND
-+GMCPPFLAGS
-+GMLIBS
-+GMLND
-+OPENIBCPPFLAGS
-+OPENIBLND
-+CIBCPPFLAGS
-+CIBLND
-+VIBCPPFLAGS
-+VIBLND
-+IIBCPPFLAGS
-+IIBLND
-+EXTRA_LNET_INCLUDE
-+O2IBCPPFLAGS
-+O2IBLND
-+RACPPFLAGS
-+RALND
-+PTLLNDCPPFLAGS
-+PTLLND
-+MXCPPFLAGS
-+MXLIBS
-+MXLND
-+BACKINGFS
-+DMU_SRC
-+subdirs
-+SPL_SUBDIR
-+ZFS_SUBDIR
-+SPL_DIR
-+ZFS_DIR
-+DMU_OSD_ENABLED_TRUE
-+DMU_OSD_ENABLED_FALSE
-+KDMU_TRUE
-+KDMU_FALSE
-+SNMP_DIST_SUBDIR
-+SNMP_SUBDIR
-+LDISKFS_DIR
-+LDISKFS_SUBDIR
-+LDISKFS_IN_KERNEL_TRUE
-+LDISKFS_IN_KERNEL_FALSE
-+LUSTREIOKIT_SUBDIR
-+MPICC_WRAPPER
-+LIBREADLINE
-+LIBEFENCE
-+LIBWRAP
-+PTHREAD_LIBS
-+ENABLE_LIBPTHREAD
-+CAP_LIBS
-+UPTLLND
-+USOCKLND
-+ZLIB
-+NET_SNMP_CONFIG
-+NET_SNMP_CFLAGS
-+NET_SNMP_LIBS
-+agentdir
-+mibdir
-+MODULES_TRUE
-+MODULES_FALSE
-+UTILS_TRUE
-+UTILS_FALSE
-+TESTS_TRUE
-+TESTS_FALSE
-+DOC_TRUE
-+DOC_FALSE
-+INIT_SCRIPTS_TRUE
-+INIT_SCRIPTS_FALSE
-+LINUX_TRUE
-+LINUX_FALSE
-+DARWIN_TRUE
-+DARWIN_FALSE
-+CRAY_XT3_TRUE
-+CRAY_XT3_FALSE
-+SUNOS_TRUE
-+SUNOS_FALSE
-+LIBSYSIO_SUBDIR
-+SYSIO
-+LINUX25_TRUE
-+LINUX25_FALSE
-+BUILD_QSWLND_TRUE
-+BUILD_QSWLND_FALSE
-+BUILD_GMLND_TRUE
-+BUILD_GMLND_FALSE
-+BUILD_MXLND_TRUE
-+BUILD_MXLND_FALSE
-+BUILD_O2IBLND_TRUE
-+BUILD_O2IBLND_FALSE
-+BUILD_OPENIBLND_TRUE
-+BUILD_OPENIBLND_FALSE
-+BUILD_CIBLND_TRUE
-+BUILD_CIBLND_FALSE
-+BUILD_IIBLND_TRUE
-+BUILD_IIBLND_FALSE
-+BUILD_VIBLND_TRUE
-+BUILD_VIBLND_FALSE
-+BUILD_RALND_TRUE
-+BUILD_RALND_FALSE
-+BUILD_PTLLND_TRUE
-+BUILD_PTLLND_FALSE
-+BUILD_UPTLLND_TRUE
-+BUILD_UPTLLND_FALSE
-+BUILD_USOCKLND_TRUE
-+BUILD_USOCKLND_FALSE
-+LIBLUSTRE_TRUE
-+LIBLUSTRE_FALSE
-+USE_QUILT_TRUE
-+USE_QUILT_FALSE
-+LIBLUSTRE_TESTS_TRUE
-+LIBLUSTRE_TESTS_FALSE
-+MPITESTS_TRUE
-+MPITESTS_FALSE
-+CLIENT_TRUE
-+CLIENT_FALSE
-+SERVER_TRUE
-+SERVER_FALSE
-+QUOTA_TRUE
-+QUOTA_FALSE
-+BLKID_TRUE
-+BLKID_FALSE
-+EXT2FS_DEVEL_TRUE
-+EXT2FS_DEVEL_FALSE
-+LIBPTHREAD_TRUE
-+LIBPTHREAD_FALSE
-+ac_configure_args
-+MOSTLYCLEANFILES
-+LIB@&t at OBJS
-+LTLIBOBJS'
-+ac_subst_files=''
-+      ac_precious_vars='build_alias
-+host_alias
-+target_alias
-+CC
-+CFLAGS
-+LDFLAGS
-+LIBS
-+CPPFLAGS
-+CPP'
-+ac_subdirs_all='lustre/zfs-lustre
-+spl
-+zfs
-+libsysio
-+ldiskfs
-+lustre-iokit'
-+
-+# Initialize some variables set by options.
-+ac_init_help=
-+ac_init_version=false
-+# The variables have the same names as the options, with
-+# dashes changed to underlines.
-+cache_file=/dev/null
-+exec_prefix=NONE
-+no_create=
-+no_recursion=
-+prefix=NONE
-+program_prefix=NONE
-+program_suffix=NONE
-+program_transform_name=s,x,x,
-+silent=
-+site=
-+srcdir=
-+verbose=
-+x_includes=NONE
-+x_libraries=NONE
-+
-+# Installation directory options.
-+# These are left unexpanded so users can "make install exec_prefix=/foo"
-+# and all the variables that are supposed to be based on exec_prefix
-+# by default will actually change.
-+# Use braces instead of parens because sh, perl, etc. also accept them.
-+# (The list follows the same order as the GNU Coding Standards.)
-+bindir='${exec_prefix}/bin'
-+sbindir='${exec_prefix}/sbin'
-+libexecdir='${exec_prefix}/libexec'
-+datarootdir='${prefix}/share'
-+datadir='${datarootdir}'
-+sysconfdir='${prefix}/etc'
-+sharedstatedir='${prefix}/com'
-+localstatedir='${prefix}/var'
-+includedir='${prefix}/include'
-+oldincludedir='/usr/include'
-+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
-+infodir='${datarootdir}/info'
-+htmldir='${docdir}'
-+dvidir='${docdir}'
-+pdfdir='${docdir}'
-+psdir='${docdir}'
-+libdir='${exec_prefix}/lib'
-+localedir='${datarootdir}/locale'
-+mandir='${datarootdir}/man'
-+
-+ac_prev=
-+ac_dashdash=
-+for ac_option
-+do
-+  # If the previous option needs an argument, assign it.
-+  if test -n "$ac_prev"; then
-+    eval $ac_prev=\$ac_option
-+    ac_prev=
-+    continue
-+  fi
-+
-+  case $ac_option in
-+  *=*)	ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
-+  *)	ac_optarg=yes ;;
-+  esac
-+
-+  # Accept the important Cygnus configure options, so we can diagnose typos.
-+
-+  case $ac_dashdash$ac_option in
-+  --)
-+    ac_dashdash=yes ;;
-+
-+  -bindir | --bindir | --bindi | --bind | --bin | --bi)
-+    ac_prev=bindir ;;
-+  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
-+    bindir=$ac_optarg ;;
-+
-+  -build | --build | --buil | --bui | --bu)
-+    ac_prev=build_alias ;;
-+  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
-+    build_alias=$ac_optarg ;;
-+
-+  -cache-file | --cache-file | --cache-fil | --cache-fi \
-+  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
-+    ac_prev=cache_file ;;
-+  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
-+  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
-+    cache_file=$ac_optarg ;;
-+
-+  --config-cache | -C)
-+    cache_file=config.cache ;;
-+
-+  -datadir | --datadir | --datadi | --datad)
-+    ac_prev=datadir ;;
-+  -datadir=* | --datadir=* | --datadi=* | --datad=*)
-+    datadir=$ac_optarg ;;
-+
-+  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
-+  | --dataroo | --dataro | --datar)
-+    ac_prev=datarootdir ;;
-+  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
-+  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
-+    datarootdir=$ac_optarg ;;
-+
-+  -disable-* | --disable-*)
-+    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
-+   { (exit 1); exit 1; }; }
-+    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
-+    eval enable_$ac_feature=no ;;
-+
-+  -docdir | --docdir | --docdi | --doc | --do)
-+    ac_prev=docdir ;;
-+  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
-+    docdir=$ac_optarg ;;
-+
-+  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
-+    ac_prev=dvidir ;;
-+  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
-+    dvidir=$ac_optarg ;;
-+
-+  -enable-* | --enable-*)
-+    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
-+   { (exit 1); exit 1; }; }
-+    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
-+    eval enable_$ac_feature=\$ac_optarg ;;
-+
-+  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
-+  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
-+  | --exec | --exe | --ex)
-+    ac_prev=exec_prefix ;;
-+  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
-+  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
-+  | --exec=* | --exe=* | --ex=*)
-+    exec_prefix=$ac_optarg ;;
-+
-+  -gas | --gas | --ga | --g)
-+    # Obsolete; use --with-gas.
-+    with_gas=yes ;;
-+
-+  -help | --help | --hel | --he | -h)
-+    ac_init_help=long ;;
-+  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
-+    ac_init_help=recursive ;;
-+  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
-+    ac_init_help=short ;;
-+
-+  -host | --host | --hos | --ho)
-+    ac_prev=host_alias ;;
-+  -host=* | --host=* | --hos=* | --ho=*)
-+    host_alias=$ac_optarg ;;
-+
-+  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
-+    ac_prev=htmldir ;;
-+  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
-+  | --ht=*)
-+    htmldir=$ac_optarg ;;
-+
-+  -includedir | --includedir | --includedi | --included | --include \
-+  | --includ | --inclu | --incl | --inc)
-+    ac_prev=includedir ;;
-+  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
-+  | --includ=* | --inclu=* | --incl=* | --inc=*)
-+    includedir=$ac_optarg ;;
-+
-+  -infodir | --infodir | --infodi | --infod | --info | --inf)
-+    ac_prev=infodir ;;
-+  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
-+    infodir=$ac_optarg ;;
-+
-+  -libdir | --libdir | --libdi | --libd)
-+    ac_prev=libdir ;;
-+  -libdir=* | --libdir=* | --libdi=* | --libd=*)
-+    libdir=$ac_optarg ;;
-+
-+  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
-+  | --libexe | --libex | --libe)
-+    ac_prev=libexecdir ;;
-+  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
-+  | --libexe=* | --libex=* | --libe=*)
-+    libexecdir=$ac_optarg ;;
-+
-+  -localedir | --localedir | --localedi | --localed | --locale)
-+    ac_prev=localedir ;;
-+  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
-+    localedir=$ac_optarg ;;
-+
-+  -localstatedir | --localstatedir | --localstatedi | --localstated \
-+  | --localstate | --localstat | --localsta | --localst | --locals)
-+    ac_prev=localstatedir ;;
-+  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
-+  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
-+    localstatedir=$ac_optarg ;;
-+
-+  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
-+    ac_prev=mandir ;;
-+  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
-+    mandir=$ac_optarg ;;
-+
-+  -nfp | --nfp | --nf)
-+    # Obsolete; use --without-fp.
-+    with_fp=no ;;
-+
-+  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
-+  | --no-cr | --no-c | -n)
-+    no_create=yes ;;
-+
-+  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
-+  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
-+    no_recursion=yes ;;
-+
-+  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
-+  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
-+  | --oldin | --oldi | --old | --ol | --o)
-+    ac_prev=oldincludedir ;;
-+  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
-+  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
-+  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
-+    oldincludedir=$ac_optarg ;;
-+
-+  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
-+    ac_prev=prefix ;;
-+  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
-+    prefix=$ac_optarg ;;
-+
-+  -program-prefix | --program-prefix | --program-prefi | --program-pref \
-+  | --program-pre | --program-pr | --program-p)
-+    ac_prev=program_prefix ;;
-+  -program-prefix=* | --program-prefix=* | --program-prefi=* \
-+  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
-+    program_prefix=$ac_optarg ;;
-+
-+  -program-suffix | --program-suffix | --program-suffi | --program-suff \
-+  | --program-suf | --program-su | --program-s)
-+    ac_prev=program_suffix ;;
-+  -program-suffix=* | --program-suffix=* | --program-suffi=* \
-+  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
-+    program_suffix=$ac_optarg ;;
-+
-+  -program-transform-name | --program-transform-name \
-+  | --program-transform-nam | --program-transform-na \
-+  | --program-transform-n | --program-transform- \
-+  | --program-transform | --program-transfor \
-+  | --program-transfo | --program-transf \
-+  | --program-trans | --program-tran \
-+  | --progr-tra | --program-tr | --program-t)
-+    ac_prev=program_transform_name ;;
-+  -program-transform-name=* | --program-transform-name=* \
-+  | --program-transform-nam=* | --program-transform-na=* \
-+  | --program-transform-n=* | --program-transform-=* \
-+  | --program-transform=* | --program-transfor=* \
-+  | --program-transfo=* | --program-transf=* \
-+  | --program-trans=* | --program-tran=* \
-+  | --progr-tra=* | --program-tr=* | --program-t=*)
-+    program_transform_name=$ac_optarg ;;
-+
-+  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
-+    ac_prev=pdfdir ;;
-+  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
-+    pdfdir=$ac_optarg ;;
-+
-+  -psdir | --psdir | --psdi | --psd | --ps)
-+    ac_prev=psdir ;;
-+  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
-+    psdir=$ac_optarg ;;
-+
-+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-+  | -silent | --silent | --silen | --sile | --sil)
-+    silent=yes ;;
-+
-+  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
-+    ac_prev=sbindir ;;
-+  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
-+  | --sbi=* | --sb=*)
-+    sbindir=$ac_optarg ;;
-+
-+  -sharedstatedir | --sharedstatedir | --sharedstatedi \
-+  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
-+  | --sharedst | --shareds | --shared | --share | --shar \
-+  | --sha | --sh)
-+    ac_prev=sharedstatedir ;;
-+  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
-+  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
-+  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
-+  | --sha=* | --sh=*)
-+    sharedstatedir=$ac_optarg ;;
-+
-+  -site | --site | --sit)
-+    ac_prev=site ;;
-+  -site=* | --site=* | --sit=*)
-+    site=$ac_optarg ;;
-+
-+  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
-+    ac_prev=srcdir ;;
-+  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
-+    srcdir=$ac_optarg ;;
-+
-+  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
-+  | --syscon | --sysco | --sysc | --sys | --sy)
-+    ac_prev=sysconfdir ;;
-+  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
-+  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
-+    sysconfdir=$ac_optarg ;;
-+
-+  -target | --target | --targe | --targ | --tar | --ta | --t)
-+    ac_prev=target_alias ;;
-+  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
-+    target_alias=$ac_optarg ;;
-+
-+  -v | -verbose | --verbose | --verbos | --verbo | --verb)
-+    verbose=yes ;;
-+
-+  -version | --version | --versio | --versi | --vers | -V)
-+    ac_init_version=: ;;
-+
-+  -with-* | --with-*)
-+    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid package name: $ac_package" >&2
-+   { (exit 1); exit 1; }; }
-+    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
-+    eval with_$ac_package=\$ac_optarg ;;
-+
-+  -without-* | --without-*)
-+    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid package name: $ac_package" >&2
-+   { (exit 1); exit 1; }; }
-+    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
-+    eval with_$ac_package=no ;;
-+
-+  --x)
-+    # Obsolete; use --with-x.
-+    with_x=yes ;;
-+
-+  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
-+  | --x-incl | --x-inc | --x-in | --x-i)
-+    ac_prev=x_includes ;;
-+  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
-+  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
-+    x_includes=$ac_optarg ;;
-+
-+  -x-libraries | --x-libraries | --x-librarie | --x-librari \
-+  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
-+    ac_prev=x_libraries ;;
-+  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
-+  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
-+    x_libraries=$ac_optarg ;;
-+
-+  -*) { echo "$as_me: error: unrecognized option: $ac_option
-+Try \`$0 --help' for more information." >&2
-+   { (exit 1); exit 1; }; }
-+    ;;
-+
-+  *=*)
-+    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
-+   { (exit 1); exit 1; }; }
-+    eval $ac_envvar=\$ac_optarg
-+    export $ac_envvar ;;
-+
-+  *)
-+    # FIXME: should be removed in autoconf 3.0.
-+    echo "$as_me: WARNING: you should use --build, --host, --target" >&2
-+    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      echo "$as_me: WARNING: invalid host type: $ac_option" >&2
-+    : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
-+    ;;
-+
-+  esac
-+done
-+
-+if test -n "$ac_prev"; then
-+  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
-+  { echo "$as_me: error: missing argument to $ac_option" >&2
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+# Be sure to have absolute directory names.
-+for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
-+		datadir sysconfdir sharedstatedir localstatedir includedir \
-+		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
-+		libdir localedir mandir
-+do
-+  eval ac_val=\$$ac_var
-+  case $ac_val in
-+    [\\/$]* | ?:[\\/]* )  continue;;
-+    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
-+  esac
-+  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
-+   { (exit 1); exit 1; }; }
-+done
-+
-+# There might be people who depend on the old broken behavior: `$host'
-+# used to hold the argument of --host etc.
-+# FIXME: To remove some day.
-+build=$build_alias
-+host=$host_alias
-+target=$target_alias
-+
-+# FIXME: To remove some day.
-+if test "x$host_alias" != x; then
-+  if test "x$build_alias" = x; then
-+    cross_compiling=maybe
-+    echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
-+    If a cross compiler is detected then cross compile mode will be used." >&2
-+  elif test "x$build_alias" != "x$host_alias"; then
-+    cross_compiling=yes
-+  fi
-+fi
-+
-+ac_tool_prefix=
-+test -n "$host_alias" && ac_tool_prefix=$host_alias-
-+
-+test "$silent" = yes && exec 6>/dev/null
-+
-+
-+ac_pwd=`pwd` && test -n "$ac_pwd" &&
-+ac_ls_di=`ls -di .` &&
-+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
-+  { echo "$as_me: error: Working directory cannot be determined" >&2
-+   { (exit 1); exit 1; }; }
-+test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
-+  { echo "$as_me: error: pwd does not report name of working directory" >&2
-+   { (exit 1); exit 1; }; }
-+
-+
-+# Find the source files, if location was not specified.
-+if test -z "$srcdir"; then
-+  ac_srcdir_defaulted=yes
-+  # Try the directory containing this script, then the parent directory.
-+  ac_confdir=`$as_dirname -- "$0" ||
-+$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$0" : 'X\(//\)[^/]' \| \
-+	 X"$0" : 'X\(//\)$' \| \
-+	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$0" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+  srcdir=$ac_confdir
-+  if test ! -r "$srcdir/$ac_unique_file"; then
-+    srcdir=..
-+  fi
-+else
-+  ac_srcdir_defaulted=no
-+fi
-+if test ! -r "$srcdir/$ac_unique_file"; then
-+  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
-+  { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
-+   { (exit 1); exit 1; }; }
-+fi
-+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
-+ac_abs_confdir=`(
-+	cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2
-+   { (exit 1); exit 1; }; }
-+	pwd)`
-+# When building in place, set srcdir=.
-+if test "$ac_abs_confdir" = "$ac_pwd"; then
-+  srcdir=.
-+fi
-+# Remove unnecessary trailing slashes from srcdir.
-+# Double slashes in file names in object file debugging info
-+# mess up M-x gdb in Emacs.
-+case $srcdir in
-+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
-+esac
-+for ac_var in $ac_precious_vars; do
-+  eval ac_env_${ac_var}_set=\${${ac_var}+set}
-+  eval ac_env_${ac_var}_value=\$${ac_var}
-+  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
-+  eval ac_cv_env_${ac_var}_value=\$${ac_var}
-+done
-+
-+#
-+# Report the --help message.
-+#
-+if test "$ac_init_help" = "long"; then
-+  # Omit some internal or obsolete options to make the list less imposing.
-+  # This message is too long to be a string in the A/UX 3.1 sh.
-+  cat <<_ACEOF
-+\`configure' configures Lustre LUSTRE_VERSION to adapt to many kinds of systems.
-+
-+Usage: $0 [OPTION]... [VAR=VALUE]...
-+
-+To assign environment variables (e.g., CC, CFLAGS...), specify them as
-+VAR=VALUE.  See below for descriptions of some of the useful variables.
-+
-+Defaults for the options are specified in brackets.
-+
-+Configuration:
-+  -h, --help              display this help and exit
-+      --help=short        display options specific to this package
-+      --help=recursive    display the short help of all the included packages
-+  -V, --version           display version information and exit
-+  -q, --quiet, --silent   do not print \`checking...' messages
-+      --cache-file=FILE   cache test results in FILE [disabled]
-+  -C, --config-cache      alias for \`--cache-file=config.cache'
-+  -n, --no-create         do not create output files
-+      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
-+
-+Installation directories:
-+  --prefix=PREFIX         install architecture-independent files in PREFIX
-+			  [$ac_default_prefix]
-+  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
-+			  [PREFIX]
-+
-+By default, \`make install' will install all the files in
-+\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
-+an installation prefix other than \`$ac_default_prefix' using \`--prefix',
-+for instance \`--prefix=\$HOME'.
-+
-+For better control, use the options below.
-+
-+Fine tuning of the installation directories:
-+  --bindir=DIR           user executables [EPREFIX/bin]
-+  --sbindir=DIR          system admin executables [EPREFIX/sbin]
-+  --libexecdir=DIR       program executables [EPREFIX/libexec]
-+  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
-+  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
-+  --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
-+  --libdir=DIR           object code libraries [EPREFIX/lib]
-+  --includedir=DIR       C header files [PREFIX/include]
-+  --oldincludedir=DIR    C header files for non-gcc [/usr/include]
-+  --datarootdir=DIR      read-only arch.-independent data root [PREFIX/share]
-+  --datadir=DIR          read-only architecture-independent data [DATAROOTDIR]
-+  --infodir=DIR          info documentation [DATAROOTDIR/info]
-+  --localedir=DIR        locale-dependent data [DATAROOTDIR/locale]
-+  --mandir=DIR           man documentation [DATAROOTDIR/man]
-+  --docdir=DIR           documentation root @<:@DATAROOTDIR/doc/lustre@:>@
-+  --htmldir=DIR          html documentation [DOCDIR]
-+  --dvidir=DIR           dvi documentation [DOCDIR]
-+  --pdfdir=DIR           pdf documentation [DOCDIR]
-+  --psdir=DIR            ps documentation [DOCDIR]
-+_ACEOF
-+
-+  cat <<\_ACEOF
-+
-+Program names:
-+  --program-prefix=PREFIX            prepend PREFIX to installed program names
-+  --program-suffix=SUFFIX            append SUFFIX to installed program names
-+  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
-+
-+System types:
-+  --build=BUILD     configure for building on BUILD [guessed]
-+  --host=HOST       cross-compile to build programs to run on HOST [BUILD]
-+  --target=TARGET   configure for building compilers for TARGET [HOST]
-+_ACEOF
-+fi
-+
-+if test -n "$ac_init_help"; then
-+  case $ac_init_help in
-+     short | recursive ) echo "Configuration of Lustre LUSTRE_VERSION:";;
-+   esac
-+  cat <<\_ACEOF
-+
-+Optional Features:
-+  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
-+  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
-+  --enable-quota          enable quota support
-+  --disable-dependency-tracking Speeds up one-time builds
-+  --enable-dependency-tracking  Do not reject slow dependency extractors
-+  --enable-cray-xt3       enable building of Cray XT3 features
-+  --enable-bgl            enable building of BGL features
-+  --enable-uoss           enable userspace OSS
-+  --enable-posix-osd      enable using of posix osd
-+  --disable-doc           skip creation of pdf documentation
-+  --disable-utils         disable building of Lustre utility programs
-+  --disable-tests         disable building of Lustre tests
-+  --disable-server        disable Lustre server support
-+  --disable-client        disable Lustre client support
-+  --disable-libcfs-cdebug disable libcfs CDEBUG, CWARN
-+  --disable-libcfs-trace  disable libcfs ENTRY/EXIT
-+  --disable-libcfs-assert disable libcfs LASSERT, LASSERTF
-+  --disable-modules       disable building of Lustre kernel modules
-+  --disable-affinity      disable process/irq affinity
-+  --disable-backoff       disable socknal tunable backoff
-+  --enable-panic_dumplog  enable panic_dumplog
-+  --disable-pinger        disable recovery pinger support
-+  --disable-checksum      disable data checksum support
-+  --disable-liblustre-recovery 
-+                          disable liblustre recovery support
-+  --enable-health-write   enable disk writes when doing health check
-+  --enable-lru-resize     enable lru resize support
-+  --disable-adaptive-timeouts 
-+                          disable ptlrpc adaptive timeouts support
-+  --enable-delayed-recovery 
-+                          enable late recovery after main one
-+  --enable-ext4           enable building of ldiskfs based on ext4
-+  --enable-dmu            enable the DMU backend
-+  --disable-liblustre     disable building of Lustre library
-+  --enable-liblustre-tests 
-+                          enable liblustre tests, if --disable-tests is used
-+  --disable-liblustre-acl disable ACL support for liblustre
-+  --enable-mpitests=yes|no|mpicc wrapper 
-+                          include mpi tests
-+  --disable-readline      disable readline support
-+  --enable-efence         use efence library
-+  --enable-libwrap        use TCP wrappers
-+  --disable-libpthread    disable libpthread
-+  --disable-sysio-init    call sysio init functions when initializing
-+                          liblustre
-+  --disable-urandom       disable use of /dev/urandom for liblustre
-+  --disable-usocklnd      disable usocklnd
-+  --enable-mindf          Make statfs report the minimum available space on
-+                          any single OST instead of the sum of free space on
-+                          all OSTs
-+  --disable-fail-alloc    disable randomly alloc failure
-+  --enable-snmp           require SNMP support (default=auto)
-+
-+Optional Packages:
-+  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
-+  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
-+  --with-linux=path       set path to Linux source (default=/usr/src/linux)
-+  --with-linux-obj=path   set path to Linux objects dir (default=$LINUX)
-+  --with-linux-config=path 
-+                          set path to Linux .conf (default=$LINUX_OBJ/.config)
-+  --with-kernel-source-header=path 
-+                          Use a different kernel version header. Consult
-+                          build/README.kernel-source for details.
-+  --with-o2ib=path        build o2iblnd against path
-+  --with-qsnet=path       set path to qsnet source (default=$LINUX)
-+  --with-gm=path-to-gm-source-tree 
-+                          build gmlnd against path
-+  --with-gm-install=path-to-gm-install-tree 
-+                          say where GM has been installed
-+  --with-openib=path      build openiblnd against path
-+  --with-cib=path         build ciblnd against path
-+  --with-vib=path         build viblnd against path
-+  --with-iib=path         build iiblnd against path
-+  --with-portals=path     set path to portals
-+  --with-mx=path          build mxlnd against path
-+  --with-sysio=path       set path to libsysio source (default is included
-+                          libsysio)
-+  --with-ldiskfs=path     set path to ldiskfs source (default is included
-+                          ldiskfs)
-+  --with-ldiskfs-inkernel use ldiskfs built in to the kernel
-+  --with-lustre-iokit=path 
-+                          set path to lustre-iokit source (default is included
-+                          lustre-iokit)
-+  --with-ldiskfsprogs     use alternate names for ldiskfs-enabled e2fsprogs
-+  --with-max-payload-mb=MBytes 
-+                          set maximum lnet payload in MBytes
-+  --with-obd-buffer-size=size 
-+                          set lctl ioctl maximum bytes (default=8192)
-+
-+Some influential environment variables:
-+  CC          C compiler command
-+  CFLAGS      C compiler flags
-+  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
-+              nonstandard directory <lib dir>
-+  LIBS        libraries to pass to the linker, e.g. -l<library>
-+  CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
-+              you have headers in a nonstandard directory <include dir>
-+  CPP         C preprocessor
-+
-+Use these variables to override the choices made by `configure' or to help
-+it to find libraries and programs with nonstandard names/locations.
-+
-+Report bugs to <https://bugzilla.lustre.org/>.
-+_ACEOF
-+ac_status=$?
-+fi
-+
-+if test "$ac_init_help" = "recursive"; then
-+  # If there are subdirs, report their specific --help.
-+  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
-+    test -d "$ac_dir" || continue
-+    ac_builddir=.
-+
-+case "$ac_dir" in
-+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+*)
-+  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
-+  # A ".." for each directory in $ac_dir_suffix.
-+  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
-+  case $ac_top_builddir_sub in
-+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
-+  esac ;;
-+esac
-+ac_abs_top_builddir=$ac_pwd
-+ac_abs_builddir=$ac_pwd$ac_dir_suffix
-+# for backward compatibility:
-+ac_top_builddir=$ac_top_build_prefix
-+
-+case $srcdir in
-+  .)  # We are building in place.
-+    ac_srcdir=.
-+    ac_top_srcdir=$ac_top_builddir_sub
-+    ac_abs_top_srcdir=$ac_pwd ;;
-+  [\\/]* | ?:[\\/]* )  # Absolute name.
-+    ac_srcdir=$srcdir$ac_dir_suffix;
-+    ac_top_srcdir=$srcdir
-+    ac_abs_top_srcdir=$srcdir ;;
-+  *) # Relative name.
-+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
-+    ac_top_srcdir=$ac_top_build_prefix$srcdir
-+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-+esac
-+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-+
-+    cd "$ac_dir" || { ac_status=$?; continue; }
-+    # Check for guested configure.
-+    if test -f "$ac_srcdir/configure.gnu"; then
-+      echo &&
-+      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
-+    elif test -f "$ac_srcdir/configure"; then
-+      echo &&
-+      $SHELL "$ac_srcdir/configure" --help=recursive
-+    else
-+      echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
-+    fi || ac_status=$?
-+    cd "$ac_pwd" || { ac_status=$?; break; }
-+  done
-+fi
-+
-+test -n "$ac_init_help" && exit $ac_status
-+if $ac_init_version; then
-+  cat <<\_ACEOF
-+Lustre configure LUSTRE_VERSION
-+generated by GNU Autoconf 2.61
-+
-+Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
-+2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-+This configure script is free software; the Free Software Foundation
-+gives unlimited permission to copy, distribute and modify it.
-+_ACEOF
-+  exit
-+fi
-+cat >config.log <<_ACEOF
-+This file contains any messages produced by compilers while
-+running configure, to aid debugging if configure makes a mistake.
-+
-+It was created by Lustre $as_me LUSTRE_VERSION, which was
-+generated by GNU Autoconf 2.61.  Invocation command line was
-+
-+  $ $0 $@
-+
-+_ACEOF
-+exec 5>>config.log
-+{
-+cat <<_ASUNAME
-+@%:@@%:@ --------- @%:@@%:@
-+@%:@@%:@ Platform. @%:@@%:@
-+@%:@@%:@ --------- @%:@@%:@
-+
-+hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
-+uname -m = `(uname -m) 2>/dev/null || echo unknown`
-+uname -r = `(uname -r) 2>/dev/null || echo unknown`
-+uname -s = `(uname -s) 2>/dev/null || echo unknown`
-+uname -v = `(uname -v) 2>/dev/null || echo unknown`
-+
-+/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
-+/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
-+
-+/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
-+/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
-+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
-+/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
-+/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
-+/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
-+/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
-+
-+_ASUNAME
-+
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  echo "PATH: $as_dir"
-+done
-+IFS=$as_save_IFS
-+
-+} >&5
-+
-+cat >&5 <<_ACEOF
-+
-+
-+@%:@@%:@ ----------- @%:@@%:@
-+@%:@@%:@ Core tests. @%:@@%:@
-+@%:@@%:@ ----------- @%:@@%:@
-+
-+_ACEOF
-+
-+
-+# Keep a trace of the command line.
-+# Strip out --no-create and --no-recursion so they do not pile up.
-+# Strip out --silent because we don't want to record it for future runs.
-+# Also quote any args containing shell meta-characters.
-+# Make two passes to allow for proper duplicate-argument suppression.
-+ac_configure_args=
-+ac_configure_args0=
-+ac_configure_args1=
-+ac_must_keep_next=false
-+for ac_pass in 1 2
-+do
-+  for ac_arg
-+  do
-+    case $ac_arg in
-+    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
-+    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-+    | -silent | --silent | --silen | --sile | --sil)
-+      continue ;;
-+    *\'*)
-+      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
-+    esac
-+    case $ac_pass in
-+    1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
-+    2)
-+      ac_configure_args1="$ac_configure_args1 '$ac_arg'"
-+      if test $ac_must_keep_next = true; then
-+	ac_must_keep_next=false # Got value, back to normal.
-+      else
-+	case $ac_arg in
-+	  *=* | --config-cache | -C | -disable-* | --disable-* \
-+	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
-+	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
-+	  | -with-* | --with-* | -without-* | --without-* | --x)
-+	    case "$ac_configure_args0 " in
-+	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
-+	    esac
-+	    ;;
-+	  -* ) ac_must_keep_next=true ;;
-+	esac
-+      fi
-+      ac_configure_args="$ac_configure_args '$ac_arg'"
-+      ;;
-+    esac
-+  done
-+done
-+$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
-+$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
-+
-+# When interrupted or exit'd, cleanup temporary files, and complete
-+# config.log.  We remove comments because anyway the quotes in there
-+# would cause problems or look ugly.
-+# WARNING: Use '\'' to represent an apostrophe within the trap.
-+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
-+trap 'exit_status=$?
-+  # Save into config.log some information that might help in debugging.
-+  {
-+    echo
-+
-+    cat <<\_ASBOX
-+@%:@@%:@ ---------------- @%:@@%:@
-+@%:@@%:@ Cache variables. @%:@@%:@
-+@%:@@%:@ ---------------- @%:@@%:@
-+_ASBOX
-+    echo
-+    # The following way of writing the cache mishandles newlines in values,
-+(
-+  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
-+    eval ac_val=\$$ac_var
-+    case $ac_val in #(
-+    *${as_nl}*)
-+      case $ac_var in #(
-+      *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
-+echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
-+      esac
-+      case $ac_var in #(
-+      _ | IFS | as_nl) ;; #(
-+      *) $as_unset $ac_var ;;
-+      esac ;;
-+    esac
-+  done
-+  (set) 2>&1 |
-+    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
-+    *${as_nl}ac_space=\ *)
-+      sed -n \
-+	"s/'\''/'\''\\\\'\'''\''/g;
-+	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
-+      ;; #(
-+    *)
-+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
-+      ;;
-+    esac |
-+    sort
-+)
-+    echo
-+
-+    cat <<\_ASBOX
-+@%:@@%:@ ----------------- @%:@@%:@
-+@%:@@%:@ Output variables. @%:@@%:@
-+@%:@@%:@ ----------------- @%:@@%:@
-+_ASBOX
-+    echo
-+    for ac_var in $ac_subst_vars
-+    do
-+      eval ac_val=\$$ac_var
-+      case $ac_val in
-+      *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
-+      esac
-+      echo "$ac_var='\''$ac_val'\''"
-+    done | sort
-+    echo
-+
-+    if test -n "$ac_subst_files"; then
-+      cat <<\_ASBOX
-+@%:@@%:@ ------------------- @%:@@%:@
-+@%:@@%:@ File substitutions. @%:@@%:@
-+@%:@@%:@ ------------------- @%:@@%:@
-+_ASBOX
-+      echo
-+      for ac_var in $ac_subst_files
-+      do
-+	eval ac_val=\$$ac_var
-+	case $ac_val in
-+	*\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
-+	esac
-+	echo "$ac_var='\''$ac_val'\''"
-+      done | sort
-+      echo
-+    fi
-+
-+    if test -s confdefs.h; then
-+      cat <<\_ASBOX
-+@%:@@%:@ ----------- @%:@@%:@
-+@%:@@%:@ confdefs.h. @%:@@%:@
-+@%:@@%:@ ----------- @%:@@%:@
-+_ASBOX
-+      echo
-+      cat confdefs.h
-+      echo
-+    fi
-+    test "$ac_signal" != 0 &&
-+      echo "$as_me: caught signal $ac_signal"
-+    echo "$as_me: exit $exit_status"
-+  } >&5
-+  rm -f core *.core core.conftest.* &&
-+    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
-+    exit $exit_status
-+' 0
-+for ac_signal in 1 2 13 15; do
-+  trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
-+done
-+ac_signal=0
-+
-+# confdefs.h avoids OS command line length limits that DEFS can exceed.
-+rm -f -r conftest* confdefs.h
-+
-+# Predefined preprocessor variables.
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_NAME "$PACKAGE_NAME"
-+_ACEOF
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME"
-+_ACEOF
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_VERSION "$PACKAGE_VERSION"
-+_ACEOF
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_STRING "$PACKAGE_STRING"
-+_ACEOF
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
-+_ACEOF
-+
-+
-+# Let the site file select an alternate cache file if it wants to.
-+# Prefer explicitly selected file to automatically selected ones.
-+if test -n "$CONFIG_SITE"; then
-+  set x "$CONFIG_SITE"
-+elif test "x$prefix" != xNONE; then
-+  set x "$prefix/share/config.site" "$prefix/etc/config.site"
-+else
-+  set x "$ac_default_prefix/share/config.site" \
-+	"$ac_default_prefix/etc/config.site"
-+fi
-+shift
-+for ac_site_file
-+do
-+  if test -r "$ac_site_file"; then
-+    { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
-+echo "$as_me: loading site script $ac_site_file" >&6;}
-+    sed 's/^/| /' "$ac_site_file" >&5
-+    . "$ac_site_file"
-+  fi
-+done
-+
-+if test -r "$cache_file"; then
-+  # Some versions of bash will fail to source /dev/null (special
-+  # files actually), so we avoid doing that.
-+  if test -f "$cache_file"; then
-+    { echo "$as_me:$LINENO: loading cache $cache_file" >&5
-+echo "$as_me: loading cache $cache_file" >&6;}
-+    case $cache_file in
-+      [\\/]* | ?:[\\/]* ) . "$cache_file";;
-+      *)                      . "./$cache_file";;
-+    esac
-+  fi
-+else
-+  { echo "$as_me:$LINENO: creating cache $cache_file" >&5
-+echo "$as_me: creating cache $cache_file" >&6;}
-+  >$cache_file
-+fi
-+
-+# Check that the precious variables saved in the cache have kept the same
-+# value.
-+ac_cache_corrupted=false
-+for ac_var in $ac_precious_vars; do
-+  eval ac_old_set=\$ac_cv_env_${ac_var}_set
-+  eval ac_new_set=\$ac_env_${ac_var}_set
-+  eval ac_old_val=\$ac_cv_env_${ac_var}_value
-+  eval ac_new_val=\$ac_env_${ac_var}_value
-+  case $ac_old_set,$ac_new_set in
-+    set,)
-+      { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
-+echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
-+      ac_cache_corrupted=: ;;
-+    ,set)
-+      { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
-+echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
-+      ac_cache_corrupted=: ;;
-+    ,);;
-+    *)
-+      if test "x$ac_old_val" != "x$ac_new_val"; then
-+	{ echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
-+echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
-+	{ echo "$as_me:$LINENO:   former value:  $ac_old_val" >&5
-+echo "$as_me:   former value:  $ac_old_val" >&2;}
-+	{ echo "$as_me:$LINENO:   current value: $ac_new_val" >&5
-+echo "$as_me:   current value: $ac_new_val" >&2;}
-+	ac_cache_corrupted=:
-+      fi;;
-+  esac
-+  # Pass precious variables to config.status.
-+  if test "$ac_new_set" = set; then
-+    case $ac_new_val in
-+    *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
-+    *) ac_arg=$ac_var=$ac_new_val ;;
-+    esac
-+    case " $ac_configure_args " in
-+      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
-+      *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
-+    esac
-+  fi
-+done
-+if $ac_cache_corrupted; then
-+  { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
-+echo "$as_me: error: changes in the environment can compromise the build" >&2;}
-+  { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
-+echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+
-+
-+
-+
-+
-+
-+# Note: we're starting prerelease versions at 50 this time.
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+AC_LUSTRE_MAJOR=1
-+AC_LUSTRE_MINOR=8
-+AC_LUSTRE_PATCH=2
-+AC_LUSTRE_FIX=0
-+AC_LUSTRE_VERSION_STRING=1.8.2
-+AC_LUSTRE_VER_ALLOWED_OFFSET="OBD_OCD_VERSION(0,0,1,32)"
-+AC_LUSTRE_LIB_VER_OFFSET_WARN="OBD_OCD_VERSION(0,0,1,32)"
-+AC_LUSTRE_CLI_VER_OFFSET_WARN="OBD_OCD_VERSION(0,2,0,0)"
-+AC_LUSTRE_CLIENT_URN="LUSTRE-182-CLT"
-+AC_LUSTRE_MGS_URN="LUSTRE-182-MGS"
-+AC_LUSTRE_MDS_URN="LUSTRE-182-MDS"
-+AC_LUSTRE_OSS_URN="LUSTRE-182-OSS"
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+# Overridden in LB_PATH_LDISKFS on certain branches
-+
-+
-+if false; then
-+  LDISKFS_ENABLED_TRUE=
-+  LDISKFS_ENABLED_FALSE='#'
-+else
-+  LDISKFS_ENABLED_TRUE='#'
-+  LDISKFS_ENABLED_FALSE=
-+fi
-+
-+
-+if test "1.8.2" = "LUSTRE""_VERSION" ; then
-+	{ { echo "$as_me:$LINENO: error: This script was not built with a version number." >&5
-+echo "$as_me: error: This script was not built with a version number." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+
-+
-+# Check whether --enable-quota was given.
-+if test "${enable_quota+set}" = set; then
-+  enableval=$enable_quota; 
-+else
-+  enable_quota='yes'
-+fi
-+
-+
-+
-+ac_aux_dir=
-+for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
-+  if test -f "$ac_dir/install-sh"; then
-+    ac_aux_dir=$ac_dir
-+    ac_install_sh="$ac_aux_dir/install-sh -c"
-+    break
-+  elif test -f "$ac_dir/install.sh"; then
-+    ac_aux_dir=$ac_dir
-+    ac_install_sh="$ac_aux_dir/install.sh -c"
-+    break
-+  elif test -f "$ac_dir/shtool"; then
-+    ac_aux_dir=$ac_dir
-+    ac_install_sh="$ac_aux_dir/shtool install -c"
-+    break
-+  fi
-+done
-+if test -z "$ac_aux_dir"; then
-+  { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5
-+echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+# These three variables are undocumented and unsupported,
-+# and are intended to be withdrawn in a future Autoconf release.
-+# They can cause serious problems if a builder's source tree is in a directory
-+# whose full name contains unusual characters.
-+ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
-+ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
-+ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
-+
-+
-+# Make sure we can run config.sub.
-+$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
-+  { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5
-+echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+{ echo "$as_me:$LINENO: checking build system type" >&5
-+echo $ECHO_N "checking build system type... $ECHO_C" >&6; }
-+if test "${ac_cv_build+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_build_alias=$build_alias
-+test "x$ac_build_alias" = x &&
-+  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
-+test "x$ac_build_alias" = x &&
-+  { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
-+echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
-+   { (exit 1); exit 1; }; }
-+ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
-+  { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5
-+echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_build" >&5
-+echo "${ECHO_T}$ac_cv_build" >&6; }
-+case $ac_cv_build in
-+*-*-*) ;;
-+*) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5
-+echo "$as_me: error: invalid value of canonical build" >&2;}
-+   { (exit 1); exit 1; }; };;
-+esac
-+build=$ac_cv_build
-+ac_save_IFS=$IFS; IFS='-'
-+set x $ac_cv_build
-+shift
-+build_cpu=$1
-+build_vendor=$2
-+shift; shift
-+# Remember, the first character of IFS is used to create $*,
-+# except with old shells:
-+build_os=$*
-+IFS=$ac_save_IFS
-+case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
-+
-+
-+{ echo "$as_me:$LINENO: checking host system type" >&5
-+echo $ECHO_N "checking host system type... $ECHO_C" >&6; }
-+if test "${ac_cv_host+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test "x$host_alias" = x; then
-+  ac_cv_host=$ac_cv_build
-+else
-+  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
-+    { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5
-+echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_host" >&5
-+echo "${ECHO_T}$ac_cv_host" >&6; }
-+case $ac_cv_host in
-+*-*-*) ;;
-+*) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5
-+echo "$as_me: error: invalid value of canonical host" >&2;}
-+   { (exit 1); exit 1; }; };;
-+esac
-+host=$ac_cv_host
-+ac_save_IFS=$IFS; IFS='-'
-+set x $ac_cv_host
-+shift
-+host_cpu=$1
-+host_vendor=$2
-+shift; shift
-+# Remember, the first character of IFS is used to create $*,
-+# except with old shells:
-+host_os=$*
-+IFS=$ac_save_IFS
-+case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
-+
-+
-+{ echo "$as_me:$LINENO: checking target system type" >&5
-+echo $ECHO_N "checking target system type... $ECHO_C" >&6; }
-+if test "${ac_cv_target+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test "x$target_alias" = x; then
-+  ac_cv_target=$ac_cv_host
-+else
-+  ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
-+    { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5
-+echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_target" >&5
-+echo "${ECHO_T}$ac_cv_target" >&6; }
-+case $ac_cv_target in
-+*-*-*) ;;
-+*) { { echo "$as_me:$LINENO: error: invalid value of canonical target" >&5
-+echo "$as_me: error: invalid value of canonical target" >&2;}
-+   { (exit 1); exit 1; }; };;
-+esac
-+target=$ac_cv_target
-+ac_save_IFS=$IFS; IFS='-'
-+set x $ac_cv_target
-+shift
-+target_cpu=$1
-+target_vendor=$2
-+shift; shift
-+# Remember, the first character of IFS is used to create $*,
-+# except with old shells:
-+target_os=$*
-+IFS=$ac_save_IFS
-+case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac
-+
-+
-+# The aliases save the names the user supplied, while $host etc.
-+# will get canonicalized.
-+test -n "$target_alias" &&
-+  test "$program_prefix$program_suffix$program_transform_name" = \
-+    NONENONEs,x,x, &&
-+  program_prefix=${target_alias}-
-+
-+am__api_version="1.7"
-+# Find a good install program.  We prefer a C program (faster),
-+# so one script is as good as another.  But avoid the broken or
-+# incompatible versions:
-+# SysV /etc/install, /usr/sbin/install
-+# SunOS /usr/etc/install
-+# IRIX /sbin/install
-+# AIX /bin/install
-+# AmigaOS /C/install, which installs bootblocks on floppy discs
-+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
-+# AFS /usr/afsws/bin/install, which mishandles nonexistent args
-+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
-+# OS/2's system install, which has a completely different semantic
-+# ./install, which can be erroneously created by make from ./install.sh.
-+{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
-+echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; }
-+if test -z "$INSTALL"; then
-+if test "${ac_cv_path_install+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  # Account for people who put trailing slashes in PATH elements.
-+case $as_dir/ in
-+  ./ | .// | /cC/* | \
-+  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
-+  ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
-+  /usr/ucb/* ) ;;
-+  *)
-+    # OSF1 and SCO ODT 3.0 have their own names for install.
-+    # Don't use installbsd from OSF since it installs stuff as root
-+    # by default.
-+    for ac_prog in ginstall scoinst install; do
-+      for ac_exec_ext in '' $ac_executable_extensions; do
-+	if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
-+	  if test $ac_prog = install &&
-+	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
-+	    # AIX install.  It has an incompatible calling convention.
-+	    :
-+	  elif test $ac_prog = install &&
-+	    grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
-+	    # program-specific install script used by HP pwplus--don't use.
-+	    :
-+	  else
-+	    ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
-+	    break 3
-+	  fi
-+	fi
-+      done
-+    done
-+    ;;
-+esac
-+done
-+IFS=$as_save_IFS
-+
-+
-+fi
-+  if test "${ac_cv_path_install+set}" = set; then
-+    INSTALL=$ac_cv_path_install
-+  else
-+    # As a last resort, use the slow shell script.  Don't cache a
-+    # value for INSTALL within a source directory, because that will
-+    # break other packages using the cache if that directory is
-+    # removed, or if the value is a relative name.
-+    INSTALL=$ac_install_sh
-+  fi
-+fi
-+{ echo "$as_me:$LINENO: result: $INSTALL" >&5
-+echo "${ECHO_T}$INSTALL" >&6; }
-+
-+# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
-+# It thinks the first close brace ends the variable substitution.
-+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
-+
-+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
-+
-+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
-+
-+{ echo "$as_me:$LINENO: checking whether build environment is sane" >&5
-+echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; }
-+# Just in case
-+sleep 1
-+echo timestamp > conftest.file
-+# Do `set' in a subshell so we don't clobber the current shell's
-+# arguments.  Must try -L first in case configure is actually a
-+# symlink; some systems play weird games with the mod time of symlinks
-+# (eg FreeBSD returns the mod time of the symlink's containing
-+# directory).
-+if (
-+   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
-+   if test "$*" = "X"; then
-+      # -L didn't work.
-+      set X `ls -t $srcdir/configure conftest.file`
-+   fi
-+   rm -f conftest.file
-+   if test "$*" != "X $srcdir/configure conftest.file" \
-+      && test "$*" != "X conftest.file $srcdir/configure"; then
-+
-+      # If neither matched, then we have a broken ls.  This can happen
-+      # if, for instance, CONFIG_SHELL is bash and it inherits a
-+      # broken ls alias from the environment.  This has actually
-+      # happened.  Such a system could not be considered "sane".
-+      { { echo "$as_me:$LINENO: error: ls -t appears to fail.  Make sure there is not a broken
-+alias in your environment" >&5
-+echo "$as_me: error: ls -t appears to fail.  Make sure there is not a broken
-+alias in your environment" >&2;}
-+   { (exit 1); exit 1; }; }
-+   fi
-+
-+   test "$2" = conftest.file
-+   )
-+then
-+   # Ok.
-+   :
-+else
-+   { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
-+Check your system clock" >&5
-+echo "$as_me: error: newly created file is older than distributed files!
-+Check your system clock" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+test "$program_prefix" != NONE &&
-+  program_transform_name="s&^&$program_prefix&;$program_transform_name"
-+# Use a double $ so make ignores it.
-+test "$program_suffix" != NONE &&
-+  program_transform_name="s&\$&$program_suffix&;$program_transform_name"
-+# Double any \ or $.  echo might interpret backslashes.
-+# By default was `s,x,x', remove it if useless.
-+cat <<\_ACEOF >conftest.sed
-+s/[\\$]/&&/g;s/;s,x,x,$//
-+_ACEOF
-+program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
-+rm -f conftest.sed
-+
-+
-+# expand $ac_aux_dir to an absolute path
-+am_aux_dir=`cd $ac_aux_dir && pwd`
-+
-+test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
-+# Use eval to expand $SHELL
-+if eval "$MISSING --run true"; then
-+  am_missing_run="$MISSING --run "
-+else
-+  am_missing_run=
-+  { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
-+echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
-+fi
-+
-+for ac_prog in gawk mawk nawk awk
-+do
-+  # Extract the first word of "$ac_prog", so it can be a program name with args.
-+set dummy $ac_prog; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_AWK+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$AWK"; then
-+  ac_cv_prog_AWK="$AWK" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_AWK="$ac_prog"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+AWK=$ac_cv_prog_AWK
-+if test -n "$AWK"; then
-+  { echo "$as_me:$LINENO: result: $AWK" >&5
-+echo "${ECHO_T}$AWK" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+  test -n "$AWK" && break
-+done
-+
-+{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
-+echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
-+set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
-+if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.make <<\_ACEOF
-+SHELL = /bin/sh
-+all:
-+	@echo '@@@%%%=$(MAKE)=@@@%%%'
-+_ACEOF
-+# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
-+case `${MAKE-make} -f conftest.make 2>/dev/null` in
-+  *@@@%%%=?*=@@@%%%*)
-+    eval ac_cv_prog_make_${ac_make}_set=yes;;
-+  *)
-+    eval ac_cv_prog_make_${ac_make}_set=no;;
-+esac
-+rm -f conftest.make
-+fi
-+if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
-+  { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+  SET_MAKE=
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+  SET_MAKE="MAKE=${MAKE-make}"
-+fi
-+
-+rm -rf .tst 2>/dev/null
-+mkdir .tst 2>/dev/null
-+if test -d .tst; then
-+  am__leading_dot=.
-+else
-+  am__leading_dot=_
-+fi
-+rmdir .tst 2>/dev/null
-+
-+ # test to see if srcdir already configured
-+if test "`cd $srcdir && pwd`" != "`pwd`" &&
-+   test -f $srcdir/config.status; then
-+  { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
-+echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+# test whether we have cygpath
-+if test -z "$CYGPATH_W"; then
-+  if (cygpath --version) >/dev/null 2>/dev/null; then
-+    CYGPATH_W='cygpath -w'
-+  else
-+    CYGPATH_W=echo
-+  fi
-+fi
-+
-+
-+# Define the identity of the package.
-+ PACKAGE='lustre'
-+ VERSION='1.8.2'
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE "$PACKAGE"
-+_ACEOF
-+
-+ 
-+cat >>confdefs.h <<_ACEOF
-+@%:@define VERSION "$VERSION"
-+_ACEOF
-+
-+# Some tools Automake needs.
-+
-+ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
-+
-+
-+AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
-+
-+
-+AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
-+
-+
-+AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
-+
-+
-+MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
-+
-+
-+AMTAR=${AMTAR-"${am_missing_run}tar"}
-+
-+install_sh=${install_sh-"$am_aux_dir/install-sh"}
-+
-+# Installed binaries are usually stripped using `strip' when the user
-+# run `make install-strip'.  However `strip' might not be the right
-+# tool to use in cross-compilation environments, therefore Automake
-+# will honor the `STRIP' environment variable to overrule this program.
-+if test "$cross_compiling" != no; then
-+  if test -n "$ac_tool_prefix"; then
-+  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
-+set dummy ${ac_tool_prefix}strip; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_STRIP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$STRIP"; then
-+  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+STRIP=$ac_cv_prog_STRIP
-+if test -n "$STRIP"; then
-+  { echo "$as_me:$LINENO: result: $STRIP" >&5
-+echo "${ECHO_T}$STRIP" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+fi
-+if test -z "$ac_cv_prog_STRIP"; then
-+  ac_ct_STRIP=$STRIP
-+  # Extract the first word of "strip", so it can be a program name with args.
-+set dummy strip; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$ac_ct_STRIP"; then
-+  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_ac_ct_STRIP="strip"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
-+if test -n "$ac_ct_STRIP"; then
-+  { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
-+echo "${ECHO_T}$ac_ct_STRIP" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+  if test "x$ac_ct_STRIP" = x; then
-+    STRIP=":"
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&5
-+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    STRIP=$ac_ct_STRIP
-+  fi
-+else
-+  STRIP="$ac_cv_prog_STRIP"
-+fi
-+
-+fi
-+INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
-+
-+# We need awk for the "check" target.  The system "awk" is bad on
-+# some platforms.
-+
-+
-+
-+# AM_MAINTAINER_MODE
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+if test -n "$ac_tool_prefix"; then
-+  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
-+set dummy ${ac_tool_prefix}gcc; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$CC"; then
-+  ac_cv_prog_CC="$CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_CC="${ac_tool_prefix}gcc"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+CC=$ac_cv_prog_CC
-+if test -n "$CC"; then
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+fi
-+if test -z "$ac_cv_prog_CC"; then
-+  ac_ct_CC=$CC
-+  # Extract the first word of "gcc", so it can be a program name with args.
-+set dummy gcc; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$ac_ct_CC"; then
-+  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_ac_ct_CC="gcc"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+ac_ct_CC=$ac_cv_prog_ac_ct_CC
-+if test -n "$ac_ct_CC"; then
-+  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
-+echo "${ECHO_T}$ac_ct_CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+  if test "x$ac_ct_CC" = x; then
-+    CC=""
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&5
-+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    CC=$ac_ct_CC
-+  fi
-+else
-+  CC="$ac_cv_prog_CC"
-+fi
-+
-+if test -z "$CC"; then
-+          if test -n "$ac_tool_prefix"; then
-+    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
-+set dummy ${ac_tool_prefix}cc; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$CC"; then
-+  ac_cv_prog_CC="$CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_CC="${ac_tool_prefix}cc"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+CC=$ac_cv_prog_CC
-+if test -n "$CC"; then
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+  fi
-+fi
-+if test -z "$CC"; then
-+  # Extract the first word of "cc", so it can be a program name with args.
-+set dummy cc; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$CC"; then
-+  ac_cv_prog_CC="$CC" # Let the user override the test.
-+else
-+  ac_prog_rejected=no
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
-+       ac_prog_rejected=yes
-+       continue
-+     fi
-+    ac_cv_prog_CC="cc"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+if test $ac_prog_rejected = yes; then
-+  # We found a bogon in the path, so make sure we never use it.
-+  set dummy $ac_cv_prog_CC
-+  shift
-+  if test $@%:@ != 0; then
-+    # We chose a different compiler from the bogus one.
-+    # However, it has the same basename, so the bogon will be chosen
-+    # first if we set CC to just the basename; use the full file name.
-+    shift
-+    ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
-+  fi
-+fi
-+fi
-+fi
-+CC=$ac_cv_prog_CC
-+if test -n "$CC"; then
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+fi
-+if test -z "$CC"; then
-+  if test -n "$ac_tool_prefix"; then
-+  for ac_prog in cl.exe
-+  do
-+    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
-+set dummy $ac_tool_prefix$ac_prog; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$CC"; then
-+  ac_cv_prog_CC="$CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+CC=$ac_cv_prog_CC
-+if test -n "$CC"; then
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+    test -n "$CC" && break
-+  done
-+fi
-+if test -z "$CC"; then
-+  ac_ct_CC=$CC
-+  for ac_prog in cl.exe
-+do
-+  # Extract the first word of "$ac_prog", so it can be a program name with args.
-+set dummy $ac_prog; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$ac_ct_CC"; then
-+  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_ac_ct_CC="$ac_prog"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+ac_ct_CC=$ac_cv_prog_ac_ct_CC
-+if test -n "$ac_ct_CC"; then
-+  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
-+echo "${ECHO_T}$ac_ct_CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+  test -n "$ac_ct_CC" && break
-+done
-+
-+  if test "x$ac_ct_CC" = x; then
-+    CC=""
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&5
-+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    CC=$ac_ct_CC
-+  fi
-+fi
-+
-+fi
-+
-+
-+test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: no acceptable C compiler found in \$PATH
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+# Provide some information about the compiler.
-+echo "$as_me:$LINENO: checking for C compiler version" >&5
-+ac_compiler=`set X $ac_compile; echo $2`
-+{ (ac_try="$ac_compiler --version >&5"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compiler --version >&5") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }
-+{ (ac_try="$ac_compiler -v >&5"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compiler -v >&5") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }
-+{ (ac_try="$ac_compiler -V >&5"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compiler -V >&5") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }
-+
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+ac_clean_files_save=$ac_clean_files
-+ac_clean_files="$ac_clean_files a.out a.exe b.out"
-+# Try to create an executable without -o first, disregard a.out.
-+# It will help us diagnose broken compilers, and finding out an intuition
-+# of exeext.
-+{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
-+echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; }
-+ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
-+#
-+# List of possible output files, starting from the most likely.
-+# The algorithm is not robust to junk in `.', hence go to wildcards (a.*)
-+# only as a last resort.  b.out is created by i960 compilers.
-+ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out'
-+#
-+# The IRIX 6 linker writes into existing files which may not be
-+# executable, retaining their permissions.  Remove them first so a
-+# subsequent execution test works.
-+ac_rmfiles=
-+for ac_file in $ac_files
-+do
-+  case $ac_file in
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
-+    * ) ac_rmfiles="$ac_rmfiles $ac_file";;
-+  esac
-+done
-+rm -f $ac_rmfiles
-+
-+if { (ac_try="$ac_link_default"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link_default") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; then
-+  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
-+# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
-+# in a Makefile.  We should not override ac_cv_exeext if it was cached,
-+# so that the user can short-circuit this test for compilers unknown to
-+# Autoconf.
-+for ac_file in $ac_files ''
-+do
-+  test -f "$ac_file" || continue
-+  case $ac_file in
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj )
-+	;;
-+    [ab].out )
-+	# We found the default executable, but exeext='' is most
-+	# certainly right.
-+	break;;
-+    *.* )
-+        if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
-+	then :; else
-+	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
-+	fi
-+	# We set ac_cv_exeext here because the later test for it is not
-+	# safe: cross compilers may not add the suffix if given an `-o'
-+	# argument, so we may need to know it at that point already.
-+	# Even if this section looks crufty: it has the advantage of
-+	# actually working.
-+	break;;
-+    * )
-+	break;;
-+  esac
-+done
-+test "$ac_cv_exeext" = no && ac_cv_exeext=
-+
-+else
-+  ac_file=''
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $ac_file" >&5
-+echo "${ECHO_T}$ac_file" >&6; }
-+if test -z "$ac_file"; then
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: C compiler cannot create executables
-+See \`config.log' for more details." >&2;}
-+   { (exit 77); exit 77; }; }
-+fi
-+
-+ac_exeext=$ac_cv_exeext
-+
-+# Check that the compiler produces executables we can run.  If not, either
-+# the compiler is broken, or we cross compile.
-+{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5
-+echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; }
-+# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
-+# If not cross compiling, check that we can run a simple program.
-+if test "$cross_compiling" != yes; then
-+  if { ac_try='./$ac_file'
-+  { (case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_try") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+    cross_compiling=no
-+  else
-+    if test "$cross_compiling" = maybe; then
-+	cross_compiling=yes
-+    else
-+	{ { echo "$as_me:$LINENO: error: cannot run C compiled programs.
-+If you meant to cross compile, use \`--host'.
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: cannot run C compiled programs.
-+If you meant to cross compile, use \`--host'.
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+    fi
-+  fi
-+fi
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+rm -f a.out a.exe conftest$ac_cv_exeext b.out
-+ac_clean_files=$ac_clean_files_save
-+# Check that the compiler produces executables we can run.  If not, either
-+# the compiler is broken, or we cross compile.
-+{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
-+echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
-+{ echo "$as_me:$LINENO: result: $cross_compiling" >&5
-+echo "${ECHO_T}$cross_compiling" >&6; }
-+
-+{ echo "$as_me:$LINENO: checking for suffix of executables" >&5
-+echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; then
-+  # If both `conftest.exe' and `conftest' are `present' (well, observable)
-+# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
-+# work properly (i.e., refer to `conftest.exe'), while it won't with
-+# `rm'.
-+for ac_file in conftest.exe conftest conftest.*; do
-+  test -f "$ac_file" || continue
-+  case $ac_file in
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
-+    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
-+	  break;;
-+    * ) break;;
-+  esac
-+done
-+else
-+  { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+rm -f conftest$ac_cv_exeext
-+{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
-+echo "${ECHO_T}$ac_cv_exeext" >&6; }
-+
-+rm -f conftest.$ac_ext
-+EXEEXT=$ac_cv_exeext
-+ac_exeext=$EXEEXT
-+{ echo "$as_me:$LINENO: checking for suffix of object files" >&5
-+echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; }
-+if test "${ac_cv_objext+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.o conftest.obj
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; then
-+  for ac_file in conftest.o conftest.obj conftest.*; do
-+  test -f "$ac_file" || continue;
-+  case $ac_file in
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;
-+    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
-+       break;;
-+  esac
-+done
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: cannot compute suffix of object files: cannot compile
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+rm -f conftest.$ac_cv_objext conftest.$ac_ext
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
-+echo "${ECHO_T}$ac_cv_objext" >&6; }
-+OBJEXT=$ac_cv_objext
-+ac_objext=$OBJEXT
-+{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
-+echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; }
-+if test "${ac_cv_c_compiler_gnu+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+#ifndef __GNUC__
-+       choke me
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_compiler_gnu=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_compiler_gnu=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+ac_cv_c_compiler_gnu=$ac_compiler_gnu
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
-+echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; }
-+GCC=`test $ac_compiler_gnu = yes && echo yes`
-+ac_test_CFLAGS=${CFLAGS+set}
-+ac_save_CFLAGS=$CFLAGS
-+{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
-+echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_cc_g+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_save_c_werror_flag=$ac_c_werror_flag
-+   ac_c_werror_flag=yes
-+   ac_cv_prog_cc_g=no
-+   CFLAGS="-g"
-+   cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_prog_cc_g=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	CFLAGS=""
-+      cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  :
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_c_werror_flag=$ac_save_c_werror_flag
-+	 CFLAGS="-g"
-+	 cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_prog_cc_g=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+   ac_c_werror_flag=$ac_save_c_werror_flag
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
-+echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }
-+if test "$ac_test_CFLAGS" = set; then
-+  CFLAGS=$ac_save_CFLAGS
-+elif test $ac_cv_prog_cc_g = yes; then
-+  if test "$GCC" = yes; then
-+    CFLAGS="-g -O2"
-+  else
-+    CFLAGS="-g"
-+  fi
-+else
-+  if test "$GCC" = yes; then
-+    CFLAGS="-O2"
-+  else
-+    CFLAGS=
-+  fi
-+fi
-+{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5
-+echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_cc_c89+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_cv_prog_cc_c89=no
-+ac_save_CC=$CC
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <stdarg.h>
-+#include <stdio.h>
-+#include <sys/types.h>
-+#include <sys/stat.h>
-+/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
-+struct buf { int x; };
-+FILE * (*rcsopen) (struct buf *, struct stat *, int);
-+static char *e (p, i)
-+     char **p;
-+     int i;
-+{
-+  return p[i];
-+}
-+static char *f (char * (*g) (char **, int), char **p, ...)
-+{
-+  char *s;
-+  va_list v;
-+  va_start (v,p);
-+  s = g (p, va_arg (v,int));
-+  va_end (v);
-+  return s;
-+}
-+
-+/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
-+   function prototypes and stuff, but not '\xHH' hex character constants.
-+   These don't provoke an error unfortunately, instead are silently treated
-+   as 'x'.  The following induces an error, until -std is added to get
-+   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
-+   array size at least.  It's necessary to write '\x00'==0 to get something
-+   that's true only with -std.  */
-+int osf4_cc_array ['\x00' == 0 ? 1 : -1];
-+
-+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
-+   inside strings and character constants.  */
-+#define FOO(x) 'x'
-+int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
-+
-+int test (int i, double x);
-+struct s1 {int (*f) (int a);};
-+struct s2 {int (*f) (double a);};
-+int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
-+int argc;
-+char **argv;
-+int
-+main ()
-+{
-+return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
-+	-Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
-+do
-+  CC="$ac_save_CC $ac_arg"
-+  rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_prog_cc_c89=$ac_arg
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext 
-+  test "x$ac_cv_prog_cc_c89" != "xno" && break
-+done
-+rm -f conftest.$ac_ext
-+CC=$ac_save_CC
-+
-+fi
-+# AC_CACHE_VAL
-+case "x$ac_cv_prog_cc_c89" in
-+  x)
-+    { echo "$as_me:$LINENO: result: none needed" >&5
-+echo "${ECHO_T}none needed" >&6; } ;;
-+  xno)
-+    { echo "$as_me:$LINENO: result: unsupported" >&5
-+echo "${ECHO_T}unsupported" >&6; } ;;
-+  *)
-+    CC="$CC $ac_cv_prog_cc_c89"
-+    { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5
-+echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;;
-+esac
-+
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+DEPDIR="${am__leading_dot}deps"
-+
-+ac_config_commands="$ac_config_commands depfiles"
-+
-+
-+am_make=${MAKE-make}
-+cat > confinc << 'END'
-+am__doit:
-+	@echo done
-+.PHONY: am__doit
-+END
-+# If we don't find an include directive, just comment out the code.
-+{ echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
-+echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; }
-+am__include="#"
-+am__quote=
-+_am_result=none
-+# First try GNU make style include.
-+echo "include confinc" > confmf
-+# We grep out `Entering directory' and `Leaving directory'
-+# messages which can occur if `w' ends up in MAKEFLAGS.
-+# In particular we don't look at `^make:' because GNU make might
-+# be invoked under some other name (usually "gmake"), in which
-+# case it prints its new name instead of `make'.
-+if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
-+   am__include=include
-+   am__quote=
-+   _am_result=GNU
-+fi
-+# Now try BSD make style include.
-+if test "$am__include" = "#"; then
-+   echo '.include "confinc"' > confmf
-+   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
-+      am__include=.include
-+      am__quote="\""
-+      _am_result=BSD
-+   fi
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: result: $_am_result" >&5
-+echo "${ECHO_T}$_am_result" >&6; }
-+rm -f confinc confmf
-+
-+# Check whether --enable-dependency-tracking was given.
-+if test "${enable_dependency_tracking+set}" = set; then
-+  enableval=$enable_dependency_tracking; 
-+fi
-+
-+if test "x$enable_dependency_tracking" != xno; then
-+  am_depcomp="$ac_aux_dir/depcomp"
-+  AMDEPBACKSLASH='\'
-+fi
-+
-+
-+if test "x$enable_dependency_tracking" != xno; then
-+  AMDEP_TRUE=
-+  AMDEP_FALSE='#'
-+else
-+  AMDEP_TRUE='#'
-+  AMDEP_FALSE=
-+fi
-+
-+
-+
-+
-+depcc="$CC"   am_compiler_list=
-+
-+{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
-+echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; }
-+if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
-+  # We make a subdir and do the tests there.  Otherwise we can end up
-+  # making bogus files that we don't know about and never remove.  For
-+  # instance it was reported that on HP-UX the gcc test will end up
-+  # making a dummy file named `D' -- because `-MD' means `put the output
-+  # in D'.
-+  mkdir conftest.dir
-+  # Copy depcomp to subdir because otherwise we won't find it if we're
-+  # using a relative directory.
-+  cp "$am_depcomp" conftest.dir
-+  cd conftest.dir
-+  # We will build objects and dependencies in a subdirectory because
-+  # it helps to detect inapplicable dependency modes.  For instance
-+  # both Tru64's cc and ICC support -MD to output dependencies as a
-+  # side effect of compilation, but ICC will put the dependencies in
-+  # the current directory while Tru64 will put them in the object
-+  # directory.
-+  mkdir sub
-+
-+  am_cv_CC_dependencies_compiler_type=none
-+  if test "$am_compiler_list" = ""; then
-+     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
-+  fi
-+  for depmode in $am_compiler_list; do
-+    # Setup a source with many dependencies, because some compilers
-+    # like to wrap large dependency lists on column 80 (with \), and
-+    # we should not choose a depcomp mode which is confused by this.
-+    #
-+    # We need to recreate these files for each test, as the compiler may
-+    # overwrite some of them when testing with obscure command lines.
-+    # This happens at least with the AIX C compiler.
-+    : > sub/conftest.c
-+    for i in 1 2 3 4 5 6; do
-+      echo '#include "conftst'$i'.h"' >> sub/conftest.c
-+      : > sub/conftst$i.h
-+    done
-+    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
-+
-+    case $depmode in
-+    nosideeffect)
-+      # after this tag, mechanisms are not by side-effect, so they'll
-+      # only be used when explicitly requested
-+      if test "x$enable_dependency_tracking" = xyes; then
-+	continue
-+      else
-+	break
-+      fi
-+      ;;
-+    none) break ;;
-+    esac
-+    # We check with `-c' and `-o' for the sake of the "dashmstdout"
-+    # mode.  It turns out that the SunPro C++ compiler does not properly
-+    # handle `-M -o', and we need to detect this.
-+    if depmode=$depmode \
-+       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
-+       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
-+       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
-+         >/dev/null 2>conftest.err &&
-+       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
-+       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
-+       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
-+      # icc doesn't choke on unknown options, it will just issue warnings
-+      # (even with -Werror).  So we grep stderr for any message
-+      # that says an option was ignored.
-+      if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
-+        am_cv_CC_dependencies_compiler_type=$depmode
-+        break
-+      fi
-+    fi
-+  done
-+
-+  cd ..
-+  rm -rf conftest.dir
-+else
-+  am_cv_CC_dependencies_compiler_type=none
-+fi
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
-+echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
-+CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
-+
-+
-+
-+if 
-+  test "x$enable_dependency_tracking" != xno \
-+  && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
-+  am__fastdepCC_TRUE=
-+  am__fastdepCC_FALSE='#'
-+else
-+  am__fastdepCC_TRUE='#'
-+  am__fastdepCC_FALSE=
-+fi
-+
-+
-+
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
-+echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; }
-+# On Suns, sometimes $CPP names a directory.
-+if test -n "$CPP" && test -d "$CPP"; then
-+  CPP=
-+fi
-+if test -z "$CPP"; then
-+  if test "${ac_cv_prog_CPP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+      # Double quotes because CPP needs to be expanded
-+    for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
-+    do
-+      ac_preproc_ok=false
-+for ac_c_preproc_warn_flag in '' yes
-+do
-+  # Use a header file that comes with gcc, so configuring glibc
-+  # with a fresh cross-compiler works.
-+  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-+  # <limits.h> exists even on freestanding compilers.
-+  # On the NeXT, cc -E runs the code through the compiler's parser,
-+  # not just through cpp. "Syntax error" is here to catch this case.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@ifdef __STDC__
-+@%:@ include <limits.h>
-+@%:@else
-+@%:@ include <assert.h>
-+@%:@endif
-+		     Syntax error
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  :
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  # Broken: fails on valid input.
-+continue
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+
-+  # OK, works on sane cases.  Now check whether nonexistent headers
-+  # can be detected and how.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <ac_nonexistent.h>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  # Broken: success on invalid input.
-+continue
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  # Passes both tests.
-+ac_preproc_ok=:
-+break
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+
-+done
-+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-+rm -f conftest.err conftest.$ac_ext
-+if $ac_preproc_ok; then
-+  break
-+fi
-+
-+    done
-+    ac_cv_prog_CPP=$CPP
-+  
-+fi
-+  CPP=$ac_cv_prog_CPP
-+else
-+  ac_cv_prog_CPP=$CPP
-+fi
-+{ echo "$as_me:$LINENO: result: $CPP" >&5
-+echo "${ECHO_T}$CPP" >&6; }
-+ac_preproc_ok=false
-+for ac_c_preproc_warn_flag in '' yes
-+do
-+  # Use a header file that comes with gcc, so configuring glibc
-+  # with a fresh cross-compiler works.
-+  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-+  # <limits.h> exists even on freestanding compilers.
-+  # On the NeXT, cc -E runs the code through the compiler's parser,
-+  # not just through cpp. "Syntax error" is here to catch this case.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@ifdef __STDC__
-+@%:@ include <limits.h>
-+@%:@else
-+@%:@ include <assert.h>
-+@%:@endif
-+		     Syntax error
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  :
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  # Broken: fails on valid input.
-+continue
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+
-+  # OK, works on sane cases.  Now check whether nonexistent headers
-+  # can be detected and how.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <ac_nonexistent.h>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  # Broken: success on invalid input.
-+continue
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  # Passes both tests.
-+ac_preproc_ok=:
-+break
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+
-+done
-+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-+rm -f conftest.err conftest.$ac_ext
-+if $ac_preproc_ok; then
-+  :
-+else
-+  { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+
-+
-+{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5
-+echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; }
-+if test "${ac_cv_path_GREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  # Extract the first word of "grep ggrep" to use in msg output
-+if test -z "$GREP"; then
-+set dummy grep ggrep; ac_prog_name=$2
-+if test "${ac_cv_path_GREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_path_GREP_found=false
-+# Loop through the user's path and test for each of PROGNAME-LIST
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_prog in grep ggrep; do
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+    ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
-+    { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
-+    # Check for GNU ac_path_GREP and select it if it is found.
-+  # Check for GNU $ac_path_GREP
-+case `"$ac_path_GREP" --version 2>&1` in
-+*GNU*)
-+  ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
-+*)
-+  ac_count=0
-+  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
-+  while :
-+  do
-+    cat "conftest.in" "conftest.in" >"conftest.tmp"
-+    mv "conftest.tmp" "conftest.in"
-+    cp "conftest.in" "conftest.nl"
-+    echo 'GREP' >> "conftest.nl"
-+    "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
-+    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
-+    ac_count=`expr $ac_count + 1`
-+    if test $ac_count -gt ${ac_path_GREP_max-0}; then
-+      # Best one so far, save it but keep looking for a better one
-+      ac_cv_path_GREP="$ac_path_GREP"
-+      ac_path_GREP_max=$ac_count
-+    fi
-+    # 10*(2^10) chars as input seems more than enough
-+    test $ac_count -gt 10 && break
-+  done
-+  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
-+esac
-+
-+
-+    $ac_path_GREP_found && break 3
-+  done
-+done
-+
-+done
-+IFS=$as_save_IFS
-+
-+
-+fi
-+
-+GREP="$ac_cv_path_GREP"
-+if test -z "$GREP"; then
-+  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
-+echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+else
-+  ac_cv_path_GREP=$GREP
-+fi
-+
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5
-+echo "${ECHO_T}$ac_cv_path_GREP" >&6; }
-+ GREP="$ac_cv_path_GREP"
-+ 
-+
-+{ echo "$as_me:$LINENO: checking for egrep" >&5
-+echo $ECHO_N "checking for egrep... $ECHO_C" >&6; }
-+if test "${ac_cv_path_EGREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
-+   then ac_cv_path_EGREP="$GREP -E"
-+   else
-+     # Extract the first word of "egrep" to use in msg output
-+if test -z "$EGREP"; then
-+set dummy egrep; ac_prog_name=$2
-+if test "${ac_cv_path_EGREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_path_EGREP_found=false
-+# Loop through the user's path and test for each of PROGNAME-LIST
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_prog in egrep; do
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+    ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
-+    { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
-+    # Check for GNU ac_path_EGREP and select it if it is found.
-+  # Check for GNU $ac_path_EGREP
-+case `"$ac_path_EGREP" --version 2>&1` in
-+*GNU*)
-+  ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
-+*)
-+  ac_count=0
-+  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
-+  while :
-+  do
-+    cat "conftest.in" "conftest.in" >"conftest.tmp"
-+    mv "conftest.tmp" "conftest.in"
-+    cp "conftest.in" "conftest.nl"
-+    echo 'EGREP' >> "conftest.nl"
-+    "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
-+    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
-+    ac_count=`expr $ac_count + 1`
-+    if test $ac_count -gt ${ac_path_EGREP_max-0}; then
-+      # Best one so far, save it but keep looking for a better one
-+      ac_cv_path_EGREP="$ac_path_EGREP"
-+      ac_path_EGREP_max=$ac_count
-+    fi
-+    # 10*(2^10) chars as input seems more than enough
-+    test $ac_count -gt 10 && break
-+  done
-+  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
-+esac
-+
-+
-+    $ac_path_EGREP_found && break 3
-+  done
-+done
-+
-+done
-+IFS=$as_save_IFS
-+
-+
-+fi
-+
-+EGREP="$ac_cv_path_EGREP"
-+if test -z "$EGREP"; then
-+  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
-+echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+else
-+  ac_cv_path_EGREP=$EGREP
-+fi
-+
-+
-+   fi
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5
-+echo "${ECHO_T}$ac_cv_path_EGREP" >&6; }
-+ EGREP="$ac_cv_path_EGREP"
-+ 
-+
-+{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5
-+echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
-+if test "${ac_cv_header_stdc+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <stdlib.h>
-+#include <stdarg.h>
-+#include <string.h>
-+#include <float.h>
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_header_stdc=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_cv_header_stdc=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+
-+if test $ac_cv_header_stdc = yes; then
-+  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <string.h>
-+
-+_ACEOF
-+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
-+  $EGREP "memchr" >/dev/null 2>&1; then
-+  :
-+else
-+  ac_cv_header_stdc=no
-+fi
-+rm -f conftest*
-+
-+fi
-+
-+if test $ac_cv_header_stdc = yes; then
-+  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <stdlib.h>
-+
-+_ACEOF
-+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
-+  $EGREP "free" >/dev/null 2>&1; then
-+  :
-+else
-+  ac_cv_header_stdc=no
-+fi
-+rm -f conftest*
-+
-+fi
-+
-+if test $ac_cv_header_stdc = yes; then
-+  # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
-+  if test "$cross_compiling" = yes; then
-+  :
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <ctype.h>
-+#include <stdlib.h>
-+#if ((' ' & 0x0FF) == 0x020)
-+# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
-+# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
-+#else
-+# define ISLOWER(c) \
-+		   (('a' <= (c) && (c) <= 'i') \
-+		     || ('j' <= (c) && (c) <= 'r') \
-+		     || ('s' <= (c) && (c) <= 'z'))
-+# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
-+#endif
-+
-+#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
-+int
-+main ()
-+{
-+  int i;
-+  for (i = 0; i < 256; i++)
-+    if (XOR (islower (i), ISLOWER (i))
-+	|| toupper (i) != TOUPPER (i))
-+      return 2;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-+  { (case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_try") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  :
-+else
-+  echo "$as_me: program exited with status $ac_status" >&5
-+echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+( exit $ac_status )
-+ac_cv_header_stdc=no
-+fi
-+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
-+fi
-+
-+
-+fi
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
-+echo "${ECHO_T}$ac_cv_header_stdc" >&6; }
-+if test $ac_cv_header_stdc = yes; then
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define STDC_HEADERS 1
-+_ACEOF
-+
-+fi
-+
-+# On IRIX 5.3, sys/types and inttypes.h are conflicting.
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
-+		  inttypes.h stdint.h unistd.h
-+do
-+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+
-+@%:@include <$ac_header>
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  eval "$as_ac_Header=yes"
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	eval "$as_ac_Header=no"
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_ac_Header'}'` = yes; then
-+  cat >>confdefs.h <<_ACEOF
-+@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
-+_ACEOF
-+ 
-+fi
-+
-+done
-+
-+
-+case $target_os in
-+	linux*)
-+		lb_target_os="linux"
-+		;;
-+	darwin*)
-+		lb_target_os="darwin"
-+		;;
-+	solaris*)
-+		lb_target_os="SunOS"
-+		;;esac
-+
-+
-+
-+
-+case x$libcfs_is_module in
-+	xyes)
-+          LIBCFS_INCLUDE_DIR="libcfs/include"
-+          LIBCFS_SUBDIR="libcfs"
-+          ;;
-+        x*)
-+          LIBCFS_INCLUDE_DIR="lnet/include"
-+          LIBCFS_SUBDIR=""
-+          ;;
-+esac
-+
-+
-+
-+
-+INCLUDE_RULES="include $PWD/Rules"
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to build Cray XT3 features" >&5
-+echo $ECHO_N "checking whether to build Cray XT3 features... $ECHO_C" >&6; }
-+# Check whether --enable-cray_xt3 was given.
-+if test "${enable_cray_xt3+set}" = set; then
-+  enableval=$enable_cray_xt3; enable_cray_xt3='yes'
-+else
-+  enable_cray_xt3='no'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_cray_xt3" >&5
-+echo "${ECHO_T}$enable_cray_xt3" >&6; }
-+if test x$enable_cray_xt3 != xno; then
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CRAY_XT3 1
-+_ACEOF
-+
-+fi
-+
-+{ echo "$as_me:$LINENO: checking whether to build BGL features" >&5
-+echo $ECHO_N "checking whether to build BGL features... $ECHO_C" >&6; }
-+# Check whether --enable-bgl was given.
-+if test "${enable_bgl+set}" = set; then
-+  enableval=$enable_bgl; enable_bgl='yes'
-+else
-+  enable_bgl='no'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_bgl" >&5
-+echo "${ECHO_T}$enable_bgl" >&6; }
-+if test x$enable_bgl != xno; then
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_BGL_SUPPORT 1
-+_ACEOF
-+
-+        enable_doc='no'
-+        enable_tests='no'
-+        enable_server='no'
-+        enable_liblustre='no'
-+        enable_libreadline='no'
-+fi
-+
-+# directories for binaries
-+
-+
-+sysconfdir='/etc'
-+
-+
-+# Directories for documentation and demos.
-+docdir='${datadir}/doc/$(PACKAGE)'
-+
-+
-+
-+
-+
-+# ptlrpc kernel build requires this
-+LUSTRE="$PWD/lustre"
-+
-+
-+# mount.lustre
-+rootsbindir='/sbin'
-+
-+
-+demodir='$(docdir)/demo'
-+
-+
-+pkgexampledir='${pkgdatadir}/examples'
-+
-+
-+
-+
-+
-+if test -n "$ac_tool_prefix"; then
-+  # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
-+set dummy ${ac_tool_prefix}ranlib; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_RANLIB+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$RANLIB"; then
-+  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+RANLIB=$ac_cv_prog_RANLIB
-+if test -n "$RANLIB"; then
-+  { echo "$as_me:$LINENO: result: $RANLIB" >&5
-+echo "${ECHO_T}$RANLIB" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+fi
-+if test -z "$ac_cv_prog_RANLIB"; then
-+  ac_ct_RANLIB=$RANLIB
-+  # Extract the first word of "ranlib", so it can be a program name with args.
-+set dummy ranlib; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$ac_ct_RANLIB"; then
-+  ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_ac_ct_RANLIB="ranlib"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
-+if test -n "$ac_ct_RANLIB"; then
-+  { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
-+echo "${ECHO_T}$ac_ct_RANLIB" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+  if test "x$ac_ct_RANLIB" = x; then
-+    RANLIB=":"
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&5
-+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    RANLIB=$ac_ct_RANLIB
-+  fi
-+else
-+  RANLIB="$ac_cv_prog_RANLIB"
-+fi
-+
-+{ echo "$as_me:$LINENO: checking for buggy compiler" >&5
-+echo $ECHO_N "checking for buggy compiler... $ECHO_C" >&6; }
-+CC_VERSION=`$CC -v 2>&1 | grep "^gcc version"`
-+bad_cc() {
-+	{ echo "$as_me:$LINENO: result: buggy compiler found!" >&5
-+echo "${ECHO_T}buggy compiler found!" >&6; }
-+	echo
-+	echo "   '$CC_VERSION'"
-+	echo "  has been known to generate bad code, "
-+	echo "  please get an updated compiler."
-+	{ { echo "$as_me:$LINENO: error: sorry" >&5
-+echo "$as_me: error: sorry" >&2;}
-+   { (exit 1); exit 1; }; }
-+}
-+case "$CC_VERSION" in
-+	"gcc version 2.95"*)
-+		bad_cc
-+		;;
-+	# ost_pack_niobuf putting 64bit NTOH temporaries on the stack
-+	# without "sub    LB_PROG_CCxc,%esp" to protect the stack from being
-+	# stomped on by interrupts (bug 606)
-+	"gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-98)")
-+		bad_cc
-+		;;
-+	# mandrake's similar sub 0xc compiler bug
-+	# http://marc.theaimsgroup.com/?l=linux-kernel&m=104748366226348&w=2
-+	"gcc version 2.96 20000731 (Mandrake Linux 8.1 2.96-0.62mdk)")
-+		bad_cc
-+		;;
-+	*)
-+		{ echo "$as_me:$LINENO: result: no known problems" >&5
-+echo "${ECHO_T}no known problems" >&6; }
-+		;;
-+esac
-+
-+# ---------  unsigned long long sane? -------
-+{ echo "$as_me:$LINENO: checking for unsigned long long" >&5
-+echo $ECHO_N "checking for unsigned long long... $ECHO_C" >&6; }
-+if test "${ac_cv_type_unsigned_long_long+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+typedef unsigned long long ac__type_new_;
-+int
-+main ()
-+{
-+if ((ac__type_new_ *) 0)
-+  return 0;
-+if (sizeof (ac__type_new_))
-+  return 0;
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_type_unsigned_long_long=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_cv_type_unsigned_long_long=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_type_unsigned_long_long" >&5
-+echo "${ECHO_T}$ac_cv_type_unsigned_long_long" >&6; }
-+
-+# The cast to long int works around a bug in the HP C Compiler
-+# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
-+# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
-+# This bug is HP SR number 8606223364.
-+{ echo "$as_me:$LINENO: checking size of unsigned long long" >&5
-+echo $ECHO_N "checking size of unsigned long long... $ECHO_C" >&6; }
-+if test "${ac_cv_sizeof_unsigned_long_long+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test "$cross_compiling" = yes; then
-+  # Depending upon the size, compute the lo and hi bounds.
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+   typedef unsigned long long ac__type_sizeof_;
-+int
-+main ()
-+{
-+static int test_array @<:@1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)@:>@;
-+test_array @<:@0@:>@ = 0
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_lo=0 ac_mid=0
-+  while :; do
-+    cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+   typedef unsigned long long ac__type_sizeof_;
-+int
-+main ()
-+{
-+static int test_array @<:@1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)@:>@;
-+test_array @<:@0@:>@ = 0
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_hi=$ac_mid; break
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_lo=`expr $ac_mid + 1`
-+			if test $ac_lo -le $ac_mid; then
-+			  ac_lo= ac_hi=
-+			  break
-+			fi
-+			ac_mid=`expr 2 '*' $ac_mid + 1`
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+  done
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+   typedef unsigned long long ac__type_sizeof_;
-+int
-+main ()
-+{
-+static int test_array @<:@1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)@:>@;
-+test_array @<:@0@:>@ = 0
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_hi=-1 ac_mid=-1
-+  while :; do
-+    cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+   typedef unsigned long long ac__type_sizeof_;
-+int
-+main ()
-+{
-+static int test_array @<:@1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)@:>@;
-+test_array @<:@0@:>@ = 0
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_lo=$ac_mid; break
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_hi=`expr '(' $ac_mid ')' - 1`
-+			if test $ac_mid -le $ac_hi; then
-+			  ac_lo= ac_hi=
-+			  break
-+			fi
-+			ac_mid=`expr 2 '*' $ac_mid`
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+  done
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_lo= ac_hi=
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+# Binary search between lo and hi bounds.
-+while test "x$ac_lo" != "x$ac_hi"; do
-+  ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+   typedef unsigned long long ac__type_sizeof_;
-+int
-+main ()
-+{
-+static int test_array @<:@1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)@:>@;
-+test_array @<:@0@:>@ = 0
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_hi=$ac_mid
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_lo=`expr '(' $ac_mid ')' + 1`
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+done
-+case $ac_lo in
-+?*) ac_cv_sizeof_unsigned_long_long=$ac_lo;;
-+'') if test "$ac_cv_type_unsigned_long_long" = yes; then
-+     { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long long)
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: cannot compute sizeof (unsigned long long)
-+See \`config.log' for more details." >&2;}
-+   { (exit 77); exit 77; }; }
-+   else
-+     ac_cv_sizeof_unsigned_long_long=0
-+   fi ;;
-+esac
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+   typedef unsigned long long ac__type_sizeof_;
-+static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); }
-+static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); }
-+@%:@include <stdio.h>
-+@%:@include <stdlib.h>
-+int
-+main ()
-+{
-+
-+  FILE *f = fopen ("conftest.val", "w");
-+  if (! f)
-+    return 1;
-+  if (((long int) (sizeof (ac__type_sizeof_))) < 0)
-+    {
-+      long int i = longval ();
-+      if (i != ((long int) (sizeof (ac__type_sizeof_))))
-+	return 1;
-+      fprintf (f, "%ld\n", i);
-+    }
-+  else
-+    {
-+      unsigned long int i = ulongval ();
-+      if (i != ((long int) (sizeof (ac__type_sizeof_))))
-+	return 1;
-+      fprintf (f, "%lu\n", i);
-+    }
-+  return ferror (f) || fclose (f) != 0;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-+  { (case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_try") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  ac_cv_sizeof_unsigned_long_long=`cat conftest.val`
-+else
-+  echo "$as_me: program exited with status $ac_status" >&5
-+echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+( exit $ac_status )
-+if test "$ac_cv_type_unsigned_long_long" = yes; then
-+     { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long long)
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: cannot compute sizeof (unsigned long long)
-+See \`config.log' for more details." >&2;}
-+   { (exit 77); exit 77; }; }
-+   else
-+     ac_cv_sizeof_unsigned_long_long=0
-+   fi
-+fi
-+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
-+fi
-+rm -f conftest.val
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_unsigned_long_long" >&5
-+echo "${ECHO_T}$ac_cv_sizeof_unsigned_long_long" >&6; }
-+
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define SIZEOF_UNSIGNED_LONG_LONG $ac_cv_sizeof_unsigned_long_long
-+_ACEOF
-+
-+
-+echo "---> size SIZEOF $SIZEOF_unsigned_long_long"
-+echo "---> size SIZEOF $ac_cv_sizeof_unsigned_long_long"
-+if test $ac_cv_sizeof_unsigned_long_long != 8 ; then
-+        { { echo "$as_me:$LINENO: error: ** we assume that sizeof(long long) == 8.  Tell phil at clusterfs.com" >&5
-+echo "$as_me: error: ** we assume that sizeof(long long) == 8.  Tell phil at clusterfs.com" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+if test $target_cpu == "powerpc64"; then
-+	{ echo "$as_me:$LINENO: WARNING: set compiler with -m64" >&5
-+echo "$as_me: WARNING: set compiler with -m64" >&2;}
-+	CFLAGS="$CFLAGS -m64"
-+	CC="$CC -m64"
-+fi
-+
-+CPPFLAGS="-I$PWD/$LIBCFS_INCLUDE_DIR -I$TOP_DIR/lnet/include -I$TOP_DIR/lustre/include -I$PWD/lnet/include -I$PWD/lustre/include $CPPFLAGS"
-+
-+LLCPPFLAGS="-D__arch_lib__ -D_LARGEFILE64_SOURCE=1"
-+
-+
-+# Add _GNU_SOURCE for strnlen on linux
-+LLCFLAGS="-g -Wall -fPIC -D_GNU_SOURCE"
-+
-+
-+# everyone builds against lnet and lustre
-+EXTRA_KCFLAGS="$EXTRA_KCFLAGS -g -I$PWD/$LIBCFS_INCLUDE_DIR -I$PWD/lnet/include -I$PWD/lustre/include"
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to enable uoss" >&5
-+echo $ECHO_N "checking whether to enable uoss... $ECHO_C" >&6; }
-+# Check whether --enable-uoss was given.
-+if test "${enable_uoss+set}" = set; then
-+  enableval=$enable_uoss; enable_uoss='yes'
-+else
-+  enable_uoss='no'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_uoss" >&5
-+echo "${ECHO_T}$enable_uoss" >&6; }
-+if test x$enable_uoss = xyes; then
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define UOSS_SUPPORT 1
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define LUSTRE_ULEVEL_MT 1
-+_ACEOF
-+
-+	enable_uoss='yes'
-+	enable_ulevel_mt='yes'
-+	enable_modules='no'
-+	enable_client='no'
-+	enable_tests='no'
-+	enable_liblustre='no'
-+	with_ldiskfs='no'
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to enable posix osd" >&5
-+echo $ECHO_N "checking whether to enable posix osd... $ECHO_C" >&6; }
-+# Check whether --enable-posix-osd was given.
-+if test "${enable_posix_osd+set}" = set; then
-+  enableval=$enable_posix_osd; enable_posix_osd='yes'
-+else
-+  enable_posix_osd='no'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_posix_osd" >&5
-+echo "${ECHO_T}$enable_posix_osd" >&6; }
-+if test x$enable_uoss = xyes -a x$enable_posix_osd = xyes ; then
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define POSIX_OSD 1
-+_ACEOF
-+
-+	posix_osd='yes'
-+fi
-+
-+
-+if test x$posix_osd = xyes; then
-+  POSIX_OSD_ENABLED_TRUE=
-+  POSIX_OSD_ENABLED_FALSE='#'
-+else
-+  POSIX_OSD_ENABLED_TRUE='#'
-+  POSIX_OSD_ENABLED_FALSE=
-+fi
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to build docs" >&5
-+echo $ECHO_N "checking whether to build docs... $ECHO_C" >&6; }
-+# Check whether --enable-doc was given.
-+if test "${enable_doc+set}" = set; then
-+  enableval=$enable_doc; 
-+		if test x$enable_doc = xyes ; then
-+		    ENABLE_DOC=1	   
-+		else
-+		    ENABLE_DOC=0
-+		fi
-+	
-+else
-+  
-+		ENABLE_DOC=0
-+		enable_doc='no'
-+	
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_doc" >&5
-+echo "${ECHO_T}$enable_doc" >&6; }
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to build utilities" >&5
-+echo $ECHO_N "checking whether to build utilities... $ECHO_C" >&6; }
-+# Check whether --enable-utils was given.
-+if test "${enable_utils+set}" = set; then
-+  enableval=$enable_utils; 
-+else
-+  enable_utils='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_utils" >&5
-+echo "${ECHO_T}$enable_utils" >&6; }
-+if test x$enable_utils = xyes ; then 
-+	ENABLE_INIT_SCRIPTS=0
-+if test x$enable_utils = xyes ; then
-+        { echo "$as_me:$LINENO: checking whether to install init scripts" >&5
-+echo $ECHO_N "checking whether to install init scripts... $ECHO_C" >&6; }
-+        # our scripts only work on red hat systems
-+        if test -f /etc/init.d/functions -a -f /etc/sysconfig/network ; then
-+                ENABLE_INIT_SCRIPTS=1
-+                { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        else
-+                { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+        fi
-+fi
-+
-+
-+fi
-+
-+{ echo "$as_me:$LINENO: checking whether to build Lustre tests" >&5
-+echo $ECHO_N "checking whether to build Lustre tests... $ECHO_C" >&6; }
-+# Check whether --enable-tests was given.
-+if test "${enable_tests+set}" = set; then
-+  enableval=$enable_tests; 
-+else
-+  
-+		enable_tests='yes'
-+	
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_tests" >&5
-+echo "${ECHO_T}$enable_tests" >&6; }
-+
-+{ echo "$as_me:$LINENO: checking whether to build Lustre server support" >&5
-+echo $ECHO_N "checking whether to build Lustre server support... $ECHO_C" >&6; }
-+# Check whether --enable-server was given.
-+if test "${enable_server+set}" = set; then
-+  enableval=$enable_server; 
-+else
-+  enable_server='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_server" >&5
-+echo "${ECHO_T}$enable_server" >&6; }
-+
-+{ echo "$as_me:$LINENO: checking whether to build Lustre client support" >&5
-+echo $ECHO_N "checking whether to build Lustre client support... $ECHO_C" >&6; }
-+# Check whether --enable-client was given.
-+if test "${enable_client+set}" = set; then
-+  enableval=$enable_client; 
-+else
-+  enable_client='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_client" >&5
-+echo "${ECHO_T}$enable_client" >&6; }
-+
-+# two macros for cmd3 
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to enable CDEBUG, CWARN" >&5
-+echo $ECHO_N "checking whether to enable CDEBUG, CWARN... $ECHO_C" >&6; }
-+# Check whether --enable-libcfs_cdebug was given.
-+if test "${enable_libcfs_cdebug+set}" = set; then
-+  enableval=$enable_libcfs_cdebug; 
-+else
-+  enable_libcfs_cdebug='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_libcfs_cdebug" >&5
-+echo "${ECHO_T}$enable_libcfs_cdebug" >&6; }
-+if test x$enable_libcfs_cdebug = xyes; then
-+   
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CDEBUG_ENABLED 1
-+_ACEOF
-+
-+else
-+   
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CDEBUG_ENABLED 0
-+_ACEOF
-+
-+fi
-+
-+{ echo "$as_me:$LINENO: checking whether to enable ENTRY/EXIT" >&5
-+echo $ECHO_N "checking whether to enable ENTRY/EXIT... $ECHO_C" >&6; }
-+# Check whether --enable-libcfs_trace was given.
-+if test "${enable_libcfs_trace+set}" = set; then
-+  enableval=$enable_libcfs_trace; 
-+else
-+  enable_libcfs_trace='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_libcfs_trace" >&5
-+echo "${ECHO_T}$enable_libcfs_trace" >&6; }
-+if test x$enable_libcfs_trace = xyes; then
-+   
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CDEBUG_ENTRY_EXIT 1
-+_ACEOF
-+
-+else
-+   
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CDEBUG_ENTRY_EXIT 0
-+_ACEOF
-+
-+fi
-+
-+{ echo "$as_me:$LINENO: checking whether to enable LASSERT, LASSERTF" >&5
-+echo $ECHO_N "checking whether to enable LASSERT, LASSERTF... $ECHO_C" >&6; }
-+# Check whether --enable-libcfs_assert was given.
-+if test "${enable_libcfs_assert+set}" = set; then
-+  enableval=$enable_libcfs_assert; 
-+else
-+  enable_libcfs_assert='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_libcfs_assert" >&5
-+echo "${ECHO_T}$enable_libcfs_assert" >&6; }
-+if test x$enable_libcfs_assert = xyes; then
-+   
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define LIBCFS_DEBUG 1
-+_ACEOF
-+
-+fi
-+
-+#check global
-+# Check whether --enable-quota was given.
-+if test "${enable_quota+set}" = set; then
-+  enableval=$enable_quota; 
-+else
-+  enable_quota='yes'
-+fi
-+
-+
-+#check for utils
-+if test "${ac_cv_header_sys_quota_h+set}" = set; then
-+  { echo "$as_me:$LINENO: checking for sys/quota.h" >&5
-+echo $ECHO_N "checking for sys/quota.h... $ECHO_C" >&6; }
-+if test "${ac_cv_header_sys_quota_h+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_header_sys_quota_h" >&5
-+echo "${ECHO_T}$ac_cv_header_sys_quota_h" >&6; }
-+else
-+  # Is the header compilable?
-+{ echo "$as_me:$LINENO: checking sys/quota.h usability" >&5
-+echo $ECHO_N "checking sys/quota.h usability... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+@%:@include <sys/quota.h>
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_header_compiler=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_header_compiler=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
-+echo "${ECHO_T}$ac_header_compiler" >&6; }
-+
-+# Is the header present?
-+{ echo "$as_me:$LINENO: checking sys/quota.h presence" >&5
-+echo $ECHO_N "checking sys/quota.h presence... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <sys/quota.h>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  ac_header_preproc=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  ac_header_preproc=no
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
-+echo "${ECHO_T}$ac_header_preproc" >&6; }
-+
-+# So?  What about this header?
-+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-+  yes:no: )
-+    { echo "$as_me:$LINENO: WARNING: sys/quota.h: accepted by the compiler, rejected by the preprocessor!" >&5
-+echo "$as_me: WARNING: sys/quota.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: sys/quota.h: proceeding with the compiler's result" >&5
-+echo "$as_me: WARNING: sys/quota.h: proceeding with the compiler's result" >&2;}
-+    ac_header_preproc=yes
-+    ;;
-+  no:yes:* )
-+    { echo "$as_me:$LINENO: WARNING: sys/quota.h: present but cannot be compiled" >&5
-+echo "$as_me: WARNING: sys/quota.h: present but cannot be compiled" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: sys/quota.h:     check for missing prerequisite headers?" >&5
-+echo "$as_me: WARNING: sys/quota.h:     check for missing prerequisite headers?" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: sys/quota.h: see the Autoconf documentation" >&5
-+echo "$as_me: WARNING: sys/quota.h: see the Autoconf documentation" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: sys/quota.h:     section \"Present But Cannot Be Compiled\"" >&5
-+echo "$as_me: WARNING: sys/quota.h:     section \"Present But Cannot Be Compiled\"" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: sys/quota.h: proceeding with the preprocessor's result" >&5
-+echo "$as_me: WARNING: sys/quota.h: proceeding with the preprocessor's result" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: sys/quota.h: in the future, the compiler will take precedence" >&5
-+echo "$as_me: WARNING: sys/quota.h: in the future, the compiler will take precedence" >&2;}
-+    ( cat <<\_ASBOX
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+@%:@@%:@ Report this to https://bugzilla.lustre.org/ @%:@@%:@
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+_ASBOX
-+     ) | sed "s/^/$as_me: WARNING:     /" >&2
-+    ;;
-+esac
-+{ echo "$as_me:$LINENO: checking for sys/quota.h" >&5
-+echo $ECHO_N "checking for sys/quota.h... $ECHO_C" >&6; }
-+if test "${ac_cv_header_sys_quota_h+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_cv_header_sys_quota_h=$ac_header_preproc
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_header_sys_quota_h" >&5
-+echo "${ECHO_T}$ac_cv_header_sys_quota_h" >&6; }
-+
-+fi
-+if test $ac_cv_header_sys_quota_h = yes; then
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SYS_QUOTA_H 1
-+_ACEOF
-+
-+else
-+  { { echo "$as_me:$LINENO: error: don't find <sys/quota.h> in your system" >&5
-+echo "$as_me: error: don't find <sys/quota.h> in your system" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to build kernel modules" >&5
-+echo $ECHO_N "checking whether to build kernel modules... $ECHO_C" >&6; }
-+# Check whether --enable-modules was given.
-+if test "${enable_modules+set}" = set; then
-+  enableval=$enable_modules; 
-+else
-+  
-+		case $target_os in
-+	linux* | darwin*)
-+
-+			enable_modules='yes'
-+		
-+		;;
-+	*)
-+
-+			enable_modules='no'
-+		
-+		;;
-+esac
-+
-+	
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_modules ($target_os)" >&5
-+echo "${ECHO_T}$enable_modules ($target_os)" >&6; }
-+
-+if test x$enable_modules = xyes ; then
-+	case $target_os in
-+		linux*)
-+			{ echo "$as_me:$LINENO: checking for Linux sources" >&5
-+echo $ECHO_N "checking for Linux sources... $ECHO_C" >&6; }
-+
-+# Check whether --with-linux was given.
-+if test "${with_linux+set}" = set; then
-+  withval=$with_linux; 
-+		if ! [[ $with_linux = /* ]]; then
-+			{ { echo "$as_me:$LINENO: error: You must provide an absolute pathname to the --with-linux= option." >&5
-+echo "$as_me: error: You must provide an absolute pathname to the --with-linux= option." >&2;}
-+   { (exit 1); exit 1; }; }
-+		else
-+			LINUX=$with_linux
-+		fi
-+	
-+else
-+  LINUX=/usr/src/linux
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $LINUX" >&5
-+echo "${ECHO_T}$LINUX" >&6; }
-+
-+
-+# -------- check for linux --------
-+as_lb_File=`echo "lb_cv_file_$LINUX" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX" >&5
-+echo $ECHO_N "checking for $LINUX... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  { { echo "$as_me:$LINENO: error: Kernel source $LINUX could not be found." >&5
-+echo "$as_me: error: Kernel source $LINUX could not be found." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+# -------- linux objects (for 2.6) --
-+{ echo "$as_me:$LINENO: checking for Linux objects dir" >&5
-+echo $ECHO_N "checking for Linux objects dir... $ECHO_C" >&6; }
-+
-+# Check whether --with-linux-obj was given.
-+if test "${with_linux_obj+set}" = set; then
-+  withval=$with_linux_obj; LINUX_OBJ=$with_linux_obj
-+else
-+  LINUX_OBJ=$LINUX
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $LINUX_OBJ" >&5
-+echo "${ECHO_T}$LINUX_OBJ" >&6; }
-+
-+
-+# -------- check for .config --------
-+
-+# Check whether --with-linux-config was given.
-+if test "${with_linux_config+set}" = set; then
-+  withval=$with_linux_config; LINUX_CONFIG=$with_linux_config
-+else
-+  LINUX_CONFIG=$LINUX_OBJ/.config
-+fi
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking for /boot/kernel.h" >&5
-+echo $ECHO_N "checking for /boot/kernel.h... $ECHO_C" >&6; }
-+if test "${lb_cv_file__boot_kernel_h+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "/boot/kernel.h"; then
-+  lb_cv_file__boot_kernel_h=yes
-+else
-+  lb_cv_file__boot_kernel_h=no
-+fi
-+fi
-+{ echo "$as_me:$LINENO: result: $lb_cv_file__boot_kernel_h" >&5
-+echo "${ECHO_T}$lb_cv_file__boot_kernel_h" >&6; }
-+if test $lb_cv_file__boot_kernel_h = yes; then
-+  KERNEL_SOURCE_HEADER='/boot/kernel.h'
-+else
-+  { echo "$as_me:$LINENO: checking for /var/adm/running-kernel.h" >&5
-+echo $ECHO_N "checking for /var/adm/running-kernel.h... $ECHO_C" >&6; }
-+if test "${lb_cv_file__var_adm_running_kernel_h+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "/var/adm/running-kernel.h"; then
-+  lb_cv_file__var_adm_running_kernel_h=yes
-+else
-+  lb_cv_file__var_adm_running_kernel_h=no
-+fi
-+fi
-+{ echo "$as_me:$LINENO: result: $lb_cv_file__var_adm_running_kernel_h" >&5
-+echo "${ECHO_T}$lb_cv_file__var_adm_running_kernel_h" >&6; }
-+if test $lb_cv_file__var_adm_running_kernel_h = yes; then
-+  KERNEL_SOURCE_HEADER='/var/adm/running-kernel.h'
-+fi
-+
-+fi
-+
-+
-+
-+# Check whether --with-kernel-source-header was given.
-+if test "${with_kernel_source_header+set}" = set; then
-+  withval=$with_kernel_source_header; KERNEL_SOURCE_HEADER=$with_kernel_source_header
-+fi
-+
-+
-+# ------------ .config exists ----------------
-+as_lb_File=`echo "lb_cv_file_$LINUX_CONFIG" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX_CONFIG" >&5
-+echo $ECHO_N "checking for $LINUX_CONFIG... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX_CONFIG"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  { { echo "$as_me:$LINENO: error: Kernel config could not be found.  If you are building from a kernel-source rpm consult build/README.kernel-source" >&5
-+echo "$as_me: error: Kernel config could not be found.  If you are building from a kernel-source rpm consult build/README.kernel-source" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+# ----------- make dep run? ------------------
-+# at 2.6.19 # $LINUX/include/linux/config.h is removed
-+# and at more old has only one line
-+# include <autoconf.h>
-+as_lb_File=`echo "lb_cv_file_$LINUX_OBJ/include/linux/autoconf.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX_OBJ/include/linux/autoconf.h" >&5
-+echo $ECHO_N "checking for $LINUX_OBJ/include/linux/autoconf.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX_OBJ/include/linux/autoconf.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  { { echo "$as_me:$LINENO: error: Run make config in $LINUX." >&5
-+echo "$as_me: error: Run make config in $LINUX." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+as_lb_File=`echo "lb_cv_file_$LINUX_OBJ/include/linux/version.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX_OBJ/include/linux/version.h" >&5
-+echo $ECHO_N "checking for $LINUX_OBJ/include/linux/version.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX_OBJ/include/linux/version.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  { { echo "$as_me:$LINENO: error: Run make config in $LINUX." >&5
-+echo "$as_me: error: Run make config in $LINUX." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+# ------------ rhconfig.h includes runtime-generated bits --
-+# red hat kernel-source checks
-+
-+# we know this exists after the check above.  if the user
-+# tarred up the tree and ran make dep etc. in it, then
-+# version.h gets overwritten with a standard linux one.
-+
-+if grep rhconfig $LINUX_OBJ/include/linux/version.h >/dev/null ; then
-+	# This is a clean kernel-source tree, we need to
-+	# enable extensive workarounds to get this to build
-+	# modules
-+	as_lb_File=`echo "lb_cv_file_$KERNEL_SOURCE_HEADER" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $KERNEL_SOURCE_HEADER" >&5
-+echo $ECHO_N "checking for $KERNEL_SOURCE_HEADER... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$KERNEL_SOURCE_HEADER"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  if test $KERNEL_SOURCE_HEADER = '/boot/kernel.h' ; then
-+			{ echo "$as_me:$LINENO: WARNING: Using /boot/kernel.h from RUNNING kernel." >&5
-+echo "$as_me: WARNING: Using /boot/kernel.h from RUNNING kernel." >&2;}
-+			{ echo "$as_me:$LINENO: WARNING: If this is not what you want, use --with-kernel-source-header." >&5
-+echo "$as_me: WARNING: If this is not what you want, use --with-kernel-source-header." >&2;}
-+			{ echo "$as_me:$LINENO: WARNING: Consult build/README.kernel-source for details." >&5
-+echo "$as_me: WARNING: Consult build/README.kernel-source for details." >&2;}
-+		fi
-+else
-+  { { echo "$as_me:$LINENO: error: $KERNEL_SOURCE_HEADER not found.  Consult build/README.kernel-source for details." >&5
-+echo "$as_me: error: $KERNEL_SOURCE_HEADER not found.  Consult build/README.kernel-source for details." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+	EXTRA_KCFLAGS="-include $KERNEL_SOURCE_HEADER $EXTRA_KCFLAGS"
-+fi
-+
-+# this is needed before we can build modules
-+ARCH_UM=
-+UML_CFLAGS=
-+
-+{ echo "$as_me:$LINENO: checking if you are running user mode linux for $target_cpu" >&5
-+echo $ECHO_N "checking if you are running user mode linux for $target_cpu... $ECHO_C" >&6; }
-+if test -e $LINUX/include/asm-um ; then
-+	if test  X`ls -id $LINUX/include/asm/ 2>/dev/null | awk '{print $1}'` = X`ls -id $LINUX/include/asm-um 2>/dev/null | awk '{print $1}'` ; then
-+		ARCH_UM='ARCH=um'
-+		# see notes in Rules.in
-+		UML_CFLAGS='-O0'
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	else
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	fi
-+else
-+	{ echo "$as_me:$LINENO: result: no (asm-um missing)" >&5
-+echo "${ECHO_T}no (asm-um missing)" >&6; }
-+fi
-+
-+
-+
-+as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/namei.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX/include/linux/namei.h" >&5
-+echo $ECHO_N "checking for $LINUX/include/linux/namei.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX/include/linux/namei.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  
-+        	linux25="yes"
-+		KMODEXT=".ko"
-+	
-+else
-+  
-+		KMODEXT=".o"
-+		linux25="no"
-+	
-+fi
-+
-+{ echo "$as_me:$LINENO: checking if you are using Linux 2.6" >&5
-+echo $ECHO_N "checking if you are using Linux 2.6... $ECHO_C" >&6; }
-+{ echo "$as_me:$LINENO: result: $linux25" >&5
-+echo "${ECHO_T}$linux25" >&6; }
-+
-+MODULE_TARGET="SUBDIRS"
-+if test $linux25 = "yes" ; then
-+	makerule="$PWD/build"
-+	{ echo "$as_me:$LINENO: checking for external module build support" >&5
-+echo $ECHO_N "checking for external module build support... $ECHO_C" >&6; }
-+	rm -f build/conftest.i
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main (void)
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d $makerule LUSTRE_KERNEL_TEST=conftest.i ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.i'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+			{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+		
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+			makerule="_module_$makerule"
-+			MODULE_TARGET="M"
-+			cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main (void)
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d $makerule LUSTRE_KERNEL_TEST=conftest.i ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.i'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+					{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+				
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+					{ { echo "$as_me:$LINENO: error: unknown; check config.log for details" >&5
-+echo "$as_me: error: unknown; check config.log for details" >&2;}
-+   { (exit 1); exit 1; }; }
-+				
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+		
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+else
-+	makerule="_dir_$PWD/build"
-+fi
-+
-+
-+
-+
-+
-+
-+# --- check that we can build modules at all
-+{ echo "$as_me:$LINENO: checking that modules can be built at all" >&5
-+echo $ECHO_N "checking that modules can be built at all... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main (void)
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	{ echo "$as_me:$LINENO: WARNING: Consult config.log for details." >&5
-+echo "$as_me: WARNING: Consult config.log for details." >&2;}
-+	{ echo "$as_me:$LINENO: WARNING: If you are trying to build with a kernel-source rpm, consult build/README.kernel-source" >&5
-+echo "$as_me: WARNING: If you are trying to build with a kernel-source rpm, consult build/README.kernel-source" >&2;}
-+	{ { echo "$as_me:$LINENO: error: Kernel modules cannot be built." >&5
-+echo "$as_me: error: Kernel modules cannot be built." >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+LINUXRELEASE=
-+rm -f build/conftest.i
-+{ echo "$as_me:$LINENO: checking for Linux release" >&5
-+echo $ECHO_N "checking for Linux release... $ECHO_C" >&6; }
-+if test -s $LINUX_OBJ/include/linux/utsrelease.h ; then
-+	LINUXRELEASEHEADER=utsrelease.h
-+else
-+	LINUXRELEASEHEADER=version.h
-+fi
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/$LINUXRELEASEHEADER>
-+
-+int
-+main (void)
-+{
-+
-+	char *LINUXRELEASE;
-+	LINUXRELEASE=UTS_RELEASE;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d 
-+	$makerule LUSTRE_KERNEL_TEST=conftest.i
-+ ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='
-+	test -s build/conftest.i
-+'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	# LINUXRELEASE="UTS_RELEASE"
-+	eval $(grep "LINUXRELEASE=" build/conftest.i)
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: unknown" >&5
-+echo "${ECHO_T}unknown" >&6; }
-+	{ { echo "$as_me:$LINENO: error: Could not preprocess test program.  Consult config.log for details." >&5
-+echo "$as_me: error: Could not preprocess test program.  Consult config.log for details." >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+rm -f build/conftest.i
-+if test x$LINUXRELEASE = x ; then
-+	{ echo "$as_me:$LINENO: result: unknown" >&5
-+echo "${ECHO_T}unknown" >&6; }
-+	{ { echo "$as_me:$LINENO: error: Could not determine Linux release version from linux/version.h." >&5
-+echo "$as_me: error: Could not determine Linux release version from linux/version.h." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+{ echo "$as_me:$LINENO: result: $LINUXRELEASE" >&5
-+echo "${ECHO_T}$LINUXRELEASE" >&6; }
-+
-+
-+moduledir='/lib/modules/'$LINUXRELEASE/kernel
-+
-+
-+modulefsdir='$(moduledir)/fs/$(PACKAGE)'
-+
-+
-+modulenetdir='$(moduledir)/net/$(PACKAGE)'
-+
-+
-+# ------------ RELEASE --------------------------------
-+{ echo "$as_me:$LINENO: checking for Lustre release" >&5
-+echo $ECHO_N "checking for Lustre release... $ECHO_C" >&6; }
-+RELEASE="`echo ${LINUXRELEASE} | tr '-' '_'`_`date +%Y%m%d%H%M`"
-+{ echo "$as_me:$LINENO: result: $RELEASE" >&5
-+echo "${ECHO_T}$RELEASE" >&6; }
-+
-+
-+# check is redhat/suse kernels
-+{ echo "$as_me:$LINENO: checking that RedHat kernel" >&5
-+echo $ECHO_N "checking that RedHat kernel... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <linux/version.h>
-+	
-+int
-+main (void)
-+{
-+
-+		#ifndef RHEL_RELEASE_CODE
-+		#error "not redhat kernel"
-+		#endif
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		RHEL_KENEL="yes"
-+		RHEL_KERNEL="yes"
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_SUSE_KERNEL" >&5
-+echo $ECHO_N "checking if Linux was built with CONFIG_SUSE_KERNEL... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/autoconf.h>
-+
-+int
-+main (void)
-+{
-+
-+#ifndef CONFIG_SUSE_KERNEL
-+#error CONFIG_SUSE_KERNEL not #defined
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+SUSE_KERNEL="yes"
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking Linux kernel architecture" >&5
-+echo $ECHO_N "checking Linux kernel architecture... $ECHO_C" >&6; }
-+          if rm -f $PWD/build/arch
-+                 make -s --no-print-directory echoarch -f $PWD/build/Makefile \
-+                     LUSTRE_LINUX_CONFIG=$LINUX_CONFIG -C $LINUX $ARCH_UM \
-+                     ARCHFILE=$PWD/build/arch && LINUX_ARCH=`cat $PWD/build/arch`; then
-+  { echo "$as_me:$LINENO: result: $LINUX_ARCH" >&5
-+echo "${ECHO_T}$LINUX_ARCH" >&6; }
-+else
-+  { { echo "$as_me:$LINENO: error: Could not determine the kernel architecture." >&5
-+echo "$as_me: error: Could not determine the kernel architecture." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+          rm -f build/arch
-+{ echo "$as_me:$LINENO: checking name of module symbol version file" >&5
-+echo $ECHO_N "checking name of module symbol version file... $ECHO_C" >&6; }
-+	if grep -q Modules.symvers $LINUX/scripts/Makefile.modpost ; then
-+		SYMVERFILE=Modules.symvers
-+	else
-+		SYMVERFILE=Module.symvers
-+	fi
-+	{ echo "$as_me:$LINENO: result: $SYMVERFILE" >&5
-+echo "${ECHO_T}$SYMVERFILE" >&6; }
-+	
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_MODULES" >&5
-+echo $ECHO_N "checking if Linux was built with CONFIG_MODULES... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/autoconf.h>
-+
-+int
-+main (void)
-+{
-+
-+#ifndef CONFIG_MODULES
-+#error CONFIG_MODULES not #defined
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+	{ { echo "$as_me:$LINENO: error: module support is required to build Lustre kernel modules." >&5
-+echo "$as_me: error: module support is required to build Lustre kernel modules." >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_MODVERSIONS" >&5
-+echo $ECHO_N "checking if Linux was built with CONFIG_MODVERSIONS... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/autoconf.h>
-+
-+int
-+main (void)
-+{
-+
-+#ifndef CONFIG_MODVERSIONS
-+#error CONFIG_MODVERSIONS not #defined
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_KALLSYMS" >&5
-+echo $ECHO_N "checking if Linux was built with CONFIG_KALLSYMS... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/autoconf.h>
-+
-+int
-+main (void)
-+{
-+
-+#ifndef CONFIG_KALLSYMS
-+#error CONFIG_KALLSYMS not #defined
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+if test "x$ARCH_UM" = "x" ; then
-+	{ { echo "$as_me:$LINENO: error: Lustre requires that CONFIG_KALLSYMS is enabled in your kernel." >&5
-+echo "$as_me: error: Lustre requires that CONFIG_KALLSYMS is enabled in your kernel." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_KMOD" >&5
-+echo $ECHO_N "checking if Linux was built with CONFIG_KMOD... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/autoconf.h>
-+
-+int
-+main (void)
-+{
-+
-+#ifndef CONFIG_KMOD
-+#error CONFIG_KMOD not #defined
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+	{ echo "$as_me:$LINENO: WARNING: " >&5
-+echo "$as_me: WARNING: " >&2;}
-+	{ echo "$as_me:$LINENO: WARNING: Kernel module loading support is highly recommended." >&5
-+echo "$as_me: WARNING: Kernel module loading support is highly recommended." >&2;}
-+	{ echo "$as_me:$LINENO: WARNING: " >&5
-+echo "$as_me: WARNING: " >&2;}
-+
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+#LB_LINUX_CONFIG_BIG_STACK
-+
-+# it's ugly to be doing anything with OFED outside of the lnet module, but
-+# this has to be done here so that the backports path is set before all of
-+# the LN_PROG_LINUX checks are done
-+{ echo "$as_me:$LINENO: checking whether to use any OFED backport headers" >&5
-+echo $ECHO_N "checking whether to use any OFED backport headers... $ECHO_C" >&6; }
-+# set default
-+
-+# Check whether --with-o2ib was given.
-+if test "${with_o2ib+set}" = set; then
-+  withval=$with_o2ib; 
-+		case $with_o2ib in
-+		yes)    O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
-+			ENABLEO2IB=2
-+			;;
-+		no)     ENABLEO2IB=0
-+			;;
-+		*)      O2IBPATHS=$with_o2ib
-+			ENABLEO2IB=3
-+			;;
-+		esac
-+	
-+else
-+  
-+		O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
-+		ENABLEO2IB=1
-+	
-+fi
-+
-+if test $ENABLEO2IB -eq 0; then
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+else
-+	o2ib_found=false
-+	for O2IBPATH in $O2IBPATHS; do
-+		if test \( -f ${O2IBPATH}/include/rdma/rdma_cm.h -a \
-+			   -f ${O2IBPATH}/include/rdma/ib_cm.h -a \
-+			   -f ${O2IBPATH}/include/rdma/ib_verbs.h -a \
-+			   -f ${O2IBPATH}/include/rdma/ib_fmr_pool.h \); then
-+			o2ib_found=true
-+			break
-+		fi
-+	done
-+	if ! $o2ib_found; then
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+		case $ENABLEO2IB in
-+			1) ;;
-+			2) { { echo "$as_me:$LINENO: error: kernel OpenIB gen2 headers not present" >&5
-+echo "$as_me: error: kernel OpenIB gen2 headers not present" >&2;}
-+   { (exit 1); exit 1; }; };;
-+			3) { { echo "$as_me:$LINENO: error: bad --with-o2ib path" >&5
-+echo "$as_me: error: bad --with-o2ib path" >&2;}
-+   { (exit 1); exit 1; }; };;
-+			*) { { echo "$as_me:$LINENO: error: internal error" >&5
-+echo "$as_me: error: internal error" >&2;}
-+   { (exit 1); exit 1; }; };;
-+		esac
-+	else
-+                if test -f $O2IBPATH/config.mk; then
-+			. $O2IBPATH/config.mk
-+                elif test -f $O2IBPATH/ofed_patch.mk; then
-+			. $O2IBPATH/ofed_patch.mk
-+		fi
-+		if test -n "$BACKPORT_INCLUDES"; then
-+			OFED_BACKPORT_PATH=`echo $BACKPORT_INCLUDES | sed "s#.*/src/ofa_kernel/#$O2IBPATH/#"`
-+			EXTRA_LNET_INCLUDE="-I$OFED_BACKPORT_PATH $EXTRA_LNET_INCLUDE"
-+			{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		else
-+			{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+                fi
-+	fi
-+fi
-+
-+
-+			
-+			
-+{ echo "$as_me:$LINENO: checking if kernel defines cpu_online()" >&5
-+echo $ECHO_N "checking if kernel defines cpu_online()... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/sched.h>
-+
-+int
-+main (void)
-+{
-+
-+	cpu_online(0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_CPU_ONLINE 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+{ echo "$as_me:$LINENO: checking if kernel defines gfp_t" >&5
-+echo $ECHO_N "checking if kernel defines gfp_t... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/gfp.h>
-+
-+int
-+main (void)
-+{
-+
-+	return sizeof(gfp_t);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_GFP_T 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+{ echo "$as_me:$LINENO: checking if kernel defines cpumask_t" >&5
-+echo $ECHO_N "checking if kernel defines cpumask_t... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/sched.h>
-+
-+int
-+main (void)
-+{
-+
-+	return sizeof (cpumask_t);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_CPUMASK_T 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+# Check whether --enable-affinity was given.
-+if test "${enable_affinity+set}" = set; then
-+  enableval=$enable_affinity; 
-+else
-+  enable_affinity='yes'
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: checking for CPU affinity support" >&5
-+echo $ECHO_N "checking for CPU affinity support... $ECHO_C" >&6; }
-+if test x$enable_affinity = xno ; then
-+	{ echo "$as_me:$LINENO: result: no (by request)" >&5
-+echo "${ECHO_T}no (by request)" >&6; }
-+else
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <linux/sched.h>
-+	
-+int
-+main (void)
-+{
-+
-+		struct task_struct t;
-+		#if HAVE_CPUMASK_T
-+		cpumask_t     m;
-+	        #else
-+	        unsigned long m;
-+		#endif
-+		set_cpus_allowed(&t, m);
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CPU_AFFINITY 1
-+_ACEOF
-+
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no (no kernel support)" >&5
-+echo "${ECHO_T}no (no kernel support)" >&6; }
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+fi
-+
-+{ echo "$as_me:$LINENO: checking for tunable backoff TCP support" >&5
-+echo $ECHO_N "checking for tunable backoff TCP support... $ECHO_C" >&6; }
-+# Check whether --enable-backoff was given.
-+if test "${enable_backoff+set}" = set; then
-+  enableval=$enable_backoff; 
-+else
-+  enable_backoff='yes'
-+fi
-+
-+if test x$enable_backoff = xno ; then
-+       { echo "$as_me:$LINENO: result: no (by request)" >&5
-+echo "${ECHO_T}no (by request)" >&6; }
-+else
-+       BOCD="`grep -c TCP_BACKOFF $LINUX/include/linux/tcp.h`"
-+       if test "$BOCD" != 0 ; then
-+               
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define SOCKNAL_BACKOFF 1
-+_ACEOF
-+
-+               { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+               if grep rto_max $LINUX/include/linux/tcp.h|grep -q __u16; then
-+                   
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define SOCKNAL_BACKOFF_MS 1
-+_ACEOF
-+
-+               fi
-+       else
-+               { echo "$as_me:$LINENO: result: no (no kernel support)" >&5
-+echo "${ECHO_T}no (no kernel support)" >&6; }
-+       fi
-+fi
-+
-+{ echo "$as_me:$LINENO: checking for tunable panic_dumplog support" >&5
-+echo $ECHO_N "checking for tunable panic_dumplog support... $ECHO_C" >&6; }
-+# Check whether --enable-panic_dumplog was given.
-+if test "${enable_panic_dumplog+set}" = set; then
-+  enableval=$enable_panic_dumplog; 
-+else
-+  enable_panic_dumplog='no'
-+fi
-+
-+if test x$enable_panic_dumplog = xyes ; then
-+       
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define LNET_DUMP_ON_PANIC 1
-+_ACEOF
-+
-+       { echo "$as_me:$LINENO: result: yes (by request)" >&5
-+echo "${ECHO_T}yes (by request)" >&6; }
-+else
-+       { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+{ echo "$as_me:$LINENO: checking for QsNet sources" >&5
-+echo $ECHO_N "checking for QsNet sources... $ECHO_C" >&6; }
-+
-+# Check whether --with-qsnet was given.
-+if test "${with_qsnet+set}" = set; then
-+  withval=$with_qsnet; QSNET=$with_qsnet
-+else
-+  QSNET=$LINUX
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $QSNET" >&5
-+echo "${ECHO_T}$QSNET" >&6; }
-+
-+{ echo "$as_me:$LINENO: checking if quadrics kernel headers are present" >&5
-+echo $ECHO_N "checking if quadrics kernel headers are present... $ECHO_C" >&6; }
-+if test -d $QSNET/drivers/net/qsnet ; then
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	QSWLND="qswlnd"
-+	{ echo "$as_me:$LINENO: checking for multirail EKC" >&5
-+echo $ECHO_N "checking for multirail EKC... $ECHO_C" >&6; }
-+	if test -f $QSNET/include/elan/epcomms.h; then
-+		{ echo "$as_me:$LINENO: result: supported" >&5
-+echo "${ECHO_T}supported" >&6; }
-+		QSWCPPFLAGS="-I$QSNET/include -DMULTIRAIL_EKC=1"
-+	else
-+		{ echo "$as_me:$LINENO: result: not supported" >&5
-+echo "${ECHO_T}not supported" >&6; }
-+		{ { echo "$as_me:$LINENO: error: Need multirail EKC" >&5
-+echo "$as_me: error: Need multirail EKC" >&2;}
-+   { (exit 1); exit 1; }; }
-+	fi
-+
-+	if test x$QSNET = x$LINUX ; then
-+		{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_QSNET" >&5
-+echo $ECHO_N "checking if Linux was built with CONFIG_QSNET... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/autoconf.h>
-+
-+int
-+main (void)
-+{
-+
-+#ifndef CONFIG_QSNET
-+#error CONFIG_QSNET not #defined
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+			{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_QSNET_MODULE" >&5
-+echo $ECHO_N "checking if Linux was built with CONFIG_QSNET_MODULE... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/autoconf.h>
-+
-+int
-+main (void)
-+{
-+
-+#ifndef CONFIG_QSNET_MODULE
-+#error CONFIG_QSNET_MODULE not #defined
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+				{ echo "$as_me:$LINENO: WARNING: QSNET is not enabled in this kernel; not building qswlnd." >&5
-+echo "$as_me: WARNING: QSNET is not enabled in this kernel; not building qswlnd." >&2;}
-+				QSWLND=""
-+				QSWCPPFLAGS=""
-+			
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+		
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+	fi
-+else
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	QSWLND=""
-+	QSWCPPFLAGS=""
-+fi
-+
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to enable GM support" >&5
-+echo $ECHO_N "checking whether to enable GM support... $ECHO_C" >&6; }
-+
-+# Check whether --with-gm was given.
-+if test "${with_gm+set}" = set; then
-+  withval=$with_gm; 
-+	        case $with_gm in
-+                no)    ENABLE_GM=0
-+	               ;;
-+                *)     ENABLE_GM=1
-+                       GM_SRC="$with_gm"
-+		       ;;
-+                esac
-+        
-+else
-+  
-+                ENABLE_GM=0
-+        
-+fi
-+
-+
-+# Check whether --with-gm-install was given.
-+if test "${with_gm_install+set}" = set; then
-+  withval=$with_gm_install; 
-+	        GM_INSTALL=$with_gm_install
-+        
-+else
-+  
-+                GM_INSTALL="/opt/gm"
-+        
-+fi
-+
-+if test $ENABLE_GM -eq 0; then
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+else
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+	GMLND="gmlnd"
-+        GMCPPFLAGS="-I$GM_SRC/include -I$GM_SRC/drivers -I$GM_SRC/drivers/linux/gm"
-+
-+	if test -f $GM_INSTALL/lib/libgm.a -o \
-+                -f $GM_INSTALL/lib64/libgm.a; then
-+	        GMLIBS="-L$GM_INSTALL/lib -L$GM_INSTALL/lib64"
-+        else
-+	        { { echo "$as_me:$LINENO: error: Cant find GM libraries under $GM_INSTALL" >&5
-+echo "$as_me: error: Cant find GM libraries under $GM_INSTALL" >&2;}
-+   { (exit 1); exit 1; }; }
-+        fi
-+
-+	EXTRA_KCFLAGS_save="$EXTRA_KCFLAGS"
-+	EXTRA_KCFLAGS="$GMCPPFLAGS -DGM_KERNEL $EXTRA_KCFLAGS"
-+
-+        { echo "$as_me:$LINENO: checking that code using GM compiles with given path" >&5
-+echo $ECHO_N "checking that code using GM compiles with given path... $ECHO_C" >&6; }
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#define GM_STRONG_TYPES 1
-+		#ifdef VERSION
-+		#undef VERSION
-+		#endif
-+	        #include "gm.h"
-+		#include "gm_internal.h"
-+        
-+int
-+main (void)
-+{
-+
-+	        struct gm_port *port = NULL;
-+		gm_recv_event_t *rxevent = gm_blocking_receive_no_spin(port);
-+                return 0;
-+        
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+		{ { echo "$as_me:$LINENO: error: Bad --with-gm path" >&5
-+echo "$as_me: error: Bad --with-gm path" >&2;}
-+   { (exit 1); exit 1; }; }
-+        
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+	{ echo "$as_me:$LINENO: checking that GM has gm_register_memory_ex_phys()" >&5
-+echo $ECHO_N "checking that GM has gm_register_memory_ex_phys()... $ECHO_C" >&6; }
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#define GM_STRONG_TYPES 1
-+		#ifdef VERSION
-+		#undef VERSION
-+		#endif
-+	        #include "gm.h"
-+		#include "gm_internal.h"
-+	
-+int
-+main (void)
-+{
-+
-+		gm_status_t     gmrc;
-+		struct gm_port *port = NULL;
-+		gm_u64_t        phys = 0;
-+		gm_up_t         pvma = 0;
-+
-+		gmrc = gm_register_memory_ex_phys(port, phys, 100, pvma);
-+		return 0;
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no.
-+Please patch the GM sources as follows...
-+    cd $GM_SRC
-+    patch -p0 < $PWD/lnet/klnds/gmlnd/gm-reg-phys.patch
-+...then rebuild and re-install them" >&5
-+echo "${ECHO_T}no.
-+Please patch the GM sources as follows...
-+    cd $GM_SRC
-+    patch -p0 < $PWD/lnet/klnds/gmlnd/gm-reg-phys.patch
-+...then rebuild and re-install them" >&6; }
-+                { { echo "$as_me:$LINENO: error: Can't build GM without gm_register_memory_ex_phys()" >&5
-+echo "$as_me: error: Can't build GM without gm_register_memory_ex_phys()" >&2;}
-+   { (exit 1); exit 1; }; }
-+        
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+	EXTRA_KCFLAGS="$EXTRA_KCFLAGS_save"
-+fi
-+
-+
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to enable OpenIB support" >&5
-+echo $ECHO_N "checking whether to enable OpenIB support... $ECHO_C" >&6; }
-+# set default
-+OPENIBPATH="$LINUX/drivers/infiniband"
-+
-+# Check whether --with-openib was given.
-+if test "${with_openib+set}" = set; then
-+  withval=$with_openib; 
-+		case $with_openib in
-+		yes)    ENABLEOPENIB=2
-+			;;
-+		no)     ENABLEOPENIB=0
-+			;;
-+		*)      OPENIBPATH="$with_openib"
-+			ENABLEOPENIB=3
-+			;;
-+		esac
-+	
-+else
-+  
-+		ENABLEOPENIB=1
-+	
-+fi
-+
-+if test $ENABLEOPENIB -eq 0; then
-+	{ echo "$as_me:$LINENO: result: disabled" >&5
-+echo "${ECHO_T}disabled" >&6; }
-+elif test ! \( -f ${OPENIBPATH}/include/ts_ib_core.h -a \
-+               -f ${OPENIBPATH}/include/ts_ib_cm.h -a \
-+	       -f ${OPENIBPATH}/include/ts_ib_sa_client.h \); then
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	case $ENABLEOPENIB in
-+	1) ;;
-+	2) { { echo "$as_me:$LINENO: error: kernel OpenIB headers not present" >&5
-+echo "$as_me: error: kernel OpenIB headers not present" >&2;}
-+   { (exit 1); exit 1; }; };;
-+	3) { { echo "$as_me:$LINENO: error: bad --with-openib path" >&5
-+echo "$as_me: error: bad --with-openib path" >&2;}
-+   { (exit 1); exit 1; }; };;
-+	*) { { echo "$as_me:$LINENO: error: internal error" >&5
-+echo "$as_me: error: internal error" >&2;}
-+   { (exit 1); exit 1; }; };;
-+	esac
-+else
-+	case $ENABLEOPENIB in
-+	1|2) OPENIBCPPFLAGS="-I$OPENIBPATH/include -DIN_TREE_BUILD";;
-+	3)   OPENIBCPPFLAGS="-I$OPENIBPATH/include";;
-+	*)   { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	     { { echo "$as_me:$LINENO: error: internal error" >&5
-+echo "$as_me: error: internal error" >&2;}
-+   { (exit 1); exit 1; }; };;
-+	esac
-+	OPENIBCPPFLAGS="$OPENIBCPPFLAGS -DIB_NTXRXPARAMS=4"
-+	EXTRA_KCFLAGS_save="$EXTRA_KCFLAGS"
-+	EXTRA_KCFLAGS="$EXTRA_KCFLAGS $OPENIBCPPFLAGS"
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <ts_ib_core.h>
-+		#include <ts_ib_cm.h>
-+	        #include <ts_ib_sa_client.h>
-+	
-+int
-+main (void)
-+{
-+
-+	        struct ib_device_properties dev_props;
-+	        struct ib_cm_active_param   cm_active_params;
-+	        tTS_IB_CLIENT_QUERY_TID     tid;
-+	        int                         enum1 = IB_QP_ATTRIBUTE_STATE;
-+		int                         enum2 = IB_ACCESS_LOCAL_WRITE;
-+		int                         enum3 = IB_CQ_CALLBACK_INTERRUPT;
-+		int                         enum4 = IB_CQ_PROVIDER_REARM;
-+		return 0;
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		OPENIBLND="openiblnd"
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+		case $ENABLEOPENIB in
-+		1) ;;
-+		2) { { echo "$as_me:$LINENO: error: can't compile with kernel OpenIB headers" >&5
-+echo "$as_me: error: can't compile with kernel OpenIB headers" >&2;}
-+   { (exit 1); exit 1; }; };;
-+		3) { { echo "$as_me:$LINENO: error: can't compile with OpenIB headers under $OPENIBPATH" >&5
-+echo "$as_me: error: can't compile with OpenIB headers under $OPENIBPATH" >&2;}
-+   { (exit 1); exit 1; }; };;
-+		*) { { echo "$as_me:$LINENO: error: internal error" >&5
-+echo "$as_me: error: internal error" >&2;}
-+   { (exit 1); exit 1; }; };;
-+		esac
-+		OPENIBLND=""
-+		OPENIBCPPFLAGS=""
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+	EXTRA_KCFLAGS="$EXTRA_KCFLAGS_save"
-+fi
-+
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to enable Cisco/TopSpin IB support" >&5
-+echo $ECHO_N "checking whether to enable Cisco/TopSpin IB support... $ECHO_C" >&6; }
-+# set default
-+CIBPATH=""
-+CIBLND=""
-+
-+# Check whether --with-cib was given.
-+if test "${with_cib+set}" = set; then
-+  withval=$with_cib; 
-+		case $with_cib in
-+		no)     { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; };;
-+		*)      CIBPATH="$with_cib"
-+	                if test -d "$CIBPATH"; then
-+	                 	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+                        else
-+				{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+				{ { echo "$as_me:$LINENO: error: No directory $CIBPATH" >&5
-+echo "$as_me: error: No directory $CIBPATH" >&2;}
-+   { (exit 1); exit 1; }; }
-+			fi;;
-+		esac
-+	
-+else
-+  
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	
-+fi
-+
-+if test -n "$CIBPATH"; then
-+	CIBCPPFLAGS="-I${CIBPATH}/ib/ts_api_ng/include -I${CIBPATH}/all/kernel_services/include -DUSING_TSAPI"
-+	CIBCPPFLAGS="$CIBCPPFLAGS -DIB_NTXRXPARAMS=3"
-+	EXTRA_KCFLAGS_save="$EXTRA_KCFLAGS"
-+	EXTRA_KCFLAGS="$EXTRA_KCFLAGS $CIBCPPFLAGS"
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <ts_ib_core.h>
-+		#include <ts_ib_cm.h>
-+	        #include <ts_ib_sa_client.h>
-+	
-+int
-+main (void)
-+{
-+
-+	        struct ib_device_properties dev_props;
-+	        struct ib_cm_active_param   cm_active_params;
-+	        tTS_IB_CLIENT_QUERY_TID     tid;
-+	        int                         enum1 = TS_IB_QP_ATTRIBUTE_STATE;
-+		int                         enum2 = TS_IB_ACCESS_LOCAL_WRITE;
-+		int                         enum3 = TS_IB_CQ_CALLBACK_INTERRUPT;
-+		int                         enum4 = TS_IB_CQ_PROVIDER_REARM;
-+		return 0;
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		CIBLND="ciblnd"
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ { echo "$as_me:$LINENO: error: can't compile ciblnd with given path" >&5
-+echo "$as_me: error: can't compile ciblnd with given path" >&2;}
-+   { (exit 1); exit 1; }; }
-+	        CIBCPPFLAGS=""
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+	EXTRA_KCFLAGS="$EXTRA_KCFLAGS_save"
-+fi
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to enable Voltaire IB support" >&5
-+echo $ECHO_N "checking whether to enable Voltaire IB support... $ECHO_C" >&6; }
-+VIBPATH=""
-+
-+# Check whether --with-vib was given.
-+if test "${with_vib+set}" = set; then
-+  withval=$with_vib; 
-+		case $with_vib in
-+		no)     { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; };;
-+		*)	VIBPATH="${with_vib}/src/nvigor/ib-code"
-+			if test -d "$with_vib" -a -d "$VIBPATH"; then
-+	                        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+			else
-+				{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+				{ { echo "$as_me:$LINENO: error: No directory $VIBPATH" >&5
-+echo "$as_me: error: No directory $VIBPATH" >&2;}
-+   { (exit 1); exit 1; }; }
-+                        fi;;
-+		esac
-+	
-+else
-+  
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	
-+fi
-+
-+if test -z "$VIBPATH"; then
-+	VIBLND=""
-+else
-+	VIBCPPFLAGS="-I${VIBPATH}/include -I${VIBPATH}/cm"
-+	EXTRA_KCFLAGS_save="$EXTRA_KCFLAGS"
-+	EXTRA_KCFLAGS="$EXTRA_KCFLAGS $VIBCPPFLAGS"
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <linux/list.h>
-+		#include <asm/byteorder.h>
-+		#ifdef __BIG_ENDIAN
-+		# define CPU_BE 1
-+                # define CPU_LE 0
-+		#endif
-+		#ifdef __LITTLE_ENDIAN
-+		# define CPU_BE 0
-+		# define CPU_LE 1
-+		#endif
-+		#include <vverbs.h>
-+	        #include <ib-cm.h>
-+	        #include <ibat.h>
-+	
-+int
-+main (void)
-+{
-+
-+	        vv_hca_h_t       kib_hca;
-+		vv_return_t      vvrc;
-+	        cm_cep_handle_t  cep;
-+	        ibat_arp_data_t  arp_data;
-+		ibat_stat_t      ibatrc;
-+
-+		vvrc = vv_hca_open("ANY_HCA", NULL, &kib_hca);
-+	        cep = cm_create_cep(cm_cep_transp_rc);
-+	        ibatrc = ibat_get_ib_data((uint32_t)0, (uint32_t)0,
-+                                          ibat_paths_primary, &arp_data,
-+					  (ibat_get_ib_data_reply_fn_t)NULL,
-+                                          NULL, 0);
-+		return 0;
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		VIBLND="viblnd"
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	        { { echo "$as_me:$LINENO: error: can't compile viblnd with given path" >&5
-+echo "$as_me: error: can't compile viblnd with given path" >&2;}
-+   { (exit 1); exit 1; }; }
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+	EXTRA_KCFLAGS="$EXTRA_KCFLAGS_save"
-+fi
-+if test -n "$VIBLND"; then
-+	EXTRA_KCFLAGS_save="$EXTRA_KCFLAGS"
-+	EXTRA_KCFLAGS="$EXTRA_KCFLAGS $VIBCPPFLAGS"
-+	{ echo "$as_me:$LINENO: checking if Voltaire still uses void * sg addresses" >&5
-+echo $ECHO_N "checking if Voltaire still uses void * sg addresses... $ECHO_C" >&6; }
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <linux/list.h>
-+		#include <asm/byteorder.h>
-+		#ifdef __BIG_ENDIAN
-+		# define CPU_BE 1
-+                # define CPU_LE 0
-+		#endif
-+		#ifdef __LITTLE_ENDIAN
-+		# define CPU_BE 0
-+		# define CPU_LE 1
-+		#endif
-+		#include <vverbs.h>
-+	        #include <ib-cm.h>
-+	        #include <ibat.h>
-+	
-+int
-+main (void)
-+{
-+
-+	        vv_scatgat_t  sg;
-+
-+	        return &sg.v_address[3] == NULL;
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	        VIBCPPFLAGS="$VIBCPPFLAGS -DIBNAL_VOIDSTAR_SGADDR=1"
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+	EXTRA_KCFLAGS="$EXTRA_KCFLAGS_save"
-+fi
-+
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to enable Infinicon support" >&5
-+echo $ECHO_N "checking whether to enable Infinicon support... $ECHO_C" >&6; }
-+# set default
-+IIBPATH="/usr/include"
-+
-+# Check whether --with-iib was given.
-+if test "${with_iib+set}" = set; then
-+  withval=$with_iib; 
-+		case $with_iib in
-+		yes)    ENABLEIIB=2
-+			;;
-+		no)     ENABLEIIB=0
-+			;;
-+		*)      IIBPATH="${with_iib}/include"
-+			ENABLEIIB=3
-+			;;
-+		esac
-+	
-+else
-+  
-+		ENABLEIIB=1
-+	
-+fi
-+
-+if test $ENABLEIIB -eq 0; then
-+	{ echo "$as_me:$LINENO: result: disabled" >&5
-+echo "${ECHO_T}disabled" >&6; }
-+elif test ! \( -f ${IIBPATH}/linux/iba/ibt.h \); then
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	case $ENABLEIIB in
-+	1) ;;
-+	2) { { echo "$as_me:$LINENO: error: default Infinicon headers not present" >&5
-+echo "$as_me: error: default Infinicon headers not present" >&2;}
-+   { (exit 1); exit 1; }; };;
-+	3) { { echo "$as_me:$LINENO: error: bad --with-iib path" >&5
-+echo "$as_me: error: bad --with-iib path" >&2;}
-+   { (exit 1); exit 1; }; };;
-+	*) { { echo "$as_me:$LINENO: error: internal error" >&5
-+echo "$as_me: error: internal error" >&2;}
-+   { (exit 1); exit 1; }; };;
-+	esac
-+else
-+	IIBCPPFLAGS="-I$IIBPATH"
-+	if test $IIBPATH != "/usr/include"; then
-+		# we need /usr/include come what may
-+		IIBCPPFLAGS="$IIBCPPFLAGS -I/usr/include"
-+        fi
-+	EXTRA_KCFLAGS_save="$EXTRA_KCFLAGS"
-+	EXTRA_KCFLAGS="$EXTRA_KCFLAGS $IIBCPPFLAGS"
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <linux/iba/ibt.h>
-+	
-+int
-+main (void)
-+{
-+
-+	        IBT_INTERFACE_UNION interfaces;
-+        	FSTATUS             rc;
-+
-+	         rc = IbtGetInterfaceByVersion(IBT_INTERFACE_VERSION_2,
-+					       &interfaces);
-+
-+		return rc == FSUCCESS ? 0 : 1;
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		IIBLND="iiblnd"
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+		case $ENABLEIIB in
-+		1) ;;
-+		2) { { echo "$as_me:$LINENO: error: can't compile with default Infinicon headers" >&5
-+echo "$as_me: error: can't compile with default Infinicon headers" >&2;}
-+   { (exit 1); exit 1; }; };;
-+		3) { { echo "$as_me:$LINENO: error: can't compile with Infinicon headers under $IIBPATH" >&5
-+echo "$as_me: error: can't compile with Infinicon headers under $IIBPATH" >&2;}
-+   { (exit 1); exit 1; }; };;
-+		*) { { echo "$as_me:$LINENO: error: internal error" >&5
-+echo "$as_me: error: internal error" >&2;}
-+   { (exit 1); exit 1; }; };;
-+		esac
-+		IIBLND=""
-+		IIBCPPFLAGS=""
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+	EXTRA_KCFLAGS="$EXTRA_KCFLAGS_save"
-+fi
-+
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to enable OpenIB gen2 support" >&5
-+echo $ECHO_N "checking whether to enable OpenIB gen2 support... $ECHO_C" >&6; }
-+# set default
-+
-+# Check whether --with-o2ib was given.
-+if test "${with_o2ib+set}" = set; then
-+  withval=$with_o2ib; 
-+		case $with_o2ib in
-+		yes)    O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
-+			ENABLEO2IB=2
-+			;;
-+		no)     ENABLEO2IB=0
-+			;;
-+		*)      O2IBPATHS=$with_o2ib
-+			ENABLEO2IB=3
-+			;;
-+		esac
-+	
-+else
-+  
-+		O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
-+		ENABLEO2IB=1
-+	
-+fi
-+
-+if test $ENABLEO2IB -eq 0; then
-+	{ echo "$as_me:$LINENO: result: disabled" >&5
-+echo "${ECHO_T}disabled" >&6; }
-+else
-+	o2ib_found=false
-+
-+	for O2IBPATH in $O2IBPATHS; do
-+		if test \( -f ${O2IBPATH}/include/rdma/rdma_cm.h -a \
-+			   -f ${O2IBPATH}/include/rdma/ib_cm.h -a \
-+			   -f ${O2IBPATH}/include/rdma/ib_verbs.h -a \
-+			   -f ${O2IBPATH}/include/rdma/ib_fmr_pool.h \); then
-+			o2ib_found=true
-+			break
-+		fi
-+	done
-+
-+	if ! $o2ib_found; then
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+		case $ENABLEO2IB in
-+			1) ;;
-+			2) { { echo "$as_me:$LINENO: error: kernel OpenIB gen2 headers not present" >&5
-+echo "$as_me: error: kernel OpenIB gen2 headers not present" >&2;}
-+   { (exit 1); exit 1; }; };;
-+			3) { { echo "$as_me:$LINENO: error: bad --with-o2ib path" >&5
-+echo "$as_me: error: bad --with-o2ib path" >&2;}
-+   { (exit 1); exit 1; }; };;
-+			*) { { echo "$as_me:$LINENO: error: internal error" >&5
-+echo "$as_me: error: internal error" >&2;}
-+   { (exit 1); exit 1; }; };;
-+		esac
-+	else
-+		O2IBCPPFLAGS="-I$O2IBPATH/include"
-+		EXTRA_KCFLAGS_save="$EXTRA_KCFLAGS"
-+		EXTRA_KCFLAGS="$EXTRA_KCFLAGS $O2IBCPPFLAGS"
-+		EXTRA_LNET_INCLUDE="$EXTRA_LNET_INCLUDE $O2IBCPPFLAGS"
-+
-+		cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		        #include <linux/version.h>
-+		        #include <linux/pci.h>
-+		        #if !HAVE_GFP_T
-+		        typedef int gfp_t;
-+		        #endif
-+		        #include <rdma/rdma_cm.h>
-+		        #include <rdma/ib_cm.h>
-+		        #include <rdma/ib_verbs.h>
-+		        #include <rdma/ib_fmr_pool.h>
-+		
-+int
-+main (void)
-+{
-+
-+		        struct rdma_cm_id          *cm_id;
-+		        struct rdma_conn_param      conn_param;
-+		        struct ib_device_attr       device_attr;
-+		        struct ib_qp_attr           qp_attr;
-+		        struct ib_pool_fmr          pool_fmr;
-+		        enum   ib_cm_rej_reason     rej_reason;
-+
-+		        cm_id = rdma_create_id(NULL, NULL, RDMA_PS_TCP);
-+		        return PTR_ERR(cm_id);
-+		
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		        O2IBLND="o2iblnd"
-+		
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+		        case $ENABLEO2IB in
-+		        1) ;;
-+		        2) { { echo "$as_me:$LINENO: error: can't compile with kernel OpenIB gen2 headers" >&5
-+echo "$as_me: error: can't compile with kernel OpenIB gen2 headers" >&2;}
-+   { (exit 1); exit 1; }; };;
-+		        3) { { echo "$as_me:$LINENO: error: can't compile with OpenIB gen2 headers under $O2IBPATH" >&5
-+echo "$as_me: error: can't compile with OpenIB gen2 headers under $O2IBPATH" >&2;}
-+   { (exit 1); exit 1; }; };;
-+		        *) { { echo "$as_me:$LINENO: error: internal error" >&5
-+echo "$as_me: error: internal error" >&2;}
-+   { (exit 1); exit 1; }; };;
-+		        esac
-+		        O2IBLND=""
-+		        O2IBCPPFLAGS=""
-+		
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+		# we know at this point that the found OFED source is good
-+		O2IB_SYMVER=""
-+		if test $ENABLEO2IB -eq 3 ; then
-+			# OFED default rpm not handle sles10 Modules.symvers name
-+			for name in Module.symvers Modules.symvers; do
-+				if test -f $O2IBPATH/$name; then
-+					O2IB_SYMVER=$name;
-+					break;
-+				fi
-+			done
-+			if test -n "$O2IB_SYMVER"; then
-+				{ echo "$as_me:$LINENO: adding $O2IBPATH/Module.symvers to $PWD/$SYMVERFILE" >&5
-+echo "$as_me: adding $O2IBPATH/Module.symvers to $PWD/$SYMVERFILE" >&6;}
-+				# strip out the existing symbols versions first
-+				if test -f $PWD/$SYMVERFILE; then
-+				    egrep -v $(echo $(awk '{ print  }' $O2IBPATH/$O2IB_SYMVER) | tr ' ' '|') $PWD/$SYMVERFILE > $PWD/$SYMVERFILE.old
-+				else
-+				    touch $PWD/$SYMVERFILE.old
-+				fi
-+				cat $PWD/$SYMVERFILE.old $O2IBPATH/$O2IB_SYMVER > $PWD/$SYMVERFILE
-+				rm $PWD/$SYMVERFILE.old
-+			else
-+				{ { echo "$as_me:$LINENO: error: an external source tree was specified for o2iblnd however I could not find a $O2IBPATH/Module.symvers there" >&5
-+echo "$as_me: error: an external source tree was specified for o2iblnd however I could not find a $O2IBPATH/Module.symvers there" >&2;}
-+   { (exit 1); exit 1; }; }
-+			fi
-+		fi
-+
-+		
-+	{ echo "$as_me:$LINENO: checking if OFED has ib_dma_map_single" >&5
-+echo $ECHO_N "checking if OFED has ib_dma_map_single... $ECHO_C" >&6; }
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <linux/version.h>
-+		#include <linux/pci.h>
-+		#if !HAVE_GFP_T
-+		typedef int gfp_t;
-+		#endif
-+		#include <rdma/ib_verbs.h>
-+	
-+int
-+main (void)
-+{
-+
-+		ib_dma_map_single(NULL, NULL, 0, 0);
-+		return 0;
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_OFED_IB_DMA_MAP 1
-+_ACEOF
-+
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+	{ echo "$as_me:$LINENO: checking if ib_create_cq wants comp_vector" >&5
-+echo $ECHO_N "checking if ib_create_cq wants comp_vector... $ECHO_C" >&6; }
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <linux/version.h>
-+		#include <linux/pci.h>
-+		#if !HAVE_GFP_T
-+		typedef int gfp_t;
-+		#endif
-+		#include <rdma/ib_verbs.h>
-+	
-+int
-+main (void)
-+{
-+
-+		ib_create_cq(NULL, NULL, NULL, NULL, 0, 0);
-+		return 0;
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_OFED_IB_COMP_VECTOR 1
-+_ACEOF
-+
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+	{ echo "$as_me:$LINENO: checking if OFED supports iWarp transport" >&5
-+echo $ECHO_N "checking if OFED supports iWarp transport... $ECHO_C" >&6; }
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <linux/version.h>
-+		#include <linux/pci.h>
-+		#if !HAVE_GFP_T
-+		typedef int gfp_t;
-+		#endif
-+		#include <rdma/ib_verbs.h>
-+	
-+int
-+main (void)
-+{
-+
-+		return RDMA_TRANSPORT_IWARP ==
-+		       rdma_node_get_transport(RDMA_NODE_RNIC);
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_OFED_TRANSPORT_IWARP 1
-+_ACEOF
-+
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+	{ echo "$as_me:$LINENO: checking if OFED has RDMA_CM_EVENT_ADDR_CHANGE" >&5
-+echo $ECHO_N "checking if OFED has RDMA_CM_EVENT_ADDR_CHANGE... $ECHO_C" >&6; }
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <linux/version.h>
-+		#include <linux/pci.h>
-+		#if !HAVE_GFP_T
-+		typedef int gfp_t;
-+		#endif
-+		#include <rdma/rdma_cm.h>
-+	
-+int
-+main (void)
-+{
-+
-+		return (RDMA_CM_EVENT_ADDR_CHANGE == 0);
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_OFED_RDMA_CMEV_ADDRCHANGE 1
-+_ACEOF
-+
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+	{ echo "$as_me:$LINENO: checking if OFED has RDMA_CM_EVENT_TIMEWAIT_EXIT" >&5
-+echo $ECHO_N "checking if OFED has RDMA_CM_EVENT_TIMEWAIT_EXIT... $ECHO_C" >&6; }
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <linux/version.h>
-+		#include <linux/pci.h>
-+		#if !HAVE_GFP_T
-+		typedef int gfp_t;
-+		#endif
-+		#include <rdma/rdma_cm.h>
-+	
-+int
-+main (void)
-+{
-+
-+		return (RDMA_CM_EVENT_TIMEWAIT_EXIT == 0);
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_OFED_RDMA_CMEV_TIMEWAIT_EXIT 1
-+_ACEOF
-+
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+		EXTRA_KCFLAGS="$EXTRA_KCFLAGS_save"
-+	fi
-+fi
-+
-+
-+
-+
-+
-+#### Rapid Array
-+{ echo "$as_me:$LINENO: checking if RapidArray kernel headers are present" >&5
-+echo $ECHO_N "checking if RapidArray kernel headers are present... $ECHO_C" >&6; }
-+# placeholder
-+RACPPFLAGS="-I${LINUX}/drivers/xd1/include"
-+EXTRA_KCFLAGS_save="$EXTRA_KCFLAGS"
-+EXTRA_KCFLAGS="$EXTRA_KCFLAGS $RACPPFLAGS"
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/types.h>
-+	#include <rapl.h>
-+
-+int
-+main (void)
-+{
-+
-+        RAP_RETURN          rc;
-+	RAP_PVOID           dev_handle;
-+
-+        rc = RapkGetDeviceByIndex(0, NULL, &dev_handle);
-+
-+	return rc == RAP_SUCCESS ? 0 : 1;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	RALND="ralnd"
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	RALND=""
-+	RACPPFLAGS=""
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+EXTRA_KCFLAGS="$EXTRA_KCFLAGS_save"
-+
-+
-+
-+
-+if test -z "$ENABLEPORTALS"; then
-+	{ echo "$as_me:$LINENO: checking for portals" >&5
-+echo $ECHO_N "checking for portals... $ECHO_C" >&6; }
-+
-+# Check whether --with-portals was given.
-+if test "${with_portals+set}" = set; then
-+  withval=$with_portals; 
-+		case $with_portals in
-+			no)     ENABLEPORTALS=0
-+				;;
-+			*)	PORTALS="${with_portals}"
-+				ENABLEPORTALS=1
-+				;;
-+		esac
-+	
-+else
-+  
-+		ENABLEPORTALS=0
-+	
-+fi
-+
-+PTLLNDCPPFLAGS=""
-+if test $ENABLEPORTALS -eq 0; then
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+elif test ! \( -f ${PORTALS}/include/portals/p30.h \); then
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	{ { echo "$as_me:$LINENO: error: bad --with-portals path" >&5
-+echo "$as_me: error: bad --with-portals path" >&2;}
-+   { (exit 1); exit 1; }; }
-+else
-+        { echo "$as_me:$LINENO: result: $PORTALS" >&5
-+echo "${ECHO_T}$PORTALS" >&6; }
-+        PTLLNDCPPFLAGS="-I${PORTALS}/include"
-+fi
-+
-+
-+fi
-+
-+{ echo "$as_me:$LINENO: checking whether to build the kernel portals LND" >&5
-+echo $ECHO_N "checking whether to build the kernel portals LND... $ECHO_C" >&6; }
-+
-+PTLLND=""
-+if test $ENABLEPORTALS -ne 0; then
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	PTLLND="ptllnd"
-+else
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to enable Myrinet MX support" >&5
-+echo $ECHO_N "checking whether to enable Myrinet MX support... $ECHO_C" >&6; }
-+# set default
-+MXPATH="/opt/mx"
-+
-+# Check whether --with-mx was given.
-+if test "${with_mx+set}" = set; then
-+  withval=$with_mx; 
-+               case $with_mx in
-+               yes)    ENABLEMX=2
-+                       ;;
-+               no)     ENABLEMX=0
-+                       ;;
-+               *)      MXPATH=$with_mx
-+                       ENABLEMX=3
-+                       ;;
-+               esac
-+       
-+else
-+  
-+               ENABLEMX=1
-+       
-+fi
-+
-+if test $ENABLEMX -eq 0; then
-+       { echo "$as_me:$LINENO: result: disabled" >&5
-+echo "${ECHO_T}disabled" >&6; }
-+elif test ! \( -f ${MXPATH}/include/myriexpress.h -a \
-+              -f ${MXPATH}/include/mx_kernel_api.h -a \
-+              -f ${MXPATH}/include/mx_pin.h \); then
-+       { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+       case $ENABLEMX in
-+       1) ;;
-+       2) { { echo "$as_me:$LINENO: error: Myrinet MX kernel headers not present" >&5
-+echo "$as_me: error: Myrinet MX kernel headers not present" >&2;}
-+   { (exit 1); exit 1; }; };;
-+       3) { { echo "$as_me:$LINENO: error: bad --with-mx path" >&5
-+echo "$as_me: error: bad --with-mx path" >&2;}
-+   { (exit 1); exit 1; }; };;
-+       *) { { echo "$as_me:$LINENO: error: internal error" >&5
-+echo "$as_me: error: internal error" >&2;}
-+   { (exit 1); exit 1; }; };;
-+       esac
-+else
-+       MXCPPFLAGS="-I$MXPATH/include"
-+       EXTRA_KCFLAGS_save="$EXTRA_KCFLAGS"
-+       EXTRA_KCFLAGS="$EXTRA_KCFLAGS $MXCPPFLAGS"
-+       MXLIBS="-L$MXPATH/lib"
-+       cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+               #define MX_KERNEL 1
-+               #include <mx_extensions.h>
-+               #include <myriexpress.h>
-+       
-+int
-+main (void)
-+{
-+
-+               mx_endpoint_t   end;
-+               mx_status_t     status;
-+               mx_request_t    request;
-+               int             result;
-+
-+               mx_init();
-+               mx_open_endpoint(MX_ANY_NIC, MX_ANY_ENDPOINT, 0, NULL, 0, &end);
-+	       mx_register_unexp_handler(end, (mx_unexp_handler_t) NULL, NULL);
-+               mx_wait_any(end, MX_INFINITE, 0LL, 0LL, &status, &result);
-+               mx_iconnect(end, 0LL, 0, 0, 0, NULL, &request);
-+               return 0;
-+       
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+               { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+               MXLND="mxlnd"
-+       
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+               { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+               case $ENABLEMX in
-+               1) ;;
-+               2) { { echo "$as_me:$LINENO: error: can't compile with Myrinet MX kernel headers" >&5
-+echo "$as_me: error: can't compile with Myrinet MX kernel headers" >&2;}
-+   { (exit 1); exit 1; }; };;
-+               3) { { echo "$as_me:$LINENO: error: can't compile with Myrinet MX headers under $MXPATH" >&5
-+echo "$as_me: error: can't compile with Myrinet MX headers under $MXPATH" >&2;}
-+   { (exit 1); exit 1; }; };;
-+               *) { { echo "$as_me:$LINENO: error: internal error" >&5
-+echo "$as_me: error: internal error" >&2;}
-+   { (exit 1); exit 1; }; };;
-+               esac
-+               MXLND=""
-+               MXCPPFLAGS=""
-+       
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+       EXTRA_KCFLAGS="$EXTRA_KCFLAGS_save"
-+fi
-+
-+
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking if struct page has a list field" >&5
-+echo $ECHO_N "checking if struct page has a list field... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/mm.h>
-+
-+int
-+main (void)
-+{
-+
-+	struct page page;
-+	&page.list;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_PAGE_LIST 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+{ echo "$as_me:$LINENO: checking if task_struct has a sighand field" >&5
-+echo $ECHO_N "checking if task_struct has a sighand field... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/sched.h>
-+
-+int
-+main (void)
-+{
-+
-+	struct task_struct p;
-+	p.sighand = NULL;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_RH_2_4_20 1
-+_ACEOF
-+
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with symbol show_task exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol show_task exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]show_task[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in kernel/ksyms.c kernel/sched.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(show_task\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SHOW_TASK 1
-+_ACEOF
-+
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SHOW_TASK 1
-+_ACEOF
-+
-+
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: checking kernel __u64 is long long type" >&5
-+echo $ECHO_N "checking kernel __u64 is long long type... $ECHO_C" >&6; }
-+tmp_flags="$EXTRA_KCFLAGS"
-+EXTRA_KCFLAGS="$EXTRA_KCFLAGS -Werror"
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/types.h>
-+	#include <linux/stddef.h>
-+
-+int
-+main (void)
-+{
-+
-+	unsigned long long *data1;
-+	__u64 *data2 = NULL;
-+		
-+	data1 = data2;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_KERN__U64_LONG_LONG 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+EXTRA_KCFLAGS="$tmp_flags"
-+
-+{ echo "$as_me:$LINENO: checking ssize_t is signed long type" >&5
-+echo $ECHO_N "checking ssize_t is signed long type... $ECHO_C" >&6; }
-+tmp_flags="$CFLAGS"
-+CFLAGS="$CFLAGS -Werror"
-+cat >conftest.$ac_ext <<_ACEOF
-+
-+	#include <linux/types.h>
-+	#include <linux/stddef.h>
-+	int main(void) {
-+		long *data1;
-+		ssize_t *data2 = NULL;
-+		
-+		data1 = data2;
-+		return 0;
-+	}
-+
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SSIZE_T_LONG 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+CFLAGS="$tmp_flags"
-+
-+{ echo "$as_me:$LINENO: checking size_t is unsigned long type" >&5
-+echo $ECHO_N "checking size_t is unsigned long type... $ECHO_C" >&6; }
-+tmp_flags="$CFLAGS"
-+CFLAGS="$CFLAGS -Werror"
-+cat >conftest.$ac_ext <<_ACEOF
-+
-+	#include <linux/types.h>
-+	#include <linux/stddef.h>
-+	int main(void) {
-+		unsigned long *data1;
-+		size_t *data2 = NULL;
-+		
-+		data1 = data2;
-+		return 0;
-+	}
-+
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SIZE_T_LONG 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+CFLAGS="$tmp_flags"
-+
-+{ echo "$as_me:$LINENO: checking __le16 and __le32 types are defined" >&5
-+echo $ECHO_N "checking __le16 and __le32 types are defined... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/types.h>
-+
-+int
-+main (void)
-+{
-+
-+	__le16 a;
-+	__le32 b;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LE_TYPES 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+{ echo "$as_me:$LINENO: checking if task_struct has a rcu field" >&5
-+echo $ECHO_N "checking if task_struct has a rcu field... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/sched.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct task_struct tsk;
-+
-+        tsk.rcu.next = NULL;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_TASK_RCU 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+# 2.6.18
-+{ echo "$as_me:$LINENO: checking if Linux was built with symbol tasklist_lock exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol tasklist_lock exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]tasklist_lock[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in kernel/fork.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(tasklist_lock\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_TASKLIST_LOCK 1
-+_ACEOF
-+
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_TASKLIST_LOCK 1
-+_ACEOF
-+
-+
-+fi
-+
-+
-+# 2.6.19
-+{ echo "$as_me:$LINENO: checking kmem_cache_destroy(cachep) return int" >&5
-+echo $ECHO_N "checking kmem_cache_destroy(cachep) return int... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/slab.h>
-+
-+int
-+main (void)
-+{
-+
-+	int i = kmem_cache_destroy(NULL);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_KMEM_CACHE_DESTROY_INT 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+{ echo "$as_me:$LINENO: checking panic_notifier_list is atomic" >&5
-+echo $ECHO_N "checking panic_notifier_list is atomic... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/notifier.h>
-+	#include <linux/kernel.h>
-+
-+int
-+main (void)
-+{
-+
-+	struct atomic_notifier_head panic_notifier_list;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_ATOMIC_PANIC_NOTIFIER 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+# 2.6.20
-+{ echo "$as_me:$LINENO: checking check INIT_WORK want 3 args" >&5
-+echo $ECHO_N "checking check INIT_WORK want 3 args... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/workqueue.h>
-+
-+int
-+main (void)
-+{
-+
-+	struct work_struct work;
-+
-+	INIT_WORK(&work, NULL, NULL);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_3ARGS_INIT_WORK 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+# 2.6.21
-+{ echo "$as_me:$LINENO: checking check register_sysctl_table want 2 args" >&5
-+echo $ECHO_N "checking check register_sysctl_table want 2 args... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/sysctl.h>
-+
-+int
-+main (void)
-+{
-+
-+	return register_sysctl_table(NULL,0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_2ARGS_REGISTER_SYSCTL 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+{ echo "$as_me:$LINENO: checking check kernel has struct kmem_cache" >&5
-+echo $ECHO_N "checking check kernel has struct kmem_cache... $ECHO_C" >&6; }
-+tmp_flags="$EXTRA_KCFLAGS"
-+EXTRA_KCFLAGS="-Werror"
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/slab.h>
-+        typedef struct kmem_cache cache_t;
-+
-+int
-+main (void)
-+{
-+
-+	cache_t *cachep = NULL;
-+
-+	kmem_cache_alloc(cachep, 0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_KMEM_CACHE 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+EXTRA_KCFLAGS="$tmp_flags"
-+
-+# 2.6.23
-+{ echo "$as_me:$LINENO: checking check kmem_cache_create has dtor argument" >&5
-+echo $ECHO_N "checking check kmem_cache_create has dtor argument... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/slab.h>
-+
-+int
-+main (void)
-+{
-+
-+	kmem_cache_create(NULL, 0, 0, 0, NULL, NULL);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_KMEM_CACHE_CREATE_DTOR 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+# 2.6.24
-+{ echo "$as_me:$LINENO: checking for CTL_UNNUMBERED" >&5
-+echo $ECHO_N "checking for CTL_UNNUMBERED... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/sysctl.h>
-+
-+int
-+main (void)
-+{
-+
-+	#ifndef CTL_UNNUMBERED
-+	#error CTL_UNNUMBERED not exist in kernel
-+	#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SYSCTL_UNNUMBERED 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+{ echo "$as_me:$LINENO: checking for exist sg_set_page" >&5
-+echo $ECHO_N "checking for exist sg_set_page... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <asm/types.h>
-+        #include <linux/scatterlist.h>
-+
-+int
-+main (void)
-+{
-+
-+	sg_set_page(NULL,NULL,0,0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SCATTERLIST_SETPAGE 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+# 2.6.26
-+{ echo "$as_me:$LINENO: checking atomic sem.count" >&5
-+echo $ECHO_N "checking atomic sem.count... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <asm/semaphore.h>
-+
-+int
-+main (void)
-+{
-+
-+	struct semaphore s;
-+	
-+	atomic_read(&s.count);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SEM_COUNT_ATOMIC 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+# 2.6.27
-+{ echo "$as_me:$LINENO: checking sock_map_fd have second argument" >&5
-+echo $ECHO_N "checking sock_map_fd have second argument... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/net.h>
-+
-+int
-+main (void)
-+{
-+
-+        sock_map_fd(NULL, 0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SOCK_MAP_FD_2ARG 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with symbol dump_trace exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol dump_trace exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]dump_trace[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in kernel/ksyms.c arch/${LINUX_ARCH%_64}/kernel/traps_64.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(dump_trace\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+	tmp_flags="$EXTRA_KCFLAGS"
-+	EXTRA_KCFLAGS="-Werror"
-+	{ echo "$as_me:$LINENO: checking whether we can really use dump_trace" >&5
-+echo $ECHO_N "checking whether we can really use dump_trace... $ECHO_C" >&6; }
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		struct task_struct;
-+		struct pt_regs;
-+		#include <asm/stacktrace.h>
-+	
-+int
-+main (void)
-+{
-+
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_DUMP_TRACE 1
-+_ACEOF
-+
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+	{ echo "$as_me:$LINENO: checking whether print_trace_address has reliable argument" >&5
-+echo $ECHO_N "checking whether print_trace_address has reliable argument... $ECHO_C" >&6; }
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		struct task_struct;
-+		struct pt_regs;
-+		void print_addr(void *data, unsigned long addr, int reliable);
-+		#include <asm/stacktrace.h>
-+	
-+int
-+main (void)
-+{
-+
-+		struct stacktrace_ops ops;
-+
-+		ops.address = print_addr;
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_TRACE_ADDRESS_RELIABLE 1
-+_ACEOF
-+
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+EXTRA_KCFLAGS="$tmp_flags"
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+	tmp_flags="$EXTRA_KCFLAGS"
-+	EXTRA_KCFLAGS="-Werror"
-+	{ echo "$as_me:$LINENO: checking whether we can really use dump_trace" >&5
-+echo $ECHO_N "checking whether we can really use dump_trace... $ECHO_C" >&6; }
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		struct task_struct;
-+		struct pt_regs;
-+		#include <asm/stacktrace.h>
-+	
-+int
-+main (void)
-+{
-+
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_DUMP_TRACE 1
-+_ACEOF
-+
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+	{ echo "$as_me:$LINENO: checking whether print_trace_address has reliable argument" >&5
-+echo $ECHO_N "checking whether print_trace_address has reliable argument... $ECHO_C" >&6; }
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		struct task_struct;
-+		struct pt_regs;
-+		void print_addr(void *data, unsigned long addr, int reliable);
-+		#include <asm/stacktrace.h>
-+	
-+int
-+main (void)
-+{
-+
-+		struct stacktrace_ops ops;
-+
-+		ops.address = print_addr;
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_TRACE_ADDRESS_RELIABLE 1
-+_ACEOF
-+
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+EXTRA_KCFLAGS="$tmp_flags"
-+
-+fi
-+
-+
-+as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/cred.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX/include/linux/cred.h" >&5
-+echo $ECHO_N "checking for $LINUX/include/linux/cred.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX/include/linux/cred.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LINUX_CRED_H 1
-+_ACEOF
-+
-+
-+else
-+  
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+
-+
-+#2.6.29
-+{ echo "$as_me:$LINENO: checking if kernel has struct cred" >&5
-+echo $ECHO_N "checking if kernel has struct cred... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/sched.h>
-+
-+int
-+main (void)
-+{
-+
-+	struct task_struct *tsk = NULL;
-+	tsk->real_cred = NULL;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_STRUCT_CRED 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+# 2.6.30
-+{ echo "$as_me:$LINENO: checking if kernel defines unshare_fs_struct()" >&5
-+echo $ECHO_N "checking if kernel defines unshare_fs_struct()... $ECHO_C" >&6; }
-+tmp_flags="$EXTRA_KCFLAGS"
-+EXTRA_KCFLAGS="-Werror"
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/sched.h>
-+	#include <linux/fs_struct.h>
-+
-+int
-+main (void)
-+{
-+
-+	unshare_fs_struct();
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_UNSHARE_FS_STRUCT 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+EXTRA_KCFLAGS="$tmp_flags"
-+
-+
-+			as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/lustre_version.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX/include/linux/lustre_version.h" >&5
-+echo $ECHO_N "checking for $LINUX/include/linux/lustre_version.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX/include/linux/lustre_version.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  
-+	rm -f "$LUSTRE/include/linux/lustre_version.h"
-+
-+else
-+  
-+	touch "$LUSTRE/include/linux/lustre_version.h"
-+	if test x$enable_server = xyes ; then
-+        	{ echo "$as_me:$LINENO: WARNING: Unpatched kernel detected." >&5
-+echo "$as_me: WARNING: Unpatched kernel detected." >&2;}
-+        	{ echo "$as_me:$LINENO: WARNING: Lustre servers cannot be built with an unpatched kernel;" >&5
-+echo "$as_me: WARNING: Lustre servers cannot be built with an unpatched kernel;" >&2;}
-+        	{ echo "$as_me:$LINENO: WARNING: disabling server build" >&5
-+echo "$as_me: WARNING: disabling server build" >&2;}
-+        	enable_server='no'
-+	fi
-+
-+fi
-+
-+	if test x$enable_server = xyes ; then
-+		if test x$RHEL_KERNEL = xyes -a x$LINUXRELEASE != x${LINUXRELEASE##2.6.9} ; then
-+        		{ echo "$as_me:$LINENO: WARNING: Lustre server has been disabled with rhel4 kernel;" >&5
-+echo "$as_me: WARNING: Lustre server has been disabled with rhel4 kernel;" >&2;}
-+        		{ echo "$as_me:$LINENO: WARNING: disabling server build" >&5
-+echo "$as_me: WARNING: disabling server build" >&2;}
-+        		enable_server='no'
-+		fi
-+		if test x$SUSE_KERNEL = xyes -a x$LINUXRELEASE != x${LINUXRELEASE##2.6.5} ; then
-+        		{ echo "$as_me:$LINENO: WARNING: Lustre server has been disabled with sles9 kernel;" >&5
-+echo "$as_me: WARNING: Lustre server has been disabled with sles9 kernel;" >&2;}
-+        		{ echo "$as_me:$LINENO: WARNING: disabling server build" >&5
-+echo "$as_me: WARNING: disabling server build" >&2;}
-+			enable_server='no'
-+		fi
-+	fi
-+
-+          if test x$enable_server = xyes ; then
-+              { echo "$as_me:$LINENO: checking if kernel has new dev_set_rdonly" >&5
-+echo $ECHO_N "checking if kernel has new dev_set_rdonly... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+        #include <linux/blkdev.h>
-+
-+int
-+main (void)
-+{
-+
-+        #ifndef HAVE_CLEAR_RDONLY_ON_PUT
-+        #error needs to be patched by lustre kernel patches from Lustre version 1.4.3 or above.
-+        #endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_DEV_SET_RDONLY 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { { echo "$as_me:$LINENO: error: no, Linux kernel source needs to be patches by lustre 
-+kernel patches from Lustre version 1.4.3 or above." >&5
-+echo "$as_me: error: no, Linux kernel source needs to be patches by lustre 
-+kernel patches from Lustre version 1.4.3 or above." >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+              
-+BACKINGFS="ldiskfs"
-+
-+if test x$with_ldiskfs = xno ; then
-+	if test x$enable_server = xyes ; then
-+		{ { echo "$as_me:$LINENO: error: ldiskfs is required for 2.6-based servers." >&5
-+echo "$as_me: error: ldiskfs is required for 2.6-based servers." >&2;}
-+   { (exit 1); exit 1; }; }
-+	fi
-+else
-+	# ldiskfs is enabled
-+	
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_LDISKFS_FS_MODULE 1
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_LDISKFS_FS_XATTR 1
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_LDISKFS_FS_POSIX_ACL 1
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_LDISKFS_FS_SECURITY 1
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_LDISKFSDEV_FS_POSIX_ACL 1
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_LDISKFSDEV_FS_XATTR 1
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_LDISKFSDEV_FS_SECURITY 1
-+_ACEOF
-+
-+
-+fi #ldiskfs
-+
-+{ echo "$as_me:$LINENO: checking which backing filesystem to use" >&5
-+echo $ECHO_N "checking which backing filesystem to use... $ECHO_C" >&6; }
-+{ echo "$as_me:$LINENO: result: $BACKINGFS" >&5
-+echo "${ECHO_T}$BACKINGFS" >&6; }
-+
-+
-+              { echo "$as_me:$LINENO: checking stack size big than 8k" >&5
-+echo $ECHO_N "checking stack size big than 8k... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/thread_info.h>
-+
-+int
-+main (void)
-+{
-+
-+        #if THREAD_SIZE < 8192
-+        #error "stack size < 8192"
-+        #endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { { echo "$as_me:$LINENO: error: Lustre requires that Linux is configured with at least a 8KB stack." >&5
-+echo "$as_me: error: Lustre requires that Linux is configured with at least a 8KB stack." >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          fi
-+          { echo "$as_me:$LINENO: checking whether to enable pinger support" >&5
-+echo $ECHO_N "checking whether to enable pinger support... $ECHO_C" >&6; }
-+# Check whether --enable-pinger was given.
-+if test "${enable_pinger+set}" = set; then
-+  enableval=$enable_pinger; 
-+else
-+  enable_pinger='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_pinger" >&5
-+echo "${ECHO_T}$enable_pinger" >&6; }
-+if test x$enable_pinger != xno ; then
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define ENABLE_PINGER 1
-+_ACEOF
-+
-+fi
-+
-+          { echo "$as_me:$LINENO: checking whether to enable data checksum support" >&5
-+echo $ECHO_N "checking whether to enable data checksum support... $ECHO_C" >&6; }
-+# Check whether --enable-checksum was given.
-+if test "${enable_checksum+set}" = set; then
-+  enableval=$enable_checksum; 
-+else
-+  enable_checksum='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_checksum" >&5
-+echo "${ECHO_T}$enable_checksum" >&6; }
-+if test x$enable_checksum != xno ; then
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define ENABLE_CHECKSUM 1
-+_ACEOF
-+
-+fi
-+
-+          { echo "$as_me:$LINENO: checking whether to enable liblustre recovery support" >&5
-+echo $ECHO_N "checking whether to enable liblustre recovery support... $ECHO_C" >&6; }
-+# Check whether --enable-liblustre-recovery was given.
-+if test "${enable_liblustre_recovery+set}" = set; then
-+  enableval=$enable_liblustre_recovery; 
-+else
-+  enable_liblustre_recovery='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_liblustre_recovery" >&5
-+echo "${ECHO_T}$enable_liblustre_recovery" >&6; }
-+if test x$enable_liblustre_recovery != xno ; then
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define ENABLE_LIBLUSTRE_RECOVERY 1
-+_ACEOF
-+
-+fi
-+
-+          { echo "$as_me:$LINENO: checking whether to enable a write with the health check" >&5
-+echo $ECHO_N "checking whether to enable a write with the health check... $ECHO_C" >&6; }
-+# Check whether --enable-health-write was given.
-+if test "${enable_health_write+set}" = set; then
-+  enableval=$enable_health_write; 
-+else
-+  enable_health_write='no'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_health_write" >&5
-+echo "${ECHO_T}$enable_health_write" >&6; }
-+if test x$enable_health_write == xyes ; then
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define USE_HEALTH_CHECK_WRITE 1
-+_ACEOF
-+
-+fi
-+
-+          { echo "$as_me:$LINENO: checking whether to enable lru self-adjusting" >&5
-+echo $ECHO_N "checking whether to enable lru self-adjusting... $ECHO_C" >&6; }
-+# Check whether --enable-lru_resize was given.
-+if test "${enable_lru_resize+set}" = set; then
-+  enableval=$enable_lru_resize; 
-+else
-+  enable_lru_resize='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_lru_resize" >&5
-+echo "${ECHO_T}$enable_lru_resize" >&6; }
-+if test x$enable_lru_resize != xno; then
-+   
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LRU_RESIZE_SUPPORT 1
-+_ACEOF
-+
-+fi
-+
-+          { echo "$as_me:$LINENO: checking whether to enable ptlrpc adaptive timeouts support" >&5
-+echo $ECHO_N "checking whether to enable ptlrpc adaptive timeouts support... $ECHO_C" >&6; }
-+# Check whether --enable-adaptive_timeouts was given.
-+if test "${enable_adaptive_timeouts+set}" = set; then
-+  enableval=$enable_adaptive_timeouts; 
-+else
-+  enable_adaptive_timeouts='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_adaptive_timeouts" >&5
-+echo "${ECHO_T}$enable_adaptive_timeouts" >&6; }
-+if test x$enable_adaptive_timeouts == xyes; then
-+   
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_AT_SUPPORT 1
-+_ACEOF
-+
-+fi
-+
-+          { echo "$as_me:$LINENO: checking whether to enable delayed recovery support" >&5
-+echo $ECHO_N "checking whether to enable delayed recovery support... $ECHO_C" >&6; }
-+# Check whether --enable-delayed-recovery was given.
-+if test "${enable_delayed_recovery+set}" = set; then
-+  enableval=$enable_delayed_recovery; 
-+else
-+  enable_delayed_recovery='no'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_delayed_recovery" >&5
-+echo "${ECHO_T}$enable_delayed_recovery" >&6; }
-+if test x$enable_delayed_recovery == xyes; then
-+   
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_DELAYED_RECOVERY 1
-+_ACEOF
-+
-+fi
-+
-+          if test x$enable_quota != xno; then
-+    { echo "$as_me:$LINENO: checking if Linux was built with CONFIG_QUOTA" >&5
-+echo $ECHO_N "checking if Linux was built with CONFIG_QUOTA... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/autoconf.h>
-+
-+int
-+main (void)
-+{
-+
-+#ifndef CONFIG_QUOTA
-+#error CONFIG_QUOTA not #defined
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+	enable_quota_module='yes'
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_QUOTA_SUPPORT 1
-+_ACEOF
-+
-+    
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+	enable_quota_module='no'
-+	{ echo "$as_me:$LINENO: WARNING: quota is not enabled because the kernel - lacks quota support" >&5
-+echo "$as_me: WARNING: quota is not enabled because the kernel - lacks quota support" >&2;}
-+    
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+fi
-+
-+
-+          # RHEL4 patches
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol truncate_complete_page exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol truncate_complete_page exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]truncate_complete_page[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in mm/truncate.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(truncate_complete_page\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_TRUNCATE_COMPLETE_PAGE 1
-+_ACEOF
-+
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_TRUNCATE_COMPLETE_PAGE 1
-+_ACEOF
-+
-+
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol truncate_inode_pages_range exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol truncate_inode_pages_range exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]truncate_inode_pages_range[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in mm/truncate.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(truncate_inode_pages_range\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_TRUNCATE_RANGE 1
-+_ACEOF
-+
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_TRUNCATE_RANGE 1
-+_ACEOF
-+
-+
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol d_rehash_cond exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol d_rehash_cond exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]d_rehash_cond[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in fs/dcache.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(d_rehash_cond\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_D_REHASH_COND 1
-+_ACEOF
-+
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_D_REHASH_COND 1
-+_ACEOF
-+
-+
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol __d_rehash exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol __d_rehash exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]__d_rehash[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in fs/dcache.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(__d_rehash\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE___D_REHASH 1
-+_ACEOF
-+
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE___D_REHASH 1
-+_ACEOF
-+
-+
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol d_move_locked exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol d_move_locked exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]d_move_locked[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in fs/dcache.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(d_move_locked\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_D_MOVE_LOCKED 1
-+_ACEOF
-+
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_D_MOVE_LOCKED 1
-+_ACEOF
-+
-+
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol __d_move exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol __d_move exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]__d_move[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in fs/dcache.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(__d_move\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE___D_MOVE 1
-+_ACEOF
-+
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE___D_MOVE 1
-+_ACEOF
-+
-+
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol node_to_cpumask exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol node_to_cpumask exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]node_to_cpumask[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in arch/$LINUX_ARCH/mm/numa.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(node_to_cpumask\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_NODE_TO_CPUMASK 1
-+_ACEOF
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_NODE_TO_CPUMASK 1
-+_ACEOF
-+
-+fi
-+ # x86_64
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol node_to_cpu_mask exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol node_to_cpu_mask exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]node_to_cpu_mask[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in arch/$LINUX_ARCH/kernel/smpboot.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(node_to_cpu_mask\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_NODE_TO_CPUMASK 1
-+_ACEOF
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_NODE_TO_CPUMASK 1
-+_ACEOF
-+
-+fi
-+ # ia64
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol node_2_cpu_mask exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol node_2_cpu_mask exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]node_2_cpu_mask[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in arch/$LINUX_ARCH/kernel/smpboot.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(node_2_cpu_mask\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_NODE_TO_CPUMASK 1
-+_ACEOF
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_NODE_TO_CPUMASK 1
-+_ACEOF
-+
-+fi
-+ # i386
-+          
-+
-+          { echo "$as_me:$LINENO: checking if releasepage has a gfp_t parameter" >&5
-+echo $ECHO_N "checking if releasepage has a gfp_t parameter... $ECHO_C" >&6; }
-+RELEASEPAGE_WITH_GFP="$(grep -c 'releasepage.*gfp_t' $LINUX/include/linux/fs.h)"
-+if test "$RELEASEPAGE_WITH_GFP" != 0 ; then
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_RELEASEPAGE_WITH_GFP 1
-+_ACEOF
-+
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+else
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+          { echo "$as_me:$LINENO: checking if ldiskfs has xattr.h header" >&5
-+echo $ECHO_N "checking if ldiskfs has xattr.h header... $ECHO_C" >&6; }
-+tmp_flags="$EXTRA_KCFLAGS"
-+EXTRA_KCFLAGS="-I$LINUX/fs -I$LDISKFS_DIR -I$LDISKFS_DIR/ldiskfs"
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <ldiskfs/xattr.h>
-+
-+int
-+main (void)
-+{
-+
-+        ldiskfs_xattr_get(NULL, 0, "", NULL, 0);
-+        ldiskfs_xattr_set_handle(NULL, NULL, 0, "", NULL, 0, 0);
-+
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LDISKFS_XATTR_H 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+EXTRA_KCFLAGS="$tmp_flags"
-+
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol grab_cache_page_nowait_gfp exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol grab_cache_page_nowait_gfp exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]grab_cache_page_nowait_gfp[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in mm/filemap.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(grab_cache_page_nowait_gfp\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	{ echo "$as_me:$LINENO: checking if Linux was built with symbol add_to_page_cache_lru exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol add_to_page_cache_lru exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]add_to_page_cache_lru[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in mm/filemap.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(add_to_page_cache_lru\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+        
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+                
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_ADD_TO_PAGE_CACHE_LRU 1
-+_ACEOF
-+
-+        
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+                
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_ADD_TO_PAGE_CACHE_LRU 1
-+_ACEOF
-+
-+        
-+fi
-+
-+        
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_GRAB_CACHE_PAGE_NOWAIT_GFP 1
-+_ACEOF
-+
-+        
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_GRAB_CACHE_PAGE_NOWAIT_GFP 1
-+_ACEOF
-+
-+        
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking if struct statfs has a f_namelen field" >&5
-+echo $ECHO_N "checking if struct statfs has a f_namelen field... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/vfs.h>
-+
-+int
-+main (void)
-+{
-+
-+	struct statfs sfs;
-+	sfs.f_namelen = 1;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_STATFS_NAMELEN 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking for exported filemap_populate" >&5
-+echo $ECHO_N "checking for exported filemap_populate... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <asm/page.h>
-+        #include <linux/mm.h>
-+
-+int
-+main (void)
-+{
-+
-+	filemap_populate(NULL, 0, 0, __pgprot(0), 0, 0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_FILEMAP_POPULATE 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking for d_add_unique" >&5
-+echo $ECHO_N "checking for d_add_unique... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/dcache.h>
-+
-+int
-+main (void)
-+{
-+
-+       d_add_unique(NULL, NULL);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_D_ADD_UNIQUE 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/bit_spinlock.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX/include/linux/bit_spinlock.h" >&5
-+echo $ECHO_N "checking for $LINUX/include/linux/bit_spinlock.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX/include/linux/bit_spinlock.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  
-+	{ echo "$as_me:$LINENO: checking if bit_spinlock.h can be compiled" >&5
-+echo $ECHO_N "checking if bit_spinlock.h can be compiled... $ECHO_C" >&6; }
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <asm/processor.h>
-+		#include <linux/spinlock.h>
-+		#include <linux/bit_spinlock.h>
-+	
-+int
-+main (void)
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_BIT_SPINLOCK_H 1
-+_ACEOF
-+
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+fi
-+
-+
-+          as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/xattr_acl.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX/include/linux/xattr_acl.h" >&5
-+echo $ECHO_N "checking for $LINUX/include/linux/xattr_acl.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX/include/linux/xattr_acl.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  
-+	{ echo "$as_me:$LINENO: checking if xattr_acl.h can be compiled" >&5
-+echo $ECHO_N "checking if xattr_acl.h can be compiled... $ECHO_C" >&6; }
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <linux/xattr_acl.h>
-+	
-+int
-+main (void)
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_XATTR_ACL 1
-+_ACEOF
-+
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking if struct open_intent has a file field" >&5
-+echo $ECHO_N "checking if struct open_intent has a file field... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+        #include <linux/namei.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct open_intent intent;
-+        &intent.file;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_FILE_IN_STRUCT_INTENT 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/posix_acl_xattr.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX/include/linux/posix_acl_xattr.h" >&5
-+echo $ECHO_N "checking for $LINUX/include/linux/posix_acl_xattr.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX/include/linux/posix_acl_xattr.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  
-+        { echo "$as_me:$LINENO: checking if linux/posix_acl_xattr.h can be compiled" >&5
-+echo $ECHO_N "checking if linux/posix_acl_xattr.h can be compiled... $ECHO_C" >&6; }
-+        cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+                #include <linux/posix_acl_xattr.h>
-+        
-+int
-+main (void)
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+                { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+                
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LINUX_POSIX_ACL_XATTR_H 1
-+_ACEOF
-+
-+
-+        
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+                { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+        
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+else
-+  
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol __iget exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol __iget exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]__iget[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in fs/inode.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(__iget\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_EXPORT___IGET 1
-+_ACEOF
-+
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_EXPORT___IGET 1
-+_ACEOF
-+
-+
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking if kernel has MS_FLOCK_LOCK sb flag" >&5
-+echo $ECHO_N "checking if kernel has MS_FLOCK_LOCK sb flag... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        int flags = MS_FLOCK_LOCK;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_MS_FLOCK_LOCK 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if kernel has third arg can_sleep in fs/locks.c: flock_lock_file_wait()" >&5
-+echo $ECHO_N "checking if kernel has third arg can_sleep in fs/locks.c: flock_lock_file_wait()... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        int cansleep;
-+        struct file *file;
-+        struct file_lock *file_lock;
-+        flock_lock_file_wait(file, file_lock, cansleep);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_CAN_SLEEP_ARG 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if struct file_operations has flock field" >&5
-+echo $ECHO_N "checking if struct file_operations has flock field... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct file_operations ll_file_operations_flock;
-+        ll_file_operations_flock.flock = NULL;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_F_OP_FLOCK 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if kernel supports quota_read" >&5
-+echo $ECHO_N "checking if kernel supports quota_read... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+	struct super_operations sp;
-+        void *i = (void *)sp.quota_read;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define KERNEL_SUPPORTS_QUOTA_READ 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if inode_operations->follow_link returns a cookie" >&5
-+echo $ECHO_N "checking if inode_operations->follow_link returns a cookie... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+        #include <linux/namei.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct dentry dentry;
-+        struct nameidata nd;
-+
-+        dentry.d_inode->i_op->put_link(&dentry, &nd, NULL);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_COOKIE_FOLLOW_LINK 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if kernel have RCU supported" >&5
-+echo $ECHO_N "checking if kernel have RCU supported... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/rcupdate.h>
-+
-+int
-+main (void)
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_RCU 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+        { echo "$as_me:$LINENO: checking if call_rcu takes three parameters" >&5
-+echo $ECHO_N "checking if call_rcu takes three parameters... $ECHO_C" >&6; }
-+        cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+                #include <linux/rcupdate.h>
-+        
-+int
-+main (void)
-+{
-+
-+                struct rcu_head rh;
-+                call_rcu(&rh, (void (*)(struct rcu_head *))1, NULL);
-+        
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+                
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_CALL_RCU_PARAM 1
-+_ACEOF
-+
-+                { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+                { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; } 
-+        
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if have struct percpu_counter defined" >&5
-+echo $ECHO_N "checking if have struct percpu_counter defined... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/percpu_counter.h>
-+
-+int
-+main (void)
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_PERCPU_COUNTER 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+        { echo "$as_me:$LINENO: checking if percpu_counter_inc takes the 2nd argument" >&5
-+echo $ECHO_N "checking if percpu_counter_inc takes the 2nd argument... $ECHO_C" >&6; }
-+        cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+                #include <linux/percpu_counter.h>
-+        
-+int
-+main (void)
-+{
-+
-+                struct percpu_counter c;
-+                percpu_counter_init(&c, 0);
-+        
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+                
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_PERCPU_2ND_ARG 1
-+_ACEOF
-+
-+                { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+                { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+        
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          if test x$enable_server = xyes ; then
-+{ echo "$as_me:$LINENO: checking if kernel has 64-bit quota limits support" >&5
-+echo $ECHO_N "checking if kernel has 64-bit quota limits support... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/kernel.h>
-+        #include <linux/fs.h>
-+        #include <linux/quotaio_v2.h>
-+        int versions[] = V2_INITQVERSIONS_R1;
-+        struct v2_disk_dqblk_r1 dqblk_r1;
-+
-+int
-+main (void)
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_QUOTA64 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        tmp_flags="$EXTRA_KCFLAGS"
-+        EXTRA_KCFLAGS="-I $LINUX/fs"
-+        cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+                #include <linux/kernel.h>
-+                #include <linux/fs.h>
-+                #include <quotaio_v2.h>
-+                struct v2r1_disk_dqblk dqblk_r1;
-+        
-+int
-+main (void)
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+                
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_QUOTA64 1
-+_ACEOF
-+
-+                { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+                { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+                { echo "$as_me:$LINENO: WARNING: 4 TB (or larger) block quota limits can only be used with OSTs not larger than 4 TB." >&5
-+echo "$as_me: WARNING: 4 TB (or larger) block quota limits can only be used with OSTs not larger than 4 TB." >&2;}
-+                { echo "$as_me:$LINENO: WARNING: Continuing with limited quota support." >&5
-+echo "$as_me: WARNING: Continuing with limited quota support." >&2;}
-+                { echo "$as_me:$LINENO: WARNING: quotacheck is needed for filesystems with recent quota versions." >&5
-+echo "$as_me: WARNING: quotacheck is needed for filesystems with recent quota versions." >&2;}
-+        
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+        EXTRA_KCFLAGS=$tmp_flags
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+fi
-+
-+          { echo "$as_me:$LINENO: checking if vfs_symlink wants 4 args" >&5
-+echo $ECHO_N "checking if vfs_symlink wants 4 args... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+	struct inode *dir;
-+	struct dentry *dentry;
-+	const char *oldname = NULL;
-+	int mode = 0;
-+
-+	vfs_symlink(dir, dentry, oldname, mode);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_4ARGS_VFS_SYMLINK 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+          # does the kernel have VFS intent patches?
-+          { echo "$as_me:$LINENO: checking if the kernel has the VFS intent patches" >&5
-+echo $ECHO_N "checking if the kernel has the VFS intent patches... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/fs.h>
-+        #include <linux/namei.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct nameidata nd;
-+        struct lookup_intent *it;
-+
-+        it = &nd.intent;
-+        intent_init(it, IT_OPEN);
-+        it->d.lustre.it_disposition = 0;
-+        it->d.lustre.it_data = NULL;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_VFS_INTENT_PATCHES 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+	  # 2.6.5 sles9
-+	  { echo "$as_me:$LINENO: checking if Linux was built with symbol sysctl_vfs_cache_pressure exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol sysctl_vfs_cache_pressure exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]sysctl_vfs_cache_pressure[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in fs/dcache.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(sysctl_vfs_cache_pressure\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SYSCTL_VFS_CACHE_PRESSURE 1
-+_ACEOF
-+
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SYSCTL_VFS_CACHE_PRESSURE 1
-+_ACEOF
-+
-+
-+fi
-+
-+
-+
-+          # 2.6.12
-+          { echo "$as_me:$LINENO: checking mapping->tree_lock is rw_lock" >&5
-+echo $ECHO_N "checking mapping->tree_lock is rw_lock... $ECHO_C" >&6; }
-+tmp_flags="$EXTRA_KCFLAGS"
-+EXTRA_KCFLAGS="-Werror"
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+	struct address_space *map = NULL;
-+
-+	write_lock_irq(&map->tree_lock);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_RW_TREE_LOCK 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+EXTRA_KCFLAGS="$tmp_flags"
-+
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol synchronize_rcu exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol synchronize_rcu exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]synchronize_rcu[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in kernel/rcupdate.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(synchronize_rcu\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SYNCHRONIZE_RCU 1
-+_ACEOF
-+
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SYNCHRONIZE_RCU 1
-+_ACEOF
-+
-+
-+fi
-+
-+
-+
-+          # 2.6.15
-+          { echo "$as_me:$LINENO: checking if inode has i_mutex " >&5
-+echo $ECHO_N "checking if inode has i_mutex ... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/mutex.h>
-+	#include <linux/fs.h>
-+	#undef i_mutex
-+
-+int
-+main (void)
-+{
-+
-+	struct inode i;
-+
-+	mutex_unlock(&i.i_mutex);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_INODE_I_MUTEX 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if kernel has atomic_cmpxchg" >&5
-+echo $ECHO_N "checking if kernel has atomic_cmpxchg... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <asm/atomic.h>
-+
-+int
-+main (void)
-+{
-+
-+        #ifndef atomic_cmpxchg
-+        #error missing atomic_cmpxchg
-+        #endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_ATOMIC_CMPXCHG 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if kernel has atomic_inc_not_zero" >&5
-+echo $ECHO_N "checking if kernel has atomic_inc_not_zero... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <asm/atomic.h>
-+
-+int
-+main (void)
-+{
-+
-+        #ifndef atomic_inc_not_zero
-+        #error missing atomic_inc_not_zero
-+        #endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+      	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_ATOMIC_INC_NOT_ZERO 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+          # 2.6.16
-+          { echo "$as_me:$LINENO: checking If kernel has security plug support" >&5
-+echo $ECHO_N "checking If kernel has security plug support... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct dentry   *dentry;
-+        struct vfsmount *mnt;
-+        struct iattr    *iattr;
-+
-+        notify_change(dentry, mnt, iattr);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SECURITY_PLUG 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+  # for SLES10 SP2
-+
-+          # 2.6.17
-+          { echo "$as_me:$LINENO: checking use dqonoff_mutex" >&5
-+echo $ECHO_N "checking use dqonoff_mutex... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/mutex.h>
-+	#include <linux/fs.h>
-+        #include <linux/quota.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct quota_info dq;
-+
-+        mutex_unlock(&dq.dqonoff_mutex);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_DQUOTOFF_MUTEX 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+          # 2.6.18
-+          { echo "$as_me:$LINENO: checking kernel export nr_pagecache" >&5
-+echo $ECHO_N "checking kernel export nr_pagecache... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/pagemap.h>
-+
-+int
-+main (void)
-+{
-+
-+        return atomic_read(&nr_pagecache);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_NR_PAGECACHE 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking first vfs_statfs parameter is dentry" >&5
-+echo $ECHO_N "checking first vfs_statfs parameter is dentry... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+	int vfs_statfs(struct dentry *, struct kstatfs *);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_STATFS_DENTRY_PARAM 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking vfs_kern_mount exist in kernel" >&5
-+echo $ECHO_N "checking vfs_kern_mount exist in kernel... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/mount.h>
-+
-+int
-+main (void)
-+{
-+
-+        vfs_kern_mount(NULL, 0, NULL, NULL);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_VFS_KERN_MOUNT 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking invalidatepage has return int" >&5
-+echo $ECHO_N "checking invalidatepage has return int... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/buffer_head.h>
-+
-+int
-+main (void)
-+{
-+
-+	int rc = block_invalidatepage(NULL, 0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_INVALIDATEPAGE_RETURN_INT 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if umount_begin needs vfsmount parameter instead of super_block" >&5
-+echo $ECHO_N "checking if umount_begin needs vfsmount parameter instead of super_block... $ECHO_C" >&6; }
-+tmp_flags="$EXTRA_KCFLAGS"
-+EXTRA_KCFLAGS="-Werror"
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/fs.h>
-+
-+	struct vfsmount;
-+	static void cfg_umount_begin (struct vfsmount *v, int flags)
-+	{
-+    		;
-+	}
-+
-+	static struct super_operations cfg_super_operations = {
-+		.umount_begin	= cfg_umount_begin,
-+	};
-+
-+int
-+main (void)
-+{
-+
-+	cfg_super_operations.umount_begin(NULL,0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_UMOUNTBEGIN_VFSMOUNT 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+EXTRA_KCFLAGS="$tmp_flags"
-+
-+          { echo "$as_me:$LINENO: checking if inode has a i_private field" >&5
-+echo $ECHO_N "checking if inode has a i_private field... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+	struct inode i;
-+	i.i_private = NULL; 
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_INODE_IPRIVATE 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol filemap_fdatawrite_range exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol filemap_fdatawrite_range exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]filemap_fdatawrite_range[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in mm/filemap.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(filemap_fdatawrite_range\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_FILEMAP_FDATAWRITE_RANGE 1
-+_ACEOF
-+
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_FILEMAP_FDATAWRITE_RANGE 1
-+_ACEOF
-+
-+
-+fi
-+
-+
-+          if test x$enable_server = xyes ; then
-+                { echo "$as_me:$LINENO: checking if Linux was built with symbol invalidate_mapping_pages exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol invalidate_mapping_pages exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]invalidate_mapping_pages[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in mm/truncate.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(invalidate_mapping_pages\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	{ echo "$as_me:$LINENO: checking if Linux was built with symbol invalidate_inode_pages exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol invalidate_inode_pages exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]invalidate_inode_pages[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in mm/truncate.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(invalidate_inode_pages\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+       { { echo "$as_me:$LINENO: error: no way to invalidate pages" >&5
-+echo "$as_me: error: no way to invalidate pages" >&2;}
-+   { (exit 1); exit 1; }; }
-+  
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+         
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_INVALIDATE_INODE_PAGES 1
-+_ACEOF
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+         
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_INVALIDATE_INODE_PAGES 1
-+_ACEOF
-+
-+fi
-+
-+    
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+         
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_INVALIDATE_MAPPING_PAGES 1
-+_ACEOF
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+         
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_INVALIDATE_MAPPING_PAGES 1
-+_ACEOF
-+
-+fi
-+
-+
-+          fi
-+
-+          #2.6.18 + RHEL5 (fc6)
-+          { echo "$as_me:$LINENO: checking kernel has PG_fs_misc" >&5
-+echo $ECHO_N "checking kernel has PG_fs_misc... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/mm.h>
-+        #include <linux/page-flags.h>
-+
-+int
-+main (void)
-+{
-+
-+        #ifndef PG_fs_misc
-+        #error PG_fs_misc not defined in kernel
-+        #endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_PG_FS_MISC 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking kernel has PageChecked and SetPageChecked" >&5
-+echo $ECHO_N "checking kernel has PageChecked and SetPageChecked... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/autoconf.h>
-+#ifdef HAVE_LINUX_MMTYPES_H
-+        #include <linux/mm_types.h>
-+#endif
-+	#include <linux/page-flags.h>
-+
-+int
-+main (void)
-+{
-+
-+ 	struct page *p;
-+
-+        /* before 2.6.26 this define*/
-+        #ifndef PageChecked	
-+ 	/* 2.6.26 use function instead of define for it */
-+ 	SetPageChecked(p);
-+ 	PageChecked(p);
-+ 	#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_PAGE_CHECKED 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/fiemap.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX/include/linux/fiemap.h" >&5
-+echo $ECHO_N "checking for $LINUX/include/linux/fiemap.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX/include/linux/fiemap.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  
-+        { echo "$as_me:$LINENO: checking if fiemap.h can be compiled" >&5
-+echo $ECHO_N "checking if fiemap.h can be compiled... $ECHO_C" >&6; }
-+        cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+                #include <linux/types.h>
-+                #include <linux/fiemap.h>
-+        
-+int
-+main (void)
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+                { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+                
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LINUX_FIEMAP_H 1
-+_ACEOF
-+
-+        
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+                { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+        
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+fi
-+
-+
-+
-+          # 2.6.19
-+          { echo "$as_me:$LINENO: checking inode has i_blksize field" >&5
-+echo $ECHO_N "checking inode has i_blksize field... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+	struct inode i;
-+	i.i_blksize = 0; 
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_INODE_BLKSIZE 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking check vfs_readdir need 64bit inode number" >&5
-+echo $ECHO_N "checking check vfs_readdir need 64bit inode number... $ECHO_C" >&6; }
-+tmp_flags="$EXTRA_KCFLAGS"
-+EXTRA_KCFLAGS="-Werror"
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/fs.h>
-+	int fillonedir(void * __buf, const char * name, int namlen, loff_t offset,
-+                      u64 ino, unsigned int d_type)
-+	{
-+		return 0;
-+	}
-+
-+int
-+main (void)
-+{
-+
-+	filldir_t filter;
-+
-+	filter = fillonedir;
-+	return 1;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_VFS_READDIR_U64_INO 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+EXTRA_KCFLAGS="$tmp_flags"
-+
-+          { echo "$as_me:$LINENO: checking if file_update_time is exported" >&5
-+echo $ECHO_N "checking if file_update_time is exported... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        file_update_time(NULL);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_FILE_UPDATE_TIME 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking writev in fops" >&5
-+echo $ECHO_N "checking writev in fops... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct file_operations *fops = NULL;
-+        fops->writev = NULL;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_FILE_WRITEV 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking readv in fops" >&5
-+echo $ECHO_N "checking readv in fops... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct file_operations *fops = NULL;
-+        fops->readv = NULL;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_FILE_READV 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+          # 2.6.20
-+          { echo "$as_me:$LINENO: checking kernel has cancel_dirty_page" >&5
-+echo $ECHO_N "checking kernel has cancel_dirty_page... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/mm.h>
-+        #include <linux/page-flags.h>
-+
-+int
-+main (void)
-+{
-+
-+        /* tmp workaround for broken OFED 1.4.1 at SLES10 */
-+        #if defined(CONFIG_SLE_VERSION) && CONFIG_SLE_VERSION == 10 && defined(_BACKPORT_LINUX_MM_H_)
-+        #error badly implementation of cancel_dirty_pages
-+        #endif
-+        cancel_dirty_page(NULL, 0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_CANCEL_DIRTY_PAGE 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+          # raid5-zerocopy patch
-+          { echo "$as_me:$LINENO: checking if kernel have PageConstant defined" >&5
-+echo $ECHO_N "checking if kernel have PageConstant defined... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/mm.h>
-+        #include <linux/page-flags.h>
-+
-+int
-+main (void)
-+{
-+
-+        #ifndef PG_constant
-+        #error "Have no raid5 zcopy patch"
-+        #endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_PAGE_CONSTANT 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; };
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+          # 2.6.22
-+          { echo "$as_me:$LINENO: checking if invalidate_bdev has second argument" >&5
-+echo $ECHO_N "checking if invalidate_bdev has second argument... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/buffer_head.h>
-+
-+int
-+main (void)
-+{
-+
-+        invalidate_bdev(NULL,0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_INVALIDATE_BDEV_2ARG 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if kernel has FS_RENAME_DOES_D_MOVE flag" >&5
-+echo $ECHO_N "checking if kernel has FS_RENAME_DOES_D_MOVE flag... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        int v = FS_RENAME_DOES_D_MOVE;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_FS_RENAME_DOES_D_MOVE 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          # 2.6.23
-+          { echo "$as_me:$LINENO: checking if unregister_blkdev return int" >&5
-+echo $ECHO_N "checking if unregister_blkdev return int... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        int i = unregister_blkdev(0,NULL);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_UNREGISTER_BLKDEV_RETURN_INT 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if kernel has .sendfile" >&5
-+echo $ECHO_N "checking if kernel has .sendfile... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct file_operations file;
-+
-+        file.sendfile = NULL;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_KERNEL_SENDFILE 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if kernel has .splice_read" >&5
-+echo $ECHO_N "checking if kernel has .splice_read... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct file_operations file;
-+
-+        file.splice_read = NULL;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_KERNEL_SPLICE_READ 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/exportfs.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX/include/linux/exportfs.h" >&5
-+echo $ECHO_N "checking for $LINUX/include/linux/exportfs.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX/include/linux/exportfs.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LINUX_EXPORTFS_H 1
-+_ACEOF
-+
-+
-+else
-+  
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking if kernel has .fault in vm_operation_struct" >&5
-+echo $ECHO_N "checking if kernel has .fault in vm_operation_struct... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/mm.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct vm_operations_struct op;
-+
-+        op.fault = NULL;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_VM_OP_FAULT 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol register_shrinker exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol register_shrinker exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]register_shrinker[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in mm/vmscan.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(register_shrinker\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+        { echo "$as_me:$LINENO: checking if kernel using gfp_t for shrinker second paramter" >&5
-+echo $ECHO_N "checking if kernel using gfp_t for shrinker second paramter... $ECHO_C" >&6; }
-+        tmp_flags="$EXTRA_KCFLAGS"
-+        EXTRA_KCFLAGS="-Werror"
-+        cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+                #include <linux/mm.h>
-+        
-+int
-+main (void)
-+{
-+
-+                struct shrinker *scb(int nts, gfp_t mask) {
-+                        return 0;
-+                }
-+                shrinter_t fp = scb;
-+        
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+                { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+                
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define SHRINKER_MASK_T gfp_t
-+_ACEOF
-+
-+        
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+                { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+                
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define SHRINKER_MASK_T unsigned int
-+_ACEOF
-+
-+        
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+        EXTRA_KCFLAGS="$tmp_flags"
-+
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_REGISTER_SHRINKER 1
-+_ACEOF
-+
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_REGISTER_SHRINKER 1
-+_ACEOF
-+
-+
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking if kernel has pde_users member in procfs entry struct" >&5
-+echo $ECHO_N "checking if kernel has pde_users member in procfs entry struct... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/proc_fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct proc_dir_entry pde;
-+
-+        pde.pde_users   = 0;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_PROCFS_USERS 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+          # 2.6.25
-+          { echo "$as_me:$LINENO: checking if kernel have mapping_cap_writeback_dirty" >&5
-+echo $ECHO_N "checking if kernel have mapping_cap_writeback_dirty... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/backing-dev.h>
-+
-+int
-+main (void)
-+{
-+
-+        #ifndef mapping_cap_writeback_dirty
-+        mapping_cap_writeback_dirty(NULL);
-+        #endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_MAPPING_CAP_WRITEBACK_DIRTY 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+          # 2.6.24
-+          as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/mm_types.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX/include/linux/mm_types.h" >&5
-+echo $ECHO_N "checking for $LINUX/include/linux/mm_types.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX/include/linux/mm_types.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LINUX_MMTYPES_H 1
-+_ACEOF
-+
-+
-+else
-+  
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking if kernel has bio_endio with 2 args" >&5
-+echo $ECHO_N "checking if kernel has bio_endio with 2 args... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/bio.h>
-+
-+int
-+main (void)
-+{
-+
-+        bio_endio(NULL, 0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_BIO_ENDIO_2ARG 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if kernel has .fh_to_dentry member in export_operations struct" >&5
-+echo $ECHO_N "checking if kernel has .fh_to_dentry member in export_operations struct... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#ifdef HAVE_LINUX_EXPORTFS_H
-+        #include <linux/exportfs.h>
-+#else
-+        #include <linux/fs.h>
-+#endif
-+
-+int
-+main (void)
-+{
-+
-+        struct export_operations exp;
-+
-+        exp.fh_to_dentry   = NULL;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_FH_TO_DENTRY 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if kernel has deleted member in procfs entry struct" >&5
-+echo $ECHO_N "checking if kernel has deleted member in procfs entry struct... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/proc_fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct proc_dir_entry pde;
-+
-+        pde.deleted   = NULL;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_PROCFS_DELETED 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+          # 2.6.24-19-generic Ubuntu
-+          { echo "$as_me:$LINENO: checking kernel has a remove_suid that takes a struct path" >&5
-+echo $ECHO_N "checking kernel has a remove_suid that takes a struct path... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct path *a_path = NULL;
-+        remove_suid(a_path);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_PATH_REMOVE_SUID 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+          # 2.6.26
-+          { echo "$as_me:$LINENO: checking fs_struct use path structure" >&5
-+echo $ECHO_N "checking fs_struct use path structure... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <asm/atomic.h>
-+        #include <linux/spinlock.h>
-+        #include <linux/fs_struct.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct path path;
-+        struct fs_struct fs;
-+
-+        fs.pwd = path;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_FS_STRUCT_USE_PATH 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+          # 2.6.27
-+          { echo "$as_me:$LINENO: checking inode_operations->permission have two args" >&5
-+echo $ECHO_N "checking inode_operations->permission have two args... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct inode *inode;
-+
-+        inode->i_op->permission(NULL,0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_INODE_PERMISION_2ARGS 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking kernel have file_remove_suid" >&5
-+echo $ECHO_N "checking kernel have file_remove_suid... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        file_remove_suid(NULL);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_FILE_REMOVE_SUID 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking kernel use trylock_page for page lock" >&5
-+echo $ECHO_N "checking kernel use trylock_page for page lock... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/pagemap.h>
-+
-+int
-+main (void)
-+{
-+
-+        trylock_page(NULL);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_TRYLOCK_PAGE 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking mapping->tree_lock is rw_lock" >&5
-+echo $ECHO_N "checking mapping->tree_lock is rw_lock... $ECHO_C" >&6; }
-+tmp_flags="$EXTRA_KCFLAGS"
-+EXTRA_KCFLAGS="-Werror"
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+	struct address_space *map = NULL;
-+
-+	write_lock_irq(&map->tree_lock);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_RW_TREE_LOCK 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+EXTRA_KCFLAGS="$tmp_flags"
-+
-+          { echo "$as_me:$LINENO: checking super_operations has a read_inode field" >&5
-+echo $ECHO_N "checking super_operations has a read_inode field... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct super_operations *sop;
-+        sop->read_inode(NULL);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_READ_INODE_IN_SBOPS 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking if Linux was built with symbol inode_permission exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol inode_permission exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]inode_permission[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in fs/namei.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(inode_permission\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_EXPORT_INODE_PERMISSION 1
-+_ACEOF
-+
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_EXPORT_INODE_PERMISSION 1
-+_ACEOF
-+
-+
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking quota_on needs 5 parameters" >&5
-+echo $ECHO_N "checking quota_on needs 5 parameters... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/quota.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct quotactl_ops *qop;
-+        qop->quota_on(NULL, 0, 0, NULL, 0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_QUOTA_ON_5ARGS 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking quota_off needs 3 parameters" >&5
-+echo $ECHO_N "checking quota_off needs 3 parameters... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/quota.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct quotactl_ops *qop;
-+        qop->quota_off(NULL, 0, 0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_QUOTA_OFF_3ARGS 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking vfs_dq_off is defined" >&5
-+echo $ECHO_N "checking vfs_dq_off is defined... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/quotaops.h>
-+
-+int
-+main (void)
-+{
-+
-+        vfs_dq_off(NULL, 0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_VFS_DQ_OFF 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+          # 2.6.27.15-2 sles11
-+          { echo "$as_me:$LINENO: checking struct bio has a bi_hw_segments field" >&5
-+echo $ECHO_N "checking struct bio has a bi_hw_segments field... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/bio.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct bio io;
-+        io.bi_hw_segments = 0;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_BI_HW_SEGMENTS 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/quotaio_v1.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX/include/linux/quotaio_v1.h" >&5
-+echo $ECHO_N "checking for $LINUX/include/linux/quotaio_v1.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX/include/linux/quotaio_v1.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_QUOTAIO_V1_H 1
-+_ACEOF
-+
-+
-+else
-+  
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+
-+
-+          { echo "$as_me:$LINENO: checking vfs_symlink need 5 parameter" >&5
-+echo $ECHO_N "checking vfs_symlink need 5 parameter... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct inode *dir = NULL;
-+        struct dentry *dentry = NULL;
-+        struct vfsmount *mnt = NULL;
-+        const char * path = NULL;
-+        vfs_symlink(dir, dentry, mnt, path, 0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_VFS_SYMLINK_5ARGS 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking Kernel has sb_any_quota_active" >&5
-+echo $ECHO_N "checking Kernel has sb_any_quota_active... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/quotaops.h>
-+
-+int
-+main (void)
-+{
-+
-+        sb_any_quota_active(NULL);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SB_ANY_QUOTA_ACTIVE 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking Kernel has sb_has_quota_active" >&5
-+echo $ECHO_N "checking Kernel has sb_has_quota_active... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/quotaops.h>
-+
-+int
-+main (void)
-+{
-+
-+        sb_has_quota_active(NULL, 0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SB_HAS_QUOTA_ACTIVE 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+          #2.6.29
-+          { echo "$as_me:$LINENO: checking if kernel has .write_begin/end" >&5
-+echo $ECHO_N "checking if kernel has .write_begin/end... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+#ifdef HAVE_LINUX_MMTYPES_H
-+        #include <linux/mm_types.h>
-+#endif
-+        #include <linux/pagemap.h>
-+
-+int
-+main (void)
-+{
-+
-+        struct address_space_operations aops;
-+        struct page *page;
-+
-+        aops.write_begin = NULL;
-+        aops.write_end = NULL;
-+        page = grab_cache_page_write_begin(NULL, 0, 0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_KERNEL_WRITE_BEGIN_END 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking d_obtain_alias exist in kernel" >&5
-+echo $ECHO_N "checking d_obtain_alias exist in kernel... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/dcache.h>
-+
-+int
-+main (void)
-+{
-+
-+        d_obtain_alias(NULL);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_D_OBTAIN_ALIAS 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking blkdev_put needs 2 parameters" >&5
-+echo $ECHO_N "checking blkdev_put needs 2 parameters... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        blkdev_put(NULL, 0);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_BLKDEV_PUT_2ARGS 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+          { echo "$as_me:$LINENO: checking dentry_open needs 4 parameters" >&5
-+echo $ECHO_N "checking dentry_open needs 4 parameters... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+        #include <linux/fs.h>
-+
-+int
-+main (void)
-+{
-+
-+        dentry_open(NULL, NULL, 0, NULL);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_DENTRY_OPEN_4ARGS 1
-+_ACEOF
-+
-+        { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+			;;
-+		darwin*)
-+			LB_PROG_DARWIN
-+			LIBCFS_PROG_DARWIN
-+			;;
-+		*)
-+			# This is strange - Lustre supports a target we don't
-+			{ { echo "$as_me:$LINENO: error: Modules are not supported on $target_os" >&5
-+echo "$as_me: error: Modules are not supported on $target_os" >&2;}
-+   { (exit 1); exit 1; }; }
-+			;;
-+	esac
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: checking userspace __u64 is long long type" >&5
-+echo $ECHO_N "checking userspace __u64 is long long type... $ECHO_C" >&6; }
-+tmp_flags="$CFLAGS"
-+CFLAGS="$CFLAGS -Werror"
-+cat >conftest.$ac_ext <<_ACEOF
-+
-+	#include <linux/types.h>
-+	#include <linux/stddef.h>
-+	int main(void) {
-+		unsigned long long *data1;
-+		__u64 *data2 = NULL;
-+		
-+		data1 = data2;
-+		return 0;
-+	}
-+
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_USER__U64_LONG_LONG 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+CFLAGS="$tmp_flags"
-+
-+
-+
-+if test x$RHEL_KERNEL = xyes; then
-+	# Check whether --enable-ext4 was given.
-+if test "${enable_ext4+set}" = set; then
-+  enableval=$enable_ext4; 
-+else
-+  
-+			if test x$ldiskfs_is_ext4 = xyes; then
-+				enable_ext4=yes
-+			else
-+				enable_ext4=no
-+			fi
-+		
-+fi
-+
-+else
-+	case $LINUXRELEASE in
-+	# ext4 was in 2.6.22-2.6.26 but not stable enough to use
-+	2.6.20-6*) enable_ext4='no' ;;
-+	*)  if test -f $LINUX/fs/ext4/ext4.h ; then
-+enable_ext4='yes'
-+else
-+enable_ext4='no'
-+fi
-+ ;;
-+	esac
-+fi
-+if test x$enable_ext4 = xyes; then
-+	 ac_configure_args="$ac_configure_args --enable-ext4"
-+fi
-+{ echo "$as_me:$LINENO: checking whether to build ldiskfs based on ext4" >&5
-+echo $ECHO_N "checking whether to build ldiskfs based on ext4... $ECHO_C" >&6; }
-+{ echo "$as_me:$LINENO: result: $enable_ext4" >&5
-+echo "${ECHO_T}$enable_ext4" >&6; }
-+
-+
-+# Check whether --enable-dmu was given.
-+if test "${enable_dmu+set}" = set; then
-+  enableval=$enable_dmu; 
-+else
-+  with_dmu='default'
-+fi
-+
-+{ echo "$as_me:$LINENO: checking whether to enable DMU" >&5
-+echo $ECHO_N "checking whether to enable DMU... $ECHO_C" >&6; }
-+case x$with_dmu in
-+	xyes)
-+		dmu_osd='yes'
-+		;;
-+	xno)
-+		dmu_osd='no'
-+		;;
-+	xdefault)
-+		if test x$enable_uoss = xyes -a x$posix_osd != xyes; then
-+			# Enable the DMU if we're configuring a userspace server
-+			dmu_osd='yes'
-+		else
-+			# Enable the DMU by default on the b_hd_kdmu branch
-+			if test -d $PWD/zfs -a x$linux25$enable_server = xyesyes; then
-+				dmu_osd='yes'
-+			else
-+				dmu_osd='no'
-+			fi
-+		fi
-+		;;
-+	*)
-+		dmu_osd='yes'
-+		;;
-+esac
-+{ echo "$as_me:$LINENO: result: $dmu_osd" >&5
-+echo "${ECHO_T}$dmu_osd" >&6; }
-+if test x$dmu_osd = xyes; then
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define DMU_OSD 1
-+_ACEOF
-+
-+	if test x$enable_uoss = xyes; then
-+		# Userspace DMU
-+		DMU_SRC="$PWD/lustre/zfs-lustre"
-+		
-+		as_lb_File=`echo "lb_cv_file_$DMU_SRC/src/.patched" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $DMU_SRC/src/.patched" >&5
-+echo $ECHO_N "checking for $DMU_SRC/src/.patched... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$DMU_SRC/src/.patched"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  
-+			{ { echo "$as_me:$LINENO: error: A complete (patched) DMU tree was not found." >&5
-+echo "$as_me: error: A complete (patched) DMU tree was not found." >&2;}
-+   { (exit 1); exit 1; }; }
-+		
-+fi
-+
-+		subdirs="$subdirs lustre/zfs-lustre"
-+
-+	else
-+		# Kernel DMU
-+		SPL_SUBDIR="spl"
-+		ZFS_SUBDIR="zfs"
-+
-+		SPL_DIR="$PWD/$SPL_SUBDIR"
-+		ZFS_DIR="$PWD/$ZFS_SUBDIR"
-+
-+		as_lb_File=`echo "lb_cv_file_$SPL_DIR/module/spl/spl-generic.c" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $SPL_DIR/module/spl/spl-generic.c" >&5
-+echo $ECHO_N "checking for $SPL_DIR/module/spl/spl-generic.c... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$SPL_DIR/module/spl/spl-generic.c"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  
-+			{ { echo "$as_me:$LINENO: error: A complete SPL tree was not found in $SPL_DIR." >&5
-+echo "$as_me: error: A complete SPL tree was not found in $SPL_DIR." >&2;}
-+   { (exit 1); exit 1; }; }
-+		
-+fi
-+
-+
-+		as_lb_File=`echo "lb_cv_file_$ZFS_DIR/module/zfs/dmu.c" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $ZFS_DIR/module/zfs/dmu.c" >&5
-+echo $ECHO_N "checking for $ZFS_DIR/module/zfs/dmu.c... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$ZFS_DIR/module/zfs/dmu.c"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  
-+			{ { echo "$as_me:$LINENO: error: A complete kernel DMU tree was not found in $ZFS_DIR." >&5
-+echo "$as_me: error: A complete kernel DMU tree was not found in $ZFS_DIR." >&2;}
-+   { (exit 1); exit 1; }; }
-+		
-+fi
-+
-+
-+		subdirs="$subdirs spl"
-+
-+		ac_configure_args="$ac_configure_args --with-spl=$SPL_DIR"
-+		subdirs="$subdirs zfs"
-+
-+	fi
-+fi
-+
-+
-+
-+
-+
-+
-+if test x$dmu_osd = xyes; then
-+  DMU_OSD_ENABLED_TRUE=
-+  DMU_OSD_ENABLED_FALSE='#'
-+else
-+  DMU_OSD_ENABLED_TRUE='#'
-+  DMU_OSD_ENABLED_FALSE=
-+fi
-+
-+
-+
-+if test x$dmu_osd$enable_uoss = xyesno; then
-+  KDMU_TRUE=
-+  KDMU_FALSE='#'
-+else
-+  KDMU_TRUE='#'
-+  KDMU_FALSE=
-+fi
-+
-+
-+
-+# Check whether --with-sysio was given.
-+if test "${with_sysio+set}" = set; then
-+  withval=$with_sysio; 
-+else
-+  
-+		case $lb_target_os in
-+			linux)
-+				with_sysio='yes'
-+				;;
-+			*)
-+				with_sysio='no'
-+				;;
-+		esac
-+	
-+fi
-+
-+{ echo "$as_me:$LINENO: checking location of libsysio" >&5
-+echo $ECHO_N "checking location of libsysio... $ECHO_C" >&6; }
-+enable_sysio="$with_sysio"
-+case x$with_sysio in
-+	xyes)
-+		{ echo "$as_me:$LINENO: result: internal" >&5
-+echo "${ECHO_T}internal" >&6; }
-+		as_lb_File=`echo "lb_cv_file_$srcdir/libsysio/src/rmdir.c" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $srcdir/libsysio/src/rmdir.c" >&5
-+echo $ECHO_N "checking for $srcdir/libsysio/src/rmdir.c... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$srcdir/libsysio/src/rmdir.c"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  
-+			{ { echo "$as_me:$LINENO: error: A complete internal libsysio was not found." >&5
-+echo "$as_me: error: A complete internal libsysio was not found." >&2;}
-+   { (exit 1); exit 1; }; }
-+		
-+fi
-+
-+		LIBSYSIO_SUBDIR="libsysio"
-+		SYSIO="$PWD/libsysio"
-+		;;
-+	xno)
-+		{ echo "$as_me:$LINENO: result: disabled" >&5
-+echo "${ECHO_T}disabled" >&6; }
-+		;;
-+	*)
-+		{ echo "$as_me:$LINENO: result: $with_sysio" >&5
-+echo "${ECHO_T}$with_sysio" >&6; }
-+		as_lb_File=`echo "lb_cv_file_$with_sysio/lib/libsysio.a" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $with_sysio/lib/libsysio.a" >&5
-+echo $ECHO_N "checking for $with_sysio/lib/libsysio.a... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$with_sysio/lib/libsysio.a"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  
-+			{ { echo "$as_me:$LINENO: error: A complete (built) external libsysio was not found." >&5
-+echo "$as_me: error: A complete (built) external libsysio was not found." >&2;}
-+   { (exit 1); exit 1; }; }
-+		
-+fi
-+
-+		SYSIO=$with_sysio
-+		with_sysio="yes"
-+		;;
-+esac
-+
-+# We have to configure even if we don't build here for make dist to work
-+subdirs="$subdirs libsysio"
-+
-+
-+as_lb_File=`echo "lb_cv_file_$srcdir/snmp/lustre-snmp.c" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $srcdir/snmp/lustre-snmp.c" >&5
-+echo $ECHO_N "checking for $srcdir/snmp/lustre-snmp.c... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$srcdir/snmp/lustre-snmp.c"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  SNMP_DIST_SUBDIR="snmp"
-+fi
-+
-+
-+
-+
-+
-+# Check whether --with-ldiskfs was given.
-+if test "${with_ldiskfs+set}" = set; then
-+  withval=$with_ldiskfs; 
-+else
-+  
-+		if test x$linux25$enable_server = xyesyes ; then
-+			with_ldiskfs=yes
-+		else
-+			with_ldiskfs=no
-+		fi
-+	
-+fi
-+
-+
-+# Check whether --with-ldiskfs-inkernel was given.
-+if test "${with_ldiskfs_inkernel+set}" = set; then
-+  withval=$with_ldiskfs_inkernel; with_ldiskfs=inkernel
-+fi
-+
-+{ echo "$as_me:$LINENO: checking location of ldiskfs" >&5
-+echo $ECHO_N "checking location of ldiskfs... $ECHO_C" >&6; }
-+case x$with_ldiskfs in
-+	xyes)
-+		{ echo "$as_me:$LINENO: result: internal" >&5
-+echo "${ECHO_T}internal" >&6; }
-+		as_lb_File=`echo "lb_cv_file_$srcdir/ldiskfs/lustre-ldiskfs.spec.in" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $srcdir/ldiskfs/lustre-ldiskfs.spec.in" >&5
-+echo $ECHO_N "checking for $srcdir/ldiskfs/lustre-ldiskfs.spec.in... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$srcdir/ldiskfs/lustre-ldiskfs.spec.in"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  
-+			{ { echo "$as_me:$LINENO: error: A complete internal ldiskfs was not found." >&5
-+echo "$as_me: error: A complete internal ldiskfs was not found." >&2;}
-+   { (exit 1); exit 1; }; }
-+		
-+fi
-+
-+		LDISKFS_SUBDIR="ldiskfs"
-+		LDISKFS_DIR="$PWD/ldiskfs"
-+		;;
-+	xno)
-+		{ echo "$as_me:$LINENO: result: disabled" >&5
-+echo "${ECHO_T}disabled" >&6; }
-+		;;
-+	xinkernel)
-+		{ echo "$as_me:$LINENO: result: inkernel" >&5
-+echo "${ECHO_T}inkernel" >&6; }
-+		as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/ldiskfs_fs.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX/include/linux/ldiskfs_fs.h" >&5
-+echo $ECHO_N "checking for $LINUX/include/linux/ldiskfs_fs.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX/include/linux/ldiskfs_fs.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  
-+			{ { echo "$as_me:$LINENO: error: ldiskfs was not found in $LINUX/include/linux/ldiskfs_fs.h" >&5
-+echo "$as_me: error: ldiskfs was not found in $LINUX/include/linux/ldiskfs_fs.h" >&2;}
-+   { (exit 1); exit 1; }; }
-+		
-+fi
-+
-+		;;
-+	*)
-+		{ echo "$as_me:$LINENO: result: $with_ldiskfs" >&5
-+echo "${ECHO_T}$with_ldiskfs" >&6; }
-+		as_lb_File=`echo "lb_cv_file_$with_ldiskfs/ldiskfs/linux/ldiskfs_fs.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $with_ldiskfs/ldiskfs/linux/ldiskfs_fs.h" >&5
-+echo $ECHO_N "checking for $with_ldiskfs/ldiskfs/linux/ldiskfs_fs.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$with_ldiskfs/ldiskfs/linux/ldiskfs_fs.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  
-+			{ { echo "$as_me:$LINENO: error: A complete (built) external ldiskfs was not found." >&5
-+echo "$as_me: error: A complete (built) external ldiskfs was not found." >&2;}
-+   { (exit 1); exit 1; }; }
-+		
-+fi
-+
-+		LDISKFS_DIR=$with_ldiskfs
-+		;;
-+esac
-+
-+
-+
-+
-+if test x$with_ldiskfs != xno; then
-+  LDISKFS_ENABLED_TRUE=
-+  LDISKFS_ENABLED_FALSE='#'
-+else
-+  LDISKFS_ENABLED_TRUE='#'
-+  LDISKFS_ENABLED_FALSE=
-+fi
-+
-+
-+
-+if test x$with_ldiskfs = xinkernel; then
-+  LDISKFS_IN_KERNEL_TRUE=
-+  LDISKFS_IN_KERNEL_FALSE='#'
-+else
-+  LDISKFS_IN_KERNEL_TRUE='#'
-+  LDISKFS_IN_KERNEL_FALSE=
-+fi
-+
-+
-+if test x$enable_ext4 = xyes ; then
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_EXT4_LDISKFS 1
-+_ACEOF
-+
-+fi
-+
-+# We have to configure even if we don't build here for make dist to work
-+subdirs="$subdirs ldiskfs"
-+
-+
-+
-+# Check whether --with-lustre-iokit was given.
-+if test "${with_lustre_iokit+set}" = set; then
-+  withval=$with_lustre_iokit; 
-+else
-+  
-+			with_lustre_iokit='yes'
-+	
-+fi
-+
-+{ echo "$as_me:$LINENO: checking location of lustre-iokit" >&5
-+echo $ECHO_N "checking location of lustre-iokit... $ECHO_C" >&6; }
-+enable_lustre_iokit="$with_lustre_iokit"
-+case x$with_lustre_iokit in
-+	xyes)
-+		{ echo "$as_me:$LINENO: result: internal" >&5
-+echo "${ECHO_T}internal" >&6; }
-+		as_lb_File=`echo "lb_cv_file_$srcdir/lustre-iokit/ior-survey/ior-survey" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $srcdir/lustre-iokit/ior-survey/ior-survey" >&5
-+echo $ECHO_N "checking for $srcdir/lustre-iokit/ior-survey/ior-survey... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$srcdir/lustre-iokit/ior-survey/ior-survey"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  
-+			{ { echo "$as_me:$LINENO: error: A complete internal lustre-iokit was not found." >&5
-+echo "$as_me: error: A complete internal lustre-iokit was not found." >&2;}
-+   { (exit 1); exit 1; }; }
-+		
-+fi
-+
-+		LUSTREIOKIT_SUBDIR="lustre-iokit"
-+		LUSTREIOKIT="$PWD/lustre-iokit"
-+		;;
-+	xno)
-+		{ echo "$as_me:$LINENO: result: disabled" >&5
-+echo "${ECHO_T}disabled" >&6; }
-+		;;
-+	*)
-+		{ echo "$as_me:$LINENO: result: $with_lustre_iokit" >&5
-+echo "${ECHO_T}$with_lustre_iokit" >&6; }
-+		as_lb_File=`echo "lb_cv_file_$with_lustre_iokit/ior-survey/ior_survey" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $with_lustre_iokit/ior-survey/ior_survey" >&5
-+echo $ECHO_N "checking for $with_lustre_iokit/ior-survey/ior_survey... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$with_lustre_iokit/ior-survey/ior_survey"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  
-+			{ { echo "$as_me:$LINENO: error: A complete (built) external lustre-iokit was not found." >&5
-+echo "$as_me: error: A complete (built) external lustre-iokit was not found." >&2;}
-+   { (exit 1); exit 1; }; }
-+		
-+fi
-+
-+		LUSTREIOKIT="$with_lustre_iokit"
-+		with_lustre_iokit="yes"
-+		;;
-+esac
-+
-+# We have to configure even if we don't build here for make dist to work
-+subdirs="$subdirs lustre-iokit"
-+
-+
-+
-+
-+# Check whether --with-ldiskfsprogs was given.
-+if test "${with_ldiskfsprogs+set}" = set; then
-+  withval=$with_ldiskfsprogs; 
-+else
-+  withval='no'
-+fi
-+
-+
-+if test x$withval = xyes ; then
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LDISKFSPROGS 1
-+_ACEOF
-+
-+	E2FSPROGS="ldiskfsprogs"
-+	MKE2FS="mkfs.ldiskfs"
-+	DEBUGFS="debug.ldiskfs"
-+	TUNE2FS="tune.ldiskfs"
-+	E2LABEL="label.ldiskfs"
-+	DUMPE2FS="dump.ldiskfs"
-+	E2FSCK="fsck.ldiskfs"
-+	{ echo "$as_me:$LINENO: result: enabled" >&5
-+echo "${ECHO_T}enabled" >&6; }
-+else
-+	E2FSPROGS="e2fsprogs"
-+	MKE2FS="mke2fs"
-+	DEBUGFS="debugfs"
-+	TUNE2FS="tune2fs"
-+	E2LABEL="e2label"
-+	DUMPE2FS="dumpe2fs"
-+	E2FSCK="e2fsck"
-+	{ echo "$as_me:$LINENO: result: disabled" >&5
-+echo "${ECHO_T}disabled" >&6; }
-+fi
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define E2FSPROGS "$E2FSPROGS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define MKE2FS "$MKE2FS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define DEBUGFS "$DEBUGFS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define TUNE2FS "$TUNE2FS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define E2LABEL "$E2LABEL"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define DUMPE2FS "$DUMPE2FS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define E2FSCK "$E2FSCK"
-+_ACEOF
-+
-+
-+
-+
-+# Check whether --with-ldiskfsprogs was given.
-+if test "${with_ldiskfsprogs+set}" = set; then
-+  withval=$with_ldiskfsprogs; 
-+else
-+  withval='no'
-+fi
-+
-+
-+if test x$withval = xyes ; then
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LDISKFSPROGS 1
-+_ACEOF
-+
-+	E2FSPROGS="ldiskfsprogs"
-+	MKE2FS="mkfs.ldiskfs"
-+	DEBUGFS="debug.ldiskfs"
-+	TUNE2FS="tune.ldiskfs"
-+	E2LABEL="label.ldiskfs"
-+	DUMPE2FS="dump.ldiskfs"
-+	E2FSCK="fsck.ldiskfs"
-+	{ echo "$as_me:$LINENO: result: enabled" >&5
-+echo "${ECHO_T}enabled" >&6; }
-+else
-+	E2FSPROGS="e2fsprogs"
-+	MKE2FS="mke2fs"
-+	DEBUGFS="debugfs"
-+	TUNE2FS="tune2fs"
-+	E2LABEL="e2label"
-+	DUMPE2FS="dumpe2fs"
-+	E2FSCK="e2fsck"
-+	{ echo "$as_me:$LINENO: result: disabled" >&5
-+echo "${ECHO_T}disabled" >&6; }
-+fi
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define E2FSPROGS "$E2FSPROGS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define MKE2FS "$MKE2FS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define DEBUGFS "$DEBUGFS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define TUNE2FS "$TUNE2FS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define E2LABEL "$E2LABEL"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define DUMPE2FS "$DUMPE2FS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define E2FSCK "$E2FSCK"
-+_ACEOF
-+
-+
-+
-+
-+# Check whether --with-ldiskfsprogs was given.
-+if test "${with_ldiskfsprogs+set}" = set; then
-+  withval=$with_ldiskfsprogs; 
-+else
-+  withval='no'
-+fi
-+
-+
-+if test x$withval = xyes ; then
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LDISKFSPROGS 1
-+_ACEOF
-+
-+	E2FSPROGS="ldiskfsprogs"
-+	MKE2FS="mkfs.ldiskfs"
-+	DEBUGFS="debug.ldiskfs"
-+	TUNE2FS="tune.ldiskfs"
-+	E2LABEL="label.ldiskfs"
-+	DUMPE2FS="dump.ldiskfs"
-+	E2FSCK="fsck.ldiskfs"
-+	{ echo "$as_me:$LINENO: result: enabled" >&5
-+echo "${ECHO_T}enabled" >&6; }
-+else
-+	E2FSPROGS="e2fsprogs"
-+	MKE2FS="mke2fs"
-+	DEBUGFS="debugfs"
-+	TUNE2FS="tune2fs"
-+	E2LABEL="e2label"
-+	DUMPE2FS="dumpe2fs"
-+	E2FSCK="e2fsck"
-+	{ echo "$as_me:$LINENO: result: disabled" >&5
-+echo "${ECHO_T}disabled" >&6; }
-+fi
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define E2FSPROGS "$E2FSPROGS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define MKE2FS "$MKE2FS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define DEBUGFS "$DEBUGFS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define TUNE2FS "$TUNE2FS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define E2LABEL "$E2LABEL"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define DUMPE2FS "$DUMPE2FS"
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<_ACEOF
-+@%:@define E2FSCK "$E2FSCK"
-+_ACEOF
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to build Lustre library" >&5
-+echo $ECHO_N "checking whether to build Lustre library... $ECHO_C" >&6; }
-+# Check whether --enable-liblustre was given.
-+if test "${enable_liblustre+set}" = set; then
-+  enableval=$enable_liblustre; 
-+else
-+  enable_liblustre=$with_sysio
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_liblustre" >&5
-+echo "${ECHO_T}$enable_liblustre" >&6; }
-+# only build sysio if liblustre is built
-+with_sysio="$enable_liblustre"
-+
-+{ echo "$as_me:$LINENO: checking whether to build liblustre tests" >&5
-+echo $ECHO_N "checking whether to build liblustre tests... $ECHO_C" >&6; }
-+# Check whether --enable-liblustre-tests was given.
-+if test "${enable_liblustre_tests+set}" = set; then
-+  enableval=$enable_liblustre_tests; 
-+else
-+  enable_liblustre_tests=$enable_tests
-+fi
-+
-+if test x$enable_liblustre != xyes ; then
-+   enable_liblustre_tests='no'
-+fi
-+{ echo "$as_me:$LINENO: result: $enable_liblustre_tests" >&5
-+echo "${ECHO_T}$enable_liblustre_tests" >&6; }
-+
-+{ echo "$as_me:$LINENO: checking whether to enable liblustre acl" >&5
-+echo $ECHO_N "checking whether to enable liblustre acl... $ECHO_C" >&6; }
-+# Check whether --enable-liblustre-acl was given.
-+if test "${enable_liblustre_acl+set}" = set; then
-+  enableval=$enable_liblustre_acl; 
-+else
-+  enable_liblustre_acl=yes
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_liblustre_acl" >&5
-+echo "${ECHO_T}$enable_liblustre_acl" >&6; }
-+if test x$enable_liblustre_acl = xyes ; then
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define LIBLUSTRE_POSIX_ACL 1
-+_ACEOF
-+
-+fi
-+
-+#
-+# --enable-mpitest
-+#
-+# Check whether --enable-mpitests was given.
-+if test "${enable_mpitests+set}" = set; then
-+  enableval=$enable_mpitests; 
-+	 enable_mpitests=yes
-+         case $enableval in
-+         yes)
-+		MPICC_WRAPPER=mpicc
-+		;;
-+         no)
-+		enable_mpitests=no
-+		;;
-+         *)
-+		MPICC_WRAPPER=$enableval
-+                 ;;
-+	 esac
-+	
-+else
-+  
-+	MPICC_WRAPPER=mpicc
-+	enable_mpitests=yes
-+	
-+
-+fi
-+
-+
-+if test x$enable_mpitests != xno; then
-+	{ echo "$as_me:$LINENO: checking whether mpitests can be built" >&5
-+echo $ECHO_N "checking whether mpitests can be built... $ECHO_C" >&6; }
-+	oldcc=$CC
-+	CC=$MPICC_WRAPPER
-+	cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		    #include <mpi.h>
-+	        
-+int
-+main ()
-+{
-+
-+		    int flag;
-+		    MPI_Initialized(&flag);
-+		
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest$ac_exeext &&
-+       $as_test_x conftest$ac_exeext; then
-+  
-+		    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	    
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	
-+		    { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+		    enable_mpitests=no
-+	
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-+      conftest$ac_exeext conftest.$ac_ext
-+	CC=$oldcc
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: Enabling Lustre configure options for libsysio" >&5
-+echo "$as_me: Enabling Lustre configure options for libsysio" >&6;}
-+ac_configure_args="$ac_configure_args --with-lustre-hack --with-sockets"
-+
-+{ echo "$as_me:$LINENO: checking whether to enable pinger support" >&5
-+echo $ECHO_N "checking whether to enable pinger support... $ECHO_C" >&6; }
-+# Check whether --enable-pinger was given.
-+if test "${enable_pinger+set}" = set; then
-+  enableval=$enable_pinger; 
-+else
-+  enable_pinger='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_pinger" >&5
-+echo "${ECHO_T}$enable_pinger" >&6; }
-+if test x$enable_pinger != xno ; then
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define ENABLE_PINGER 1
-+_ACEOF
-+
-+fi
-+
-+{ echo "$as_me:$LINENO: checking whether to enable liblustre recovery support" >&5
-+echo $ECHO_N "checking whether to enable liblustre recovery support... $ECHO_C" >&6; }
-+# Check whether --enable-liblustre-recovery was given.
-+if test "${enable_liblustre_recovery+set}" = set; then
-+  enableval=$enable_liblustre_recovery; 
-+else
-+  enable_liblustre_recovery='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_liblustre_recovery" >&5
-+echo "${ECHO_T}$enable_liblustre_recovery" >&6; }
-+if test x$enable_liblustre_recovery != xno ; then
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define ENABLE_LIBLUSTRE_RECOVERY 1
-+_ACEOF
-+
-+fi
-+
-+
-+
-+# lnet/utils/portals.c
-+
-+
-+
-+
-+
-+for ac_header in netdb.h netinet/tcp.h asm/types.h endian.h sys/ioctl.h
-+do
-+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  { echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+else
-+  # Is the header compilable?
-+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
-+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+@%:@include <$ac_header>
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_header_compiler=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_header_compiler=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
-+echo "${ECHO_T}$ac_header_compiler" >&6; }
-+
-+# Is the header present?
-+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
-+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <$ac_header>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  ac_header_preproc=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  ac_header_preproc=no
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
-+echo "${ECHO_T}$ac_header_preproc" >&6; }
-+
-+# So?  What about this header?
-+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-+  yes:no: )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
-+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
-+    ac_header_preproc=yes
-+    ;;
-+  no:yes:* )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
-+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
-+echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
-+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
-+echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
-+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
-+    ( cat <<\_ASBOX
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+@%:@@%:@ Report this to https://bugzilla.lustre.org/ @%:@@%:@
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+_ASBOX
-+     ) | sed "s/^/$as_me: WARNING:     /" >&2
-+    ;;
-+esac
-+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  eval "$as_ac_Header=\$ac_header_preproc"
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+
-+fi
-+if test `eval echo '${'$as_ac_Header'}'` = yes; then
-+  cat >>confdefs.h <<_ACEOF
-+@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
-+_ACEOF
-+ 
-+fi
-+
-+done
-+
-+
-+
-+
-+for ac_func in gethostbyname socket connect
-+do
-+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $ac_func" >&5
-+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
-+if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
-+   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
-+#define $ac_func innocuous_$ac_func
-+
-+/* System header to define __stub macros and hopefully few prototypes,
-+    which can conflict with char $ac_func (); below.
-+    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-+    <limits.h> exists even on freestanding compilers.  */
-+
-+#ifdef __STDC__
-+# include <limits.h>
-+#else
-+# include <assert.h>
-+#endif
-+
-+#undef $ac_func
-+
-+/* Override any GCC internal prototype to avoid an error.
-+   Use char because int might match the return type of a GCC
-+   builtin and then its argument prototype would still apply.  */
-+#ifdef __cplusplus
-+extern "C"
-+#endif
-+char $ac_func ();
-+/* The GNU C library defines this for functions which it implements
-+    to always fail with ENOSYS.  Some functions are actually named
-+    something starting with __ and the normal name is an alias.  */
-+#if defined __stub_$ac_func || defined __stub___$ac_func
-+choke me
-+#endif
-+
-+int
-+main ()
-+{
-+return $ac_func ();
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest$ac_exeext &&
-+       $as_test_x conftest$ac_exeext; then
-+  eval "$as_ac_var=yes"
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	eval "$as_ac_var=no"
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-+      conftest$ac_exeext conftest.$ac_ext
-+fi
-+ac_res=`eval echo '${'$as_ac_var'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_ac_var'}'` = yes; then
-+  cat >>confdefs.h <<_ACEOF
-+@%:@define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
-+_ACEOF
-+ 
-+fi
-+done
-+
-+
-+# lnet/utils/debug.c
-+
-+for ac_header in linux/version.h
-+do
-+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  { echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+else
-+  # Is the header compilable?
-+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
-+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+@%:@include <$ac_header>
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_header_compiler=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_header_compiler=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
-+echo "${ECHO_T}$ac_header_compiler" >&6; }
-+
-+# Is the header present?
-+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
-+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <$ac_header>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  ac_header_preproc=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  ac_header_preproc=no
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
-+echo "${ECHO_T}$ac_header_preproc" >&6; }
-+
-+# So?  What about this header?
-+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-+  yes:no: )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
-+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
-+    ac_header_preproc=yes
-+    ;;
-+  no:yes:* )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
-+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
-+echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
-+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
-+echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
-+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
-+    ( cat <<\_ASBOX
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+@%:@@%:@ Report this to https://bugzilla.lustre.org/ @%:@@%:@
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+_ASBOX
-+     ) | sed "s/^/$as_me: WARNING:     /" >&2
-+    ;;
-+esac
-+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  eval "$as_ac_Header=\$ac_header_preproc"
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+
-+fi
-+if test `eval echo '${'$as_ac_Header'}'` = yes; then
-+  cat >>confdefs.h <<_ACEOF
-+@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
-+_ACEOF
-+ 
-+fi
-+
-+done
-+
-+
-+{ echo "$as_me:$LINENO: checking for spinlock_t" >&5
-+echo $ECHO_N "checking for spinlock_t... $ECHO_C" >&6; }
-+if test "${ac_cv_type_spinlock_t+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <linux/spinlock.h>
-+
-+typedef spinlock_t ac__type_new_;
-+int
-+main ()
-+{
-+if ((ac__type_new_ *) 0)
-+  return 0;
-+if (sizeof (ac__type_new_))
-+  return 0;
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_type_spinlock_t=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_cv_type_spinlock_t=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_type_spinlock_t" >&5
-+echo "${ECHO_T}$ac_cv_type_spinlock_t" >&6; }
-+if test $ac_cv_type_spinlock_t = yes; then
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_SPINLOCK_T 1
-+_ACEOF
-+
-+fi
-+
-+
-+# lnet/utils/wirecheck.c
-+
-+for ac_func in strnlen
-+do
-+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $ac_func" >&5
-+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
-+if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
-+   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
-+#define $ac_func innocuous_$ac_func
-+
-+/* System header to define __stub macros and hopefully few prototypes,
-+    which can conflict with char $ac_func (); below.
-+    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-+    <limits.h> exists even on freestanding compilers.  */
-+
-+#ifdef __STDC__
-+# include <limits.h>
-+#else
-+# include <assert.h>
-+#endif
-+
-+#undef $ac_func
-+
-+/* Override any GCC internal prototype to avoid an error.
-+   Use char because int might match the return type of a GCC
-+   builtin and then its argument prototype would still apply.  */
-+#ifdef __cplusplus
-+extern "C"
-+#endif
-+char $ac_func ();
-+/* The GNU C library defines this for functions which it implements
-+    to always fail with ENOSYS.  Some functions are actually named
-+    something starting with __ and the normal name is an alias.  */
-+#if defined __stub_$ac_func || defined __stub___$ac_func
-+choke me
-+#endif
-+
-+int
-+main ()
-+{
-+return $ac_func ();
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest$ac_exeext &&
-+       $as_test_x conftest$ac_exeext; then
-+  eval "$as_ac_var=yes"
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	eval "$as_ac_var=no"
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-+      conftest$ac_exeext conftest.$ac_ext
-+fi
-+ac_res=`eval echo '${'$as_ac_var'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_ac_var'}'` = yes; then
-+  cat >>confdefs.h <<_ACEOF
-+@%:@define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
-+_ACEOF
-+ 
-+fi
-+done
-+
-+
-+# --------  Check for required packages  --------------
-+
-+#
-+# LC_CONFIG_READLINE
-+#
-+# Build with readline
-+#
-+{ echo "$as_me:$LINENO: checking whether to enable readline support" >&5
-+echo $ECHO_N "checking whether to enable readline support... $ECHO_C" >&6; }
-+# Check whether --enable-readline was given.
-+if test "${enable_readline+set}" = set; then
-+  enableval=$enable_readline; 
-+else
-+  enable_readline='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_readline" >&5
-+echo "${ECHO_T}$enable_readline" >&6; }
-+
-+# -------- check for readline if enabled ----
-+if test x$enable_readline = xyes ; then
-+	LIBS_save="$LIBS"
-+	LIBS="-lncurses $LIBS"
-+	{ echo "$as_me:$LINENO: checking for readline in -lreadline" >&5
-+echo $ECHO_N "checking for readline in -lreadline... $ECHO_C" >&6; }
-+if test "${ac_cv_lib_readline_readline+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_check_lib_save_LIBS=$LIBS
-+LIBS="-lreadline  $LIBS"
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+/* Override any GCC internal prototype to avoid an error.
-+   Use char because int might match the return type of a GCC
-+   builtin and then its argument prototype would still apply.  */
-+#ifdef __cplusplus
-+extern "C"
-+#endif
-+char readline ();
-+int
-+main ()
-+{
-+return readline ();
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest$ac_exeext &&
-+       $as_test_x conftest$ac_exeext; then
-+  ac_cv_lib_readline_readline=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_cv_lib_readline_readline=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-+      conftest$ac_exeext conftest.$ac_ext
-+LIBS=$ac_check_lib_save_LIBS
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_lib_readline_readline" >&5
-+echo "${ECHO_T}$ac_cv_lib_readline_readline" >&6; }
-+if test $ac_cv_lib_readline_readline = yes; then
-+  
-+	LIBREADLINE="-lreadline -lncurses"
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LIBREADLINE 1
-+_ACEOF
-+
-+	
-+else
-+  
-+	LIBREADLINE=""
-+	
-+fi
-+
-+	LIBS="$LIBS_save"
-+else
-+	LIBREADLINE=""
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: checking if efence debugging support is requested" >&5
-+echo $ECHO_N "checking if efence debugging support is requested... $ECHO_C" >&6; }
-+# Check whether --enable-efence was given.
-+if test "${enable_efence+set}" = set; then
-+  enableval=$enable_efence; 
-+else
-+  enable_efence='no'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_efence" >&5
-+echo "${ECHO_T}$enable_efence" >&6; }
-+if test "$enable_efence" = "yes" ; then
-+	LIBEFENCE="-lefence"
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LIBEFENCE 1
-+_ACEOF
-+
-+else
-+	LIBEFENCE=""
-+fi
-+
-+
-+# -------- enable acceptor libwrap (TCP wrappers) support? -------
-+{ echo "$as_me:$LINENO: checking if libwrap support is requested" >&5
-+echo $ECHO_N "checking if libwrap support is requested... $ECHO_C" >&6; }
-+# Check whether --enable-libwrap was given.
-+if test "${enable_libwrap+set}" = set; then
-+  enableval=$enable_libwrap; case "${enableval}" in
-+		yes) enable_libwrap=yes ;;
-+		no) enable_libwrap=no ;;
-+		*) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-libwrap" >&5
-+echo "$as_me: error: bad value ${enableval} for --enable-libwrap" >&2;}
-+   { (exit 1); exit 1; }; } ;;
-+	esac
-+else
-+  enable_libwrap=no
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_libwrap" >&5
-+echo "${ECHO_T}$enable_libwrap" >&6; }
-+if test x$enable_libwrap = xyes ; then
-+	LIBWRAP="-lwrap"
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LIBWRAP 1
-+_ACEOF
-+
-+else
-+	LIBWRAP=""
-+fi
-+
-+
-+# -------- check for -lpthread support ----
-+{ echo "$as_me:$LINENO: checking whether to use libpthread for lnet library" >&5
-+echo $ECHO_N "checking whether to use libpthread for lnet library... $ECHO_C" >&6; }
-+# Check whether --enable-libpthread was given.
-+if test "${enable_libpthread+set}" = set; then
-+  enableval=$enable_libpthread; 
-+else
-+  enable_libpthread=yes
-+fi
-+
-+if test "$enable_libpthread" = "yes" ; then
-+	{ echo "$as_me:$LINENO: checking for pthread_create in -lpthread" >&5
-+echo $ECHO_N "checking for pthread_create in -lpthread... $ECHO_C" >&6; }
-+if test "${ac_cv_lib_pthread_pthread_create+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_check_lib_save_LIBS=$LIBS
-+LIBS="-lpthread  $LIBS"
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+/* Override any GCC internal prototype to avoid an error.
-+   Use char because int might match the return type of a GCC
-+   builtin and then its argument prototype would still apply.  */
-+#ifdef __cplusplus
-+extern "C"
-+#endif
-+char pthread_create ();
-+int
-+main ()
-+{
-+return pthread_create ();
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest$ac_exeext &&
-+       $as_test_x conftest$ac_exeext; then
-+  ac_cv_lib_pthread_pthread_create=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_cv_lib_pthread_pthread_create=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-+      conftest$ac_exeext conftest.$ac_ext
-+LIBS=$ac_check_lib_save_LIBS
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_create" >&5
-+echo "${ECHO_T}$ac_cv_lib_pthread_pthread_create" >&6; }
-+if test $ac_cv_lib_pthread_pthread_create = yes; then
-+  ENABLE_LIBPTHREAD="yes"
-+else
-+  ENABLE_LIBPTHREAD="no"
-+fi
-+
-+	if test "$ENABLE_LIBPTHREAD" = "yes" ; then
-+		{ echo "$as_me:$LINENO: result: $ENABLE_LIBPTHREAD" >&5
-+echo "${ECHO_T}$ENABLE_LIBPTHREAD" >&6; }
-+		PTHREAD_LIBS="-lpthread"
-+		
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LIBPTHREAD 1
-+_ACEOF
-+
-+	else
-+		PTHREAD_LIBS=""
-+		{ echo "$as_me:$LINENO: result: no libpthread is found" >&5
-+echo "${ECHO_T}no libpthread is found" >&6; }
-+	fi
-+	
-+else
-+	{ echo "$as_me:$LINENO: result: no (disabled explicitly)" >&5
-+echo "${ECHO_T}no (disabled explicitly)" >&6; }
-+	ENABLE_LIBPTHREAD="no"
-+fi
-+
-+
-+# ----------------------------------------
-+# some tests for catamount-like systems
-+# ----------------------------------------
-+# Check whether --enable-sysio_init was given.
-+if test "${enable_sysio_init+set}" = set; then
-+  enableval=$enable_sysio_init; 
-+else
-+  enable_sysio_init=yes
-+fi
-+
-+{ echo "$as_me:$LINENO: checking whether to initialize libsysio" >&5
-+echo $ECHO_N "checking whether to initialize libsysio... $ECHO_C" >&6; }
-+{ echo "$as_me:$LINENO: result: $enable_sysio_init" >&5
-+echo "${ECHO_T}$enable_sysio_init" >&6; }
-+if test x$enable_sysio_init != xno ; then
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define INIT_SYSIO 1
-+_ACEOF
-+
-+fi
-+
-+# Check whether --enable-urandom was given.
-+if test "${enable_urandom+set}" = set; then
-+  enableval=$enable_urandom; 
-+else
-+  enable_urandom=yes
-+fi
-+
-+{ echo "$as_me:$LINENO: checking whether to use /dev/urandom for liblustre" >&5
-+echo $ECHO_N "checking whether to use /dev/urandom for liblustre... $ECHO_C" >&6; }
-+{ echo "$as_me:$LINENO: result: $enable_urandom" >&5
-+echo "${ECHO_T}$enable_urandom" >&6; }
-+if test x$enable_urandom != xno ; then
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define LIBLUSTRE_USE_URANDOM 1
-+_ACEOF
-+
-+fi
-+
-+# -------- check for -lcap support ----
-+if test x$enable_liblustre = xyes ; then
-+	{ echo "$as_me:$LINENO: checking for cap_get_proc in -lcap" >&5
-+echo $ECHO_N "checking for cap_get_proc in -lcap... $ECHO_C" >&6; }
-+if test "${ac_cv_lib_cap_cap_get_proc+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_check_lib_save_LIBS=$LIBS
-+LIBS="-lcap  $LIBS"
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+/* Override any GCC internal prototype to avoid an error.
-+   Use char because int might match the return type of a GCC
-+   builtin and then its argument prototype would still apply.  */
-+#ifdef __cplusplus
-+extern "C"
-+#endif
-+char cap_get_proc ();
-+int
-+main ()
-+{
-+return cap_get_proc ();
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest$ac_exeext &&
-+       $as_test_x conftest$ac_exeext; then
-+  ac_cv_lib_cap_cap_get_proc=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_cv_lib_cap_cap_get_proc=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-+      conftest$ac_exeext conftest.$ac_ext
-+LIBS=$ac_check_lib_save_LIBS
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_lib_cap_cap_get_proc" >&5
-+echo "${ECHO_T}$ac_cv_lib_cap_cap_get_proc" >&6; }
-+if test $ac_cv_lib_cap_cap_get_proc = yes; then
-+  
-+			CAP_LIBS="-lcap"
-+			
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LIBCAP 1
-+_ACEOF
-+
-+		
-+else
-+  
-+			CAP_LIBS=""
-+		
-+fi
-+
-+	
-+
-+fi
-+
-+{ echo "$as_me:$LINENO: checking for non-default maximum LNET payload" >&5
-+echo $ECHO_N "checking for non-default maximum LNET payload... $ECHO_C" >&6; }
-+
-+# Check whether --with-max-payload-mb was given.
-+if test "${with_max_payload_mb+set}" = set; then
-+  withval=$with_max_payload_mb; 
-+		{ echo "$as_me:$LINENO: result: $with_max_payload_mb" >&5
-+echo "${ECHO_T}$with_max_payload_mb" >&6; }
-+	        LNET_MAX_PAYLOAD_MB=$with_max_payload_mb
-+		LNET_MAX_PAYLOAD="(($with_max_payload_mb)<<20)"
-+	
-+else
-+  
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+		LNET_MAX_PAYLOAD="LNET_MTU"
-+	
-+fi
-+
-+        
-+cat >>confdefs.h <<_ACEOF
-+@%:@define LNET_MAX_PAYLOAD $LNET_MAX_PAYLOAD
-+_ACEOF
-+
-+
-+
-+if test -z "$ENABLEPORTALS"; then
-+	{ echo "$as_me:$LINENO: checking for portals" >&5
-+echo $ECHO_N "checking for portals... $ECHO_C" >&6; }
-+
-+# Check whether --with-portals was given.
-+if test "${with_portals+set}" = set; then
-+  withval=$with_portals; 
-+		case $with_portals in
-+			no)     ENABLEPORTALS=0
-+				;;
-+			*)	PORTALS="${with_portals}"
-+				ENABLEPORTALS=1
-+				;;
-+		esac
-+	
-+else
-+  
-+		ENABLEPORTALS=0
-+	
-+fi
-+
-+PTLLNDCPPFLAGS=""
-+if test $ENABLEPORTALS -eq 0; then
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+elif test ! \( -f ${PORTALS}/include/portals/p30.h \); then
-+        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	{ { echo "$as_me:$LINENO: error: bad --with-portals path" >&5
-+echo "$as_me: error: bad --with-portals path" >&2;}
-+   { (exit 1); exit 1; }; }
-+else
-+        { echo "$as_me:$LINENO: result: $PORTALS" >&5
-+echo "${ECHO_T}$PORTALS" >&6; }
-+        PTLLNDCPPFLAGS="-I${PORTALS}/include"
-+fi
-+
-+
-+fi
-+
-+{ echo "$as_me:$LINENO: checking whether to build the userspace portals LND" >&5
-+echo $ECHO_N "checking whether to build the userspace portals LND... $ECHO_C" >&6; }
-+
-+UPTLLND=""
-+if test $ENABLEPORTALS -ne 0; then
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	UPTLLND="ptllnd"
-+else
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to build usocklnd" >&5
-+echo $ECHO_N "checking whether to build usocklnd... $ECHO_C" >&6; }
-+# Check whether --enable-usocklnd was given.
-+if test "${enable_usocklnd+set}" = set; then
-+  enableval=$enable_usocklnd; 
-+else
-+  enable_usocklnd='yes'
-+fi
-+
-+
-+if test x$enable_usocklnd = xyes ; then
-+	if test "$ENABLE_LIBPTHREAD" = "yes" ; then
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+      		USOCKLND="usocklnd"
-+	else
-+		{ echo "$as_me:$LINENO: result: no (libpthread not present or disabled)" >&5
-+echo "${ECHO_T}no (libpthread not present or disabled)" >&6; }
-+		USOCKLND=""
-+	fi
-+else
-+	{ echo "$as_me:$LINENO: result: no (disabled explicitly)" >&5
-+echo "${ECHO_T}no (disabled explicitly)" >&6; }
-+     	USOCKLND=""
-+fi
-+
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking maximum OBD ioctl size" >&5
-+echo $ECHO_N "checking maximum OBD ioctl size... $ECHO_C" >&6; }
-+
-+# Check whether --with-obd-buffer-size was given.
-+if test "${with_obd_buffer_size+set}" = set; then
-+  withval=$with_obd_buffer_size; 
-+		OBD_BUFFER_SIZE=$with_obd_buffer_size
-+	
-+else
-+  
-+		OBD_BUFFER_SIZE=8192
-+	
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $OBD_BUFFER_SIZE bytes" >&5
-+echo "${ECHO_T}$OBD_BUFFER_SIZE bytes" >&6; }
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define OBD_MAX_IOCTL_BUFFER $OBD_BUFFER_SIZE
-+_ACEOF
-+
-+
-+
-+if test $target_cpu == "i686" -o $target_cpu == "x86_64"; then
-+        CFLAGS="$CFLAGS -Werror"
-+fi
-+
-+# include/liblustre.h
-+
-+
-+
-+
-+
-+for ac_header in asm/page.h sys/user.h sys/vfs.h stdint.h blkid/blkid.h
-+do
-+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  { echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+else
-+  # Is the header compilable?
-+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
-+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+@%:@include <$ac_header>
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_header_compiler=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_header_compiler=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
-+echo "${ECHO_T}$ac_header_compiler" >&6; }
-+
-+# Is the header present?
-+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
-+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <$ac_header>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  ac_header_preproc=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  ac_header_preproc=no
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
-+echo "${ECHO_T}$ac_header_preproc" >&6; }
-+
-+# So?  What about this header?
-+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-+  yes:no: )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
-+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
-+    ac_header_preproc=yes
-+    ;;
-+  no:yes:* )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
-+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
-+echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
-+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
-+echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
-+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
-+    ( cat <<\_ASBOX
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+@%:@@%:@ Report this to https://bugzilla.lustre.org/ @%:@@%:@
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+_ASBOX
-+     ) | sed "s/^/$as_me: WARNING:     /" >&2
-+    ;;
-+esac
-+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  eval "$as_ac_Header=\$ac_header_preproc"
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+
-+fi
-+if test `eval echo '${'$as_ac_Header'}'` = yes; then
-+  cat >>confdefs.h <<_ACEOF
-+@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
-+_ACEOF
-+ 
-+fi
-+
-+done
-+
-+
-+# liblustre/llite_lib.h
-+
-+
-+for ac_header in xtio.h file.h
-+do
-+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  { echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+else
-+  # Is the header compilable?
-+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
-+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+@%:@include <$ac_header>
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_header_compiler=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_header_compiler=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
-+echo "${ECHO_T}$ac_header_compiler" >&6; }
-+
-+# Is the header present?
-+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
-+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <$ac_header>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  ac_header_preproc=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  ac_header_preproc=no
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
-+echo "${ECHO_T}$ac_header_preproc" >&6; }
-+
-+# So?  What about this header?
-+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-+  yes:no: )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
-+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
-+    ac_header_preproc=yes
-+    ;;
-+  no:yes:* )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
-+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
-+echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
-+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
-+echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
-+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
-+    ( cat <<\_ASBOX
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+@%:@@%:@ Report this to https://bugzilla.lustre.org/ @%:@@%:@
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+_ASBOX
-+     ) | sed "s/^/$as_me: WARNING:     /" >&2
-+    ;;
-+esac
-+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  eval "$as_ac_Header=\$ac_header_preproc"
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+
-+fi
-+if test `eval echo '${'$as_ac_Header'}'` = yes; then
-+  cat >>confdefs.h <<_ACEOF
-+@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
-+_ACEOF
-+ 
-+fi
-+
-+done
-+
-+
-+# liblustre/dir.c
-+
-+
-+
-+
-+for ac_header in linux/types.h sys/types.h linux/unistd.h unistd.h
-+do
-+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  { echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+else
-+  # Is the header compilable?
-+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
-+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+@%:@include <$ac_header>
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_header_compiler=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_header_compiler=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
-+echo "${ECHO_T}$ac_header_compiler" >&6; }
-+
-+# Is the header present?
-+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
-+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <$ac_header>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  ac_header_preproc=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  ac_header_preproc=no
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
-+echo "${ECHO_T}$ac_header_preproc" >&6; }
-+
-+# So?  What about this header?
-+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-+  yes:no: )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
-+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
-+    ac_header_preproc=yes
-+    ;;
-+  no:yes:* )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
-+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
-+echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
-+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
-+echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
-+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
-+    ( cat <<\_ASBOX
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+@%:@@%:@ Report this to https://bugzilla.lustre.org/ @%:@@%:@
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+_ASBOX
-+     ) | sed "s/^/$as_me: WARNING:     /" >&2
-+    ;;
-+esac
-+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  eval "$as_ac_Header=\$ac_header_preproc"
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+
-+fi
-+if test `eval echo '${'$as_ac_Header'}'` = yes; then
-+  cat >>confdefs.h <<_ACEOF
-+@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
-+_ACEOF
-+ 
-+fi
-+
-+done
-+
-+
-+# liblustre/lutil.c
-+
-+
-+
-+for ac_header in netinet/in.h arpa/inet.h catamount/data.h
-+do
-+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  { echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+else
-+  # Is the header compilable?
-+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
-+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+@%:@include <$ac_header>
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_header_compiler=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_header_compiler=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
-+echo "${ECHO_T}$ac_header_compiler" >&6; }
-+
-+# Is the header present?
-+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
-+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <$ac_header>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  ac_header_preproc=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  ac_header_preproc=no
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
-+echo "${ECHO_T}$ac_header_preproc" >&6; }
-+
-+# So?  What about this header?
-+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-+  yes:no: )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
-+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
-+    ac_header_preproc=yes
-+    ;;
-+  no:yes:* )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
-+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
-+echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
-+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
-+echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
-+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
-+    ( cat <<\_ASBOX
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+@%:@@%:@ Report this to https://bugzilla.lustre.org/ @%:@@%:@
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+_ASBOX
-+     ) | sed "s/^/$as_me: WARNING:     /" >&2
-+    ;;
-+esac
-+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  eval "$as_ac_Header=\$ac_header_preproc"
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+
-+fi
-+if test `eval echo '${'$as_ac_Header'}'` = yes; then
-+  cat >>confdefs.h <<_ACEOF
-+@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
-+_ACEOF
-+ 
-+fi
-+
-+done
-+
-+
-+for ac_func in inet_ntoa
-+do
-+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $ac_func" >&5
-+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
-+if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
-+   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
-+#define $ac_func innocuous_$ac_func
-+
-+/* System header to define __stub macros and hopefully few prototypes,
-+    which can conflict with char $ac_func (); below.
-+    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-+    <limits.h> exists even on freestanding compilers.  */
-+
-+#ifdef __STDC__
-+# include <limits.h>
-+#else
-+# include <assert.h>
-+#endif
-+
-+#undef $ac_func
-+
-+/* Override any GCC internal prototype to avoid an error.
-+   Use char because int might match the return type of a GCC
-+   builtin and then its argument prototype would still apply.  */
-+#ifdef __cplusplus
-+extern "C"
-+#endif
-+char $ac_func ();
-+/* The GNU C library defines this for functions which it implements
-+    to always fail with ENOSYS.  Some functions are actually named
-+    something starting with __ and the normal name is an alias.  */
-+#if defined __stub_$ac_func || defined __stub___$ac_func
-+choke me
-+#endif
-+
-+int
-+main ()
-+{
-+return $ac_func ();
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest$ac_exeext &&
-+       $as_test_x conftest$ac_exeext; then
-+  eval "$as_ac_var=yes"
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	eval "$as_ac_var=no"
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-+      conftest$ac_exeext conftest.$ac_ext
-+fi
-+ac_res=`eval echo '${'$as_ac_var'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_ac_var'}'` = yes; then
-+  cat >>confdefs.h <<_ACEOF
-+@%:@define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
-+_ACEOF
-+ 
-+fi
-+done
-+
-+
-+# libsysio/src/readlink.c
-+{ echo "$as_me:$LINENO: checking if readlink returns ssize_t" >&5
-+echo $ECHO_N "checking if readlink returns ssize_t... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <unistd.h>
-+
-+int
-+main ()
-+{
-+
-+	ssize_t readlink(const char *, char *, size_t);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_POSIX_1003_READLINK 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+
-+
-+# lvfs/prng.c - depends on linux/types.h from liblustre/dir.c
-+
-+for ac_header in linux/random.h
-+do
-+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#ifdef HAVE_LINUX_TYPES_H
-+                  # include <linux/types.h>
-+                  #endif
-+                 
-+
-+@%:@include <$ac_header>
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  eval "$as_ac_Header=yes"
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	eval "$as_ac_Header=no"
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_ac_Header'}'` = yes; then
-+  cat >>confdefs.h <<_ACEOF
-+@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
-+_ACEOF
-+ 
-+fi
-+
-+done
-+
-+
-+# utils/llverfs.c
-+
-+for ac_header in ext2fs/ext2fs.h
-+do
-+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  { echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+else
-+  # Is the header compilable?
-+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
-+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+@%:@include <$ac_header>
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_header_compiler=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_header_compiler=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
-+echo "${ECHO_T}$ac_header_compiler" >&6; }
-+
-+# Is the header present?
-+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
-+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <$ac_header>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  ac_header_preproc=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  ac_header_preproc=no
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
-+echo "${ECHO_T}$ac_header_preproc" >&6; }
-+
-+# So?  What about this header?
-+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-+  yes:no: )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
-+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
-+    ac_header_preproc=yes
-+    ;;
-+  no:yes:* )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
-+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
-+echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
-+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
-+echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
-+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
-+    ( cat <<\_ASBOX
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+@%:@@%:@ Report this to https://bugzilla.lustre.org/ @%:@@%:@
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+_ASBOX
-+     ) | sed "s/^/$as_me: WARNING:     /" >&2
-+    ;;
-+esac
-+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  eval "$as_ac_Header=\$ac_header_preproc"
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+
-+fi
-+if test `eval echo '${'$as_ac_Header'}'` = yes; then
-+  cat >>confdefs.h <<_ACEOF
-+@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
-+_ACEOF
-+ 
-+fi
-+
-+done
-+
-+
-+# check for -lz support
-+ZLIB=""
-+{ echo "$as_me:$LINENO: checking for adler32 in -lz" >&5
-+echo $ECHO_N "checking for adler32 in -lz... $ECHO_C" >&6; }
-+if test "${ac_cv_lib_z_adler32+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_check_lib_save_LIBS=$LIBS
-+LIBS="-lz  $LIBS"
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+/* Override any GCC internal prototype to avoid an error.
-+   Use char because int might match the return type of a GCC
-+   builtin and then its argument prototype would still apply.  */
-+#ifdef __cplusplus
-+extern "C"
-+#endif
-+char adler32 ();
-+int
-+main ()
-+{
-+return adler32 ();
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest$ac_exeext &&
-+       $as_test_x conftest$ac_exeext; then
-+  ac_cv_lib_z_adler32=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_cv_lib_z_adler32=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-+      conftest$ac_exeext conftest.$ac_ext
-+LIBS=$ac_check_lib_save_LIBS
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_lib_z_adler32" >&5
-+echo "${ECHO_T}$ac_cv_lib_z_adler32" >&6; }
-+if test $ac_cv_lib_z_adler32 = yes; then
-+  
-+for ac_header in zlib.h
-+do
-+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  { echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+else
-+  # Is the header compilable?
-+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
-+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+@%:@include <$ac_header>
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_header_compiler=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_header_compiler=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
-+echo "${ECHO_T}$ac_header_compiler" >&6; }
-+
-+# Is the header present?
-+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
-+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <$ac_header>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  ac_header_preproc=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  ac_header_preproc=no
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
-+echo "${ECHO_T}$ac_header_preproc" >&6; }
-+
-+# So?  What about this header?
-+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-+  yes:no: )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
-+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
-+    ac_header_preproc=yes
-+    ;;
-+  no:yes:* )
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
-+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
-+echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
-+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
-+echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
-+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
-+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
-+    ( cat <<\_ASBOX
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+@%:@@%:@ Report this to https://bugzilla.lustre.org/ @%:@@%:@
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+_ASBOX
-+     ) | sed "s/^/$as_me: WARNING:     /" >&2
-+    ;;
-+esac
-+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  eval "$as_ac_Header=\$ac_header_preproc"
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+
-+fi
-+if test `eval echo '${'$as_ac_Header'}'` = yes; then
-+  cat >>confdefs.h <<_ACEOF
-+@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
-+_ACEOF
-+ ZLIB="-lz"
-+                                
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_ADLER 1
-+_ACEOF
-+
-+else
-+  { echo "$as_me:$LINENO: WARNING: No zlib-devel package found,
-+                                             unable to use adler32 checksum" >&5
-+echo "$as_me: WARNING: No zlib-devel package found,
-+                                             unable to use adler32 checksum" >&2;}
-+fi
-+
-+done
-+
-+else
-+  { echo "$as_me:$LINENO: WARNING: No zlib package found, unable to use adler32 checksum" >&5
-+echo "$as_me: WARNING: No zlib package found, unable to use adler32 checksum" >&2;}
-+
-+fi
-+
-+
-+
-+# Super safe df
-+# Check whether --enable-mindf was given.
-+if test "${enable_mindf+set}" = set; then
-+  enableval=$enable_mindf; 
-+fi
-+
-+if test "$enable_mindf" = "yes" ;  then
-+      
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define MIN_DF 1
-+_ACEOF
-+
-+fi
-+
-+# Check whether --enable-fail_alloc was given.
-+if test "${enable_fail_alloc+set}" = set; then
-+  enableval=$enable_fail_alloc; 
-+else
-+  enable_fail_alloc=yes
-+fi
-+
-+{ echo "$as_me:$LINENO: checking whether to randomly failing memory alloc" >&5
-+echo $ECHO_N "checking whether to randomly failing memory alloc... $ECHO_C" >&6; }
-+{ echo "$as_me:$LINENO: result: $enable_fail_alloc" >&5
-+echo "${ECHO_T}$enable_fail_alloc" >&6; }
-+if test x$enable_fail_alloc != xno ; then
-+        
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define RANDOM_FAIL_ALLOC 1
-+_ACEOF
-+
-+fi
-+
-+
-+
-+if test "$SNMP_DIST_SUBDIR" ; then
-+	{ echo "$as_me:$LINENO: checking whether to try to build SNMP support" >&5
-+echo $ECHO_N "checking whether to try to build SNMP support... $ECHO_C" >&6; }
-+# Check whether --enable-snmp was given.
-+if test "${enable_snmp+set}" = set; then
-+  enableval=$enable_snmp; 
-+else
-+  enable_snmp='auto'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_snmp" >&5
-+echo "${ECHO_T}$enable_snmp" >&6; }
-+
-+if test x$enable_snmp != xno ; then
-+	# Extract the first word of "net-snmp-config", so it can be a program name with args.
-+set dummy net-snmp-config; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_NET_SNMP_CONFIG+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$NET_SNMP_CONFIG"; then
-+  ac_cv_prog_NET_SNMP_CONFIG="$NET_SNMP_CONFIG" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_NET_SNMP_CONFIG="net-snmp-config"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+NET_SNMP_CONFIG=$ac_cv_prog_NET_SNMP_CONFIG
-+if test -n "$NET_SNMP_CONFIG"; then
-+  { echo "$as_me:$LINENO: result: $NET_SNMP_CONFIG" >&5
-+echo "${ECHO_T}$NET_SNMP_CONFIG" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+	if test "$NET_SNMP_CONFIG" ; then
-+		NET_SNMP_CFLAGS=$($NET_SNMP_CONFIG --base-cflags)
-+		NET_SNMP_LIBS=$($NET_SNMP_CONFIG --agent-libs)
-+
-+		CPPFLAGS_save="$CPPFLAGS"
-+		CPPFLAGS="$CPPFLAGS $NET_SNMP_CFLAGS"
-+
-+		LIBS_save="$LIBS"
-+		LIBS="$LIBS $NET_SNMP_LIBS"
-+
-+		if test "${ac_cv_header_net_snmp_net_snmp_config_h+set}" = set; then
-+  { echo "$as_me:$LINENO: checking for net-snmp/net-snmp-config.h" >&5
-+echo $ECHO_N "checking for net-snmp/net-snmp-config.h... $ECHO_C" >&6; }
-+if test "${ac_cv_header_net_snmp_net_snmp_config_h+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_header_net_snmp_net_snmp_config_h" >&5
-+echo "${ECHO_T}$ac_cv_header_net_snmp_net_snmp_config_h" >&6; }
-+else
-+  # Is the header compilable?
-+{ echo "$as_me:$LINENO: checking net-snmp/net-snmp-config.h usability" >&5
-+echo $ECHO_N "checking net-snmp/net-snmp-config.h usability... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+@%:@include <net-snmp/net-snmp-config.h>
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_header_compiler=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_header_compiler=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
-+echo "${ECHO_T}$ac_header_compiler" >&6; }
-+
-+# Is the header present?
-+{ echo "$as_me:$LINENO: checking net-snmp/net-snmp-config.h presence" >&5
-+echo $ECHO_N "checking net-snmp/net-snmp-config.h presence... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <net-snmp/net-snmp-config.h>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  ac_header_preproc=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  ac_header_preproc=no
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
-+echo "${ECHO_T}$ac_header_preproc" >&6; }
-+
-+# So?  What about this header?
-+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-+  yes:no: )
-+    { echo "$as_me:$LINENO: WARNING: net-snmp/net-snmp-config.h: accepted by the compiler, rejected by the preprocessor!" >&5
-+echo "$as_me: WARNING: net-snmp/net-snmp-config.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: net-snmp/net-snmp-config.h: proceeding with the compiler's result" >&5
-+echo "$as_me: WARNING: net-snmp/net-snmp-config.h: proceeding with the compiler's result" >&2;}
-+    ac_header_preproc=yes
-+    ;;
-+  no:yes:* )
-+    { echo "$as_me:$LINENO: WARNING: net-snmp/net-snmp-config.h: present but cannot be compiled" >&5
-+echo "$as_me: WARNING: net-snmp/net-snmp-config.h: present but cannot be compiled" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: net-snmp/net-snmp-config.h:     check for missing prerequisite headers?" >&5
-+echo "$as_me: WARNING: net-snmp/net-snmp-config.h:     check for missing prerequisite headers?" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: net-snmp/net-snmp-config.h: see the Autoconf documentation" >&5
-+echo "$as_me: WARNING: net-snmp/net-snmp-config.h: see the Autoconf documentation" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: net-snmp/net-snmp-config.h:     section \"Present But Cannot Be Compiled\"" >&5
-+echo "$as_me: WARNING: net-snmp/net-snmp-config.h:     section \"Present But Cannot Be Compiled\"" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: net-snmp/net-snmp-config.h: proceeding with the preprocessor's result" >&5
-+echo "$as_me: WARNING: net-snmp/net-snmp-config.h: proceeding with the preprocessor's result" >&2;}
-+    { echo "$as_me:$LINENO: WARNING: net-snmp/net-snmp-config.h: in the future, the compiler will take precedence" >&5
-+echo "$as_me: WARNING: net-snmp/net-snmp-config.h: in the future, the compiler will take precedence" >&2;}
-+    ( cat <<\_ASBOX
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+@%:@@%:@ Report this to https://bugzilla.lustre.org/ @%:@@%:@
-+@%:@@%:@ ------------------------------------------- @%:@@%:@
-+_ASBOX
-+     ) | sed "s/^/$as_me: WARNING:     /" >&2
-+    ;;
-+esac
-+{ echo "$as_me:$LINENO: checking for net-snmp/net-snmp-config.h" >&5
-+echo $ECHO_N "checking for net-snmp/net-snmp-config.h... $ECHO_C" >&6; }
-+if test "${ac_cv_header_net_snmp_net_snmp_config_h+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_cv_header_net_snmp_net_snmp_config_h=$ac_header_preproc
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_header_net_snmp_net_snmp_config_h" >&5
-+echo "${ECHO_T}$ac_cv_header_net_snmp_net_snmp_config_h" >&6; }
-+
-+fi
-+if test $ac_cv_header_net_snmp_net_snmp_config_h = yes; then
-+  
-+			{ echo "$as_me:$LINENO: checking for register_mib" >&5
-+echo $ECHO_N "checking for register_mib... $ECHO_C" >&6; }
-+if test "${ac_cv_func_register_mib+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+/* Define register_mib to an innocuous variant, in case <limits.h> declares register_mib.
-+   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
-+#define register_mib innocuous_register_mib
-+
-+/* System header to define __stub macros and hopefully few prototypes,
-+    which can conflict with char register_mib (); below.
-+    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-+    <limits.h> exists even on freestanding compilers.  */
-+
-+#ifdef __STDC__
-+# include <limits.h>
-+#else
-+# include <assert.h>
-+#endif
-+
-+#undef register_mib
-+
-+/* Override any GCC internal prototype to avoid an error.
-+   Use char because int might match the return type of a GCC
-+   builtin and then its argument prototype would still apply.  */
-+#ifdef __cplusplus
-+extern "C"
-+#endif
-+char register_mib ();
-+/* The GNU C library defines this for functions which it implements
-+    to always fail with ENOSYS.  Some functions are actually named
-+    something starting with __ and the normal name is an alias.  */
-+#if defined __stub_register_mib || defined __stub___register_mib
-+choke me
-+#endif
-+
-+int
-+main ()
-+{
-+return register_mib ();
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest$ac_exeext &&
-+       $as_test_x conftest$ac_exeext; then
-+  ac_cv_func_register_mib=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_cv_func_register_mib=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-+      conftest$ac_exeext conftest.$ac_ext
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_func_register_mib" >&5
-+echo "${ECHO_T}$ac_cv_func_register_mib" >&6; }
-+if test $ac_cv_func_register_mib = yes; then
-+  SNMP_SUBDIR="snmp"
-+else
-+  
-+				LIBS="$LIBS -lwrap"
-+				NET_SNMP_LISB="$NET_SNMP_LIBS -lwrap"
-+				# fail autoconf's cache
-+				unset ac_cv_func_register_mib
-+				{ echo "$as_me:$LINENO: checking for register_mib" >&5
-+echo $ECHO_N "checking for register_mib... $ECHO_C" >&6; }
-+if test "${ac_cv_func_register_mib+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+/* Define register_mib to an innocuous variant, in case <limits.h> declares register_mib.
-+   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
-+#define register_mib innocuous_register_mib
-+
-+/* System header to define __stub macros and hopefully few prototypes,
-+    which can conflict with char register_mib (); below.
-+    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-+    <limits.h> exists even on freestanding compilers.  */
-+
-+#ifdef __STDC__
-+# include <limits.h>
-+#else
-+# include <assert.h>
-+#endif
-+
-+#undef register_mib
-+
-+/* Override any GCC internal prototype to avoid an error.
-+   Use char because int might match the return type of a GCC
-+   builtin and then its argument prototype would still apply.  */
-+#ifdef __cplusplus
-+extern "C"
-+#endif
-+char register_mib ();
-+/* The GNU C library defines this for functions which it implements
-+    to always fail with ENOSYS.  Some functions are actually named
-+    something starting with __ and the normal name is an alias.  */
-+#if defined __stub_register_mib || defined __stub___register_mib
-+choke me
-+#endif
-+
-+int
-+main ()
-+{
-+return register_mib ();
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest$ac_exeext &&
-+       $as_test_x conftest$ac_exeext; then
-+  ac_cv_func_register_mib=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_cv_func_register_mib=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-+      conftest$ac_exeext conftest.$ac_ext
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_func_register_mib" >&5
-+echo "${ECHO_T}$ac_cv_func_register_mib" >&6; }
-+if test $ac_cv_func_register_mib = yes; then
-+  SNMP_SUBDIR="snmp"
-+fi
-+
-+			
-+fi
-+
-+		
-+fi
-+
-+
-+
-+		LIBS="$LIBS_save"
-+		CPPFLAGS="$CPPFLAGS_save"
-+	fi
-+	{ echo "$as_me:$LINENO: checking for SNMP support" >&5
-+echo $ECHO_N "checking for SNMP support... $ECHO_C" >&6; }
-+	if test "$SNMP_SUBDIR" ; then
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	else
-+		{ echo "$as_me:$LINENO: result: no (see config.log for errors)" >&5
-+echo "${ECHO_T}no (see config.log for errors)" >&6; }
-+		if test x$enable_snmp = xyes ; then
-+			{ { echo "$as_me:$LINENO: error: SNMP support was requested, but unavailable" >&5
-+echo "$as_me: error: SNMP support was requested, but unavailable" >&2;}
-+   { (exit 1); exit 1; }; }
-+		fi
-+	fi
-+fi
-+
-+agentdir='${pkglibdir}/snmp'
-+mibdir='${pkgdatadir}/snmp/mibs'
-+
-+
-+
-+
-+
-+
-+fi
-+
-+
-+
-+
-+if test x$enable_modules = xyes; then
-+  MODULES_TRUE=
-+  MODULES_FALSE='#'
-+else
-+  MODULES_TRUE='#'
-+  MODULES_FALSE=
-+fi
-+
-+
-+
-+if test x$enable_utils = xyes; then
-+  UTILS_TRUE=
-+  UTILS_FALSE='#'
-+else
-+  UTILS_TRUE='#'
-+  UTILS_FALSE=
-+fi
-+
-+
-+
-+if test x$enable_tests = xyes; then
-+  TESTS_TRUE=
-+  TESTS_FALSE='#'
-+else
-+  TESTS_TRUE='#'
-+  TESTS_FALSE=
-+fi
-+
-+
-+
-+if test x$ENABLE_DOC = x1; then
-+  DOC_TRUE=
-+  DOC_FALSE='#'
-+else
-+  DOC_TRUE='#'
-+  DOC_FALSE=
-+fi
-+
-+
-+
-+if test x$ENABLE_INIT_SCRIPTS = "x1"; then
-+  INIT_SCRIPTS_TRUE=
-+  INIT_SCRIPTS_FALSE='#'
-+else
-+  INIT_SCRIPTS_TRUE='#'
-+  INIT_SCRIPTS_FALSE=
-+fi
-+
-+
-+
-+if test x$lb_target_os = "xlinux"; then
-+  LINUX_TRUE=
-+  LINUX_FALSE='#'
-+else
-+  LINUX_TRUE='#'
-+  LINUX_FALSE=
-+fi
-+
-+
-+
-+if test x$lb_target_os = "xdarwin"; then
-+  DARWIN_TRUE=
-+  DARWIN_FALSE='#'
-+else
-+  DARWIN_TRUE='#'
-+  DARWIN_FALSE=
-+fi
-+
-+
-+
-+if test x$enable_cray_xt3 = "xyes"; then
-+  CRAY_XT3_TRUE=
-+  CRAY_XT3_FALSE='#'
-+else
-+  CRAY_XT3_TRUE='#'
-+  CRAY_XT3_FALSE=
-+fi
-+
-+
-+
-+if test x$lb_target_os = "xSunOS"; then
-+  SUNOS_TRUE=
-+  SUNOS_FALSE='#'
-+else
-+  SUNOS_TRUE='#'
-+  SUNOS_FALSE=
-+fi
-+
-+
-+# this lets lustre cancel libsysio, per-branch or if liblustre is
-+# disabled
-+if test "x$LIBSYSIO_SUBDIR" = xlibsysio ; then
-+	if test "x$with_sysio" != xyes ; then
-+		SYSIO=""
-+		LIBSYSIO_SUBDIR=""
-+	fi
-+fi
-+
-+
-+
-+
-+
-+if test x$linux25 = xyes; then
-+  LINUX25_TRUE=
-+  LINUX25_FALSE='#'
-+else
-+  LINUX25_TRUE='#'
-+  LINUX25_FALSE=
-+fi
-+
-+
-+LB_DARWIN_CONDITIONALS
-+
-+
-+
-+
-+if test x$QSWLND = "xqswlnd"; then
-+  BUILD_QSWLND_TRUE=
-+  BUILD_QSWLND_FALSE='#'
-+else
-+  BUILD_QSWLND_TRUE='#'
-+  BUILD_QSWLND_FALSE=
-+fi
-+
-+
-+
-+if test x$GMLND = "xgmlnd"; then
-+  BUILD_GMLND_TRUE=
-+  BUILD_GMLND_FALSE='#'
-+else
-+  BUILD_GMLND_TRUE='#'
-+  BUILD_GMLND_FALSE=
-+fi
-+
-+
-+
-+if test x$MXLND = "xmxlnd"; then
-+  BUILD_MXLND_TRUE=
-+  BUILD_MXLND_FALSE='#'
-+else
-+  BUILD_MXLND_TRUE='#'
-+  BUILD_MXLND_FALSE=
-+fi
-+
-+
-+
-+if test x$O2IBLND = "xo2iblnd"; then
-+  BUILD_O2IBLND_TRUE=
-+  BUILD_O2IBLND_FALSE='#'
-+else
-+  BUILD_O2IBLND_TRUE='#'
-+  BUILD_O2IBLND_FALSE=
-+fi
-+
-+
-+
-+if test x$OPENIBLND = "xopeniblnd"; then
-+  BUILD_OPENIBLND_TRUE=
-+  BUILD_OPENIBLND_FALSE='#'
-+else
-+  BUILD_OPENIBLND_TRUE='#'
-+  BUILD_OPENIBLND_FALSE=
-+fi
-+
-+
-+
-+if test x$CIBLND = "xciblnd"; then
-+  BUILD_CIBLND_TRUE=
-+  BUILD_CIBLND_FALSE='#'
-+else
-+  BUILD_CIBLND_TRUE='#'
-+  BUILD_CIBLND_FALSE=
-+fi
-+
-+
-+
-+if test x$IIBLND = "xiiblnd"; then
-+  BUILD_IIBLND_TRUE=
-+  BUILD_IIBLND_FALSE='#'
-+else
-+  BUILD_IIBLND_TRUE='#'
-+  BUILD_IIBLND_FALSE=
-+fi
-+
-+
-+
-+if test x$VIBLND = "xviblnd"; then
-+  BUILD_VIBLND_TRUE=
-+  BUILD_VIBLND_FALSE='#'
-+else
-+  BUILD_VIBLND_TRUE='#'
-+  BUILD_VIBLND_FALSE=
-+fi
-+
-+
-+
-+if test x$RALND = "xralnd"; then
-+  BUILD_RALND_TRUE=
-+  BUILD_RALND_FALSE='#'
-+else
-+  BUILD_RALND_TRUE='#'
-+  BUILD_RALND_FALSE=
-+fi
-+
-+
-+
-+if test x$PTLLND = "xptllnd"; then
-+  BUILD_PTLLND_TRUE=
-+  BUILD_PTLLND_FALSE='#'
-+else
-+  BUILD_PTLLND_TRUE='#'
-+  BUILD_PTLLND_FALSE=
-+fi
-+
-+
-+
-+if test x$UPTLLND = "xptllnd"; then
-+  BUILD_UPTLLND_TRUE=
-+  BUILD_UPTLLND_FALSE='#'
-+else
-+  BUILD_UPTLLND_TRUE='#'
-+  BUILD_UPTLLND_FALSE=
-+fi
-+
-+
-+
-+if test x$USOCKLND = "xusocklnd"; then
-+  BUILD_USOCKLND_TRUE=
-+  BUILD_USOCKLND_FALSE='#'
-+else
-+  BUILD_USOCKLND_TRUE='#'
-+  BUILD_USOCKLND_FALSE=
-+fi
-+
-+
-+
-+
-+if test x$enable_liblustre = xyes; then
-+  LIBLUSTRE_TRUE=
-+  LIBLUSTRE_FALSE='#'
-+else
-+  LIBLUSTRE_TRUE='#'
-+  LIBLUSTRE_FALSE=
-+fi
-+
-+
-+
-+if test x$QUILT != xno; then
-+  USE_QUILT_TRUE=
-+  USE_QUILT_FALSE='#'
-+else
-+  USE_QUILT_TRUE='#'
-+  USE_QUILT_FALSE=
-+fi
-+
-+
-+
-+if test x$enable_liblustre_tests = xyes; then
-+  LIBLUSTRE_TESTS_TRUE=
-+  LIBLUSTRE_TESTS_FALSE='#'
-+else
-+  LIBLUSTRE_TESTS_TRUE='#'
-+  LIBLUSTRE_TESTS_FALSE=
-+fi
-+
-+
-+
-+if test x$enable_mpitests = xyes; then
-+  MPITESTS_TRUE=
-+  MPITESTS_FALSE='#'
-+else
-+  MPITESTS_TRUE='#'
-+  MPITESTS_FALSE=
-+fi
-+
-+
-+
-+if test x$enable_client = xyes; then
-+  CLIENT_TRUE=
-+  CLIENT_FALSE='#'
-+else
-+  CLIENT_TRUE='#'
-+  CLIENT_FALSE=
-+fi
-+
-+
-+
-+if test x$enable_server = xyes; then
-+  SERVER_TRUE=
-+  SERVER_FALSE='#'
-+else
-+  SERVER_TRUE='#'
-+  SERVER_FALSE=
-+fi
-+
-+
-+
-+if test x$enable_quota_module = xyes; then
-+  QUOTA_TRUE=
-+  QUOTA_FALSE='#'
-+else
-+  QUOTA_TRUE='#'
-+  QUOTA_FALSE=
-+fi
-+
-+
-+
-+if test x$ac_cv_header_blkid_blkid_h = xyes; then
-+  BLKID_TRUE=
-+  BLKID_FALSE='#'
-+else
-+  BLKID_TRUE='#'
-+  BLKID_FALSE=
-+fi
-+
-+
-+
-+if test x$ac_cv_header_ext2fs_ext2fs_h = xyes; then
-+  EXT2FS_DEVEL_TRUE=
-+  EXT2FS_DEVEL_FALSE='#'
-+else
-+  EXT2FS_DEVEL_TRUE='#'
-+  EXT2FS_DEVEL_FALSE=
-+fi
-+
-+
-+
-+if test x$enable_libpthread = xyes; then
-+  LIBPTHREAD_TRUE=
-+  LIBPTHREAD_FALSE='#'
-+else
-+  LIBPTHREAD_TRUE='#'
-+  LIBPTHREAD_FALSE=
-+fi
-+
-+
-+
-+ac_config_headers="$ac_config_headers config.h"
-+
-+CPPFLAGS="-include $PWD/config.h $CPPFLAGS"
-+EXTRA_KCFLAGS="-include $PWD/config.h $EXTRA_KCFLAGS"
-+
-+
-+
-+
-+
-+ac_config_files="$ac_config_files Makefile autoMakefile Rules:build/Rules.in lustre.spec"
-+
-+
-+ac_config_files="$ac_config_files lnet/Kernelenv lnet/Makefile lnet/autoMakefile lnet/autoconf/Makefile lnet/doc/Makefile lnet/include/Makefile lnet/include/libcfs/Makefile lnet/include/libcfs/linux/Makefile lnet/include/lnet/Makefile lnet/include/lnet/linux/Makefile lnet/klnds/Makefile lnet/klnds/autoMakefile lnet/klnds/gmlnd/Makefile lnet/klnds/mxlnd/autoMakefile lnet/klnds/mxlnd/Makefile lnet/klnds/gmlnd/autoMakefile lnet/klnds/openiblnd/Makefile lnet/klnds/openiblnd/autoMakefile lnet/klnds/o2iblnd/Makefile lnet/klnds/o2iblnd/autoMakefile lnet/klnds/ciblnd/Makefile lnet/klnds/ciblnd/autoMakefile lnet/klnds/iiblnd/Makefile lnet/klnds/iiblnd/autoMakefile lnet/klnds/viblnd/Makefile lnet/klnds/viblnd/autoMakefile lnet/klnds/qswlnd/Makefile lnet/klnds/qswlnd/autoMakefile lnet/klnds/ralnd/Makefile lnet/klnds/ralnd/autoMakefile lnet/klnds/socklnd/Makefile lnet/klnds/socklnd/autoMakefile lnet/klnds/ptllnd/Makefile lnet/klnds/ptllnd/autoMakefile lnet/libcfs/Makefile lnet/libcfs/autoMakefile lnet/libcfs/linux/Makefile lnet/lnet/Makefile lnet/lnet/autoMakefile lnet/selftest/Makefile lnet/selftest/autoMakefile lnet/ulnds/Makefile lnet/ulnds/autoMakefile lnet/ulnds/socklnd/Makefile lnet/ulnds/ptllnd/Makefile lnet/utils/Makefile"
-+
-+case $lb_target_os in
-+	darwin)
-+		ac_config_files="$ac_config_files lnet/include/libcfs/darwin/Makefile lnet/include/lnet/darwin/Makefile lnet/libcfs/darwin/Makefile"
-+
-+		;;
-+esac
-+
-+ac_config_files="$ac_config_files lustre/Makefile lustre/autoMakefile lustre/autoconf/Makefile lustre/contrib/Makefile lustre/doc/Makefile lustre/include/Makefile lustre/include/lustre_ver.h lustre/include/linux/Makefile lustre/include/lustre/Makefile lustre/kernel_patches/targets/2.6-suse.target lustre/kernel_patches/targets/2.6-vanilla.target lustre/kernel_patches/targets/2.6-rhel4.target lustre/kernel_patches/targets/2.6-rhel5.target lustre/kernel_patches/targets/2.6-fc5.target lustre/kernel_patches/targets/2.6-patchless.target lustre/kernel_patches/targets/2.6-sles10.target lustre/kernel_patches/targets/2.6-sles11.target lustre/kernel_patches/targets/hp_pnnl-2.4.target lustre/kernel_patches/targets/rh-2.4.target lustre/kernel_patches/targets/rhel-2.4.target lustre/kernel_patches/targets/suse-2.4.21-2.target lustre/kernel_patches/targets/sles-2.4.target lustre/kernel_patches/targets/2.6-oel5.target lustre/ldlm/Makefile lustre/liblustre/Makefile lustre/liblustre/tests/Makefile lustre/liblustre/tests/mpi/Makefile lustre/llite/Makefile lustre/llite/autoMakefile lustre/lov/Makefile lustre/lov/autoMakefile lustre/lvfs/Makefile lustre/lvfs/autoMakefile lustre/mdc/Makefile lustre/mdc/autoMakefile lustre/mds/Makefile lustre/mds/autoMakefile lustre/obdclass/Makefile lustre/obdclass/autoMakefile lustre/obdclass/linux/Makefile lustre/obdecho/Makefile lustre/obdecho/autoMakefile lustre/obdfilter/Makefile lustre/obdfilter/autoMakefile lustre/osc/Makefile lustre/osc/autoMakefile lustre/ost/Makefile lustre/ost/autoMakefile lustre/mgc/Makefile lustre/mgc/autoMakefile lustre/mgs/Makefile lustre/mgs/autoMakefile lustre/ptlrpc/Makefile lustre/ptlrpc/autoMakefile lustre/quota/Makefile lustre/quota/autoMakefile lustre/scripts/Makefile lustre/tests/Makefile lustre/tests/mpi/Makefile lustre/utils/Makefile"
-+
-+case $lb_target_os in
-+        darwin)
-+                ac_config_files="$ac_config_files lustre/obdclass/darwin/Makefile"
-+
-+                ;;
-+esac
-+
-+
-+if test "$SNMP_DIST_SUBDIR" ; then
-+	ac_config_files="$ac_config_files snmp/Makefile snmp/autoconf/Makefile"
-+
-+
-+fi
-+
-+
-+
-+MOSTLYCLEANFILES='.*.cmd .*.flags *.o *.ko *.mod.c .depend .*.1.* Modules.symvers Module.symvers'
-+
-+
-+cat >confcache <<\_ACEOF
-+# This file is a shell script that caches the results of configure
-+# tests run on this system so they can be shared between configure
-+# scripts and configure runs, see configure's option --config-cache.
-+# It is not useful on other systems.  If it contains results you don't
-+# want to keep, you may remove or edit it.
-+#
-+# config.status only pays attention to the cache file if you give it
-+# the --recheck option to rerun configure.
-+#
-+# `ac_cv_env_foo' variables (set or unset) will be overridden when
-+# loading this file, other *unset* `ac_cv_foo' will be assigned the
-+# following values.
-+
-+_ACEOF
-+
-+# The following way of writing the cache mishandles newlines in values,
-+# but we know of no workaround that is simple, portable, and efficient.
-+# So, we kill variables containing newlines.
-+# Ultrix sh set writes to stderr and can't be redirected directly,
-+# and sets the high bit in the cache file unless we assign to the vars.
-+(
-+  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
-+    eval ac_val=\$$ac_var
-+    case $ac_val in #(
-+    *${as_nl}*)
-+      case $ac_var in #(
-+      *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
-+echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
-+      esac
-+      case $ac_var in #(
-+      _ | IFS | as_nl) ;; #(
-+      *) $as_unset $ac_var ;;
-+      esac ;;
-+    esac
-+  done
-+
-+  (set) 2>&1 |
-+    case $as_nl`(ac_space=' '; set) 2>&1` in #(
-+    *${as_nl}ac_space=\ *)
-+      # `set' does not quote correctly, so add quotes (double-quote
-+      # substitution turns \\\\ into \\, and sed turns \\ into \).
-+      sed -n \
-+	"s/'/'\\\\''/g;
-+	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
-+      ;; #(
-+    *)
-+      # `set' quotes correctly as required by POSIX, so do not add quotes.
-+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
-+      ;;
-+    esac |
-+    sort
-+) |
-+  sed '
-+     /^ac_cv_env_/b end
-+     t clear
-+     :clear
-+     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
-+     t end
-+     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
-+     :end' >>confcache
-+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
-+  if test -w "$cache_file"; then
-+    test "x$cache_file" != "x/dev/null" &&
-+      { echo "$as_me:$LINENO: updating cache $cache_file" >&5
-+echo "$as_me: updating cache $cache_file" >&6;}
-+    cat confcache >$cache_file
-+  else
-+    { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
-+echo "$as_me: not updating unwritable cache $cache_file" >&6;}
-+  fi
-+fi
-+rm -f confcache
-+
-+test "x$prefix" = xNONE && prefix=$ac_default_prefix
-+# Let make expand exec_prefix.
-+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
-+
-+DEFS=-DHAVE_CONFIG_H
-+
-+ac_libobjs=
-+ac_ltlibobjs=
-+for ac_i in : $LIB@&t at OBJS; do test "x$ac_i" = x: && continue
-+  # 1. Remove the extension, and $U if already installed.
-+  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
-+  ac_i=`echo "$ac_i" | sed "$ac_script"`
-+  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
-+  #    will be set to the directory where LIBOBJS objects are built.
-+  ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext"
-+  ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo'
-+done
-+LIB@&t at OBJS=$ac_libobjs
-+
-+LTLIBOBJS=$ac_ltlibobjs
-+
-+
-+if test -z "${LDISKFS_ENABLED_TRUE}" && test -z "${LDISKFS_ENABLED_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"LDISKFS_ENABLED\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"LDISKFS_ENABLED\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"AMDEP\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${POSIX_OSD_ENABLED_TRUE}" && test -z "${POSIX_OSD_ENABLED_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"POSIX_OSD_ENABLED\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"POSIX_OSD_ENABLED\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${DMU_OSD_ENABLED_TRUE}" && test -z "${DMU_OSD_ENABLED_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"DMU_OSD_ENABLED\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"DMU_OSD_ENABLED\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${KDMU_TRUE}" && test -z "${KDMU_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"KDMU\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"KDMU\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${LDISKFS_ENABLED_TRUE}" && test -z "${LDISKFS_ENABLED_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"LDISKFS_ENABLED\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"LDISKFS_ENABLED\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${LDISKFS_IN_KERNEL_TRUE}" && test -z "${LDISKFS_IN_KERNEL_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"LDISKFS_IN_KERNEL\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"LDISKFS_IN_KERNEL\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${MODULES_TRUE}" && test -z "${MODULES_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"MODULES\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"MODULES\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${UTILS_TRUE}" && test -z "${UTILS_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"UTILS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"UTILS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${TESTS_TRUE}" && test -z "${TESTS_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"TESTS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"TESTS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${DOC_TRUE}" && test -z "${DOC_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"DOC\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"DOC\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${INIT_SCRIPTS_TRUE}" && test -z "${INIT_SCRIPTS_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"INIT_SCRIPTS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"INIT_SCRIPTS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${LINUX_TRUE}" && test -z "${LINUX_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"LINUX\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"LINUX\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${DARWIN_TRUE}" && test -z "${DARWIN_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"DARWIN\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"DARWIN\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${CRAY_XT3_TRUE}" && test -z "${CRAY_XT3_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"CRAY_XT3\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"CRAY_XT3\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${SUNOS_TRUE}" && test -z "${SUNOS_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"SUNOS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"SUNOS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${LINUX25_TRUE}" && test -z "${LINUX25_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"LINUX25\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"LINUX25\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${BUILD_QSWLND_TRUE}" && test -z "${BUILD_QSWLND_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"BUILD_QSWLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"BUILD_QSWLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${BUILD_GMLND_TRUE}" && test -z "${BUILD_GMLND_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"BUILD_GMLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"BUILD_GMLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${BUILD_MXLND_TRUE}" && test -z "${BUILD_MXLND_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"BUILD_MXLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"BUILD_MXLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${BUILD_O2IBLND_TRUE}" && test -z "${BUILD_O2IBLND_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"BUILD_O2IBLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"BUILD_O2IBLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${BUILD_OPENIBLND_TRUE}" && test -z "${BUILD_OPENIBLND_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"BUILD_OPENIBLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"BUILD_OPENIBLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${BUILD_CIBLND_TRUE}" && test -z "${BUILD_CIBLND_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"BUILD_CIBLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"BUILD_CIBLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${BUILD_IIBLND_TRUE}" && test -z "${BUILD_IIBLND_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"BUILD_IIBLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"BUILD_IIBLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${BUILD_VIBLND_TRUE}" && test -z "${BUILD_VIBLND_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"BUILD_VIBLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"BUILD_VIBLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${BUILD_RALND_TRUE}" && test -z "${BUILD_RALND_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"BUILD_RALND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"BUILD_RALND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${BUILD_PTLLND_TRUE}" && test -z "${BUILD_PTLLND_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"BUILD_PTLLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"BUILD_PTLLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${BUILD_UPTLLND_TRUE}" && test -z "${BUILD_UPTLLND_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"BUILD_UPTLLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"BUILD_UPTLLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${BUILD_USOCKLND_TRUE}" && test -z "${BUILD_USOCKLND_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"BUILD_USOCKLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"BUILD_USOCKLND\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${LIBLUSTRE_TRUE}" && test -z "${LIBLUSTRE_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"LIBLUSTRE\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"LIBLUSTRE\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${USE_QUILT_TRUE}" && test -z "${USE_QUILT_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"USE_QUILT\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"USE_QUILT\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${LIBLUSTRE_TESTS_TRUE}" && test -z "${LIBLUSTRE_TESTS_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"LIBLUSTRE_TESTS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"LIBLUSTRE_TESTS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${MPITESTS_TRUE}" && test -z "${MPITESTS_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"MPITESTS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"MPITESTS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${CLIENT_TRUE}" && test -z "${CLIENT_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"CLIENT\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"CLIENT\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${SERVER_TRUE}" && test -z "${SERVER_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"SERVER\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"SERVER\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${QUOTA_TRUE}" && test -z "${QUOTA_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"QUOTA\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"QUOTA\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${BLKID_TRUE}" && test -z "${BLKID_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"BLKID\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"BLKID\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${EXT2FS_DEVEL_TRUE}" && test -z "${EXT2FS_DEVEL_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"EXT2FS_DEVEL\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"EXT2FS_DEVEL\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${LIBPTHREAD_TRUE}" && test -z "${LIBPTHREAD_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"LIBPTHREAD\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"LIBPTHREAD\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+: ${CONFIG_STATUS=./config.status}
-+ac_clean_files_save=$ac_clean_files
-+ac_clean_files="$ac_clean_files $CONFIG_STATUS"
-+{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
-+echo "$as_me: creating $CONFIG_STATUS" >&6;}
-+cat >$CONFIG_STATUS <<_ACEOF
-+#! $SHELL
-+# Generated by $as_me.
-+# Run this file to recreate the current configuration.
-+# Compiler output produced by configure, useful for debugging
-+# configure, is in config.log if it exists.
-+
-+debug=false
-+ac_cs_recheck=false
-+ac_cs_silent=false
-+SHELL=\${CONFIG_SHELL-$SHELL}
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+## --------------------- ##
-+## M4sh Initialization.  ##
-+## --------------------- ##
-+
-+# Be more Bourne compatible
-+DUALCASE=1; export DUALCASE # for MKS sh
-+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-+  emulate sh
-+  NULLCMD=:
-+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-+  # is contrary to our usage.  Disable this feature.
-+  alias -g '${1+"$@"}'='"$@"'
-+  setopt NO_GLOB_SUBST
-+else
-+  case `(set -o) 2>/dev/null` in
-+  *posix*) set -o posix ;;
-+esac
-+
-+fi
-+
-+
-+
-+
-+# PATH needs CR
-+# Avoid depending upon Character Ranges.
-+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-+as_cr_digits='0123456789'
-+as_cr_alnum=$as_cr_Letters$as_cr_digits
-+
-+# The user is always right.
-+if test "${PATH_SEPARATOR+set}" != set; then
-+  echo "#! /bin/sh" >conf$$.sh
-+  echo  "exit 0"   >>conf$$.sh
-+  chmod +x conf$$.sh
-+  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
-+    PATH_SEPARATOR=';'
-+  else
-+    PATH_SEPARATOR=:
-+  fi
-+  rm -f conf$$.sh
-+fi
-+
-+# Support unset when possible.
-+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
-+  as_unset=unset
-+else
-+  as_unset=false
-+fi
-+
-+
-+# IFS
-+# We need space, tab and new line, in precisely that order.  Quoting is
-+# there to prevent editors from complaining about space-tab.
-+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-+# splitting by setting IFS to empty value.)
-+as_nl='
-+'
-+IFS=" ""	$as_nl"
-+
-+# Find who we are.  Look in the path if we contain no directory separator.
-+case $0 in
-+  *[\\/]* ) as_myself=$0 ;;
-+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
-+done
-+IFS=$as_save_IFS
-+
-+     ;;
-+esac
-+# We did not find ourselves, most probably we were run as `sh COMMAND'
-+# in which case we are not to be found in the path.
-+if test "x$as_myself" = x; then
-+  as_myself=$0
-+fi
-+if test ! -f "$as_myself"; then
-+  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
-+  { (exit 1); exit 1; }
-+fi
-+
-+# Work around bugs in pre-3.0 UWIN ksh.
-+for as_var in ENV MAIL MAILPATH
-+do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+done
-+PS1='$ '
-+PS2='> '
-+PS4='+ '
-+
-+# NLS nuisances.
-+for as_var in \
-+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
-+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
-+  LC_TELEPHONE LC_TIME
-+do
-+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
-+    eval $as_var=C; export $as_var
-+  else
-+    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+  fi
-+done
-+
-+# Required to use basename.
-+if expr a : '\(a\)' >/dev/null 2>&1 &&
-+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
-+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
-+  as_basename=basename
-+else
-+  as_basename=false
-+fi
-+
-+
-+# Name of the executable.
-+as_me=`$as_basename -- "$0" ||
-+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
-+	 X"$0" : 'X\(//\)$' \| \
-+	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X/"$0" |
-+    sed '/^.*\/\([^/][^/]*\)\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\/\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\/\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+
-+# CDPATH.
-+$as_unset CDPATH
-+
-+
-+
-+  as_lineno_1=$LINENO
-+  as_lineno_2=$LINENO
-+  test "x$as_lineno_1" != "x$as_lineno_2" &&
-+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
-+
-+  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
-+  # uniformly replaced by the line number.  The first 'sed' inserts a
-+  # line-number line after each line using $LINENO; the second 'sed'
-+  # does the real work.  The second script uses 'N' to pair each
-+  # line-number line with the line containing $LINENO, and appends
-+  # trailing '-' during substitution so that $LINENO is not a special
-+  # case at line end.
-+  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
-+  # scripts with optimization help from Paolo Bonzini.  Blame Lee
-+  # E. McMahon (1931-1989) for sed's syntax.  :-)
-+  sed -n '
-+    p
-+    /[$]LINENO/=
-+  ' <$as_myself |
-+    sed '
-+      s/[$]LINENO.*/&-/
-+      t lineno
-+      b
-+      :lineno
-+      N
-+      :loop
-+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
-+      t loop
-+      s/-\n.*//
-+    ' >$as_me.lineno &&
-+  chmod +x "$as_me.lineno" ||
-+    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
-+   { (exit 1); exit 1; }; }
-+
-+  # Don't try to exec as it changes $[0], causing all sort of problems
-+  # (the dirname of $[0] is not the place where we might find the
-+  # original and so on.  Autoconf is especially sensitive to this).
-+  . "./$as_me.lineno"
-+  # Exit status is that of the last command.
-+  exit
-+}
-+
-+
-+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
-+  as_dirname=dirname
-+else
-+  as_dirname=false
-+fi
-+
-+ECHO_C= ECHO_N= ECHO_T=
-+case `echo -n x` in
-+-n*)
-+  case `echo 'x\c'` in
-+  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
-+  *)   ECHO_C='\c';;
-+  esac;;
-+*)
-+  ECHO_N='-n';;
-+esac
-+
-+if expr a : '\(a\)' >/dev/null 2>&1 &&
-+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
-+rm -f conf$$ conf$$.exe conf$$.file
-+if test -d conf$$.dir; then
-+  rm -f conf$$.dir/conf$$.file
-+else
-+  rm -f conf$$.dir
-+  mkdir conf$$.dir
-+fi
-+echo >conf$$.file
-+if ln -s conf$$.file conf$$ 2>/dev/null; then
-+  as_ln_s='ln -s'
-+  # ... but there are two gotchas:
-+  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
-+  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
-+  # In both cases, we have to default to `cp -p'.
-+  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-+    as_ln_s='cp -p'
-+elif ln conf$$.file conf$$ 2>/dev/null; then
-+  as_ln_s=ln
-+else
-+  as_ln_s='cp -p'
-+fi
-+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-+rmdir conf$$.dir 2>/dev/null
-+
-+if mkdir -p . 2>/dev/null; then
-+  as_mkdir_p=:
-+else
-+  test -d ./-p && rmdir ./-p
-+  as_mkdir_p=false
-+fi
-+
-+if test -x / >/dev/null 2>&1; then
-+  as_test_x='test -x'
-+else
-+  if ls -dL / >/dev/null 2>&1; then
-+    as_ls_L_option=L
-+  else
-+    as_ls_L_option=
-+  fi
-+  as_test_x='
-+    eval sh -c '\''
-+      if test -d "$1"; then
-+        test -d "$1/.";
-+      else
-+	case $1 in
-+        -*)set "./$1";;
-+	esac;
-+	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
-+	???[sx]*):;;*)false;;esac;fi
-+    '\'' sh
-+  '
-+fi
-+as_executable_p=$as_test_x
-+
-+# Sed expression to map a string onto a valid CPP name.
-+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-+
-+# Sed expression to map a string onto a valid variable name.
-+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-+
-+
-+exec 6>&1
-+
-+# Save the log message, to keep $[0] and so on meaningful, and to
-+# report actual input values of CONFIG_FILES etc. instead of their
-+# values after options handling.
-+ac_log="
-+This file was extended by Lustre $as_me 1.8.2, which was
-+generated by GNU Autoconf 2.61.  Invocation command line was
-+
-+  CONFIG_FILES    = $CONFIG_FILES
-+  CONFIG_HEADERS  = $CONFIG_HEADERS
-+  CONFIG_LINKS    = $CONFIG_LINKS
-+  CONFIG_COMMANDS = $CONFIG_COMMANDS
-+  $ $0 $@
-+
-+on `(hostname || uname -n) 2>/dev/null | sed 1q`
-+"
-+
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<_ACEOF
-+# Files that config.status was made for.
-+config_files="$ac_config_files"
-+config_headers="$ac_config_headers"
-+config_commands="$ac_config_commands"
-+
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+ac_cs_usage="\
-+\`$as_me' instantiates files from templates according to the
-+current configuration.
-+
-+Usage: $0 [OPTIONS] [FILE]...
-+
-+  -h, --help       print this help, then exit
-+  -V, --version    print version number and configuration settings, then exit
-+  -q, --quiet      do not print progress messages
-+  -d, --debug      don't remove temporary files
-+      --recheck    update $as_me by reconfiguring in the same conditions
-+  --file=FILE[:TEMPLATE]
-+		   instantiate the configuration file FILE
-+  --header=FILE[:TEMPLATE]
-+		   instantiate the configuration header FILE
-+
-+Configuration files:
-+$config_files
-+
-+Configuration headers:
-+$config_headers
-+
-+Configuration commands:
-+$config_commands
-+
-+Report bugs to <bug-autoconf at gnu.org>."
-+
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF
-+ac_cs_version="\\
-+Lustre config.status 1.8.2
-+configured by $0, generated by GNU Autoconf 2.61,
-+  with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
-+
-+Copyright (C) 2006 Free Software Foundation, Inc.
-+This config.status script is free software; the Free Software Foundation
-+gives unlimited permission to copy, distribute and modify it."
-+
-+ac_pwd='$ac_pwd'
-+srcdir='$srcdir'
-+INSTALL='$INSTALL'
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+# If no file are specified by the user, then we need to provide default
-+# value.  By we need to know if files were specified by the user.
-+ac_need_defaults=:
-+while test $# != 0
-+do
-+  case $1 in
-+  --*=*)
-+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
-+    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
-+    ac_shift=:
-+    ;;
-+  *)
-+    ac_option=$1
-+    ac_optarg=$2
-+    ac_shift=shift
-+    ;;
-+  esac
-+
-+  case $ac_option in
-+  # Handling of the options.
-+  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
-+    ac_cs_recheck=: ;;
-+  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
-+    echo "$ac_cs_version"; exit ;;
-+  --debug | --debu | --deb | --de | --d | -d )
-+    debug=: ;;
-+  --file | --fil | --fi | --f )
-+    $ac_shift
-+    CONFIG_FILES="$CONFIG_FILES $ac_optarg"
-+    ac_need_defaults=false;;
-+  --header | --heade | --head | --hea )
-+    $ac_shift
-+    CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
-+    ac_need_defaults=false;;
-+  --he | --h)
-+    # Conflict between --help and --header
-+    { echo "$as_me: error: ambiguous option: $1
-+Try \`$0 --help' for more information." >&2
-+   { (exit 1); exit 1; }; };;
-+  --help | --hel | -h )
-+    echo "$ac_cs_usage"; exit ;;
-+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-+  | -silent | --silent | --silen | --sile | --sil | --si | --s)
-+    ac_cs_silent=: ;;
-+
-+  # This is an error.
-+  -*) { echo "$as_me: error: unrecognized option: $1
-+Try \`$0 --help' for more information." >&2
-+   { (exit 1); exit 1; }; } ;;
-+
-+  *) ac_config_targets="$ac_config_targets $1"
-+     ac_need_defaults=false ;;
-+
-+  esac
-+  shift
-+done
-+
-+ac_configure_extra_args=
-+
-+if $ac_cs_silent; then
-+  exec 6>/dev/null
-+  ac_configure_extra_args="$ac_configure_extra_args --silent"
-+fi
-+
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF
-+if \$ac_cs_recheck; then
-+  echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
-+  CONFIG_SHELL=$SHELL
-+  export CONFIG_SHELL
-+  exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
-+fi
-+
-+_ACEOF
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+exec 5>>config.log
-+{
-+  echo
-+  sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX
-+@%:@@%:@ Running $as_me. @%:@@%:@
-+_ASBOX
-+  echo "$ac_log"
-+} >&5
-+
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF
-+#
-+# INIT-COMMANDS
-+#
-+AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
-+
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+
-+# Handling of arguments.
-+for ac_config_target in $ac_config_targets
-+do
-+  case $ac_config_target in
-+    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
-+    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
-+    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
-+    "autoMakefile") CONFIG_FILES="$CONFIG_FILES autoMakefile" ;;
-+    "Rules") CONFIG_FILES="$CONFIG_FILES Rules:build/Rules.in" ;;
-+    "lustre.spec") CONFIG_FILES="$CONFIG_FILES lustre.spec" ;;
-+    "lnet/Kernelenv") CONFIG_FILES="$CONFIG_FILES lnet/Kernelenv" ;;
-+    "lnet/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/Makefile" ;;
-+    "lnet/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/autoMakefile" ;;
-+    "lnet/autoconf/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/autoconf/Makefile" ;;
-+    "lnet/doc/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/doc/Makefile" ;;
-+    "lnet/include/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/include/Makefile" ;;
-+    "lnet/include/libcfs/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/include/libcfs/Makefile" ;;
-+    "lnet/include/libcfs/linux/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/include/libcfs/linux/Makefile" ;;
-+    "lnet/include/lnet/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/include/lnet/Makefile" ;;
-+    "lnet/include/lnet/linux/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/include/lnet/linux/Makefile" ;;
-+    "lnet/klnds/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/Makefile" ;;
-+    "lnet/klnds/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/autoMakefile" ;;
-+    "lnet/klnds/gmlnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/gmlnd/Makefile" ;;
-+    "lnet/klnds/mxlnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/mxlnd/autoMakefile" ;;
-+    "lnet/klnds/mxlnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/mxlnd/Makefile" ;;
-+    "lnet/klnds/gmlnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/gmlnd/autoMakefile" ;;
-+    "lnet/klnds/openiblnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/openiblnd/Makefile" ;;
-+    "lnet/klnds/openiblnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/openiblnd/autoMakefile" ;;
-+    "lnet/klnds/o2iblnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/o2iblnd/Makefile" ;;
-+    "lnet/klnds/o2iblnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/o2iblnd/autoMakefile" ;;
-+    "lnet/klnds/ciblnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/ciblnd/Makefile" ;;
-+    "lnet/klnds/ciblnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/ciblnd/autoMakefile" ;;
-+    "lnet/klnds/iiblnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/iiblnd/Makefile" ;;
-+    "lnet/klnds/iiblnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/iiblnd/autoMakefile" ;;
-+    "lnet/klnds/viblnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/viblnd/Makefile" ;;
-+    "lnet/klnds/viblnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/viblnd/autoMakefile" ;;
-+    "lnet/klnds/qswlnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/qswlnd/Makefile" ;;
-+    "lnet/klnds/qswlnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/qswlnd/autoMakefile" ;;
-+    "lnet/klnds/ralnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/ralnd/Makefile" ;;
-+    "lnet/klnds/ralnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/ralnd/autoMakefile" ;;
-+    "lnet/klnds/socklnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/socklnd/Makefile" ;;
-+    "lnet/klnds/socklnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/socklnd/autoMakefile" ;;
-+    "lnet/klnds/ptllnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/ptllnd/Makefile" ;;
-+    "lnet/klnds/ptllnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/ptllnd/autoMakefile" ;;
-+    "lnet/libcfs/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/libcfs/Makefile" ;;
-+    "lnet/libcfs/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/libcfs/autoMakefile" ;;
-+    "lnet/libcfs/linux/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/libcfs/linux/Makefile" ;;
-+    "lnet/lnet/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/lnet/Makefile" ;;
-+    "lnet/lnet/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/lnet/autoMakefile" ;;
-+    "lnet/selftest/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/selftest/Makefile" ;;
-+    "lnet/selftest/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/selftest/autoMakefile" ;;
-+    "lnet/ulnds/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/ulnds/Makefile" ;;
-+    "lnet/ulnds/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/ulnds/autoMakefile" ;;
-+    "lnet/ulnds/socklnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/ulnds/socklnd/Makefile" ;;
-+    "lnet/ulnds/ptllnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/ulnds/ptllnd/Makefile" ;;
-+    "lnet/utils/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/utils/Makefile" ;;
-+    "lnet/include/libcfs/darwin/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/include/libcfs/darwin/Makefile" ;;
-+    "lnet/include/lnet/darwin/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/include/lnet/darwin/Makefile" ;;
-+    "lnet/libcfs/darwin/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/libcfs/darwin/Makefile" ;;
-+    "lustre/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/Makefile" ;;
-+    "lustre/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/autoMakefile" ;;
-+    "lustre/autoconf/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/autoconf/Makefile" ;;
-+    "lustre/contrib/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/contrib/Makefile" ;;
-+    "lustre/doc/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/doc/Makefile" ;;
-+    "lustre/include/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/include/Makefile" ;;
-+    "lustre/include/lustre_ver.h") CONFIG_FILES="$CONFIG_FILES lustre/include/lustre_ver.h" ;;
-+    "lustre/include/linux/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/include/linux/Makefile" ;;
-+    "lustre/include/lustre/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/include/lustre/Makefile" ;;
-+    "lustre/kernel_patches/targets/2.6-suse.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-suse.target" ;;
-+    "lustre/kernel_patches/targets/2.6-vanilla.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-vanilla.target" ;;
-+    "lustre/kernel_patches/targets/2.6-rhel4.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-rhel4.target" ;;
-+    "lustre/kernel_patches/targets/2.6-rhel5.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-rhel5.target" ;;
-+    "lustre/kernel_patches/targets/2.6-fc5.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-fc5.target" ;;
-+    "lustre/kernel_patches/targets/2.6-patchless.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-patchless.target" ;;
-+    "lustre/kernel_patches/targets/2.6-sles10.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-sles10.target" ;;
-+    "lustre/kernel_patches/targets/2.6-sles11.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-sles11.target" ;;
-+    "lustre/kernel_patches/targets/hp_pnnl-2.4.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/hp_pnnl-2.4.target" ;;
-+    "lustre/kernel_patches/targets/rh-2.4.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/rh-2.4.target" ;;
-+    "lustre/kernel_patches/targets/rhel-2.4.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/rhel-2.4.target" ;;
-+    "lustre/kernel_patches/targets/suse-2.4.21-2.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/suse-2.4.21-2.target" ;;
-+    "lustre/kernel_patches/targets/sles-2.4.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/sles-2.4.target" ;;
-+    "lustre/kernel_patches/targets/2.6-oel5.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-oel5.target" ;;
-+    "lustre/ldlm/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/ldlm/Makefile" ;;
-+    "lustre/liblustre/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/liblustre/Makefile" ;;
-+    "lustre/liblustre/tests/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/liblustre/tests/Makefile" ;;
-+    "lustre/liblustre/tests/mpi/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/liblustre/tests/mpi/Makefile" ;;
-+    "lustre/llite/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/llite/Makefile" ;;
-+    "lustre/llite/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/llite/autoMakefile" ;;
-+    "lustre/lov/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/lov/Makefile" ;;
-+    "lustre/lov/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/lov/autoMakefile" ;;
-+    "lustre/lvfs/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/lvfs/Makefile" ;;
-+    "lustre/lvfs/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/lvfs/autoMakefile" ;;
-+    "lustre/mdc/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/mdc/Makefile" ;;
-+    "lustre/mdc/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/mdc/autoMakefile" ;;
-+    "lustre/mds/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/mds/Makefile" ;;
-+    "lustre/mds/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/mds/autoMakefile" ;;
-+    "lustre/obdclass/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/obdclass/Makefile" ;;
-+    "lustre/obdclass/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/obdclass/autoMakefile" ;;
-+    "lustre/obdclass/linux/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/obdclass/linux/Makefile" ;;
-+    "lustre/obdecho/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/obdecho/Makefile" ;;
-+    "lustre/obdecho/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/obdecho/autoMakefile" ;;
-+    "lustre/obdfilter/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/obdfilter/Makefile" ;;
-+    "lustre/obdfilter/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/obdfilter/autoMakefile" ;;
-+    "lustre/osc/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/osc/Makefile" ;;
-+    "lustre/osc/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/osc/autoMakefile" ;;
-+    "lustre/ost/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/ost/Makefile" ;;
-+    "lustre/ost/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/ost/autoMakefile" ;;
-+    "lustre/mgc/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/mgc/Makefile" ;;
-+    "lustre/mgc/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/mgc/autoMakefile" ;;
-+    "lustre/mgs/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/mgs/Makefile" ;;
-+    "lustre/mgs/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/mgs/autoMakefile" ;;
-+    "lustre/ptlrpc/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/ptlrpc/Makefile" ;;
-+    "lustre/ptlrpc/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/ptlrpc/autoMakefile" ;;
-+    "lustre/quota/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/quota/Makefile" ;;
-+    "lustre/quota/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/quota/autoMakefile" ;;
-+    "lustre/scripts/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/scripts/Makefile" ;;
-+    "lustre/tests/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/tests/Makefile" ;;
-+    "lustre/tests/mpi/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/tests/mpi/Makefile" ;;
-+    "lustre/utils/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/utils/Makefile" ;;
-+    "lustre/obdclass/darwin/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/obdclass/darwin/Makefile" ;;
-+    "snmp/Makefile") CONFIG_FILES="$CONFIG_FILES snmp/Makefile" ;;
-+    "snmp/autoconf/Makefile") CONFIG_FILES="$CONFIG_FILES snmp/autoconf/Makefile" ;;
-+
-+  *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
-+echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
-+   { (exit 1); exit 1; }; };;
-+  esac
-+done
-+
-+
-+# If the user did not use the arguments to specify the items to instantiate,
-+# then the envvar interface is used.  Set only those that are not.
-+# We use the long form for the default assignment because of an extremely
-+# bizarre bug on SunOS 4.1.3.
-+if $ac_need_defaults; then
-+  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
-+  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
-+  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
-+fi
-+
-+# Have a temporary directory for convenience.  Make it in the build tree
-+# simply because there is no reason against having it here, and in addition,
-+# creating and moving files from /tmp can sometimes cause problems.
-+# Hook for its removal unless debugging.
-+# Note that there is a small window in which the directory will not be cleaned:
-+# after its creation but before its name has been assigned to `$tmp'.
-+$debug ||
-+{
-+  tmp=
-+  trap 'exit_status=$?
-+  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
-+' 0
-+  trap '{ (exit 1); exit 1; }' 1 2 13 15
-+}
-+# Create a (secure) tmp directory for tmp files.
-+
-+{
-+  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
-+  test -n "$tmp" && test -d "$tmp"
-+}  ||
-+{
-+  tmp=./conf$$-$RANDOM
-+  (umask 077 && mkdir "$tmp")
-+} ||
-+{
-+   echo "$me: cannot create a temporary directory in ." >&2
-+   { (exit 1); exit 1; }
-+}
-+
-+#
-+# Set up the sed scripts for CONFIG_FILES section.
-+#
-+
-+# No need to generate the scripts if there are no CONFIG_FILES.
-+# This happens for instance when ./config.status config.h
-+if test -n "$CONFIG_FILES"; then
-+
-+_ACEOF
-+
-+
-+
-+ac_delim='%!_!# '
-+for ac_last_try in false false false false false :; do
-+  cat >conf$$subs.sed <<_ACEOF
-+SHELL!$SHELL$ac_delim
-+PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim
-+PACKAGE_NAME!$PACKAGE_NAME$ac_delim
-+PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim
-+PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim
-+PACKAGE_STRING!$PACKAGE_STRING$ac_delim
-+PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim
-+exec_prefix!$exec_prefix$ac_delim
-+prefix!$prefix$ac_delim
-+program_transform_name!$program_transform_name$ac_delim
-+bindir!$bindir$ac_delim
-+sbindir!$sbindir$ac_delim
-+libexecdir!$libexecdir$ac_delim
-+datarootdir!$datarootdir$ac_delim
-+datadir!$datadir$ac_delim
-+sysconfdir!$sysconfdir$ac_delim
-+sharedstatedir!$sharedstatedir$ac_delim
-+localstatedir!$localstatedir$ac_delim
-+includedir!$includedir$ac_delim
-+oldincludedir!$oldincludedir$ac_delim
-+docdir!$docdir$ac_delim
-+infodir!$infodir$ac_delim
-+htmldir!$htmldir$ac_delim
-+dvidir!$dvidir$ac_delim
-+pdfdir!$pdfdir$ac_delim
-+psdir!$psdir$ac_delim
-+libdir!$libdir$ac_delim
-+localedir!$localedir$ac_delim
-+mandir!$mandir$ac_delim
-+DEFS!$DEFS$ac_delim
-+ECHO_C!$ECHO_C$ac_delim
-+ECHO_N!$ECHO_N$ac_delim
-+ECHO_T!$ECHO_T$ac_delim
-+LIBS!$LIBS$ac_delim
-+build_alias!$build_alias$ac_delim
-+host_alias!$host_alias$ac_delim
-+target_alias!$target_alias$ac_delim
-+AC_LUSTRE_MAJOR!$AC_LUSTRE_MAJOR$ac_delim
-+AC_LUSTRE_MINOR!$AC_LUSTRE_MINOR$ac_delim
-+AC_LUSTRE_PATCH!$AC_LUSTRE_PATCH$ac_delim
-+AC_LUSTRE_FIX!$AC_LUSTRE_FIX$ac_delim
-+AC_LUSTRE_VERSION_STRING!$AC_LUSTRE_VERSION_STRING$ac_delim
-+AC_LUSTRE_VER_ALLOWED_OFFSET!$AC_LUSTRE_VER_ALLOWED_OFFSET$ac_delim
-+AC_LUSTRE_LIB_VER_OFFSET_WARN!$AC_LUSTRE_LIB_VER_OFFSET_WARN$ac_delim
-+AC_LUSTRE_CLI_VER_OFFSET_WARN!$AC_LUSTRE_CLI_VER_OFFSET_WARN$ac_delim
-+AC_LUSTRE_CLIENT_URN!$AC_LUSTRE_CLIENT_URN$ac_delim
-+AC_LUSTRE_MDS_URN!$AC_LUSTRE_MDS_URN$ac_delim
-+AC_LUSTRE_MGS_URN!$AC_LUSTRE_MGS_URN$ac_delim
-+AC_LUSTRE_OSS_URN!$AC_LUSTRE_OSS_URN$ac_delim
-+LDISKFS_ENABLED_TRUE!$LDISKFS_ENABLED_TRUE$ac_delim
-+LDISKFS_ENABLED_FALSE!$LDISKFS_ENABLED_FALSE$ac_delim
-+build!$build$ac_delim
-+build_cpu!$build_cpu$ac_delim
-+build_vendor!$build_vendor$ac_delim
-+build_os!$build_os$ac_delim
-+host!$host$ac_delim
-+host_cpu!$host_cpu$ac_delim
-+host_vendor!$host_vendor$ac_delim
-+host_os!$host_os$ac_delim
-+target!$target$ac_delim
-+target_cpu!$target_cpu$ac_delim
-+target_vendor!$target_vendor$ac_delim
-+target_os!$target_os$ac_delim
-+INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
-+INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
-+INSTALL_DATA!$INSTALL_DATA$ac_delim
-+CYGPATH_W!$CYGPATH_W$ac_delim
-+PACKAGE!$PACKAGE$ac_delim
-+VERSION!$VERSION$ac_delim
-+ACLOCAL!$ACLOCAL$ac_delim
-+AUTOCONF!$AUTOCONF$ac_delim
-+AUTOMAKE!$AUTOMAKE$ac_delim
-+AUTOHEADER!$AUTOHEADER$ac_delim
-+MAKEINFO!$MAKEINFO$ac_delim
-+AMTAR!$AMTAR$ac_delim
-+install_sh!$install_sh$ac_delim
-+STRIP!$STRIP$ac_delim
-+INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim
-+AWK!$AWK$ac_delim
-+SET_MAKE!$SET_MAKE$ac_delim
-+am__leading_dot!$am__leading_dot$ac_delim
-+CC!$CC$ac_delim
-+CFLAGS!$CFLAGS$ac_delim
-+LDFLAGS!$LDFLAGS$ac_delim
-+CPPFLAGS!$CPPFLAGS$ac_delim
-+ac_ct_CC!$ac_ct_CC$ac_delim
-+EXEEXT!$EXEEXT$ac_delim
-+OBJEXT!$OBJEXT$ac_delim
-+DEPDIR!$DEPDIR$ac_delim
-+am__include!$am__include$ac_delim
-+am__quote!$am__quote$ac_delim
-+AMDEP_TRUE!$AMDEP_TRUE$ac_delim
-+AMDEP_FALSE!$AMDEP_FALSE$ac_delim
-+AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim
-+CCDEPMODE!$CCDEPMODE$ac_delim
-+am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim
-+am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim
-+_ACEOF
-+
-+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
-+    break
-+  elif $ac_last_try; then
-+    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
-+echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
-+   { (exit 1); exit 1; }; }
-+  else
-+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-+  fi
-+done
-+
-+ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
-+if test -n "$ac_eof"; then
-+  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
-+  ac_eof=`expr $ac_eof + 1`
-+fi
-+
-+cat >>$CONFIG_STATUS <<_ACEOF
-+cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof
-+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-+_ACEOF
-+sed '
-+s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
-+s/^/s,@/; s/!/@,|#_!!_#|/
-+:n
-+t n
-+s/'"$ac_delim"'$/,g/; t
-+s/$/\\/; p
-+N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
-+' >>$CONFIG_STATUS <conf$$subs.sed
-+rm -f conf$$subs.sed
-+cat >>$CONFIG_STATUS <<_ACEOF
-+CEOF$ac_eof
-+_ACEOF
-+
-+
-+ac_delim='%!_!# '
-+for ac_last_try in false false false false false :; do
-+  cat >conf$$subs.sed <<_ACEOF
-+lb_target_os!$lb_target_os$ac_delim
-+LIBCFS_SUBDIR!$LIBCFS_SUBDIR$ac_delim
-+LIBCFS_INCLUDE_DIR!$LIBCFS_INCLUDE_DIR$ac_delim
-+INCLUDE_RULES!$INCLUDE_RULES$ac_delim
-+LUSTRE!$LUSTRE$ac_delim
-+rootsbindir!$rootsbindir$ac_delim
-+demodir!$demodir$ac_delim
-+pkgexampledir!$pkgexampledir$ac_delim
-+RANLIB!$RANLIB$ac_delim
-+CPP!$CPP$ac_delim
-+GREP!$GREP$ac_delim
-+EGREP!$EGREP$ac_delim
-+LLCPPFLAGS!$LLCPPFLAGS$ac_delim
-+LLCFLAGS!$LLCFLAGS$ac_delim
-+EXTRA_KCFLAGS!$EXTRA_KCFLAGS$ac_delim
-+enable_uoss!$enable_uoss$ac_delim
-+POSIX_OSD_ENABLED_TRUE!$POSIX_OSD_ENABLED_TRUE$ac_delim
-+POSIX_OSD_ENABLED_FALSE!$POSIX_OSD_ENABLED_FALSE$ac_delim
-+ENABLE_DOC!$ENABLE_DOC$ac_delim
-+ENABLE_INIT_SCRIPTS!$ENABLE_INIT_SCRIPTS$ac_delim
-+LINUX!$LINUX$ac_delim
-+LINUX_OBJ!$LINUX_OBJ$ac_delim
-+LINUX_CONFIG!$LINUX_CONFIG$ac_delim
-+ARCH_UM!$ARCH_UM$ac_delim
-+UML_CFLAGS!$UML_CFLAGS$ac_delim
-+MODULE_TARGET!$MODULE_TARGET$ac_delim
-+linux25!$linux25$ac_delim
-+KMODEXT!$KMODEXT$ac_delim
-+LINUXRELEASE!$LINUXRELEASE$ac_delim
-+moduledir!$moduledir$ac_delim
-+modulefsdir!$modulefsdir$ac_delim
-+modulenetdir!$modulenetdir$ac_delim
-+RELEASE!$RELEASE$ac_delim
-+SYMVERFILE!$SYMVERFILE$ac_delim
-+QSWCPPFLAGS!$QSWCPPFLAGS$ac_delim
-+QSWLND!$QSWLND$ac_delim
-+GMCPPFLAGS!$GMCPPFLAGS$ac_delim
-+GMLIBS!$GMLIBS$ac_delim
-+GMLND!$GMLND$ac_delim
-+OPENIBCPPFLAGS!$OPENIBCPPFLAGS$ac_delim
-+OPENIBLND!$OPENIBLND$ac_delim
-+CIBCPPFLAGS!$CIBCPPFLAGS$ac_delim
-+CIBLND!$CIBLND$ac_delim
-+VIBCPPFLAGS!$VIBCPPFLAGS$ac_delim
-+VIBLND!$VIBLND$ac_delim
-+IIBCPPFLAGS!$IIBCPPFLAGS$ac_delim
-+IIBLND!$IIBLND$ac_delim
-+EXTRA_LNET_INCLUDE!$EXTRA_LNET_INCLUDE$ac_delim
-+O2IBCPPFLAGS!$O2IBCPPFLAGS$ac_delim
-+O2IBLND!$O2IBLND$ac_delim
-+RACPPFLAGS!$RACPPFLAGS$ac_delim
-+RALND!$RALND$ac_delim
-+PTLLNDCPPFLAGS!$PTLLNDCPPFLAGS$ac_delim
-+PTLLND!$PTLLND$ac_delim
-+MXCPPFLAGS!$MXCPPFLAGS$ac_delim
-+MXLIBS!$MXLIBS$ac_delim
-+MXLND!$MXLND$ac_delim
-+BACKINGFS!$BACKINGFS$ac_delim
-+DMU_SRC!$DMU_SRC$ac_delim
-+subdirs!$subdirs$ac_delim
-+SPL_SUBDIR!$SPL_SUBDIR$ac_delim
-+ZFS_SUBDIR!$ZFS_SUBDIR$ac_delim
-+SPL_DIR!$SPL_DIR$ac_delim
-+ZFS_DIR!$ZFS_DIR$ac_delim
-+DMU_OSD_ENABLED_TRUE!$DMU_OSD_ENABLED_TRUE$ac_delim
-+DMU_OSD_ENABLED_FALSE!$DMU_OSD_ENABLED_FALSE$ac_delim
-+KDMU_TRUE!$KDMU_TRUE$ac_delim
-+KDMU_FALSE!$KDMU_FALSE$ac_delim
-+SNMP_DIST_SUBDIR!$SNMP_DIST_SUBDIR$ac_delim
-+SNMP_SUBDIR!$SNMP_SUBDIR$ac_delim
-+LDISKFS_DIR!$LDISKFS_DIR$ac_delim
-+LDISKFS_SUBDIR!$LDISKFS_SUBDIR$ac_delim
-+LDISKFS_IN_KERNEL_TRUE!$LDISKFS_IN_KERNEL_TRUE$ac_delim
-+LDISKFS_IN_KERNEL_FALSE!$LDISKFS_IN_KERNEL_FALSE$ac_delim
-+LUSTREIOKIT_SUBDIR!$LUSTREIOKIT_SUBDIR$ac_delim
-+MPICC_WRAPPER!$MPICC_WRAPPER$ac_delim
-+LIBREADLINE!$LIBREADLINE$ac_delim
-+LIBEFENCE!$LIBEFENCE$ac_delim
-+LIBWRAP!$LIBWRAP$ac_delim
-+PTHREAD_LIBS!$PTHREAD_LIBS$ac_delim
-+ENABLE_LIBPTHREAD!$ENABLE_LIBPTHREAD$ac_delim
-+CAP_LIBS!$CAP_LIBS$ac_delim
-+UPTLLND!$UPTLLND$ac_delim
-+USOCKLND!$USOCKLND$ac_delim
-+ZLIB!$ZLIB$ac_delim
-+NET_SNMP_CONFIG!$NET_SNMP_CONFIG$ac_delim
-+NET_SNMP_CFLAGS!$NET_SNMP_CFLAGS$ac_delim
-+NET_SNMP_LIBS!$NET_SNMP_LIBS$ac_delim
-+agentdir!$agentdir$ac_delim
-+mibdir!$mibdir$ac_delim
-+MODULES_TRUE!$MODULES_TRUE$ac_delim
-+MODULES_FALSE!$MODULES_FALSE$ac_delim
-+UTILS_TRUE!$UTILS_TRUE$ac_delim
-+UTILS_FALSE!$UTILS_FALSE$ac_delim
-+TESTS_TRUE!$TESTS_TRUE$ac_delim
-+TESTS_FALSE!$TESTS_FALSE$ac_delim
-+DOC_TRUE!$DOC_TRUE$ac_delim
-+_ACEOF
-+
-+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
-+    break
-+  elif $ac_last_try; then
-+    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
-+echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
-+   { (exit 1); exit 1; }; }
-+  else
-+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-+  fi
-+done
-+
-+ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
-+if test -n "$ac_eof"; then
-+  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
-+  ac_eof=`expr $ac_eof + 1`
-+fi
-+
-+cat >>$CONFIG_STATUS <<_ACEOF
-+cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof
-+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-+_ACEOF
-+sed '
-+s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
-+s/^/s,@/; s/!/@,|#_!!_#|/
-+:n
-+t n
-+s/'"$ac_delim"'$/,g/; t
-+s/$/\\/; p
-+N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
-+' >>$CONFIG_STATUS <conf$$subs.sed
-+rm -f conf$$subs.sed
-+cat >>$CONFIG_STATUS <<_ACEOF
-+CEOF$ac_eof
-+_ACEOF
-+
-+
-+ac_delim='%!_!# '
-+for ac_last_try in false false false false false :; do
-+  cat >conf$$subs.sed <<_ACEOF
-+DOC_FALSE!$DOC_FALSE$ac_delim
-+INIT_SCRIPTS_TRUE!$INIT_SCRIPTS_TRUE$ac_delim
-+INIT_SCRIPTS_FALSE!$INIT_SCRIPTS_FALSE$ac_delim
-+LINUX_TRUE!$LINUX_TRUE$ac_delim
-+LINUX_FALSE!$LINUX_FALSE$ac_delim
-+DARWIN_TRUE!$DARWIN_TRUE$ac_delim
-+DARWIN_FALSE!$DARWIN_FALSE$ac_delim
-+CRAY_XT3_TRUE!$CRAY_XT3_TRUE$ac_delim
-+CRAY_XT3_FALSE!$CRAY_XT3_FALSE$ac_delim
-+SUNOS_TRUE!$SUNOS_TRUE$ac_delim
-+SUNOS_FALSE!$SUNOS_FALSE$ac_delim
-+LIBSYSIO_SUBDIR!$LIBSYSIO_SUBDIR$ac_delim
-+SYSIO!$SYSIO$ac_delim
-+LINUX25_TRUE!$LINUX25_TRUE$ac_delim
-+LINUX25_FALSE!$LINUX25_FALSE$ac_delim
-+BUILD_QSWLND_TRUE!$BUILD_QSWLND_TRUE$ac_delim
-+BUILD_QSWLND_FALSE!$BUILD_QSWLND_FALSE$ac_delim
-+BUILD_GMLND_TRUE!$BUILD_GMLND_TRUE$ac_delim
-+BUILD_GMLND_FALSE!$BUILD_GMLND_FALSE$ac_delim
-+BUILD_MXLND_TRUE!$BUILD_MXLND_TRUE$ac_delim
-+BUILD_MXLND_FALSE!$BUILD_MXLND_FALSE$ac_delim
-+BUILD_O2IBLND_TRUE!$BUILD_O2IBLND_TRUE$ac_delim
-+BUILD_O2IBLND_FALSE!$BUILD_O2IBLND_FALSE$ac_delim
-+BUILD_OPENIBLND_TRUE!$BUILD_OPENIBLND_TRUE$ac_delim
-+BUILD_OPENIBLND_FALSE!$BUILD_OPENIBLND_FALSE$ac_delim
-+BUILD_CIBLND_TRUE!$BUILD_CIBLND_TRUE$ac_delim
-+BUILD_CIBLND_FALSE!$BUILD_CIBLND_FALSE$ac_delim
-+BUILD_IIBLND_TRUE!$BUILD_IIBLND_TRUE$ac_delim
-+BUILD_IIBLND_FALSE!$BUILD_IIBLND_FALSE$ac_delim
-+BUILD_VIBLND_TRUE!$BUILD_VIBLND_TRUE$ac_delim
-+BUILD_VIBLND_FALSE!$BUILD_VIBLND_FALSE$ac_delim
-+BUILD_RALND_TRUE!$BUILD_RALND_TRUE$ac_delim
-+BUILD_RALND_FALSE!$BUILD_RALND_FALSE$ac_delim
-+BUILD_PTLLND_TRUE!$BUILD_PTLLND_TRUE$ac_delim
-+BUILD_PTLLND_FALSE!$BUILD_PTLLND_FALSE$ac_delim
-+BUILD_UPTLLND_TRUE!$BUILD_UPTLLND_TRUE$ac_delim
-+BUILD_UPTLLND_FALSE!$BUILD_UPTLLND_FALSE$ac_delim
-+BUILD_USOCKLND_TRUE!$BUILD_USOCKLND_TRUE$ac_delim
-+BUILD_USOCKLND_FALSE!$BUILD_USOCKLND_FALSE$ac_delim
-+LIBLUSTRE_TRUE!$LIBLUSTRE_TRUE$ac_delim
-+LIBLUSTRE_FALSE!$LIBLUSTRE_FALSE$ac_delim
-+USE_QUILT_TRUE!$USE_QUILT_TRUE$ac_delim
-+USE_QUILT_FALSE!$USE_QUILT_FALSE$ac_delim
-+LIBLUSTRE_TESTS_TRUE!$LIBLUSTRE_TESTS_TRUE$ac_delim
-+LIBLUSTRE_TESTS_FALSE!$LIBLUSTRE_TESTS_FALSE$ac_delim
-+MPITESTS_TRUE!$MPITESTS_TRUE$ac_delim
-+MPITESTS_FALSE!$MPITESTS_FALSE$ac_delim
-+CLIENT_TRUE!$CLIENT_TRUE$ac_delim
-+CLIENT_FALSE!$CLIENT_FALSE$ac_delim
-+SERVER_TRUE!$SERVER_TRUE$ac_delim
-+SERVER_FALSE!$SERVER_FALSE$ac_delim
-+QUOTA_TRUE!$QUOTA_TRUE$ac_delim
-+QUOTA_FALSE!$QUOTA_FALSE$ac_delim
-+BLKID_TRUE!$BLKID_TRUE$ac_delim
-+BLKID_FALSE!$BLKID_FALSE$ac_delim
-+EXT2FS_DEVEL_TRUE!$EXT2FS_DEVEL_TRUE$ac_delim
-+EXT2FS_DEVEL_FALSE!$EXT2FS_DEVEL_FALSE$ac_delim
-+LIBPTHREAD_TRUE!$LIBPTHREAD_TRUE$ac_delim
-+LIBPTHREAD_FALSE!$LIBPTHREAD_FALSE$ac_delim
-+ac_configure_args!$ac_configure_args$ac_delim
-+MOSTLYCLEANFILES!$MOSTLYCLEANFILES$ac_delim
-+LIB@&t at OBJS!$LIB@&t at OBJS$ac_delim
-+LTLIBOBJS!$LTLIBOBJS$ac_delim
-+_ACEOF
-+
-+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 63; then
-+    break
-+  elif $ac_last_try; then
-+    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
-+echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
-+   { (exit 1); exit 1; }; }
-+  else
-+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-+  fi
-+done
-+
-+ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
-+if test -n "$ac_eof"; then
-+  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
-+  ac_eof=`expr $ac_eof + 1`
-+fi
-+
-+cat >>$CONFIG_STATUS <<_ACEOF
-+cat >"\$tmp/subs-3.sed" <<\CEOF$ac_eof
-+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end
-+_ACEOF
-+sed '
-+s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
-+s/^/s,@/; s/!/@,|#_!!_#|/
-+:n
-+t n
-+s/'"$ac_delim"'$/,g/; t
-+s/$/\\/; p
-+N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
-+' >>$CONFIG_STATUS <conf$$subs.sed
-+rm -f conf$$subs.sed
-+cat >>$CONFIG_STATUS <<_ACEOF
-+:end
-+s/|#_!!_#|//g
-+CEOF$ac_eof
-+_ACEOF
-+
-+
-+# VPATH may cause trouble with some makes, so we remove $(srcdir),
-+# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
-+# trailing colons and then remove the whole line if VPATH becomes empty
-+# (actually we leave an empty line to preserve line numbers).
-+if test "x$srcdir" = x.; then
-+  ac_vpsub='/^[	 ]*VPATH[	 ]*=/{
-+s/:*\$(srcdir):*/:/
-+s/:*\${srcdir}:*/:/
-+s/:*@srcdir@:*/:/
-+s/^\([^=]*=[	 ]*\):*/\1/
-+s/:*$//
-+s/^[^=]*=[	 ]*$//
-+}'
-+fi
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+fi # test -n "$CONFIG_FILES"
-+
-+
-+for ac_tag in  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS
-+do
-+  case $ac_tag in
-+  :[FHLC]) ac_mode=$ac_tag; continue;;
-+  esac
-+  case $ac_mode$ac_tag in
-+  :[FHL]*:*);;
-+  :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
-+echo "$as_me: error: Invalid tag $ac_tag." >&2;}
-+   { (exit 1); exit 1; }; };;
-+  :[FH]-) ac_tag=-:-;;
-+  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
-+  esac
-+  ac_save_IFS=$IFS
-+  IFS=:
-+  set x $ac_tag
-+  IFS=$ac_save_IFS
-+  shift
-+  ac_file=$1
-+  shift
-+
-+  case $ac_mode in
-+  :L) ac_source=$1;;
-+  :[FH])
-+    ac_file_inputs=
-+    for ac_f
-+    do
-+      case $ac_f in
-+      -) ac_f="$tmp/stdin";;
-+      *) # Look for the file first in the build tree, then in the source tree
-+	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
-+	 # because $ac_f cannot contain `:'.
-+	 test -f "$ac_f" ||
-+	   case $ac_f in
-+	   [\\/$]*) false;;
-+	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
-+	   esac ||
-+	   { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
-+echo "$as_me: error: cannot find input file: $ac_f" >&2;}
-+   { (exit 1); exit 1; }; };;
-+      esac
-+      ac_file_inputs="$ac_file_inputs $ac_f"
-+    done
-+
-+    # Let's still pretend it is `configure' which instantiates (i.e., don't
-+    # use $as_me), people would be surprised to read:
-+    #    /* config.h.  Generated by config.status.  */
-+    configure_input="Generated from "`IFS=:
-+	  echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure."
-+    if test x"$ac_file" != x-; then
-+      configure_input="$ac_file.  $configure_input"
-+      { echo "$as_me:$LINENO: creating $ac_file" >&5
-+echo "$as_me: creating $ac_file" >&6;}
-+    fi
-+
-+    case $ac_tag in
-+    *:-:* | *:-) cat >"$tmp/stdin";;
-+    esac
-+    ;;
-+  esac
-+
-+  ac_dir=`$as_dirname -- "$ac_file" ||
-+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$ac_file" : 'X\(//\)[^/]' \| \
-+	 X"$ac_file" : 'X\(//\)$' \| \
-+	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$ac_file" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+  { as_dir="$ac_dir"
-+  case $as_dir in #(
-+  -*) as_dir=./$as_dir;;
-+  esac
-+  test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
-+    as_dirs=
-+    while :; do
-+      case $as_dir in #(
-+      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
-+      *) as_qdir=$as_dir;;
-+      esac
-+      as_dirs="'$as_qdir' $as_dirs"
-+      as_dir=`$as_dirname -- "$as_dir" ||
-+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$as_dir" : 'X\(//\)[^/]' \| \
-+	 X"$as_dir" : 'X\(//\)$' \| \
-+	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$as_dir" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+      test -d "$as_dir" && break
-+    done
-+    test -z "$as_dirs" || eval "mkdir $as_dirs"
-+  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
-+echo "$as_me: error: cannot create directory $as_dir" >&2;}
-+   { (exit 1); exit 1; }; }; }
-+  ac_builddir=.
-+
-+case "$ac_dir" in
-+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+*)
-+  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
-+  # A ".." for each directory in $ac_dir_suffix.
-+  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
-+  case $ac_top_builddir_sub in
-+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
-+  esac ;;
-+esac
-+ac_abs_top_builddir=$ac_pwd
-+ac_abs_builddir=$ac_pwd$ac_dir_suffix
-+# for backward compatibility:
-+ac_top_builddir=$ac_top_build_prefix
-+
-+case $srcdir in
-+  .)  # We are building in place.
-+    ac_srcdir=.
-+    ac_top_srcdir=$ac_top_builddir_sub
-+    ac_abs_top_srcdir=$ac_pwd ;;
-+  [\\/]* | ?:[\\/]* )  # Absolute name.
-+    ac_srcdir=$srcdir$ac_dir_suffix;
-+    ac_top_srcdir=$srcdir
-+    ac_abs_top_srcdir=$srcdir ;;
-+  *) # Relative name.
-+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
-+    ac_top_srcdir=$ac_top_build_prefix$srcdir
-+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-+esac
-+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-+
-+
-+  case $ac_mode in
-+  :F)
-+  #
-+  # CONFIG_FILE
-+  #
-+
-+  case $INSTALL in
-+  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
-+  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
-+  esac
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+# If the template does not know about datarootdir, expand it.
-+# FIXME: This hack should be removed a few years after 2.60.
-+ac_datarootdir_hack=; ac_datarootdir_seen=
-+
-+case `sed -n '/datarootdir/ {
-+  p
-+  q
-+}
-+/@datadir@/p
-+/@docdir@/p
-+/@infodir@/p
-+/@localedir@/p
-+/@mandir@/p
-+' $ac_file_inputs` in
-+*datarootdir*) ac_datarootdir_seen=yes;;
-+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
-+  { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
-+echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF
-+  ac_datarootdir_hack='
-+  s&@datadir@&$datadir&g
-+  s&@docdir@&$docdir&g
-+  s&@infodir@&$infodir&g
-+  s&@localedir@&$localedir&g
-+  s&@mandir@&$mandir&g
-+    s&\\\${datarootdir}&$datarootdir&g' ;;
-+esac
-+_ACEOF
-+
-+# Neutralize VPATH when `$srcdir' = `.'.
-+# Shell code in configure.ac might set extrasub.
-+# FIXME: do we really want to maintain this feature?
-+cat >>$CONFIG_STATUS <<_ACEOF
-+  sed "$ac_vpsub
-+$extrasub
-+_ACEOF
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+:t
-+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-+s&@configure_input@&$configure_input&;t t
-+s&@top_builddir@&$ac_top_builddir_sub&;t t
-+s&@srcdir@&$ac_srcdir&;t t
-+s&@abs_srcdir@&$ac_abs_srcdir&;t t
-+s&@top_srcdir@&$ac_top_srcdir&;t t
-+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
-+s&@builddir@&$ac_builddir&;t t
-+s&@abs_builddir@&$ac_abs_builddir&;t t
-+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
-+s&@INSTALL@&$ac_INSTALL&;t t
-+$ac_datarootdir_hack
-+" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" | sed -f "$tmp/subs-3.sed" >$tmp/out
-+
-+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
-+  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
-+  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
-+  { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-+which seems to be undefined.  Please make sure it is defined." >&5
-+echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-+which seems to be undefined.  Please make sure it is defined." >&2;}
-+
-+  rm -f "$tmp/stdin"
-+  case $ac_file in
-+  -) cat "$tmp/out"; rm -f "$tmp/out";;
-+  *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
-+  esac
-+ ;;
-+  :H)
-+  #
-+  # CONFIG_HEADER
-+  #
-+_ACEOF
-+
-+# Transform confdefs.h into a sed script `conftest.defines', that
-+# substitutes the proper values into config.h.in to produce config.h.
-+rm -f conftest.defines conftest.tail
-+# First, append a space to every undef/define line, to ease matching.
-+echo 's/$/ /' >conftest.defines
-+# Then, protect against being on the right side of a sed subst, or in
-+# an unquoted here document, in config.status.  If some macros were
-+# called several times there might be several #defines for the same
-+# symbol, which is useless.  But do not sort them, since the last
-+# AC_DEFINE must be honored.
-+ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
-+# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where
-+# NAME is the cpp macro being defined, VALUE is the value it is being given.
-+# PARAMS is the parameter list in the macro definition--in most cases, it's
-+# just an empty string.
-+ac_dA='s,^\\([	 #]*\\)[^	 ]*\\([	 ]*'
-+ac_dB='\\)[	 (].*,\\1define\\2'
-+ac_dC=' '
-+ac_dD=' ,'
-+
-+uniq confdefs.h |
-+  sed -n '
-+	t rset
-+	:rset
-+	s/^[	 ]*#[	 ]*define[	 ][	 ]*//
-+	t ok
-+	d
-+	:ok
-+	s/[\\&,]/\\&/g
-+	s/^\('"$ac_word_re"'\)\(([^()]*)\)[	 ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p
-+	s/^\('"$ac_word_re"'\)[	 ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p
-+  ' >>conftest.defines
-+
-+# Remove the space that was appended to ease matching.
-+# Then replace #undef with comments.  This is necessary, for
-+# example, in the case of _POSIX_SOURCE, which is predefined and required
-+# on some systems where configure will not decide to define it.
-+# (The regexp can be short, since the line contains either #define or #undef.)
-+echo 's/ $//
-+s,^[	 #]*u.*,/* & */,' >>conftest.defines
-+
-+# Break up conftest.defines:
-+ac_max_sed_lines=50
-+
-+# First sed command is:	 sed -f defines.sed $ac_file_inputs >"$tmp/out1"
-+# Second one is:	 sed -f defines.sed "$tmp/out1" >"$tmp/out2"
-+# Third one will be:	 sed -f defines.sed "$tmp/out2" >"$tmp/out1"
-+# et cetera.
-+ac_in='$ac_file_inputs'
-+ac_out='"$tmp/out1"'
-+ac_nxt='"$tmp/out2"'
-+
-+while :
-+do
-+  # Write a here document:
-+    cat >>$CONFIG_STATUS <<_ACEOF
-+    # First, check the format of the line:
-+    cat >"\$tmp/defines.sed" <<\\CEOF
-+/^[	 ]*#[	 ]*undef[	 ][	 ]*$ac_word_re[	 ]*\$/b def
-+/^[	 ]*#[	 ]*define[	 ][	 ]*$ac_word_re[(	 ]/b def
-+b
-+:def
-+_ACEOF
-+  sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS
-+  echo 'CEOF
-+    sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS
-+  ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in
-+  sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail
-+  grep . conftest.tail >/dev/null || break
-+  rm -f conftest.defines
-+  mv conftest.tail conftest.defines
-+done
-+rm -f conftest.defines conftest.tail
-+
-+echo "ac_result=$ac_in" >>$CONFIG_STATUS
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+  if test x"$ac_file" != x-; then
-+    echo "/* $configure_input  */" >"$tmp/config.h"
-+    cat "$ac_result" >>"$tmp/config.h"
-+    if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then
-+      { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
-+echo "$as_me: $ac_file is unchanged" >&6;}
-+    else
-+      rm -f $ac_file
-+      mv "$tmp/config.h" $ac_file
-+    fi
-+  else
-+    echo "/* $configure_input  */"
-+    cat "$ac_result"
-+  fi
-+  rm -f "$tmp/out12"
-+# Compute $ac_file's index in $config_headers.
-+_am_stamp_count=1
-+for _am_header in $config_headers :; do
-+  case $_am_header in
-+    $ac_file | $ac_file:* )
-+      break ;;
-+    * )
-+      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
-+  esac
-+done
-+echo "timestamp for $ac_file" >`$as_dirname -- $ac_file ||
-+$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X$ac_file : 'X\(//\)[^/]' \| \
-+	 X$ac_file : 'X\(//\)$' \| \
-+	 X$ac_file : 'X\(/\)' \| . 2>/dev/null ||
-+echo X$ac_file |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`/stamp-h$_am_stamp_count
-+ ;;
-+  
-+  :C)  { echo "$as_me:$LINENO: executing $ac_file commands" >&5
-+echo "$as_me: executing $ac_file commands" >&6;}
-+ ;;
-+  esac
-+
-+
-+  case $ac_file$ac_mode in
-+    "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
-+  # Strip MF so we end up with the name of the file.
-+  mf=`echo "$mf" | sed -e 's/:.*$//'`
-+  # Check whether this is an Automake generated Makefile or not.
-+  # We used to match only the files named `Makefile.in', but
-+  # some people rename them; so instead we look at the file content.
-+  # Grep'ing the first line is not enough: some people post-process
-+  # each Makefile.in and add a new line on top of each file to say so.
-+  # So let's grep whole file.
-+  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
-+    dirpart=`$as_dirname -- "$mf" ||
-+$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$mf" : 'X\(//\)[^/]' \| \
-+	 X"$mf" : 'X\(//\)$' \| \
-+	 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$mf" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+  else
-+    continue
-+  fi
-+  grep '^DEP_FILES *= *[^ @%:@]' < "$mf" > /dev/null || continue
-+  # Extract the definition of DEP_FILES from the Makefile without
-+  # running `make'.
-+  DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
-+  test -z "$DEPDIR" && continue
-+  # When using ansi2knr, U may be empty or an underscore; expand it
-+  U=`sed -n -e '/^U = / s///p' < "$mf"`
-+  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
-+  # We invoke sed twice because it is the simplest approach to
-+  # changing $(DEPDIR) to its actual value in the expansion.
-+  for file in `sed -n -e '
-+    /^DEP_FILES = .*\\\\$/ {
-+      s/^DEP_FILES = //
-+      :loop
-+	s/\\\\$//
-+	p
-+	n
-+	/\\\\$/ b loop
-+      p
-+    }
-+    /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \
-+       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
-+    # Make sure the directory exists.
-+    test -f "$dirpart/$file" && continue
-+    fdir=`$as_dirname -- "$file" ||
-+$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$file" : 'X\(//\)[^/]' \| \
-+	 X"$file" : 'X\(//\)$' \| \
-+	 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$file" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+    { as_dir=$dirpart/$fdir
-+  case $as_dir in #(
-+  -*) as_dir=./$as_dir;;
-+  esac
-+  test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
-+    as_dirs=
-+    while :; do
-+      case $as_dir in #(
-+      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
-+      *) as_qdir=$as_dir;;
-+      esac
-+      as_dirs="'$as_qdir' $as_dirs"
-+      as_dir=`$as_dirname -- "$as_dir" ||
-+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$as_dir" : 'X\(//\)[^/]' \| \
-+	 X"$as_dir" : 'X\(//\)$' \| \
-+	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$as_dir" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+      test -d "$as_dir" && break
-+    done
-+    test -z "$as_dirs" || eval "mkdir $as_dirs"
-+  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
-+echo "$as_me: error: cannot create directory $as_dir" >&2;}
-+   { (exit 1); exit 1; }; }; }
-+    # echo "creating $dirpart/$file"
-+    echo '# dummy' > "$dirpart/$file"
-+  done
-+done
-+ ;;
-+
-+  esac
-+done # for ac_tag
-+
-+
-+{ (exit 0); exit 0; }
-+_ACEOF
-+chmod +x $CONFIG_STATUS
-+ac_clean_files=$ac_clean_files_save
-+
-+
-+# configure is writing to config.log, and then calls config.status.
-+# config.status does its own redirection, appending to config.log.
-+# Unfortunately, on DOS this fails, as config.log is still kept open
-+# by configure, so config.status won't be able to write to it; its
-+# output is simply discarded.  So we exec the FD to /dev/null,
-+# effectively closing config.log, so it can be properly (re)opened and
-+# appended to by config.status.  When coming back to configure, we
-+# need to make the FD available again.
-+if test "$no_create" != yes; then
-+  ac_cs_success=:
-+  ac_config_status_args=
-+  test "$silent" = yes &&
-+    ac_config_status_args="$ac_config_status_args --quiet"
-+  exec 5>/dev/null
-+  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
-+  exec 5>>config.log
-+  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
-+  # would make configure fail if this is the last instruction.
-+  $ac_cs_success || { (exit 1); exit 1; }
-+fi
-+
-+#
-+# CONFIG_SUBDIRS section.
-+#
-+if test "$no_recursion" != yes; then
-+
-+  # Remove --cache-file and --srcdir arguments so they do not pile up.
-+  ac_sub_configure_args=
-+  ac_prev=
-+  eval "set x $ac_configure_args"
-+  shift
-+  for ac_arg
-+  do
-+    if test -n "$ac_prev"; then
-+      ac_prev=
-+      continue
-+    fi
-+    case $ac_arg in
-+    -cache-file | --cache-file | --cache-fil | --cache-fi \
-+    | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
-+      ac_prev=cache_file ;;
-+    -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
-+    | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* \
-+    | --c=*)
-+      ;;
-+    --config-cache | -C)
-+      ;;
-+    -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
-+      ac_prev=srcdir ;;
-+    -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
-+      ;;
-+    -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
-+      ac_prev=prefix ;;
-+    -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
-+      ;;
-+    *)
-+      case $ac_arg in
-+      *\'*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
-+      esac
-+      ac_sub_configure_args="$ac_sub_configure_args '$ac_arg'" ;;
-+    esac
-+  done
-+
-+  # Always prepend --prefix to ensure using the same prefix
-+  # in subdir configurations.
-+  ac_arg="--prefix=$prefix"
-+  case $ac_arg in
-+  *\'*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
-+  esac
-+  ac_sub_configure_args="'$ac_arg' $ac_sub_configure_args"
-+
-+  # Pass --silent
-+  if test "$silent" = yes; then
-+    ac_sub_configure_args="--silent $ac_sub_configure_args"
-+  fi
-+
-+  ac_popdir=`pwd`
-+  for ac_dir in : $subdirs; do test "x$ac_dir" = x: && continue
-+
-+    # Do not complain, so a configure script can configure whichever
-+    # parts of a large source tree are present.
-+    test -d "$srcdir/$ac_dir" || continue
-+
-+    ac_msg="=== configuring in $ac_dir (`pwd`/$ac_dir)"
-+    echo "$as_me:$LINENO: $ac_msg" >&5
-+    echo "$ac_msg" >&6
-+    { as_dir="$ac_dir"
-+  case $as_dir in #(
-+  -*) as_dir=./$as_dir;;
-+  esac
-+  test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
-+    as_dirs=
-+    while :; do
-+      case $as_dir in #(
-+      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
-+      *) as_qdir=$as_dir;;
-+      esac
-+      as_dirs="'$as_qdir' $as_dirs"
-+      as_dir=`$as_dirname -- "$as_dir" ||
-+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$as_dir" : 'X\(//\)[^/]' \| \
-+	 X"$as_dir" : 'X\(//\)$' \| \
-+	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$as_dir" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+      test -d "$as_dir" && break
-+    done
-+    test -z "$as_dirs" || eval "mkdir $as_dirs"
-+  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
-+echo "$as_me: error: cannot create directory $as_dir" >&2;}
-+   { (exit 1); exit 1; }; }; }
-+    ac_builddir=.
-+
-+case "$ac_dir" in
-+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+*)
-+  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
-+  # A ".." for each directory in $ac_dir_suffix.
-+  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
-+  case $ac_top_builddir_sub in
-+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
-+  esac ;;
-+esac
-+ac_abs_top_builddir=$ac_pwd
-+ac_abs_builddir=$ac_pwd$ac_dir_suffix
-+# for backward compatibility:
-+ac_top_builddir=$ac_top_build_prefix
-+
-+case $srcdir in
-+  .)  # We are building in place.
-+    ac_srcdir=.
-+    ac_top_srcdir=$ac_top_builddir_sub
-+    ac_abs_top_srcdir=$ac_pwd ;;
-+  [\\/]* | ?:[\\/]* )  # Absolute name.
-+    ac_srcdir=$srcdir$ac_dir_suffix;
-+    ac_top_srcdir=$srcdir
-+    ac_abs_top_srcdir=$srcdir ;;
-+  *) # Relative name.
-+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
-+    ac_top_srcdir=$ac_top_build_prefix$srcdir
-+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-+esac
-+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-+
-+
-+    cd "$ac_dir"
-+
-+    # Check for guested configure; otherwise get Cygnus style configure.
-+    if test -f "$ac_srcdir/configure.gnu"; then
-+      ac_sub_configure=$ac_srcdir/configure.gnu
-+    elif test -f "$ac_srcdir/configure"; then
-+      ac_sub_configure=$ac_srcdir/configure
-+    elif test -f "$ac_srcdir/configure.in"; then
-+      # This should be Cygnus configure.
-+      ac_sub_configure=$ac_aux_dir/configure
-+    else
-+      { echo "$as_me:$LINENO: WARNING: no configuration information is in $ac_dir" >&5
-+echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2;}
-+      ac_sub_configure=
-+    fi
-+
-+    # The recursion is here.
-+    if test -n "$ac_sub_configure"; then
-+      # Make the cache file name correct relative to the subdirectory.
-+      case $cache_file in
-+      [\\/]* | ?:[\\/]* ) ac_sub_cache_file=$cache_file ;;
-+      *) # Relative name.
-+	ac_sub_cache_file=$ac_top_build_prefix$cache_file ;;
-+      esac
-+
-+      { echo "$as_me:$LINENO: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&5
-+echo "$as_me: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&6;}
-+      # The eval makes quoting arguments work.
-+      eval "\$SHELL \"\$ac_sub_configure\" $ac_sub_configure_args \
-+	   --cache-file=\"\$ac_sub_cache_file\" --srcdir=\"\$ac_srcdir\"" ||
-+	{ { echo "$as_me:$LINENO: error: $ac_sub_configure failed for $ac_dir" >&5
-+echo "$as_me: error: $ac_sub_configure failed for $ac_dir" >&2;}
-+   { (exit 1); exit 1; }; }
-+    fi
-+
-+    cd "$ac_popdir"
-+  done
-+fi
-+
-+
-+cat <<_ACEOF
-+
-+CC:            $CC
-+LD:            $LD
-+CPPFLAGS:      $CPPFLAGS
-+LLCPPFLAGS:    $LLCPPFLAGS
-+CFLAGS:        $CFLAGS
-+EXTRA_KCFLAGS: $EXTRA_KCFLAGS
-+LLCFLAGS:      $LLCFLAGS
-+
-+Type 'make' to build Lustre.
-+_ACEOF
-+
-diff -Nurwd orig/lustre-1.8.2/autom4te.cache/requests lustre-1.8.2/autom4te.cache/requests
---- orig/lustre-1.8.2/autom4te.cache/requests	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/autom4te.cache/requests	2010-03-03 16:00:15.640632502 +0000
-@@ -0,0 +1,64 @@
-+# This file was generated by Autom4te Mon Aug 11 20:59:21 PDT 2008.
-+# It contains the lists of macros which have been traced.
-+# It can be safely removed.
-+
-+ at request = (
-+             bless( [
-+                      '0',
-+                      1,
-+                      [
-+                        '/usr/share/autoconf'
-+                      ],
-+                      [
-+                        '/usr/share/autoconf/autoconf/autoconf.m4f',
-+                        'aclocal.m4',
-+                        'configure.ac'
-+                      ],
-+                      {
-+                        '_LT_AC_TAGCONFIG' => 1,
-+                        'AM_PROG_F77_C_O' => 1,
-+                        'AC_INIT' => 1,
-+                        'm4_pattern_forbid' => 1,
-+                        'AC_CANONICAL_TARGET' => 1,
-+                        'AC_SUBST' => 1,
-+                        'AC_CONFIG_LIBOBJ_DIR' => 1,
-+                        'AC_FC_SRCEXT' => 1,
-+                        'AC_CANONICAL_HOST' => 1,
-+                        'AC_PROG_LIBTOOL' => 1,
-+                        'AM_INIT_AUTOMAKE' => 1,
-+                        'AC_CONFIG_SUBDIRS' => 1,
-+                        'AM_AUTOMAKE_VERSION' => 1,
-+                        'LT_CONFIG_LTDL_DIR' => 1,
-+                        'AC_REQUIRE_AUX_FILE' => 1,
-+                        'AC_CONFIG_LINKS' => 1,
-+                        'm4_sinclude' => 1,
-+                        'LT_SUPPORTED_TAG' => 1,
-+                        'AM_MAINTAINER_MODE' => 1,
-+                        'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
-+                        '_m4_warn' => 1,
-+                        'AM_PROG_CXX_C_O' => 1,
-+                        'AM_ENABLE_MULTILIB' => 1,
-+                        'AC_CONFIG_FILES' => 1,
-+                        'include' => 1,
-+                        'LT_INIT' => 1,
-+                        'AM_GNU_GETTEXT' => 1,
-+                        'AC_LIBSOURCE' => 1,
-+                        'AM_PROG_FC_C_O' => 1,
-+                        'AC_CANONICAL_BUILD' => 1,
-+                        'AC_FC_FREEFORM' => 1,
-+                        'AH_OUTPUT' => 1,
-+                        '_AM_SUBST_NOTMAKE' => 1,
-+                        'AC_CONFIG_AUX_DIR' => 1,
-+                        'sinclude' => 1,
-+                        'AM_PROG_CC_C_O' => 1,
-+                        'm4_pattern_allow' => 1,
-+                        'AC_CANONICAL_SYSTEM' => 1,
-+                        'AM_CONDITIONAL' => 1,
-+                        'AC_CONFIG_HEADERS' => 1,
-+                        'AC_DEFINE_TRACE_LITERAL' => 1,
-+                        'm4_include' => 1,
-+                        'AC_SUBST_TRACE' => 1
-+                      }
-+                    ], 'Autom4te::Request' )
-+           );
-+
-diff -Nurwd orig/lustre-1.8.2/autom4te.cache/traces.0 lustre-1.8.2/autom4te.cache/traces.0
---- orig/lustre-1.8.2/autom4te.cache/traces.0	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/autom4te.cache/traces.0	2010-03-03 16:00:10.088633782 +0000
-@@ -0,0 +1,2468 @@
-+m4trace:aclocal.m4:6046: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
-+m4trace:configure.ac:2: -1- AC_INIT([Lustre], [LUSTRE_VERSION], [https://bugzilla.lustre.org/], [lustre])
-+m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?A[CHUM]_])
-+m4trace:configure.ac:2: -1- m4_pattern_forbid([_AC_])
-+m4trace:configure.ac:2: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^AS_FLAGS$])
-+m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?m4_])
-+m4trace:configure.ac:2: -1- m4_pattern_forbid([^dnl$])
-+m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?AS_])
-+m4trace:configure.ac:2: -1- AC_SUBST([SHELL], [${CONFIG_SHELL-/bin/sh}])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([SHELL])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^SHELL$])
-+m4trace:configure.ac:2: -1- AC_SUBST([PATH_SEPARATOR])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([PATH_SEPARATOR])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^PATH_SEPARATOR$])
-+m4trace:configure.ac:2: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME],      ['AC_PACKAGE_NAME'])])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([PACKAGE_NAME])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_NAME$])
-+m4trace:configure.ac:2: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME],   ['AC_PACKAGE_TARNAME'])])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([PACKAGE_TARNAME])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
-+m4trace:configure.ac:2: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION],   ['AC_PACKAGE_VERSION'])])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([PACKAGE_VERSION])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_VERSION$])
-+m4trace:configure.ac:2: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING],    ['AC_PACKAGE_STRING'])])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([PACKAGE_STRING])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_STRING$])
-+m4trace:configure.ac:2: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
-+m4trace:configure.ac:2: -1- AC_SUBST([exec_prefix], [NONE])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([exec_prefix])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^exec_prefix$])
-+m4trace:configure.ac:2: -1- AC_SUBST([prefix], [NONE])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([prefix])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^prefix$])
-+m4trace:configure.ac:2: -1- AC_SUBST([program_transform_name], [s,x,x,])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([program_transform_name])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^program_transform_name$])
-+m4trace:configure.ac:2: -1- AC_SUBST([bindir], ['${exec_prefix}/bin'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([bindir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^bindir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([sbindir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^sbindir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([libexecdir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^libexecdir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([datarootdir], ['${prefix}/share'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([datarootdir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^datarootdir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([datadir], ['${datarootdir}'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([datadir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^datadir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([sysconfdir], ['${prefix}/etc'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([sysconfdir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^sysconfdir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([sharedstatedir], ['${prefix}/com'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([sharedstatedir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^sharedstatedir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([localstatedir], ['${prefix}/var'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([localstatedir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^localstatedir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([includedir], ['${prefix}/include'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([includedir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^includedir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([oldincludedir], ['/usr/include'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([oldincludedir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^oldincludedir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME],
-+				     ['${datarootdir}/doc/${PACKAGE_TARNAME}'],
-+				     ['${datarootdir}/doc/${PACKAGE}'])])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([docdir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^docdir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([infodir], ['${datarootdir}/info'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([infodir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^infodir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([htmldir], ['${docdir}'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([htmldir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^htmldir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([dvidir], ['${docdir}'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([dvidir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^dvidir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([pdfdir], ['${docdir}'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([pdfdir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^pdfdir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([psdir], ['${docdir}'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([psdir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^psdir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([libdir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^libdir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([localedir], ['${datarootdir}/locale'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([localedir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^localedir$])
-+m4trace:configure.ac:2: -1- AC_SUBST([mandir], ['${datarootdir}/man'])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([mandir])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^mandir$])
-+m4trace:configure.ac:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_NAME$])
-+m4trace:configure.ac:2: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
-+#undef PACKAGE_NAME])
-+m4trace:configure.ac:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
-+m4trace:configure.ac:2: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
-+#undef PACKAGE_TARNAME])
-+m4trace:configure.ac:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_VERSION$])
-+m4trace:configure.ac:2: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
-+#undef PACKAGE_VERSION])
-+m4trace:configure.ac:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_STRING$])
-+m4trace:configure.ac:2: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
-+#undef PACKAGE_STRING])
-+m4trace:configure.ac:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
-+m4trace:configure.ac:2: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
-+#undef PACKAGE_BUGREPORT])
-+m4trace:configure.ac:2: -1- AC_SUBST([DEFS])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([DEFS])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^DEFS$])
-+m4trace:configure.ac:2: -1- AC_SUBST([ECHO_C])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([ECHO_C])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_C$])
-+m4trace:configure.ac:2: -1- AC_SUBST([ECHO_N])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([ECHO_N])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_N$])
-+m4trace:configure.ac:2: -1- AC_SUBST([ECHO_T])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([ECHO_T])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_T$])
-+m4trace:configure.ac:2: -1- AC_SUBST([LIBS])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([LIBS])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^LIBS$])
-+m4trace:configure.ac:2: -1- AC_SUBST([build_alias])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([build_alias])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^build_alias$])
-+m4trace:configure.ac:2: -1- AC_SUBST([host_alias])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([host_alias])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^host_alias$])
-+m4trace:configure.ac:2: -1- AC_SUBST([target_alias])
-+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([target_alias])
-+m4trace:configure.ac:2: -1- m4_pattern_allow([^target_alias$])
-+m4trace:configure.ac:3: -1- sinclude([lustre/autoconf/lustre-version.ac])
-+m4trace:lustre/autoconf/lustre-version.ac:23: -1- m4_pattern_allow([AC_LUSTRE])
-+m4trace:lustre/autoconf/lustre-version.ac:39: -1- AC_SUBST([AC_LUSTRE_MAJOR])
-+m4trace:lustre/autoconf/lustre-version.ac:39: -1- AC_SUBST_TRACE([AC_LUSTRE_MAJOR])
-+m4trace:lustre/autoconf/lustre-version.ac:39: -1- m4_pattern_allow([^AC_LUSTRE_MAJOR$])
-+m4trace:lustre/autoconf/lustre-version.ac:40: -1- AC_SUBST([AC_LUSTRE_MINOR])
-+m4trace:lustre/autoconf/lustre-version.ac:40: -1- AC_SUBST_TRACE([AC_LUSTRE_MINOR])
-+m4trace:lustre/autoconf/lustre-version.ac:40: -1- m4_pattern_allow([^AC_LUSTRE_MINOR$])
-+m4trace:lustre/autoconf/lustre-version.ac:41: -1- AC_SUBST([AC_LUSTRE_PATCH])
-+m4trace:lustre/autoconf/lustre-version.ac:41: -1- AC_SUBST_TRACE([AC_LUSTRE_PATCH])
-+m4trace:lustre/autoconf/lustre-version.ac:41: -1- m4_pattern_allow([^AC_LUSTRE_PATCH$])
-+m4trace:lustre/autoconf/lustre-version.ac:42: -1- AC_SUBST([AC_LUSTRE_FIX])
-+m4trace:lustre/autoconf/lustre-version.ac:42: -1- AC_SUBST_TRACE([AC_LUSTRE_FIX])
-+m4trace:lustre/autoconf/lustre-version.ac:42: -1- m4_pattern_allow([^AC_LUSTRE_FIX$])
-+m4trace:lustre/autoconf/lustre-version.ac:43: -1- AC_SUBST([AC_LUSTRE_VERSION_STRING])
-+m4trace:lustre/autoconf/lustre-version.ac:43: -1- AC_SUBST_TRACE([AC_LUSTRE_VERSION_STRING])
-+m4trace:lustre/autoconf/lustre-version.ac:43: -1- m4_pattern_allow([^AC_LUSTRE_VERSION_STRING$])
-+m4trace:lustre/autoconf/lustre-version.ac:44: -1- AC_SUBST([AC_LUSTRE_VER_ALLOWED_OFFSET])
-+m4trace:lustre/autoconf/lustre-version.ac:44: -1- AC_SUBST_TRACE([AC_LUSTRE_VER_ALLOWED_OFFSET])
-+m4trace:lustre/autoconf/lustre-version.ac:44: -1- m4_pattern_allow([^AC_LUSTRE_VER_ALLOWED_OFFSET$])
-+m4trace:lustre/autoconf/lustre-version.ac:45: -1- AC_SUBST([AC_LUSTRE_LIB_VER_OFFSET_WARN])
-+m4trace:lustre/autoconf/lustre-version.ac:45: -1- AC_SUBST_TRACE([AC_LUSTRE_LIB_VER_OFFSET_WARN])
-+m4trace:lustre/autoconf/lustre-version.ac:45: -1- m4_pattern_allow([^AC_LUSTRE_LIB_VER_OFFSET_WARN$])
-+m4trace:lustre/autoconf/lustre-version.ac:46: -1- AC_SUBST([AC_LUSTRE_CLI_VER_OFFSET_WARN])
-+m4trace:lustre/autoconf/lustre-version.ac:46: -1- AC_SUBST_TRACE([AC_LUSTRE_CLI_VER_OFFSET_WARN])
-+m4trace:lustre/autoconf/lustre-version.ac:46: -1- m4_pattern_allow([^AC_LUSTRE_CLI_VER_OFFSET_WARN$])
-+m4trace:lustre/autoconf/lustre-version.ac:47: -1- AC_SUBST([AC_LUSTRE_CLIENT_URN])
-+m4trace:lustre/autoconf/lustre-version.ac:47: -1- AC_SUBST_TRACE([AC_LUSTRE_CLIENT_URN])
-+m4trace:lustre/autoconf/lustre-version.ac:47: -1- m4_pattern_allow([^AC_LUSTRE_CLIENT_URN$])
-+m4trace:lustre/autoconf/lustre-version.ac:48: -1- AC_SUBST([AC_LUSTRE_MDS_URN])
-+m4trace:lustre/autoconf/lustre-version.ac:48: -1- AC_SUBST_TRACE([AC_LUSTRE_MDS_URN])
-+m4trace:lustre/autoconf/lustre-version.ac:48: -1- m4_pattern_allow([^AC_LUSTRE_MDS_URN$])
-+m4trace:lustre/autoconf/lustre-version.ac:49: -1- AC_SUBST([AC_LUSTRE_MGS_URN])
-+m4trace:lustre/autoconf/lustre-version.ac:49: -1- AC_SUBST_TRACE([AC_LUSTRE_MGS_URN])
-+m4trace:lustre/autoconf/lustre-version.ac:49: -1- m4_pattern_allow([^AC_LUSTRE_MGS_URN$])
-+m4trace:lustre/autoconf/lustre-version.ac:50: -1- AC_SUBST([AC_LUSTRE_OSS_URN])
-+m4trace:lustre/autoconf/lustre-version.ac:50: -1- AC_SUBST_TRACE([AC_LUSTRE_OSS_URN])
-+m4trace:lustre/autoconf/lustre-version.ac:50: -1- m4_pattern_allow([^AC_LUSTRE_OSS_URN$])
-+m4trace:configure.ac:6: -1- AM_CONDITIONAL([LDISKFS_ENABLED], [false])
-+m4trace:configure.ac:6: -1- AC_SUBST([LDISKFS_ENABLED_TRUE])
-+m4trace:configure.ac:6: -1- AC_SUBST_TRACE([LDISKFS_ENABLED_TRUE])
-+m4trace:configure.ac:6: -1- m4_pattern_allow([^LDISKFS_ENABLED_TRUE$])
-+m4trace:configure.ac:6: -1- AC_SUBST([LDISKFS_ENABLED_FALSE])
-+m4trace:configure.ac:6: -1- AC_SUBST_TRACE([LDISKFS_ENABLED_FALSE])
-+m4trace:configure.ac:6: -1- m4_pattern_allow([^LDISKFS_ENABLED_FALSE$])
-+m4trace:configure.ac:11: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:3055: LC_CONFIG_QUOTA is expanded from...
-+configure.ac:11: the top level])
-+m4trace:configure.ac:13: -1- AC_CANONICAL_SYSTEM
-+m4trace:configure.ac:13: -1- _m4_warn([obsolete], [The macro `AC_CANONICAL_SYSTEM' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:1747: AC_CANONICAL_SYSTEM is expanded from...
-+configure.ac:13: the top level])
-+m4trace:configure.ac:13: -1- AC_CANONICAL_TARGET
-+m4trace:configure.ac:13: -1- AC_CANONICAL_HOST
-+m4trace:configure.ac:13: -1- AC_CANONICAL_BUILD
-+m4trace:configure.ac:13: -1- AC_REQUIRE_AUX_FILE([config.sub])
-+m4trace:configure.ac:13: -1- AC_REQUIRE_AUX_FILE([config.guess])
-+m4trace:configure.ac:13: -1- AC_SUBST([build], [$ac_cv_build])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([build])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^build$])
-+m4trace:configure.ac:13: -1- AC_SUBST([build_cpu], [$[1]])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([build_cpu])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^build_cpu$])
-+m4trace:configure.ac:13: -1- AC_SUBST([build_vendor], [$[2]])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([build_vendor])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^build_vendor$])
-+m4trace:configure.ac:13: -1- AC_SUBST([build_os])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([build_os])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^build_os$])
-+m4trace:configure.ac:13: -1- AC_SUBST([host], [$ac_cv_host])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([host])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^host$])
-+m4trace:configure.ac:13: -1- AC_SUBST([host_cpu], [$[1]])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([host_cpu])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^host_cpu$])
-+m4trace:configure.ac:13: -1- AC_SUBST([host_vendor], [$[2]])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([host_vendor])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^host_vendor$])
-+m4trace:configure.ac:13: -1- AC_SUBST([host_os])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([host_os])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^host_os$])
-+m4trace:configure.ac:13: -1- AC_SUBST([target], [$ac_cv_target])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([target])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^target$])
-+m4trace:configure.ac:13: -1- AC_SUBST([target_cpu], [$[1]])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([target_cpu])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^target_cpu$])
-+m4trace:configure.ac:13: -1- AC_SUBST([target_vendor], [$[2]])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([target_vendor])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^target_vendor$])
-+m4trace:configure.ac:13: -1- AC_SUBST([target_os])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([target_os])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^target_os$])
-+m4trace:configure.ac:15: -1- AM_INIT_AUTOMAKE
-+m4trace:configure.ac:15: -1- AM_AUTOMAKE_VERSION([1.7.9])
-+m4trace:configure.ac:15: -1- AC_REQUIRE_AUX_FILE([install-sh])
-+m4trace:configure.ac:15: -1- AC_SUBST([INSTALL_PROGRAM])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([INSTALL_PROGRAM])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
-+m4trace:configure.ac:15: -1- AC_SUBST([INSTALL_SCRIPT])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([INSTALL_SCRIPT])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
-+m4trace:configure.ac:15: -1- AC_SUBST([INSTALL_DATA])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([INSTALL_DATA])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^INSTALL_DATA$])
-+m4trace:configure.ac:15: -1- AC_SUBST([CYGPATH_W])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([CYGPATH_W])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^CYGPATH_W$])
-+m4trace:configure.ac:15: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:196: AC_FOREACH is expanded from...
-+aclocal.m4:6206: _AM_SET_OPTIONS is expanded from...
-+aclocal.m4:6059: AM_INIT_AUTOMAKE is expanded from...
-+configure.ac:15: the top level])
-+m4trace:configure.ac:15: -1- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([PACKAGE])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^PACKAGE$])
-+m4trace:configure.ac:15: -1- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([VERSION])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^VERSION$])
-+m4trace:configure.ac:15: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^PACKAGE$])
-+m4trace:configure.ac:15: -1- AH_OUTPUT([PACKAGE], [/* Name of package */
-+#undef PACKAGE])
-+m4trace:configure.ac:15: -1- AC_DEFINE_TRACE_LITERAL([VERSION])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^VERSION$])
-+m4trace:configure.ac:15: -1- AH_OUTPUT([VERSION], [/* Version number of package */
-+#undef VERSION])
-+m4trace:configure.ac:15: -1- AC_SUBST([ACLOCAL])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([ACLOCAL])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^ACLOCAL$])
-+m4trace:configure.ac:15: -1- AC_SUBST([AUTOCONF])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([AUTOCONF])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^AUTOCONF$])
-+m4trace:configure.ac:15: -1- AC_SUBST([AUTOMAKE])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([AUTOMAKE])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^AUTOMAKE$])
-+m4trace:configure.ac:15: -1- AC_SUBST([AUTOHEADER])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([AUTOHEADER])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^AUTOHEADER$])
-+m4trace:configure.ac:15: -1- AC_SUBST([MAKEINFO])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([MAKEINFO])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^MAKEINFO$])
-+m4trace:configure.ac:15: -1- AC_SUBST([AMTAR])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([AMTAR])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^AMTAR$])
-+m4trace:configure.ac:15: -1- AC_SUBST([install_sh])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([install_sh])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^install_sh$])
-+m4trace:configure.ac:15: -1- AC_SUBST([STRIP])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([STRIP])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^STRIP$])
-+m4trace:configure.ac:15: -1- AC_SUBST([INSTALL_STRIP_PROGRAM])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([INSTALL_STRIP_PROGRAM])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
-+m4trace:configure.ac:15: -1- AC_SUBST([AWK])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([AWK])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^AWK$])
-+m4trace:configure.ac:15: -1- AC_SUBST([SET_MAKE])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([SET_MAKE])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^SET_MAKE$])
-+m4trace:configure.ac:15: -1- AC_SUBST([am__leading_dot])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([am__leading_dot])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^am__leading_dot$])
-+m4trace:configure.ac:18: -1- AC_SUBST([CC])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.ac:18: -1- AC_SUBST([CFLAGS])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([CFLAGS])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^CFLAGS$])
-+m4trace:configure.ac:18: -1- AC_SUBST([LDFLAGS])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([LDFLAGS])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^LDFLAGS$])
-+m4trace:configure.ac:18: -1- AC_SUBST([LIBS])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([LIBS])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^LIBS$])
-+m4trace:configure.ac:18: -1- AC_SUBST([CPPFLAGS])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([CPPFLAGS])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^CPPFLAGS$])
-+m4trace:configure.ac:18: -1- AC_SUBST([CC])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.ac:18: -1- AC_SUBST([CC])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.ac:18: -1- AC_SUBST([CC])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.ac:18: -1- AC_SUBST([CC])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.ac:18: -1- AC_SUBST([ac_ct_CC])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([ac_ct_CC])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^ac_ct_CC$])
-+m4trace:configure.ac:18: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([EXEEXT])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^EXEEXT$])
-+m4trace:configure.ac:18: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([OBJEXT])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^OBJEXT$])
-+m4trace:configure.ac:18: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([DEPDIR])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^DEPDIR$])
-+m4trace:configure.ac:18: -1- AC_SUBST([am__include])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([am__include])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^am__include$])
-+m4trace:configure.ac:18: -1- AC_SUBST([am__quote])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([am__quote])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^am__quote$])
-+m4trace:configure.ac:18: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
-+m4trace:configure.ac:18: -1- AC_SUBST([AMDEP_TRUE])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([AMDEP_TRUE])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^AMDEP_TRUE$])
-+m4trace:configure.ac:18: -1- AC_SUBST([AMDEP_FALSE])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([AMDEP_FALSE])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^AMDEP_FALSE$])
-+m4trace:configure.ac:18: -1- AC_SUBST([AMDEPBACKSLASH])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([AMDEPBACKSLASH])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
-+m4trace:configure.ac:18: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([CCDEPMODE])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^CCDEPMODE$])
-+m4trace:configure.ac:18: -1- AM_CONDITIONAL([am__fastdepCC], [
-+  test "x$enable_dependency_tracking" != xno \
-+  && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
-+m4trace:configure.ac:18: -1- AC_SUBST([am__fastdepCC_TRUE])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
-+m4trace:configure.ac:18: -1- AC_SUBST([am__fastdepCC_FALSE])
-+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE])
-+m4trace:configure.ac:18: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([lb_target_os])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([lb_target_os])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^lb_target_os$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LIBCFS_SUBDIR])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LIBCFS_SUBDIR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBCFS_SUBDIR$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LIBCFS_INCLUDE_DIR])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LIBCFS_INCLUDE_DIR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBCFS_INCLUDE_DIR$])
-+m4trace:configure.ac:20: -1- AC_SUBST([INCLUDE_RULES])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([INCLUDE_RULES])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^INCLUDE_RULES$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:505: LB_CONFIG_CRAY_XT3 is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([CRAY_XT3])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CRAY_XT3$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([CRAY_XT3], [/* Enable Cray XT3 Features */
-+#undef CRAY_XT3])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:522: LB_CONFIG_BGL is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BGL_SUPPORT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_BGL_SUPPORT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_BGL_SUPPORT], [/* Enable BGL Features */
-+#undef HAVE_BGL_SUPPORT])
-+m4trace:configure.ac:20: -1- AC_SUBST([sysconfdir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([sysconfdir])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^sysconfdir$])
-+m4trace:configure.ac:20: -1- AC_SUBST([docdir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([docdir])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^docdir$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LUSTRE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LUSTRE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LUSTRE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([rootsbindir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([rootsbindir])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^rootsbindir$])
-+m4trace:configure.ac:20: -1- AC_SUBST([demodir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([demodir])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^demodir$])
-+m4trace:configure.ac:20: -1- AC_SUBST([pkgexampledir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([pkgexampledir])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^pkgexampledir$])
-+m4trace:configure.ac:20: -1- AC_SUBST([RANLIB])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([RANLIB])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^RANLIB$])
-+m4trace:configure.ac:20: -1- AC_SUBST([CPP])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([CPP])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CPP$])
-+m4trace:configure.ac:20: -1- AC_SUBST([CPPFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([CPPFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CPPFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([CPP])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([CPP])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CPP$])
-+m4trace:configure.ac:20: -1- AC_SUBST([GREP])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([GREP])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^GREP$])
-+m4trace:configure.ac:20: -1- AC_SUBST([GREP])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([GREP])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^GREP$])
-+m4trace:configure.ac:20: -1- AC_SUBST([EGREP])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([EGREP])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^EGREP$])
-+m4trace:configure.ac:20: -1- AC_SUBST([EGREP])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([EGREP])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^EGREP$])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^STDC_HEADERS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
-+#undef STDC_HEADERS])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
-+#undef HAVE_SYS_TYPES_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
-+#undef HAVE_SYS_STAT_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
-+#undef HAVE_STDLIB_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
-+#undef HAVE_STRING_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
-+#undef HAVE_MEMORY_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */
-+#undef HAVE_STRINGS_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
-+#undef HAVE_INTTYPES_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
-+#undef HAVE_STDINT_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
-+#undef HAVE_UNISTD_H])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_UNSIGNED_LONG_LONG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_LONG_LONG$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([SIZEOF_UNSIGNED_LONG_LONG], [/* The size of `unsigned long long\', as computed by sizeof. */
-+#undef SIZEOF_UNSIGNED_LONG_LONG])
-+m4trace:configure.ac:20: -1- AC_SUBST([LLCPPFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LLCPPFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LLCPPFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LLCFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LLCFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LLCFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([EXTRA_KCFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([EXTRA_KCFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^EXTRA_KCFLAGS$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:542: LB_UOSS is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([UOSS_SUPPORT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^UOSS_SUPPORT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([UOSS_SUPPORT], [/* Enable user-level OSS */
-+#undef UOSS_SUPPORT])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([LUSTRE_ULEVEL_MT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LUSTRE_ULEVEL_MT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([LUSTRE_ULEVEL_MT], [/* Multi-threaded user-level lustre port */
-+#undef LUSTRE_ULEVEL_MT])
-+m4trace:configure.ac:20: -1- AC_SUBST([enable_uoss])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([enable_uoss])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^enable_uoss$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:566: LB_POSIX_OSD is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([POSIX_OSD])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^POSIX_OSD$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([POSIX_OSD], [/* Enable POSIX OSD */
-+#undef POSIX_OSD])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([POSIX_OSD_ENABLED], [test x$posix_osd = xyes])
-+m4trace:configure.ac:20: -1- AC_SUBST([POSIX_OSD_ENABLED_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([POSIX_OSD_ENABLED_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^POSIX_OSD_ENABLED_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([POSIX_OSD_ENABLED_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([POSIX_OSD_ENABLED_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^POSIX_OSD_ENABLED_FALSE$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:742: LB_CONFIG_DOCS is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([ENABLE_DOC])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([ENABLE_DOC])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^ENABLE_DOC$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:708: LB_CONFIG_UTILS is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([ENABLE_INIT_SCRIPTS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([ENABLE_INIT_SCRIPTS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^ENABLE_INIT_SCRIPTS$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:725: LB_CONFIG_TESTS is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:2909: LC_CONFIG_CLIENT_SERVER is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:2909: LC_CONFIG_CLIENT_SERVER is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4070: LN_CONFIG_CDEBUG is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([CDEBUG_ENABLED])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CDEBUG_ENABLED$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([CDEBUG_ENABLED], [/* enable libcfs CDEBUG, CWARN */
-+#undef CDEBUG_ENABLED])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([CDEBUG_ENABLED])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CDEBUG_ENABLED$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([CDEBUG_ENABLED], [/* disable libcfs CDEBUG, CWARN */
-+#undef CDEBUG_ENABLED])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4070: LN_CONFIG_CDEBUG is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([CDEBUG_ENTRY_EXIT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CDEBUG_ENTRY_EXIT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([CDEBUG_ENTRY_EXIT], [/* enable libcfs ENTRY/EXIT */
-+#undef CDEBUG_ENTRY_EXIT])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([CDEBUG_ENTRY_EXIT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CDEBUG_ENTRY_EXIT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([CDEBUG_ENTRY_EXIT], [/* disable libcfs ENTRY/EXIT */
-+#undef CDEBUG_ENTRY_EXIT])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4070: LN_CONFIG_CDEBUG is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([LIBCFS_DEBUG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBCFS_DEBUG$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([LIBCFS_DEBUG], [/* enable libcfs LASSERT, LASSERTF */
-+#undef LIBCFS_DEBUG])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:3055: LC_CONFIG_QUOTA is expanded from...
-+aclocal.m4:3075: LC_QUOTA is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_QUOTA_H])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SYS_QUOTA_H$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SYS_QUOTA_H], [/* Define to 1 if you have <sys/quota.h>. */
-+#undef HAVE_SYS_QUOTA_H])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:3535: LB_LINUX_PATH is expanded from...
-+aclocal.m4:3928: LB_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([LINUX])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LINUX])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LINUX$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:3535: LB_LINUX_PATH is expanded from...
-+aclocal.m4:3928: LB_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([LINUX_OBJ])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LINUX_OBJ])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LINUX_OBJ$])
-+m4trace:configure.ac:20: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+../../lib/autoconf/general.m4:1382: AC_ARG_WITH is expanded from...
-+aclocal.m4:3535: LB_LINUX_PATH is expanded from...
-+aclocal.m4:3928: LB_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([LINUX_CONFIG])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LINUX_CONFIG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LINUX_CONFIG$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:3535: LB_LINUX_PATH is expanded from...
-+aclocal.m4:3928: LB_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([ARCH_UM])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([ARCH_UM])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^ARCH_UM$])
-+m4trace:configure.ac:20: -1- AC_SUBST([UML_CFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([UML_CFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^UML_CFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([MODULE_TARGET])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([MODULE_TARGET])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^MODULE_TARGET$])
-+m4trace:configure.ac:20: -1- AC_SUBST([linux25])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([linux25])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^linux25$])
-+m4trace:configure.ac:20: -1- AC_SUBST([KMODEXT])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([KMODEXT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^KMODEXT$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LINUXRELEASE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LINUXRELEASE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LINUXRELEASE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([moduledir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([moduledir])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^moduledir$])
-+m4trace:configure.ac:20: -1- AC_SUBST([modulefsdir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([modulefsdir])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^modulefsdir$])
-+m4trace:configure.ac:20: -1- AC_SUBST([modulenetdir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([modulenetdir])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^modulenetdir$])
-+m4trace:configure.ac:20: -1- AC_SUBST([RELEASE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([RELEASE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^RELEASE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([SYMVERFILE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([SYMVERFILE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SYMVERFILE$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:3863: LB_CONFIG_OFED_BACKPORTS is expanded from...
-+aclocal.m4:3928: LB_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CPU_ONLINE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_CPU_ONLINE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_CPU_ONLINE], [/* cpu_online found */
-+#undef HAVE_CPU_ONLINE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GFP_T])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_GFP_T$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_GFP_T], [/* gfp_t found */
-+#undef HAVE_GFP_T])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CPUMASK_T])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_CPUMASK_T$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_CPUMASK_T], [/* cpumask_t found */
-+#undef HAVE_CPUMASK_T])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4112: LN_CONFIG_AFFINITY is expanded from...
-+aclocal.m4:5534: LN_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([CPU_AFFINITY])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CPU_AFFINITY$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([CPU_AFFINITY], [/* kernel has cpu affinity support */
-+#undef CPU_AFFINITY])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4180: LN_CONFIG_BACKOFF is expanded from...
-+aclocal.m4:5534: LN_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([SOCKNAL_BACKOFF])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SOCKNAL_BACKOFF$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([SOCKNAL_BACKOFF], [/* use tunable backoff TCP */
-+#undef SOCKNAL_BACKOFF])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([SOCKNAL_BACKOFF_MS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SOCKNAL_BACKOFF_MS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([SOCKNAL_BACKOFF_MS], [/* tunable backoff TCP in ms */
-+#undef SOCKNAL_BACKOFF_MS])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4207: LN_CONFIG_PANIC_DUMPLOG is expanded from...
-+aclocal.m4:5534: LN_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([LNET_DUMP_ON_PANIC])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LNET_DUMP_ON_PANIC$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([LNET_DUMP_ON_PANIC], [/* use dumplog on panic */
-+#undef LNET_DUMP_ON_PANIC])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4299: LN_CONFIG_QUADRICS is expanded from...
-+aclocal.m4:5534: LN_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([QSWCPPFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([QSWCPPFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^QSWCPPFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([QSWLND])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([QSWLND])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^QSWLND$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4344: LN_CONFIG_GM is expanded from...
-+aclocal.m4:5534: LN_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4344: LN_CONFIG_GM is expanded from...
-+aclocal.m4:5534: LN_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([GMCPPFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([GMCPPFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^GMCPPFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([GMLIBS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([GMLIBS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^GMLIBS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([GMLND])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([GMLND])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^GMLND$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4645: LN_CONFIG_OPENIB is expanded from...
-+aclocal.m4:5534: LN_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([OPENIBCPPFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([OPENIBCPPFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^OPENIBCPPFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([OPENIBLND])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([OPENIBLND])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^OPENIBLND$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4723: LN_CONFIG_CIB is expanded from...
-+aclocal.m4:5534: LN_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([CIBCPPFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([CIBCPPFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CIBCPPFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([CIBLND])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([CIBLND])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CIBLND$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4853: LN_CONFIG_VIB is expanded from...
-+aclocal.m4:5534: LN_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([VIBCPPFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([VIBCPPFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^VIBCPPFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([VIBLND])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([VIBLND])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^VIBLND$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4780: LN_CONFIG_IIB is expanded from...
-+aclocal.m4:5534: LN_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([IIBCPPFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([IIBCPPFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^IIBCPPFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([IIBLND])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([IIBLND])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^IIBLND$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4522: LN_CONFIG_O2IB is expanded from...
-+aclocal.m4:5534: LN_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_OFED_IB_DMA_MAP])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_OFED_IB_DMA_MAP$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_OFED_IB_DMA_MAP], [/* ib_dma_map_single defined */
-+#undef HAVE_OFED_IB_DMA_MAP])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_OFED_IB_COMP_VECTOR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_OFED_IB_COMP_VECTOR$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_OFED_IB_COMP_VECTOR], [/* has completion vector */
-+#undef HAVE_OFED_IB_COMP_VECTOR])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_OFED_TRANSPORT_IWARP])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_OFED_TRANSPORT_IWARP$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_OFED_TRANSPORT_IWARP], [/* has transport iWARP */
-+#undef HAVE_OFED_TRANSPORT_IWARP])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_OFED_RDMA_CMEV_ADDRCHANGE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_OFED_RDMA_CMEV_ADDRCHANGE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_OFED_RDMA_CMEV_ADDRCHANGE], [/* has completion vector */
-+#undef HAVE_OFED_RDMA_CMEV_ADDRCHANGE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_OFED_RDMA_CMEV_TIMEWAIT_EXIT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_OFED_RDMA_CMEV_TIMEWAIT_EXIT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_OFED_RDMA_CMEV_TIMEWAIT_EXIT], [/* has completion vector */
-+#undef HAVE_OFED_RDMA_CMEV_TIMEWAIT_EXIT])
-+m4trace:configure.ac:20: -1- AC_SUBST([EXTRA_LNET_INCLUDE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([EXTRA_LNET_INCLUDE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^EXTRA_LNET_INCLUDE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([O2IBCPPFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([O2IBCPPFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^O2IBCPPFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([O2IBLND])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([O2IBLND])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^O2IBLND$])
-+m4trace:configure.ac:20: -1- AC_SUBST([RACPPFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([RACPPFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^RACPPFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([RALND])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([RALND])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^RALND$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4146: LN_CONFIG_PORTALS is expanded from...
-+aclocal.m4:4226: LN_CONFIG_PTLLND is expanded from...
-+aclocal.m4:5534: LN_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([PTLLNDCPPFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([PTLLNDCPPFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^PTLLNDCPPFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([PTLLND])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([PTLLND])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^PTLLND$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4443: LN_CONFIG_MX is expanded from...
-+aclocal.m4:5534: LN_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([MXCPPFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([MXCPPFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^MXCPPFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([MXLIBS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([MXLIBS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^MXLIBS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([MXLND])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([MXLND])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^MXLND$])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PAGE_LIST])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_PAGE_LIST$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_PAGE_LIST], [/* struct page has a list field */
-+#undef HAVE_PAGE_LIST])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_RH_2_4_20])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CONFIG_RH_2_4_20$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([CONFIG_RH_2_4_20], [/* this kernel contains Red Hat 2.4.20 patches */
-+#undef CONFIG_RH_2_4_20])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SHOW_TASK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SHOW_TASK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SHOW_TASK], [/* show_task is exported */
-+#undef HAVE_SHOW_TASK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SHOW_TASK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SHOW_TASK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SHOW_TASK], [/* show_task is exported */
-+#undef HAVE_SHOW_TASK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_KERN__U64_LONG_LONG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_KERN__U64_LONG_LONG$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_KERN__U64_LONG_LONG], [/* kernel __u64 is long long type */
-+#undef HAVE_KERN__U64_LONG_LONG])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SSIZE_T_LONG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SSIZE_T_LONG$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SSIZE_T_LONG], [/* ssize_t is long type */
-+#undef HAVE_SSIZE_T_LONG])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SIZE_T_LONG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SIZE_T_LONG$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SIZE_T_LONG], [/* size_t is long type */
-+#undef HAVE_SIZE_T_LONG])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LE_TYPES])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LE_TYPES$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LE_TYPES], [/* __le16 and __le32 types are defined */
-+#undef HAVE_LE_TYPES])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TASK_RCU])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_TASK_RCU$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_TASK_RCU], [/* task_struct has rcu field */
-+#undef HAVE_TASK_RCU])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TASKLIST_LOCK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_TASKLIST_LOCK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_TASKLIST_LOCK], [/* tasklist_lock exported */
-+#undef HAVE_TASKLIST_LOCK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TASKLIST_LOCK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_TASKLIST_LOCK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_TASKLIST_LOCK], [/* tasklist_lock exported */
-+#undef HAVE_TASKLIST_LOCK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_KMEM_CACHE_DESTROY_INT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_KMEM_CACHE_DESTROY_INT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_KMEM_CACHE_DESTROY_INT], [/* kmem_cache_destroy(cachep) return int */
-+#undef HAVE_KMEM_CACHE_DESTROY_INT])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATOMIC_PANIC_NOTIFIER])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_ATOMIC_PANIC_NOTIFIER$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_ATOMIC_PANIC_NOTIFIER], [/* panic_notifier_list is atomic_notifier_head */
-+#undef HAVE_ATOMIC_PANIC_NOTIFIER])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_3ARGS_INIT_WORK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_3ARGS_INIT_WORK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_3ARGS_INIT_WORK], [/* INIT_WORK use 3 args and store data inside */
-+#undef HAVE_3ARGS_INIT_WORK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_2ARGS_REGISTER_SYSCTL])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_2ARGS_REGISTER_SYSCTL$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_2ARGS_REGISTER_SYSCTL], [/* register_sysctl_table want 2 args */
-+#undef HAVE_2ARGS_REGISTER_SYSCTL])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_KMEM_CACHE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_KMEM_CACHE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_KMEM_CACHE], [/* kernel has struct kmem_cache */
-+#undef HAVE_KMEM_CACHE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_KMEM_CACHE_CREATE_DTOR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_KMEM_CACHE_CREATE_DTOR$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_KMEM_CACHE_CREATE_DTOR], [/* kmem_cache_create has dtor argument */
-+#undef HAVE_KMEM_CACHE_CREATE_DTOR])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYSCTL_UNNUMBERED])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SYSCTL_UNNUMBERED$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SYSCTL_UNNUMBERED], [/* sysctl has CTL_UNNUMBERED */
-+#undef HAVE_SYSCTL_UNNUMBERED])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SCATTERLIST_SETPAGE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SCATTERLIST_SETPAGE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SCATTERLIST_SETPAGE], [/* struct scatterlist has page member */
-+#undef HAVE_SCATTERLIST_SETPAGE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SEM_COUNT_ATOMIC])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SEM_COUNT_ATOMIC$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SEM_COUNT_ATOMIC], [/* semaphore counter is atomic */
-+#undef HAVE_SEM_COUNT_ATOMIC])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SOCK_MAP_FD_2ARG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SOCK_MAP_FD_2ARG$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SOCK_MAP_FD_2ARG], [/* sock_map_fd have second argument */
-+#undef HAVE_SOCK_MAP_FD_2ARG])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DUMP_TRACE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_DUMP_TRACE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_DUMP_TRACE], [/* dump_trace is exported */
-+#undef HAVE_DUMP_TRACE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TRACE_ADDRESS_RELIABLE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_TRACE_ADDRESS_RELIABLE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_TRACE_ADDRESS_RELIABLE], [/* print_trace_address has reliable argument */
-+#undef HAVE_TRACE_ADDRESS_RELIABLE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DUMP_TRACE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_DUMP_TRACE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_DUMP_TRACE], [/* dump_trace is exported */
-+#undef HAVE_DUMP_TRACE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TRACE_ADDRESS_RELIABLE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_TRACE_ADDRESS_RELIABLE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_TRACE_ADDRESS_RELIABLE], [/* print_trace_address has reliable argument */
-+#undef HAVE_TRACE_ADDRESS_RELIABLE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LINUX_CRED_H])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LINUX_CRED_H$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LINUX_CRED_H], [/* kernel has include/linux/cred.h */
-+#undef HAVE_LINUX_CRED_H])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_CRED])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_STRUCT_CRED$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_STRUCT_CRED], [/* struct cred found */
-+#undef HAVE_STRUCT_CRED])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNSHARE_FS_STRUCT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_UNSHARE_FS_STRUCT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_UNSHARE_FS_STRUCT], [/* unshare_fs_struct found */
-+#undef HAVE_UNSHARE_FS_STRUCT])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DEV_SET_RDONLY])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_DEV_SET_RDONLY$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_DEV_SET_RDONLY], [/* kernel has new dev_set_rdonly */
-+#undef HAVE_DEV_SET_RDONLY])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_LDISKFS_FS_MODULE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CONFIG_LDISKFS_FS_MODULE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([CONFIG_LDISKFS_FS_MODULE], [/* build ldiskfs as a module */
-+#undef CONFIG_LDISKFS_FS_MODULE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_LDISKFS_FS_XATTR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CONFIG_LDISKFS_FS_XATTR$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([CONFIG_LDISKFS_FS_XATTR], [/* enable extended attributes for ldiskfs */
-+#undef CONFIG_LDISKFS_FS_XATTR])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_LDISKFS_FS_POSIX_ACL])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CONFIG_LDISKFS_FS_POSIX_ACL$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([CONFIG_LDISKFS_FS_POSIX_ACL], [/* enable posix acls for ldiskfs */
-+#undef CONFIG_LDISKFS_FS_POSIX_ACL])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_LDISKFS_FS_SECURITY])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CONFIG_LDISKFS_FS_SECURITY$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([CONFIG_LDISKFS_FS_SECURITY], [/* enable fs security for ldiskfs */
-+#undef CONFIG_LDISKFS_FS_SECURITY])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_LDISKFSDEV_FS_POSIX_ACL])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CONFIG_LDISKFSDEV_FS_POSIX_ACL$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([CONFIG_LDISKFSDEV_FS_POSIX_ACL], [/* enable posix acls for ldiskfs */
-+#undef CONFIG_LDISKFSDEV_FS_POSIX_ACL])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_LDISKFSDEV_FS_XATTR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CONFIG_LDISKFSDEV_FS_XATTR$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([CONFIG_LDISKFSDEV_FS_XATTR], [/* enable extented attributes for ldiskfs */
-+#undef CONFIG_LDISKFSDEV_FS_XATTR])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_LDISKFSDEV_FS_SECURITY])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CONFIG_LDISKFSDEV_FS_SECURITY$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([CONFIG_LDISKFSDEV_FS_SECURITY], [/* enable fs security for ldiskfs */
-+#undef CONFIG_LDISKFSDEV_FS_SECURITY])
-+m4trace:configure.ac:20: -1- AC_SUBST([BACKINGFS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BACKINGFS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BACKINGFS$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:1149: LC_CONFIG_PINGER is expanded from...
-+aclocal.m4:2755: LC_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_PINGER])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^ENABLE_PINGER$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([ENABLE_PINGER], [/* Use the Pinger */
-+#undef ENABLE_PINGER])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:1166: LC_CONFIG_CHECKSUM is expanded from...
-+aclocal.m4:2755: LC_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_CHECKSUM])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^ENABLE_CHECKSUM$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([ENABLE_CHECKSUM], [/* do data checksums */
-+#undef ENABLE_CHECKSUM])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:1222: LC_CONFIG_LIBLUSTRE_RECOVERY is expanded from...
-+aclocal.m4:2755: LC_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_LIBLUSTRE_RECOVERY])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^ENABLE_LIBLUSTRE_RECOVERY$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([ENABLE_LIBLUSTRE_RECOVERY], [/* Liblustre Can Recover */
-+#undef ENABLE_LIBLUSTRE_RECOVERY])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:1207: LC_CONFIG_HEALTH_CHECK_WRITE is expanded from...
-+aclocal.m4:2755: LC_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([USE_HEALTH_CHECK_WRITE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^USE_HEALTH_CHECK_WRITE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([USE_HEALTH_CHECK_WRITE], [/* Write when Checking Health */
-+#undef USE_HEALTH_CHECK_WRITE])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:3013: LC_CONFIG_LRU_RESIZE is expanded from...
-+aclocal.m4:2755: LC_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LRU_RESIZE_SUPPORT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LRU_RESIZE_SUPPORT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LRU_RESIZE_SUPPORT], [/* Enable lru resize support */
-+#undef HAVE_LRU_RESIZE_SUPPORT])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:3025: LC_CONFIG_ADAPTIVE_TIMEOUTS is expanded from...
-+aclocal.m4:2755: LC_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_AT_SUPPORT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_AT_SUPPORT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_AT_SUPPORT], [/* Enable adaptive timeouts support */
-+#undef HAVE_AT_SUPPORT])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:3038: LC_CONFIG_DELAYED_RECOVERY is expanded from...
-+aclocal.m4:2755: LC_PROG_LINUX is expanded from...
-+aclocal.m4:669: LB_CONFIG_MODULES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DELAYED_RECOVERY])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_DELAYED_RECOVERY$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_DELAYED_RECOVERY], [/* Enable delayed recovery support */
-+#undef HAVE_DELAYED_RECOVERY])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUOTA_SUPPORT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_QUOTA_SUPPORT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_QUOTA_SUPPORT], [/* Enable quota support */
-+#undef HAVE_QUOTA_SUPPORT])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TRUNCATE_COMPLETE_PAGE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_TRUNCATE_COMPLETE_PAGE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_TRUNCATE_COMPLETE_PAGE], [/* kernel export truncate_complete_page */
-+#undef HAVE_TRUNCATE_COMPLETE_PAGE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TRUNCATE_COMPLETE_PAGE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_TRUNCATE_COMPLETE_PAGE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_TRUNCATE_COMPLETE_PAGE], [/* kernel export truncate_complete_page */
-+#undef HAVE_TRUNCATE_COMPLETE_PAGE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TRUNCATE_RANGE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_TRUNCATE_RANGE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_TRUNCATE_RANGE], [/* kernel export truncate_inode_pages_range */
-+#undef HAVE_TRUNCATE_RANGE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TRUNCATE_RANGE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_TRUNCATE_RANGE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_TRUNCATE_RANGE], [/* kernel export truncate_inode_pages_range */
-+#undef HAVE_TRUNCATE_RANGE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_D_REHASH_COND])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_D_REHASH_COND$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_D_REHASH_COND], [/* d_rehash_cond is exported by the kernel */
-+#undef HAVE_D_REHASH_COND])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_D_REHASH_COND])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_D_REHASH_COND$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_D_REHASH_COND], [/* d_rehash_cond is exported by the kernel */
-+#undef HAVE_D_REHASH_COND])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE___D_REHASH])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE___D_REHASH$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE___D_REHASH], [/* __d_rehash is exported by the kernel */
-+#undef HAVE___D_REHASH])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE___D_REHASH])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE___D_REHASH$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE___D_REHASH], [/* __d_rehash is exported by the kernel */
-+#undef HAVE___D_REHASH])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_D_MOVE_LOCKED])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_D_MOVE_LOCKED$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_D_MOVE_LOCKED], [/* d_move_locked is exported by the kernel */
-+#undef HAVE_D_MOVE_LOCKED])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_D_MOVE_LOCKED])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_D_MOVE_LOCKED$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_D_MOVE_LOCKED], [/* d_move_locked is exported by the kernel */
-+#undef HAVE_D_MOVE_LOCKED])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE___D_MOVE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE___D_MOVE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE___D_MOVE], [/* __d_move is exported by the kernel */
-+#undef HAVE___D_MOVE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE___D_MOVE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE___D_MOVE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE___D_MOVE], [/* __d_move is exported by the kernel */
-+#undef HAVE___D_MOVE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_NODE_TO_CPUMASK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_NODE_TO_CPUMASK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_NODE_TO_CPUMASK], [/* node_to_cpumask is exported by the kernel */
-+#undef HAVE_NODE_TO_CPUMASK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_NODE_TO_CPUMASK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_NODE_TO_CPUMASK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_NODE_TO_CPUMASK], [/* node_to_cpumask is exported by the kernel */
-+#undef HAVE_NODE_TO_CPUMASK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_NODE_TO_CPUMASK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_NODE_TO_CPUMASK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_NODE_TO_CPUMASK], [/* node_to_cpumask is exported by the kernel */
-+#undef HAVE_NODE_TO_CPUMASK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_NODE_TO_CPUMASK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_NODE_TO_CPUMASK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_NODE_TO_CPUMASK], [/* node_to_cpumask is exported by the kernel */
-+#undef HAVE_NODE_TO_CPUMASK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_NODE_TO_CPUMASK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_NODE_TO_CPUMASK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_NODE_TO_CPUMASK], [/* node_to_cpumask is exported by the kernel */
-+#undef HAVE_NODE_TO_CPUMASK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_NODE_TO_CPUMASK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_NODE_TO_CPUMASK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_NODE_TO_CPUMASK], [/* node_to_cpumask is exported by the kernel */
-+#undef HAVE_NODE_TO_CPUMASK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_RELEASEPAGE_WITH_GFP])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_RELEASEPAGE_WITH_GFP$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_RELEASEPAGE_WITH_GFP], [/* releasepage with gfp_t parameter */
-+#undef HAVE_RELEASEPAGE_WITH_GFP])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDISKFS_XATTR_H])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LDISKFS_XATTR_H$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LDISKFS_XATTR_H], [/* ldiskfs/xattr.h found */
-+#undef HAVE_LDISKFS_XATTR_H])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ADD_TO_PAGE_CACHE_LRU])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_ADD_TO_PAGE_CACHE_LRU$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_ADD_TO_PAGE_CACHE_LRU], [/* kernel exports add_to_page_cache_lru */
-+#undef HAVE_ADD_TO_PAGE_CACHE_LRU])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ADD_TO_PAGE_CACHE_LRU])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_ADD_TO_PAGE_CACHE_LRU$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_ADD_TO_PAGE_CACHE_LRU], [/* kernel exports add_to_page_cache_lru */
-+#undef HAVE_ADD_TO_PAGE_CACHE_LRU])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GRAB_CACHE_PAGE_NOWAIT_GFP])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_GRAB_CACHE_PAGE_NOWAIT_GFP$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_GRAB_CACHE_PAGE_NOWAIT_GFP], [/* kernel exports grab_cache_page_nowait_gfp */
-+#undef HAVE_GRAB_CACHE_PAGE_NOWAIT_GFP])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GRAB_CACHE_PAGE_NOWAIT_GFP])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_GRAB_CACHE_PAGE_NOWAIT_GFP$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_GRAB_CACHE_PAGE_NOWAIT_GFP], [/* kernel exports grab_cache_page_nowait_gfp */
-+#undef HAVE_GRAB_CACHE_PAGE_NOWAIT_GFP])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STATFS_NAMELEN])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_STATFS_NAMELEN$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_STATFS_NAMELEN], [/* struct statfs has a namelen field */
-+#undef HAVE_STATFS_NAMELEN])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FILEMAP_POPULATE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_FILEMAP_POPULATE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_FILEMAP_POPULATE], [/* Kernel exports filemap_populate */
-+#undef HAVE_FILEMAP_POPULATE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_D_ADD_UNIQUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_D_ADD_UNIQUE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_D_ADD_UNIQUE], [/* Kernel has d_add_unique */
-+#undef HAVE_D_ADD_UNIQUE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BIT_SPINLOCK_H])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_BIT_SPINLOCK_H$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_BIT_SPINLOCK_H], [/* Kernel has bit_spinlock.h */
-+#undef HAVE_BIT_SPINLOCK_H])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_XATTR_ACL])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_XATTR_ACL$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_XATTR_ACL], [/* Kernel has xattr_acl */
-+#undef HAVE_XATTR_ACL])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FILE_IN_STRUCT_INTENT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_FILE_IN_STRUCT_INTENT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_FILE_IN_STRUCT_INTENT], [/* struct open_intent has a file field */
-+#undef HAVE_FILE_IN_STRUCT_INTENT])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LINUX_POSIX_ACL_XATTR_H])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LINUX_POSIX_ACL_XATTR_H$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LINUX_POSIX_ACL_XATTR_H], [/* linux/posix_acl_xattr.h found */
-+#undef HAVE_LINUX_POSIX_ACL_XATTR_H])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPORT___IGET])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_EXPORT___IGET$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_EXPORT___IGET], [/* kernel exports __iget */
-+#undef HAVE_EXPORT___IGET])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPORT___IGET])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_EXPORT___IGET$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_EXPORT___IGET], [/* kernel exports __iget */
-+#undef HAVE_EXPORT___IGET])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MS_FLOCK_LOCK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_MS_FLOCK_LOCK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_MS_FLOCK_LOCK], [/* kernel has MS_FLOCK_LOCK flag */
-+#undef HAVE_MS_FLOCK_LOCK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CAN_SLEEP_ARG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_CAN_SLEEP_ARG$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_CAN_SLEEP_ARG], [/* kernel has third arg can_sleep in fs/locks.c: flock_lock_file_wait() */
-+#undef HAVE_CAN_SLEEP_ARG])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_F_OP_FLOCK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_F_OP_FLOCK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_F_OP_FLOCK], [/* struct file_operations has flock field */
-+#undef HAVE_F_OP_FLOCK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([KERNEL_SUPPORTS_QUOTA_READ])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^KERNEL_SUPPORTS_QUOTA_READ$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([KERNEL_SUPPORTS_QUOTA_READ], [/* quota_read found */
-+#undef KERNEL_SUPPORTS_QUOTA_READ])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COOKIE_FOLLOW_LINK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_COOKIE_FOLLOW_LINK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_COOKIE_FOLLOW_LINK], [/* inode_operations->follow_link returns a cookie */
-+#undef HAVE_COOKIE_FOLLOW_LINK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_RCU])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_RCU$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_RCU], [/* have RCU defined */
-+#undef HAVE_RCU])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CALL_RCU_PARAM])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_CALL_RCU_PARAM$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_CALL_RCU_PARAM], [/* call_rcu takes three parameters */
-+#undef HAVE_CALL_RCU_PARAM])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PERCPU_COUNTER])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_PERCPU_COUNTER$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_PERCPU_COUNTER], [/* percpu_counter found */
-+#undef HAVE_PERCPU_COUNTER])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PERCPU_2ND_ARG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_PERCPU_2ND_ARG$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_PERCPU_2ND_ARG], [/* percpu_counter_init has two arguments */
-+#undef HAVE_PERCPU_2ND_ARG])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUOTA64])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_QUOTA64$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_QUOTA64], [/* have quota64 */
-+#undef HAVE_QUOTA64])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUOTA64])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_QUOTA64$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_QUOTA64], [/* have quota64 */
-+#undef HAVE_QUOTA64])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_4ARGS_VFS_SYMLINK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_4ARGS_VFS_SYMLINK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_4ARGS_VFS_SYMLINK], [/* vfs_symlink wants 4 args */
-+#undef HAVE_4ARGS_VFS_SYMLINK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFS_INTENT_PATCHES])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_VFS_INTENT_PATCHES$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_VFS_INTENT_PATCHES], [/* VFS intent patches are applied */
-+#undef HAVE_VFS_INTENT_PATCHES])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYSCTL_VFS_CACHE_PRESSURE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SYSCTL_VFS_CACHE_PRESSURE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SYSCTL_VFS_CACHE_PRESSURE], [/* kernel exports sysctl_vfs_cache_pressure */
-+#undef HAVE_SYSCTL_VFS_CACHE_PRESSURE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYSCTL_VFS_CACHE_PRESSURE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SYSCTL_VFS_CACHE_PRESSURE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SYSCTL_VFS_CACHE_PRESSURE], [/* kernel exports sysctl_vfs_cache_pressure */
-+#undef HAVE_SYSCTL_VFS_CACHE_PRESSURE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_RW_TREE_LOCK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_RW_TREE_LOCK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_RW_TREE_LOCK], [/* mapping->tree_lock is rw_lock */
-+#undef HAVE_RW_TREE_LOCK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYNCHRONIZE_RCU])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SYNCHRONIZE_RCU$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SYNCHRONIZE_RCU], [/* in 2.6.12 synchronize_rcu preferred over synchronize_kernel */
-+#undef HAVE_SYNCHRONIZE_RCU])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYNCHRONIZE_RCU])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SYNCHRONIZE_RCU$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SYNCHRONIZE_RCU], [/* in 2.6.12 synchronize_rcu preferred over synchronize_kernel */
-+#undef HAVE_SYNCHRONIZE_RCU])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INODE_I_MUTEX])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_INODE_I_MUTEX$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_INODE_I_MUTEX], [/* after 2.6.15 inode have i_mutex intead of i_sem */
-+#undef HAVE_INODE_I_MUTEX])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATOMIC_CMPXCHG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_ATOMIC_CMPXCHG$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_ATOMIC_CMPXCHG], [/* kernel has atomic_cmpxchg */
-+#undef HAVE_ATOMIC_CMPXCHG])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ATOMIC_INC_NOT_ZERO])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_ATOMIC_INC_NOT_ZERO$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_ATOMIC_INC_NOT_ZERO], [/* kernel has atomic_inc_not_zero */
-+#undef HAVE_ATOMIC_INC_NOT_ZERO])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SECURITY_PLUG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SECURITY_PLUG$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SECURITY_PLUG], [/* SLES10 SP2 use extra parameter in vfs */
-+#undef HAVE_SECURITY_PLUG])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DQUOTOFF_MUTEX])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_DQUOTOFF_MUTEX$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_DQUOTOFF_MUTEX], [/* after 2.6.17 dquote use mutex instead if semaphore */
-+#undef HAVE_DQUOTOFF_MUTEX])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_NR_PAGECACHE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_NR_PAGECACHE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_NR_PAGECACHE], [/* is kernel export nr_pagecache */
-+#undef HAVE_NR_PAGECACHE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STATFS_DENTRY_PARAM])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_STATFS_DENTRY_PARAM$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_STATFS_DENTRY_PARAM], [/* first parameter of vfs_statfs is dentry */
-+#undef HAVE_STATFS_DENTRY_PARAM])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFS_KERN_MOUNT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_VFS_KERN_MOUNT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_VFS_KERN_MOUNT], [/* vfs_kern_mount exist in kernel */
-+#undef HAVE_VFS_KERN_MOUNT])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INVALIDATEPAGE_RETURN_INT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_INVALIDATEPAGE_RETURN_INT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_INVALIDATEPAGE_RETURN_INT], [/* Define if return type of invalidatepage should be int */
-+#undef HAVE_INVALIDATEPAGE_RETURN_INT])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UMOUNTBEGIN_VFSMOUNT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_UMOUNTBEGIN_VFSMOUNT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_UMOUNTBEGIN_VFSMOUNT], [/* Define umount_begin need second argument */
-+#undef HAVE_UMOUNTBEGIN_VFSMOUNT])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INODE_IPRIVATE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_INODE_IPRIVATE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_INODE_IPRIVATE], [/* struct inode has i_private field */
-+#undef HAVE_INODE_IPRIVATE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FILEMAP_FDATAWRITE_RANGE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_FILEMAP_FDATAWRITE_RANGE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_FILEMAP_FDATAWRITE_RANGE], [/* filemap_fdatawrite_range is exported by the kernel */
-+#undef HAVE_FILEMAP_FDATAWRITE_RANGE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FILEMAP_FDATAWRITE_RANGE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_FILEMAP_FDATAWRITE_RANGE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_FILEMAP_FDATAWRITE_RANGE], [/* filemap_fdatawrite_range is exported by the kernel */
-+#undef HAVE_FILEMAP_FDATAWRITE_RANGE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INVALIDATE_INODE_PAGES])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_INVALIDATE_INODE_PAGES$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_INVALIDATE_INODE_PAGES], [/* exported invalidate_inode_pages */
-+#undef HAVE_INVALIDATE_INODE_PAGES])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INVALIDATE_INODE_PAGES])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_INVALIDATE_INODE_PAGES$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_INVALIDATE_INODE_PAGES], [/* exported invalidate_inode_pages */
-+#undef HAVE_INVALIDATE_INODE_PAGES])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INVALIDATE_MAPPING_PAGES])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_INVALIDATE_MAPPING_PAGES$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_INVALIDATE_MAPPING_PAGES], [/* exported invalidate_mapping_pages */
-+#undef HAVE_INVALIDATE_MAPPING_PAGES])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INVALIDATE_MAPPING_PAGES])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_INVALIDATE_MAPPING_PAGES$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_INVALIDATE_MAPPING_PAGES], [/* exported invalidate_mapping_pages */
-+#undef HAVE_INVALIDATE_MAPPING_PAGES])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PG_FS_MISC])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_PG_FS_MISC$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_PG_FS_MISC], [/* is kernel have PG_fs_misc */
-+#undef HAVE_PG_FS_MISC])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PAGE_CHECKED])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_PAGE_CHECKED$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_PAGE_CHECKED], [/* does kernel have PageChecked and SetPageChecked */
-+#undef HAVE_PAGE_CHECKED])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LINUX_FIEMAP_H])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LINUX_FIEMAP_H$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LINUX_FIEMAP_H], [/* Kernel has fiemap.h */
-+#undef HAVE_LINUX_FIEMAP_H])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INODE_BLKSIZE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_INODE_BLKSIZE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_INODE_BLKSIZE], [/* struct inode has i_blksize field */
-+#undef HAVE_INODE_BLKSIZE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFS_READDIR_U64_INO])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_VFS_READDIR_U64_INO$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_VFS_READDIR_U64_INO], [/* if vfs_readdir need 64bit inode number */
-+#undef HAVE_VFS_READDIR_U64_INO])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FILE_UPDATE_TIME])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_FILE_UPDATE_TIME$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_FILE_UPDATE_TIME], [/* use file_update_time */
-+#undef HAVE_FILE_UPDATE_TIME])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FILE_WRITEV])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_FILE_WRITEV$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_FILE_WRITEV], [/* use fops->writev */
-+#undef HAVE_FILE_WRITEV])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FILE_READV])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_FILE_READV$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_FILE_READV], [/* use fops->readv */
-+#undef HAVE_FILE_READV])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CANCEL_DIRTY_PAGE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_CANCEL_DIRTY_PAGE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_CANCEL_DIRTY_PAGE], [/* kernel has cancel_dirty_page instead of clear_page_dirty */
-+#undef HAVE_CANCEL_DIRTY_PAGE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PAGE_CONSTANT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_PAGE_CONSTANT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_PAGE_CONSTANT], [/* kernel have PageConstant supported */
-+#undef HAVE_PAGE_CONSTANT])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INVALIDATE_BDEV_2ARG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_INVALIDATE_BDEV_2ARG$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_INVALIDATE_BDEV_2ARG], [/* invalidate_bdev has second argument */
-+#undef HAVE_INVALIDATE_BDEV_2ARG])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FS_RENAME_DOES_D_MOVE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_FS_RENAME_DOES_D_MOVE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_FS_RENAME_DOES_D_MOVE], [/* kernel has FS_RENAME_DOES_D_MOVE flag */
-+#undef HAVE_FS_RENAME_DOES_D_MOVE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNREGISTER_BLKDEV_RETURN_INT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_UNREGISTER_BLKDEV_RETURN_INT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_UNREGISTER_BLKDEV_RETURN_INT], [/* unregister_blkdev return int */
-+#undef HAVE_UNREGISTER_BLKDEV_RETURN_INT])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_KERNEL_SENDFILE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_KERNEL_SENDFILE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_KERNEL_SENDFILE], [/* kernel has .sendfile */
-+#undef HAVE_KERNEL_SENDFILE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_KERNEL_SPLICE_READ])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_KERNEL_SPLICE_READ$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_KERNEL_SPLICE_READ], [/* kernel has .slice_read */
-+#undef HAVE_KERNEL_SPLICE_READ])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LINUX_EXPORTFS_H])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LINUX_EXPORTFS_H$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LINUX_EXPORTFS_H], [/* kernel has include/exportfs.h */
-+#undef HAVE_LINUX_EXPORTFS_H])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VM_OP_FAULT])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_VM_OP_FAULT$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_VM_OP_FAULT], [/* if kernel has .fault in vm_operation_struct */
-+#undef HAVE_VM_OP_FAULT])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([SHRINKER_MASK_T])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SHRINKER_MASK_T$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([SHRINKER_MASK_T], [/* kernel using gfp_t for shrinker callback */
-+#undef SHRINKER_MASK_T])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([SHRINKER_MASK_T])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SHRINKER_MASK_T$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([SHRINKER_MASK_T], [/* kernel using unsigned for shrinker callback */
-+#undef SHRINKER_MASK_T])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_REGISTER_SHRINKER])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_REGISTER_SHRINKER$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_REGISTER_SHRINKER], [/* kernel exports register_shrinker */
-+#undef HAVE_REGISTER_SHRINKER])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_REGISTER_SHRINKER])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_REGISTER_SHRINKER$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_REGISTER_SHRINKER], [/* kernel exports register_shrinker */
-+#undef HAVE_REGISTER_SHRINKER])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PROCFS_USERS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_PROCFS_USERS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_PROCFS_USERS], [/* kernel has pde_users member in procfs entry struct */
-+#undef HAVE_PROCFS_USERS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MAPPING_CAP_WRITEBACK_DIRTY])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_MAPPING_CAP_WRITEBACK_DIRTY$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_MAPPING_CAP_WRITEBACK_DIRTY], [/* kernel have mapping_cap_writeback_dirty */
-+#undef HAVE_MAPPING_CAP_WRITEBACK_DIRTY])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LINUX_MMTYPES_H])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LINUX_MMTYPES_H$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LINUX_MMTYPES_H], [/* kernel has include/mm_types.h */
-+#undef HAVE_LINUX_MMTYPES_H])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BIO_ENDIO_2ARG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_BIO_ENDIO_2ARG$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_BIO_ENDIO_2ARG], [/* if kernel has bio_endio with 2 args */
-+#undef HAVE_BIO_ENDIO_2ARG])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FH_TO_DENTRY])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_FH_TO_DENTRY$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_FH_TO_DENTRY], [/* kernel has .fh_to_dentry member in export_operations struct */
-+#undef HAVE_FH_TO_DENTRY])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PROCFS_DELETED])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_PROCFS_DELETED$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_PROCFS_DELETED], [/* kernel has deleted member in procfs entry struct */
-+#undef HAVE_PROCFS_DELETED])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PATH_REMOVE_SUID])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_PATH_REMOVE_SUID$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_PATH_REMOVE_SUID], [/* kernel has a remove suid that takes a struct path */
-+#undef HAVE_PATH_REMOVE_SUID])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FS_STRUCT_USE_PATH])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_FS_STRUCT_USE_PATH$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_FS_STRUCT_USE_PATH], [/* fs_struct use path structure */
-+#undef HAVE_FS_STRUCT_USE_PATH])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_INODE_PERMISION_2ARGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_INODE_PERMISION_2ARGS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_INODE_PERMISION_2ARGS], [/* inode_operations->permission have two args */
-+#undef HAVE_INODE_PERMISION_2ARGS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_FILE_REMOVE_SUID])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_FILE_REMOVE_SUID$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_FILE_REMOVE_SUID], [/* kernel have file_remove_suid */
-+#undef HAVE_FILE_REMOVE_SUID])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TRYLOCK_PAGE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_TRYLOCK_PAGE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_TRYLOCK_PAGE], [/* kernel use trylock_page for page lock */
-+#undef HAVE_TRYLOCK_PAGE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_RW_TREE_LOCK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_RW_TREE_LOCK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_RW_TREE_LOCK], [/* mapping->tree_lock is rw_lock */
-+#undef HAVE_RW_TREE_LOCK])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_READ_INODE_IN_SBOPS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_READ_INODE_IN_SBOPS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_READ_INODE_IN_SBOPS], [/* super_operations has a read_inode */
-+#undef HAVE_READ_INODE_IN_SBOPS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPORT_INODE_PERMISSION])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_EXPORT_INODE_PERMISSION$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_EXPORT_INODE_PERMISSION], [/* inode_permission is exported by the kernel */
-+#undef HAVE_EXPORT_INODE_PERMISSION])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXPORT_INODE_PERMISSION])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_EXPORT_INODE_PERMISSION$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_EXPORT_INODE_PERMISSION], [/* inode_permission is exported by the kernel */
-+#undef HAVE_EXPORT_INODE_PERMISSION])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUOTA_ON_5ARGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_QUOTA_ON_5ARGS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_QUOTA_ON_5ARGS], [/* quota_on needs 5 paramters */
-+#undef HAVE_QUOTA_ON_5ARGS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUOTA_OFF_3ARGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_QUOTA_OFF_3ARGS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_QUOTA_OFF_3ARGS], [/* quota_off needs 3 paramters */
-+#undef HAVE_QUOTA_OFF_3ARGS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFS_DQ_OFF])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_VFS_DQ_OFF$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_VFS_DQ_OFF], [/* vfs_dq_off is defined */
-+#undef HAVE_VFS_DQ_OFF])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BI_HW_SEGMENTS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_BI_HW_SEGMENTS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_BI_HW_SEGMENTS], [/* struct bio has a bi_hw_segments field */
-+#undef HAVE_BI_HW_SEGMENTS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_QUOTAIO_V1_H])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_QUOTAIO_V1_H$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_QUOTAIO_V1_H], [/* kernel has include/linux/quotaio_v1.h */
-+#undef HAVE_QUOTAIO_V1_H])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFS_SYMLINK_5ARGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_VFS_SYMLINK_5ARGS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_VFS_SYMLINK_5ARGS], [/* vfs_symlink need 5 parameteres */
-+#undef HAVE_VFS_SYMLINK_5ARGS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SB_ANY_QUOTA_ACTIVE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SB_ANY_QUOTA_ACTIVE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SB_ANY_QUOTA_ACTIVE], [/* Kernel has a sb_any_quota_active */
-+#undef HAVE_SB_ANY_QUOTA_ACTIVE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SB_HAS_QUOTA_ACTIVE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SB_HAS_QUOTA_ACTIVE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SB_HAS_QUOTA_ACTIVE], [/* Kernel has a sb_has_quota_active */
-+#undef HAVE_SB_HAS_QUOTA_ACTIVE])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_KERNEL_WRITE_BEGIN_END])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_KERNEL_WRITE_BEGIN_END$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_KERNEL_WRITE_BEGIN_END], [/* kernel has .write_begin/end */
-+#undef HAVE_KERNEL_WRITE_BEGIN_END])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_D_OBTAIN_ALIAS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_D_OBTAIN_ALIAS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_D_OBTAIN_ALIAS], [/* d_obtain_alias exist in kernel */
-+#undef HAVE_D_OBTAIN_ALIAS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_BLKDEV_PUT_2ARGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_BLKDEV_PUT_2ARGS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_BLKDEV_PUT_2ARGS], [/* blkdev_put needs 2 paramters */
-+#undef HAVE_BLKDEV_PUT_2ARGS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DENTRY_OPEN_4ARGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_DENTRY_OPEN_4ARGS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_DENTRY_OPEN_4ARGS], [/* dentry_open needs 4 paramters */
-+#undef HAVE_DENTRY_OPEN_4ARGS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_USER__U64_LONG_LONG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_USER__U64_LONG_LONG$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_USER__U64_LONG_LONG], [/* userspace __u64 is long long type */
-+#undef HAVE_USER__U64_LONG_LONG])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:317: LB_HAVE_EXT4_ENABLED is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:583: LB_PATH_DMU is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([DMU_OSD])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^DMU_OSD$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([DMU_OSD], [/* Enable DMU OSD */
-+#undef DMU_OSD])
-+m4trace:configure.ac:20: -1- AC_SUBST([DMU_SRC])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([DMU_SRC])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^DMU_SRC$])
-+m4trace:configure.ac:20: -1- AC_CONFIG_SUBDIRS([lustre/zfs-lustre])
-+m4trace:configure.ac:20: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([lustre/zfs-lustre])"])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([subdirs])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^subdirs$])
-+m4trace:configure.ac:20: -1- AC_CONFIG_SUBDIRS([spl])
-+m4trace:configure.ac:20: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([spl])"])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([subdirs])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^subdirs$])
-+m4trace:configure.ac:20: -1- AC_CONFIG_SUBDIRS([zfs])
-+m4trace:configure.ac:20: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([zfs])"])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([subdirs])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^subdirs$])
-+m4trace:configure.ac:20: -1- AC_SUBST([SPL_SUBDIR])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([SPL_SUBDIR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SPL_SUBDIR$])
-+m4trace:configure.ac:20: -1- AC_SUBST([ZFS_SUBDIR])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([ZFS_SUBDIR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^ZFS_SUBDIR$])
-+m4trace:configure.ac:20: -1- AC_SUBST([SPL_DIR])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([SPL_DIR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SPL_DIR$])
-+m4trace:configure.ac:20: -1- AC_SUBST([ZFS_DIR])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([ZFS_DIR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^ZFS_DIR$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([DMU_OSD_ENABLED], [test x$dmu_osd = xyes])
-+m4trace:configure.ac:20: -1- AC_SUBST([DMU_OSD_ENABLED_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([DMU_OSD_ENABLED_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^DMU_OSD_ENABLED_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([DMU_OSD_ENABLED_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([DMU_OSD_ENABLED_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^DMU_OSD_ENABLED_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([KDMU], [test x$dmu_osd$enable_uoss = xyesno])
-+m4trace:configure.ac:20: -1- AC_SUBST([KDMU_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([KDMU_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^KDMU_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([KDMU_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([KDMU_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^KDMU_FALSE$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:164: LB_PATH_LIBSYSIO is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_CONFIG_SUBDIRS([libsysio])
-+m4trace:configure.ac:20: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([libsysio])"])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([subdirs])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^subdirs$])
-+m4trace:configure.ac:20: -1- AC_SUBST([SNMP_DIST_SUBDIR])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([SNMP_DIST_SUBDIR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SNMP_DIST_SUBDIR$])
-+m4trace:configure.ac:20: -1- AC_SUBST([SNMP_SUBDIR])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([SNMP_SUBDIR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SNMP_SUBDIR$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:251: LB_PATH_LDISKFS is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:251: LB_PATH_LDISKFS is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([LDISKFS_DIR])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LDISKFS_DIR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LDISKFS_DIR$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LDISKFS_SUBDIR])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LDISKFS_SUBDIR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LDISKFS_SUBDIR$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([LDISKFS_ENABLED], [test x$with_ldiskfs != xno])
-+m4trace:configure.ac:20: -1- AC_SUBST([LDISKFS_ENABLED_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LDISKFS_ENABLED_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LDISKFS_ENABLED_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LDISKFS_ENABLED_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LDISKFS_ENABLED_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LDISKFS_ENABLED_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([LDISKFS_IN_KERNEL], [test x$with_ldiskfs = xinkernel])
-+m4trace:configure.ac:20: -1- AC_SUBST([LDISKFS_IN_KERNEL_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LDISKFS_IN_KERNEL_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LDISKFS_IN_KERNEL_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LDISKFS_IN_KERNEL_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LDISKFS_IN_KERNEL_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LDISKFS_IN_KERNEL_FALSE$])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXT4_LDISKFS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_EXT4_LDISKFS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_EXT4_LDISKFS], [/* build ext4 based ldiskfs */
-+#undef HAVE_EXT4_LDISKFS])
-+m4trace:configure.ac:20: -1- AC_CONFIG_SUBDIRS([ldiskfs])
-+m4trace:configure.ac:20: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([ldiskfs])"])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([subdirs])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^subdirs$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:211: LB_PATH_LUSTREIOKIT is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([LUSTREIOKIT_SUBDIR])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LUSTREIOKIT_SUBDIR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LUSTREIOKIT_SUBDIR$])
-+m4trace:configure.ac:20: -1- AC_CONFIG_SUBDIRS([lustre-iokit])
-+m4trace:configure.ac:20: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([lustre-iokit])"])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([subdirs])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^subdirs$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:465: LB_DEFINE_E2FSPROGS_NAMES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDISKFSPROGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LDISKFSPROGS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LDISKFSPROGS], [/* enable use of ldiskfsprogs package */
-+#undef HAVE_LDISKFSPROGS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([E2FSPROGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^E2FSPROGS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([E2FSPROGS], [/* name of ldiskfs e2fsprogs package */
-+#undef E2FSPROGS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([MKE2FS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^MKE2FS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([MKE2FS], [/* name of ldiskfs mkfs program */
-+#undef MKE2FS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([DEBUGFS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^DEBUGFS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([DEBUGFS], [/* name of ldiskfs debug program */
-+#undef DEBUGFS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([TUNE2FS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^TUNE2FS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([TUNE2FS], [/* name of ldiskfs tune program */
-+#undef TUNE2FS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([E2LABEL])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^E2LABEL$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([E2LABEL], [/* name of ldiskfs label program */
-+#undef E2LABEL])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([DUMPE2FS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^DUMPE2FS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([DUMPE2FS], [/* name of ldiskfs dump program */
-+#undef DUMPE2FS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([E2FSCK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^E2FSCK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([E2FSCK], [/* name of ldiskfs fsck program */
-+#undef E2FSCK])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:465: LB_DEFINE_E2FSPROGS_NAMES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDISKFSPROGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LDISKFSPROGS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LDISKFSPROGS], [/* enable use of ldiskfsprogs package */
-+#undef HAVE_LDISKFSPROGS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([E2FSPROGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^E2FSPROGS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([E2FSPROGS], [/* name of ldiskfs e2fsprogs package */
-+#undef E2FSPROGS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([MKE2FS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^MKE2FS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([MKE2FS], [/* name of ldiskfs mkfs program */
-+#undef MKE2FS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([DEBUGFS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^DEBUGFS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([DEBUGFS], [/* name of ldiskfs debug program */
-+#undef DEBUGFS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([TUNE2FS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^TUNE2FS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([TUNE2FS], [/* name of ldiskfs tune program */
-+#undef TUNE2FS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([E2LABEL])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^E2LABEL$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([E2LABEL], [/* name of ldiskfs label program */
-+#undef E2LABEL])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([DUMPE2FS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^DUMPE2FS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([DUMPE2FS], [/* name of ldiskfs dump program */
-+#undef DUMPE2FS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([E2FSCK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^E2FSCK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([E2FSCK], [/* name of ldiskfs fsck program */
-+#undef E2FSCK])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:465: LB_DEFINE_E2FSPROGS_NAMES is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LDISKFSPROGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LDISKFSPROGS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LDISKFSPROGS], [/* enable use of ldiskfsprogs package */
-+#undef HAVE_LDISKFSPROGS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([E2FSPROGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^E2FSPROGS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([E2FSPROGS], [/* name of ldiskfs e2fsprogs package */
-+#undef E2FSPROGS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([MKE2FS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^MKE2FS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([MKE2FS], [/* name of ldiskfs mkfs program */
-+#undef MKE2FS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([DEBUGFS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^DEBUGFS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([DEBUGFS], [/* name of ldiskfs debug program */
-+#undef DEBUGFS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([TUNE2FS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^TUNE2FS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([TUNE2FS], [/* name of ldiskfs tune program */
-+#undef TUNE2FS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([E2LABEL])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^E2LABEL$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([E2LABEL], [/* name of ldiskfs label program */
-+#undef E2LABEL])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([DUMPE2FS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^DUMPE2FS$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([DUMPE2FS], [/* name of ldiskfs dump program */
-+#undef DUMPE2FS])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([E2FSCK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^E2FSCK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([E2FSCK], [/* name of ldiskfs fsck program */
-+#undef E2FSCK])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:2929: LC_CONFIG_LIBLUSTRE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:2929: LC_CONFIG_LIBLUSTRE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:2929: LC_CONFIG_LIBLUSTRE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([LIBLUSTRE_POSIX_ACL])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBLUSTRE_POSIX_ACL$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([LIBLUSTRE_POSIX_ACL], [/* Liblustre Support ACL-enabled MDS */
-+#undef LIBLUSTRE_POSIX_ACL])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:2929: LC_CONFIG_LIBLUSTRE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([MPICC_WRAPPER])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([MPICC_WRAPPER])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^MPICC_WRAPPER$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:1149: LC_CONFIG_PINGER is expanded from...
-+aclocal.m4:2929: LC_CONFIG_LIBLUSTRE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_PINGER])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^ENABLE_PINGER$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([ENABLE_PINGER], [/* Use the Pinger */
-+#undef ENABLE_PINGER])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:1222: LC_CONFIG_LIBLUSTRE_RECOVERY is expanded from...
-+aclocal.m4:2929: LC_CONFIG_LIBLUSTRE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_LIBLUSTRE_RECOVERY])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^ENABLE_LIBLUSTRE_RECOVERY$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([ENABLE_LIBLUSTRE_RECOVERY], [/* Liblustre Can Recover */
-+#undef ENABLE_LIBLUSTRE_RECOVERY])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_NETDB_H], [/* Define to 1 if you have the <netdb.h> header file. */
-+#undef HAVE_NETDB_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_NETINET_TCP_H], [/* Define to 1 if you have the <netinet/tcp.h> header file. */
-+#undef HAVE_NETINET_TCP_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_ASM_TYPES_H], [/* Define to 1 if you have the <asm/types.h> header file. */
-+#undef HAVE_ASM_TYPES_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_ENDIAN_H], [/* Define to 1 if you have the <endian.h> header file. */
-+#undef HAVE_ENDIAN_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SYS_IOCTL_H], [/* Define to 1 if you have the <sys/ioctl.h> header file. */
-+#undef HAVE_SYS_IOCTL_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_GETHOSTBYNAME], [/* Define to 1 if you have the `gethostbyname\' function. */
-+#undef HAVE_GETHOSTBYNAME])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SOCKET], [/* Define to 1 if you have the `socket\' function. */
-+#undef HAVE_SOCKET])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_CONNECT], [/* Define to 1 if you have the `connect\' function. */
-+#undef HAVE_CONNECT])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LINUX_VERSION_H], [/* Define to 1 if you have the <linux/version.h> header file. */
-+#undef HAVE_LINUX_VERSION_H])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SPINLOCK_T])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SPINLOCK_T$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SPINLOCK_T], [/* spinlock_t is defined */
-+#undef HAVE_SPINLOCK_T])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_STRNLEN], [/* Define to 1 if you have the `strnlen\' function. */
-+#undef HAVE_STRNLEN])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:5611: LN_CONFIGURE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBREADLINE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LIBREADLINE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LIBREADLINE], [/* readline library is available */
-+#undef HAVE_LIBREADLINE])
-+m4trace:configure.ac:20: -1- AC_SUBST([LIBREADLINE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LIBREADLINE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBREADLINE$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:5611: LN_CONFIGURE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBEFENCE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LIBEFENCE$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LIBEFENCE], [/* libefence support is requested */
-+#undef HAVE_LIBEFENCE])
-+m4trace:configure.ac:20: -1- AC_SUBST([LIBEFENCE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LIBEFENCE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBEFENCE$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:5611: LN_CONFIGURE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBWRAP])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LIBWRAP$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LIBWRAP], [/* libwrap support is requested */
-+#undef HAVE_LIBWRAP])
-+m4trace:configure.ac:20: -1- AC_SUBST([LIBWRAP])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LIBWRAP])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBWRAP$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:5611: LN_CONFIGURE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBPTHREAD])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LIBPTHREAD$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LIBPTHREAD], [/* use libpthread */
-+#undef HAVE_LIBPTHREAD])
-+m4trace:configure.ac:20: -1- AC_SUBST([PTHREAD_LIBS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([PTHREAD_LIBS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^PTHREAD_LIBS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([ENABLE_LIBPTHREAD])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([ENABLE_LIBPTHREAD])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^ENABLE_LIBPTHREAD$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:5611: LN_CONFIGURE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([INIT_SYSIO])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^INIT_SYSIO$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([INIT_SYSIO], [/* call sysio init functions */
-+#undef INIT_SYSIO])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:5611: LN_CONFIGURE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([LIBLUSTRE_USE_URANDOM])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBLUSTRE_USE_URANDOM$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([LIBLUSTRE_USE_URANDOM], [/* use /dev/urandom for random data */
-+#undef LIBLUSTRE_USE_URANDOM])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBCAP])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_LIBCAP$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LIBCAP], [/* use libcap */
-+#undef HAVE_LIBCAP])
-+m4trace:configure.ac:20: -1- AC_SUBST([CAP_LIBS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([CAP_LIBS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CAP_LIBS$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4027: LN_CONFIG_MAX_PAYLOAD is expanded from...
-+aclocal.m4:5611: LN_CONFIGURE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([LNET_MAX_PAYLOAD])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LNET_MAX_PAYLOAD$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([LNET_MAX_PAYLOAD], [/* Max LNET payload */
-+#undef LNET_MAX_PAYLOAD])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4146: LN_CONFIG_PORTALS is expanded from...
-+aclocal.m4:4249: LN_CONFIG_UPTLLND is expanded from...
-+aclocal.m4:5611: LN_CONFIGURE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([PTLLNDCPPFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([PTLLNDCPPFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^PTLLNDCPPFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([UPTLLND])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([UPTLLND])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^UPTLLND$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:4272: LN_CONFIG_USOCKLND is expanded from...
-+aclocal.m4:5611: LN_CONFIGURE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([USOCKLND])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([USOCKLND])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^USOCKLND$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:1239: LC_CONFIG_OBD_BUFFER_SIZE is expanded from...
-+aclocal.m4:3246: LC_CONFIGURE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([OBD_MAX_IOCTL_BUFFER])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^OBD_MAX_IOCTL_BUFFER$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([OBD_MAX_IOCTL_BUFFER], [/* IOCTL Buffer Size */
-+#undef OBD_MAX_IOCTL_BUFFER])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_ASM_PAGE_H], [/* Define to 1 if you have the <asm/page.h> header file. */
-+#undef HAVE_ASM_PAGE_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SYS_USER_H], [/* Define to 1 if you have the <sys/user.h> header file. */
-+#undef HAVE_SYS_USER_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SYS_VFS_H], [/* Define to 1 if you have the <sys/vfs.h> header file. */
-+#undef HAVE_SYS_VFS_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
-+#undef HAVE_STDINT_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_BLKID_BLKID_H], [/* Define to 1 if you have the <blkid/blkid.h> header file. */
-+#undef HAVE_BLKID_BLKID_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_XTIO_H], [/* Define to 1 if you have the <xtio.h> header file. */
-+#undef HAVE_XTIO_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_FILE_H], [/* Define to 1 if you have the <file.h> header file. */
-+#undef HAVE_FILE_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LINUX_TYPES_H], [/* Define to 1 if you have the <linux/types.h> header file. */
-+#undef HAVE_LINUX_TYPES_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
-+#undef HAVE_SYS_TYPES_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LINUX_UNISTD_H], [/* Define to 1 if you have the <linux/unistd.h> header file. */
-+#undef HAVE_LINUX_UNISTD_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
-+#undef HAVE_UNISTD_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_NETINET_IN_H], [/* Define to 1 if you have the <netinet/in.h> header file. */
-+#undef HAVE_NETINET_IN_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_ARPA_INET_H], [/* Define to 1 if you have the <arpa/inet.h> header file. */
-+#undef HAVE_ARPA_INET_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_CATAMOUNT_DATA_H], [/* Define to 1 if you have the <catamount/data.h> header file. */
-+#undef HAVE_CATAMOUNT_DATA_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_INET_NTOA], [/* Define to 1 if you have the `inet_ntoa\' function. */
-+#undef HAVE_INET_NTOA])
-+m4trace:configure.ac:20: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:2367: AC_TRY_COMPILE is expanded from...
-+aclocal.m4:1276: LC_READLINK_SSIZE_T is expanded from...
-+aclocal.m4:3246: LC_CONFIGURE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POSIX_1003_READLINK])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_POSIX_1003_READLINK$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_POSIX_1003_READLINK], [/* readlink returns ssize_t */
-+#undef HAVE_POSIX_1003_READLINK])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_LINUX_RANDOM_H], [/* Define to 1 if you have the <linux/random.h> header file. */
-+#undef HAVE_LINUX_RANDOM_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_EXT2FS_EXT2FS_H], [/* Define to 1 if you have the <ext2fs/ext2fs.h> header file. */
-+#undef HAVE_EXT2FS_EXT2FS_H])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_ZLIB_H], [/* Define to 1 if you have the <zlib.h> header file. */
-+#undef HAVE_ZLIB_H])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ADLER])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_ADLER$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_ADLER], [/* support alder32 checksum type */
-+#undef HAVE_ADLER])
-+m4trace:configure.ac:20: -1- AC_SUBST([ZLIB])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([ZLIB])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^ZLIB$])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:3246: LC_CONFIGURE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([MIN_DF])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^MIN_DF$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([MIN_DF], [/* Report minimum OST free space */
-+#undef MIN_DF])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:3246: LC_CONFIGURE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([RANDOM_FAIL_ALLOC])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^RANDOM_FAIL_ALLOC$])
-+m4trace:configure.ac:20: -1- AH_OUTPUT([RANDOM_FAIL_ALLOC], [/* enable randomly alloc failure */
-+#undef RANDOM_FAIL_ALLOC])
-+m4trace:configure.ac:20: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:5952: LS_CONFIGURE is expanded from...
-+aclocal.m4:946: LB_CONFIGURE is expanded from...
-+configure.ac:20: the top level])
-+m4trace:configure.ac:20: -1- AC_SUBST([NET_SNMP_CONFIG])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([NET_SNMP_CONFIG])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^NET_SNMP_CONFIG$])
-+m4trace:configure.ac:20: -1- AC_SUBST([NET_SNMP_CFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([NET_SNMP_CFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^NET_SNMP_CFLAGS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([NET_SNMP_LIBS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([NET_SNMP_LIBS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^NET_SNMP_LIBS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([agentdir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([agentdir])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^agentdir$])
-+m4trace:configure.ac:20: -1- AC_SUBST([mibdir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([mibdir])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^mibdir$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([MODULES], [test x$enable_modules = xyes])
-+m4trace:configure.ac:20: -1- AC_SUBST([MODULES_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([MODULES_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^MODULES_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([MODULES_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([MODULES_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^MODULES_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([UTILS], [test x$enable_utils = xyes])
-+m4trace:configure.ac:20: -1- AC_SUBST([UTILS_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([UTILS_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^UTILS_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([UTILS_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([UTILS_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^UTILS_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([TESTS], [test x$enable_tests = xyes])
-+m4trace:configure.ac:20: -1- AC_SUBST([TESTS_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([TESTS_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^TESTS_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([TESTS_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([TESTS_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^TESTS_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([DOC], [test x$ENABLE_DOC = x1])
-+m4trace:configure.ac:20: -1- AC_SUBST([DOC_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([DOC_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^DOC_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([DOC_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([DOC_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^DOC_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([INIT_SCRIPTS], [test x$ENABLE_INIT_SCRIPTS = "x1"])
-+m4trace:configure.ac:20: -1- AC_SUBST([INIT_SCRIPTS_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([INIT_SCRIPTS_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^INIT_SCRIPTS_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([INIT_SCRIPTS_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([INIT_SCRIPTS_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^INIT_SCRIPTS_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([LINUX], [test x$lb_target_os = "xlinux"])
-+m4trace:configure.ac:20: -1- AC_SUBST([LINUX_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LINUX_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LINUX_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LINUX_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LINUX_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LINUX_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([DARWIN], [test x$lb_target_os = "xdarwin"])
-+m4trace:configure.ac:20: -1- AC_SUBST([DARWIN_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([DARWIN_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^DARWIN_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([DARWIN_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([DARWIN_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^DARWIN_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([CRAY_XT3], [test x$enable_cray_xt3 = "xyes"])
-+m4trace:configure.ac:20: -1- AC_SUBST([CRAY_XT3_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([CRAY_XT3_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CRAY_XT3_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([CRAY_XT3_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([CRAY_XT3_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CRAY_XT3_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([SUNOS], [test x$lb_target_os = "xSunOS"])
-+m4trace:configure.ac:20: -1- AC_SUBST([SUNOS_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([SUNOS_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SUNOS_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([SUNOS_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([SUNOS_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SUNOS_FALSE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LIBSYSIO_SUBDIR])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LIBSYSIO_SUBDIR])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBSYSIO_SUBDIR$])
-+m4trace:configure.ac:20: -1- AC_SUBST([SYSIO])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([SYSIO])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SYSIO$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([LINUX25], [test x$linux25 = xyes])
-+m4trace:configure.ac:20: -1- AC_SUBST([LINUX25_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LINUX25_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LINUX25_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LINUX25_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LINUX25_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LINUX25_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([BUILD_QSWLND], [test x$QSWLND = "xqswlnd"])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_QSWLND_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_QSWLND_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_QSWLND_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_QSWLND_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_QSWLND_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_QSWLND_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([BUILD_GMLND], [test x$GMLND = "xgmlnd"])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_GMLND_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_GMLND_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_GMLND_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_GMLND_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_GMLND_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_GMLND_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([BUILD_MXLND], [test x$MXLND = "xmxlnd"])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_MXLND_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_MXLND_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_MXLND_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_MXLND_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_MXLND_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_MXLND_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([BUILD_O2IBLND], [test x$O2IBLND = "xo2iblnd"])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_O2IBLND_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_O2IBLND_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_O2IBLND_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_O2IBLND_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_O2IBLND_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_O2IBLND_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([BUILD_OPENIBLND], [test x$OPENIBLND = "xopeniblnd"])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_OPENIBLND_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_OPENIBLND_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_OPENIBLND_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_OPENIBLND_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_OPENIBLND_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_OPENIBLND_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([BUILD_CIBLND], [test x$CIBLND = "xciblnd"])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_CIBLND_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_CIBLND_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_CIBLND_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_CIBLND_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_CIBLND_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_CIBLND_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([BUILD_IIBLND], [test x$IIBLND = "xiiblnd"])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_IIBLND_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_IIBLND_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_IIBLND_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_IIBLND_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_IIBLND_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_IIBLND_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([BUILD_VIBLND], [test x$VIBLND = "xviblnd"])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_VIBLND_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_VIBLND_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_VIBLND_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_VIBLND_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_VIBLND_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_VIBLND_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([BUILD_RALND], [test x$RALND = "xralnd"])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_RALND_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_RALND_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_RALND_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_RALND_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_RALND_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_RALND_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([BUILD_PTLLND], [test x$PTLLND = "xptllnd"])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_PTLLND_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_PTLLND_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_PTLLND_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_PTLLND_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_PTLLND_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_PTLLND_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([BUILD_UPTLLND], [test x$UPTLLND = "xptllnd"])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_UPTLLND_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_UPTLLND_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_UPTLLND_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_UPTLLND_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_UPTLLND_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_UPTLLND_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([BUILD_USOCKLND], [test x$USOCKLND = "xusocklnd"])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_USOCKLND_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_USOCKLND_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_USOCKLND_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([BUILD_USOCKLND_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BUILD_USOCKLND_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BUILD_USOCKLND_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([LIBLUSTRE], [test x$enable_liblustre = xyes])
-+m4trace:configure.ac:20: -1- AC_SUBST([LIBLUSTRE_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LIBLUSTRE_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBLUSTRE_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LIBLUSTRE_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LIBLUSTRE_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBLUSTRE_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([USE_QUILT], [test x$QUILT != xno])
-+m4trace:configure.ac:20: -1- AC_SUBST([USE_QUILT_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([USE_QUILT_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^USE_QUILT_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([USE_QUILT_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([USE_QUILT_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^USE_QUILT_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([LIBLUSTRE_TESTS], [test x$enable_liblustre_tests = xyes])
-+m4trace:configure.ac:20: -1- AC_SUBST([LIBLUSTRE_TESTS_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LIBLUSTRE_TESTS_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBLUSTRE_TESTS_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LIBLUSTRE_TESTS_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LIBLUSTRE_TESTS_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBLUSTRE_TESTS_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([MPITESTS], [test x$enable_mpitests = xyes], [Build MPI Tests])
-+m4trace:configure.ac:20: -1- AC_SUBST([MPITESTS_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([MPITESTS_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^MPITESTS_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([MPITESTS_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([MPITESTS_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^MPITESTS_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([CLIENT], [test x$enable_client = xyes])
-+m4trace:configure.ac:20: -1- AC_SUBST([CLIENT_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([CLIENT_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CLIENT_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([CLIENT_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([CLIENT_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^CLIENT_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([SERVER], [test x$enable_server = xyes])
-+m4trace:configure.ac:20: -1- AC_SUBST([SERVER_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([SERVER_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SERVER_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([SERVER_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([SERVER_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^SERVER_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([QUOTA], [test x$enable_quota_module = xyes])
-+m4trace:configure.ac:20: -1- AC_SUBST([QUOTA_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([QUOTA_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^QUOTA_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([QUOTA_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([QUOTA_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^QUOTA_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([BLKID], [test x$ac_cv_header_blkid_blkid_h = xyes])
-+m4trace:configure.ac:20: -1- AC_SUBST([BLKID_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BLKID_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BLKID_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([BLKID_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([BLKID_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^BLKID_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([EXT2FS_DEVEL], [test x$ac_cv_header_ext2fs_ext2fs_h = xyes])
-+m4trace:configure.ac:20: -1- AC_SUBST([EXT2FS_DEVEL_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([EXT2FS_DEVEL_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^EXT2FS_DEVEL_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([EXT2FS_DEVEL_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([EXT2FS_DEVEL_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^EXT2FS_DEVEL_FALSE$])
-+m4trace:configure.ac:20: -1- AM_CONDITIONAL([LIBPTHREAD], [test x$enable_libpthread = xyes])
-+m4trace:configure.ac:20: -1- AC_SUBST([LIBPTHREAD_TRUE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LIBPTHREAD_TRUE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBPTHREAD_TRUE$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LIBPTHREAD_FALSE])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LIBPTHREAD_FALSE])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIBPTHREAD_FALSE$])
-+m4trace:configure.ac:20: -1- AC_CONFIG_HEADERS([config.h])
-+m4trace:configure.ac:20: -1- AC_SUBST([EXTRA_KCFLAGS])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([EXTRA_KCFLAGS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^EXTRA_KCFLAGS$])
-+m4trace:configure.ac:20: -1- AC_CONFIG_FILES([Makefile
-+autoMakefile
-+
-+Rules:build/Rules.in
-+lustre.spec
-+])
-+m4trace:configure.ac:20: -1- AC_CONFIG_FILES([
-+lnet/Kernelenv
-+lnet/Makefile
-+lnet/autoMakefile
-+lnet/autoconf/Makefile
-+lnet/doc/Makefile
-+lnet/include/Makefile
-+lnet/include/libcfs/Makefile
-+lnet/include/libcfs/linux/Makefile
-+lnet/include/lnet/Makefile
-+lnet/include/lnet/linux/Makefile
-+lnet/klnds/Makefile
-+lnet/klnds/autoMakefile
-+lnet/klnds/gmlnd/Makefile
-+lnet/klnds/mxlnd/autoMakefile
-+lnet/klnds/mxlnd/Makefile
-+lnet/klnds/gmlnd/autoMakefile
-+lnet/klnds/openiblnd/Makefile
-+lnet/klnds/openiblnd/autoMakefile
-+lnet/klnds/o2iblnd/Makefile
-+lnet/klnds/o2iblnd/autoMakefile
-+lnet/klnds/ciblnd/Makefile
-+lnet/klnds/ciblnd/autoMakefile
-+lnet/klnds/iiblnd/Makefile
-+lnet/klnds/iiblnd/autoMakefile
-+lnet/klnds/viblnd/Makefile
-+lnet/klnds/viblnd/autoMakefile
-+lnet/klnds/qswlnd/Makefile
-+lnet/klnds/qswlnd/autoMakefile
-+lnet/klnds/ralnd/Makefile
-+lnet/klnds/ralnd/autoMakefile
-+lnet/klnds/socklnd/Makefile
-+lnet/klnds/socklnd/autoMakefile
-+lnet/klnds/ptllnd/Makefile
-+lnet/klnds/ptllnd/autoMakefile
-+lnet/libcfs/Makefile
-+lnet/libcfs/autoMakefile
-+lnet/libcfs/linux/Makefile
-+lnet/lnet/Makefile
-+lnet/lnet/autoMakefile
-+lnet/selftest/Makefile
-+lnet/selftest/autoMakefile
-+lnet/ulnds/Makefile
-+lnet/ulnds/autoMakefile
-+lnet/ulnds/socklnd/Makefile
-+lnet/ulnds/ptllnd/Makefile
-+lnet/utils/Makefile
-+])
-+m4trace:configure.ac:20: -1- AC_CONFIG_FILES([
-+lnet/include/libcfs/darwin/Makefile
-+lnet/include/lnet/darwin/Makefile
-+lnet/libcfs/darwin/Makefile
-+])
-+m4trace:configure.ac:20: -1- AC_CONFIG_FILES([
-+lustre/Makefile
-+lustre/autoMakefile
-+lustre/autoconf/Makefile
-+lustre/contrib/Makefile
-+lustre/doc/Makefile
-+lustre/include/Makefile
-+lustre/include/lustre_ver.h
-+lustre/include/linux/Makefile
-+lustre/include/lustre/Makefile
-+lustre/kernel_patches/targets/2.6-suse.target
-+lustre/kernel_patches/targets/2.6-vanilla.target
-+lustre/kernel_patches/targets/2.6-rhel4.target
-+lustre/kernel_patches/targets/2.6-rhel5.target
-+lustre/kernel_patches/targets/2.6-fc5.target
-+lustre/kernel_patches/targets/2.6-patchless.target
-+lustre/kernel_patches/targets/2.6-sles10.target
-+lustre/kernel_patches/targets/2.6-sles11.target
-+lustre/kernel_patches/targets/hp_pnnl-2.4.target
-+lustre/kernel_patches/targets/rh-2.4.target
-+lustre/kernel_patches/targets/rhel-2.4.target
-+lustre/kernel_patches/targets/suse-2.4.21-2.target
-+lustre/kernel_patches/targets/sles-2.4.target
-+lustre/kernel_patches/targets/2.6-oel5.target
-+lustre/ldlm/Makefile
-+lustre/liblustre/Makefile
-+lustre/liblustre/tests/Makefile
-+lustre/liblustre/tests/mpi/Makefile
-+lustre/llite/Makefile
-+lustre/llite/autoMakefile
-+lustre/lov/Makefile
-+lustre/lov/autoMakefile
-+lustre/lvfs/Makefile
-+lustre/lvfs/autoMakefile
-+lustre/mdc/Makefile
-+lustre/mdc/autoMakefile
-+lustre/mds/Makefile
-+lustre/mds/autoMakefile
-+lustre/obdclass/Makefile
-+lustre/obdclass/autoMakefile
-+lustre/obdclass/linux/Makefile
-+lustre/obdecho/Makefile
-+lustre/obdecho/autoMakefile
-+lustre/obdfilter/Makefile
-+lustre/obdfilter/autoMakefile
-+lustre/osc/Makefile
-+lustre/osc/autoMakefile
-+lustre/ost/Makefile
-+lustre/ost/autoMakefile
-+lustre/mgc/Makefile
-+lustre/mgc/autoMakefile
-+lustre/mgs/Makefile
-+lustre/mgs/autoMakefile
-+lustre/ptlrpc/Makefile
-+lustre/ptlrpc/autoMakefile
-+lustre/quota/Makefile
-+lustre/quota/autoMakefile
-+lustre/scripts/Makefile
-+lustre/tests/Makefile
-+lustre/tests/mpi/Makefile
-+lustre/utils/Makefile
-+])
-+m4trace:configure.ac:20: -1- AC_CONFIG_FILES([ lustre/obdclass/darwin/Makefile ])
-+m4trace:configure.ac:20: -1- AC_CONFIG_FILES([
-+snmp/Makefile
-+snmp/autoconf/Makefile
-+])
-+m4trace:configure.ac:20: -1- AC_SUBST([ac_configure_args])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([ac_configure_args])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^ac_configure_args$])
-+m4trace:configure.ac:20: -1- AC_SUBST([MOSTLYCLEANFILES])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([MOSTLYCLEANFILES])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^MOSTLYCLEANFILES$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LIB@&t at OBJS], [$ac_libobjs])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LIB@&t at OBJS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LIB@&t at OBJS$])
-+m4trace:configure.ac:20: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([LTLIBOBJS])
-+m4trace:configure.ac:20: -1- m4_pattern_allow([^LTLIBOBJS$])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([top_builddir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([srcdir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([abs_srcdir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([top_srcdir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([abs_top_srcdir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([builddir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([abs_builddir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([abs_top_builddir])
-+m4trace:configure.ac:20: -1- AC_SUBST_TRACE([INSTALL])
-diff -Nurwd orig/lustre-1.8.2/build/autoconf/lustre-build.m4 lustre-1.8.2/build/autoconf/lustre-build.m4
---- orig/lustre-1.8.2/build/autoconf/lustre-build.m4	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/build/autoconf/lustre-build.m4	2010-03-03 15:57:14.919642480 +0000
-@@ -816,7 +816,7 @@
- 	CC="$CC -m64"
- fi
- 
--CPPFLAGS="-I$PWD/$LIBCFS_INCLUDE_DIR -I$PWD/lnet/include -I$PWD/lustre/include $CPPFLAGS"
-+CPPFLAGS="-I$PWD/$LIBCFS_INCLUDE_DIR -I$TOP_DIR/lnet/include -I$TOP_DIR/lustre/include -I$PWD/lnet/include -I$PWD/lustre/include $CPPFLAGS"
- 
- LLCPPFLAGS="-D__arch_lib__ -D_LARGEFILE64_SOURCE=1"
- AC_SUBST(LLCPPFLAGS)
-diff -Nurwd orig/lustre-1.8.2/build/autogen.sh lustre-1.8.2/build/autogen.sh
---- orig/lustre-1.8.2/build/autogen.sh	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/build/autogen.sh	2010-03-03 15:57:14.815634149 +0000
-@@ -0,0 +1,128 @@
-+#!/bin/bash
-+
-+# taken from gnome-common/macros2/autogen.sh
-+compare_versions() {
-+    ch_min_version=$1
-+    ch_actual_version=$2
-+    ch_status=0
-+    IFS="${IFS=         }"; ch_save_IFS="$IFS"; IFS="."
-+    set $ch_actual_version
-+    for ch_min in $ch_min_version; do
-+        ch_cur=`echo $1 | sed 's/[^0-9].*$//'`; shift # remove letter suffixes
-+        if [ -z "$ch_min" ]; then break; fi
-+        if [ -z "$ch_cur" ]; then ch_status=1; break; fi
-+        if [ $ch_cur -gt $ch_min ]; then break; fi
-+        if [ $ch_cur -lt $ch_min ]; then ch_status=1; break; fi
-+    done
-+    IFS="$ch_save_IFS"
-+    return $ch_status
-+}
-+
-+error_msg() {
-+	echo "$cmd is $1.  version $required is required to build Lustre."
-+
-+	if [ -e /usr/lib/autolustre/bin/$cmd ]; then
-+		cat >&2 <<-EOF
-+		You apparently already have Lustre-specific autoconf/make RPMs
-+		installed on your system at /usr/lib/autolustre/share/$cmd.
-+		Please set your PATH to point to those versions:
-+
-+		export PATH="/usr/lib/autolustre/bin:\$PATH"
-+		EOF
-+	else
-+		cat >&2 <<-EOF
-+		CFS provides RPMs which can be installed alongside your
-+		existing autoconf/make RPMs, if you are nervous about
-+		upgrading.  See
-+
-+		ftp://ftp.lustre.org/pub/other/autolustre/README.autolustre
-+
-+		You may be able to download newer version from:
-+
-+		http://ftp.gnu.org/gnu/$tool/$tool-$required.tar.gz
-+	EOF
-+	fi
-+	[ "$cmd" = "autoconf" -a "$required" = "2.57" ] && cat >&2 <<EOF
-+
-+or for RH9 systems you can use:
-+
-+ftp://fr2.rpmfind.net/linux/redhat/9/en/os/i386/RedHat/RPMS/autoconf-2.57-3.noarch.rpm
-+EOF
-+	[ "$cmd" = "automake-1.7" -a "$required" = "1.7.8" ] && cat >&2 <<EOF
-+
-+or for RH9 systems you can use:
-+
-+ftp://fr2.rpmfind.net/linux/fedora/core/1/i386/os/Fedora/RPMS/automake-1.7.8-1.noarch.rpm
-+EOF
-+	exit 1
-+}
-+
-+check_version() {
-+    local tool
-+    local cmd
-+    local required
-+    local version
-+
-+    tool=$1
-+    cmd=$2
-+    required=$3
-+    echo -n "checking for $cmd $required... "
-+    if ! $cmd --version >/dev/null ; then
-+	error_msg "missing"
-+    fi
-+    version=$($cmd --version | awk "/$tool \(GNU/ { print \$4 }")
-+    echo "found $version"
-+    if ! compare_versions "$required" "$version" ; then
-+	error_msg "too old"
-+    fi
-+}
-+
-+echo "Checking for a complete tree..."
-+if [ -d kernel_patches ] ; then
-+    # This is ldiskfs
-+    REQUIRED_DIRS="build"
-+    CONFIGURE_DIRS=""
-+else
-+    REQUIRED_DIRS="build lnet lustre"
-+    OPTIONAL_DIRS="snmp portals"
-+    CONFIGURE_DIRS="libsysio ldiskfs"
-+fi
-+
-+for dir in $REQUIRED_DIRS ; do
-+    if [ ! -d "$dir" ] ; then
-+	cat >&2 <<EOF
-+Your tree seems to be missing $dir.
-+Please read README.lustrecvs for details.
-+EOF
-+	exit 1
-+    fi
-+    ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $PWD/$dir/autoconf"
-+done
-+# optional directories for Lustre
-+for dir in $OPTIONAL_DIRS; do
-+    if [ -d "$dir" ] ; then
-+	ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $PWD/$dir/autoconf"
-+    fi
-+done
-+
-+check_version automake automake-1.7 "1.7.8"
-+check_version autoconf autoconf "2.57"
-+
-+echo "Running aclocal-1.7 $ACLOCAL_FLAGS..."
-+aclocal-1.7 $ACLOCAL_FLAGS || exit 1
-+echo "Running autoheader..."
-+autoheader || exit 1
-+echo "Running automake-1.7..."
-+automake-1.7 -a -c || exit 1
-+echo "Running autoconf..."
-+autoconf || exit 1
-+
-+# Run autogen.sh in these directories
-+for dir in $CONFIGURE_DIRS; do
-+    if [ -d $dir ] ; then
-+        pushd $dir >/dev/null
-+        echo "Running autogen for $dir..."
-+        sh autogen.sh || exit $?
-+        popd >/dev/null
-+    fi
-+done
-diff -Nurwd orig/lustre-1.8.2/config.h.in lustre-1.8.2/config.h.in
---- orig/lustre-1.8.2/config.h.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/config.h.in	2010-03-03 16:00:10.179641581 +0000
+diff --git a/config.h.in b/config.h.in
+index 980bc9f..dfce080 100644
+--- a/config.h.in
++++ b/config.h.in
 @@ -222,9 +222,6 @@
  /* Define to 1 if you have the `gethostbyname' function. */
  #undef HAVE_GETHOSTBYNAME
@@ -24659,683 +310,10 @@ diff -Nurwd orig/lustre-1.8.2/config.h.in lustre-1.8.2/config.h.in
  #undef SIZEOF_UNSIGNED_LONG_LONG
  
  /* use tunable backoff TCP */
-diff -Nurwd orig/lustre-1.8.2/config.h.in~ lustre-1.8.2/config.h.in~
---- orig/lustre-1.8.2/config.h.in~	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/config.h.in~	2010-03-03 13:43:00.000000000 +0000
-@@ -0,0 +1,670 @@
-+/* config.h.in.  Generated from configure.ac by autoheader.  */
-+
-+/* disable libcfs CDEBUG, CWARN */
-+#undef CDEBUG_ENABLED
-+
-+/* disable libcfs ENTRY/EXIT */
-+#undef CDEBUG_ENTRY_EXIT
-+
-+/* enable posix acls for ldiskfs */
-+#undef CONFIG_LDISKFSDEV_FS_POSIX_ACL
-+
-+/* enable fs security for ldiskfs */
-+#undef CONFIG_LDISKFSDEV_FS_SECURITY
-+
-+/* enable extented attributes for ldiskfs */
-+#undef CONFIG_LDISKFSDEV_FS_XATTR
-+
-+/* build ldiskfs as a module */
-+#undef CONFIG_LDISKFS_FS_MODULE
-+
-+/* enable posix acls for ldiskfs */
-+#undef CONFIG_LDISKFS_FS_POSIX_ACL
-+
-+/* enable fs security for ldiskfs */
-+#undef CONFIG_LDISKFS_FS_SECURITY
-+
-+/* enable extended attributes for ldiskfs */
-+#undef CONFIG_LDISKFS_FS_XATTR
-+
-+/* this kernel contains Red Hat 2.4.20 patches */
-+#undef CONFIG_RH_2_4_20
-+
-+/* kernel has cpu affinity support */
-+#undef CPU_AFFINITY
-+
-+/* Enable Cray XT3 Features */
-+#undef CRAY_XT3
-+
-+/* name of ldiskfs debug program */
-+#undef DEBUGFS
-+
-+/* Enable DMU OSD */
-+#undef DMU_OSD
-+
-+/* name of ldiskfs dump program */
-+#undef DUMPE2FS
-+
-+/* name of ldiskfs fsck program */
-+#undef E2FSCK
-+
-+/* name of ldiskfs e2fsprogs package */
-+#undef E2FSPROGS
-+
-+/* name of ldiskfs label program */
-+#undef E2LABEL
-+
-+/* do data checksums */
-+#undef ENABLE_CHECKSUM
-+
-+/* Liblustre Can Recover */
-+#undef ENABLE_LIBLUSTRE_RECOVERY
-+
-+/* Use the Pinger */
-+#undef ENABLE_PINGER
-+
-+/* register_sysctl_table want 2 args */
-+#undef HAVE_2ARGS_REGISTER_SYSCTL
-+
-+/* INIT_WORK use 3 args and store data inside */
-+#undef HAVE_3ARGS_INIT_WORK
-+
-+/* vfs_symlink wants 4 args */
-+#undef HAVE_4ARGS_VFS_SYMLINK
-+
-+/* kernel exports add_to_page_cache_lru */
-+#undef HAVE_ADD_TO_PAGE_CACHE_LRU
-+
-+/* support alder32 checksum type */
-+#undef HAVE_ADLER
-+
-+/* Define to 1 if you have the <arpa/inet.h> header file. */
-+#undef HAVE_ARPA_INET_H
-+
-+/* Define to 1 if you have the <asm/page.h> header file. */
-+#undef HAVE_ASM_PAGE_H
-+
-+/* Define to 1 if you have the <asm/types.h> header file. */
-+#undef HAVE_ASM_TYPES_H
-+
-+/* kernel has atomic_cmpxchg */
-+#undef HAVE_ATOMIC_CMPXCHG
-+
-+/* kernel has atomic_inc_not_zero */
-+#undef HAVE_ATOMIC_INC_NOT_ZERO
-+
-+/* panic_notifier_list is atomic_notifier_head */
-+#undef HAVE_ATOMIC_PANIC_NOTIFIER
-+
-+/* Enable adaptive timeouts support */
-+#undef HAVE_AT_SUPPORT
-+
-+/* Enable BGL Features */
-+#undef HAVE_BGL_SUPPORT
-+
-+/* if kernel has bio_endio with 2 args */
-+#undef HAVE_BIO_ENDIO_2ARG
-+
-+/* Kernel has bit_spinlock.h */
-+#undef HAVE_BIT_SPINLOCK_H
-+
-+/* struct bio has a bi_hw_segments field */
-+#undef HAVE_BI_HW_SEGMENTS
-+
-+/* blkdev_put needs 2 paramters */
-+#undef HAVE_BLKDEV_PUT_2ARGS
-+
-+/* Define to 1 if you have the <blkid/blkid.h> header file. */
-+#undef HAVE_BLKID_BLKID_H
-+
-+/* call_rcu takes three parameters */
-+#undef HAVE_CALL_RCU_PARAM
-+
-+/* kernel has cancel_dirty_page instead of clear_page_dirty */
-+#undef HAVE_CANCEL_DIRTY_PAGE
-+
-+/* kernel has third arg can_sleep in fs/locks.c: flock_lock_file_wait() */
-+#undef HAVE_CAN_SLEEP_ARG
-+
-+/* Define to 1 if you have the <catamount/data.h> header file. */
-+#undef HAVE_CATAMOUNT_DATA_H
-+
-+/* Define to 1 if you have the `connect' function. */
-+#undef HAVE_CONNECT
-+
-+/* inode_operations->follow_link returns a cookie */
-+#undef HAVE_COOKIE_FOLLOW_LINK
-+
-+/* cpumask_t found */
-+#undef HAVE_CPUMASK_T
-+
-+/* cpu_online found */
-+#undef HAVE_CPU_ONLINE
-+
-+/* Enable delayed recovery support */
-+#undef HAVE_DELAYED_RECOVERY
-+
-+/* dentry_open needs 4 paramters */
-+#undef HAVE_DENTRY_OPEN_4ARGS
-+
-+/* kernel has new dev_set_rdonly */
-+#undef HAVE_DEV_SET_RDONLY
-+
-+/* after 2.6.17 dquote use mutex instead if semaphore */
-+#undef HAVE_DQUOTOFF_MUTEX
-+
-+/* dump_trace is exported */
-+#undef HAVE_DUMP_TRACE
-+
-+/* Kernel has d_add_unique */
-+#undef HAVE_D_ADD_UNIQUE
-+
-+/* d_move_locked is exported by the kernel */
-+#undef HAVE_D_MOVE_LOCKED
-+
-+/* d_obtain_alias exist in kernel */
-+#undef HAVE_D_OBTAIN_ALIAS
-+
-+/* d_rehash_cond is exported by the kernel */
-+#undef HAVE_D_REHASH_COND
-+
-+/* Define to 1 if you have the <endian.h> header file. */
-+#undef HAVE_ENDIAN_H
-+
-+/* inode_permission is exported by the kernel */
-+#undef HAVE_EXPORT_INODE_PERMISSION
-+
-+/* kernel exports __iget */
-+#undef HAVE_EXPORT___IGET
-+
-+/* Define to 1 if you have the <ext2fs/ext2fs.h> header file. */
-+#undef HAVE_EXT2FS_EXT2FS_H
-+
-+/* build ext4 based ldiskfs */
-+#undef HAVE_EXT4_LDISKFS
-+
-+/* kernel has .fh_to_dentry member in export_operations struct */
-+#undef HAVE_FH_TO_DENTRY
-+
-+/* filemap_fdatawrite_range is exported by the kernel */
-+#undef HAVE_FILEMAP_FDATAWRITE_RANGE
-+
-+/* Kernel exports filemap_populate */
-+#undef HAVE_FILEMAP_POPULATE
-+
-+/* Define to 1 if you have the <file.h> header file. */
-+#undef HAVE_FILE_H
-+
-+/* struct open_intent has a file field */
-+#undef HAVE_FILE_IN_STRUCT_INTENT
-+
-+/* use fops->readv */
-+#undef HAVE_FILE_READV
-+
-+/* kernel have file_remove_suid */
-+#undef HAVE_FILE_REMOVE_SUID
-+
-+/* use file_update_time */
-+#undef HAVE_FILE_UPDATE_TIME
-+
-+/* use fops->writev */
-+#undef HAVE_FILE_WRITEV
-+
-+/* kernel has FS_RENAME_DOES_D_MOVE flag */
-+#undef HAVE_FS_RENAME_DOES_D_MOVE
-+
-+/* fs_struct use path structure */
-+#undef HAVE_FS_STRUCT_USE_PATH
-+
-+/* struct file_operations has flock field */
-+#undef HAVE_F_OP_FLOCK
-+
-+/* Define to 1 if you have the `gethostbyname' function. */
-+#undef HAVE_GETHOSTBYNAME
-+
-+/* Define to 1 if you have the `get_preemption_level' function. */
-+#undef HAVE_GET_PREEMPTION_LEVEL
-+
-+/* gfp_t found */
-+#undef HAVE_GFP_T
-+
-+/* kernel exports grab_cache_page_nowait_gfp */
-+#undef HAVE_GRAB_CACHE_PAGE_NOWAIT_GFP
-+
-+/* Define to 1 if you have the `inet_ntoa' function. */
-+#undef HAVE_INET_NTOA
-+
-+/* struct inode has i_blksize field */
-+#undef HAVE_INODE_BLKSIZE
-+
-+/* struct inode has i_private field */
-+#undef HAVE_INODE_IPRIVATE
-+
-+/* after 2.6.15 inode have i_mutex intead of i_sem */
-+#undef HAVE_INODE_I_MUTEX
-+
-+/* inode_operations->permission have two args */
-+#undef HAVE_INODE_PERMISION_2ARGS
-+
-+/* Define to 1 if you have the <inttypes.h> header file. */
-+#undef HAVE_INTTYPES_H
-+
-+/* Define if return type of invalidatepage should be int */
-+#undef HAVE_INVALIDATEPAGE_RETURN_INT
-+
-+/* invalidate_bdev has second argument */
-+#undef HAVE_INVALIDATE_BDEV_2ARG
-+
-+/* exported invalidate_inode_pages */
-+#undef HAVE_INVALIDATE_INODE_PAGES
-+
-+/* exported invalidate_mapping_pages */
-+#undef HAVE_INVALIDATE_MAPPING_PAGES
-+
-+/* kernel has .sendfile */
-+#undef HAVE_KERNEL_SENDFILE
-+
-+/* kernel has .slice_read */
-+#undef HAVE_KERNEL_SPLICE_READ
-+
-+/* kernel has .write_begin/end */
-+#undef HAVE_KERNEL_WRITE_BEGIN_END
-+
-+/* kernel __u64 is long long type */
-+#undef HAVE_KERN__U64_LONG_LONG
-+
-+/* kernel has struct kmem_cache */
-+#undef HAVE_KMEM_CACHE
-+
-+/* kmem_cache_create has dtor argument */
-+#undef HAVE_KMEM_CACHE_CREATE_DTOR
-+
-+/* kmem_cache_destroy(cachep) return int */
-+#undef HAVE_KMEM_CACHE_DESTROY_INT
-+
-+/* enable use of ldiskfsprogs package */
-+#undef HAVE_LDISKFSPROGS
-+
-+/* ldiskfs/xattr.h found */
-+#undef HAVE_LDISKFS_XATTR_H
-+
-+/* __le16 and __le32 types are defined */
-+#undef HAVE_LE_TYPES
-+
-+/* use libcap */
-+#undef HAVE_LIBCAP
-+
-+/* libefence support is requested */
-+#undef HAVE_LIBEFENCE
-+
-+/* use libpthread */
-+#undef HAVE_LIBPTHREAD
-+
-+/* readline library is available */
-+#undef HAVE_LIBREADLINE
-+
-+/* libwrap support is requested */
-+#undef HAVE_LIBWRAP
-+
-+/* kernel has include/linux/cred.h */
-+#undef HAVE_LINUX_CRED_H
-+
-+/* kernel has include/exportfs.h */
-+#undef HAVE_LINUX_EXPORTFS_H
-+
-+/* Kernel has fiemap.h */
-+#undef HAVE_LINUX_FIEMAP_H
-+
-+/* kernel has include/mm_types.h */
-+#undef HAVE_LINUX_MMTYPES_H
-+
-+/* linux/posix_acl_xattr.h found */
-+#undef HAVE_LINUX_POSIX_ACL_XATTR_H
-+
-+/* Define to 1 if you have the <linux/random.h> header file. */
-+#undef HAVE_LINUX_RANDOM_H
-+
-+/* Define to 1 if you have the <linux/types.h> header file. */
-+#undef HAVE_LINUX_TYPES_H
-+
-+/* Define to 1 if you have the <linux/unistd.h> header file. */
-+#undef HAVE_LINUX_UNISTD_H
-+
-+/* Define to 1 if you have the <linux/version.h> header file. */
-+#undef HAVE_LINUX_VERSION_H
-+
-+/* Enable lru resize support */
-+#undef HAVE_LRU_RESIZE_SUPPORT
-+
-+/* kernel have mapping_cap_writeback_dirty */
-+#undef HAVE_MAPPING_CAP_WRITEBACK_DIRTY
-+
-+/* Define to 1 if you have the <memory.h> header file. */
-+#undef HAVE_MEMORY_H
-+
-+/* kernel has MS_FLOCK_LOCK flag */
-+#undef HAVE_MS_FLOCK_LOCK
-+
-+/* Define to 1 if you have the <netdb.h> header file. */
-+#undef HAVE_NETDB_H
-+
-+/* Define to 1 if you have the <netinet/in.h> header file. */
-+#undef HAVE_NETINET_IN_H
-+
-+/* Define to 1 if you have the <netinet/tcp.h> header file. */
-+#undef HAVE_NETINET_TCP_H
-+
-+/* node_to_cpumask is exported by the kernel */
-+#undef HAVE_NODE_TO_CPUMASK
-+
-+/* is kernel export nr_pagecache */
-+#undef HAVE_NR_PAGECACHE
-+
-+/* has completion vector */
-+#undef HAVE_OFED_IB_COMP_VECTOR
-+
-+/* ib_dma_map_single defined */
-+#undef HAVE_OFED_IB_DMA_MAP
-+
-+/* has completion vector */
-+#undef HAVE_OFED_RDMA_CMEV_ADDRCHANGE
-+
-+/* has completion vector */
-+#undef HAVE_OFED_RDMA_CMEV_TIMEWAIT_EXIT
-+
-+/* has transport iWARP */
-+#undef HAVE_OFED_TRANSPORT_IWARP
-+
-+/* does kernel have PageChecked and SetPageChecked */
-+#undef HAVE_PAGE_CHECKED
-+
-+/* kernel have PageConstant supported */
-+#undef HAVE_PAGE_CONSTANT
-+
-+/* struct page has a list field */
-+#undef HAVE_PAGE_LIST
-+
-+/* kernel has a remove suid that takes a struct path */
-+#undef HAVE_PATH_REMOVE_SUID
-+
-+/* percpu_counter_init has two arguments */
-+#undef HAVE_PERCPU_2ND_ARG
-+
-+/* percpu_counter found */
-+#undef HAVE_PERCPU_COUNTER
-+
-+/* is kernel have PG_fs_misc */
-+#undef HAVE_PG_FS_MISC
-+
-+/* readlink returns ssize_t */
-+#undef HAVE_POSIX_1003_READLINK
-+
-+/* kernel has deleted member in procfs entry struct */
-+#undef HAVE_PROCFS_DELETED
-+
-+/* kernel has pde_users member in procfs entry struct */
-+#undef HAVE_PROCFS_USERS
-+
-+/* have quota64 */
-+#undef HAVE_QUOTA64
-+
-+/* kernel has include/linux/quotaio_v1.h */
-+#undef HAVE_QUOTAIO_V1_H
-+
-+/* quota_off needs 3 paramters */
-+#undef HAVE_QUOTA_OFF_3ARGS
-+
-+/* quota_on needs 5 paramters */
-+#undef HAVE_QUOTA_ON_5ARGS
-+
-+/* Enable quota support */
-+#undef HAVE_QUOTA_SUPPORT
-+
-+/* have RCU defined */
-+#undef HAVE_RCU
-+
-+/* super_operations has a read_inode */
-+#undef HAVE_READ_INODE_IN_SBOPS
-+
-+/* kernel exports register_shrinker */
-+#undef HAVE_REGISTER_SHRINKER
-+
-+/* releasepage with gfp_t parameter */
-+#undef HAVE_RELEASEPAGE_WITH_GFP
-+
-+/* mapping->tree_lock is rw_lock */
-+#undef HAVE_RW_TREE_LOCK
-+
-+/* Kernel has a sb_any_quota_active */
-+#undef HAVE_SB_ANY_QUOTA_ACTIVE
-+
-+/* Kernel has a sb_has_quota_active */
-+#undef HAVE_SB_HAS_QUOTA_ACTIVE
-+
-+/* struct scatterlist has page member */
-+#undef HAVE_SCATTERLIST_SETPAGE
-+
-+/* SLES10 SP2 use extra parameter in vfs */
-+#undef HAVE_SECURITY_PLUG
-+
-+/* semaphore counter is atomic */
-+#undef HAVE_SEM_COUNT_ATOMIC
-+
-+/* show_task is exported */
-+#undef HAVE_SHOW_TASK
-+
-+/* size_t is long type */
-+#undef HAVE_SIZE_T_LONG
-+
-+/* Define to 1 if you have the `socket' function. */
-+#undef HAVE_SOCKET
-+
-+/* sock_map_fd have second argument */
-+#undef HAVE_SOCK_MAP_FD_2ARG
-+
-+/* spinlock_t is defined */
-+#undef HAVE_SPINLOCK_T
-+
-+/* ssize_t is long type */
-+#undef HAVE_SSIZE_T_LONG
-+
-+/* first parameter of vfs_statfs is dentry */
-+#undef HAVE_STATFS_DENTRY_PARAM
-+
-+/* struct statfs has a namelen field */
-+#undef HAVE_STATFS_NAMELEN
-+
-+/* Define to 1 if you have the <stdint.h> header file. */
-+#undef HAVE_STDINT_H
-+
-+/* Define to 1 if you have the <stdlib.h> header file. */
-+#undef HAVE_STDLIB_H
-+
-+/* Define to 1 if you have the <strings.h> header file. */
-+#undef HAVE_STRINGS_H
-+
-+/* Define to 1 if you have the <string.h> header file. */
-+#undef HAVE_STRING_H
-+
-+/* Define to 1 if you have the `strnlen' function. */
-+#undef HAVE_STRNLEN
-+
-+/* struct cred found */
-+#undef HAVE_STRUCT_CRED
-+
-+/* in 2.6.12 synchronize_rcu preferred over synchronize_kernel */
-+#undef HAVE_SYNCHRONIZE_RCU
-+
-+/* sysctl has CTL_UNNUMBERED */
-+#undef HAVE_SYSCTL_UNNUMBERED
-+
-+/* kernel exports sysctl_vfs_cache_pressure */
-+#undef HAVE_SYSCTL_VFS_CACHE_PRESSURE
-+
-+/* Define to 1 if you have the <sys/ioctl.h> header file. */
-+#undef HAVE_SYS_IOCTL_H
-+
-+/* Define to 1 if you have <sys/quota.h>. */
-+#undef HAVE_SYS_QUOTA_H
-+
-+/* Define to 1 if you have the <sys/stat.h> header file. */
-+#undef HAVE_SYS_STAT_H
-+
-+/* Define to 1 if you have the <sys/types.h> header file. */
-+#undef HAVE_SYS_TYPES_H
-+
-+/* Define to 1 if you have the <sys/user.h> header file. */
-+#undef HAVE_SYS_USER_H
-+
-+/* Define to 1 if you have the <sys/vfs.h> header file. */
-+#undef HAVE_SYS_VFS_H
-+
-+/* tasklist_lock exported */
-+#undef HAVE_TASKLIST_LOCK
-+
-+/* task_struct has rcu field */
-+#undef HAVE_TASK_RCU
-+
-+/* print_trace_address has reliable argument */
-+#undef HAVE_TRACE_ADDRESS_RELIABLE
-+
-+/* kernel export truncate_complete_page */
-+#undef HAVE_TRUNCATE_COMPLETE_PAGE
-+
-+/* kernel export truncate_inode_pages_range */
-+#undef HAVE_TRUNCATE_RANGE
-+
-+/* kernel use trylock_page for page lock */
-+#undef HAVE_TRYLOCK_PAGE
-+
-+/* Define umount_begin need second argument */
-+#undef HAVE_UMOUNTBEGIN_VFSMOUNT
-+
-+/* Define to 1 if you have the <unistd.h> header file. */
-+#undef HAVE_UNISTD_H
-+
-+/* unregister_blkdev return int */
-+#undef HAVE_UNREGISTER_BLKDEV_RETURN_INT
-+
-+/* unshare_fs_struct found */
-+#undef HAVE_UNSHARE_FS_STRUCT
-+
-+/* userspace __u64 is long long type */
-+#undef HAVE_USER__U64_LONG_LONG
-+
-+/* vfs_dq_off is defined */
-+#undef HAVE_VFS_DQ_OFF
-+
-+/* VFS intent patches are applied */
-+#undef HAVE_VFS_INTENT_PATCHES
-+
-+/* vfs_kern_mount exist in kernel */
-+#undef HAVE_VFS_KERN_MOUNT
-+
-+/* if vfs_readdir need 64bit inode number */
-+#undef HAVE_VFS_READDIR_U64_INO
-+
-+/* vfs_symlink need 5 parameteres */
-+#undef HAVE_VFS_SYMLINK_5ARGS
-+
-+/* if kernel has .fault in vm_operation_struct */
-+#undef HAVE_VM_OP_FAULT
-+
-+/* Kernel has xattr_acl */
-+#undef HAVE_XATTR_ACL
-+
-+/* Define to 1 if you have the <xtio.h> header file. */
-+#undef HAVE_XTIO_H
-+
-+/* Define to 1 if you have the <zlib.h> header file. */
-+#undef HAVE_ZLIB_H
-+
-+/* __d_move is exported by the kernel */
-+#undef HAVE___D_MOVE
-+
-+/* __d_rehash is exported by the kernel */
-+#undef HAVE___D_REHASH
-+
-+/* call sysio init functions */
-+#undef INIT_SYSIO
-+
-+/* quota_read found */
-+#undef KERNEL_SUPPORTS_QUOTA_READ
-+
-+/* enable libcfs LASSERT, LASSERTF */
-+#undef LIBCFS_DEBUG
-+
-+/* Liblustre Support ACL-enabled MDS */
-+#undef LIBLUSTRE_POSIX_ACL
-+
-+/* use /dev/urandom for random data */
-+#undef LIBLUSTRE_USE_URANDOM
-+
-+/* use dumplog on panic */
-+#undef LNET_DUMP_ON_PANIC
-+
-+/* Max LNET payload */
-+#undef LNET_MAX_PAYLOAD
-+
-+/* Multi-threaded user-level lustre port */
-+#undef LUSTRE_ULEVEL_MT
-+
-+/* Report minimum OST free space */
-+#undef MIN_DF
-+
-+/* name of ldiskfs mkfs program */
-+#undef MKE2FS
-+
-+/* IOCTL Buffer Size */
-+#undef OBD_MAX_IOCTL_BUFFER
-+
-+/* Name of package */
-+#undef PACKAGE
-+
-+/* Define to the address where bug reports for this package should be sent. */
-+#undef PACKAGE_BUGREPORT
-+
-+/* Define to the full name of this package. */
-+#undef PACKAGE_NAME
-+
-+/* Define to the full name and version of this package. */
-+#undef PACKAGE_STRING
-+
-+/* Define to the one symbol short name of this package. */
-+#undef PACKAGE_TARNAME
-+
-+/* Define to the version of this package. */
-+#undef PACKAGE_VERSION
-+
-+/* Enable POSIX OSD */
-+#undef POSIX_OSD
-+
-+/* enable randomly alloc failure */
-+#undef RANDOM_FAIL_ALLOC
-+
-+/* kernel using unsigned for shrinker callback */
-+#undef SHRINKER_MASK_T
-+
-+/* The size of a `unsigned long long', as computed by sizeof. */
-+#undef SIZEOF_UNSIGNED_LONG_LONG
-+
-+/* use tunable backoff TCP */
-+#undef SOCKNAL_BACKOFF
-+
-+/* tunable backoff TCP in ms */
-+#undef SOCKNAL_BACKOFF_MS
-+
-+/* Define to 1 if you have the ANSI C header files. */
-+#undef STDC_HEADERS
-+
-+/* name of ldiskfs tune program */
-+#undef TUNE2FS
-+
-+/* Enable user-level OSS */
-+#undef UOSS_SUPPORT
-+
-+/* Write when Checking Health */
-+#undef USE_HEALTH_CHECK_WRITE
-+
-+/* Version number of package */
-+#undef VERSION
-diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
---- orig/lustre-1.8.2/configure	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/configure	2010-03-03 16:00:15.640632502 +0000
+diff --git a/configure b/configure
+index 55ca570..e62bec2 100755
+--- a/configure
++++ b/configure
 @@ -1,27 +1,56 @@
  #! /bin/sh
  # Guess values for system-dependent variables and create Makefiles.
@@ -25399,7 +377,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # Support unset when possible.
  if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
-@@ -31,8 +60,43 @@
+@@ -31,8 +60,43 @@ else
  fi
  
  
@@ -25444,7 +422,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  PS1='$ '
  PS2='> '
  PS4='+ '
-@@ -46,18 +110,19 @@
+@@ -46,18 +110,19 @@ do
    if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
      eval $as_var=C; export $as_var
    else
@@ -25467,7 +445,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    as_basename=basename
  else
    as_basename=false
-@@ -65,157 +130,388 @@
+@@ -65,157 +130,388 @@ fi
  
  
  # Name of the executable.
@@ -25482,6 +460,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
 -  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\/\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^.*\/\([^/][^/]*\)\/*$/{
 +	    s//\1/
 +	    q
@@ -25494,7 +473,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
  
 +# CDPATH.
 +$as_unset CDPATH
@@ -25514,15 +493,17 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  chmod +x conf$$.sh
 -  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
 -    PATH_SEPARATOR=';'
+-  else
+-    PATH_SEPARATOR=:
+-  fi
+-  rm -f conf$$.sh
 +if test "x$CONFIG_SHELL" = x; then
 +  if (eval ":") 2>/dev/null; then
 +  as_have_required=yes
-   else
--    PATH_SEPARATOR=:
++else
 +  as_have_required=no
-   fi
--  rm -f conf$$.sh
-+
+ fi
+ 
 +  if test $as_have_required = yes && 	 (eval ":
 +(as_func_return () {
 +  (exit \$1)
@@ -25539,19 +520,6 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +as_func_ret_failure () {
 +  return 1
 +}
-+
-+exitcode=0
-+if as_func_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_success failed.
- fi
- 
-+if as_func_failure; then
-+  exitcode=1
-+  echo as_func_failure succeeded.
-+fi
  
 -  as_lineno_1=$LINENO
 -  as_lineno_2=$LINENO
@@ -25569,11 +537,12 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  test -z "$as_dir" && as_dir=.
 -  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 -done
-+if as_func_ret_success; then
++exitcode=0
++if as_func_success; then
 +  :
 +else
 +  exitcode=1
-+  echo as_func_ret_success failed.
++  echo as_func_success failed.
 +fi
  
 -       ;;
@@ -25582,22 +551,36 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  # in which case we are not to be found in the path.
 -  if test "x$as_myself" = x; then
 -    as_myself=$0
-+if as_func_ret_failure; then
-+  exitcode=1
-+  echo as_func_ret_failure succeeded.
-   fi
+-  fi
 -  if test ! -f "$as_myself"; then
 -    { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
 -   { (exit 1); exit 1; }; }
+-  fi
+-  case $CONFIG_SHELL in
+-  '')
++if as_func_failure; then
++  exitcode=1
++  echo as_func_failure succeeded.
++fi
++
++if as_func_ret_success; then
++  :
++else
++  exitcode=1
++  echo as_func_ret_success failed.
++fi
++
++if as_func_ret_failure; then
++  exitcode=1
++  echo as_func_ret_failure succeeded.
++fi
 +
 +if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
 +  :
 +else
 +  exitcode=1
 +  echo positional parameters were not saved.
-   fi
--  case $CONFIG_SHELL in
--  '')
++fi
 +
 +test \$exitcode = 0) || { (exit 1); exit 1; }
 +
@@ -25616,7 +599,8 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
 -  for as_base in sh bash ksh sh5; do
- 	 case $as_dir in
+-	 case $as_dir in
++  case $as_dir in
  	 /*)
 -	   if ("$as_dir/$as_base" -c '
 +	   for as_base in sh bash ksh sh5; do
@@ -25731,6 +715,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -	     exec "$CONFIG_SHELL" "$0" ${1+"$@"}
 -	   fi;;
 -	 esac
+-       done
+-done
+-;;
+-  esac
 +  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; }
 +
 +_ASEOF
@@ -25740,14 +728,12 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +
 +fi
 +
-        done
++      done
 +
 +      if test "x$CONFIG_SHELL" != x; then
 +  for as_var in BASH_ENV ENV
 +        do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
- done
--;;
--  esac
++        done
 +        export CONFIG_SHELL
 +        exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
 +fi
@@ -25857,8 +843,9 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +      :lineno
        N
 -      s,$,-,
-       : loop
+-      : loop
 -      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
++      :loop
 +      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
        t loop
 -      s,-$,,
@@ -25924,16 +911,16 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
 -  if test -f conf$$.exe; then
 -    # Don't use ln at all; we don't have any links
--    as_ln_s='cp -p'
--  else
-     as_ln_s='ln -s'
--  fi
++  as_ln_s='ln -s'
 +  # ... but there are two gotchas:
 +  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 +  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 +  # In both cases, we have to default to `cp -p'.
 +  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-+    as_ln_s='cp -p'
+     as_ln_s='cp -p'
+-  else
+-    as_ln_s='ln -s'
+-  fi
  elif ln conf$$.file conf$$ 2>/dev/null; then
    as_ln_s=ln
  else
@@ -25945,7 +932,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  if mkdir -p . 2>/dev/null; then
    as_mkdir_p=:
-@@ -224,7 +520,28 @@
+@@ -224,7 +520,28 @@ else
    as_mkdir_p=false
  fi
  
@@ -25975,7 +962,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # Sed expression to map a string onto a valid CPP name.
  as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-@@ -233,39 +550,27 @@
+@@ -233,39 +550,27 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  
  
@@ -26018,7 +1005,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  # Identity of this package.
  PACKAGE_NAME='Lustre'
  PACKAGE_TARNAME='lustre'
-@@ -278,48 +583,312 @@
+@@ -278,48 +583,312 @@ ac_default_prefix=/usr
  # Factoring default headers for most tests.
  ac_includes_default="\
  #include <stdio.h>
@@ -26058,11 +1045,12 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -#else
 -# if HAVE_STDINT_H
 -#  include <stdint.h>
- # endif
-+#ifdef HAVE_STDINT_H
-+# include <stdint.h>
+-# endif
  #endif
 -#if HAVE_UNISTD_H
++#ifdef HAVE_STDINT_H
++# include <stdint.h>
++#endif
 +#ifdef HAVE_UNISTD_H
  # include <unistd.h>
  #endif"
@@ -26350,7 +1338,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # Initialize some variables set by options.
  ac_init_help=
-@@ -346,34 +915,48 @@
+@@ -346,34 +915,48 @@ x_libraries=NONE
  # and all the variables that are supposed to be based on exec_prefix
  # by default will actually change.
  # Use braces instead of parens because sh, perl, etc. also accept them.
@@ -26406,7 +1394,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
    -bindir | --bindir | --bindi | --bind | --bin | --bi)
      ac_prev=bindir ;;
-@@ -395,33 +978,45 @@
+@@ -395,33 +978,45 @@ do
    --config-cache | -C)
      cache_file=config.cache ;;
  
@@ -26465,7 +1453,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
    -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
    | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
-@@ -448,6 +1043,12 @@
+@@ -448,6 +1043,12 @@ do
    -host=* | --host=* | --hos=* | --ho=*)
      host_alias=$ac_optarg ;;
  
@@ -26478,7 +1466,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    -includedir | --includedir | --includedi | --included | --include \
    | --includ | --inclu | --incl | --inc)
      ac_prev=includedir ;;
-@@ -472,13 +1073,16 @@
+@@ -472,13 +1073,16 @@ do
    | --libexe=* | --libex=* | --libe=*)
      libexecdir=$ac_optarg ;;
  
@@ -26499,7 +1487,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
      localstatedir=$ac_optarg ;;
  
    -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
-@@ -543,6 +1147,16 @@
+@@ -543,6 +1147,16 @@ do
    | --progr-tra=* | --program-tr=* | --program-t=*)
      program_transform_name=$ac_optarg ;;
  
@@ -26516,7 +1504,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
    | -silent | --silent | --silen | --sile | --sil)
      silent=yes ;;
-@@ -595,24 +1209,20 @@
+@@ -595,24 +1209,20 @@ do
    -with-* | --with-*)
      ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
      # Reject names that are not valid shell variable names.
@@ -26547,7 +1535,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
    --x)
      # Obsolete; use --with-x.
-@@ -643,8 +1253,7 @@
+@@ -643,8 +1253,7 @@ Try \`$0 --help' for more information." >&2
      expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
        { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
     { (exit 1); exit 1; }; }
@@ -26557,7 +1545,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
      export $ac_envvar ;;
  
    *)
-@@ -664,27 +1273,19 @@
+@@ -664,27 +1273,19 @@ if test -n "$ac_prev"; then
     { (exit 1); exit 1; }; }
  fi
  
@@ -26595,7 +1583,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  done
  
  # There might be people who depend on the old broken behavior: `$host'
-@@ -711,74 +1312,76 @@
+@@ -711,74 +1312,76 @@ test -n "$host_alias" && ac_tool_prefix=$host_alias-
  test "$silent" = yes && exec 6>/dev/null
  
  
@@ -26627,6 +1615,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -26643,7 +1632,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
    srcdir=$ac_confdir
 -  if test ! -r $srcdir/$ac_unique_file; then
 +  if test ! -r "$srcdir/$ac_unique_file"; then
@@ -26655,14 +1644,15 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -if test ! -r $srcdir/$ac_unique_file; then
 -  if test "$ac_srcdir_defaulted" = yes; then
 -    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
--   { (exit 1); exit 1; }; }
--  else
 +if test ! -r "$srcdir/$ac_unique_file"; then
 +  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
-     { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
++  { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
     { (exit 1); exit 1; }; }
-   fi
--fi
+-  else
+-    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
+-   { (exit 1); exit 1; }; }
+-  fi
+ fi
 -(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
 -  { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
 +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
@@ -26722,7 +1712,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  #
  # Report the --help message.
-@@ -807,9 +1410,6 @@
+@@ -807,9 +1410,6 @@ Configuration:
    -n, --no-create         do not create output files
        --srcdir=DIR        find the sources in DIR [configure dir or \`..']
  
@@ -26732,7 +1722,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  Installation directories:
    --prefix=PREFIX         install architecture-independent files in PREFIX
  			  [$ac_default_prefix]
-@@ -827,15 +1427,22 @@
+@@ -827,15 +1427,22 @@ Fine tuning of the installation directories:
    --bindir=DIR           user executables [EPREFIX/bin]
    --sbindir=DIR          system admin executables [EPREFIX/sbin]
    --libexecdir=DIR       program executables [EPREFIX/libexec]
@@ -26758,7 +1748,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  _ACEOF
  
    cat <<\_ACEOF
-@@ -861,6 +1468,7 @@
+@@ -861,6 +1468,7 @@ if test -n "$ac_init_help"; then
  Optional Features:
    --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
    --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
@@ -26766,7 +1756,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    --disable-dependency-tracking Speeds up one-time builds
    --enable-dependency-tracking  Do not reject slow dependency extractors
    --enable-cray-xt3       enable building of Cray XT3 features
-@@ -875,7 +1483,6 @@
+@@ -875,7 +1483,6 @@ Optional Features:
    --disable-libcfs-cdebug disable libcfs CDEBUG, CWARN
    --disable-libcfs-trace  disable libcfs ENTRY/EXIT
    --disable-libcfs-assert disable libcfs LASSERT, LASSERTF
@@ -26774,7 +1764,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    --disable-modules       disable building of Lustre kernel modules
    --disable-affinity      disable process/irq affinity
    --disable-backoff       disable socknal tunable backoff
-@@ -953,8 +1560,9 @@
+@@ -953,8 +1560,9 @@ Some influential environment variables:
    CFLAGS      C compiler flags
    LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
                nonstandard directory <lib dir>
@@ -26786,7 +1776,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    CPP         C preprocessor
  
  Use these variables to override the choices made by `configure' or to help
-@@ -962,120 +1570,86 @@
+@@ -962,120 +1570,86 @@ it to find libraries and programs with nonstandard names/locations.
  
  Report bugs to <https://bugzilla.lustre.org/>.
  _ACEOF
@@ -26841,7 +1831,13 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  *) # Relative path.
 -    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
 -    ac_top_srcdir=$ac_top_builddir$srcdir ;;
--esac
++    ac_top_srcdir=$srcdir
++    ac_abs_top_srcdir=$srcdir ;;
++  *) # Relative name.
++    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
++    ac_top_srcdir=$ac_top_build_prefix$srcdir
++    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+ esac
 -
 -# Do not use `cd foo && pwd` to compute absolute paths, because
 -# the directories may not exist.
@@ -26880,15 +1876,8 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
 -  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
 -  esac;;
-+    ac_top_srcdir=$srcdir
-+    ac_abs_top_srcdir=$srcdir ;;
-+  *) # Relative name.
-+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
-+    ac_top_srcdir=$ac_top_build_prefix$srcdir
-+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
- esac
-+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
- 
+-esac
+-
 -    cd $ac_dir
 -    # Check for guested configure; otherwise get Cygnus style configure.
 -    if test -f $ac_srcdir/configure.gnu; then
@@ -26901,6 +1890,8 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -	   test -f $ac_srcdir/configure.in; then
 -      echo
 -      $ac_configure --help
++ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
++
 +    cd "$ac_dir" || { ac_status=$?; continue; }
 +    # Check for guested configure.
 +    if test -f "$ac_srcdir/configure.gnu"; then
@@ -26952,7 +1943,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  {
  cat <<_ASUNAME
  ## --------- ##
-@@ -1094,7 +1668,7 @@
+@@ -1094,7 +1668,7 @@ uname -v = `(uname -v) 2>/dev/null || echo unknown`
  /bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
  /usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
  /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
@@ -26961,7 +1952,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  /bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
  /usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
  /bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
-@@ -1108,6 +1682,7 @@
+@@ -1108,6 +1682,7 @@ do
    test -z "$as_dir" && as_dir=.
    echo "PATH: $as_dir"
  done
@@ -26969,7 +1960,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  } >&5
  
-@@ -1129,7 +1704,6 @@
+@@ -1129,7 +1704,6 @@ _ACEOF
  ac_configure_args=
  ac_configure_args0=
  ac_configure_args1=
@@ -26977,7 +1968,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  ac_must_keep_next=false
  for ac_pass in 1 2
  do
-@@ -1140,7 +1714,7 @@
+@@ -1140,7 +1714,7 @@ do
      -q | -quiet | --quiet | --quie | --qui | --qu | --q \
      | -silent | --silent | --silen | --sile | --sil)
        continue ;;
@@ -26986,7 +1977,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
        ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
      esac
      case $ac_pass in
-@@ -1162,9 +1736,7 @@
+@@ -1162,9 +1736,7 @@ do
  	  -* ) ac_must_keep_next=true ;;
  	esac
        fi
@@ -26997,7 +1988,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
        ;;
      esac
    done
-@@ -1175,8 +1747,8 @@
+@@ -1175,8 +1747,8 @@ $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_
  # When interrupted or exit'd, cleanup temporary files, and complete
  # config.log.  We remove comments because anyway the quotes in there
  # would cause problems or look ugly.
@@ -27008,7 +1999,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  trap 'exit_status=$?
    # Save into config.log some information that might help in debugging.
    {
-@@ -1189,20 +1761,34 @@
+@@ -1189,20 +1761,34 @@ trap 'exit_status=$?
  _ASBOX
      echo
      # The following way of writing the cache mishandles newlines in values,
@@ -27053,7 +2044,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
      echo
  
      cat <<\_ASBOX
-@@ -1213,22 +1799,28 @@
+@@ -1213,22 +1799,28 @@ _ASBOX
      echo
      for ac_var in $ac_subst_vars
      do
@@ -27089,7 +2080,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
        done | sort
        echo
      fi
-@@ -1240,15 +1832,15 @@
+@@ -1240,26 +1832,24 @@ _ASBOX
  ## ----------- ##
  _ASBOX
        echo
@@ -27106,9 +2097,11 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +  rm -f core *.core core.conftest.* &&
 +    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
      exit $exit_status
-      ' 0
+-     ' 0
++' 0
  for ac_signal in 1 2 13 15; do
-@@ -1257,9 +1849,7 @@
+   trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
+ done
  ac_signal=0
  
  # confdefs.h avoids OS command line length limits that DEFS can exceed.
@@ -27119,20 +2112,21 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # Predefined preprocessor variables.
  
-@@ -1290,14 +1880,17 @@
+@@ -1290,14 +1880,17 @@ _ACEOF
  
  # Let the site file select an alternate cache file if it wants to.
  # Prefer explicitly selected file to automatically selected ones.
 -if test -z "$CONFIG_SITE"; then
 -  if test "x$prefix" != xNONE; then
 -    CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
+-  else
+-    CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
+-  fi
 +if test -n "$CONFIG_SITE"; then
 +  set x "$CONFIG_SITE"
 +elif test "x$prefix" != xNONE; then
 +  set x "$prefix/share/config.site" "$prefix/etc/config.site"
-   else
--    CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
--  fi
++else
 +  set x "$ac_default_prefix/share/config.site" \
 +	"$ac_default_prefix/etc/config.site"
  fi
@@ -27143,7 +2137,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    if test -r "$ac_site_file"; then
      { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
  echo "$as_me: loading site script $ac_site_file" >&6;}
-@@ -1313,8 +1906,8 @@
+@@ -1313,8 +1906,8 @@ if test -r "$cache_file"; then
      { echo "$as_me:$LINENO: loading cache $cache_file" >&5
  echo "$as_me: loading cache $cache_file" >&6;}
      case $cache_file in
@@ -27154,7 +2148,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
      esac
    fi
  else
-@@ -1326,12 +1919,11 @@
+@@ -1326,12 +1919,11 @@ fi
  # Check that the precious variables saved in the cache have kept the same
  # value.
  ac_cache_corrupted=false
@@ -27170,7 +2164,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    case $ac_old_set,$ac_new_set in
      set,)
        { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
-@@ -1356,8 +1948,7 @@
+@@ -1356,8 +1948,7 @@ echo "$as_me:   current value: $ac_new_val" >&2;}
    # Pass precious variables to config.status.
    if test "$ac_new_set" = set; then
      case $ac_new_val in
@@ -27180,7 +2174,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
      *) ac_arg=$ac_var=$ac_new_val ;;
      esac
      case " $ac_configure_args " in
-@@ -1374,12 +1965,6 @@
+@@ -1374,12 +1965,6 @@ echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start ov
     { (exit 1); exit 1; }; }
  fi
  
@@ -27193,7 +2187,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  
-@@ -1404,6 +1989,11 @@
+@@ -1404,6 +1989,11 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
  
  
  
@@ -27205,7 +2199,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  
-@@ -1474,106 +2064,164 @@
+@@ -1474,106 +2064,164 @@ fi
  
  
  
@@ -27308,6 +2302,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 -build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 -build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+-
+-
+-echo "$as_me:$LINENO: checking host system type" >&5
+-echo $ECHO_N "checking host system type... $ECHO_C" >&6
 +ac_save_IFS=$IFS; IFS='-'
 +set x $ac_cv_build
 +shift
@@ -27319,10 +2317,8 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +build_os=$*
 +IFS=$ac_save_IFS
 +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
- 
- 
--echo "$as_me:$LINENO: checking host system type" >&5
--echo $ECHO_N "checking host system type... $ECHO_C" >&6
++
++
 +{ echo "$as_me:$LINENO: checking host system type" >&5
 +echo $ECHO_N "checking host system type... $ECHO_C" >&6; }
  if test "${ac_cv_host+set}" = set; then
@@ -27358,6 +2354,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 -host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 -host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+-
+-
+-echo "$as_me:$LINENO: checking target system type" >&5
+-echo $ECHO_N "checking target system type... $ECHO_C" >&6
 +ac_save_IFS=$IFS; IFS='-'
 +set x $ac_cv_host
 +shift
@@ -27369,10 +2369,8 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +host_os=$*
 +IFS=$ac_save_IFS
 +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
- 
- 
--echo "$as_me:$LINENO: checking target system type" >&5
--echo $ECHO_N "checking target system type... $ECHO_C" >&6
++
++
 +{ echo "$as_me:$LINENO: checking target system type" >&5
 +echo $ECHO_N "checking target system type... $ECHO_C" >&6; }
  if test "${ac_cv_target+set}" = set; then
@@ -27422,7 +2420,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  # The aliases save the names the user supplied, while $host etc.
-@@ -1597,8 +2245,8 @@
+@@ -1597,8 +2245,8 @@ am__api_version="1.7"
  # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  # OS/2's system install, which has a completely different semantic
  # ./install, which can be erroneously created by make from ./install.sh.
@@ -27433,7 +2431,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test -z "$INSTALL"; then
  if test "${ac_cv_path_install+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
-@@ -1620,7 +2268,7 @@
+@@ -1620,7 +2268,7 @@ case $as_dir/ in
      # by default.
      for ac_prog in ginstall scoinst install; do
        for ac_exec_ext in '' $ac_executable_extensions; do
@@ -27442,7 +2440,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	  if test $ac_prog = install &&
  	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
  	    # AIX install.  It has an incompatible calling convention.
-@@ -1639,21 +2287,22 @@
+@@ -1639,21 +2287,22 @@ case $as_dir/ in
      ;;
  esac
  done
@@ -27470,7 +2468,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  # It thinks the first close brace ends the variable substitution.
-@@ -1663,8 +2312,8 @@
+@@ -1663,8 +2312,8 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
  
  test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  
@@ -27481,7 +2479,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  # Just in case
  sleep 1
  echo timestamp > conftest.file
-@@ -1706,20 +2355,20 @@
+@@ -1706,20 +2355,20 @@ echo "$as_me: error: newly created file is older than distributed files!
  Check your system clock" >&2;}
     { (exit 1); exit 1; }; }
  fi
@@ -27507,7 +2505,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  # expand $ac_aux_dir to an absolute path
-@@ -1739,8 +2388,8 @@
+@@ -1739,8 +2388,8 @@ for ac_prog in gawk mawk nawk awk
  do
    # Extract the first word of "$ac_prog", so it can be a program name with args.
  set dummy $ac_prog; ac_word=$2
@@ -27518,7 +2516,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_prog_AWK+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1753,54 +2402,57 @@
+@@ -1753,54 +2402,57 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -27597,7 +2595,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    SET_MAKE="MAKE=${MAKE-make}"
  fi
  
-@@ -1874,8 +2526,8 @@
+@@ -1874,8 +2526,8 @@ if test "$cross_compiling" != no; then
    if test -n "$ac_tool_prefix"; then
    # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
  set dummy ${ac_tool_prefix}strip; ac_word=$2
@@ -27608,7 +2606,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_prog_STRIP+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1888,32 +2540,34 @@
+@@ -1888,32 +2540,34 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -27650,7 +2648,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1926,27 +2580,41 @@
+@@ -1926,27 +2580,41 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -27680,6 +2678,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +echo "${ECHO_T}no" >&6; }
  fi
  
+-  STRIP=$ac_ct_STRIP
 +  if test "x$ac_ct_STRIP" = x; then
 +    STRIP=":"
 +  else
@@ -27693,12 +2692,12 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +configuration is useful to you, please write to autoconf at gnu.org." >&2;}
 +ac_tool_warned=yes ;;
 +esac
-   STRIP=$ac_ct_STRIP
++    STRIP=$ac_ct_STRIP
 +  fi
  else
    STRIP="$ac_cv_prog_STRIP"
  fi
-@@ -1969,8 +2637,8 @@
+@@ -1969,8 +2637,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
  if test -n "$ac_tool_prefix"; then
    # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
  set dummy ${ac_tool_prefix}gcc; ac_word=$2
@@ -27709,7 +2708,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_prog_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1983,32 +2651,34 @@
+@@ -1983,32 +2651,34 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -27751,7 +2750,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2021,26 +2691,41 @@
+@@ -2021,36 +2691,51 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -27780,6 +2779,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +echo "${ECHO_T}no" >&6; }
  fi
  
+-  CC=$ac_ct_CC
 +  if test "x$ac_ct_CC" = x; then
 +    CC=""
 +  else
@@ -27793,14 +2793,17 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +configuration is useful to you, please write to autoconf at gnu.org." >&2;}
 +ac_tool_warned=yes ;;
 +esac
-   CC=$ac_ct_CC
++    CC=$ac_ct_CC
 +  fi
  else
    CC="$ac_cv_prog_CC"
  fi
-@@ -2049,8 +2734,8 @@
-   if test -n "$ac_tool_prefix"; then
-   # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
+ 
+ if test -z "$CC"; then
+-  if test -n "$ac_tool_prefix"; then
+-  # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
++          if test -n "$ac_tool_prefix"; then
++    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
  set dummy ${ac_tool_prefix}cc; ac_word=$2
 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
@@ -27809,7 +2812,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_prog_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2063,74 +2748,34 @@
+@@ -2063,74 +2748,34 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -27829,11 +2832,15 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test -n "$CC"; then
 -  echo "$as_me:$LINENO: result: $CC" >&5
 -echo "${ECHO_T}$CC" >&6
--else
++  { echo "$as_me:$LINENO: result: $CC" >&5
++echo "${ECHO_T}$CC" >&6; }
+ else
 -  echo "$as_me:$LINENO: result: no" >&5
 -echo "${ECHO_T}no" >&6
--fi
--
++  { echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ fi
+ 
 -fi
 -if test -z "$ac_cv_prog_CC"; then
 -  ac_ct_CC=$CC
@@ -27846,9 +2853,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -else
 -  if test -n "$ac_ct_CC"; then
 -  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
- else
+-else
 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 -for as_dir in $PATH
 -do
@@ -27859,12 +2864,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -    ac_cv_prog_ac_ct_CC="cc"
 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 -    break 2
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-   fi
+-  fi
 -done
 -done
- 
+-
 -fi
 -fi
 -ac_ct_CC=$ac_cv_prog_ac_ct_CC
@@ -27875,12 +2878,13 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  echo "$as_me:$LINENO: result: no" >&5
 -echo "${ECHO_T}no" >&6
 -fi
- 
+-
 -  CC=$ac_ct_CC
 -else
 -  CC="$ac_cv_prog_CC"
- fi
--
+-fi
+ 
++  fi
  fi
  if test -z "$CC"; then
    # Extract the first word of "cc", so it can be a program name with args.
@@ -27892,7 +2896,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_prog_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2144,7 +2789,7 @@
+@@ -2144,7 +2789,7 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -27901,7 +2905,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
      if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
         ac_prog_rejected=yes
         continue
-@@ -2155,6 +2800,7 @@
+@@ -2155,6 +2800,7 @@ do
    fi
  done
  done
@@ -27909,7 +2913,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  if test $ac_prog_rejected = yes; then
    # We found a bogon in the path, so make sure we never use it.
-@@ -2172,22 +2818,23 @@
+@@ -2172,22 +2818,23 @@ fi
  fi
  CC=$ac_cv_prog_CC
  if test -n "$CC"; then
@@ -27940,7 +2944,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_prog_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2200,36 +2847,38 @@
+@@ -2200,36 +2847,38 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -27987,7 +2991,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2242,30 +2891,46 @@
+@@ -2242,29 +2891,45 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -28020,6 +3024,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    test -n "$ac_ct_CC" && break
  done
  
+-  CC=$ac_ct_CC
 +  if test "x$ac_ct_CC" = x; then
 +    CC=""
 +  else
@@ -28033,13 +3038,12 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +configuration is useful to you, please write to autoconf at gnu.org." >&2;}
 +ac_tool_warned=yes ;;
 +esac
-   CC=$ac_ct_CC
++    CC=$ac_ct_CC
++  fi
  fi
-+fi
  
  fi
- 
-@@ -2277,21 +2942,35 @@
+@@ -2277,21 +2942,35 @@ See \`config.log' for more details." >&2;}
     { (exit 1); exit 1; }; }
  
  # Provide some information about the compiler.
@@ -28083,7 +3087,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }
-@@ -2316,47 +2995,77 @@
+@@ -2316,47 +2995,77 @@ ac_clean_files="$ac_clean_files a.out a.exe b.out"
  # Try to create an executable without -o first, disregard a.out.
  # It will help us diagnose broken compilers, and finding out an intuition
  # of exeext.
@@ -28152,13 +3156,14 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	# certainly right.
  	break;;
      *.* )
-+        if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
-+	then :; else
- 	ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
+-	ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 -	# FIXME: I believe we export ac_cv_exeext for Libtool,
 -	# but it would be cool to find out if it's true.  Does anybody
 -	# maintain Libtool? --akim.
 -	export ac_cv_exeext
++        if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
++	then :; else
++	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 +	fi
 +	# We set ac_cv_exeext here because the later test for it is not
 +	# safe: cross compilers may not add the suffix if given an `-o'
@@ -28182,7 +3187,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo "$as_me: failed program was:" >&5
  sed 's/^/| /' conftest.$ac_ext >&5
  
-@@ -2368,19 +3077,21 @@
+@@ -2368,19 +3077,21 @@ See \`config.log' for more details." >&2;}
  fi
  
  ac_exeext=$ac_cv_exeext
@@ -28211,7 +3216,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
-@@ -2399,22 +3110,27 @@
+@@ -2399,22 +3110,27 @@ See \`config.log' for more details." >&2;}
      fi
    fi
  fi
@@ -28229,15 +3234,16 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
 -echo "$as_me:$LINENO: result: $cross_compiling" >&5
 -echo "${ECHO_T}$cross_compiling" >&6
-+{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
-+echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
-+{ echo "$as_me:$LINENO: result: $cross_compiling" >&5
-+echo "${ECHO_T}$cross_compiling" >&6; }
- 
+-
 -echo "$as_me:$LINENO: checking for suffix of executables" >&5
 -echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 -  (eval $ac_link) 2>&5
++{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
++echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
++{ echo "$as_me:$LINENO: result: $cross_compiling" >&5
++echo "${ECHO_T}$cross_compiling" >&6; }
++
 +{ echo "$as_me:$LINENO: checking for suffix of executables" >&5
 +echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }
 +if { (ac_try="$ac_link"
@@ -28250,7 +3256,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; then
-@@ -2425,9 +3141,8 @@
+@@ -2425,9 +3141,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  for ac_file in conftest.exe conftest conftest.*; do
    test -f "$ac_file" || continue
    case $ac_file in
@@ -28261,7 +3267,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	  break;;
      * ) break;;
    esac
-@@ -2441,14 +3156,14 @@
+@@ -2441,14 +3156,14 @@ See \`config.log' for more details." >&2;}
  fi
  
  rm -f conftest$ac_cv_exeext
@@ -28280,7 +3286,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_objext+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2468,14 +3183,20 @@
+@@ -2468,14 +3183,20 @@ main ()
  }
  _ACEOF
  rm -f conftest.o conftest.obj
@@ -28305,7 +3311,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
      *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
         break;;
    esac
-@@ -2493,12 +3214,12 @@
+@@ -2493,12 +3214,12 @@ fi
  
  rm -f conftest.$ac_cv_objext conftest.$ac_ext
  fi
@@ -28322,7 +3328,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_c_compiler_gnu+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2521,27 +3242,22 @@
+@@ -2521,50 +3242,49 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -28361,9 +3367,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_compiler_gnu=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -2549,21 +3265,25 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_compiler_gnu=no
+-ac_compiler_gnu=no
++	ac_compiler_gnu=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -28386,14 +3393,16 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_prog_cc_g+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
+-  cat >conftest.$ac_ext <<_ACEOF
 +  ac_save_c_werror_flag=$ac_c_werror_flag
 +   ac_c_werror_flag=yes
 +   ac_cv_prog_cc_g=no
 +   CFLAGS="-g"
-   cat >conftest.$ac_ext <<_ACEOF
++   cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -2580,38 +3300,118 @@
+ cat confdefs.h >>conftest.$ac_ext
+@@ -2580,38 +3300,118 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -28513,22 +3522,22 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
- fi
--echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
--echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
++fi
 +
 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 +fi
 +
 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 +   ac_c_werror_flag=$ac_save_c_werror_flag
-+fi
+ fi
+-echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
+-echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
 +{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
 +echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }
  if test "$ac_test_CFLAGS" = set; then
    CFLAGS=$ac_save_CFLAGS
  elif test $ac_cv_prog_cc_g = yes; then
-@@ -2627,12 +3427,12 @@
+@@ -2627,12 +3427,12 @@ else
      CFLAGS=
    fi
  fi
@@ -28545,7 +3554,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  ac_save_CC=$CC
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
-@@ -2666,12 +3466,17 @@
+@@ -2666,12 +3466,17 @@ static char *f (char * (*g) (char **, int), char **p, ...)
  /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
     function prototypes and stuff, but not '\xHH' hex character constants.
     These don't provoke an error unfortunately, instead are silently treated
@@ -28565,7 +3574,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  int test (int i, double x);
  struct s1 {int (*f) (int a);};
  struct s2 {int (*f) (double a);};
-@@ -2686,205 +3491,57 @@
+@@ -2686,205 +3491,57 @@ return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
    return 0;
  }
  _ACEOF
@@ -28801,7 +3810,16 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  ac_ext=c
  ac_cpp='$CPP $CPPFLAGS'
  ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-@@ -2902,8 +3559,8 @@
+@@ -2892,7 +3549,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
+ ac_compiler_gnu=$ac_cv_c_compiler_gnu
+ DEPDIR="${am__leading_dot}deps"
+ 
+-          ac_config_commands="$ac_config_commands depfiles"
++ac_config_commands="$ac_config_commands depfiles"
+ 
+ 
+ am_make=${MAKE-make}
+@@ -2902,8 +3559,8 @@ am__doit:
  .PHONY: am__doit
  END
  # If we don't find an include directive, just comment out the code.
@@ -28812,7 +3830,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  am__include="#"
  am__quote=
  _am_result=none
-@@ -2930,15 +3587,15 @@
+@@ -2930,15 +3587,15 @@ if test "$am__include" = "#"; then
  fi
  
  
@@ -28833,7 +3851,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "x$enable_dependency_tracking" != xno; then
    am_depcomp="$ac_aux_dir/depcomp"
    AMDEPBACKSLASH='\'
-@@ -2958,8 +3615,8 @@
+@@ -2958,8 +3615,8 @@ fi
  
  depcc="$CC"   am_compiler_list=
  
@@ -28844,7 +3862,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -3041,8 +3698,8 @@
+@@ -3041,8 +3698,8 @@ else
  fi
  
  fi
@@ -28855,7 +3873,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
  
  
-@@ -3065,8 +3722,8 @@
+@@ -3065,8 +3722,8 @@ ac_cpp='$CPP $CPPFLAGS'
  ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  ac_compiler_gnu=$ac_cv_c_compiler_gnu
@@ -28866,7 +3884,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  # On Suns, sometimes $CPP names a directory.
  if test -n "$CPP" && test -d "$CPP"; then
    CPP=
-@@ -3100,24 +3757,22 @@
+@@ -3100,24 +3757,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  #endif
  		     Syntax error
  _ACEOF
@@ -28902,7 +3920,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    :
  else
    echo "$as_me: failed program was:" >&5
-@@ -3126,9 +3781,10 @@
+@@ -3126,9 +3781,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
    # Broken: fails on valid input.
  continue
  fi
@@ -28914,7 +3932,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    # can be detected and how.
    cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
-@@ -3138,24 +3794,22 @@
+@@ -3138,24 +3794,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <ac_nonexistent.h>
  _ACEOF
@@ -28950,7 +3968,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    # Broken: success on invalid input.
  continue
  else
-@@ -3166,6 +3820,7 @@
+@@ -3166,6 +3820,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
  ac_preproc_ok=:
  break
  fi
@@ -28958,7 +3976,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  rm -f conftest.err conftest.$ac_ext
  
  done
-@@ -3183,8 +3838,8 @@
+@@ -3183,8 +3838,8 @@ fi
  else
    ac_cv_prog_CPP=$CPP
  fi
@@ -28969,7 +3987,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  ac_preproc_ok=false
  for ac_c_preproc_warn_flag in '' yes
  do
-@@ -3207,24 +3862,22 @@
+@@ -3207,24 +3862,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  #endif
  		     Syntax error
  _ACEOF
@@ -29005,7 +4023,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    :
  else
    echo "$as_me: failed program was:" >&5
-@@ -3233,9 +3886,10 @@
+@@ -3233,9 +3886,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
    # Broken: fails on valid input.
  continue
  fi
@@ -29017,7 +4035,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    # can be detected and how.
    cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
-@@ -3245,24 +3899,22 @@
+@@ -3245,24 +3899,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <ac_nonexistent.h>
  _ACEOF
@@ -29053,7 +4071,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    # Broken: success on invalid input.
  continue
  else
-@@ -3273,6 +3925,7 @@
+@@ -3273,6 +3925,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
  ac_preproc_ok=:
  break
  fi
@@ -29061,7 +4079,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  rm -f conftest.err conftest.$ac_ext
  
  done
-@@ -3295,23 +3948,170 @@
+@@ -3295,23 +3948,170 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
  ac_compiler_gnu=$ac_cv_c_compiler_gnu
  
  
@@ -29071,17 +4089,17 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5
 +echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; }
 +if test "${ac_cv_path_GREP+set}" = set; then
++  echo $ECHO_N "(cached) $ECHO_C" >&6
++else
++  # Extract the first word of "grep ggrep" to use in msg output
++if test -z "$GREP"; then
++set dummy grep ggrep; ac_prog_name=$2
++if test "${ac_cv_path_GREP+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
 -  if echo a | (grep -E '(a|b)') >/dev/null 2>&1
 -    then ac_cv_prog_egrep='grep -E'
 -    else ac_cv_prog_egrep='egrep'
-+  # Extract the first word of "grep ggrep" to use in msg output
-+if test -z "$GREP"; then
-+set dummy grep ggrep; ac_prog_name=$2
-+if test "${ac_cv_path_GREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
 +  ac_path_GREP_found=false
 +# Loop through the user's path and test for each of PROGNAME-LIST
 +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -29114,7 +4132,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +      # Best one so far, save it but keep looking for a better one
 +      ac_cv_path_GREP="$ac_path_GREP"
 +      ac_path_GREP_max=$ac_count
-+    fi
+     fi
 +    # 10*(2^10) chars as input seems more than enough
 +    test $ac_count -gt 10 && break
 +  done
@@ -29130,24 +4148,22 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +IFS=$as_save_IFS
 +
 +
-     fi
+ fi
+-echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
+-echo "${ECHO_T}$ac_cv_prog_egrep" >&6
+- EGREP=$ac_cv_prog_egrep
 +
 +GREP="$ac_cv_path_GREP"
 +if test -z "$GREP"; then
 +  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
 +echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
 +   { (exit 1); exit 1; }; }
- fi
--echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
--echo "${ECHO_T}$ac_cv_prog_egrep" >&6
-- EGREP=$ac_cv_prog_egrep
- 
++fi
++
 +else
 +  ac_cv_path_GREP=$GREP
 +fi
- 
--echo "$as_me:$LINENO: checking for ANSI C header files" >&5
--echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
++
 +
 +fi
 +{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5
@@ -29236,14 +4252,16 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5
 +echo "${ECHO_T}$ac_cv_path_EGREP" >&6; }
 + EGREP="$ac_cv_path_EGREP"
-+
-+
+ 
+ 
+-echo "$as_me:$LINENO: checking for ANSI C header files" >&5
+-echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
 +{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5
 +echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
  if test "${ac_cv_header_stdc+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -3335,27 +4135,22 @@
+@@ -3335,35 +4135,31 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -29282,9 +4300,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_cv_header_stdc=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -3363,7 +4158,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_cv_header_stdc=no
+-ac_cv_header_stdc=no
++	ac_cv_header_stdc=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -29292,7 +4311,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  if test $ac_cv_header_stdc = yes; then
    # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
-@@ -3419,6 +4215,7 @@
+@@ -3419,6 +4215,7 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <ctype.h>
@@ -29300,7 +4319,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  #if ((' ' & 0x0FF) == 0x020)
  # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
-@@ -3438,18 +4235,27 @@
+@@ -3438,18 +4235,27 @@ main ()
    for (i = 0; i < 256; i++)
      if (XOR (islower (i), ISLOWER (i))
  	|| toupper (i) != TOUPPER (i))
@@ -29334,7 +4353,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
-@@ -3462,12 +4268,14 @@
+@@ -3462,12 +4268,14 @@ sed 's/^/| /' conftest.$ac_ext >&5
  ( exit $ac_status )
  ac_cv_header_stdc=no
  fi
@@ -29352,7 +4371,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test $ac_cv_header_stdc = yes; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -3490,9 +4298,9 @@
+@@ -3490,9 +4298,9 @@ for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
  		  inttypes.h stdint.h unistd.h
  do
  as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
@@ -29365,7 +4384,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    cat >conftest.$ac_ext <<_ACEOF
-@@ -3506,27 +4314,22 @@
+@@ -3506,38 +4314,35 @@ $ac_includes_default
  #include <$ac_header>
  _ACEOF
  rm -f conftest.$ac_objext
@@ -29404,9 +4423,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    eval "$as_ac_Header=yes"
  else
    echo "$as_me: failed program was:" >&5
-@@ -3534,10 +4337,12 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- eval "$as_ac_Header=no"
+-eval "$as_ac_Header=no"
++	eval "$as_ac_Header=no"
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -29420,7 +4440,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_ac_Header'}'` = yes; then
    cat >>confdefs.h <<_ACEOF
  #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
-@@ -3580,17 +4385,17 @@
+@@ -3580,17 +4385,17 @@ INCLUDE_RULES="include $PWD/Rules"
  
  
  
@@ -29446,7 +4466,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_cray_xt3 != xno; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -3599,17 +4404,17 @@
+@@ -3599,17 +4404,17 @@ _ACEOF
  
  fi
  
@@ -29472,7 +4492,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_bgl != xno; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -3656,8 +4461,8 @@
+@@ -3656,8 +4461,8 @@ pkgexampledir='${pkgdatadir}/examples'
  if test -n "$ac_tool_prefix"; then
    # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
  set dummy ${ac_tool_prefix}ranlib; ac_word=$2
@@ -29483,7 +4503,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_prog_RANLIB+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -3670,32 +4475,34 @@
+@@ -3670,32 +4475,34 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -29525,7 +4545,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -3708,37 +4515,51 @@
+@@ -3708,37 +4515,51 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -29555,6 +4575,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +echo "${ECHO_T}no" >&6; }
  fi
  
+-  RANLIB=$ac_ct_RANLIB
 +  if test "x$ac_ct_RANLIB" = x; then
 +    RANLIB=":"
 +  else
@@ -29568,7 +4589,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +configuration is useful to you, please write to autoconf at gnu.org." >&2;}
 +ac_tool_warned=yes ;;
 +esac
-   RANLIB=$ac_ct_RANLIB
++    RANLIB=$ac_ct_RANLIB
 +  fi
  else
    RANLIB="$ac_cv_prog_RANLIB"
@@ -29587,7 +4608,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	echo
  	echo "   '$CC_VERSION'"
  	echo "  has been known to generate bad code, "
-@@ -3763,14 +4584,14 @@
+@@ -3763,14 +4584,14 @@ case "$CC_VERSION" in
  		bad_cc
  		;;
  	*)
@@ -29606,7 +4627,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_type_unsigned_long_long+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -3781,39 +4602,35 @@
+@@ -3781,61 +4602,57 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  $ac_includes_default
@@ -29660,9 +4681,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_cv_type_unsigned_long_long=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -3821,21 +4638,21 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_cv_type_unsigned_long_long=no
+-ac_cv_type_unsigned_long_long=no
++	ac_cv_type_unsigned_long_long=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -29675,24 +4697,24 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
 -echo "$as_me:$LINENO: checking size of unsigned long long" >&5
 -echo $ECHO_N "checking size of unsigned long long... $ECHO_C" >&6
--if test "${ac_cv_sizeof_unsigned_long_long+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
--else
--  if test "$ac_cv_type_unsigned_long_long" = yes; then
--  # The cast to unsigned long works around a bug in the HP C Compiler
 +# The cast to long int works around a bug in the HP C Compiler
-   # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
-   # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
-   # This bug is HP SR number 8606223364.
++# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
++# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
++# This bug is HP SR number 8606223364.
 +{ echo "$as_me:$LINENO: checking size of unsigned long long" >&5
 +echo $ECHO_N "checking size of unsigned long long... $ECHO_C" >&6; }
-+if test "${ac_cv_sizeof_unsigned_long_long+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
+ if test "${ac_cv_sizeof_unsigned_long_long+set}" = set; then
+   echo $ECHO_N "(cached) $ECHO_C" >&6
+ else
+-  if test "$ac_cv_type_unsigned_long_long" = yes; then
+-  # The cast to unsigned long works around a bug in the HP C Compiler
+-  # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
+-  # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
+-  # This bug is HP SR number 8606223364.
    if test "$cross_compiling" = yes; then
    # Depending upon the size, compute the lo and hi bounds.
  cat >conftest.$ac_ext <<_ACEOF
-@@ -3845,10 +4662,11 @@
+@@ -3845,10 +4662,11 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  $ac_includes_default
@@ -29705,7 +4727,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  test_array [0] = 0
  
    ;
-@@ -3856,27 +4674,22 @@
+@@ -3856,27 +4674,22 @@ test_array [0] = 0
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -29744,7 +4766,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_lo=0 ac_mid=0
    while :; do
      cat >conftest.$ac_ext <<_ACEOF
-@@ -3886,10 +4699,11 @@
+@@ -3886,10 +4699,11 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  $ac_includes_default
@@ -29757,7 +4779,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  test_array [0] = 0
  
    ;
-@@ -3897,27 +4711,22 @@
+@@ -3897,56 +4711,53 @@ test_array [0] = 0
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -29796,9 +4818,20 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_hi=$ac_mid; break
  else
    echo "$as_me: failed program was:" >&5
-@@ -3930,7 +4739,8 @@
- 		    fi
- 		    ac_mid=`expr 2 '*' $ac_mid + 1`
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+-ac_lo=`expr $ac_mid + 1`
+-		    if test $ac_lo -le $ac_mid; then
+-		      ac_lo= ac_hi=
+-		      break
+-		    fi
+-		    ac_mid=`expr 2 '*' $ac_mid + 1`
++	ac_lo=`expr $ac_mid + 1`
++			if test $ac_lo -le $ac_mid; then
++			  ac_lo= ac_hi=
++			  break
++			fi
++			ac_mid=`expr 2 '*' $ac_mid + 1`
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -29806,7 +4839,13 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    done
  else
    echo "$as_me: failed program was:" >&5
-@@ -3943,10 +4753,11 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+-cat >conftest.$ac_ext <<_ACEOF
++	cat >conftest.$ac_ext <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  $ac_includes_default
@@ -29819,7 +4858,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  test_array [0] = 0
  
    ;
-@@ -3954,27 +4765,22 @@
+@@ -3954,27 +4765,22 @@ test_array [0] = 0
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -29858,7 +4897,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_hi=-1 ac_mid=-1
    while :; do
      cat >conftest.$ac_ext <<_ACEOF
-@@ -3984,10 +4790,11 @@
+@@ -3984,10 +4790,11 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  $ac_includes_default
@@ -29871,7 +4910,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  test_array [0] = 0
  
    ;
-@@ -3995,27 +4802,22 @@
+@@ -3995,50 +4802,48 @@ test_array [0] = 0
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -29910,9 +4949,20 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_lo=$ac_mid; break
  else
    echo "$as_me: failed program was:" >&5
-@@ -4028,7 +4830,8 @@
- 		       fi
- 		       ac_mid=`expr 2 '*' $ac_mid`
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+-ac_hi=`expr '(' $ac_mid ')' - 1`
+-		       if test $ac_mid -le $ac_hi; then
+-			 ac_lo= ac_hi=
+-			 break
+-		       fi
+-		       ac_mid=`expr 2 '*' $ac_mid`
++	ac_hi=`expr '(' $ac_mid ')' - 1`
++			if test $ac_mid -le $ac_hi; then
++			  ac_lo= ac_hi=
++			  break
++			fi
++			ac_mid=`expr 2 '*' $ac_mid`
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -29920,9 +4970,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    done
  else
    echo "$as_me: failed program was:" >&5
-@@ -4036,9 +4839,11 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_lo= ac_hi=
+-ac_lo= ac_hi=
++	ac_lo= ac_hi=
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -29934,7 +4985,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  # Binary search between lo and hi bounds.
  while test "x$ac_lo" != "x$ac_hi"; do
    ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
-@@ -4049,10 +4854,11 @@
+@@ -4049,10 +4854,11 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  $ac_includes_default
@@ -29947,7 +4998,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  test_array [0] = 0
  
    ;
-@@ -4060,27 +4866,22 @@
+@@ -4060,52 +4866,45 @@ test_array [0] = 0
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -29986,9 +5037,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_hi=$ac_mid
  else
    echo "$as_me: failed program was:" >&5
-@@ -4088,23 +4889,21 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_lo=`expr '(' $ac_mid ')' + 1`
+-ac_lo=`expr '(' $ac_mid ')' + 1`
++	ac_lo=`expr '(' $ac_mid ')' + 1`
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -30004,8 +5056,11 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +echo "$as_me: error: cannot compute sizeof (unsigned long long)
  See \`config.log' for more details." >&2;}
 -   { (exit 1); exit 1; }; } ;;
--esac
 +   { (exit 77); exit 77; }; }
++   else
++     ac_cv_sizeof_unsigned_long_long=0
++   fi ;;
+ esac
  else
 -  if test "$cross_compiling" = yes; then
 -  { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
@@ -30013,13 +5068,11 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -echo "$as_me: error: cannot run test program while cross compiling
 -See \`config.log' for more details." >&2;}
 -   { (exit 1); exit 1; }; }
-+     ac_cv_sizeof_unsigned_long_long=0
-+   fi ;;
-+esac
- else
+-else
    cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
-@@ -4113,8 +4912,9 @@
+ _ACEOF
+@@ -4113,8 +4912,9 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  $ac_includes_default
@@ -30031,7 +5084,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  #include <stdio.h>
  #include <stdlib.h>
  int
-@@ -4123,35 +4923,44 @@
+@@ -4123,35 +4923,44 @@ main ()
  
    FILE *f = fopen ("conftest.val", "w");
    if (! f)
@@ -30089,7 +5142,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
-@@ -4162,22 +4971,25 @@
+@@ -4162,22 +4971,25 @@ echo "$as_me: failed program was:" >&5
  sed 's/^/| /' conftest.$ac_ext >&5
  
  ( exit $ac_status )
@@ -30101,11 +5154,12 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +echo "$as_me: error: cannot compute sizeof (unsigned long long)
  See \`config.log' for more details." >&2;}
 -   { (exit 1); exit 1; }; }
+-fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 +   { (exit 77); exit 77; }; }
 +   else
 +     ac_cv_sizeof_unsigned_long_long=0
- fi
--rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
++   fi
  fi
 +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  fi
@@ -30124,7 +5178,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >>confdefs.h <<_ACEOF
  #define SIZEOF_UNSIGNED_LONG_LONG $ac_cv_sizeof_unsigned_long_long
  _ACEOF
-@@ -4198,7 +5010,7 @@
+@@ -4198,7 +5010,7 @@ echo "$as_me: WARNING: set compiler with -m64" >&2;}
  	CC="$CC -m64"
  fi
  
@@ -30133,7 +5187,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  LLCPPFLAGS="-D__arch_lib__ -D_LARGEFILE64_SOURCE=1"
  
-@@ -4212,17 +5024,17 @@
+@@ -4212,17 +5024,17 @@ EXTRA_KCFLAGS="$EXTRA_KCFLAGS -g -I$PWD/$LIBCFS_INCLUDE_DIR -I$PWD/lnet/include
  
  
  
@@ -30159,7 +5213,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_uoss = xyes; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -4244,17 +5056,17 @@
+@@ -4244,17 +5056,17 @@ _ACEOF
  fi
  
  
@@ -30185,7 +5239,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_uoss = xyes -a x$enable_posix_osd = xyes ; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -4275,12 +5087,11 @@
+@@ -4275,12 +5087,11 @@ fi
  
  
  
@@ -30202,7 +5256,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		if test x$enable_doc = xyes ; then
  		    ENABLE_DOC=1
  		else
-@@ -4292,93 +5103,94 @@
+@@ -4292,93 +5103,94 @@ else
  		ENABLE_DOC=0
  		enable_doc='no'
  
@@ -30346,7 +5400,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_libcfs_cdebug = xyes; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -4393,17 +5205,17 @@
+@@ -4393,17 +5205,17 @@ _ACEOF
  
  fi
  
@@ -30372,7 +5426,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_libcfs_trace = xyes; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -4418,17 +5230,17 @@
+@@ -4418,17 +5230,17 @@ _ACEOF
  
  fi
  
@@ -30398,7 +5452,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_libcfs_assert = xyes; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -4438,27 +5250,27 @@
+@@ -4438,27 +5250,27 @@ _ACEOF
  fi
  
  #check global
@@ -30436,7 +5490,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4469,27 +5281,22 @@
+@@ -4469,41 +5281,37 @@ $ac_includes_default
  #include <sys/quota.h>
  _ACEOF
  rm -f conftest.$ac_objext
@@ -30475,9 +5529,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_compiler=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -4497,13 +5304,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_header_compiler=no
+-ac_header_compiler=no
++	ac_header_compiler=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 -echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
@@ -30495,7 +5550,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4512,24 +5320,22 @@
+@@ -4512,24 +5320,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <sys/quota.h>
  _ACEOF
@@ -30531,7 +5586,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_preproc=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -4537,9 +5343,10 @@
+@@ -4537,9 +5343,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
  
    ac_header_preproc=no
  fi
@@ -30544,7 +5599,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # So?  What about this header?
  case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-@@ -4563,25 +5370,23 @@
+@@ -4563,25 +5370,23 @@ echo "$as_me: WARNING: sys/quota.h:     section \"Present But Cannot Be Compiled
  echo "$as_me: WARNING: sys/quota.h: proceeding with the preprocessor's result" >&2;}
      { echo "$as_me:$LINENO: WARNING: sys/quota.h: in the future, the compiler will take precedence" >&5
  echo "$as_me: WARNING: sys/quota.h: in the future, the compiler will take precedence" >&2;}
@@ -30576,7 +5631,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  if test $ac_cv_header_sys_quota_h = yes; then
-@@ -4599,12 +5404,11 @@
+@@ -4599,12 +5404,11 @@ fi
  
  
  
@@ -30593,7 +5648,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  else
  
  		case $target_os in
-@@ -4621,20 +5425,20 @@
+@@ -4621,20 +5425,20 @@ else
  esac
  
  
@@ -30622,7 +5677,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		if ! [[ $with_linux = /* ]]; then
  			{ { echo "$as_me:$LINENO: error: You must provide an absolute pathname to the --with-linux= option." >&5
  echo "$as_me: error: You must provide an absolute pathname to the --with-linux= option." >&2;}
-@@ -4645,16 +5449,17 @@
+@@ -4645,16 +5449,17 @@ echo "$as_me: error: You must provide an absolute pathname to the --with-linux=
  
  else
    LINUX=/usr/src/linux
@@ -30646,7 +5701,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX"; then
-@@ -4663,8 +5468,9 @@
+@@ -4663,8 +5468,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -30658,7 +5713,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -4675,33 +5481,33 @@
+@@ -4675,33 +5481,33 @@ fi
  
  
  # -------- linux objects (for 2.6) --
@@ -30696,17 +5751,17 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    LINUX_CONFIG=$LINUX_OBJ/.config
 -fi;
 +fi
++
  
  
 -echo "$as_me:$LINENO: checking for /boot/kernel.h" >&5
 -echo $ECHO_N "checking for /boot/kernel.h... $ECHO_C" >&6
-+
 +{ echo "$as_me:$LINENO: checking for /boot/kernel.h" >&5
 +echo $ECHO_N "checking for /boot/kernel.h... $ECHO_C" >&6; }
  if test "${lb_cv_file__boot_kernel_h+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -4711,13 +5517,13 @@
+@@ -4711,13 +5517,13 @@ else
    lb_cv_file__boot_kernel_h=no
  fi
  fi
@@ -30724,7 +5779,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${lb_cv_file__var_adm_running_kernel_h+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -4727,8 +5533,8 @@
+@@ -4727,8 +5533,8 @@ else
    lb_cv_file__var_adm_running_kernel_h=no
  fi
  fi
@@ -30735,7 +5790,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test $lb_cv_file__var_adm_running_kernel_h = yes; then
    KERNEL_SOURCE_HEADER='/var/adm/running-kernel.h'
  fi
-@@ -4737,17 +5543,17 @@
+@@ -4737,17 +5543,17 @@ fi
  
  
  
@@ -30760,7 +5815,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX_CONFIG"; then
-@@ -4756,8 +5562,9 @@
+@@ -4756,8 +5562,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -30772,7 +5827,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -4772,9 +5579,9 @@
+@@ -4772,9 +5579,9 @@ fi
  # and at more old has only one line
  # include <autoconf.h>
  as_lb_File=`echo "lb_cv_file_$LINUX_OBJ/include/linux/autoconf.h" | $as_tr_sh`
@@ -30785,7 +5840,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX_OBJ/include/linux/autoconf.h"; then
-@@ -4783,8 +5590,9 @@
+@@ -4783,8 +5590,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -30797,7 +5852,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -4794,9 +5602,9 @@
+@@ -4794,9 +5602,9 @@ echo "$as_me: error: Run make config in $LINUX." >&2;}
  fi
  
  as_lb_File=`echo "lb_cv_file_$LINUX_OBJ/include/linux/version.h" | $as_tr_sh`
@@ -30810,7 +5865,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX_OBJ/include/linux/version.h"; then
-@@ -4805,8 +5613,9 @@
+@@ -4805,8 +5613,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -30822,7 +5877,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -4828,9 +5637,9 @@
+@@ -4828,9 +5637,9 @@ if grep rhconfig $LINUX_OBJ/include/linux/version.h >/dev/null ; then
  	# enable extensive workarounds to get this to build
  	# modules
  	as_lb_File=`echo "lb_cv_file_$KERNEL_SOURCE_HEADER" | $as_tr_sh`
@@ -30835,7 +5890,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$KERNEL_SOURCE_HEADER"; then
-@@ -4839,8 +5648,9 @@
+@@ -4839,8 +5648,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -30847,7 +5902,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    if test $KERNEL_SOURCE_HEADER = '/boot/kernel.h' ; then
  			{ echo "$as_me:$LINENO: WARNING: Using /boot/kernel.h from RUNNING kernel." >&5
-@@ -4863,30 +5673,30 @@
+@@ -4863,30 +5673,30 @@ fi
  ARCH_UM=
  UML_CFLAGS=
  
@@ -30889,7 +5944,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX/include/linux/namei.h"; then
-@@ -4895,8 +5705,9 @@
+@@ -4895,8 +5705,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -30901,7 +5956,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
  
          	linux25="yes"
-@@ -4909,16 +5720,16 @@
+@@ -4909,16 +5720,16 @@ else
  
  fi
  
@@ -30924,7 +5979,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	rm -f build/conftest.i
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
-@@ -4949,8 +5760,8 @@
+@@ -4949,8 +5760,8 @@ if { ac_try='cp conftest.c build && make -d $makerule LUSTRE_KERNEL_TEST=conftes
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -30935,7 +5990,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  else
    echo "$as_me: failed program was:" >&5
-@@ -4988,8 +5799,8 @@
+@@ -4988,8 +5799,8 @@ if { ac_try='cp conftest.c build && make -d $makerule LUSTRE_KERNEL_TEST=conftes
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -30946,7 +6001,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  else
    echo "$as_me: failed program was:" >&5
-@@ -5015,8 +5826,8 @@
+@@ -5015,8 +5826,8 @@ fi
  
  
  # --- check that we can build modules at all
@@ -30957,7 +6012,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -5046,16 +5857,16 @@
+@@ -5046,16 +5857,16 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -30978,7 +6033,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	{ echo "$as_me:$LINENO: WARNING: Consult config.log for details." >&5
  echo "$as_me: WARNING: Consult config.log for details." >&2;}
  	{ echo "$as_me:$LINENO: WARNING: If you are trying to build with a kernel-source rpm, consult build/README.kernel-source" >&5
-@@ -5069,8 +5880,8 @@
+@@ -5069,8 +5880,8 @@ rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.
  
  LINUXRELEASE=
  rm -f build/conftest.i
@@ -30989,7 +6044,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test -s $LINUX_OBJ/include/linux/utsrelease.h ; then
  	LINUXRELEASEHEADER=utsrelease.h
  else
-@@ -5122,8 +5933,8 @@
+@@ -5122,8 +5933,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -31000,7 +6055,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	{ { echo "$as_me:$LINENO: error: Could not preprocess test program.  Consult config.log for details." >&5
  echo "$as_me: error: Could not preprocess test program.  Consult config.log for details." >&2;}
     { (exit 1); exit 1; }; }
-@@ -5132,14 +5943,14 @@
+@@ -5132,14 +5943,14 @@ fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
  rm -f build/conftest.i
  if test x$LINUXRELEASE = x ; then
@@ -31019,7 +6074,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  moduledir='/lib/modules/'$LINUXRELEASE/kernel
-@@ -5152,16 +5963,16 @@
+@@ -5152,16 +5963,16 @@ modulenetdir='$(moduledir)/net/$(PACKAGE)'
  
  
  # ------------ RELEASE --------------------------------
@@ -31042,7 +6097,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -5199,22 +6010,22 @@
+@@ -5199,22 +6010,22 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
  
  		RHEL_KENEL="yes"
  		RHEL_KERNEL="yes"
@@ -31071,7 +6126,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -5250,8 +6061,8 @@
+@@ -5250,8 +6061,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -31082,7 +6137,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  SUSE_KERNEL="yes"
  
  else
-@@ -5259,8 +6070,8 @@
+@@ -5259,8 +6070,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -31093,7 +6148,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  fi
-@@ -5269,14 +6080,14 @@
+@@ -5269,14 +6080,14 @@ rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.
  
  
  
@@ -31112,7 +6167,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  else
    { { echo "$as_me:$LINENO: error: Could not determine the kernel architecture." >&5
  echo "$as_me: error: Could not determine the kernel architecture." >&2;}
-@@ -5284,21 +6095,21 @@
+@@ -5284,21 +6095,21 @@ echo "$as_me: error: Could not determine the kernel architecture." >&2;}
  fi
  
            rm -f build/arch
@@ -31140,7 +6195,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -5334,8 +6145,8 @@
+@@ -5334,8 +6145,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -31151,7 +6206,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  else
-@@ -5343,8 +6154,8 @@
+@@ -5343,8 +6154,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -31162,7 +6217,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  	{ { echo "$as_me:$LINENO: error: module support is required to build Lustre kernel modules." >&5
  echo "$as_me: error: module support is required to build Lustre kernel modules." >&2;}
-@@ -5355,8 +6166,8 @@
+@@ -5355,8 +6166,8 @@ fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
  
  
@@ -31173,7 +6228,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -5392,8 +6203,8 @@
+@@ -5392,8 +6203,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -31184,7 +6239,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  else
-@@ -5401,16 +6212,16 @@
+@@ -5401,16 +6212,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -31205,7 +6260,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -5446,8 +6257,8 @@
+@@ -5446,8 +6257,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -31216,7 +6271,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  else
-@@ -5455,8 +6266,8 @@
+@@ -5455,8 +6266,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -31227,7 +6282,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  if test "x$ARCH_UM" = "x" ; then
  	{ { echo "$as_me:$LINENO: error: Lustre requires that CONFIG_KALLSYMS is enabled in your kernel." >&5
-@@ -5469,8 +6280,8 @@
+@@ -5469,8 +6280,8 @@ fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
  
  
@@ -31238,7 +6293,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -5506,8 +6317,8 @@
+@@ -5506,8 +6317,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -31249,7 +6304,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  else
-@@ -5515,8 +6326,8 @@
+@@ -5515,8 +6326,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -31260,7 +6315,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  	{ echo "$as_me:$LINENO: WARNING: " >&5
  echo "$as_me: WARNING: " >&2;}
-@@ -5535,14 +6346,13 @@
+@@ -5535,14 +6346,13 @@ rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.
  # it's ugly to be doing anything with OFED outside of the lnet module, but
  # this has to be done here so that the backports path is set before all of
  # the LN_PROG_LINUX checks are done
@@ -31279,7 +6334,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		case $with_o2ib in
  		yes)    O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
  			ENABLEO2IB=2
-@@ -5559,10 +6369,11 @@
+@@ -5559,10 +6369,11 @@ else
  		O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
  		ENABLEO2IB=1
  
@@ -31294,7 +6349,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  else
  	o2ib_found=false
  	for O2IBPATH in $O2IBPATHS; do
-@@ -5575,8 +6386,8 @@
+@@ -5575,8 +6386,8 @@ else
  		fi
  	done
  	if ! $o2ib_found; then
@@ -31305,7 +6360,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		case $ENABLEO2IB in
  			1) ;;
  			2) { { echo "$as_me:$LINENO: error: kernel OpenIB gen2 headers not present" >&5
-@@ -5598,11 +6409,11 @@
+@@ -5598,11 +6409,11 @@ echo "$as_me: error: internal error" >&2;}
  		if test -n "$BACKPORT_INCLUDES"; then
  			OFED_BACKPORT_PATH=`echo $BACKPORT_INCLUDES | sed "s#.*/src/ofa_kernel/#$O2IBPATH/#"`
  			EXTRA_LNET_INCLUDE="-I$OFED_BACKPORT_PATH $EXTRA_LNET_INCLUDE"
@@ -31321,7 +6376,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
                  fi
  	fi
  fi
-@@ -5610,8 +6421,8 @@
+@@ -5610,8 +6421,8 @@ fi
  
  
  
@@ -31332,7 +6387,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -5645,8 +6456,8 @@
+@@ -5645,8 +6456,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -31343,7 +6398,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_CPU_ONLINE 1
-@@ -5658,14 +6469,14 @@
+@@ -5658,14 +6469,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -31362,7 +6417,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -5699,8 +6510,8 @@
+@@ -5699,8 +6510,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -31373,7 +6428,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_GFP_T 1
-@@ -5712,14 +6523,14 @@
+@@ -5712,14 +6523,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -31392,7 +6447,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -5753,8 +6564,8 @@
+@@ -5753,8 +6564,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -31403,7 +6458,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_CPUMASK_T 1
-@@ -5766,25 +6577,25 @@
+@@ -5766,25 +6577,25 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -31425,10 +6480,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    enable_affinity='yes'
 -fi;
 +fi
++
  
 -echo "$as_me:$LINENO: checking for CPU affinity support" >&5
 -echo $ECHO_N "checking for CPU affinity support... $ECHO_C" >&6
-+
 +{ echo "$as_me:$LINENO: checking for CPU affinity support" >&5
 +echo $ECHO_N "checking for CPU affinity support... $ECHO_C" >&6; }
  if test x$enable_affinity = xno ; then
@@ -31439,7 +6494,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  else
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
-@@ -5830,33 +6641,33 @@
+@@ -5830,33 +6641,33 @@ cat >>confdefs.h <<\_ACEOF
  #define CPU_AFFINITY 1
  _ACEOF
  
@@ -31485,7 +6540,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  else
         BOCD="`grep -c TCP_BACKOFF $LINUX/include/linux/tcp.h`"
         if test "$BOCD" != 0 ; then
-@@ -5865,8 +6676,8 @@
+@@ -5865,8 +6676,8 @@ cat >>confdefs.h <<\_ACEOF
  #define SOCKNAL_BACKOFF 1
  _ACEOF
  
@@ -31496,7 +6551,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
                 if grep rto_max $LINUX/include/linux/tcp.h|grep -q __u16; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -5875,69 +6686,69 @@
+@@ -5875,69 +6686,69 @@ _ACEOF
  
                 fi
         else
@@ -31598,7 +6653,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -5973,8 +6784,8 @@
+@@ -5973,8 +6784,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -31609,7 +6664,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  else
-@@ -5982,11 +6793,11 @@
+@@ -5982,11 +6793,11 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -31625,7 +6680,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -6022,8 +6833,8 @@
+@@ -6022,8 +6833,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -31636,7 +6691,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  else
-@@ -6031,8 +6842,8 @@
+@@ -6031,8 +6842,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -31647,7 +6702,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  				{ echo "$as_me:$LINENO: WARNING: QSNET is not enabled in this kernel; not building qswlnd." >&5
  echo "$as_me: WARNING: QSNET is not enabled in this kernel; not building qswlnd." >&2;}
-@@ -6050,8 +6861,8 @@
+@@ -6050,8 +6861,8 @@ rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.
  
  	fi
  else
@@ -31658,7 +6713,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	QSWLND=""
  	QSWCPPFLAGS=""
  fi
-@@ -6059,13 +6870,12 @@
+@@ -6059,13 +6870,12 @@ fi
  
  
  
@@ -31676,7 +6731,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	        case $with_gm in
                  no)    ENABLE_GM=0
  	               ;;
-@@ -6078,25 +6888,26 @@
+@@ -6078,25 +6888,26 @@ else
  
                  ENABLE_GM=0
  
@@ -31712,7 +6767,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  	GMLND="gmlnd"
          GMCPPFLAGS="-I$GM_SRC/include -I$GM_SRC/drivers -I$GM_SRC/drivers/linux/gm"
-@@ -6113,8 +6924,8 @@
+@@ -6113,8 +6924,8 @@ echo "$as_me: error: Cant find GM libraries under $GM_INSTALL" >&2;}
  	EXTRA_KCFLAGS_save="$EXTRA_KCFLAGS"
  	EXTRA_KCFLAGS="$GMCPPFLAGS -DGM_KERNEL $EXTRA_KCFLAGS"
  
@@ -31723,7 +6778,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -6155,16 +6966,16 @@
+@@ -6155,16 +6966,16 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -31744,7 +6799,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		{ { echo "$as_me:$LINENO: error: Bad --with-gm path" >&5
  echo "$as_me: error: Bad --with-gm path" >&2;}
     { (exit 1); exit 1; }; }
-@@ -6172,8 +6983,8 @@
+@@ -6172,8 +6983,8 @@ echo "$as_me: error: Bad --with-gm path" >&2;}
  fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
  
@@ -31755,7 +6810,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -6218,15 +7029,15 @@
+@@ -6218,15 +7029,15 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -31774,7 +6829,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  Please patch the GM sources as follows...
      cd $GM_SRC
      patch -p0 < $PWD/lnet/klnds/gmlnd/gm-reg-phys.patch
-@@ -6235,7 +7046,7 @@
+@@ -6235,7 +7046,7 @@ echo "${ECHO_T}no.
  Please patch the GM sources as follows...
      cd $GM_SRC
      patch -p0 < $PWD/lnet/klnds/gmlnd/gm-reg-phys.patch
@@ -31783,7 +6838,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
                  { { echo "$as_me:$LINENO: error: Can't build GM without gm_register_memory_ex_phys()" >&5
  echo "$as_me: error: Can't build GM without gm_register_memory_ex_phys()" >&2;}
     { (exit 1); exit 1; }; }
-@@ -6250,15 +7061,14 @@
+@@ -6250,15 +7061,14 @@ fi
  
  
  
@@ -31803,7 +6858,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		case $with_openib in
  		yes)    ENABLEOPENIB=2
  			;;
-@@ -6273,15 +7083,16 @@
+@@ -6273,15 +7083,16 @@ else
  
  		ENABLEOPENIB=1
  
@@ -31825,7 +6880,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	case $ENABLEOPENIB in
  	1) ;;
  	2) { { echo "$as_me:$LINENO: error: kernel OpenIB headers not present" >&5
-@@ -6298,8 +7109,8 @@
+@@ -6298,8 +7109,8 @@ else
  	case $ENABLEOPENIB in
  	1|2) OPENIBCPPFLAGS="-I$OPENIBPATH/include -DIN_TREE_BUILD";;
  	3)   OPENIBCPPFLAGS="-I$OPENIBPATH/include";;
@@ -31836,7 +6891,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	     { { echo "$as_me:$LINENO: error: internal error" >&5
  echo "$as_me: error: internal error" >&2;}
     { (exit 1); exit 1; }; };;
-@@ -6349,8 +7160,8 @@
+@@ -6349,8 +7160,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -31847,7 +6902,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		OPENIBLND="openiblnd"
  
  else
-@@ -6358,8 +7169,8 @@
+@@ -6358,8 +7169,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -31858,7 +6913,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		case $ENABLEOPENIB in
  		1) ;;
  		2) { { echo "$as_me:$LINENO: error: can't compile with kernel OpenIB headers" >&5
-@@ -6383,26 +7194,25 @@
+@@ -6383,26 +7194,25 @@ fi
  
  
  
@@ -31895,7 +6950,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  				{ { echo "$as_me:$LINENO: error: No directory $CIBPATH" >&5
  echo "$as_me: error: No directory $CIBPATH" >&2;}
     { (exit 1); exit 1; }; }
-@@ -6411,10 +7221,11 @@
+@@ -6411,10 +7221,11 @@ echo "$as_me: error: No directory $CIBPATH" >&2;}
  
  else
  
@@ -31910,7 +6965,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test -n "$CIBPATH"; then
  	CIBCPPFLAGS="-I${CIBPATH}/ib/ts_api_ng/include -I${CIBPATH}/all/kernel_services/include -DUSING_TSAPI"
  	CIBCPPFLAGS="$CIBCPPFLAGS -DIB_NTXRXPARAMS=3"
-@@ -6481,24 +7292,23 @@
+@@ -6481,24 +7292,23 @@ fi
  
  
  
@@ -31945,7 +7000,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  				{ { echo "$as_me:$LINENO: error: No directory $VIBPATH" >&5
  echo "$as_me: error: No directory $VIBPATH" >&2;}
     { (exit 1); exit 1; }; }
-@@ -6507,10 +7317,11 @@
+@@ -6507,10 +7317,11 @@ echo "$as_me: error: No directory $VIBPATH" >&2;}
  
  else
  
@@ -31960,7 +7015,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test -z "$VIBPATH"; then
  	VIBLND=""
  else
-@@ -6592,8 +7403,8 @@
+@@ -6592,8 +7403,8 @@ fi
  if test -n "$VIBLND"; then
  	EXTRA_KCFLAGS_save="$EXTRA_KCFLAGS"
  	EXTRA_KCFLAGS="$EXTRA_KCFLAGS $VIBCPPFLAGS"
@@ -31971,7 +7026,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -6641,8 +7452,8 @@
+@@ -6641,8 +7452,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -31982,7 +7037,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	        VIBCPPFLAGS="$VIBCPPFLAGS -DIBNAL_VOIDSTAR_SGADDR=1"
  
  else
-@@ -6650,8 +7461,8 @@
+@@ -6650,8 +7461,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -31993,7 +7048,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-@@ -6661,15 +7472,14 @@
+@@ -6661,15 +7472,14 @@ fi
  
  
  
@@ -32013,7 +7068,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		case $with_iib in
  		yes)    ENABLEIIB=2
  			;;
-@@ -6684,13 +7494,14 @@
+@@ -6684,13 +7494,14 @@ else
  
  		ENABLEIIB=1
  
@@ -32033,7 +7088,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	case $ENABLEIIB in
  	1) ;;
  	2) { { echo "$as_me:$LINENO: error: default Infinicon headers not present" >&5
-@@ -6750,8 +7561,8 @@
+@@ -6750,8 +7561,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32044,7 +7099,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		IIBLND="iiblnd"
  
  else
-@@ -6759,8 +7570,8 @@
+@@ -6759,8 +7570,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32055,7 +7110,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		case $ENABLEIIB in
  		1) ;;
  		2) { { echo "$as_me:$LINENO: error: can't compile with default Infinicon headers" >&5
-@@ -6784,14 +7595,13 @@
+@@ -6784,14 +7595,13 @@ fi
  
  
  
@@ -32074,7 +7129,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		case $with_o2ib in
  		yes)    O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
  			ENABLEO2IB=2
-@@ -6808,10 +7618,11 @@
+@@ -6808,10 +7618,11 @@ else
  		O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
  		ENABLEO2IB=1
  
@@ -32089,7 +7144,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  else
  	o2ib_found=false
  
-@@ -6826,8 +7637,8 @@
+@@ -6826,8 +7637,8 @@ else
  	done
  
  	if ! $o2ib_found; then
@@ -32100,7 +7155,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		case $ENABLEO2IB in
  			1) ;;
  			2) { { echo "$as_me:$LINENO: error: kernel OpenIB gen2 headers not present" >&5
-@@ -6895,8 +7706,8 @@
+@@ -6895,8 +7706,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32111,7 +7166,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		        O2IBLND="o2iblnd"
  
  else
-@@ -6904,8 +7715,8 @@
+@@ -6904,8 +7715,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32122,7 +7177,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		        case $ENABLEO2IB in
  		        1) ;;
  		        2) { { echo "$as_me:$LINENO: error: can't compile with kernel OpenIB gen2 headers" >&5
-@@ -6952,8 +7763,8 @@
+@@ -6952,8 +7763,8 @@ echo "$as_me: error: an external source tree was specified for o2iblnd however I
  		fi
  
  
@@ -32133,7 +7188,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -6993,8 +7804,8 @@
+@@ -6993,8 +7804,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32144,7 +7199,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_OFED_IB_DMA_MAP 1
-@@ -7006,14 +7817,14 @@
+@@ -7006,14 +7817,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32163,7 +7218,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -7053,8 +7864,8 @@
+@@ -7053,8 +7864,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32174,7 +7229,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_OFED_IB_COMP_VECTOR 1
-@@ -7066,14 +7877,14 @@
+@@ -7066,14 +7877,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32193,7 +7248,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -7113,8 +7924,8 @@
+@@ -7113,8 +7924,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32204,7 +7259,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_OFED_TRANSPORT_IWARP 1
-@@ -7126,14 +7937,14 @@
+@@ -7126,14 +7937,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32223,7 +7278,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -7172,8 +7983,8 @@
+@@ -7172,8 +7983,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32234,7 +7289,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_OFED_RDMA_CMEV_ADDRCHANGE 1
-@@ -7185,14 +7996,14 @@
+@@ -7185,14 +7996,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32253,7 +7308,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -7231,8 +8042,8 @@
+@@ -7231,8 +8042,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32264,7 +7319,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_OFED_RDMA_CMEV_TIMEWAIT_EXIT 1
-@@ -7244,8 +8055,8 @@
+@@ -7244,8 +8055,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32275,7 +7330,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-@@ -7259,8 +8070,8 @@
+@@ -7259,8 +8070,8 @@ fi
  
  
  #### Rapid Array
@@ -32286,7 +7341,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  # placeholder
  RACPPFLAGS="-I${LINUX}/drivers/xd1/include"
  EXTRA_KCFLAGS_save="$EXTRA_KCFLAGS"
-@@ -7304,8 +8115,8 @@
+@@ -7304,8 +8115,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32297,7 +7352,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	RALND="ralnd"
  
  else
-@@ -7313,8 +8124,8 @@
+@@ -7313,8 +8124,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32308,7 +7363,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	RALND=""
  	RACPPFLAGS=""
  
-@@ -7326,13 +8137,12 @@
+@@ -7326,13 +8137,12 @@ EXTRA_KCFLAGS="$EXTRA_KCFLAGS_save"
  
  
  if test -z "$ENABLEPORTALS"; then
@@ -32326,7 +7381,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		case $with_portals in
  			no)     ENABLEPORTALS=0
  				;;
-@@ -7345,49 +8155,49 @@
+@@ -7345,49 +8155,49 @@ else
  
  		ENABLEPORTALS=0
  
@@ -32394,7 +7449,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
                 case $with_mx in
                 yes)    ENABLEMX=2
                         ;;
-@@ -7402,15 +8212,16 @@
+@@ -7402,15 +8212,16 @@ else
  
                 ENABLEMX=1
  
@@ -32416,7 +7471,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
         case $ENABLEMX in
         1) ;;
         2) { { echo "$as_me:$LINENO: error: Myrinet MX kernel headers not present" >&5
-@@ -7473,8 +8284,8 @@
+@@ -7473,8 +8284,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32427,7 +7482,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
                 MXLND="mxlnd"
  
  else
-@@ -7482,8 +8293,8 @@
+@@ -7482,8 +8293,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32438,7 +7493,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
                 case $ENABLEMX in
                 1) ;;
                 2) { { echo "$as_me:$LINENO: error: can't compile with Myrinet MX kernel headers" >&5
-@@ -7508,8 +8319,8 @@
+@@ -7508,8 +8319,8 @@ fi
  
  
  
@@ -32449,7 +7504,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -7544,8 +8355,8 @@
+@@ -7544,8 +8355,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32460,7 +7515,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_PAGE_LIST 1
-@@ -7557,14 +8368,14 @@
+@@ -7557,14 +8368,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32479,7 +7534,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -7604,22 +8415,22 @@
+@@ -7604,22 +8415,22 @@ cat >>confdefs.h <<\_ACEOF
  #define CONFIG_RH_2_4_20 1
  _ACEOF
  
@@ -32508,7 +7563,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]show_task[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -7633,13 +8444,13 @@
+@@ -7633,13 +8444,13 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -32526,7 +7581,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -7649,8 +8460,8 @@
+@@ -7649,8 +8460,8 @@ _ACEOF
  
      fi
  else
@@ -32537,7 +7592,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -7661,8 +8472,8 @@
+@@ -7661,8 +8472,8 @@ _ACEOF
  fi
  
  
@@ -32548,7 +7603,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  tmp_flags="$EXTRA_KCFLAGS"
  EXTRA_KCFLAGS="$EXTRA_KCFLAGS -Werror"
  cat >conftest.c <<_ACEOF
-@@ -7702,8 +8513,8 @@
+@@ -7702,8 +8513,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32559,7 +7614,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_KERN__U64_LONG_LONG 1
-@@ -7715,15 +8526,15 @@
+@@ -7715,15 +8526,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32579,7 +7634,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  tmp_flags="$CFLAGS"
  CFLAGS="$CFLAGS -Werror"
  cat >conftest.$ac_ext <<_ACEOF
-@@ -7740,30 +8551,25 @@
+@@ -7740,30 +8551,25 @@ cat >conftest.$ac_ext <<_ACEOF
  
  _ACEOF
  rm -f conftest.$ac_objext
@@ -32623,7 +7678,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_SSIZE_T_LONG 1
-@@ -7775,15 +8581,16 @@
+@@ -7775,15 +8581,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32645,7 +7700,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  tmp_flags="$CFLAGS"
  CFLAGS="$CFLAGS -Werror"
  cat >conftest.$ac_ext <<_ACEOF
-@@ -7800,30 +8607,25 @@
+@@ -7800,30 +8607,25 @@ cat >conftest.$ac_ext <<_ACEOF
  
  _ACEOF
  rm -f conftest.$ac_objext
@@ -32689,7 +7744,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_SIZE_T_LONG 1
-@@ -7835,15 +8637,16 @@
+@@ -7835,15 +8637,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32711,7 +7766,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -7878,8 +8681,8 @@
+@@ -7878,8 +8681,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32722,7 +7777,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_LE_TYPES 1
-@@ -7891,14 +8694,14 @@
+@@ -7891,14 +8694,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32741,7 +7796,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -7934,8 +8737,8 @@
+@@ -7934,8 +8737,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32752,7 +7807,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_TASK_RCU 1
-@@ -7947,15 +8750,15 @@
+@@ -7947,15 +8750,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32772,7 +7827,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]tasklist_lock[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -7969,13 +8772,13 @@
+@@ -7969,13 +8772,13 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -32790,7 +7845,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -7985,8 +8788,8 @@
+@@ -7985,8 +8788,8 @@ _ACEOF
  
      fi
  else
@@ -32801,7 +7856,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -7998,8 +8801,8 @@
+@@ -7998,8 +8801,8 @@ fi
  
  
  # 2.6.19
@@ -32812,7 +7867,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -8033,8 +8836,8 @@
+@@ -8033,8 +8836,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32823,7 +7878,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_KMEM_CACHE_DESTROY_INT 1
-@@ -8046,14 +8849,14 @@
+@@ -8046,14 +8849,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32842,7 +7897,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -8088,8 +8891,8 @@
+@@ -8088,8 +8891,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32853,7 +7908,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_ATOMIC_PANIC_NOTIFIER 1
-@@ -8101,15 +8904,15 @@
+@@ -8101,15 +8904,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32873,7 +7928,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -8145,8 +8948,8 @@
+@@ -8145,8 +8948,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32884,7 +7939,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_3ARGS_INIT_WORK 1
-@@ -8158,15 +8961,15 @@
+@@ -8158,15 +8961,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32904,7 +7959,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -8200,8 +9003,8 @@
+@@ -8200,8 +9003,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32915,7 +7970,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_2ARGS_REGISTER_SYSCTL 1
-@@ -8213,14 +9016,14 @@
+@@ -8213,14 +9016,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32934,7 +7989,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  tmp_flags="$EXTRA_KCFLAGS"
  EXTRA_KCFLAGS="-Werror"
  cat >conftest.c <<_ACEOF
-@@ -8259,8 +9062,8 @@
+@@ -8259,8 +9062,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32945,7 +8000,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_KMEM_CACHE 1
-@@ -8272,16 +9075,16 @@
+@@ -8272,16 +9075,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32966,7 +8021,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -8315,8 +9118,8 @@
+@@ -8315,8 +9118,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -32977,7 +8032,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_KMEM_CACHE_CREATE_DTOR 1
-@@ -8328,15 +9131,15 @@
+@@ -8328,15 +9131,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -32997,7 +8052,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -8372,8 +9175,8 @@
+@@ -8372,8 +9175,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -33008,7 +8063,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_SYSCTL_UNNUMBERED 1
-@@ -8385,14 +9188,14 @@
+@@ -8385,14 +9188,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -33027,7 +8082,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -8427,8 +9230,8 @@
+@@ -8427,8 +9230,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -33038,7 +8093,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_SCATTERLIST_SETPAGE 1
-@@ -8440,15 +9243,15 @@
+@@ -8440,15 +9243,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -33058,7 +8113,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -8484,8 +9287,8 @@
+@@ -8484,8 +9287,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -33069,7 +8124,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_SEM_COUNT_ATOMIC 1
-@@ -8497,15 +9300,15 @@
+@@ -8497,15 +9300,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -33089,7 +8144,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -8539,8 +9342,8 @@
+@@ -8539,8 +9342,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -33100,7 +8155,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_SOCK_MAP_FD_2ARG 1
-@@ -8552,14 +9355,14 @@
+@@ -8552,14 +9355,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -33119,7 +8174,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]dump_trace[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -8573,17 +9376,17 @@
+@@ -8573,17 +9376,17 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -33143,7 +8198,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -8618,8 +9421,8 @@
+@@ -8618,8 +9421,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -33154,7 +8209,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_DUMP_TRACE 1
-@@ -8631,13 +9434,13 @@
+@@ -8631,13 +9434,13 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -33172,7 +8227,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -8676,8 +9479,8 @@
+@@ -8676,8 +9479,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -33183,7 +8238,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_TRACE_ADDRESS_RELIABLE 1
-@@ -8689,8 +9492,8 @@
+@@ -8689,8 +9492,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -33194,7 +8249,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-@@ -8698,13 +9501,13 @@
+@@ -8698,13 +9501,13 @@ EXTRA_KCFLAGS="$tmp_flags"
  
      fi
  else
@@ -33212,7 +8267,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -8739,8 +9542,8 @@
+@@ -8739,8 +9542,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -33223,7 +8278,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_DUMP_TRACE 1
-@@ -8752,13 +9555,13 @@
+@@ -8752,13 +9555,13 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -33241,7 +8296,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -8797,8 +9600,8 @@
+@@ -8797,8 +9600,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -33252,7 +8307,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_TRACE_ADDRESS_RELIABLE 1
-@@ -8810,8 +9613,8 @@
+@@ -8810,8 +9613,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -33263,7 +8318,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-@@ -8821,9 +9624,9 @@
+@@ -8821,9 +9624,9 @@ fi
  
  
  as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/cred.h" | $as_tr_sh`
@@ -33276,7 +8331,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX/include/linux/cred.h"; then
-@@ -8832,8 +9635,9 @@
+@@ -8832,8 +9635,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -33288,7 +8343,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
  
  
-@@ -8844,15 +9648,15 @@
+@@ -8844,15 +9648,15 @@ _ACEOF
  
  else
  
@@ -33308,7 +8363,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -8887,8 +9691,8 @@
+@@ -8887,8 +9691,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -33319,7 +8374,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_STRUCT_CRED 1
-@@ -8900,15 +9704,15 @@
+@@ -8900,15 +9704,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -33339,7 +8394,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  tmp_flags="$EXTRA_KCFLAGS"
  EXTRA_KCFLAGS="-Werror"
  cat >conftest.c <<_ACEOF
-@@ -8945,8 +9749,8 @@
+@@ -8945,8 +9749,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -33350,7 +8405,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_UNSHARE_FS_STRUCT 1
-@@ -8958,8 +9762,8 @@
+@@ -8958,8 +9762,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -33361,7 +8416,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-@@ -8967,9 +9771,9 @@
+@@ -8967,9 +9771,9 @@ EXTRA_KCFLAGS="$tmp_flags"
  
  
  			as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/lustre_version.h" | $as_tr_sh`
@@ -33374,7 +8429,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX/include/linux/lustre_version.h"; then
-@@ -8978,8 +9782,9 @@
+@@ -8978,8 +9782,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -33386,7 +8441,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
  
  	rm -f "$LUSTRE/include/linux/lustre_version.h"
-@@ -9017,8 +9822,8 @@
+@@ -9017,8 +9822,8 @@ echo "$as_me: WARNING: disabling server build" >&2;}
  	fi
  
            if test x$enable_server = xyes ; then
@@ -33397,7 +8452,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -9055,8 +9860,8 @@
+@@ -9055,8 +9860,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -33408,7 +8463,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_DEV_SET_RDONLY 1
-@@ -9127,14 +9932,14 @@
+@@ -9127,14 +9932,14 @@ _ACEOF
  
  fi #ldiskfs
  
@@ -33429,7 +8484,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -9170,8 +9975,8 @@
+@@ -9170,8 +9975,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -33440,7 +8495,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  else
    echo "$as_me: failed program was:" >&5
-@@ -9186,17 +9991,17 @@
+@@ -9186,17 +9991,17 @@ fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
  
            fi
@@ -33466,7 +8521,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_pinger != xno ; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9205,17 +10010,17 @@
+@@ -9205,17 +10010,17 @@ _ACEOF
  
  fi
  
@@ -33492,7 +8547,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_checksum != xno ; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9224,17 +10029,17 @@
+@@ -9224,17 +10029,17 @@ _ACEOF
  
  fi
  
@@ -33518,7 +8573,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_liblustre_recovery != xno ; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9243,17 +10048,17 @@
+@@ -9243,17 +10048,17 @@ _ACEOF
  
  fi
  
@@ -33544,7 +8599,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_health_write == xyes ; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9262,17 +10067,17 @@
+@@ -9262,17 +10067,17 @@ _ACEOF
  
  fi
  
@@ -33570,7 +8625,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_lru_resize != xno; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9281,17 +10086,17 @@
+@@ -9281,17 +10086,17 @@ _ACEOF
  
  fi
  
@@ -33596,7 +8651,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_adaptive_timeouts == xyes; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9300,17 +10105,17 @@
+@@ -9300,17 +10105,17 @@ _ACEOF
  
  fi
  
@@ -33622,7 +8677,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_delayed_recovery == xyes; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9320,8 +10125,8 @@
+@@ -9320,8 +10125,8 @@ _ACEOF
  fi
  
            if test x$enable_quota != xno; then
@@ -33633,7 +8688,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -9357,8 +10162,8 @@
+@@ -9357,8 +10162,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -33644,7 +8699,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  	enable_quota_module='yes'
  
-@@ -9373,8 +10178,8 @@
+@@ -9373,8 +10178,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -33655,7 +8710,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  	enable_quota_module='no'
  	{ echo "$as_me:$LINENO: WARNING: quota is not enabled because the kernel - lacks quota support" >&5
-@@ -9388,8 +10193,8 @@
+@@ -9388,8 +10193,8 @@ fi
  
  
            # RHEL4 patches
@@ -33666,7 +8721,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]truncate_complete_page[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -9403,13 +10208,13 @@
+@@ -9403,13 +10208,13 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -33684,7 +8739,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9419,8 +10224,8 @@
+@@ -9419,8 +10224,8 @@ _ACEOF
  
      fi
  else
@@ -33695,7 +8750,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9431,8 +10236,8 @@
+@@ -9431,8 +10236,8 @@ _ACEOF
  fi
  
  
@@ -33706,7 +8761,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]truncate_inode_pages_range[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -9446,13 +10251,13 @@
+@@ -9446,13 +10251,13 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -33724,7 +8779,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9462,8 +10267,8 @@
+@@ -9462,8 +10267,8 @@ _ACEOF
  
      fi
  else
@@ -33735,7 +8790,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9474,8 +10279,8 @@
+@@ -9474,8 +10279,8 @@ _ACEOF
  fi
  
  
@@ -33746,7 +8801,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]d_rehash_cond[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -9489,13 +10294,13 @@
+@@ -9489,13 +10294,13 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -33764,7 +8819,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9505,8 +10310,8 @@
+@@ -9505,8 +10310,8 @@ _ACEOF
  
      fi
  else
@@ -33775,7 +8830,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9517,8 +10322,8 @@
+@@ -9517,8 +10322,8 @@ _ACEOF
  fi
  
  
@@ -33786,7 +8841,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]__d_rehash[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -9532,13 +10337,13 @@
+@@ -9532,13 +10337,13 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -33804,7 +8859,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9548,8 +10353,8 @@
+@@ -9548,8 +10353,8 @@ _ACEOF
  
      fi
  else
@@ -33815,7 +8870,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9560,8 +10365,8 @@
+@@ -9560,8 +10365,8 @@ _ACEOF
  fi
  
  
@@ -33826,7 +8881,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]d_move_locked[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -9575,13 +10380,13 @@
+@@ -9575,13 +10380,13 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -33844,7 +8899,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9591,8 +10396,8 @@
+@@ -9591,8 +10396,8 @@ _ACEOF
  
      fi
  else
@@ -33855,7 +8910,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9603,8 +10408,8 @@
+@@ -9603,8 +10408,8 @@ _ACEOF
  fi
  
  
@@ -33866,7 +8921,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]__d_move[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -9618,13 +10423,13 @@
+@@ -9618,13 +10423,13 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -33884,7 +8939,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9634,8 +10439,8 @@
+@@ -9634,8 +10439,8 @@ _ACEOF
  
      fi
  else
@@ -33895,7 +8950,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9646,8 +10451,8 @@
+@@ -9646,8 +10451,8 @@ _ACEOF
  fi
  
  
@@ -33906,7 +8961,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]node_to_cpumask[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -9661,12 +10466,12 @@
+@@ -9661,12 +10466,12 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -33923,7 +8978,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_NODE_TO_CPUMASK 1
-@@ -9674,8 +10479,8 @@
+@@ -9674,8 +10479,8 @@ _ACEOF
  
      fi
  else
@@ -33934,7 +8989,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_NODE_TO_CPUMASK 1
-@@ -9683,8 +10488,8 @@
+@@ -9683,8 +10488,8 @@ _ACEOF
  
  fi
   # x86_64
@@ -33945,7 +9000,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]node_to_cpu_mask[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -9698,12 +10503,12 @@
+@@ -9698,12 +10503,12 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -33962,7 +9017,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_NODE_TO_CPUMASK 1
-@@ -9711,8 +10516,8 @@
+@@ -9711,8 +10516,8 @@ _ACEOF
  
      fi
  else
@@ -33973,7 +9028,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_NODE_TO_CPUMASK 1
-@@ -9720,8 +10525,8 @@
+@@ -9720,8 +10525,8 @@ _ACEOF
  
  fi
   # ia64
@@ -33984,7 +9039,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]node_2_cpu_mask[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -9735,12 +10540,12 @@
+@@ -9735,12 +10540,12 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -34001,7 +9056,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_NODE_TO_CPUMASK 1
-@@ -9748,8 +10553,8 @@
+@@ -9748,8 +10553,8 @@ _ACEOF
  
      fi
  else
@@ -34012,7 +9067,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_NODE_TO_CPUMASK 1
-@@ -9759,8 +10564,8 @@
+@@ -9759,8 +10564,8 @@ fi
   # i386
  
  
@@ -34023,7 +9078,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  RELEASEPAGE_WITH_GFP="$(grep -c 'releasepage.*gfp_t' $LINUX/include/linux/fs.h)"
  if test "$RELEASEPAGE_WITH_GFP" != 0 ; then
  
-@@ -9768,15 +10573,15 @@
+@@ -9768,15 +10573,15 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_RELEASEPAGE_WITH_GFP 1
  _ACEOF
  
@@ -34045,7 +9100,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  tmp_flags="$EXTRA_KCFLAGS"
  EXTRA_KCFLAGS="-I$LINUX/fs -I$LDISKFS_DIR -I$LDISKFS_DIR/ldiskfs"
  cat >conftest.c <<_ACEOF
-@@ -9814,8 +10619,8 @@
+@@ -9814,8 +10619,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -34056,7 +9111,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_LDISKFS_XATTR_H 1
-@@ -9827,15 +10632,15 @@
+@@ -9827,15 +10632,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34076,7 +9131,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]grab_cache_page_nowait_gfp[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -9849,10 +10654,10 @@
+@@ -9849,10 +10654,10 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -34091,7 +9146,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]add_to_page_cache_lru[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -9866,13 +10671,13 @@
+@@ -9866,13 +10671,13 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -34109,7 +9164,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9882,8 +10687,8 @@
+@@ -9882,8 +10687,8 @@ _ACEOF
  
      fi
  else
@@ -34120,7 +9175,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9895,8 +10700,8 @@
+@@ -9895,8 +10700,8 @@ fi
  
  
      else
@@ -34131,7 +9186,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9906,8 +10711,8 @@
+@@ -9906,8 +10711,8 @@ _ACEOF
  
      fi
  else
@@ -34142,7 +9197,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -9918,8 +10723,8 @@
+@@ -9918,8 +10723,8 @@ _ACEOF
  fi
  
  
@@ -34153,7 +9208,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -9954,8 +10759,8 @@
+@@ -9954,8 +10759,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -34164,7 +9219,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_STATFS_NAMELEN 1
-@@ -9967,14 +10772,14 @@
+@@ -9967,14 +10772,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34183,7 +9238,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10009,8 +10814,8 @@
+@@ -10009,8 +10814,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -34194,7 +9249,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_FILEMAP_POPULATE 1
-@@ -10022,14 +10827,14 @@
+@@ -10022,14 +10827,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34213,7 +9268,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10063,8 +10868,8 @@
+@@ -10063,8 +10868,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -34224,7 +9279,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_D_ADD_UNIQUE 1
-@@ -10076,16 +10881,16 @@
+@@ -10076,16 +10881,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34246,7 +9301,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX/include/linux/bit_spinlock.h"; then
-@@ -10094,12 +10899,13 @@
+@@ -10094,12 +10899,13 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -34264,7 +9319,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10133,8 +10939,8 @@
+@@ -10133,8 +10939,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -34275,7 +9330,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_BIT_SPINLOCK_H 1
-@@ -10146,8 +10952,8 @@
+@@ -10146,8 +10952,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34286,7 +9341,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-@@ -10156,9 +10962,9 @@
+@@ -10156,9 +10962,9 @@ fi
  
  
            as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/xattr_acl.h" | $as_tr_sh`
@@ -34299,7 +9354,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX/include/linux/xattr_acl.h"; then
-@@ -10167,12 +10973,13 @@
+@@ -10167,12 +10973,13 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -34317,7 +9372,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10204,8 +11011,8 @@
+@@ -10204,8 +11011,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -34328,7 +9383,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_XATTR_ACL 1
-@@ -10217,8 +11024,8 @@
+@@ -10217,8 +11024,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34339,7 +9394,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-@@ -10226,8 +11033,8 @@
+@@ -10226,8 +11033,8 @@ rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.
  fi
  
  
@@ -34350,7 +9405,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10263,8 +11070,8 @@
+@@ -10263,8 +11070,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -34361,7 +9416,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_FILE_IN_STRUCT_INTENT 1
-@@ -10276,16 +11083,16 @@
+@@ -10276,16 +11083,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34383,7 +9438,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX/include/linux/posix_acl_xattr.h"; then
-@@ -10294,12 +11101,13 @@
+@@ -10294,12 +11101,13 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -34401,7 +9456,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
          cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10331,8 +11139,8 @@
+@@ -10331,8 +11139,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -34412,7 +9467,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_LINUX_POSIX_ACL_XATTR_H 1
-@@ -10345,8 +11153,8 @@
+@@ -10345,8 +11153,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34423,7 +9478,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-@@ -10354,14 +11162,14 @@
+@@ -10354,14 +11162,14 @@ rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.
  
  else
  
@@ -34442,7 +9497,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]__iget[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -10375,13 +11183,13 @@
+@@ -10375,13 +11183,13 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -34460,7 +9515,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -10391,8 +11199,8 @@
+@@ -10391,8 +11199,8 @@ _ACEOF
  
      fi
  else
@@ -34471,7 +9526,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -10403,8 +11211,8 @@
+@@ -10403,8 +11211,8 @@ _ACEOF
  fi
  
  
@@ -34482,7 +9537,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10443,22 +11251,22 @@
+@@ -10443,22 +11251,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_MS_FLOCK_LOCK 1
  _ACEOF
  
@@ -34511,7 +9566,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10500,22 +11308,22 @@
+@@ -10500,22 +11308,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_CAN_SLEEP_ARG 1
  _ACEOF
  
@@ -34540,7 +9595,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10555,22 +11363,22 @@
+@@ -10555,22 +11363,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_F_OP_FLOCK 1
  _ACEOF
  
@@ -34569,7 +9624,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10605,8 +11413,8 @@
+@@ -10605,8 +11413,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -34580,7 +9635,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define KERNEL_SUPPORTS_QUOTA_READ 1
-@@ -10618,14 +11426,14 @@
+@@ -10618,14 +11426,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34599,7 +9654,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10668,22 +11476,22 @@
+@@ -10668,22 +11476,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_COOKIE_FOLLOW_LINK 1
  _ACEOF
  
@@ -34628,7 +9683,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10720,11 +11528,11 @@
+@@ -10720,11 +11528,11 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_RCU 1
  _ACEOF
  
@@ -34644,7 +9699,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
          cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10764,16 +11572,16 @@
+@@ -10764,16 +11572,16 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_CALL_RCU_PARAM 1
  _ACEOF
  
@@ -34665,7 +9720,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-@@ -10784,14 +11592,14 @@
+@@ -10784,14 +11592,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34684,7 +9739,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10828,11 +11636,11 @@
+@@ -10828,11 +11636,11 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_PERCPU_COUNTER 1
  _ACEOF
  
@@ -34700,7 +9755,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
          cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10872,16 +11680,16 @@
+@@ -10872,16 +11680,16 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_PERCPU_2ND_ARG 1
  _ACEOF
  
@@ -34721,7 +9776,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-@@ -10891,15 +11699,15 @@
+@@ -10891,15 +11699,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34741,7 +9796,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -10940,8 +11748,8 @@
+@@ -10940,8 +11748,8 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_QUOTA64 1
  _ACEOF
  
@@ -34752,7 +9807,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  else
    echo "$as_me: failed program was:" >&5
-@@ -10989,16 +11797,16 @@
+@@ -10989,16 +11797,16 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_QUOTA64 1
  _ACEOF
  
@@ -34773,7 +9828,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
                  { echo "$as_me:$LINENO: WARNING: 4 TB (or larger) block quota limits can only be used with OSTs not larger than 4 TB." >&5
  echo "$as_me: WARNING: 4 TB (or larger) block quota limits can only be used with OSTs not larger than 4 TB." >&2;}
                  { echo "$as_me:$LINENO: WARNING: Continuing with limited quota support." >&5
-@@ -11014,8 +11822,8 @@
+@@ -11014,8 +11822,8 @@ fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
  fi
  
@@ -34784,7 +9839,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -11054,8 +11862,8 @@
+@@ -11054,8 +11862,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -34795,7 +9850,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_4ARGS_VFS_SYMLINK 1
-@@ -11067,16 +11875,16 @@
+@@ -11067,16 +11875,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34816,7 +9871,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -11117,8 +11925,8 @@
+@@ -11117,8 +11925,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -34827,7 +9882,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_VFS_INTENT_PATCHES 1
-@@ -11130,16 +11938,16 @@
+@@ -11130,16 +11938,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34848,7 +9903,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]sysctl_vfs_cache_pressure[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -11153,13 +11961,13 @@
+@@ -11153,13 +11961,13 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -34866,7 +9921,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -11169,8 +11977,8 @@
+@@ -11169,8 +11977,8 @@ _ACEOF
  
      fi
  else
@@ -34877,7 +9932,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -11183,8 +11991,8 @@
+@@ -11183,8 +11991,8 @@ fi
  
  
            # 2.6.12
@@ -34888,7 +9943,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  tmp_flags="$EXTRA_KCFLAGS"
  EXTRA_KCFLAGS="-Werror"
  cat >conftest.c <<_ACEOF
-@@ -11222,8 +12030,8 @@
+@@ -11222,8 +12030,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -34899,7 +9954,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_RW_TREE_LOCK 1
-@@ -11235,15 +12043,15 @@
+@@ -11235,15 +12043,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34919,7 +9974,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]synchronize_rcu[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -11257,13 +12065,13 @@
+@@ -11257,13 +12065,13 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -34937,7 +9992,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -11273,8 +12081,8 @@
+@@ -11273,8 +12081,8 @@ _ACEOF
  
      fi
  else
@@ -34948,7 +10003,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -11287,8 +12095,8 @@
+@@ -11287,8 +12095,8 @@ fi
  
  
            # 2.6.15
@@ -34959,7 +10014,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -11326,8 +12134,8 @@
+@@ -11326,8 +12134,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -34970,7 +10025,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_INODE_I_MUTEX 1
-@@ -11339,14 +12147,14 @@
+@@ -11339,14 +12147,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -34989,7 +10044,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -11382,8 +12190,8 @@
+@@ -11382,8 +12190,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35000,7 +10055,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_ATOMIC_CMPXCHG 1
-@@ -11395,14 +12203,14 @@
+@@ -11395,14 +12203,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35019,7 +10074,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -11438,8 +12246,8 @@
+@@ -11438,8 +12246,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35030,7 +10085,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_ATOMIC_INC_NOT_ZERO 1
-@@ -11451,16 +12259,16 @@
+@@ -11451,16 +12259,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35051,7 +10106,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -11498,8 +12306,8 @@
+@@ -11498,8 +12306,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35062,7 +10117,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_SECURITY_PLUG 1
-@@ -11511,16 +12319,16 @@
+@@ -11511,16 +12319,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35083,7 +10138,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -11558,8 +12366,8 @@
+@@ -11558,8 +12366,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35094,7 +10149,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_DQUOTOFF_MUTEX 1
-@@ -11571,16 +12379,16 @@
+@@ -11571,16 +12379,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35115,7 +10170,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -11614,8 +12422,8 @@
+@@ -11614,8 +12422,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35126,7 +10181,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_NR_PAGECACHE 1
-@@ -11627,14 +12435,14 @@
+@@ -11627,14 +12435,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35145,7 +10200,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -11673,22 +12481,22 @@
+@@ -11673,22 +12481,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_STATFS_DENTRY_PARAM 1
  _ACEOF
  
@@ -35174,7 +10229,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -11727,22 +12535,22 @@
+@@ -11727,22 +12535,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_VFS_KERN_MOUNT 1
  _ACEOF
  
@@ -35203,7 +10258,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -11776,8 +12584,8 @@
+@@ -11776,8 +12584,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35214,7 +10269,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_INVALIDATEPAGE_RETURN_INT 1
-@@ -11789,14 +12597,14 @@
+@@ -11789,14 +12597,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35233,7 +10288,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  tmp_flags="$EXTRA_KCFLAGS"
  EXTRA_KCFLAGS="-Werror"
  cat >conftest.c <<_ACEOF
-@@ -11842,8 +12650,8 @@
+@@ -11842,8 +12650,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35244,7 +10299,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_UMOUNTBEGIN_VFSMOUNT 1
-@@ -11855,15 +12663,15 @@
+@@ -11855,15 +12663,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35264,7 +10319,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -11898,8 +12706,8 @@
+@@ -11898,8 +12706,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35275,7 +10330,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_INODE_IPRIVATE 1
-@@ -11911,14 +12719,14 @@
+@@ -11911,14 +12719,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35294,7 +10349,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]filemap_fdatawrite_range[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -11932,13 +12740,13 @@
+@@ -11932,13 +12740,13 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -35312,7 +10367,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -11948,8 +12756,8 @@
+@@ -11948,8 +12756,8 @@ _ACEOF
  
      fi
  else
@@ -35323,7 +10378,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -11961,8 +12769,8 @@
+@@ -11961,8 +12769,8 @@ fi
  
  
            if test x$enable_server = xyes ; then
@@ -35334,7 +10389,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]invalidate_mapping_pages[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -11976,10 +12784,10 @@
+@@ -11976,10 +12784,10 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -35349,7 +10404,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]invalidate_inode_pages[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -11993,16 +12801,16 @@
+@@ -11993,16 +12801,16 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -35370,7 +10425,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -12011,8 +12819,8 @@
+@@ -12011,8 +12819,8 @@ _ACEOF
  
      fi
  else
@@ -35381,7 +10436,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -12023,8 +12831,8 @@
+@@ -12023,8 +12831,8 @@ fi
  
  
      else
@@ -35392,7 +10447,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -12033,8 +12841,8 @@
+@@ -12033,8 +12841,8 @@ _ACEOF
  
      fi
  else
@@ -35403,7 +10458,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -12047,8 +12855,8 @@
+@@ -12047,8 +12855,8 @@ fi
            fi
  
            #2.6.18 + RHEL5 (fc6)
@@ -35414,7 +10469,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12085,8 +12893,8 @@
+@@ -12085,8 +12893,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35425,7 +10480,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_PG_FS_MISC 1
-@@ -12098,14 +12906,14 @@
+@@ -12098,14 +12906,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35444,7 +10499,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12150,8 +12958,8 @@
+@@ -12150,8 +12958,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35455,7 +10510,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_PAGE_CHECKED 1
-@@ -12163,16 +12971,16 @@
+@@ -12163,16 +12971,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35477,7 +10532,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX/include/linux/fiemap.h"; then
-@@ -12181,12 +12989,13 @@
+@@ -12181,12 +12989,13 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -35495,7 +10550,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
          cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12219,8 +13028,8 @@
+@@ -12219,8 +13028,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35506,7 +10561,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_LINUX_FIEMAP_H 1
-@@ -12232,8 +13041,8 @@
+@@ -12232,8 +13041,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35517,7 +10572,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-@@ -12243,8 +13052,8 @@
+@@ -12243,8 +13052,8 @@ fi
  
  
            # 2.6.19
@@ -35528,7 +10583,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12279,8 +13088,8 @@
+@@ -12279,8 +13088,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35539,7 +10594,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_INODE_BLKSIZE 1
-@@ -12292,14 +13101,14 @@
+@@ -12292,14 +13101,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35558,7 +10613,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  tmp_flags="$EXTRA_KCFLAGS"
  EXTRA_KCFLAGS="-Werror"
  cat >conftest.c <<_ACEOF
-@@ -12343,8 +13152,8 @@
+@@ -12343,8 +13152,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35569,7 +10624,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_VFS_READDIR_U64_INO 1
-@@ -12356,15 +13165,15 @@
+@@ -12356,15 +13165,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35589,7 +10644,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12398,8 +13207,8 @@
+@@ -12398,8 +13207,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35600,7 +10655,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_FILE_UPDATE_TIME 1
-@@ -12411,14 +13220,14 @@
+@@ -12411,14 +13220,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35619,7 +10674,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12453,8 +13262,8 @@
+@@ -12453,8 +13262,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35630,7 +10685,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_FILE_WRITEV 1
-@@ -12466,14 +13275,14 @@
+@@ -12466,14 +13275,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35649,7 +10704,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12508,8 +13317,8 @@
+@@ -12508,8 +13317,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35660,7 +10715,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_FILE_READV 1
-@@ -12521,16 +13330,16 @@
+@@ -12521,16 +13330,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35681,7 +10736,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12569,8 +13378,8 @@
+@@ -12569,8 +13378,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35692,7 +10747,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_CANCEL_DIRTY_PAGE 1
-@@ -12582,16 +13391,16 @@
+@@ -12582,16 +13391,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35713,7 +10768,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12628,8 +13437,8 @@
+@@ -12628,8 +13437,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35724,7 +10779,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_PAGE_CONSTANT 1
-@@ -12641,16 +13450,16 @@
+@@ -12641,16 +13450,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35745,7 +10800,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12684,8 +13493,8 @@
+@@ -12684,8 +13493,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35756,7 +10811,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_INVALIDATE_BDEV_2ARG 1
-@@ -12697,14 +13506,14 @@
+@@ -12697,14 +13506,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35775,7 +10830,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12738,8 +13547,8 @@
+@@ -12738,8 +13547,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35786,7 +10841,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_FS_RENAME_DOES_D_MOVE 1
-@@ -12751,15 +13560,15 @@
+@@ -12751,15 +13560,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35806,7 +10861,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12793,8 +13602,8 @@
+@@ -12793,8 +13602,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35817,7 +10872,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_UNREGISTER_BLKDEV_RETURN_INT 1
-@@ -12806,14 +13615,14 @@
+@@ -12806,14 +13615,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35836,7 +10891,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12849,8 +13658,8 @@
+@@ -12849,8 +13658,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35847,7 +10902,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_KERNEL_SENDFILE 1
-@@ -12862,14 +13671,14 @@
+@@ -12862,14 +13671,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35866,7 +10921,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12905,8 +13714,8 @@
+@@ -12905,8 +13714,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35877,7 +10932,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_KERNEL_SPLICE_READ 1
-@@ -12918,16 +13727,16 @@
+@@ -12918,16 +13727,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35899,7 +10954,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX/include/linux/exportfs.h"; then
-@@ -12936,8 +13745,9 @@
+@@ -12936,8 +13745,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -35911,7 +10966,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
  
  
-@@ -12948,14 +13758,14 @@
+@@ -12948,14 +13758,14 @@ _ACEOF
  
  else
  
@@ -35930,7 +10985,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -12991,8 +13801,8 @@
+@@ -12991,8 +13801,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35941,7 +10996,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_VM_OP_FAULT 1
-@@ -13004,14 +13814,14 @@
+@@ -13004,14 +13814,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35960,7 +11015,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]register_shrinker[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -13025,11 +13835,11 @@
+@@ -13025,11 +13835,11 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -35976,7 +11031,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
          tmp_flags="$EXTRA_KCFLAGS"
          EXTRA_KCFLAGS="-Werror"
          cat >conftest.c <<_ACEOF
-@@ -13068,8 +13878,8 @@
+@@ -13068,8 +13878,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -35987,7 +11042,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define SHRINKER_MASK_T gfp_t
-@@ -13081,8 +13891,8 @@
+@@ -13081,8 +13891,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -35998,7 +11053,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define SHRINKER_MASK_T unsigned int
-@@ -13094,8 +13904,8 @@
+@@ -13094,8 +13904,8 @@ rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.
          EXTRA_KCFLAGS="$tmp_flags"
  
      else
@@ -36009,7 +11064,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -13105,8 +13915,8 @@
+@@ -13105,8 +13915,8 @@ _ACEOF
  
      fi
  else
@@ -36020,7 +11075,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -13117,8 +13927,8 @@
+@@ -13117,8 +13927,8 @@ _ACEOF
  fi
  
  
@@ -36031,7 +11086,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -13154,8 +13964,8 @@
+@@ -13154,8 +13964,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -36042,7 +11097,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_PROCFS_USERS 1
-@@ -13167,16 +13977,16 @@
+@@ -13167,16 +13977,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -36063,7 +11118,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -13212,8 +14022,8 @@
+@@ -13212,8 +14022,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -36074,7 +11129,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_MAPPING_CAP_WRITEBACK_DIRTY 1
-@@ -13225,8 +14035,8 @@
+@@ -13225,8 +14035,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -36085,7 +11140,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-@@ -13234,9 +14044,9 @@
+@@ -13234,9 +14044,9 @@ rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.
  
            # 2.6.24
            as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/mm_types.h" | $as_tr_sh`
@@ -36098,7 +11153,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX/include/linux/mm_types.h"; then
-@@ -13245,8 +14055,9 @@
+@@ -13245,8 +14055,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -36110,7 +11165,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
  
  
-@@ -13257,14 +14068,14 @@
+@@ -13257,14 +14068,14 @@ _ACEOF
  
  else
  
@@ -36129,7 +11184,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -13298,8 +14109,8 @@
+@@ -13298,8 +14109,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -36140,7 +11195,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_BIO_ENDIO_2ARG 1
-@@ -13311,14 +14122,14 @@
+@@ -13311,14 +14122,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -36159,7 +11214,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -13358,8 +14169,8 @@
+@@ -13358,8 +14169,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -36170,7 +11225,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_FH_TO_DENTRY 1
-@@ -13371,14 +14182,14 @@
+@@ -13371,14 +14182,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -36189,7 +11244,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -13414,8 +14225,8 @@
+@@ -13414,8 +14225,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -36200,7 +11255,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_PROCFS_DELETED 1
-@@ -13427,16 +14238,16 @@
+@@ -13427,16 +14238,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -36221,7 +11276,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -13476,24 +14287,24 @@
+@@ -13476,24 +14287,24 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_PATH_REMOVE_SUID 1
  _ACEOF
  
@@ -36252,7 +11307,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -13532,8 +14343,8 @@
+@@ -13532,8 +14343,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -36263,7 +11318,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_FS_STRUCT_USE_PATH 1
-@@ -13545,16 +14356,16 @@
+@@ -13545,16 +14356,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -36284,7 +11339,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -13595,22 +14406,22 @@
+@@ -13595,22 +14406,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_INODE_PERMISION_2ARGS 1
  _ACEOF
  
@@ -36313,7 +11368,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -13649,22 +14460,22 @@
+@@ -13649,22 +14460,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_FILE_REMOVE_SUID 1
  _ACEOF
  
@@ -36342,7 +11397,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -13703,22 +14514,22 @@
+@@ -13703,22 +14514,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_TRYLOCK_PAGE 1
  _ACEOF
  
@@ -36371,7 +11426,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  tmp_flags="$EXTRA_KCFLAGS"
  EXTRA_KCFLAGS="-Werror"
  cat >conftest.c <<_ACEOF
-@@ -13756,8 +14567,8 @@
+@@ -13756,8 +14567,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -36382,7 +11437,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_RW_TREE_LOCK 1
-@@ -13769,15 +14580,15 @@
+@@ -13769,15 +14580,15 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -36402,7 +11457,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -13817,22 +14628,22 @@
+@@ -13817,22 +14628,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_READ_INODE_IN_SBOPS 1
  _ACEOF
  
@@ -36431,7 +11486,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  grep -q -E '[[:space:]]inode_permission[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -13846,13 +14657,13 @@
+@@ -13846,13 +14657,13 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -36449,7 +11504,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -13862,8 +14673,8 @@
+@@ -13862,8 +14673,8 @@ _ACEOF
  
      fi
  else
@@ -36460,7 +11515,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  cat >>confdefs.h <<\_ACEOF
-@@ -13874,8 +14685,8 @@
+@@ -13874,8 +14685,8 @@ _ACEOF
  fi
  
  
@@ -36471,7 +11526,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -13915,22 +14726,22 @@
+@@ -13915,22 +14726,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_QUOTA_ON_5ARGS 1
  _ACEOF
  
@@ -36500,7 +11555,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -13970,22 +14781,22 @@
+@@ -13970,22 +14781,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_QUOTA_OFF_3ARGS 1
  _ACEOF
  
@@ -36529,7 +11584,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -14024,24 +14835,24 @@
+@@ -14024,24 +14835,24 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_VFS_DQ_OFF 1
  _ACEOF
  
@@ -36560,7 +11615,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -14081,24 +14892,24 @@
+@@ -14081,24 +14892,24 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_BI_HW_SEGMENTS 1
  _ACEOF
  
@@ -36592,7 +11647,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX/include/linux/quotaio_v1.h"; then
-@@ -14107,8 +14918,9 @@
+@@ -14107,8 +14918,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -36604,7 +11659,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
  
  
-@@ -14119,14 +14931,14 @@
+@@ -14119,14 +14931,14 @@ _ACEOF
  
  else
  
@@ -36623,7 +11678,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -14169,22 +14981,22 @@
+@@ -14169,22 +14981,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_VFS_SYMLINK_5ARGS 1
  _ACEOF
  
@@ -36652,7 +11707,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -14223,22 +15035,22 @@
+@@ -14223,22 +15035,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_SB_ANY_QUOTA_ACTIVE 1
  _ACEOF
  
@@ -36681,7 +11736,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -14277,24 +15089,24 @@
+@@ -14277,24 +15089,24 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_SB_HAS_QUOTA_ACTIVE 1
  _ACEOF
  
@@ -36712,7 +11767,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -14337,8 +15149,8 @@
+@@ -14337,8 +15149,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -36723,7 +11778,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_KERNEL_WRITE_BEGIN_END 1
-@@ -14350,14 +15162,14 @@
+@@ -14350,14 +15162,14 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -36742,7 +11797,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -14396,22 +15208,22 @@
+@@ -14396,22 +15208,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_D_OBTAIN_ALIAS 1
  _ACEOF
  
@@ -36771,7 +11826,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -14450,22 +15262,22 @@
+@@ -14450,22 +15262,22 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_BLKDEV_PUT_2ARGS 1
  _ACEOF
  
@@ -36800,7 +11855,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -14504,16 +15316,16 @@
+@@ -14504,16 +15316,16 @@ cat >>confdefs.h <<\_ACEOF
  #define HAVE_DENTRY_OPEN_4ARGS 1
  _ACEOF
  
@@ -36821,7 +11876,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-@@ -14521,102 +15333,7 @@
+@@ -14521,102 +15333,7 @@ rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.
  
  			;;
  		darwin*)
@@ -36925,7 +11980,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  			LIBCFS_PROG_DARWIN
  			;;
  		*)
-@@ -14629,8 +15346,8 @@
+@@ -14629,8 +15346,8 @@ echo "$as_me: error: Modules are not supported on $target_os" >&2;}
  fi
  
  
@@ -36936,7 +11991,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  tmp_flags="$CFLAGS"
  CFLAGS="$CFLAGS -Werror"
  cat >conftest.$ac_ext <<_ACEOF
-@@ -14647,30 +15364,25 @@
+@@ -14647,30 +15364,25 @@ cat >conftest.$ac_ext <<_ACEOF
  
  _ACEOF
  rm -f conftest.$ac_objext
@@ -36980,7 +12035,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_USER__U64_LONG_LONG 1
-@@ -14682,20 +15394,20 @@
+@@ -14682,20 +15394,20 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -37007,7 +12062,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  else
  
  			if test x$ldiskfs_is_ext4 = xyes; then
-@@ -14704,7 +15416,8 @@
+@@ -14704,7 +15416,8 @@ else
  				enable_ext4=no
  			fi
  
@@ -37017,7 +12072,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  else
  	case $LINUXRELEASE in
  	# ext4 was in 2.6.22-2.6.26 but not stable enough to use
-@@ -14720,21 +15433,21 @@
+@@ -14720,21 +15433,21 @@ fi
  if test x$enable_ext4 = xyes; then
  	 ac_configure_args="$ac_configure_args --enable-ext4"
  fi
@@ -37049,7 +12104,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  case x$with_dmu in
  	xyes)
  		dmu_osd='yes'
-@@ -14759,8 +15472,8 @@
+@@ -14759,8 +15472,8 @@ case x$with_dmu in
  		dmu_osd='yes'
  		;;
  esac
@@ -37060,7 +12115,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$dmu_osd = xyes; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -14772,9 +15485,9 @@
+@@ -14772,9 +15485,9 @@ _ACEOF
  		DMU_SRC="$PWD/lustre/zfs-lustre"
  
  		as_lb_File=`echo "lb_cv_file_$DMU_SRC/src/.patched" | $as_tr_sh`
@@ -37073,7 +12128,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$DMU_SRC/src/.patched"; then
-@@ -14783,8 +15496,9 @@
+@@ -14783,8 +15496,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -37085,16 +12140,18 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -14795,8 +15509,6 @@
+@@ -14795,9 +15509,7 @@ echo "$as_me: error: A complete (patched) DMU tree was not found." >&2;}
  
  fi
  
 -
 -
- subdirs="$subdirs lustre/zfs-lustre"
+-subdirs="$subdirs lustre/zfs-lustre"
++		subdirs="$subdirs lustre/zfs-lustre"
  
  	else
-@@ -14808,9 +15520,9 @@
+ 		# Kernel DMU
+@@ -14808,9 +15520,9 @@ subdirs="$subdirs lustre/zfs-lustre"
  		ZFS_DIR="$PWD/$ZFS_SUBDIR"
  
  		as_lb_File=`echo "lb_cv_file_$SPL_DIR/module/spl/spl-generic.c" | $as_tr_sh`
@@ -37107,7 +12164,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$SPL_DIR/module/spl/spl-generic.c"; then
-@@ -14819,8 +15531,9 @@
+@@ -14819,8 +15531,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -37119,7 +12176,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -14833,9 +15546,9 @@
+@@ -14833,9 +15546,9 @@ fi
  
  
  		as_lb_File=`echo "lb_cv_file_$ZFS_DIR/module/zfs/dmu.c" | $as_tr_sh`
@@ -37132,7 +12189,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$ZFS_DIR/module/zfs/dmu.c"; then
-@@ -14844,8 +15557,9 @@
+@@ -14844,8 +15557,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -37144,21 +12201,24 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -14857,13 +15571,9 @@
+@@ -14857,14 +15571,10 @@ echo "$as_me: error: A complete kernel DMU tree was not found in $ZFS_DIR." >&2;
  fi
  
  
 -
 -
- subdirs="$subdirs spl"
+-subdirs="$subdirs spl"
++		subdirs="$subdirs spl"
  
  		ac_configure_args="$ac_configure_args --with-spl=$SPL_DIR"
 -
 -
- subdirs="$subdirs zfs"
+-subdirs="$subdirs zfs"
++		subdirs="$subdirs zfs"
  
  	fi
-@@ -14894,10 +15604,9 @@
+ fi
+@@ -14894,10 +15604,9 @@ fi
  
  
  
@@ -37171,7 +12231,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  else
  
  		case $lb_target_os in
-@@ -14909,18 +15618,19 @@
+@@ -14909,18 +15618,19 @@ else
  				;;
  		esac
  
@@ -37199,7 +12259,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$srcdir/libsysio/src/rmdir.c"; then
-@@ -14929,8 +15639,9 @@
+@@ -14929,8 +15639,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -37211,7 +12271,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -14945,16 +15656,16 @@
+@@ -14945,16 +15656,16 @@ fi
  		SYSIO="$PWD/libsysio"
  		;;
  	xno)
@@ -37235,7 +12295,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$with_sysio/lib/libsysio.a"; then
-@@ -14963,8 +15674,9 @@
+@@ -14963,8 +15674,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -37247,7 +12307,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -14981,15 +15693,13 @@
+@@ -14981,15 +15693,13 @@ fi
  esac
  
  # We have to configure even if we don't build here for make dist to work
@@ -37266,7 +12326,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$srcdir/snmp/lustre-snmp.c"; then
-@@ -14998,8 +15708,9 @@
+@@ -14998,8 +15708,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -37278,7 +12338,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    SNMP_DIST_SUBDIR="snmp"
  fi
-@@ -15008,10 +15719,9 @@
+@@ -15008,10 +15719,9 @@ fi
  
  
  
@@ -37291,15 +12351,15 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  else
  
  		if test x$linux25$enable_server = xyesyes ; then
-@@ -15020,23 +15730,24 @@
+@@ -15020,23 +15730,24 @@ else
  			with_ldiskfs=no
  		fi
  
 -fi;
 +fi
++
  
 -# Check whether --with-ldiskfs-inkernel or --without-ldiskfs-inkernel was given.
-+
 +# Check whether --with-ldiskfs-inkernel was given.
  if test "${with_ldiskfs_inkernel+set}" = set; then
 -  withval="$with_ldiskfs_inkernel"
@@ -37328,7 +12388,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$srcdir/ldiskfs/lustre-ldiskfs.spec.in"; then
-@@ -15045,8 +15756,9 @@
+@@ -15045,8 +15756,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -37340,7 +12400,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -15061,16 +15773,16 @@
+@@ -15061,16 +15773,16 @@ fi
  		LDISKFS_DIR="$PWD/ldiskfs"
  		;;
  	xno)
@@ -37364,7 +12424,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX/include/linux/ldiskfs_fs.h"; then
-@@ -15079,8 +15791,9 @@
+@@ -15079,8 +15791,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -37376,7 +12436,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -15093,12 +15806,12 @@
+@@ -15093,12 +15806,12 @@ fi
  
  		;;
  	*)
@@ -37394,7 +12454,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$with_ldiskfs/ldiskfs/linux/ldiskfs_fs.h"; then
-@@ -15107,8 +15820,9 @@
+@@ -15107,8 +15820,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -37406,7 +12466,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -15154,32 +15868,30 @@
+@@ -15154,32 +15868,30 @@ _ACEOF
  fi
  
  # We have to configure even if we don't build here for make dist to work
@@ -37450,7 +12510,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$srcdir/lustre-iokit/ior-survey/ior-survey"; then
-@@ -15188,8 +15900,9 @@
+@@ -15188,8 +15900,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -37462,7 +12522,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -15204,16 +15917,16 @@
+@@ -15204,16 +15917,16 @@ fi
  		LUSTREIOKIT="$PWD/lustre-iokit"
  		;;
  	xno)
@@ -37486,7 +12546,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$with_lustre_iokit/ior-survey/ior_survey"; then
-@@ -15222,8 +15935,9 @@
+@@ -15222,8 +15935,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -37498,7 +12558,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -15240,20 +15954,18 @@
+@@ -15240,20 +15954,18 @@ fi
  esac
  
  # We have to configure even if we don't build here for make dist to work
@@ -37523,7 +12583,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  if test x$withval = xyes ; then
  
-@@ -15268,8 +15980,8 @@
+@@ -15268,8 +15980,8 @@ _ACEOF
  	E2LABEL="label.ldiskfs"
  	DUMPE2FS="dump.ldiskfs"
  	E2FSCK="fsck.ldiskfs"
@@ -37534,7 +12594,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  else
  	E2FSPROGS="e2fsprogs"
  	MKE2FS="mke2fs"
-@@ -15278,8 +15990,8 @@
+@@ -15278,8 +15990,8 @@ else
  	E2LABEL="e2label"
  	DUMPE2FS="dumpe2fs"
  	E2FSCK="e2fsck"
@@ -37545,7 +12605,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  fi
  
  cat >>confdefs.h <<_ACEOF
-@@ -15319,13 +16031,13 @@
+@@ -15319,13 +16031,13 @@ _ACEOF
  
  
  
@@ -37563,7 +12623,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  if test x$withval = xyes ; then
  
-@@ -15340,8 +16052,8 @@
+@@ -15340,8 +16052,8 @@ _ACEOF
  	E2LABEL="label.ldiskfs"
  	DUMPE2FS="dump.ldiskfs"
  	E2FSCK="fsck.ldiskfs"
@@ -37574,7 +12634,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  else
  	E2FSPROGS="e2fsprogs"
  	MKE2FS="mke2fs"
-@@ -15350,8 +16062,8 @@
+@@ -15350,8 +16062,8 @@ else
  	E2LABEL="e2label"
  	DUMPE2FS="dumpe2fs"
  	E2FSCK="e2fsck"
@@ -37585,7 +12645,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  fi
  
  cat >>confdefs.h <<_ACEOF
-@@ -15391,13 +16103,13 @@
+@@ -15391,13 +16103,13 @@ _ACEOF
  
  
  
@@ -37603,7 +12663,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  if test x$withval = xyes ; then
  
-@@ -15412,8 +16124,8 @@
+@@ -15412,8 +16124,8 @@ _ACEOF
  	E2LABEL="label.ldiskfs"
  	DUMPE2FS="dump.ldiskfs"
  	E2FSCK="fsck.ldiskfs"
@@ -37614,7 +12674,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  else
  	E2FSPROGS="e2fsprogs"
  	MKE2FS="mke2fs"
-@@ -15422,8 +16134,8 @@
+@@ -15422,8 +16134,8 @@ else
  	E2LABEL="e2label"
  	DUMPE2FS="dumpe2fs"
  	E2FSCK="e2fsck"
@@ -37625,7 +12685,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  fi
  
  cat >>confdefs.h <<_ACEOF
-@@ -15462,46 +16174,46 @@
+@@ -15462,46 +16174,46 @@ _ACEOF
  
  
  
@@ -37696,7 +12756,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_liblustre_acl = xyes ; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -15513,10 +16225,9 @@
+@@ -15513,10 +16225,9 @@ fi
  #
  # --enable-mpitest
  #
@@ -37709,7 +12769,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	 enable_mpitests=yes
           case $enableval in
           yes)
-@@ -15536,11 +16247,12 @@
+@@ -15536,11 +16247,12 @@ else
  	enable_mpitests=yes
  
  
@@ -37725,7 +12785,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	oldcc=$CC
  	CC=$MPICC_WRAPPER
  	cat >conftest.$ac_ext <<_ACEOF
-@@ -15564,42 +16276,39 @@
+@@ -15564,42 +16276,39 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext conftest$ac_exeext
@@ -37786,7 +12846,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
        conftest$ac_exeext conftest.$ac_ext
  	CC=$oldcc
  fi
-@@ -15609,17 +16318,17 @@
+@@ -15609,17 +16318,17 @@ fi
  echo "$as_me: Enabling Lustre configure options for libsysio" >&6;}
  ac_configure_args="$ac_configure_args --with-lustre-hack --with-sockets"
  
@@ -37812,7 +12872,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_pinger != xno ; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -15628,17 +16337,17 @@
+@@ -15628,17 +16337,17 @@ _ACEOF
  
  fi
  
@@ -37838,7 +12898,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_liblustre_recovery != xno ; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -15658,18 +16367,19 @@
+@@ -15658,18 +16367,19 @@ fi
  for ac_header in netdb.h netinet/tcp.h asm/types.h endian.h sys/ioctl.h
  do
  as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
@@ -37866,7 +12926,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -15680,27 +16390,22 @@
+@@ -15680,41 +16390,37 @@ $ac_includes_default
  #include <$ac_header>
  _ACEOF
  rm -f conftest.$ac_objext
@@ -37905,9 +12965,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_compiler=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -15708,13 +16413,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_header_compiler=no
+-ac_header_compiler=no
++	ac_header_compiler=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 -echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
@@ -37925,7 +12986,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -15723,24 +16429,22 @@
+@@ -15723,24 +16429,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <$ac_header>
  _ACEOF
@@ -37961,7 +13022,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_preproc=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -15748,9 +16452,10 @@
+@@ -15748,9 +16452,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
  
    ac_header_preproc=no
  fi
@@ -37974,7 +13035,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # So?  What about this header?
  case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-@@ -15774,25 +16479,24 @@
+@@ -15774,25 +16479,24 @@ echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\
  echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
      { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
@@ -38008,7 +13069,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  if test `eval echo '${'$as_ac_Header'}'` = yes; then
-@@ -15810,9 +16514,9 @@
+@@ -15810,9 +16514,9 @@ done
  for ac_func in gethostbyname socket connect
  do
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
@@ -38021,7 +13082,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    cat >conftest.$ac_ext <<_ACEOF
-@@ -15838,56 +16542,46 @@
+@@ -15838,68 +16542,60 @@ cat >>conftest.$ac_ext <<_ACEOF
  
  #undef $ac_func
  
@@ -38095,9 +13156,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    eval "$as_ac_var=yes"
  else
    echo "$as_me: failed program was:" >&5
-@@ -15895,11 +16589,13 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- eval "$as_ac_var=no"
+-eval "$as_ac_var=no"
++	eval "$as_ac_var=no"
  fi
 -rm -f conftest.err conftest.$ac_objext \
 +
@@ -38112,7 +13174,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_ac_var'}'` = yes; then
    cat >>confdefs.h <<_ACEOF
  #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
-@@ -15914,18 +16610,19 @@
+@@ -15914,18 +16610,19 @@ done
  for ac_header in linux/version.h
  do
  as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
@@ -38140,7 +13202,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -15936,27 +16633,22 @@
+@@ -15936,41 +16633,37 @@ $ac_includes_default
  #include <$ac_header>
  _ACEOF
  rm -f conftest.$ac_objext
@@ -38179,9 +13241,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_compiler=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -15964,13 +16656,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_header_compiler=no
+-ac_header_compiler=no
++	ac_header_compiler=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 -echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
@@ -38199,7 +13262,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -15979,24 +16672,22 @@
+@@ -15979,24 +16672,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <$ac_header>
  _ACEOF
@@ -38235,7 +13298,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_preproc=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -16004,9 +16695,10 @@
+@@ -16004,9 +16695,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
  
    ac_header_preproc=no
  fi
@@ -38248,7 +13311,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # So?  What about this header?
  case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-@@ -16030,25 +16722,24 @@
+@@ -16030,25 +16722,24 @@ echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\
  echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
      { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
@@ -38282,7 +13345,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  if test `eval echo '${'$as_ac_Header'}'` = yes; then
-@@ -16061,8 +16752,8 @@
+@@ -16061,8 +16752,8 @@ fi
  done
  
  
@@ -38293,7 +13356,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_type_spinlock_t+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -16074,39 +16765,35 @@
+@@ -16074,50 +16765,47 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <linux/spinlock.h>
  
@@ -38347,9 +13410,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_cv_type_spinlock_t=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -16114,10 +16801,11 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_cv_type_spinlock_t=no
+-ac_cv_type_spinlock_t=no
++	ac_cv_type_spinlock_t=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -38362,7 +13426,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test $ac_cv_type_spinlock_t = yes; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -16132,9 +16820,9 @@
+@@ -16132,9 +16820,9 @@ fi
  for ac_func in strnlen
  do
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
@@ -38375,7 +13439,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    cat >conftest.$ac_ext <<_ACEOF
-@@ -16160,56 +16848,46 @@
+@@ -16160,68 +16848,60 @@ cat >>conftest.$ac_ext <<_ACEOF
  
  #undef $ac_func
  
@@ -38449,9 +13513,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    eval "$as_ac_var=yes"
  else
    echo "$as_me: failed program was:" >&5
-@@ -16217,11 +16895,13 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- eval "$as_ac_var=no"
+-eval "$as_ac_var=no"
++	eval "$as_ac_var=no"
  fi
 -rm -f conftest.err conftest.$ac_objext \
 +
@@ -38466,7 +13531,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_ac_var'}'` = yes; then
    cat >>confdefs.h <<_ACEOF
  #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
-@@ -16238,24 +16918,24 @@
+@@ -16238,24 +16918,24 @@ done
  #
  # Build with readline
  #
@@ -38501,7 +13566,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_lib_readline_readline+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -16268,43 +16948,39 @@
+@@ -16268,56 +16948,53 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  
@@ -38561,9 +13626,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_cv_lib_readline_readline=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -16312,12 +16988,13 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_cv_lib_readline_readline=no
+-ac_cv_lib_readline_readline=no
++	ac_cv_lib_readline_readline=no
  fi
 -rm -f conftest.err conftest.$ac_objext \
 +
@@ -38578,7 +13644,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test $ac_cv_lib_readline_readline = yes; then
  
  	LIBREADLINE="-lreadline -lncurses"
-@@ -16339,17 +17016,17 @@
+@@ -16339,17 +17016,17 @@ else
  fi
  
  
@@ -38604,7 +13670,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "$enable_efence" = "yes" ; then
  	LIBEFENCE="-lefence"
  
-@@ -16363,12 +17040,11 @@
+@@ -16363,12 +17040,11 @@ fi
  
  
  # -------- enable acceptor libwrap (TCP wrappers) support? -------
@@ -38621,7 +13687,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		yes) enable_libwrap=yes ;;
  		no) enable_libwrap=no ;;
  		*) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-libwrap" >&5
-@@ -16377,9 +17053,10 @@
+@@ -16377,9 +17053,10 @@ echo "$as_me: error: bad value ${enableval} for --enable-libwrap" >&2;}
  	esac
  else
    enable_libwrap=no
@@ -38635,7 +13701,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_libwrap = xyes ; then
  	LIBWRAP="-lwrap"
  
-@@ -16393,18 +17070,18 @@
+@@ -16393,18 +17070,18 @@ fi
  
  
  # -------- check for -lpthread support ----
@@ -38662,7 +13728,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_lib_pthread_pthread_create+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -16417,43 +17094,39 @@
+@@ -16417,56 +17094,53 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  
@@ -38722,9 +13788,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_cv_lib_pthread_pthread_create=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -16461,12 +17134,13 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_cv_lib_pthread_pthread_create=no
+-ac_cv_lib_pthread_pthread_create=no
++	ac_cv_lib_pthread_pthread_create=no
  fi
 -rm -f conftest.err conftest.$ac_objext \
 +
@@ -38739,7 +13806,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test $ac_cv_lib_pthread_pthread_create = yes; then
    ENABLE_LIBPTHREAD="yes"
  else
-@@ -16474,8 +17148,8 @@
+@@ -16474,8 +17148,8 @@ else
  fi
  
  	if test "$ENABLE_LIBPTHREAD" = "yes" ; then
@@ -38750,7 +13817,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		PTHREAD_LIBS="-lpthread"
  
  cat >>confdefs.h <<\_ACEOF
-@@ -16484,13 +17158,13 @@
+@@ -16484,13 +17158,13 @@ _ACEOF
  
  	else
  		PTHREAD_LIBS=""
@@ -38768,7 +13835,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	ENABLE_LIBPTHREAD="no"
  fi
  
-@@ -16498,17 +17172,17 @@
+@@ -16498,17 +17172,17 @@ fi
  # ----------------------------------------
  # some tests for catamount-like systems
  # ----------------------------------------
@@ -38794,7 +13861,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_sysio_init != xno ; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -16517,17 +17191,17 @@
+@@ -16517,17 +17191,17 @@ _ACEOF
  
  fi
  
@@ -38820,7 +13887,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_urandom != xno ; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -16538,8 +17212,8 @@
+@@ -16538,8 +17212,8 @@ fi
  
  # -------- check for -lcap support ----
  if test x$enable_liblustre = xyes ; then
@@ -38831,7 +13898,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_lib_cap_cap_get_proc+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -16552,43 +17226,39 @@
+@@ -16552,56 +17226,53 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  
@@ -38891,9 +13958,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_cv_lib_cap_cap_get_proc=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -16596,12 +17266,13 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_cv_lib_cap_cap_get_proc=no
+-ac_cv_lib_cap_cap_get_proc=no
++	ac_cv_lib_cap_cap_get_proc=no
  fi
 -rm -f conftest.err conftest.$ac_objext \
 +
@@ -38908,7 +13976,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test $ac_cv_lib_cap_cap_get_proc = yes; then
  
  			CAP_LIBS="-lcap"
-@@ -16621,25 +17292,25 @@
+@@ -16621,25 +17292,25 @@ fi
  
  fi
  
@@ -38944,7 +14012,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<_ACEOF
  #define LNET_MAX_PAYLOAD $LNET_MAX_PAYLOAD
-@@ -16648,13 +17319,12 @@
+@@ -16648,13 +17319,12 @@ _ACEOF
  
  
  if test -z "$ENABLEPORTALS"; then
@@ -38962,7 +14030,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		case $with_portals in
  			no)     ENABLEPORTALS=0
  				;;
-@@ -16667,85 +17337,86 @@
+@@ -16667,85 +17337,86 @@ else
  
  		ENABLEPORTALS=0
  
@@ -39082,7 +14150,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<_ACEOF
  #define OBD_MAX_IOCTL_BUFFER $OBD_BUFFER_SIZE
-@@ -16766,18 +17437,19 @@
+@@ -16766,18 +17437,19 @@ fi
  for ac_header in asm/page.h sys/user.h sys/vfs.h stdint.h blkid/blkid.h
  do
  as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
@@ -39110,7 +14178,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -16788,27 +17460,22 @@
+@@ -16788,41 +17460,37 @@ $ac_includes_default
  #include <$ac_header>
  _ACEOF
  rm -f conftest.$ac_objext
@@ -39149,9 +14217,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_compiler=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -16816,13 +17483,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_header_compiler=no
+-ac_header_compiler=no
++	ac_header_compiler=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 -echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
@@ -39169,7 +14238,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -16831,24 +17499,22 @@
+@@ -16831,24 +17499,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <$ac_header>
  _ACEOF
@@ -39205,7 +14274,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_preproc=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -16856,9 +17522,10 @@
+@@ -16856,9 +17522,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
  
    ac_header_preproc=no
  fi
@@ -39218,7 +14287,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # So?  What about this header?
  case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-@@ -16882,25 +17549,24 @@
+@@ -16882,25 +17549,24 @@ echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\
  echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
      { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
@@ -39252,7 +14321,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  if test `eval echo '${'$as_ac_Header'}'` = yes; then
-@@ -16919,18 +17585,19 @@
+@@ -16919,18 +17585,19 @@ done
  for ac_header in xtio.h file.h
  do
  as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
@@ -39280,7 +14349,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -16941,27 +17608,22 @@
+@@ -16941,41 +17608,37 @@ $ac_includes_default
  #include <$ac_header>
  _ACEOF
  rm -f conftest.$ac_objext
@@ -39319,9 +14388,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_compiler=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -16969,13 +17631,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_header_compiler=no
+-ac_header_compiler=no
++	ac_header_compiler=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 -echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
@@ -39339,7 +14409,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -16984,24 +17647,22 @@
+@@ -16984,24 +17647,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <$ac_header>
  _ACEOF
@@ -39375,7 +14445,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_preproc=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -17009,9 +17670,10 @@
+@@ -17009,9 +17670,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
  
    ac_header_preproc=no
  fi
@@ -39388,7 +14458,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # So?  What about this header?
  case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-@@ -17035,25 +17697,24 @@
+@@ -17035,25 +17697,24 @@ echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\
  echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
      { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
@@ -39422,7 +14492,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  if test `eval echo '${'$as_ac_Header'}'` = yes; then
-@@ -17074,18 +17735,19 @@
+@@ -17074,18 +17735,19 @@ done
  for ac_header in linux/types.h sys/types.h linux/unistd.h unistd.h
  do
  as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
@@ -39450,7 +14520,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -17096,27 +17758,22 @@
+@@ -17096,41 +17758,37 @@ $ac_includes_default
  #include <$ac_header>
  _ACEOF
  rm -f conftest.$ac_objext
@@ -39489,9 +14559,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_compiler=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -17124,13 +17781,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_header_compiler=no
+-ac_header_compiler=no
++	ac_header_compiler=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 -echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
@@ -39509,7 +14580,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -17139,24 +17797,22 @@
+@@ -17139,24 +17797,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <$ac_header>
  _ACEOF
@@ -39545,7 +14616,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_preproc=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -17164,9 +17820,10 @@
+@@ -17164,9 +17820,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
  
    ac_header_preproc=no
  fi
@@ -39558,7 +14629,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # So?  What about this header?
  case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-@@ -17190,25 +17847,24 @@
+@@ -17190,25 +17847,24 @@ echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\
  echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
      { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
@@ -39592,7 +14663,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  if test `eval echo '${'$as_ac_Header'}'` = yes; then
-@@ -17228,18 +17884,19 @@
+@@ -17228,18 +17884,19 @@ done
  for ac_header in netinet/in.h arpa/inet.h catamount/data.h
  do
  as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
@@ -39620,7 +14691,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -17250,27 +17907,22 @@
+@@ -17250,41 +17907,37 @@ $ac_includes_default
  #include <$ac_header>
  _ACEOF
  rm -f conftest.$ac_objext
@@ -39659,9 +14730,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_compiler=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -17278,13 +17930,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_header_compiler=no
+-ac_header_compiler=no
++	ac_header_compiler=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 -echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
@@ -39679,7 +14751,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -17293,24 +17946,22 @@
+@@ -17293,24 +17946,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <$ac_header>
  _ACEOF
@@ -39715,7 +14787,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_preproc=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -17318,9 +17969,10 @@
+@@ -17318,9 +17969,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
  
    ac_header_preproc=no
  fi
@@ -39728,7 +14800,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # So?  What about this header?
  case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-@@ -17344,25 +17996,24 @@
+@@ -17344,25 +17996,24 @@ echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\
  echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
      { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
@@ -39762,7 +14834,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  if test `eval echo '${'$as_ac_Header'}'` = yes; then
-@@ -17378,9 +18029,9 @@
+@@ -17378,9 +18029,9 @@ done
  for ac_func in inet_ntoa
  do
  as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
@@ -39775,7 +14847,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    cat >conftest.$ac_ext <<_ACEOF
-@@ -17406,56 +18057,46 @@
+@@ -17406,68 +18057,60 @@ cat >>conftest.$ac_ext <<_ACEOF
  
  #undef $ac_func
  
@@ -39849,9 +14921,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    eval "$as_ac_var=yes"
  else
    echo "$as_me: failed program was:" >&5
-@@ -17463,11 +18104,13 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- eval "$as_ac_var=no"
+-eval "$as_ac_var=no"
++	eval "$as_ac_var=no"
  fi
 -rm -f conftest.err conftest.$ac_objext \
 +
@@ -39866,7 +14939,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_ac_var'}'` = yes; then
    cat >>confdefs.h <<_ACEOF
  #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
-@@ -17478,8 +18121,8 @@
+@@ -17478,8 +18121,8 @@ done
  
  
  # libsysio/src/readlink.c
@@ -39877,7 +14950,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -17500,30 +18143,25 @@
+@@ -17500,30 +18143,25 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -39921,7 +14994,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_POSIX_1003_READLINK 1
-@@ -17535,11 +18173,12 @@
+@@ -17535,11 +18173,12 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -39937,7 +15010,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  # lvfs/prng.c - depends on linux/types.h from liblustre/dir.c
-@@ -17547,9 +18186,9 @@
+@@ -17547,9 +18186,9 @@ rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  for ac_header in linux/random.h
  do
  as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
@@ -39950,7 +15023,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    cat >conftest.$ac_ext <<_ACEOF
-@@ -17566,27 +18205,22 @@
+@@ -17566,38 +18205,35 @@ cat >>conftest.$ac_ext <<_ACEOF
  #include <$ac_header>
  _ACEOF
  rm -f conftest.$ac_objext
@@ -39989,9 +15062,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    eval "$as_ac_Header=yes"
  else
    echo "$as_me: failed program was:" >&5
-@@ -17594,10 +18228,12 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- eval "$as_ac_Header=no"
+-eval "$as_ac_Header=no"
++	eval "$as_ac_Header=no"
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -40005,7 +15079,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test `eval echo '${'$as_ac_Header'}'` = yes; then
    cat >>confdefs.h <<_ACEOF
  #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
-@@ -17613,18 +18249,19 @@
+@@ -17613,18 +18249,19 @@ done
  for ac_header in ext2fs/ext2fs.h
  do
  as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
@@ -40033,7 +15107,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -17635,27 +18272,22 @@
+@@ -17635,41 +18272,37 @@ $ac_includes_default
  #include <$ac_header>
  _ACEOF
  rm -f conftest.$ac_objext
@@ -40072,9 +15146,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_compiler=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -17663,13 +18295,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_header_compiler=no
+-ac_header_compiler=no
++	ac_header_compiler=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 -echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
@@ -40092,7 +15167,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -17678,24 +18311,22 @@
+@@ -17678,24 +18311,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <$ac_header>
  _ACEOF
@@ -40128,7 +15203,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_preproc=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -17703,9 +18334,10 @@
+@@ -17703,9 +18334,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
  
    ac_header_preproc=no
  fi
@@ -40141,7 +15216,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # So?  What about this header?
  case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-@@ -17729,25 +18361,24 @@
+@@ -17729,25 +18361,24 @@ echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\
  echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
      { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
@@ -40175,7 +15250,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  if test `eval echo '${'$as_ac_Header'}'` = yes; then
-@@ -17762,8 +18393,8 @@
+@@ -17762,8 +18393,8 @@ done
  
  # check for -lz support
  ZLIB=""
@@ -40186,7 +15261,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_lib_z_adler32+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -17776,43 +18407,39 @@
+@@ -17776,73 +18407,71 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  
@@ -40246,9 +15321,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_cv_lib_z_adler32=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -17820,29 +18447,31 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_cv_lib_z_adler32=no
+-ac_cv_lib_z_adler32=no
++	ac_cv_lib_z_adler32=no
  fi
 -rm -f conftest.err conftest.$ac_objext \
 +
@@ -40289,7 +15365,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -17853,27 +18482,22 @@
+@@ -17853,41 +18482,37 @@ $ac_includes_default
  #include <$ac_header>
  _ACEOF
  rm -f conftest.$ac_objext
@@ -40328,9 +15404,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_compiler=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -17881,13 +18505,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_header_compiler=no
+-ac_header_compiler=no
++	ac_header_compiler=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 -echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
@@ -40348,7 +15425,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -17896,24 +18521,22 @@
+@@ -17896,24 +18521,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <$ac_header>
  _ACEOF
@@ -40384,7 +15461,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_preproc=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -17921,9 +18544,10 @@
+@@ -17921,9 +18544,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
  
    ac_header_preproc=no
  fi
@@ -40397,7 +15474,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # So?  What about this header?
  case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-@@ -17947,25 +18571,24 @@
+@@ -17947,25 +18571,24 @@ echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\
  echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
      { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
  echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
@@ -40431,7 +15508,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  fi
  if test `eval echo '${'$as_ac_Header'}'` = yes; then
-@@ -17996,11 +18619,11 @@
+@@ -17996,11 +18619,11 @@ fi
  
  
  # Super safe df
@@ -40446,7 +15523,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "$enable_mindf" = "yes" ;  then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -18009,17 +18632,17 @@
+@@ -18009,17 +18632,17 @@ _ACEOF
  
  fi
  
@@ -40472,7 +15549,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test x$enable_fail_alloc != xno ; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -18031,23 +18654,23 @@
+@@ -18031,23 +18654,23 @@ fi
  
  
  if test "$SNMP_DIST_SUBDIR" ; then
@@ -40506,7 +15583,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_prog_NET_SNMP_CONFIG+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -18060,25 +18683,27 @@
+@@ -18060,25 +18683,27 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -40539,7 +15616,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  	if test "$NET_SNMP_CONFIG" ; then
  		NET_SNMP_CFLAGS=$($NET_SNMP_CONFIG --base-cflags)
  		NET_SNMP_LIBS=$($NET_SNMP_CONFIG --agent-libs)
-@@ -18090,17 +18715,17 @@
+@@ -18090,17 +18715,17 @@ fi
  		LIBS="$LIBS $NET_SNMP_LIBS"
  
  		if test "${ac_cv_header_net_snmp_net_snmp_config_h+set}" = set; then
@@ -40563,7 +15640,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -18111,27 +18736,22 @@
+@@ -18111,41 +18736,37 @@ $ac_includes_default
  #include <net-snmp/net-snmp-config.h>
  _ACEOF
  rm -f conftest.$ac_objext
@@ -40602,9 +15679,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_compiler=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -18139,13 +18759,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_header_compiler=no
+-ac_header_compiler=no
++	ac_header_compiler=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 -echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
@@ -40622,7 +15700,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -18154,24 +18775,22 @@
+@@ -18154,24 +18775,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <net-snmp/net-snmp-config.h>
  _ACEOF
@@ -40658,7 +15736,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_header_preproc=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -18179,9 +18798,10 @@
+@@ -18179,9 +18798,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
  
    ac_header_preproc=no
  fi
@@ -40671,7 +15749,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # So?  What about this header?
  case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
-@@ -18205,31 +18825,29 @@
+@@ -18205,31 +18825,29 @@ echo "$as_me: WARNING: net-snmp/net-snmp-config.h:     section \"Present But Can
  echo "$as_me: WARNING: net-snmp/net-snmp-config.h: proceeding with the preprocessor's result" >&2;}
      { echo "$as_me:$LINENO: WARNING: net-snmp/net-snmp-config.h: in the future, the compiler will take precedence" >&5
  echo "$as_me: WARNING: net-snmp/net-snmp-config.h: in the future, the compiler will take precedence" >&2;}
@@ -40711,7 +15789,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_func_register_mib+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -18256,56 +18874,46 @@
+@@ -18256,68 +18874,59 @@ cat >>conftest.$ac_ext <<_ACEOF
  
  #undef register_mib
  
@@ -40785,9 +15863,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_cv_func_register_mib=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -18313,11 +18921,12 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_cv_func_register_mib=no
+-ac_cv_func_register_mib=no
++	ac_cv_func_register_mib=no
  fi
 -rm -f conftest.err conftest.$ac_objext \
 +
@@ -40801,7 +15880,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test $ac_cv_func_register_mib = yes; then
    SNMP_SUBDIR="snmp"
  else
-@@ -18326,8 +18935,8 @@
+@@ -18326,8 +18935,8 @@ else
  				NET_SNMP_LISB="$NET_SNMP_LIBS -lwrap"
  				# fail autoconf's cache
  				unset ac_cv_func_register_mib
@@ -40812,7 +15891,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test "${ac_cv_func_register_mib+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -18354,56 +18963,46 @@
+@@ -18354,68 +18963,59 @@ cat >>conftest.$ac_ext <<_ACEOF
  
  #undef register_mib
  
@@ -40886,9 +15965,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    ac_cv_func_register_mib=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -18411,11 +19010,12 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_cv_func_register_mib=no
+-ac_cv_func_register_mib=no
++	ac_cv_func_register_mib=no
  fi
 -rm -f conftest.err conftest.$ac_objext \
 +
@@ -40902,7 +15982,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  if test $ac_cv_func_register_mib = yes; then
    SNMP_SUBDIR="snmp"
  fi
-@@ -18431,14 +19031,14 @@
+@@ -18431,14 +19031,14 @@ fi
  		LIBS="$LIBS_save"
  		CPPFLAGS="$CPPFLAGS_save"
  	fi
@@ -40923,7 +16003,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  		if test x$enable_snmp = xyes ; then
  			{ { echo "$as_me:$LINENO: error: SNMP support was requested, but unavailable" >&5
  echo "$as_me: error: SNMP support was requested, but unavailable" >&2;}
-@@ -18571,8 +19171,7 @@
+@@ -18571,8 +19171,7 @@ else
  fi
  
  
@@ -40933,7 +16013,53 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  
  
-@@ -18858,39 +19457,58 @@
+@@ -18798,7 +19397,7 @@ fi
+ 
+ 
+ 
+-          ac_config_headers="$ac_config_headers config.h"
++ac_config_headers="$ac_config_headers config.h"
+ 
+ CPPFLAGS="-include $PWD/config.h $CPPFLAGS"
+ EXTRA_KCFLAGS="-include $PWD/config.h $EXTRA_KCFLAGS"
+@@ -18807,30 +19406,30 @@ EXTRA_KCFLAGS="-include $PWD/config.h $EXTRA_KCFLAGS"
+ 
+ 
+ 
+-                                        ac_config_files="$ac_config_files Makefile autoMakefile Rules:build/Rules.in lustre.spec"
++ac_config_files="$ac_config_files Makefile autoMakefile Rules:build/Rules.in lustre.spec"
+ 
+ 
+-                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ac_config_files="$ac_config_files lnet/Kernelenv lnet/Makefile lnet/autoMakefile lnet/autoconf/Makefile lnet/doc/Makefile lnet/include/Makefile lnet/include/libcfs/Makefile lnet/include/libcfs/linux/Makefile lnet/include/lnet/Makefile lnet/include/lnet/linux/Makefile lnet/klnds/Makefile lnet/klnds/autoMakefile lnet/klnds/gmlnd/Makefile lnet/klnds/mxlnd/autoMakefile lnet/klnds/mxlnd/Makefile lnet/klnds/gmlnd/autoMakefile lnet/klnds/openiblnd/Makefile lnet/klnds/openiblnd/autoMakefile lnet/klnds/o2iblnd/Makefile lnet/klnds/o2iblnd/autoMakefile lnet/klnds/ciblnd/Makefile lnet/klnds/ciblnd/autoMakefile lnet/klnds/iiblnd/Makefile lnet/klnds/iiblnd/autoMakefile lnet/klnds/viblnd/Makefile lnet/klnds/viblnd/autoMakefile lnet/klnds/qswlnd/Makefile lnet/klnds/qswlnd/autoMakefile lnet/klnds/ralnd/Makefile lnet/klnds/ralnd/autoMakefile lnet/klnds/socklnd/Makefile lnet/klnds/socklnd/autoMakefile lnet/klnds/ptllnd/Makefile lnet/klnds/ptllnd/autoMakefile lnet/libcfs/Makefile lnet/libcfs/autoMakefile lnet/libcfs/linux/Makefile lnet/lnet/Makefile lnet/lnet/autoMakefile lnet/selftest/Makefile lnet/selftest/autoMakefile lnet/ulnds/Makefile lnet/ulnds/autoMakefile lnet/ulnds/socklnd/Makefile lnet/ulnds/ptllnd/Makefile lnet/utils/Makefile"
++ac_config_files="$ac_config_files lnet/Kernelenv lnet/Makefile lnet/autoMakefile lnet/autoconf/Makefile lnet/doc/Makefile lnet/include/Makefile lnet/include/libcfs/Makefile lnet/include/libcfs/linux/Makefile lnet/include/lnet/Makefile lnet/include/lnet/linux/Makefile lnet/klnds/Makefile lnet/klnds/autoMakefile lnet/klnds/gmlnd/Makefile lnet/klnds/mxlnd/autoMakefile lnet/klnds/mxlnd/Makefile lnet/klnds/gmlnd/autoMakefile lnet/klnds/openiblnd/Makefile lnet/klnds/openiblnd/autoMakefile lnet/klnds/o2iblnd/Makefile lnet/klnds/o2iblnd/autoMakefile lnet/klnds/ciblnd/Makefile lnet/klnds/ciblnd/autoMakefile lnet/klnds/iiblnd/Makefile lnet/klnds/iiblnd/autoMakefile lnet/klnds/viblnd/Makefile lnet/klnds/viblnd/autoMakefile lnet/klnds/qswlnd/Makefile lnet/klnds/qswlnd/autoMakefile lnet/klnds/ralnd/Makefile lnet/klnds/ralnd/autoMakefile lnet/klnds/socklnd/Makefile lnet/klnds/socklnd/autoMakefile lnet/klnds/ptllnd/Makefile lnet/klnds/ptllnd/autoMakefile lnet/libcfs/Makefile lnet/libcfs/autoMakefile lnet/libcfs/linux/Makefile lnet/lnet/Makefile lnet/lnet/autoMakefile lnet/selftest/Makefile lnet/selftest/autoMakefile lnet/ulnds/Makefile lnet/ulnds/autoMakefile lnet/ulnds/socklnd/Makefile lnet/ulnds/ptllnd/Makefile lnet/utils/Makefile"
+ 
+ case $lb_target_os in
+ 	darwin)
+-		                              ac_config_files="$ac_config_files lnet/include/libcfs/darwin/Makefile lnet/include/lnet/darwin/Makefile lnet/libcfs/darwin/Makefile"
++		ac_config_files="$ac_config_files lnet/include/libcfs/darwin/Makefile lnet/include/lnet/darwin/Makefile lnet/libcfs/darwin/Makefile"
+ 
+ 		;;
+ esac
+ 
+-                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ac_config_files="$ac_config_files lustre/Makefile lustre/autoMakefile lustre/autoconf/Makefile lustre/contrib/Makefile lustre/doc/Makefile lustre/include/Makefile lustre/include/lustre_ver.h lustre/include/linux/Makefile lustre/include/lustre/Makefile lustre/kernel_patches/targets/2.6-suse.target lustre/kernel_patches/targets/2.6-vanilla.target lustre/kernel_patches/targets/2.6-rhel4.target lustre/kernel_patches/targets/2.6-rhel5.target lustre/kernel_patches/targets/2.6-fc5.target lustre/kernel_patches/targets/2.6-patchless.target lustre/kernel_patches/targets/2.6-sles10.target lustre/kernel_patches/targets/2.6-sles11.target lustre/kernel_patches/targets/hp_pnnl-2.4.target lustre/kernel_patches/targets/rh-2.4.target lustre/kernel_patches/targets/rhel-2.4.target lustre/kernel_patches/targets/suse-2.4.21-2.target lustre/kernel_patches/targets/sles-2.4.target lustre/kernel_patches/targets/2.6-oel5.target lustre/ldlm/Makefile lustre/liblustre/Makefile lustre/liblustre/tests/Makefile lustre/liblustre/tests/mpi/Makefile lustre/llite/Makefile lustre/llite/autoMakefile lustre/lov/Makefile lustre/lov/autoMakefile lustre/lvfs/Makefile lustre/lvfs/autoMakefile lustre/mdc/Makefile lustre/mdc/autoMakefile lustre/mds/Makefile lustre/mds/autoMakefile lustre/obdclass/Makefile lustre/obdclass/autoMakefile lustre/obdclass/linux/Makefile lustre/obdecho/Makefile lustre/obdecho/autoMakefile lustre/obdfilter/Makefile lustre/obdfilter/autoMakefile lustre/osc/Makefile lustre/osc/autoMakefile lustre/ost/Makefile lustre/ost/autoMakefile lustre/mgc/Makefile lustre/mgc/autoMakefile lustre/mgs/Makefile lustre/mgs/autoMakefile lustre/ptlrpc/Makefile lustre/ptlrpc/autoMakefile lustre/quota/Makefile lustre/quota/autoMakefile lustre/scripts/Makefile lustre/tests/Makefile lustre/tests/mpi/Makefile lustre/utils/Makefile"
++ac_config_files="$ac_config_files lustre/Makefile lustre/autoMakefile lustre/autoconf/Makefile lustre/contrib/Makefile lustre/doc/Makefile lustre/include/Makefile lustre/include/lustre_ver.h lustre/include/linux/Makefile lustre/include/lustre/Makefile lustre/kernel_patches/targets/2.6-suse.target lustre/kernel_patches/targets/2.6-vanilla.target lustre/kernel_patches/targets/2.6-rhel4.target lustre/kernel_patches/targets/2.6-rhel5.target lustre/kernel_patches/targets/2.6-fc5.target lustre/kernel_patches/targets/2.6-patchless.target lustre/kernel_patches/targets/2.6-sles10.target lustre/kernel_patches/targets/2.6-sles11.target lustre/kernel_patches/targets/hp_pnnl-2.4.target lustre/kernel_patches/targets/rh-2.4.target lustre/kernel_patches/targets/rhel-2.4.target lustre/kernel_patches/targets/suse-2.4.21-2.target lustre/kernel_patches/targets/sles-2.4.target lustre/kernel_patches/targets/2.6-oel5.target lustre/ldlm/Makefile lustre/liblustre/Makefile lustre/liblustre/tests/Makefile lustre/liblustre/tests/mpi/Makefile lustre/llite/Makefile lustre/llite/autoMakefile lustre/lov/Makefile lustre/lov/autoMakefile lustre/lvfs/Makefile lustre/lvfs/autoMakefile lustre/mdc/Makefile lustre/mdc/autoMakefile lustre/mds/Makefile lustre/mds/autoMakefile lustre/obdclass/Makefile lustre/obdclass/autoMakefile lustre/obdclass/linux/Makefile lustre/obdecho/Makefile lustre/obdecho/autoMakefile lustre/obdfilter/Makefile lustre/obdfilter/autoMakefile lustre/osc/Makefile lustre/osc/autoMakefile lustre/ost/Makefile lustre/ost/autoMakefile lustre/mgc/Makefile lustre/mgc/autoMakefile lustre/mgs/Makefile lustre/mgs/autoMakefile lustre/ptlrpc/Makefile lustre/ptlrpc/autoMakefile lustre/quota/Makefile lustre/quota/autoMakefile lustre/scripts/Makefile lustre/tests/Makefile lustre/tests/mpi/Makefile lustre/utils/Makefile"
+ 
+ case $lb_target_os in
+         darwin)
+-                          ac_config_files="$ac_config_files lustre/obdclass/darwin/Makefile"
++                ac_config_files="$ac_config_files lustre/obdclass/darwin/Makefile"
+ 
+                 ;;
+ esac
+ 
+ 
+ if test "$SNMP_DIST_SUBDIR" ; then
+-	                    ac_config_files="$ac_config_files snmp/Makefile snmp/autoconf/Makefile"
++	ac_config_files="$ac_config_files snmp/Makefile snmp/autoconf/Makefile"
+ 
+ 
+ fi
+@@ -18858,39 +19457,58 @@ _ACEOF
  
  # The following way of writing the cache mishandles newlines in values,
  # but we know of no workaround that is simple, portable, and efficient.
@@ -40984,15 +16110,17 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    sed '
 +     /^ac_cv_env_/b end
       t clear
-      : clear
+-     : clear
++     :clear
       s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
       t end
 -     /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
-+     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
-      : end' >>confcache
+-     : end' >>confcache
 -if diff $cache_file confcache >/dev/null 2>&1; then :; else
 -  if test -w $cache_file; then
 -    test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
++     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
++     :end' >>confcache
 +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
 +  if test -w "$cache_file"; then
 +    test "x$cache_file" != "x/dev/null" &&
@@ -41006,7 +16134,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    fi
  fi
  rm -f confcache
-@@ -18899,32 +19517,18 @@
+@@ -18899,32 +19517,18 @@ test "x$prefix" = xNONE && prefix=$ac_default_prefix
  # Let make expand exec_prefix.
  test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  
@@ -41045,7 +16173,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  done
  LIBOBJS=$ac_libobjs
  
-@@ -19235,73 +19839,26 @@
+@@ -19235,17 +19839,45 @@ cat >>$CONFIG_STATUS <<\_ACEOF
  ## M4sh Initialization.  ##
  ## --------------------- ##
  
@@ -41060,91 +16188,45 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    alias -g '${1+"$@"}'='"$@"'
 -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
 -  set -o posix
--fi
--DUALCASE=1; export DUALCASE # for MKS sh
--
--# Support unset when possible.
--if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
--  as_unset=unset
--else
--  as_unset=false
--fi
--
--
--# Work around bugs in pre-3.0 UWIN ksh.
--$as_unset ENV MAIL MAILPATH
--PS1='$ '
--PS2='> '
--PS4='+ '
--
--# NLS nuisances.
--for as_var in \
--  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
--  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
--  LC_TELEPHONE LC_TIME
--do
--  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
--    eval $as_var=C; export $as_var
--  else
--    $as_unset $as_var
--  fi
--done
--
--# Required to use basename.
--if expr a : '\(a\)' >/dev/null 2>&1; then
--  as_expr=expr
 +  setopt NO_GLOB_SUBST
- else
--  as_expr=false
--fi
++else
 +  case `(set -o) 2>/dev/null` in
 +  *posix*) set -o posix ;;
 +esac
- 
--if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
--  as_basename=basename
--else
--  as_basename=false
++
++fi
++
++
++
++
++# PATH needs CR
++# Avoid depending upon Character Ranges.
++as_cr_letters='abcdefghijklmnopqrstuvwxyz'
++as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
++as_cr_Letters=$as_cr_letters$as_cr_LETTERS
++as_cr_digits='0123456789'
++as_cr_alnum=$as_cr_Letters$as_cr_digits
++
++# The user is always right.
++if test "${PATH_SEPARATOR+set}" != set; then
++  echo "#! /bin/sh" >conf$$.sh
++  echo  "exit 0"   >>conf$$.sh
++  chmod +x conf$$.sh
++  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
++    PATH_SEPARATOR=';'
++  else
++    PATH_SEPARATOR=:
++  fi
++  rm -f conf$$.sh
  fi
+-DUALCASE=1; export DUALCASE # for MKS sh
  
- 
--# Name of the executable.
--as_me=`$as_basename "$0" ||
--$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
--	 X"$0" : 'X\(//\)$' \| \
--	 X"$0" : 'X\(/\)$' \| \
--	 .     : '\(.\)' 2>/dev/null ||
--echo X/"$0" |
--    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
--  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
--  	  /^X\/\(\/\).*/{ s//\1/; q; }
--  	  s/.*/./; q'`
- 
- 
--# PATH needs CR, and LINENO needs CR and PATH.
-+# PATH needs CR
- # Avoid depending upon Character Ranges.
- as_cr_letters='abcdefghijklmnopqrstuvwxyz'
- as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-@@ -19322,14 +19879,24 @@
-   rm -f conf$$.sh
+ # Support unset when possible.
+ if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
+@@ -19255,8 +19887,43 @@ else
  fi
  
-+# Support unset when possible.
-+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
-+  as_unset=unset
-+else
-+  as_unset=false
-+fi
  
--  as_lineno_1=$LINENO
--  as_lineno_2=$LINENO
--  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
--  test "x$as_lineno_1" != "x$as_lineno_2" &&
--  test "x$as_lineno_3"  = "x$as_lineno_2"  || {
--  # Find who we are.  Look in the path if we contain no path at all
--  # relative or not.
-+
 +# IFS
 +# We need space, tab and new line, in precisely that order.  Quoting is
 +# there to prevent editors from complaining about space-tab.
@@ -41155,80 +16237,76 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +IFS=" ""	$as_nl"
 +
 +# Find who we are.  Look in the path if we contain no directory separator.
-   case $0 in
-     *[\\/]* ) as_myself=$0 ;;
-     *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-@@ -19339,6 +19906,7 @@
-   test -z "$as_dir" && as_dir=.
-   test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
- done
++case $0 in
++  *[\\/]* ) as_myself=$0 ;;
++  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
++for as_dir in $PATH
++do
++  IFS=$as_save_IFS
++  test -z "$as_dir" && as_dir=.
++  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
++done
 +IFS=$as_save_IFS
- 
-        ;;
-   esac
-@@ -19348,100 +19916,161 @@
-     as_myself=$0
-   fi
-   if test ! -f "$as_myself"; then
--    { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
--echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
--   { (exit 1); exit 1; }; }
++
++     ;;
++esac
++# We did not find ourselves, most probably we were run as `sh COMMAND'
++# in which case we are not to be found in the path.
++if test "x$as_myself" = x; then
++  as_myself=$0
++fi
++if test ! -f "$as_myself"; then
 +  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 +  { (exit 1); exit 1; }
-   fi
--  case $CONFIG_SHELL in
--  '')
--    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
--for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
++fi
 +
-+# Work around bugs in pre-3.0 UWIN ksh.
+ # Work around bugs in pre-3.0 UWIN ksh.
+-$as_unset ENV MAIL MAILPATH
 +for as_var in ENV MAIL MAILPATH
 +do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 +done
-+PS1='$ '
-+PS2='> '
-+PS4='+ '
-+
-+# NLS nuisances.
-+for as_var in \
-+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
-+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
-+  LC_TELEPHONE LC_TIME
- do
--  IFS=$as_save_IFS
--  test -z "$as_dir" && as_dir=.
--  for as_base in sh bash ksh sh5; do
--	 case $as_dir in
--	 /*)
--	   if ("$as_dir/$as_base" -c '
-+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
-+    eval $as_var=C; export $as_var
-+  else
+ PS1='$ '
+ PS2='> '
+ PS4='+ '
+@@ -19270,18 +19937,19 @@ do
+   if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
+     eval $as_var=C; export $as_var
+   else
+-    $as_unset $as_var
 +    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+  fi
-+done
-+
-+# Required to use basename.
+   fi
+ done
+ 
+ # Required to use basename.
+-if expr a : '\(a\)' >/dev/null 2>&1; then
 +if expr a : '\(a\)' >/dev/null 2>&1 &&
 +   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
+   as_expr=expr
+ else
+   as_expr=false
+ fi
+ 
+-if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
 +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
-+  as_basename=basename
-+else
-+  as_basename=false
-+fi
-+
-+
-+# Name of the executable.
+   as_basename=basename
+ else
+   as_basename=false
+@@ -19289,159 +19957,120 @@ fi
+ 
+ 
+ # Name of the executable.
+-as_me=`$as_basename "$0" ||
 +as_me=`$as_basename -- "$0" ||
-+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
-+	 X"$0" : 'X\(//\)$' \| \
+ $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+ 	 X"$0" : 'X\(//\)$' \| \
+-	 X"$0" : 'X\(/\)$' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
 +	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X/"$0" |
+ echo X/"$0" |
+-    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
+-  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\/\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^.*\/\([^/][^/]*\)\/*$/{
 +	    s//\1/
 +	    q
@@ -41242,16 +16320,76 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +	    q
 +	  }
 +	  s/.*/./; q'`
-+
+ 
 +# CDPATH.
 +$as_unset CDPATH
-+
-+
-+
+ 
+-# PATH needs CR, and LINENO needs CR and PATH.
+-# Avoid depending upon Character Ranges.
+-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+-as_cr_digits='0123456789'
+-as_cr_alnum=$as_cr_Letters$as_cr_digits
+-
+-# The user is always right.
+-if test "${PATH_SEPARATOR+set}" != set; then
+-  echo "#! /bin/sh" >conf$$.sh
+-  echo  "exit 0"   >>conf$$.sh
+-  chmod +x conf$$.sh
+-  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
+-    PATH_SEPARATOR=';'
+-  else
+-    PATH_SEPARATOR=:
+-  fi
+-  rm -f conf$$.sh
+-fi
+ 
+ 
    as_lineno_1=$LINENO
    as_lineno_2=$LINENO
 -  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
    test "x$as_lineno_1" != "x$as_lineno_2" &&
+-  test "x$as_lineno_3"  = "x$as_lineno_2"  || {
+-  # Find who we are.  Look in the path if we contain no path at all
+-  # relative or not.
+-  case $0 in
+-    *[\\/]* ) as_myself=$0 ;;
+-    *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+-done
+-
+-       ;;
+-  esac
+-  # We did not find ourselves, most probably we were run as `sh COMMAND'
+-  # in which case we are not to be found in the path.
+-  if test "x$as_myself" = x; then
+-    as_myself=$0
+-  fi
+-  if test ! -f "$as_myself"; then
+-    { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
+-echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
+-   { (exit 1); exit 1; }; }
+-  fi
+-  case $CONFIG_SHELL in
+-  '')
+-    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for as_base in sh bash ksh sh5; do
+-	 case $as_dir in
+-	 /*)
+-	   if ("$as_dir/$as_base" -c '
+-  as_lineno_1=$LINENO
+-  as_lineno_2=$LINENO
+-  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
+-  test "x$as_lineno_1" != "x$as_lineno_2" &&
 -  test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
 -	     $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
 -	     $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
@@ -41293,8 +16431,9 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +      :lineno
        N
 -      s,$,-,
-       : loop
+-      : loop
 -      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
++      :loop
 +      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
        t loop
 -      s,-$,,
@@ -41362,16 +16501,16 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
 -  if test -f conf$$.exe; then
 -    # Don't use ln at all; we don't have any links
--    as_ln_s='cp -p'
--  else
-     as_ln_s='ln -s'
--  fi
++  as_ln_s='ln -s'
 +  # ... but there are two gotchas:
 +  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 +  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 +  # In both cases, we have to default to `cp -p'.
 +  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-+    as_ln_s='cp -p'
+     as_ln_s='cp -p'
+-  else
+-    as_ln_s='ln -s'
+-  fi
  elif ln conf$$.file conf$$ 2>/dev/null; then
    as_ln_s=ln
  else
@@ -41383,7 +16522,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  if mkdir -p . 2>/dev/null; then
    as_mkdir_p=:
-@@ -19450,7 +20079,28 @@
+@@ -19450,7 +20079,28 @@ else
    as_mkdir_p=false
  fi
  
@@ -41413,7 +16552,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  # Sed expression to map a string onto a valid CPP name.
  as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-@@ -19459,31 +20109,14 @@
+@@ -19459,31 +20109,14 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  
  
@@ -41449,7 +16588,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
    CONFIG_FILES    = $CONFIG_FILES
    CONFIG_HEADERS  = $CONFIG_HEADERS
-@@ -19491,30 +20124,20 @@
+@@ -19491,30 +20124,20 @@ generated by GNU Autoconf 2.59.  Invocation command line was
    CONFIG_COMMANDS = $CONFIG_COMMANDS
    $ $0 $@
  
@@ -41470,14 +16609,14 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -if test -n "$ac_config_headers"; then
 -  echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
 -fi
--
--if test -n "$ac_config_links"; then
--  echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
--fi
 +config_files="$ac_config_files"
 +config_headers="$ac_config_headers"
 +config_commands="$ac_config_commands"
  
+-if test -n "$ac_config_links"; then
+-  echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
+-fi
+-
 -if test -n "$ac_config_commands"; then
 -  echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
 -fi
@@ -41488,7 +16627,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  ac_cs_usage="\
  \`$as_me' instantiates files from templates according to the
  current configuration.
-@@ -19522,7 +20145,7 @@
+@@ -19522,7 +20145,7 @@ current configuration.
  Usage: $0 [OPTIONS] [FILE]...
  
    -h, --help       print this help, then exit
@@ -41497,7 +16636,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    -q, --quiet      do not print progress messages
    -d, --debug      don't remove temporary files
        --recheck    update $as_me by reconfiguring in the same conditions
-@@ -19541,19 +20164,21 @@
+@@ -19541,19 +20164,21 @@ Configuration commands:
  $config_commands
  
  Report bugs to <bug-autoconf at gnu.org>."
@@ -41525,7 +16664,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  _ACEOF
  
  cat >>$CONFIG_STATUS <<\_ACEOF
-@@ -19564,39 +20189,24 @@
+@@ -19564,39 +20189,24 @@ while test $# != 0
  do
    case $1 in
    --*=*)
@@ -41571,7 +16710,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
      debug=: ;;
    --file | --fil | --fi | --f )
      $ac_shift
-@@ -19606,18 +20216,24 @@
+@@ -19606,18 +20216,24 @@ Try \`$0 --help' for more information." >&2;}
      $ac_shift
      CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
      ac_need_defaults=false;;
@@ -41601,7 +16740,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
    esac
    shift
-@@ -19633,28 +20249,40 @@
+@@ -19633,152 +20249,164 @@ fi
  _ACEOF
  cat >>$CONFIG_STATUS <<_ACEOF
  if \$ac_cs_recheck; then
@@ -41644,18 +16783,243 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  do
 -  case "$ac_config_target" in
 -  # Handling of arguments.
+-  "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+-  "autoMakefile" ) CONFIG_FILES="$CONFIG_FILES autoMakefile" ;;
+-  "Rules" ) CONFIG_FILES="$CONFIG_FILES Rules:build/Rules.in" ;;
+-  "lustre.spec" ) CONFIG_FILES="$CONFIG_FILES lustre.spec" ;;
+-  "lnet/Kernelenv" ) CONFIG_FILES="$CONFIG_FILES lnet/Kernelenv" ;;
+-  "lnet/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/Makefile" ;;
+-  "lnet/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/autoMakefile" ;;
+-  "lnet/autoconf/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/autoconf/Makefile" ;;
+-  "lnet/doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/doc/Makefile" ;;
+-  "lnet/include/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/include/Makefile" ;;
+-  "lnet/include/libcfs/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/include/libcfs/Makefile" ;;
+-  "lnet/include/libcfs/linux/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/include/libcfs/linux/Makefile" ;;
+-  "lnet/include/lnet/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/include/lnet/Makefile" ;;
+-  "lnet/include/lnet/linux/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/include/lnet/linux/Makefile" ;;
+-  "lnet/klnds/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/Makefile" ;;
+-  "lnet/klnds/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/autoMakefile" ;;
+-  "lnet/klnds/gmlnd/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/gmlnd/Makefile" ;;
+-  "lnet/klnds/mxlnd/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/mxlnd/autoMakefile" ;;
+-  "lnet/klnds/mxlnd/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/mxlnd/Makefile" ;;
+-  "lnet/klnds/gmlnd/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/gmlnd/autoMakefile" ;;
+-  "lnet/klnds/openiblnd/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/openiblnd/Makefile" ;;
+-  "lnet/klnds/openiblnd/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/openiblnd/autoMakefile" ;;
+-  "lnet/klnds/o2iblnd/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/o2iblnd/Makefile" ;;
+-  "lnet/klnds/o2iblnd/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/o2iblnd/autoMakefile" ;;
+-  "lnet/klnds/ciblnd/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/ciblnd/Makefile" ;;
+-  "lnet/klnds/ciblnd/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/ciblnd/autoMakefile" ;;
+-  "lnet/klnds/iiblnd/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/iiblnd/Makefile" ;;
+-  "lnet/klnds/iiblnd/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/iiblnd/autoMakefile" ;;
+-  "lnet/klnds/viblnd/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/viblnd/Makefile" ;;
+-  "lnet/klnds/viblnd/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/viblnd/autoMakefile" ;;
+-  "lnet/klnds/qswlnd/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/qswlnd/Makefile" ;;
+-  "lnet/klnds/qswlnd/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/qswlnd/autoMakefile" ;;
+-  "lnet/klnds/ralnd/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/ralnd/Makefile" ;;
+-  "lnet/klnds/ralnd/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/ralnd/autoMakefile" ;;
+-  "lnet/klnds/socklnd/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/socklnd/Makefile" ;;
+-  "lnet/klnds/socklnd/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/socklnd/autoMakefile" ;;
+-  "lnet/klnds/ptllnd/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/ptllnd/Makefile" ;;
+-  "lnet/klnds/ptllnd/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/klnds/ptllnd/autoMakefile" ;;
+-  "lnet/libcfs/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/libcfs/Makefile" ;;
+-  "lnet/libcfs/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/libcfs/autoMakefile" ;;
+-  "lnet/libcfs/linux/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/libcfs/linux/Makefile" ;;
+-  "lnet/lnet/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/lnet/Makefile" ;;
+-  "lnet/lnet/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/lnet/autoMakefile" ;;
+-  "lnet/selftest/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/selftest/Makefile" ;;
+-  "lnet/selftest/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/selftest/autoMakefile" ;;
+-  "lnet/ulnds/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/ulnds/Makefile" ;;
+-  "lnet/ulnds/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lnet/ulnds/autoMakefile" ;;
+-  "lnet/ulnds/socklnd/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/ulnds/socklnd/Makefile" ;;
+-  "lnet/ulnds/ptllnd/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/ulnds/ptllnd/Makefile" ;;
+-  "lnet/utils/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/utils/Makefile" ;;
+-  "lnet/include/libcfs/darwin/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/include/libcfs/darwin/Makefile" ;;
+-  "lnet/include/lnet/darwin/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/include/lnet/darwin/Makefile" ;;
+-  "lnet/libcfs/darwin/Makefile" ) CONFIG_FILES="$CONFIG_FILES lnet/libcfs/darwin/Makefile" ;;
+-  "lustre/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/Makefile" ;;
+-  "lustre/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/autoMakefile" ;;
+-  "lustre/autoconf/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/autoconf/Makefile" ;;
+-  "lustre/contrib/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/contrib/Makefile" ;;
+-  "lustre/doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/doc/Makefile" ;;
+-  "lustre/include/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/include/Makefile" ;;
+-  "lustre/include/lustre_ver.h" ) CONFIG_FILES="$CONFIG_FILES lustre/include/lustre_ver.h" ;;
+-  "lustre/include/linux/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/include/linux/Makefile" ;;
+-  "lustre/include/lustre/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/include/lustre/Makefile" ;;
+-  "lustre/kernel_patches/targets/2.6-suse.target" ) CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-suse.target" ;;
+-  "lustre/kernel_patches/targets/2.6-vanilla.target" ) CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-vanilla.target" ;;
+-  "lustre/kernel_patches/targets/2.6-rhel4.target" ) CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-rhel4.target" ;;
+-  "lustre/kernel_patches/targets/2.6-rhel5.target" ) CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-rhel5.target" ;;
+-  "lustre/kernel_patches/targets/2.6-fc5.target" ) CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-fc5.target" ;;
+-  "lustre/kernel_patches/targets/2.6-patchless.target" ) CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-patchless.target" ;;
+-  "lustre/kernel_patches/targets/2.6-sles10.target" ) CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-sles10.target" ;;
+-  "lustre/kernel_patches/targets/2.6-sles11.target" ) CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-sles11.target" ;;
+-  "lustre/kernel_patches/targets/hp_pnnl-2.4.target" ) CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/hp_pnnl-2.4.target" ;;
+-  "lustre/kernel_patches/targets/rh-2.4.target" ) CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/rh-2.4.target" ;;
+-  "lustre/kernel_patches/targets/rhel-2.4.target" ) CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/rhel-2.4.target" ;;
+-  "lustre/kernel_patches/targets/suse-2.4.21-2.target" ) CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/suse-2.4.21-2.target" ;;
+-  "lustre/kernel_patches/targets/sles-2.4.target" ) CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/sles-2.4.target" ;;
+-  "lustre/kernel_patches/targets/2.6-oel5.target" ) CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-oel5.target" ;;
+-  "lustre/ldlm/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/ldlm/Makefile" ;;
+-  "lustre/liblustre/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/liblustre/Makefile" ;;
+-  "lustre/liblustre/tests/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/liblustre/tests/Makefile" ;;
+-  "lustre/liblustre/tests/mpi/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/liblustre/tests/mpi/Makefile" ;;
+-  "lustre/llite/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/llite/Makefile" ;;
+-  "lustre/llite/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/llite/autoMakefile" ;;
+-  "lustre/lov/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/lov/Makefile" ;;
+-  "lustre/lov/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/lov/autoMakefile" ;;
+-  "lustre/lvfs/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/lvfs/Makefile" ;;
+-  "lustre/lvfs/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/lvfs/autoMakefile" ;;
+-  "lustre/mdc/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/mdc/Makefile" ;;
+-  "lustre/mdc/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/mdc/autoMakefile" ;;
+-  "lustre/mds/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/mds/Makefile" ;;
+-  "lustre/mds/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/mds/autoMakefile" ;;
+-  "lustre/obdclass/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/obdclass/Makefile" ;;
+-  "lustre/obdclass/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/obdclass/autoMakefile" ;;
+-  "lustre/obdclass/linux/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/obdclass/linux/Makefile" ;;
+-  "lustre/obdecho/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/obdecho/Makefile" ;;
+-  "lustre/obdecho/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/obdecho/autoMakefile" ;;
+-  "lustre/obdfilter/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/obdfilter/Makefile" ;;
+-  "lustre/obdfilter/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/obdfilter/autoMakefile" ;;
+-  "lustre/osc/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/osc/Makefile" ;;
+-  "lustre/osc/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/osc/autoMakefile" ;;
+-  "lustre/ost/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/ost/Makefile" ;;
+-  "lustre/ost/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/ost/autoMakefile" ;;
+-  "lustre/mgc/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/mgc/Makefile" ;;
+-  "lustre/mgc/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/mgc/autoMakefile" ;;
+-  "lustre/mgs/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/mgs/Makefile" ;;
+-  "lustre/mgs/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/mgs/autoMakefile" ;;
+-  "lustre/ptlrpc/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/ptlrpc/Makefile" ;;
+-  "lustre/ptlrpc/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/ptlrpc/autoMakefile" ;;
+-  "lustre/quota/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/quota/Makefile" ;;
+-  "lustre/quota/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES lustre/quota/autoMakefile" ;;
+-  "lustre/scripts/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/scripts/Makefile" ;;
+-  "lustre/tests/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/tests/Makefile" ;;
+-  "lustre/tests/mpi/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/tests/mpi/Makefile" ;;
+-  "lustre/utils/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/utils/Makefile" ;;
+-  "lustre/obdclass/darwin/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/obdclass/darwin/Makefile" ;;
+-  "snmp/Makefile" ) CONFIG_FILES="$CONFIG_FILES snmp/Makefile" ;;
+-  "snmp/autoconf/Makefile" ) CONFIG_FILES="$CONFIG_FILES snmp/autoconf/Makefile" ;;
+-  "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
+-  "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
 +  case $ac_config_target in
 +    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
 +    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
-   "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
-   "autoMakefile" ) CONFIG_FILES="$CONFIG_FILES autoMakefile" ;;
-   "Rules" ) CONFIG_FILES="$CONFIG_FILES Rules:build/Rules.in" ;;
-@@ -19771,14 +20399,14 @@
-   "lustre/obdclass/darwin/Makefile" ) CONFIG_FILES="$CONFIG_FILES lustre/obdclass/darwin/Makefile" ;;
-   "snmp/Makefile" ) CONFIG_FILES="$CONFIG_FILES snmp/Makefile" ;;
-   "snmp/autoconf/Makefile" ) CONFIG_FILES="$CONFIG_FILES snmp/autoconf/Makefile" ;;
--  "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
--  "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
++    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
++    "autoMakefile") CONFIG_FILES="$CONFIG_FILES autoMakefile" ;;
++    "Rules") CONFIG_FILES="$CONFIG_FILES Rules:build/Rules.in" ;;
++    "lustre.spec") CONFIG_FILES="$CONFIG_FILES lustre.spec" ;;
++    "lnet/Kernelenv") CONFIG_FILES="$CONFIG_FILES lnet/Kernelenv" ;;
++    "lnet/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/Makefile" ;;
++    "lnet/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/autoMakefile" ;;
++    "lnet/autoconf/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/autoconf/Makefile" ;;
++    "lnet/doc/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/doc/Makefile" ;;
++    "lnet/include/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/include/Makefile" ;;
++    "lnet/include/libcfs/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/include/libcfs/Makefile" ;;
++    "lnet/include/libcfs/linux/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/include/libcfs/linux/Makefile" ;;
++    "lnet/include/lnet/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/include/lnet/Makefile" ;;
++    "lnet/include/lnet/linux/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/include/lnet/linux/Makefile" ;;
++    "lnet/klnds/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/Makefile" ;;
++    "lnet/klnds/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/autoMakefile" ;;
++    "lnet/klnds/gmlnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/gmlnd/Makefile" ;;
++    "lnet/klnds/mxlnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/mxlnd/autoMakefile" ;;
++    "lnet/klnds/mxlnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/mxlnd/Makefile" ;;
++    "lnet/klnds/gmlnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/gmlnd/autoMakefile" ;;
++    "lnet/klnds/openiblnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/openiblnd/Makefile" ;;
++    "lnet/klnds/openiblnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/openiblnd/autoMakefile" ;;
++    "lnet/klnds/o2iblnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/o2iblnd/Makefile" ;;
++    "lnet/klnds/o2iblnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/o2iblnd/autoMakefile" ;;
++    "lnet/klnds/ciblnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/ciblnd/Makefile" ;;
++    "lnet/klnds/ciblnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/ciblnd/autoMakefile" ;;
++    "lnet/klnds/iiblnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/iiblnd/Makefile" ;;
++    "lnet/klnds/iiblnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/iiblnd/autoMakefile" ;;
++    "lnet/klnds/viblnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/viblnd/Makefile" ;;
++    "lnet/klnds/viblnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/viblnd/autoMakefile" ;;
++    "lnet/klnds/qswlnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/qswlnd/Makefile" ;;
++    "lnet/klnds/qswlnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/qswlnd/autoMakefile" ;;
++    "lnet/klnds/ralnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/ralnd/Makefile" ;;
++    "lnet/klnds/ralnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/ralnd/autoMakefile" ;;
++    "lnet/klnds/socklnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/socklnd/Makefile" ;;
++    "lnet/klnds/socklnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/socklnd/autoMakefile" ;;
++    "lnet/klnds/ptllnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/ptllnd/Makefile" ;;
++    "lnet/klnds/ptllnd/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/klnds/ptllnd/autoMakefile" ;;
++    "lnet/libcfs/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/libcfs/Makefile" ;;
++    "lnet/libcfs/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/libcfs/autoMakefile" ;;
++    "lnet/libcfs/linux/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/libcfs/linux/Makefile" ;;
++    "lnet/lnet/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/lnet/Makefile" ;;
++    "lnet/lnet/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/lnet/autoMakefile" ;;
++    "lnet/selftest/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/selftest/Makefile" ;;
++    "lnet/selftest/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/selftest/autoMakefile" ;;
++    "lnet/ulnds/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/ulnds/Makefile" ;;
++    "lnet/ulnds/autoMakefile") CONFIG_FILES="$CONFIG_FILES lnet/ulnds/autoMakefile" ;;
++    "lnet/ulnds/socklnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/ulnds/socklnd/Makefile" ;;
++    "lnet/ulnds/ptllnd/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/ulnds/ptllnd/Makefile" ;;
++    "lnet/utils/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/utils/Makefile" ;;
++    "lnet/include/libcfs/darwin/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/include/libcfs/darwin/Makefile" ;;
++    "lnet/include/lnet/darwin/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/include/lnet/darwin/Makefile" ;;
++    "lnet/libcfs/darwin/Makefile") CONFIG_FILES="$CONFIG_FILES lnet/libcfs/darwin/Makefile" ;;
++    "lustre/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/Makefile" ;;
++    "lustre/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/autoMakefile" ;;
++    "lustre/autoconf/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/autoconf/Makefile" ;;
++    "lustre/contrib/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/contrib/Makefile" ;;
++    "lustre/doc/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/doc/Makefile" ;;
++    "lustre/include/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/include/Makefile" ;;
++    "lustre/include/lustre_ver.h") CONFIG_FILES="$CONFIG_FILES lustre/include/lustre_ver.h" ;;
++    "lustre/include/linux/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/include/linux/Makefile" ;;
++    "lustre/include/lustre/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/include/lustre/Makefile" ;;
++    "lustre/kernel_patches/targets/2.6-suse.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-suse.target" ;;
++    "lustre/kernel_patches/targets/2.6-vanilla.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-vanilla.target" ;;
++    "lustre/kernel_patches/targets/2.6-rhel4.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-rhel4.target" ;;
++    "lustre/kernel_patches/targets/2.6-rhel5.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-rhel5.target" ;;
++    "lustre/kernel_patches/targets/2.6-fc5.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-fc5.target" ;;
++    "lustre/kernel_patches/targets/2.6-patchless.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-patchless.target" ;;
++    "lustre/kernel_patches/targets/2.6-sles10.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-sles10.target" ;;
++    "lustre/kernel_patches/targets/2.6-sles11.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-sles11.target" ;;
++    "lustre/kernel_patches/targets/hp_pnnl-2.4.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/hp_pnnl-2.4.target" ;;
++    "lustre/kernel_patches/targets/rh-2.4.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/rh-2.4.target" ;;
++    "lustre/kernel_patches/targets/rhel-2.4.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/rhel-2.4.target" ;;
++    "lustre/kernel_patches/targets/suse-2.4.21-2.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/suse-2.4.21-2.target" ;;
++    "lustre/kernel_patches/targets/sles-2.4.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/sles-2.4.target" ;;
++    "lustre/kernel_patches/targets/2.6-oel5.target") CONFIG_FILES="$CONFIG_FILES lustre/kernel_patches/targets/2.6-oel5.target" ;;
++    "lustre/ldlm/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/ldlm/Makefile" ;;
++    "lustre/liblustre/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/liblustre/Makefile" ;;
++    "lustre/liblustre/tests/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/liblustre/tests/Makefile" ;;
++    "lustre/liblustre/tests/mpi/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/liblustre/tests/mpi/Makefile" ;;
++    "lustre/llite/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/llite/Makefile" ;;
++    "lustre/llite/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/llite/autoMakefile" ;;
++    "lustre/lov/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/lov/Makefile" ;;
++    "lustre/lov/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/lov/autoMakefile" ;;
++    "lustre/lvfs/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/lvfs/Makefile" ;;
++    "lustre/lvfs/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/lvfs/autoMakefile" ;;
++    "lustre/mdc/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/mdc/Makefile" ;;
++    "lustre/mdc/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/mdc/autoMakefile" ;;
++    "lustre/mds/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/mds/Makefile" ;;
++    "lustre/mds/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/mds/autoMakefile" ;;
++    "lustre/obdclass/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/obdclass/Makefile" ;;
++    "lustre/obdclass/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/obdclass/autoMakefile" ;;
++    "lustre/obdclass/linux/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/obdclass/linux/Makefile" ;;
++    "lustre/obdecho/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/obdecho/Makefile" ;;
++    "lustre/obdecho/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/obdecho/autoMakefile" ;;
++    "lustre/obdfilter/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/obdfilter/Makefile" ;;
++    "lustre/obdfilter/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/obdfilter/autoMakefile" ;;
++    "lustre/osc/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/osc/Makefile" ;;
++    "lustre/osc/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/osc/autoMakefile" ;;
++    "lustre/ost/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/ost/Makefile" ;;
++    "lustre/ost/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/ost/autoMakefile" ;;
++    "lustre/mgc/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/mgc/Makefile" ;;
++    "lustre/mgc/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/mgc/autoMakefile" ;;
++    "lustre/mgs/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/mgs/Makefile" ;;
++    "lustre/mgs/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/mgs/autoMakefile" ;;
++    "lustre/ptlrpc/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/ptlrpc/Makefile" ;;
++    "lustre/ptlrpc/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/ptlrpc/autoMakefile" ;;
++    "lustre/quota/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/quota/Makefile" ;;
++    "lustre/quota/autoMakefile") CONFIG_FILES="$CONFIG_FILES lustre/quota/autoMakefile" ;;
++    "lustre/scripts/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/scripts/Makefile" ;;
++    "lustre/tests/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/tests/Makefile" ;;
++    "lustre/tests/mpi/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/tests/mpi/Makefile" ;;
++    "lustre/utils/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/utils/Makefile" ;;
++    "lustre/obdclass/darwin/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/obdclass/darwin/Makefile" ;;
++    "snmp/Makefile") CONFIG_FILES="$CONFIG_FILES snmp/Makefile" ;;
++    "snmp/autoconf/Makefile") CONFIG_FILES="$CONFIG_FILES snmp/autoconf/Makefile" ;;
 +
    *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
  echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
@@ -41667,7 +17031,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  # If the user did not use the arguments to specify the items to instantiate,
  # then the envvar interface is used.  Set only those that are not.
  # We use the long form for the default assignment because of an extremely
-@@ -19790,511 +20418,653 @@
+@@ -19790,760 +20418,784 @@ if $ac_need_defaults; then
  fi
  
  # Have a temporary directory for convenience.  Make it in the build tree
@@ -41979,10 +17343,9 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -s, at LIBOBJS@,$LIBOBJS,;t t
 -s, at LTLIBOBJS@,$LTLIBOBJS,;t t
 -CEOF
-+if test -n "$CONFIG_FILES"; then
- 
- _ACEOF
- 
+-
+-_ACEOF
+-
 -  cat >>$CONFIG_STATUS <<\_ACEOF
 -  # Split the substitutions into bite-sized pieces for seds with
 -  # small command number limits, like on Digital OSF/1 and HP-UX.
@@ -41995,6 +17358,34 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  while $ac_more_lines; do
 -    if test $ac_beg -gt 1; then
 -      sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
+-    else
+-      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
+-    fi
+-    if test ! -s $tmp/subs.frag; then
+-      ac_more_lines=false
+-    else
+-      # The purpose of the label and of the branching condition is to
+-      # speed up the sed processing (if there are no `@' at all, there
+-      # is no need to browse any of the substitutions).
+-      # These are the two extra sed commands mentioned above.
+-      (echo ':t
+-  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
+-      if test -z "$ac_sed_cmds"; then
+-	ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
+-      else
+-	ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
+-      fi
+-      ac_sed_frag=`expr $ac_sed_frag + 1`
+-      ac_beg=$ac_end
+-      ac_end=`expr $ac_end + $ac_max_sed_lines`
+-    fi
+-  done
+-  if test -z "$ac_sed_cmds"; then
+-    ac_sed_cmds=cat
++if test -n "$CONFIG_FILES"; then
++
++_ACEOF
++
 +
 +
 +ac_delim='%!_!# '
@@ -42105,21 +17496,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
 +echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
 +   { (exit 1); exit 1; }; }
-     else
--      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
++  else
 +    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-     fi
--    if test ! -s $tmp/subs.frag; then
--      ac_more_lines=false
--    else
--      # The purpose of the label and of the branching condition is to
--      # speed up the sed processing (if there are no `@' at all, there
--      # is no need to browse any of the substitutions).
--      # These are the two extra sed commands mentioned above.
--      (echo ':t
--  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
--      if test -z "$ac_sed_cmds"; then
--	ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
+   fi
+-fi # test -n "$CONFIG_FILES"
 +done
 +
 +ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
@@ -42127,11 +17507,11 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
 +  ac_eof=`expr $ac_eof + 1`
 +fi
-+
+ 
 +cat >>$CONFIG_STATUS <<_ACEOF
 +cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof
 +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-+_ACEOF
+ _ACEOF
 +sed '
 +s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
 +s/^/s,@/; s/!/@,|#_!!_#|/
@@ -42255,13 +17635,9 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
 +echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
 +   { (exit 1); exit 1; }; }
-       else
--	ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
++  else
 +    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-       fi
--      ac_sed_frag=`expr $ac_sed_frag + 1`
--      ac_beg=$ac_end
--      ac_end=`expr $ac_end + $ac_max_sed_lines`
++  fi
 +done
 +
 +ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
@@ -42365,22 +17741,19 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +   { (exit 1); exit 1; }; }
 +  else
 +    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-     fi
-   done
--  if test -z "$ac_sed_cmds"; then
--    ac_sed_cmds=cat
++  fi
++done
 +
 +ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
 +if test -n "$ac_eof"; then
 +  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
 +  ac_eof=`expr $ac_eof + 1`
-   fi
--fi # test -n "$CONFIG_FILES"
- 
++fi
++
 +cat >>$CONFIG_STATUS <<_ACEOF
 +cat >"\$tmp/subs-3.sed" <<\CEOF$ac_eof
 +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end
- _ACEOF
++_ACEOF
 +sed '
 +s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
 +s/^/s,@/; s/!/@,|#_!!_#|/
@@ -42431,7 +17804,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +do
 +  case $ac_tag in
 +  :[FHLC]) ac_mode=$ac_tag; continue;;
-   esac
++  esac
 +  case $ac_mode$ac_tag in
 +  :[FHL]*:*);;
 +  :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
@@ -42439,7 +17812,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +   { (exit 1); exit 1; }; };;
 +  :[FH]-) ac_tag=-:-;;
 +  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
-+  esac
+   esac
 +  ac_save_IFS=$IFS
 +  IFS=:
 +  set x $ac_tag
@@ -42502,6 +17875,11 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-  { if $as_mkdir_p; then
+-    mkdir -p "$ac_dir"
+-  else
+-    as_dir="$ac_dir"
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -42518,11 +17896,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
--  { if $as_mkdir_p; then
--    mkdir -p "$ac_dir"
--  else
--    as_dir="$ac_dir"
++	  s/.*/./; q'`
 +  { as_dir="$ac_dir"
 +  case $as_dir in #(
 +  -*) as_dir=./$as_dir;;
@@ -42550,6 +17924,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -42566,7 +17941,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
 +      test -d "$as_dir" && break
      done
 -    test ! -n "$as_dirs" || mkdir $as_dirs
@@ -42695,11 +18070,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  fi
 -  configure_input=$configure_input"Generated from `echo $ac_file_in |
 -				     sed 's,.*/,,'` by configure."
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+# If the template does not know about datarootdir, expand it.
-+# FIXME: This hack should be removed a few years after 2.60.
-+ac_datarootdir_hack=; ac_datarootdir_seen=
- 
+-
 -  # First look for the input files in the build tree, otherwise in the
 -  # src tree.
 -  ac_file_inputs=`IFS=:
@@ -42725,6 +18096,13 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -echo "$as_me: error: cannot find input file: $f" >&2;}
 -   { (exit 1); exit 1; }; }
 -	 fi;;
+-      esac
+-    done` || { (exit 1); exit 1; }
++cat >>$CONFIG_STATUS <<\_ACEOF
++# If the template does not know about datarootdir, expand it.
++# FIXME: This hack should be removed a few years after 2.60.
++ac_datarootdir_hack=; ac_datarootdir_seen=
++
 +case `sed -n '/datarootdir/ {
 +  p
 +  q
@@ -42739,8 +18117,8 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
 +  { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
 +echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF
+ _ACEOF
+ cat >>$CONFIG_STATUS <<_ACEOF
 +  ac_datarootdir_hack='
 +  s&@datadir@&$datadir&g
 +  s&@docdir@&$docdir&g
@@ -42748,17 +18126,16 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +  s&@localedir@&$localedir&g
 +  s&@mandir@&$mandir&g
 +    s&\\\${datarootdir}&$datarootdir&g' ;;
-       esac
--    done` || { (exit 1); exit 1; }
- _ACEOF
++esac
++_ACEOF
 +
 +# Neutralize VPATH when `$srcdir' = `.'.
 +# Shell code in configure.ac might set extrasub.
 +# FIXME: do we really want to maintain this feature?
- cat >>$CONFIG_STATUS <<_ACEOF
++cat >>$CONFIG_STATUS <<_ACEOF
    sed "$ac_vpsub
  $extrasub
-@@ -20302,248 +21072,130 @@
+ _ACEOF
  cat >>$CONFIG_STATUS <<\_ACEOF
  :t
  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
@@ -42780,6 +18157,31 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -    cat $tmp/out
 -    rm -f $tmp/out
 -  fi
+-
+-done
+-_ACEOF
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-
+-#
+-# CONFIG_HEADER section.
+-#
+-
+-# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
+-# NAME is the cpp macro being defined and VALUE is the value it is being given.
+-#
+-# ac_d sets the value in "#define NAME VALUE" lines.
+-ac_dA='s,^\([	 ]*\)#\([	 ]*define[	 ][	 ]*\)'
+-ac_dB='[	 ].*$,\1#\2'
+-ac_dC=' '
+-ac_dD=',;t'
+-# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
+-ac_uA='s,^\([	 ]*\)#\([	 ]*\)undef\([	 ][	 ]*\)'
+-ac_uB='$,\1#\2define\3'
+-ac_uC=' '
+-ac_uD=',;t'
+-
+-for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
+-  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
 +s&@configure_input@&$configure_input&;t t
 +s&@top_builddir@&$ac_top_builddir_sub&;t t
 +s&@srcdir@&$ac_srcdir&;t t
@@ -42792,10 +18194,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +s&@INSTALL@&$ac_INSTALL&;t t
 +$ac_datarootdir_hack
 +" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" | sed -f "$tmp/subs-3.sed" >$tmp/out
- 
--done
--_ACEOF
--cat >>$CONFIG_STATUS <<\_ACEOF
++
 +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
 +  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
 +  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
@@ -42803,54 +18202,9 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +which seems to be undefined.  Please make sure it is defined." >&5
 +echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 +which seems to be undefined.  Please make sure it is defined." >&2;}
- 
++
 +  rm -f "$tmp/stdin"
-+  case $ac_file in
-+  -) cat "$tmp/out"; rm -f "$tmp/out";;
-+  *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
-+  esac
-+ ;;
-+  :H)
- #
--# CONFIG_HEADER section.
-+  # CONFIG_HEADER
- #
-+_ACEOF
- 
--# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
--# NAME is the cpp macro being defined and VALUE is the value it is being given.
--#
--# ac_d sets the value in "#define NAME VALUE" lines.
--ac_dA='s,^\([	 ]*\)#\([	 ]*define[	 ][	 ]*\)'
--ac_dB='[	 ].*$,\1#\2'
-+# Transform confdefs.h into a sed script `conftest.defines', that
-+# substitutes the proper values into config.h.in to produce config.h.
-+rm -f conftest.defines conftest.tail
-+# First, append a space to every undef/define line, to ease matching.
-+echo 's/$/ /' >conftest.defines
-+# Then, protect against being on the right side of a sed subst, or in
-+# an unquoted here document, in config.status.  If some macros were
-+# called several times there might be several #defines for the same
-+# symbol, which is useless.  But do not sort them, since the last
-+# AC_DEFINE must be honored.
-+ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
-+# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where
-+# NAME is the cpp macro being defined, VALUE is the value it is being given.
-+# PARAMS is the parameter list in the macro definition--in most cases, it's
-+# just an empty string.
-+ac_dA='s,^\\([	 #]*\\)[^	 ]*\\([	 ]*'
-+ac_dB='\\)[	 (].*,\\1define\\2'
- ac_dC=' '
--ac_dD=',;t'
--# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
--ac_uA='s,^\([	 ]*\)#\([	 ]*\)undef\([	 ][	 ]*\)'
--ac_uB='$,\1#\2define\3'
--ac_uC=' '
--ac_uD=',;t'
--
--for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
--  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
--  case $ac_file in
+   case $ac_file in
 -  - | *:- | *:-:* ) # input from stdin
 -	cat >$tmp/stdin
 -	ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
@@ -42858,7 +18212,9 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
 -	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
 -  * )   ac_file_in=$ac_file.in ;;
--  esac
++  -) cat "$tmp/out"; rm -f "$tmp/out";;
++  *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
+   esac
 -
 -  test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
 -echo "$as_me: creating $ac_file" >&6;}
@@ -42895,8 +18251,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  sed 's/[	 ]*$//' $ac_file_inputs >$tmp/in
 -
 -_ACEOF
-+ac_dD=' ,'
- 
+-
 -# Transform confdefs.h into two sed scripts, `conftest.defines' and
 -# `conftest.undefs', that substitutes the proper values into
 -# config.h.in to produce config.h.  The first handles `#define'
@@ -42912,15 +18267,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -# 0-ary CPP macros) applies to n-ary macro definitions.
 -# See the Autoconf documentation for `clear'.
 -cat >confdef2sed.sed <<\_ACEOF
-+uniq confdefs.h |
-+  sed -n '
-+	t rset
-+	:rset
-+	s/^[	 ]*#[	 ]*define[	 ][	 ]*//
-+	t ok
-+	d
-+	:ok
- s/[\\&,]/\\&/g
+-s/[\\&,]/\\&/g
 -s,[\\$`],\\&,g
 -t clear
 -: clear
@@ -42935,11 +18282,48 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
 -sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
 -rm -f confdef2sed.sed
+-
+-# This sed command replaces #undef with comments.  This is necessary, for
++ ;;
++  :H)
++  #
++  # CONFIG_HEADER
++  #
++_ACEOF
++
++# Transform confdefs.h into a sed script `conftest.defines', that
++# substitutes the proper values into config.h.in to produce config.h.
++rm -f conftest.defines conftest.tail
++# First, append a space to every undef/define line, to ease matching.
++echo 's/$/ /' >conftest.defines
++# Then, protect against being on the right side of a sed subst, or in
++# an unquoted here document, in config.status.  If some macros were
++# called several times there might be several #defines for the same
++# symbol, which is useless.  But do not sort them, since the last
++# AC_DEFINE must be honored.
++ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
++# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where
++# NAME is the cpp macro being defined, VALUE is the value it is being given.
++# PARAMS is the parameter list in the macro definition--in most cases, it's
++# just an empty string.
++ac_dA='s,^\\([	 #]*\\)[^	 ]*\\([	 ]*'
++ac_dB='\\)[	 (].*,\\1define\\2'
++ac_dC=' '
++ac_dD=' ,'
++
++uniq confdefs.h |
++  sed -n '
++	t rset
++	:rset
++	s/^[	 ]*#[	 ]*define[	 ][	 ]*//
++	t ok
++	d
++	:ok
++	s/[\\&,]/\\&/g
 +	s/^\('"$ac_word_re"'\)\(([^()]*)\)[	 ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p
 +	s/^\('"$ac_word_re"'\)[	 ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p
 +  ' >>conftest.defines
- 
--# This sed command replaces #undef with comments.  This is necessary, for
++
 +# Remove the space that was appended to ease matching.
 +# Then replace #undef with comments.  This is necessary, for
  # example, in the case of _POSIX_SOURCE, which is predefined and required
@@ -42947,10 +18331,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -cat >>conftest.undefs <<\_ACEOF
 -s,^[	 ]*#[	 ]*undef[	 ][	 ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
 -_ACEOF
-+# (The regexp can be short, since the line contains either #define or #undef.)
-+echo 's/ $//
-+s,^[	 #]*u.*,/* & */,' >>conftest.defines
- 
+-
 -# Break up conftest.defines because some shells have a limit on the size
 -# of here documents, and old seds have small limits too (100 cmds).
 -echo '  # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
@@ -42959,6 +18340,10 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -echo '  :' >>$CONFIG_STATUS
 -rm -f conftest.tail
 -while grep . conftest.defines >/dev/null
++# (The regexp can be short, since the line contains either #define or #undef.)
++echo 's/ $//
++s,^[	 #]*u.*,/* & */,' >>conftest.defines
++
 +# Break up conftest.defines:
 +ac_max_sed_lines=50
 +
@@ -43104,7 +18489,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  # Compute $ac_file's index in $config_headers.
  _am_stamp_count=1
  for _am_header in $config_headers :; do
-@@ -20554,135 +21206,39 @@
+@@ -20554,135 +21206,39 @@ for _am_header in $config_headers :; do
        _am_stamp_count=`expr $_am_stamp_count + 1` ;;
    esac
  done
@@ -43121,23 +18506,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-   	  s/.*/./; q'`/stamp-h$_am_stamp_count
+-  	  s/.*/./; q'`/stamp-h$_am_stamp_count
 -done
 -_ACEOF
 -cat >>$CONFIG_STATUS <<\_ACEOF
@@ -43210,6 +18579,23 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
 -    ac_top_srcdir=$ac_top_builddir$srcdir ;;
 -esac
++    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\/\)[^/].*/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\/\)$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\).*/{
++	    s//\1/
++	    q
++	  }
++	  s/.*/./; q'`/stamp-h$_am_stamp_count
 + ;;
  
 -# Do not use `cd foo && pwd` to compute absolute paths, because
@@ -43249,10 +18635,11 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
 -  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
 -  esac;;
+-esac
 +  :C)  { echo "$as_me:$LINENO: executing $ac_file commands" >&5
 +echo "$as_me: executing $ac_file commands" >&6;}
 + ;;
- esac
++  esac
  
  
 -  { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
@@ -43264,7 +18651,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    # Strip MF so we end up with the name of the file.
    mf=`echo "$mf" | sed -e 's/:.*$//'`
    # Check whether this is an Automake generated Makefile or not.
-@@ -20692,17 +21248,28 @@
+@@ -20692,18 +21248,29 @@ echo "$as_me: executing $ac_dest commands" >&6;}
    # each Makefile.in and add a new line on top of each file to say so.
    # So let's grep whole file.
    if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
@@ -43281,6 +18668,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -43297,10 +18685,11 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
    else
      continue
-@@ -20731,53 +21298,79 @@
+   fi
+@@ -20731,53 +21298,79 @@ echo X"$mf" |
         sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
      # Make sure the directory exists.
      test -f "$dirpart/$file" && continue
@@ -43317,6 +18706,11 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-    { if $as_mkdir_p; then
+-    mkdir -p $dirpart/$fdir
+-  else
+-    as_dir=$dirpart/$fdir
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -43333,11 +18727,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
--    { if $as_mkdir_p; then
--    mkdir -p $dirpart/$fdir
--  else
--    as_dir=$dirpart/$fdir
++	  s/.*/./; q'`
 +    { as_dir=$dirpart/$fdir
 +  case $as_dir in #(
 +  -*) as_dir=./$as_dir;;
@@ -43365,6 +18755,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -43381,7 +18772,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
 +      test -d "$as_dir" && break
      done
 -    test ! -n "$as_dirs" || mkdir $as_dirs
@@ -43407,7 +18798,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
  
  { (exit 0); exit 0; }
  _ACEOF
-@@ -20814,7 +21407,10 @@
+@@ -20814,7 +21407,10 @@ if test "$no_recursion" != yes; then
    # Remove --cache-file and --srcdir arguments so they do not pile up.
    ac_sub_configure_args=
    ac_prev=
@@ -43419,7 +18810,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
      if test -n "$ac_prev"; then
        ac_prev=
        continue
-@@ -20837,123 +21433,123 @@
+@@ -20837,123 +21433,123 @@ if test "$no_recursion" != yes; then
        ac_prev=prefix ;;
      -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
        ;;
@@ -43452,14 +18843,15 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
      # Do not complain, so a configure script can configure whichever
      # parts of a large source tree are present.
 -    test -d $srcdir/$ac_dir || continue
-+    test -d "$srcdir/$ac_dir" || continue
- 
+-
 -    { echo "$as_me:$LINENO: configuring in $ac_dir" >&5
 -echo "$as_me: configuring in $ac_dir" >&6;}
 -    { if $as_mkdir_p; then
 -    mkdir -p "$ac_dir"
 -  else
 -    as_dir="$ac_dir"
++    test -d "$srcdir/$ac_dir" || continue
++
 +    ac_msg="=== configuring in $ac_dir (`pwd`/$ac_dir)"
 +    echo "$as_me:$LINENO: $ac_msg" >&5
 +    echo "$ac_msg" >&6
@@ -43490,6 +18882,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -43506,7 +18899,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
 +      test -d "$as_dir" && break
      done
 -    test ! -n "$as_dirs" || mkdir $as_dirs
@@ -43628,7 +19021,7 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
      else
        { echo "$as_me:$LINENO: WARNING: no configuration information is in $ac_dir" >&5
  echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2;}
-@@ -20965,21 +21561,21 @@
+@@ -20965,21 +21561,21 @@ echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2;}
        # Make the cache file name correct relative to the subdirectory.
        case $cache_file in
        [\\/]* | ?:[\\/]* ) ac_sub_cache_file=$cache_file ;;
@@ -43657,169 +19050,11 @@ diff -Nurwd orig/lustre-1.8.2/configure lustre-1.8.2/configure
    done
  fi
  
-diff -Nurwd orig/lustre-1.8.2/configure.ac lustre-1.8.2/configure.ac
---- orig/lustre-1.8.2/configure.ac	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/configure.ac	2010-03-03 15:57:14.899633653 +0000
-@@ -8,6 +8,7 @@
- LB_CHECK_VERSION
- 
- LC_CONFIG_SRCDIR
-+LC_CONFIG_QUOTA
- 
- AC_CANONICAL_SYSTEM
- 
-diff -Nurwd orig/lustre-1.8.2/debian/patched/autogen.sh.dpatch lustre-1.8.2/debian/patched/autogen.sh.dpatch
---- orig/lustre-1.8.2/debian/patched/autogen.sh.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/autogen.sh.dpatch	2010-03-03 15:57:14.819658335 +0000
-@@ -0,0 +1,5 @@
-+patching file autogen.sh
-+patching file build/autogen.sh
-+patching file ldiskfs/autogen.sh
-+patching file ldiskfs/build/autogen.sh
-+patching file libsysio/autogen.sh
-diff -Nurwd orig/lustre-1.8.2/debian/patched/bash_completion.dpatch lustre-1.8.2/debian/patched/bash_completion.dpatch
---- orig/lustre-1.8.2/debian/patched/bash_completion.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/bash_completion.dpatch	2010-03-03 15:57:14.847642479 +0000
-@@ -0,0 +1,2 @@
-+patching file lustre/contrib/bash_completion/lctl
-+patching file lustre/contrib/bash_completion/lfs
-diff -Nurwd orig/lustre-1.8.2/debian/patched/bug12769-ql-fix.dpatch lustre-1.8.2/debian/patched/bug12769-ql-fix.dpatch
---- orig/lustre-1.8.2/debian/patched/bug12769-ql-fix.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/bug12769-ql-fix.dpatch	2010-03-03 15:57:14.843633798 +0000
-@@ -0,0 +1,2 @@
-+patching file lustre/llite/file.c
-+Hunk #1 succeeded at 276 with fuzz 1 (offset -5 lines).
-diff -Nurwd orig/lustre-1.8.2/debian/patched/bug13852-quota_includes.dpatch lustre-1.8.2/debian/patched/bug13852-quota_includes.dpatch
---- orig/lustre-1.8.2/debian/patched/bug13852-quota_includes.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/bug13852-quota_includes.dpatch	2010-03-03 15:57:14.887656712 +0000
-@@ -0,0 +1,2 @@
-+patching file lustre/include/liblustre.h
-+Hunk #1 succeeded at 67 (offset 17 lines).
-diff -Nurwd orig/lustre-1.8.2/debian/patched/enable-quota.dpatch lustre-1.8.2/debian/patched/enable-quota.dpatch
---- orig/lustre-1.8.2/debian/patched/enable-quota.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/enable-quota.dpatch	2010-03-03 15:57:14.903643171 +0000
-@@ -0,0 +1,3 @@
-+patching file configure.ac
-+patching file lustre/autoconf/lustre-core.m4
-+Hunk #1 succeeded at 2066 (offset 253 lines).
-diff -Nurwd orig/lustre-1.8.2/debian/patched/fix-2.6.15-versioncheck.dpatch lustre-1.8.2/debian/patched/fix-2.6.15-versioncheck.dpatch
---- orig/lustre-1.8.2/debian/patched/fix-2.6.15-versioncheck.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/fix-2.6.15-versioncheck.dpatch	2010-03-03 15:57:14.879657721 +0000
-@@ -0,0 +1,2 @@
-+patching file lustre/include/linux/lustre_compat25.h
-+Hunk #1 succeeded at 106 (offset 31 lines).
-diff -Nurwd orig/lustre-1.8.2/debian/patched/fix-lustre-manpage.dpatch lustre-1.8.2/debian/patched/fix-lustre-manpage.dpatch
---- orig/lustre-1.8.2/debian/patched/fix-lustre-manpage.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/fix-lustre-manpage.dpatch	2010-03-03 15:57:14.895661151 +0000
-@@ -0,0 +1,3 @@
-+patching file lustre/doc/lctl.8
-+patching file lustre/doc/lustre.7
-+Hunk #1 succeeded at 2 with fuzz 1.
-diff -Nurwd orig/lustre-1.8.2/debian/patched/fix-oot-builds.dpatch lustre-1.8.2/debian/patched/fix-oot-builds.dpatch
---- orig/lustre-1.8.2/debian/patched/fix-oot-builds.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/fix-oot-builds.dpatch	2010-03-03 15:57:14.923634049 +0000
-@@ -0,0 +1,3 @@
-+patching file build/autoconf/lustre-build.m4
-+patching file lustre/autoMakefile.am
-+patching file lustre/scripts/version_tag.pl
-diff -Nurwd orig/lustre-1.8.2/debian/patched/fix-symlink-attack.dpatch lustre-1.8.2/debian/patched/fix-symlink-attack.dpatch
---- orig/lustre-1.8.2/debian/patched/fix-symlink-attack.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/fix-symlink-attack.dpatch	2010-03-03 15:57:14.907633482 +0000
-@@ -0,0 +1 @@
-+patching file lustre/tests/runiozone
-diff -Nurwd orig/lustre-1.8.2/debian/patched/inode-no-i_blksize-2.6.20.dpatch lustre-1.8.2/debian/patched/inode-no-i_blksize-2.6.20.dpatch
---- orig/lustre-1.8.2/debian/patched/inode-no-i_blksize-2.6.20.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/inode-no-i_blksize-2.6.20.dpatch	2010-03-03 15:57:14.787634151 +0000
-@@ -0,0 +1,3 @@
-+patching file lustre/mds/handler.c
-+Hunk #1 succeeded at 1206 with fuzz 1 (offset 15 lines).
-+Hunk #2 succeeded at 1235 (offset 11 lines).
-diff -Nurwd orig/lustre-1.8.2/debian/patched/ldiskfs-detect-2.6.20-2.6.22.dpatch lustre-1.8.2/debian/patched/ldiskfs-detect-2.6.20-2.6.22.dpatch
---- orig/lustre-1.8.2/debian/patched/ldiskfs-detect-2.6.20-2.6.22.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/ldiskfs-detect-2.6.20-2.6.22.dpatch	2010-03-03 15:57:14.803634020 +0000
-@@ -0,0 +1,2 @@
-+patching file ldiskfs/configure.ac
-+Hunk #1 succeeded at 112 (offset -23 lines).
-diff -Nurwd orig/lustre-1.8.2/debian/patched/libsysio.dpatch lustre-1.8.2/debian/patched/libsysio.dpatch
---- orig/lustre-1.8.2/debian/patched/libsysio.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/libsysio.dpatch	2010-03-03 15:57:14.835657366 +0000
-@@ -0,0 +1 @@
-+patching file lustre/liblustre/Makefile.am
-diff -Nurwd orig/lustre-1.8.2/debian/patched/lustre_config.dpatch lustre-1.8.2/debian/patched/lustre_config.dpatch
---- orig/lustre-1.8.2/debian/patched/lustre_config.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/lustre_config.dpatch	2010-03-03 15:57:14.871660545 +0000
-@@ -0,0 +1,12 @@
-+patching file lustre/scripts/lc_cluman.in
-+patching file lustre/scripts/lc_hb.in
-+Hunk #1 succeeded at 34 (offset 3 lines).
-+patching file lustre/scripts/lc_lvm.in
-+patching file lustre/scripts/lc_md.in
-+patching file lustre/scripts/lc_modprobe.in
-+patching file lustre/scripts/lc_net.in
-+Hunk #1 succeeded at 30 (offset 3 lines).
-+patching file lustre/scripts/lustre_config.in
-+Hunk #1 succeeded at 233 with fuzz 1 (offset 3 lines).
-+patching file lustre/scripts/lustre_createcsv.in
-+Hunk #1 succeeded at 39 (offset 2 lines).
-diff -Nurwd orig/lustre-1.8.2/debian/patched/lustre_manpage.dpatch lustre-1.8.2/debian/patched/lustre_manpage.dpatch
---- orig/lustre-1.8.2/debian/patched/lustre_manpage.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/lustre_manpage.dpatch	2010-03-03 15:57:14.855654670 +0000
-@@ -0,0 +1,2 @@
-+patching file lustre/doc/lustre.7
-+Hunk #1 succeeded at 8 with fuzz 1.
-diff -Nurwd orig/lustre-1.8.2/debian/patched/no-darwin.dpatch lustre-1.8.2/debian/patched/no-darwin.dpatch
---- orig/lustre-1.8.2/debian/patched/no-darwin.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/no-darwin.dpatch	2010-03-03 15:57:14.827661168 +0000
-@@ -0,0 +1,13 @@
-+patching file autoMakefile.am
-+patching file autoMakefile.am.~1~
-+patching file lnet/include/libcfs/Makefile.am
-+patching file lnet/include/lnet/Makefile.am
-+patching file lnet/klnds/socklnd/autoMakefile.am
-+patching file lnet/libcfs/autoMakefile.am
-+patching file lnet/lnet/autoMakefile.am
-+patching file lustre/lov/autoMakefile.am
-+patching file lustre/lvfs/autoMakefile.am
-+patching file lustre/obdclass/autoMakefile.am
-+patching file lustre/obdecho/autoMakefile.am
-+patching file lustre/osc/autoMakefile.am
-+patching file lustre/ptlrpc/autoMakefile.am
-diff -Nurwd orig/lustre-1.8.2/debian/patched/no_default_debugging.dpatch lustre-1.8.2/debian/patched/no_default_debugging.dpatch
---- orig/lustre-1.8.2/debian/patched/no_default_debugging.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/no_default_debugging.dpatch	2010-03-03 15:57:14.811633851 +0000
-@@ -0,0 +1,2 @@
-+patching file lnet/libcfs/debug.c
-+Hunk #1 succeeded at 52 (offset 18 lines).
-diff -Nurwd orig/lustre-1.8.2/debian/patched/page-size-undef-fixes.dpatch lustre-1.8.2/debian/patched/page-size-undef-fixes.dpatch
---- orig/lustre-1.8.2/debian/patched/page-size-undef-fixes.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/page-size-undef-fixes.dpatch	2010-03-03 15:57:14.779634390 +0000
-@@ -0,0 +1,2 @@
-+patching file lnet/include/libcfs/user-prim.h
-+Hunk #1 succeeded at 139 with fuzz 2 (offset 34 lines).
-diff -Nurwd orig/lustre-1.8.2/debian/patched/posix_acl.dpatch lustre-1.8.2/debian/patched/posix_acl.dpatch
---- orig/lustre-1.8.2/debian/patched/posix_acl.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/posix_acl.dpatch	2010-03-03 15:57:14.799633652 +0000
-@@ -0,0 +1,5 @@
-+patching file lustre/llite/file.c
-+patching file lustre/llite/xattr.c
-+patching file lustre/mdc/mdc_locks.c
-+patching file lustre/mdc/mdc_request.c
-+patching file lustre/mds/handler.c
-diff -Nurwd orig/lustre-1.8.2/debian/patched/tex2pdf.dpatch lustre-1.8.2/debian/patched/tex2pdf.dpatch
---- orig/lustre-1.8.2/debian/patched/tex2pdf.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/tex2pdf.dpatch	2010-03-03 15:57:14.863633966 +0000
-@@ -0,0 +1 @@
-+patching file lustre/doc/tex2pdf
-diff -Nurwd orig/lustre-1.8.2/debian/patched/use_bash_instead_of_sh.dpatch lustre-1.8.2/debian/patched/use_bash_instead_of_sh.dpatch
---- orig/lustre-1.8.2/debian/patched/use_bash_instead_of_sh.dpatch	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/debian/patched/use_bash_instead_of_sh.dpatch	2010-03-03 15:57:14.915634289 +0000
-@@ -0,0 +1,2 @@
-+patching file lustre/tests/acl/make-tree
-+patching file lustre/tests/insanity.sh
-diff -Nurwd orig/lustre-1.8.2/ldiskfs/aclocal.m4 lustre-1.8.2/ldiskfs/aclocal.m4
---- orig/lustre-1.8.2/ldiskfs/aclocal.m4	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/ldiskfs/aclocal.m4	2010-03-03 16:00:17.804632196 +0000
-@@ -2420,110 +2420,3 @@
+diff --git a/ldiskfs/aclocal.m4 b/ldiskfs/aclocal.m4
+index 9df75ae..4f9666b 100644
+--- a/ldiskfs/aclocal.m4
++++ b/ldiskfs/aclocal.m4
+@@ -2420,110 +2420,3 @@ AS_IF([test AS_VAR_GET(ac_Header) = yes], [$2], [$3])[]dnl
  AS_VAR_POPDEF([ac_Header])dnl
  ])
  
@@ -43930,10 +19165,11 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/aclocal.m4 lustre-1.8.2/ldiskfs/aclocal.m4
 -LC_PROG_DARWIN
 -])
 -
-diff -Nurwd orig/lustre-1.8.2/ldiskfs/autoMakefile.in lustre-1.8.2/ldiskfs/autoMakefile.in
---- orig/lustre-1.8.2/ldiskfs/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/ldiskfs/autoMakefile.in	2010-03-03 16:00:18.763633267 +0000
-@@ -68,6 +68,7 @@
+diff --git a/ldiskfs/autoMakefile.in b/ldiskfs/autoMakefile.in
+index adf7528..a869977 100644
+--- a/ldiskfs/autoMakefile.in
++++ b/ldiskfs/autoMakefile.in
+@@ -68,6 +68,7 @@ ECHO_T = @ECHO_T@
  EGREP = @EGREP@
  EXEEXT = @EXEEXT@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -43941,7 +19177,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/autoMakefile.in lustre-1.8.2/ldiskfs/autoM
  INCLUDE_RULES = @INCLUDE_RULES@
  INSTALL_DATA = @INSTALL_DATA@
  INSTALL_PROGRAM = @INSTALL_PROGRAM@
-@@ -121,8 +122,6 @@
+@@ -121,8 +122,6 @@ USE_QUILT_TRUE = @USE_QUILT_TRUE@
  VERSION = @VERSION@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -43950,7 +19186,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/autoMakefile.in lustre-1.8.2/ldiskfs/autoM
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
  am__include = @am__include@
-@@ -135,12 +134,16 @@
+@@ -135,12 +134,16 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -43967,7 +19203,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/autoMakefile.in lustre-1.8.2/ldiskfs/autoM
  includedir = @includedir@
  infodir = @infodir@
  install_sh = @install_sh@
-@@ -148,14 +151,17 @@
+@@ -148,14 +151,17 @@ lb_target_os = @lb_target_os@
  libdir = @libdir@
  libexecdir = @libexecdir@
  linux25 = @linux25@
@@ -43985,7 +19221,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/autoMakefile.in lustre-1.8.2/ldiskfs/autoM
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
  sysconfdir = @sysconfdir@
-@@ -208,8 +214,8 @@
+@@ -208,8 +214,8 @@ RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
  DIST_COMMON = $(srcdir)/autoMakefile.in \
  	$(srcdir)/build/autoMakefile.am.toplevel $(srcdir)/configure \
  	COPYING ChangeLog Makefile.in aclocal.m4 autoMakefile.am \
@@ -43996,8492 +19232,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/autoMakefile.in lustre-1.8.2/ldiskfs/autoM
  all: config.h
  	$(MAKE) $(AM_MAKEFLAGS) all-recursive
  
-diff -Nurwd orig/lustre-1.8.2/ldiskfs/autogen.sh lustre-1.8.2/ldiskfs/autogen.sh
---- orig/lustre-1.8.2/ldiskfs/autogen.sh	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/ldiskfs/autogen.sh	2010-03-03 15:57:14.815634149 +0000
-@@ -0,0 +1,2 @@
-+#!/bin/bash
-+exec bash build/autogen.sh $@ 
-diff -Nurwd orig/lustre-1.8.2/ldiskfs/autom4te.cache/output.0 lustre-1.8.2/ldiskfs/autom4te.cache/output.0
---- orig/lustre-1.8.2/ldiskfs/autom4te.cache/output.0	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/ldiskfs/autom4te.cache/output.0	2010-03-03 16:00:18.360632890 +0000
-@@ -0,0 +1,7643 @@
-+@%:@! /bin/sh
-+@%:@ Guess values for system-dependent variables and create Makefiles.
-+@%:@ Generated by GNU Autoconf 2.61 for Lustre ldiskfs 3.0.9.
-+@%:@
-+@%:@ Report bugs to <https://bugzilla.lustre.org/>.
-+@%:@ 
-+@%:@ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
-+@%:@ 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-+@%:@ This configure script is free software; the Free Software Foundation
-+@%:@ gives unlimited permission to copy, distribute and modify it.
-+## --------------------- ##
-+## M4sh Initialization.  ##
-+## --------------------- ##
-+
-+# Be more Bourne compatible
-+DUALCASE=1; export DUALCASE # for MKS sh
-+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-+  emulate sh
-+  NULLCMD=:
-+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-+  # is contrary to our usage.  Disable this feature.
-+  alias -g '${1+"$@"}'='"$@"'
-+  setopt NO_GLOB_SUBST
-+else
-+  case `(set -o) 2>/dev/null` in
-+  *posix*) set -o posix ;;
-+esac
-+
-+fi
-+
-+
-+
-+
-+# PATH needs CR
-+# Avoid depending upon Character Ranges.
-+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-+as_cr_digits='0123456789'
-+as_cr_alnum=$as_cr_Letters$as_cr_digits
-+
-+# The user is always right.
-+if test "${PATH_SEPARATOR+set}" != set; then
-+  echo "#! /bin/sh" >conf$$.sh
-+  echo  "exit 0"   >>conf$$.sh
-+  chmod +x conf$$.sh
-+  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
-+    PATH_SEPARATOR=';'
-+  else
-+    PATH_SEPARATOR=:
-+  fi
-+  rm -f conf$$.sh
-+fi
-+
-+# Support unset when possible.
-+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
-+  as_unset=unset
-+else
-+  as_unset=false
-+fi
-+
-+
-+# IFS
-+# We need space, tab and new line, in precisely that order.  Quoting is
-+# there to prevent editors from complaining about space-tab.
-+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-+# splitting by setting IFS to empty value.)
-+as_nl='
-+'
-+IFS=" ""	$as_nl"
-+
-+# Find who we are.  Look in the path if we contain no directory separator.
-+case $0 in
-+  *[\\/]* ) as_myself=$0 ;;
-+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
-+done
-+IFS=$as_save_IFS
-+
-+     ;;
-+esac
-+# We did not find ourselves, most probably we were run as `sh COMMAND'
-+# in which case we are not to be found in the path.
-+if test "x$as_myself" = x; then
-+  as_myself=$0
-+fi
-+if test ! -f "$as_myself"; then
-+  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
-+  { (exit 1); exit 1; }
-+fi
-+
-+# Work around bugs in pre-3.0 UWIN ksh.
-+for as_var in ENV MAIL MAILPATH
-+do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+done
-+PS1='$ '
-+PS2='> '
-+PS4='+ '
-+
-+# NLS nuisances.
-+for as_var in \
-+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
-+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
-+  LC_TELEPHONE LC_TIME
-+do
-+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
-+    eval $as_var=C; export $as_var
-+  else
-+    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+  fi
-+done
-+
-+# Required to use basename.
-+if expr a : '\(a\)' >/dev/null 2>&1 &&
-+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
-+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
-+  as_basename=basename
-+else
-+  as_basename=false
-+fi
-+
-+
-+# Name of the executable.
-+as_me=`$as_basename -- "$0" ||
-+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
-+	 X"$0" : 'X\(//\)$' \| \
-+	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X/"$0" |
-+    sed '/^.*\/\([^/][^/]*\)\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\/\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\/\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+
-+# CDPATH.
-+$as_unset CDPATH
-+
-+
-+if test "x$CONFIG_SHELL" = x; then
-+  if (eval ":") 2>/dev/null; then
-+  as_have_required=yes
-+else
-+  as_have_required=no
-+fi
-+
-+  if test $as_have_required = yes && 	 (eval ":
-+(as_func_return () {
-+  (exit \$1)
-+}
-+as_func_success () {
-+  as_func_return 0
-+}
-+as_func_failure () {
-+  as_func_return 1
-+}
-+as_func_ret_success () {
-+  return 0
-+}
-+as_func_ret_failure () {
-+  return 1
-+}
-+
-+exitcode=0
-+if as_func_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_success failed.
-+fi
-+
-+if as_func_failure; then
-+  exitcode=1
-+  echo as_func_failure succeeded.
-+fi
-+
-+if as_func_ret_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_ret_success failed.
-+fi
-+
-+if as_func_ret_failure; then
-+  exitcode=1
-+  echo as_func_ret_failure succeeded.
-+fi
-+
-+if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
-+  :
-+else
-+  exitcode=1
-+  echo positional parameters were not saved.
-+fi
-+
-+test \$exitcode = 0) || { (exit 1); exit 1; }
-+
-+(
-+  as_lineno_1=\$LINENO
-+  as_lineno_2=\$LINENO
-+  test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" &&
-+  test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; }
-+") 2> /dev/null; then
-+  :
-+else
-+  as_candidate_shells=
-+    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  case $as_dir in
-+	 /*)
-+	   for as_base in sh bash ksh sh5; do
-+	     as_candidate_shells="$as_candidate_shells $as_dir/$as_base"
-+	   done;;
-+       esac
-+done
-+IFS=$as_save_IFS
-+
-+
-+      for as_shell in $as_candidate_shells $SHELL; do
-+	 # Try only shells that exist, to save several forks.
-+	 if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
-+		{ ("$as_shell") 2> /dev/null <<\_ASEOF
-+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-+  emulate sh
-+  NULLCMD=:
-+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-+  # is contrary to our usage.  Disable this feature.
-+  alias -g '${1+"$@"}'='"$@"'
-+  setopt NO_GLOB_SUBST
-+else
-+  case `(set -o) 2>/dev/null` in
-+  *posix*) set -o posix ;;
-+esac
-+
-+fi
-+
-+
-+:
-+_ASEOF
-+}; then
-+  CONFIG_SHELL=$as_shell
-+	       as_have_required=yes
-+	       if { "$as_shell" 2> /dev/null <<\_ASEOF
-+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-+  emulate sh
-+  NULLCMD=:
-+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-+  # is contrary to our usage.  Disable this feature.
-+  alias -g '${1+"$@"}'='"$@"'
-+  setopt NO_GLOB_SUBST
-+else
-+  case `(set -o) 2>/dev/null` in
-+  *posix*) set -o posix ;;
-+esac
-+
-+fi
-+
-+
-+:
-+(as_func_return () {
-+  (exit $1)
-+}
-+as_func_success () {
-+  as_func_return 0
-+}
-+as_func_failure () {
-+  as_func_return 1
-+}
-+as_func_ret_success () {
-+  return 0
-+}
-+as_func_ret_failure () {
-+  return 1
-+}
-+
-+exitcode=0
-+if as_func_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_success failed.
-+fi
-+
-+if as_func_failure; then
-+  exitcode=1
-+  echo as_func_failure succeeded.
-+fi
-+
-+if as_func_ret_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_ret_success failed.
-+fi
-+
-+if as_func_ret_failure; then
-+  exitcode=1
-+  echo as_func_ret_failure succeeded.
-+fi
-+
-+if ( set x; as_func_ret_success y && test x = "$1" ); then
-+  :
-+else
-+  exitcode=1
-+  echo positional parameters were not saved.
-+fi
-+
-+test $exitcode = 0) || { (exit 1); exit 1; }
-+
-+(
-+  as_lineno_1=$LINENO
-+  as_lineno_2=$LINENO
-+  test "x$as_lineno_1" != "x$as_lineno_2" &&
-+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; }
-+
-+_ASEOF
-+}; then
-+  break
-+fi
-+
-+fi
-+
-+      done
-+
-+      if test "x$CONFIG_SHELL" != x; then
-+  for as_var in BASH_ENV ENV
-+        do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+        done
-+        export CONFIG_SHELL
-+        exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
-+fi
-+
-+
-+    if test $as_have_required = no; then
-+  echo This script requires a shell more modern than all the
-+      echo shells that I found on your system.  Please install a
-+      echo modern shell, or manually run the script under such a
-+      echo shell if you do have one.
-+      { (exit 1); exit 1; }
-+fi
-+
-+    
-+fi
-+
-+fi
-+
-+
-+
-+(eval "as_func_return () {
-+  (exit \$1)
-+}
-+as_func_success () {
-+  as_func_return 0
-+}
-+as_func_failure () {
-+  as_func_return 1
-+}
-+as_func_ret_success () {
-+  return 0
-+}
-+as_func_ret_failure () {
-+  return 1
-+}
-+
-+exitcode=0
-+if as_func_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_success failed.
-+fi
-+
-+if as_func_failure; then
-+  exitcode=1
-+  echo as_func_failure succeeded.
-+fi
-+
-+if as_func_ret_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_ret_success failed.
-+fi
-+
-+if as_func_ret_failure; then
-+  exitcode=1
-+  echo as_func_ret_failure succeeded.
-+fi
-+
-+if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
-+  :
-+else
-+  exitcode=1
-+  echo positional parameters were not saved.
-+fi
-+
-+test \$exitcode = 0") || {
-+  echo No shell found that supports shell functions.
-+  echo Please tell autoconf at gnu.org about your system,
-+  echo including any error possibly output before this
-+  echo message
-+}
-+
-+
-+
-+  as_lineno_1=$LINENO
-+  as_lineno_2=$LINENO
-+  test "x$as_lineno_1" != "x$as_lineno_2" &&
-+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
-+
-+  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
-+  # uniformly replaced by the line number.  The first 'sed' inserts a
-+  # line-number line after each line using $LINENO; the second 'sed'
-+  # does the real work.  The second script uses 'N' to pair each
-+  # line-number line with the line containing $LINENO, and appends
-+  # trailing '-' during substitution so that $LINENO is not a special
-+  # case at line end.
-+  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
-+  # scripts with optimization help from Paolo Bonzini.  Blame Lee
-+  # E. McMahon (1931-1989) for sed's syntax.  :-)
-+  sed -n '
-+    p
-+    /[$]LINENO/=
-+  ' <$as_myself |
-+    sed '
-+      s/[$]LINENO.*/&-/
-+      t lineno
-+      b
-+      :lineno
-+      N
-+      :loop
-+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
-+      t loop
-+      s/-\n.*//
-+    ' >$as_me.lineno &&
-+  chmod +x "$as_me.lineno" ||
-+    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
-+   { (exit 1); exit 1; }; }
-+
-+  # Don't try to exec as it changes $[0], causing all sort of problems
-+  # (the dirname of $[0] is not the place where we might find the
-+  # original and so on.  Autoconf is especially sensitive to this).
-+  . "./$as_me.lineno"
-+  # Exit status is that of the last command.
-+  exit
-+}
-+
-+
-+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
-+  as_dirname=dirname
-+else
-+  as_dirname=false
-+fi
-+
-+ECHO_C= ECHO_N= ECHO_T=
-+case `echo -n x` in
-+-n*)
-+  case `echo 'x\c'` in
-+  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
-+  *)   ECHO_C='\c';;
-+  esac;;
-+*)
-+  ECHO_N='-n';;
-+esac
-+
-+if expr a : '\(a\)' >/dev/null 2>&1 &&
-+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
-+rm -f conf$$ conf$$.exe conf$$.file
-+if test -d conf$$.dir; then
-+  rm -f conf$$.dir/conf$$.file
-+else
-+  rm -f conf$$.dir
-+  mkdir conf$$.dir
-+fi
-+echo >conf$$.file
-+if ln -s conf$$.file conf$$ 2>/dev/null; then
-+  as_ln_s='ln -s'
-+  # ... but there are two gotchas:
-+  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
-+  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
-+  # In both cases, we have to default to `cp -p'.
-+  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-+    as_ln_s='cp -p'
-+elif ln conf$$.file conf$$ 2>/dev/null; then
-+  as_ln_s=ln
-+else
-+  as_ln_s='cp -p'
-+fi
-+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-+rmdir conf$$.dir 2>/dev/null
-+
-+if mkdir -p . 2>/dev/null; then
-+  as_mkdir_p=:
-+else
-+  test -d ./-p && rmdir ./-p
-+  as_mkdir_p=false
-+fi
-+
-+if test -x / >/dev/null 2>&1; then
-+  as_test_x='test -x'
-+else
-+  if ls -dL / >/dev/null 2>&1; then
-+    as_ls_L_option=L
-+  else
-+    as_ls_L_option=
-+  fi
-+  as_test_x='
-+    eval sh -c '\''
-+      if test -d "$1"; then
-+        test -d "$1/.";
-+      else
-+	case $1 in
-+        -*)set "./$1";;
-+	esac;
-+	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
-+	???[sx]*):;;*)false;;esac;fi
-+    '\'' sh
-+  '
-+fi
-+as_executable_p=$as_test_x
-+
-+# Sed expression to map a string onto a valid CPP name.
-+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-+
-+# Sed expression to map a string onto a valid variable name.
-+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-+
-+
-+
-+exec 7<&0 </dev/null 6>&1
-+
-+# Name of the host.
-+# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
-+# so uname gets run too.
-+ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
-+
-+#
-+# Initializations.
-+#
-+ac_default_prefix=/usr/local
-+ac_clean_files=
-+ac_config_libobj_dir=.
-+LIB@&t at OBJS=
-+cross_compiling=no
-+subdirs=
-+MFLAGS=
-+MAKEFLAGS=
-+SHELL=${CONFIG_SHELL-/bin/sh}
-+
-+# Identity of this package.
-+PACKAGE_NAME='Lustre ldiskfs'
-+PACKAGE_TARNAME='lustre-ldiskfs'
-+PACKAGE_VERSION='3.0.9'
-+PACKAGE_STRING='Lustre ldiskfs 3.0.9'
-+PACKAGE_BUGREPORT='https://bugzilla.lustre.org/'
-+
-+ac_unique_file="lustre-ldiskfs.spec.in"
-+# Factoring default headers for most tests.
-+ac_includes_default="\
-+#include <stdio.h>
-+#ifdef HAVE_SYS_TYPES_H
-+# include <sys/types.h>
-+#endif
-+#ifdef HAVE_SYS_STAT_H
-+# include <sys/stat.h>
-+#endif
-+#ifdef STDC_HEADERS
-+# include <stdlib.h>
-+# include <stddef.h>
-+#else
-+# ifdef HAVE_STDLIB_H
-+#  include <stdlib.h>
-+# endif
-+#endif
-+#ifdef HAVE_STRING_H
-+# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-+#  include <memory.h>
-+# endif
-+# include <string.h>
-+#endif
-+#ifdef HAVE_STRINGS_H
-+# include <strings.h>
-+#endif
-+#ifdef HAVE_INTTYPES_H
-+# include <inttypes.h>
-+#endif
-+#ifdef HAVE_STDINT_H
-+# include <stdint.h>
-+#endif
-+#ifdef HAVE_UNISTD_H
-+# include <unistd.h>
-+#endif"
-+
-+ac_subst_vars='SHELL
-+PATH_SEPARATOR
-+PACKAGE_NAME
-+PACKAGE_TARNAME
-+PACKAGE_VERSION
-+PACKAGE_STRING
-+PACKAGE_BUGREPORT
-+exec_prefix
-+prefix
-+program_transform_name
-+bindir
-+sbindir
-+libexecdir
-+datarootdir
-+datadir
-+sysconfdir
-+sharedstatedir
-+localstatedir
-+includedir
-+oldincludedir
-+docdir
-+infodir
-+htmldir
-+dvidir
-+pdfdir
-+psdir
-+libdir
-+localedir
-+mandir
-+DEFS
-+ECHO_C
-+ECHO_N
-+ECHO_T
-+LIBS
-+build_alias
-+host_alias
-+target_alias
-+build
-+build_cpu
-+build_vendor
-+build_os
-+host
-+host_cpu
-+host_vendor
-+host_os
-+target
-+target_cpu
-+target_vendor
-+target_os
-+INSTALL_PROGRAM
-+INSTALL_SCRIPT
-+INSTALL_DATA
-+CYGPATH_W
-+PACKAGE
-+VERSION
-+ACLOCAL
-+AUTOCONF
-+AUTOMAKE
-+AUTOHEADER
-+MAKEINFO
-+AMTAR
-+install_sh
-+STRIP
-+INSTALL_STRIP_PROGRAM
-+AWK
-+SET_MAKE
-+am__leading_dot
-+CC
-+CFLAGS
-+LDFLAGS
-+CPPFLAGS
-+ac_ct_CC
-+EXEEXT
-+OBJEXT
-+DEPDIR
-+am__include
-+am__quote
-+AMDEP_TRUE
-+AMDEP_FALSE
-+AMDEPBACKSLASH
-+CCDEPMODE
-+am__fastdepCC_TRUE
-+am__fastdepCC_FALSE
-+lb_target_os
-+INCLUDE_RULES
-+RANLIB
-+CPP
-+GREP
-+EGREP
-+LLCPPFLAGS
-+LLCFLAGS
-+EXTRA_KCFLAGS
-+LINUX
-+LINUX_OBJ
-+LINUX_CONFIG
-+ARCH_UM
-+UML_CFLAGS
-+MODULE_TARGET
-+linux25
-+KMODEXT
-+LINUXRELEASE
-+moduledir
-+modulefsdir
-+modulenetdir
-+RELEASE
-+SYMVERFILE
-+MODPOST
-+MODPOST_ARGS
-+MODULES_TRUE
-+MODULES_FALSE
-+LINUX_TRUE
-+LINUX_FALSE
-+DARWIN_TRUE
-+DARWIN_FALSE
-+LINUX25_TRUE
-+LINUX25_FALSE
-+LDISKFSDIR
-+PATCH
-+QUILT
-+USE_QUILT_TRUE
-+USE_QUILT_FALSE
-+BACKFS
-+BACKFSU
-+USE_EXT4_TRUE
-+USE_EXT4_FALSE
-+LDISKFS_SERIES
-+ac_configure_args
-+MOSTLYCLEANFILES
-+LIB@&t at OBJS
-+LTLIBOBJS'
-+ac_subst_files=''
-+      ac_precious_vars='build_alias
-+host_alias
-+target_alias
-+CC
-+CFLAGS
-+LDFLAGS
-+LIBS
-+CPPFLAGS
-+CPP'
-+
-+
-+# Initialize some variables set by options.
-+ac_init_help=
-+ac_init_version=false
-+# The variables have the same names as the options, with
-+# dashes changed to underlines.
-+cache_file=/dev/null
-+exec_prefix=NONE
-+no_create=
-+no_recursion=
-+prefix=NONE
-+program_prefix=NONE
-+program_suffix=NONE
-+program_transform_name=s,x,x,
-+silent=
-+site=
-+srcdir=
-+verbose=
-+x_includes=NONE
-+x_libraries=NONE
-+
-+# Installation directory options.
-+# These are left unexpanded so users can "make install exec_prefix=/foo"
-+# and all the variables that are supposed to be based on exec_prefix
-+# by default will actually change.
-+# Use braces instead of parens because sh, perl, etc. also accept them.
-+# (The list follows the same order as the GNU Coding Standards.)
-+bindir='${exec_prefix}/bin'
-+sbindir='${exec_prefix}/sbin'
-+libexecdir='${exec_prefix}/libexec'
-+datarootdir='${prefix}/share'
-+datadir='${datarootdir}'
-+sysconfdir='${prefix}/etc'
-+sharedstatedir='${prefix}/com'
-+localstatedir='${prefix}/var'
-+includedir='${prefix}/include'
-+oldincludedir='/usr/include'
-+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
-+infodir='${datarootdir}/info'
-+htmldir='${docdir}'
-+dvidir='${docdir}'
-+pdfdir='${docdir}'
-+psdir='${docdir}'
-+libdir='${exec_prefix}/lib'
-+localedir='${datarootdir}/locale'
-+mandir='${datarootdir}/man'
-+
-+ac_prev=
-+ac_dashdash=
-+for ac_option
-+do
-+  # If the previous option needs an argument, assign it.
-+  if test -n "$ac_prev"; then
-+    eval $ac_prev=\$ac_option
-+    ac_prev=
-+    continue
-+  fi
-+
-+  case $ac_option in
-+  *=*)	ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
-+  *)	ac_optarg=yes ;;
-+  esac
-+
-+  # Accept the important Cygnus configure options, so we can diagnose typos.
-+
-+  case $ac_dashdash$ac_option in
-+  --)
-+    ac_dashdash=yes ;;
-+
-+  -bindir | --bindir | --bindi | --bind | --bin | --bi)
-+    ac_prev=bindir ;;
-+  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
-+    bindir=$ac_optarg ;;
-+
-+  -build | --build | --buil | --bui | --bu)
-+    ac_prev=build_alias ;;
-+  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
-+    build_alias=$ac_optarg ;;
-+
-+  -cache-file | --cache-file | --cache-fil | --cache-fi \
-+  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
-+    ac_prev=cache_file ;;
-+  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
-+  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
-+    cache_file=$ac_optarg ;;
-+
-+  --config-cache | -C)
-+    cache_file=config.cache ;;
-+
-+  -datadir | --datadir | --datadi | --datad)
-+    ac_prev=datadir ;;
-+  -datadir=* | --datadir=* | --datadi=* | --datad=*)
-+    datadir=$ac_optarg ;;
-+
-+  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
-+  | --dataroo | --dataro | --datar)
-+    ac_prev=datarootdir ;;
-+  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
-+  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
-+    datarootdir=$ac_optarg ;;
-+
-+  -disable-* | --disable-*)
-+    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
-+   { (exit 1); exit 1; }; }
-+    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
-+    eval enable_$ac_feature=no ;;
-+
-+  -docdir | --docdir | --docdi | --doc | --do)
-+    ac_prev=docdir ;;
-+  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
-+    docdir=$ac_optarg ;;
-+
-+  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
-+    ac_prev=dvidir ;;
-+  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
-+    dvidir=$ac_optarg ;;
-+
-+  -enable-* | --enable-*)
-+    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
-+   { (exit 1); exit 1; }; }
-+    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
-+    eval enable_$ac_feature=\$ac_optarg ;;
-+
-+  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
-+  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
-+  | --exec | --exe | --ex)
-+    ac_prev=exec_prefix ;;
-+  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
-+  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
-+  | --exec=* | --exe=* | --ex=*)
-+    exec_prefix=$ac_optarg ;;
-+
-+  -gas | --gas | --ga | --g)
-+    # Obsolete; use --with-gas.
-+    with_gas=yes ;;
-+
-+  -help | --help | --hel | --he | -h)
-+    ac_init_help=long ;;
-+  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
-+    ac_init_help=recursive ;;
-+  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
-+    ac_init_help=short ;;
-+
-+  -host | --host | --hos | --ho)
-+    ac_prev=host_alias ;;
-+  -host=* | --host=* | --hos=* | --ho=*)
-+    host_alias=$ac_optarg ;;
-+
-+  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
-+    ac_prev=htmldir ;;
-+  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
-+  | --ht=*)
-+    htmldir=$ac_optarg ;;
-+
-+  -includedir | --includedir | --includedi | --included | --include \
-+  | --includ | --inclu | --incl | --inc)
-+    ac_prev=includedir ;;
-+  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
-+  | --includ=* | --inclu=* | --incl=* | --inc=*)
-+    includedir=$ac_optarg ;;
-+
-+  -infodir | --infodir | --infodi | --infod | --info | --inf)
-+    ac_prev=infodir ;;
-+  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
-+    infodir=$ac_optarg ;;
-+
-+  -libdir | --libdir | --libdi | --libd)
-+    ac_prev=libdir ;;
-+  -libdir=* | --libdir=* | --libdi=* | --libd=*)
-+    libdir=$ac_optarg ;;
-+
-+  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
-+  | --libexe | --libex | --libe)
-+    ac_prev=libexecdir ;;
-+  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
-+  | --libexe=* | --libex=* | --libe=*)
-+    libexecdir=$ac_optarg ;;
-+
-+  -localedir | --localedir | --localedi | --localed | --locale)
-+    ac_prev=localedir ;;
-+  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
-+    localedir=$ac_optarg ;;
-+
-+  -localstatedir | --localstatedir | --localstatedi | --localstated \
-+  | --localstate | --localstat | --localsta | --localst | --locals)
-+    ac_prev=localstatedir ;;
-+  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
-+  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
-+    localstatedir=$ac_optarg ;;
-+
-+  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
-+    ac_prev=mandir ;;
-+  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
-+    mandir=$ac_optarg ;;
-+
-+  -nfp | --nfp | --nf)
-+    # Obsolete; use --without-fp.
-+    with_fp=no ;;
-+
-+  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
-+  | --no-cr | --no-c | -n)
-+    no_create=yes ;;
-+
-+  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
-+  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
-+    no_recursion=yes ;;
-+
-+  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
-+  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
-+  | --oldin | --oldi | --old | --ol | --o)
-+    ac_prev=oldincludedir ;;
-+  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
-+  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
-+  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
-+    oldincludedir=$ac_optarg ;;
-+
-+  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
-+    ac_prev=prefix ;;
-+  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
-+    prefix=$ac_optarg ;;
-+
-+  -program-prefix | --program-prefix | --program-prefi | --program-pref \
-+  | --program-pre | --program-pr | --program-p)
-+    ac_prev=program_prefix ;;
-+  -program-prefix=* | --program-prefix=* | --program-prefi=* \
-+  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
-+    program_prefix=$ac_optarg ;;
-+
-+  -program-suffix | --program-suffix | --program-suffi | --program-suff \
-+  | --program-suf | --program-su | --program-s)
-+    ac_prev=program_suffix ;;
-+  -program-suffix=* | --program-suffix=* | --program-suffi=* \
-+  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
-+    program_suffix=$ac_optarg ;;
-+
-+  -program-transform-name | --program-transform-name \
-+  | --program-transform-nam | --program-transform-na \
-+  | --program-transform-n | --program-transform- \
-+  | --program-transform | --program-transfor \
-+  | --program-transfo | --program-transf \
-+  | --program-trans | --program-tran \
-+  | --progr-tra | --program-tr | --program-t)
-+    ac_prev=program_transform_name ;;
-+  -program-transform-name=* | --program-transform-name=* \
-+  | --program-transform-nam=* | --program-transform-na=* \
-+  | --program-transform-n=* | --program-transform-=* \
-+  | --program-transform=* | --program-transfor=* \
-+  | --program-transfo=* | --program-transf=* \
-+  | --program-trans=* | --program-tran=* \
-+  | --progr-tra=* | --program-tr=* | --program-t=*)
-+    program_transform_name=$ac_optarg ;;
-+
-+  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
-+    ac_prev=pdfdir ;;
-+  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
-+    pdfdir=$ac_optarg ;;
-+
-+  -psdir | --psdir | --psdi | --psd | --ps)
-+    ac_prev=psdir ;;
-+  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
-+    psdir=$ac_optarg ;;
-+
-+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-+  | -silent | --silent | --silen | --sile | --sil)
-+    silent=yes ;;
-+
-+  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
-+    ac_prev=sbindir ;;
-+  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
-+  | --sbi=* | --sb=*)
-+    sbindir=$ac_optarg ;;
-+
-+  -sharedstatedir | --sharedstatedir | --sharedstatedi \
-+  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
-+  | --sharedst | --shareds | --shared | --share | --shar \
-+  | --sha | --sh)
-+    ac_prev=sharedstatedir ;;
-+  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
-+  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
-+  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
-+  | --sha=* | --sh=*)
-+    sharedstatedir=$ac_optarg ;;
-+
-+  -site | --site | --sit)
-+    ac_prev=site ;;
-+  -site=* | --site=* | --sit=*)
-+    site=$ac_optarg ;;
-+
-+  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
-+    ac_prev=srcdir ;;
-+  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
-+    srcdir=$ac_optarg ;;
-+
-+  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
-+  | --syscon | --sysco | --sysc | --sys | --sy)
-+    ac_prev=sysconfdir ;;
-+  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
-+  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
-+    sysconfdir=$ac_optarg ;;
-+
-+  -target | --target | --targe | --targ | --tar | --ta | --t)
-+    ac_prev=target_alias ;;
-+  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
-+    target_alias=$ac_optarg ;;
-+
-+  -v | -verbose | --verbose | --verbos | --verbo | --verb)
-+    verbose=yes ;;
-+
-+  -version | --version | --versio | --versi | --vers | -V)
-+    ac_init_version=: ;;
-+
-+  -with-* | --with-*)
-+    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid package name: $ac_package" >&2
-+   { (exit 1); exit 1; }; }
-+    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
-+    eval with_$ac_package=\$ac_optarg ;;
-+
-+  -without-* | --without-*)
-+    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid package name: $ac_package" >&2
-+   { (exit 1); exit 1; }; }
-+    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
-+    eval with_$ac_package=no ;;
-+
-+  --x)
-+    # Obsolete; use --with-x.
-+    with_x=yes ;;
-+
-+  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
-+  | --x-incl | --x-inc | --x-in | --x-i)
-+    ac_prev=x_includes ;;
-+  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
-+  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
-+    x_includes=$ac_optarg ;;
-+
-+  -x-libraries | --x-libraries | --x-librarie | --x-librari \
-+  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
-+    ac_prev=x_libraries ;;
-+  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
-+  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
-+    x_libraries=$ac_optarg ;;
-+
-+  -*) { echo "$as_me: error: unrecognized option: $ac_option
-+Try \`$0 --help' for more information." >&2
-+   { (exit 1); exit 1; }; }
-+    ;;
-+
-+  *=*)
-+    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
-+   { (exit 1); exit 1; }; }
-+    eval $ac_envvar=\$ac_optarg
-+    export $ac_envvar ;;
-+
-+  *)
-+    # FIXME: should be removed in autoconf 3.0.
-+    echo "$as_me: WARNING: you should use --build, --host, --target" >&2
-+    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      echo "$as_me: WARNING: invalid host type: $ac_option" >&2
-+    : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
-+    ;;
-+
-+  esac
-+done
-+
-+if test -n "$ac_prev"; then
-+  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
-+  { echo "$as_me: error: missing argument to $ac_option" >&2
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+# Be sure to have absolute directory names.
-+for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
-+		datadir sysconfdir sharedstatedir localstatedir includedir \
-+		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
-+		libdir localedir mandir
-+do
-+  eval ac_val=\$$ac_var
-+  case $ac_val in
-+    [\\/$]* | ?:[\\/]* )  continue;;
-+    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
-+  esac
-+  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
-+   { (exit 1); exit 1; }; }
-+done
-+
-+# There might be people who depend on the old broken behavior: `$host'
-+# used to hold the argument of --host etc.
-+# FIXME: To remove some day.
-+build=$build_alias
-+host=$host_alias
-+target=$target_alias
-+
-+# FIXME: To remove some day.
-+if test "x$host_alias" != x; then
-+  if test "x$build_alias" = x; then
-+    cross_compiling=maybe
-+    echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
-+    If a cross compiler is detected then cross compile mode will be used." >&2
-+  elif test "x$build_alias" != "x$host_alias"; then
-+    cross_compiling=yes
-+  fi
-+fi
-+
-+ac_tool_prefix=
-+test -n "$host_alias" && ac_tool_prefix=$host_alias-
-+
-+test "$silent" = yes && exec 6>/dev/null
-+
-+
-+ac_pwd=`pwd` && test -n "$ac_pwd" &&
-+ac_ls_di=`ls -di .` &&
-+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
-+  { echo "$as_me: error: Working directory cannot be determined" >&2
-+   { (exit 1); exit 1; }; }
-+test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
-+  { echo "$as_me: error: pwd does not report name of working directory" >&2
-+   { (exit 1); exit 1; }; }
-+
-+
-+# Find the source files, if location was not specified.
-+if test -z "$srcdir"; then
-+  ac_srcdir_defaulted=yes
-+  # Try the directory containing this script, then the parent directory.
-+  ac_confdir=`$as_dirname -- "$0" ||
-+$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$0" : 'X\(//\)[^/]' \| \
-+	 X"$0" : 'X\(//\)$' \| \
-+	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$0" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+  srcdir=$ac_confdir
-+  if test ! -r "$srcdir/$ac_unique_file"; then
-+    srcdir=..
-+  fi
-+else
-+  ac_srcdir_defaulted=no
-+fi
-+if test ! -r "$srcdir/$ac_unique_file"; then
-+  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
-+  { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
-+   { (exit 1); exit 1; }; }
-+fi
-+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
-+ac_abs_confdir=`(
-+	cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2
-+   { (exit 1); exit 1; }; }
-+	pwd)`
-+# When building in place, set srcdir=.
-+if test "$ac_abs_confdir" = "$ac_pwd"; then
-+  srcdir=.
-+fi
-+# Remove unnecessary trailing slashes from srcdir.
-+# Double slashes in file names in object file debugging info
-+# mess up M-x gdb in Emacs.
-+case $srcdir in
-+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
-+esac
-+for ac_var in $ac_precious_vars; do
-+  eval ac_env_${ac_var}_set=\${${ac_var}+set}
-+  eval ac_env_${ac_var}_value=\$${ac_var}
-+  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
-+  eval ac_cv_env_${ac_var}_value=\$${ac_var}
-+done
-+
-+#
-+# Report the --help message.
-+#
-+if test "$ac_init_help" = "long"; then
-+  # Omit some internal or obsolete options to make the list less imposing.
-+  # This message is too long to be a string in the A/UX 3.1 sh.
-+  cat <<_ACEOF
-+\`configure' configures Lustre ldiskfs 3.0.9 to adapt to many kinds of systems.
-+
-+Usage: $0 [OPTION]... [VAR=VALUE]...
-+
-+To assign environment variables (e.g., CC, CFLAGS...), specify them as
-+VAR=VALUE.  See below for descriptions of some of the useful variables.
-+
-+Defaults for the options are specified in brackets.
-+
-+Configuration:
-+  -h, --help              display this help and exit
-+      --help=short        display options specific to this package
-+      --help=recursive    display the short help of all the included packages
-+  -V, --version           display version information and exit
-+  -q, --quiet, --silent   do not print \`checking...' messages
-+      --cache-file=FILE   cache test results in FILE [disabled]
-+  -C, --config-cache      alias for \`--cache-file=config.cache'
-+  -n, --no-create         do not create output files
-+      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
-+
-+Installation directories:
-+  --prefix=PREFIX         install architecture-independent files in PREFIX
-+			  [$ac_default_prefix]
-+  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
-+			  [PREFIX]
-+
-+By default, \`make install' will install all the files in
-+\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
-+an installation prefix other than \`$ac_default_prefix' using \`--prefix',
-+for instance \`--prefix=\$HOME'.
-+
-+For better control, use the options below.
-+
-+Fine tuning of the installation directories:
-+  --bindir=DIR           user executables [EPREFIX/bin]
-+  --sbindir=DIR          system admin executables [EPREFIX/sbin]
-+  --libexecdir=DIR       program executables [EPREFIX/libexec]
-+  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
-+  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
-+  --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
-+  --libdir=DIR           object code libraries [EPREFIX/lib]
-+  --includedir=DIR       C header files [PREFIX/include]
-+  --oldincludedir=DIR    C header files for non-gcc [/usr/include]
-+  --datarootdir=DIR      read-only arch.-independent data root [PREFIX/share]
-+  --datadir=DIR          read-only architecture-independent data [DATAROOTDIR]
-+  --infodir=DIR          info documentation [DATAROOTDIR/info]
-+  --localedir=DIR        locale-dependent data [DATAROOTDIR/locale]
-+  --mandir=DIR           man documentation [DATAROOTDIR/man]
-+  --docdir=DIR           documentation root @<:@DATAROOTDIR/doc/lustre-ldiskfs@:>@
-+  --htmldir=DIR          html documentation [DOCDIR]
-+  --dvidir=DIR           dvi documentation [DOCDIR]
-+  --pdfdir=DIR           pdf documentation [DOCDIR]
-+  --psdir=DIR            ps documentation [DOCDIR]
-+_ACEOF
-+
-+  cat <<\_ACEOF
-+
-+Program names:
-+  --program-prefix=PREFIX            prepend PREFIX to installed program names
-+  --program-suffix=SUFFIX            append SUFFIX to installed program names
-+  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
-+
-+System types:
-+  --build=BUILD     configure for building on BUILD [guessed]
-+  --host=HOST       cross-compile to build programs to run on HOST [BUILD]
-+  --target=TARGET   configure for building compilers for TARGET [HOST]
-+_ACEOF
-+fi
-+
-+if test -n "$ac_init_help"; then
-+  case $ac_init_help in
-+     short | recursive ) echo "Configuration of Lustre ldiskfs 3.0.9:";;
-+   esac
-+  cat <<\_ACEOF
-+
-+Optional Features:
-+  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
-+  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
-+  --disable-dependency-tracking Speeds up one-time builds
-+  --enable-dependency-tracking  Do not reject slow dependency extractors
-+  --disable-modules       disable building of Lustre kernel modules
-+  --disable-quilt         disable use of quilt for ldiskfs
-+
-+Optional Packages:
-+  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
-+  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
-+  --with-linux=path       set path to Linux source (default=/usr/src/linux)
-+  --with-linux-obj=path   set path to Linux objects dir (default=$LINUX)
-+  --with-linux-config=path 
-+                          set path to Linux .conf (default=$LINUX_OBJ/.config)
-+  --with-kernel-source-header=path 
-+                          Use a different kernel version header. Consult
-+                          build/README.kernel-source for details.
-+  --with-o2ib=path        build o2iblnd against path
-+
-+Some influential environment variables:
-+  CC          C compiler command
-+  CFLAGS      C compiler flags
-+  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
-+              nonstandard directory <lib dir>
-+  LIBS        libraries to pass to the linker, e.g. -l<library>
-+  CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
-+              you have headers in a nonstandard directory <include dir>
-+  CPP         C preprocessor
-+
-+Use these variables to override the choices made by `configure' or to help
-+it to find libraries and programs with nonstandard names/locations.
-+
-+Report bugs to <https://bugzilla.lustre.org/>.
-+_ACEOF
-+ac_status=$?
-+fi
-+
-+if test "$ac_init_help" = "recursive"; then
-+  # If there are subdirs, report their specific --help.
-+  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
-+    test -d "$ac_dir" || continue
-+    ac_builddir=.
-+
-+case "$ac_dir" in
-+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+*)
-+  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
-+  # A ".." for each directory in $ac_dir_suffix.
-+  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
-+  case $ac_top_builddir_sub in
-+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
-+  esac ;;
-+esac
-+ac_abs_top_builddir=$ac_pwd
-+ac_abs_builddir=$ac_pwd$ac_dir_suffix
-+# for backward compatibility:
-+ac_top_builddir=$ac_top_build_prefix
-+
-+case $srcdir in
-+  .)  # We are building in place.
-+    ac_srcdir=.
-+    ac_top_srcdir=$ac_top_builddir_sub
-+    ac_abs_top_srcdir=$ac_pwd ;;
-+  [\\/]* | ?:[\\/]* )  # Absolute name.
-+    ac_srcdir=$srcdir$ac_dir_suffix;
-+    ac_top_srcdir=$srcdir
-+    ac_abs_top_srcdir=$srcdir ;;
-+  *) # Relative name.
-+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
-+    ac_top_srcdir=$ac_top_build_prefix$srcdir
-+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-+esac
-+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-+
-+    cd "$ac_dir" || { ac_status=$?; continue; }
-+    # Check for guested configure.
-+    if test -f "$ac_srcdir/configure.gnu"; then
-+      echo &&
-+      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
-+    elif test -f "$ac_srcdir/configure"; then
-+      echo &&
-+      $SHELL "$ac_srcdir/configure" --help=recursive
-+    else
-+      echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
-+    fi || ac_status=$?
-+    cd "$ac_pwd" || { ac_status=$?; break; }
-+  done
-+fi
-+
-+test -n "$ac_init_help" && exit $ac_status
-+if $ac_init_version; then
-+  cat <<\_ACEOF
-+Lustre ldiskfs configure 3.0.9
-+generated by GNU Autoconf 2.61
-+
-+Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
-+2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-+This configure script is free software; the Free Software Foundation
-+gives unlimited permission to copy, distribute and modify it.
-+_ACEOF
-+  exit
-+fi
-+cat >config.log <<_ACEOF
-+This file contains any messages produced by compilers while
-+running configure, to aid debugging if configure makes a mistake.
-+
-+It was created by Lustre ldiskfs $as_me 3.0.9, which was
-+generated by GNU Autoconf 2.61.  Invocation command line was
-+
-+  $ $0 $@
-+
-+_ACEOF
-+exec 5>>config.log
-+{
-+cat <<_ASUNAME
-+@%:@@%:@ --------- @%:@@%:@
-+@%:@@%:@ Platform. @%:@@%:@
-+@%:@@%:@ --------- @%:@@%:@
-+
-+hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
-+uname -m = `(uname -m) 2>/dev/null || echo unknown`
-+uname -r = `(uname -r) 2>/dev/null || echo unknown`
-+uname -s = `(uname -s) 2>/dev/null || echo unknown`
-+uname -v = `(uname -v) 2>/dev/null || echo unknown`
-+
-+/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
-+/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
-+
-+/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
-+/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
-+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
-+/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
-+/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
-+/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
-+/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
-+
-+_ASUNAME
-+
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  echo "PATH: $as_dir"
-+done
-+IFS=$as_save_IFS
-+
-+} >&5
-+
-+cat >&5 <<_ACEOF
-+
-+
-+@%:@@%:@ ----------- @%:@@%:@
-+@%:@@%:@ Core tests. @%:@@%:@
-+@%:@@%:@ ----------- @%:@@%:@
-+
-+_ACEOF
-+
-+
-+# Keep a trace of the command line.
-+# Strip out --no-create and --no-recursion so they do not pile up.
-+# Strip out --silent because we don't want to record it for future runs.
-+# Also quote any args containing shell meta-characters.
-+# Make two passes to allow for proper duplicate-argument suppression.
-+ac_configure_args=
-+ac_configure_args0=
-+ac_configure_args1=
-+ac_must_keep_next=false
-+for ac_pass in 1 2
-+do
-+  for ac_arg
-+  do
-+    case $ac_arg in
-+    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
-+    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-+    | -silent | --silent | --silen | --sile | --sil)
-+      continue ;;
-+    *\'*)
-+      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
-+    esac
-+    case $ac_pass in
-+    1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
-+    2)
-+      ac_configure_args1="$ac_configure_args1 '$ac_arg'"
-+      if test $ac_must_keep_next = true; then
-+	ac_must_keep_next=false # Got value, back to normal.
-+      else
-+	case $ac_arg in
-+	  *=* | --config-cache | -C | -disable-* | --disable-* \
-+	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
-+	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
-+	  | -with-* | --with-* | -without-* | --without-* | --x)
-+	    case "$ac_configure_args0 " in
-+	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
-+	    esac
-+	    ;;
-+	  -* ) ac_must_keep_next=true ;;
-+	esac
-+      fi
-+      ac_configure_args="$ac_configure_args '$ac_arg'"
-+      ;;
-+    esac
-+  done
-+done
-+$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
-+$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
-+
-+# When interrupted or exit'd, cleanup temporary files, and complete
-+# config.log.  We remove comments because anyway the quotes in there
-+# would cause problems or look ugly.
-+# WARNING: Use '\'' to represent an apostrophe within the trap.
-+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
-+trap 'exit_status=$?
-+  # Save into config.log some information that might help in debugging.
-+  {
-+    echo
-+
-+    cat <<\_ASBOX
-+@%:@@%:@ ---------------- @%:@@%:@
-+@%:@@%:@ Cache variables. @%:@@%:@
-+@%:@@%:@ ---------------- @%:@@%:@
-+_ASBOX
-+    echo
-+    # The following way of writing the cache mishandles newlines in values,
-+(
-+  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
-+    eval ac_val=\$$ac_var
-+    case $ac_val in #(
-+    *${as_nl}*)
-+      case $ac_var in #(
-+      *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
-+echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
-+      esac
-+      case $ac_var in #(
-+      _ | IFS | as_nl) ;; #(
-+      *) $as_unset $ac_var ;;
-+      esac ;;
-+    esac
-+  done
-+  (set) 2>&1 |
-+    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
-+    *${as_nl}ac_space=\ *)
-+      sed -n \
-+	"s/'\''/'\''\\\\'\'''\''/g;
-+	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
-+      ;; #(
-+    *)
-+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
-+      ;;
-+    esac |
-+    sort
-+)
-+    echo
-+
-+    cat <<\_ASBOX
-+@%:@@%:@ ----------------- @%:@@%:@
-+@%:@@%:@ Output variables. @%:@@%:@
-+@%:@@%:@ ----------------- @%:@@%:@
-+_ASBOX
-+    echo
-+    for ac_var in $ac_subst_vars
-+    do
-+      eval ac_val=\$$ac_var
-+      case $ac_val in
-+      *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
-+      esac
-+      echo "$ac_var='\''$ac_val'\''"
-+    done | sort
-+    echo
-+
-+    if test -n "$ac_subst_files"; then
-+      cat <<\_ASBOX
-+@%:@@%:@ ------------------- @%:@@%:@
-+@%:@@%:@ File substitutions. @%:@@%:@
-+@%:@@%:@ ------------------- @%:@@%:@
-+_ASBOX
-+      echo
-+      for ac_var in $ac_subst_files
-+      do
-+	eval ac_val=\$$ac_var
-+	case $ac_val in
-+	*\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
-+	esac
-+	echo "$ac_var='\''$ac_val'\''"
-+      done | sort
-+      echo
-+    fi
-+
-+    if test -s confdefs.h; then
-+      cat <<\_ASBOX
-+@%:@@%:@ ----------- @%:@@%:@
-+@%:@@%:@ confdefs.h. @%:@@%:@
-+@%:@@%:@ ----------- @%:@@%:@
-+_ASBOX
-+      echo
-+      cat confdefs.h
-+      echo
-+    fi
-+    test "$ac_signal" != 0 &&
-+      echo "$as_me: caught signal $ac_signal"
-+    echo "$as_me: exit $exit_status"
-+  } >&5
-+  rm -f core *.core core.conftest.* &&
-+    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
-+    exit $exit_status
-+' 0
-+for ac_signal in 1 2 13 15; do
-+  trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
-+done
-+ac_signal=0
-+
-+# confdefs.h avoids OS command line length limits that DEFS can exceed.
-+rm -f -r conftest* confdefs.h
-+
-+# Predefined preprocessor variables.
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_NAME "$PACKAGE_NAME"
-+_ACEOF
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME"
-+_ACEOF
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_VERSION "$PACKAGE_VERSION"
-+_ACEOF
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_STRING "$PACKAGE_STRING"
-+_ACEOF
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
-+_ACEOF
-+
-+
-+# Let the site file select an alternate cache file if it wants to.
-+# Prefer explicitly selected file to automatically selected ones.
-+if test -n "$CONFIG_SITE"; then
-+  set x "$CONFIG_SITE"
-+elif test "x$prefix" != xNONE; then
-+  set x "$prefix/share/config.site" "$prefix/etc/config.site"
-+else
-+  set x "$ac_default_prefix/share/config.site" \
-+	"$ac_default_prefix/etc/config.site"
-+fi
-+shift
-+for ac_site_file
-+do
-+  if test -r "$ac_site_file"; then
-+    { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
-+echo "$as_me: loading site script $ac_site_file" >&6;}
-+    sed 's/^/| /' "$ac_site_file" >&5
-+    . "$ac_site_file"
-+  fi
-+done
-+
-+if test -r "$cache_file"; then
-+  # Some versions of bash will fail to source /dev/null (special
-+  # files actually), so we avoid doing that.
-+  if test -f "$cache_file"; then
-+    { echo "$as_me:$LINENO: loading cache $cache_file" >&5
-+echo "$as_me: loading cache $cache_file" >&6;}
-+    case $cache_file in
-+      [\\/]* | ?:[\\/]* ) . "$cache_file";;
-+      *)                      . "./$cache_file";;
-+    esac
-+  fi
-+else
-+  { echo "$as_me:$LINENO: creating cache $cache_file" >&5
-+echo "$as_me: creating cache $cache_file" >&6;}
-+  >$cache_file
-+fi
-+
-+# Check that the precious variables saved in the cache have kept the same
-+# value.
-+ac_cache_corrupted=false
-+for ac_var in $ac_precious_vars; do
-+  eval ac_old_set=\$ac_cv_env_${ac_var}_set
-+  eval ac_new_set=\$ac_env_${ac_var}_set
-+  eval ac_old_val=\$ac_cv_env_${ac_var}_value
-+  eval ac_new_val=\$ac_env_${ac_var}_value
-+  case $ac_old_set,$ac_new_set in
-+    set,)
-+      { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
-+echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
-+      ac_cache_corrupted=: ;;
-+    ,set)
-+      { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
-+echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
-+      ac_cache_corrupted=: ;;
-+    ,);;
-+    *)
-+      if test "x$ac_old_val" != "x$ac_new_val"; then
-+	{ echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
-+echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
-+	{ echo "$as_me:$LINENO:   former value:  $ac_old_val" >&5
-+echo "$as_me:   former value:  $ac_old_val" >&2;}
-+	{ echo "$as_me:$LINENO:   current value: $ac_new_val" >&5
-+echo "$as_me:   current value: $ac_new_val" >&2;}
-+	ac_cache_corrupted=:
-+      fi;;
-+  esac
-+  # Pass precious variables to config.status.
-+  if test "$ac_new_set" = set; then
-+    case $ac_new_val in
-+    *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
-+    *) ac_arg=$ac_var=$ac_new_val ;;
-+    esac
-+    case " $ac_configure_args " in
-+      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
-+      *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
-+    esac
-+  fi
-+done
-+if $ac_cache_corrupted; then
-+  { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
-+echo "$as_me: error: changes in the environment can compromise the build" >&2;}
-+  { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
-+echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+
-+
-+
-+
-+# Don't look for install-sh, etc. in ..
-+ac_aux_dir=
-+for ac_dir in . "$srcdir"/.; do
-+  if test -f "$ac_dir/install-sh"; then
-+    ac_aux_dir=$ac_dir
-+    ac_install_sh="$ac_aux_dir/install-sh -c"
-+    break
-+  elif test -f "$ac_dir/install.sh"; then
-+    ac_aux_dir=$ac_dir
-+    ac_install_sh="$ac_aux_dir/install.sh -c"
-+    break
-+  elif test -f "$ac_dir/shtool"; then
-+    ac_aux_dir=$ac_dir
-+    ac_install_sh="$ac_aux_dir/shtool install -c"
-+    break
-+  fi
-+done
-+if test -z "$ac_aux_dir"; then
-+  { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in . \"$srcdir\"/." >&5
-+echo "$as_me: error: cannot find install-sh or install.sh in . \"$srcdir\"/." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+# These three variables are undocumented and unsupported,
-+# and are intended to be withdrawn in a future Autoconf release.
-+# They can cause serious problems if a builder's source tree is in a directory
-+# whose full name contains unusual characters.
-+ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
-+ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
-+ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
-+
-+
-+
-+# Make sure we can run config.sub.
-+$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
-+  { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5
-+echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+{ echo "$as_me:$LINENO: checking build system type" >&5
-+echo $ECHO_N "checking build system type... $ECHO_C" >&6; }
-+if test "${ac_cv_build+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_build_alias=$build_alias
-+test "x$ac_build_alias" = x &&
-+  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
-+test "x$ac_build_alias" = x &&
-+  { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
-+echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
-+   { (exit 1); exit 1; }; }
-+ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
-+  { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5
-+echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_build" >&5
-+echo "${ECHO_T}$ac_cv_build" >&6; }
-+case $ac_cv_build in
-+*-*-*) ;;
-+*) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5
-+echo "$as_me: error: invalid value of canonical build" >&2;}
-+   { (exit 1); exit 1; }; };;
-+esac
-+build=$ac_cv_build
-+ac_save_IFS=$IFS; IFS='-'
-+set x $ac_cv_build
-+shift
-+build_cpu=$1
-+build_vendor=$2
-+shift; shift
-+# Remember, the first character of IFS is used to create $*,
-+# except with old shells:
-+build_os=$*
-+IFS=$ac_save_IFS
-+case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
-+
-+
-+{ echo "$as_me:$LINENO: checking host system type" >&5
-+echo $ECHO_N "checking host system type... $ECHO_C" >&6; }
-+if test "${ac_cv_host+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test "x$host_alias" = x; then
-+  ac_cv_host=$ac_cv_build
-+else
-+  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
-+    { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5
-+echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_host" >&5
-+echo "${ECHO_T}$ac_cv_host" >&6; }
-+case $ac_cv_host in
-+*-*-*) ;;
-+*) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5
-+echo "$as_me: error: invalid value of canonical host" >&2;}
-+   { (exit 1); exit 1; }; };;
-+esac
-+host=$ac_cv_host
-+ac_save_IFS=$IFS; IFS='-'
-+set x $ac_cv_host
-+shift
-+host_cpu=$1
-+host_vendor=$2
-+shift; shift
-+# Remember, the first character of IFS is used to create $*,
-+# except with old shells:
-+host_os=$*
-+IFS=$ac_save_IFS
-+case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
-+
-+
-+{ echo "$as_me:$LINENO: checking target system type" >&5
-+echo $ECHO_N "checking target system type... $ECHO_C" >&6; }
-+if test "${ac_cv_target+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test "x$target_alias" = x; then
-+  ac_cv_target=$ac_cv_host
-+else
-+  ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
-+    { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5
-+echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_target" >&5
-+echo "${ECHO_T}$ac_cv_target" >&6; }
-+case $ac_cv_target in
-+*-*-*) ;;
-+*) { { echo "$as_me:$LINENO: error: invalid value of canonical target" >&5
-+echo "$as_me: error: invalid value of canonical target" >&2;}
-+   { (exit 1); exit 1; }; };;
-+esac
-+target=$ac_cv_target
-+ac_save_IFS=$IFS; IFS='-'
-+set x $ac_cv_target
-+shift
-+target_cpu=$1
-+target_vendor=$2
-+shift; shift
-+# Remember, the first character of IFS is used to create $*,
-+# except with old shells:
-+target_os=$*
-+IFS=$ac_save_IFS
-+case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac
-+
-+
-+# The aliases save the names the user supplied, while $host etc.
-+# will get canonicalized.
-+test -n "$target_alias" &&
-+  test "$program_prefix$program_suffix$program_transform_name" = \
-+    NONENONEs,x,x, &&
-+  program_prefix=${target_alias}-
-+
-+am__api_version="1.7"
-+# Find a good install program.  We prefer a C program (faster),
-+# so one script is as good as another.  But avoid the broken or
-+# incompatible versions:
-+# SysV /etc/install, /usr/sbin/install
-+# SunOS /usr/etc/install
-+# IRIX /sbin/install
-+# AIX /bin/install
-+# AmigaOS /C/install, which installs bootblocks on floppy discs
-+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
-+# AFS /usr/afsws/bin/install, which mishandles nonexistent args
-+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
-+# OS/2's system install, which has a completely different semantic
-+# ./install, which can be erroneously created by make from ./install.sh.
-+{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
-+echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; }
-+if test -z "$INSTALL"; then
-+if test "${ac_cv_path_install+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  # Account for people who put trailing slashes in PATH elements.
-+case $as_dir/ in
-+  ./ | .// | /cC/* | \
-+  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
-+  ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
-+  /usr/ucb/* ) ;;
-+  *)
-+    # OSF1 and SCO ODT 3.0 have their own names for install.
-+    # Don't use installbsd from OSF since it installs stuff as root
-+    # by default.
-+    for ac_prog in ginstall scoinst install; do
-+      for ac_exec_ext in '' $ac_executable_extensions; do
-+	if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
-+	  if test $ac_prog = install &&
-+	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
-+	    # AIX install.  It has an incompatible calling convention.
-+	    :
-+	  elif test $ac_prog = install &&
-+	    grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
-+	    # program-specific install script used by HP pwplus--don't use.
-+	    :
-+	  else
-+	    ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
-+	    break 3
-+	  fi
-+	fi
-+      done
-+    done
-+    ;;
-+esac
-+done
-+IFS=$as_save_IFS
-+
-+
-+fi
-+  if test "${ac_cv_path_install+set}" = set; then
-+    INSTALL=$ac_cv_path_install
-+  else
-+    # As a last resort, use the slow shell script.  Don't cache a
-+    # value for INSTALL within a source directory, because that will
-+    # break other packages using the cache if that directory is
-+    # removed, or if the value is a relative name.
-+    INSTALL=$ac_install_sh
-+  fi
-+fi
-+{ echo "$as_me:$LINENO: result: $INSTALL" >&5
-+echo "${ECHO_T}$INSTALL" >&6; }
-+
-+# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
-+# It thinks the first close brace ends the variable substitution.
-+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
-+
-+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
-+
-+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
-+
-+{ echo "$as_me:$LINENO: checking whether build environment is sane" >&5
-+echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; }
-+# Just in case
-+sleep 1
-+echo timestamp > conftest.file
-+# Do `set' in a subshell so we don't clobber the current shell's
-+# arguments.  Must try -L first in case configure is actually a
-+# symlink; some systems play weird games with the mod time of symlinks
-+# (eg FreeBSD returns the mod time of the symlink's containing
-+# directory).
-+if (
-+   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
-+   if test "$*" = "X"; then
-+      # -L didn't work.
-+      set X `ls -t $srcdir/configure conftest.file`
-+   fi
-+   rm -f conftest.file
-+   if test "$*" != "X $srcdir/configure conftest.file" \
-+      && test "$*" != "X conftest.file $srcdir/configure"; then
-+
-+      # If neither matched, then we have a broken ls.  This can happen
-+      # if, for instance, CONFIG_SHELL is bash and it inherits a
-+      # broken ls alias from the environment.  This has actually
-+      # happened.  Such a system could not be considered "sane".
-+      { { echo "$as_me:$LINENO: error: ls -t appears to fail.  Make sure there is not a broken
-+alias in your environment" >&5
-+echo "$as_me: error: ls -t appears to fail.  Make sure there is not a broken
-+alias in your environment" >&2;}
-+   { (exit 1); exit 1; }; }
-+   fi
-+
-+   test "$2" = conftest.file
-+   )
-+then
-+   # Ok.
-+   :
-+else
-+   { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
-+Check your system clock" >&5
-+echo "$as_me: error: newly created file is older than distributed files!
-+Check your system clock" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+test "$program_prefix" != NONE &&
-+  program_transform_name="s&^&$program_prefix&;$program_transform_name"
-+# Use a double $ so make ignores it.
-+test "$program_suffix" != NONE &&
-+  program_transform_name="s&\$&$program_suffix&;$program_transform_name"
-+# Double any \ or $.  echo might interpret backslashes.
-+# By default was `s,x,x', remove it if useless.
-+cat <<\_ACEOF >conftest.sed
-+s/[\\$]/&&/g;s/;s,x,x,$//
-+_ACEOF
-+program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
-+rm -f conftest.sed
-+
-+
-+# expand $ac_aux_dir to an absolute path
-+am_aux_dir=`cd $ac_aux_dir && pwd`
-+
-+test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
-+# Use eval to expand $SHELL
-+if eval "$MISSING --run true"; then
-+  am_missing_run="$MISSING --run "
-+else
-+  am_missing_run=
-+  { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
-+echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
-+fi
-+
-+for ac_prog in gawk mawk nawk awk
-+do
-+  # Extract the first word of "$ac_prog", so it can be a program name with args.
-+set dummy $ac_prog; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_AWK+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$AWK"; then
-+  ac_cv_prog_AWK="$AWK" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_AWK="$ac_prog"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+AWK=$ac_cv_prog_AWK
-+if test -n "$AWK"; then
-+  { echo "$as_me:$LINENO: result: $AWK" >&5
-+echo "${ECHO_T}$AWK" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+  test -n "$AWK" && break
-+done
-+
-+{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
-+echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
-+set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
-+if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.make <<\_ACEOF
-+SHELL = /bin/sh
-+all:
-+	@echo '@@@%%%=$(MAKE)=@@@%%%'
-+_ACEOF
-+# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
-+case `${MAKE-make} -f conftest.make 2>/dev/null` in
-+  *@@@%%%=?*=@@@%%%*)
-+    eval ac_cv_prog_make_${ac_make}_set=yes;;
-+  *)
-+    eval ac_cv_prog_make_${ac_make}_set=no;;
-+esac
-+rm -f conftest.make
-+fi
-+if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
-+  { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+  SET_MAKE=
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+  SET_MAKE="MAKE=${MAKE-make}"
-+fi
-+
-+rm -rf .tst 2>/dev/null
-+mkdir .tst 2>/dev/null
-+if test -d .tst; then
-+  am__leading_dot=.
-+else
-+  am__leading_dot=_
-+fi
-+rmdir .tst 2>/dev/null
-+
-+ # test to see if srcdir already configured
-+if test "`cd $srcdir && pwd`" != "`pwd`" &&
-+   test -f $srcdir/config.status; then
-+  { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
-+echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+# test whether we have cygpath
-+if test -z "$CYGPATH_W"; then
-+  if (cygpath --version) >/dev/null 2>/dev/null; then
-+    CYGPATH_W='cygpath -w'
-+  else
-+    CYGPATH_W=echo
-+  fi
-+fi
-+
-+
-+# Define the identity of the package.
-+ PACKAGE='lustre-ldiskfs'
-+ VERSION='3.0.9'
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE "$PACKAGE"
-+_ACEOF
-+
-+ 
-+cat >>confdefs.h <<_ACEOF
-+@%:@define VERSION "$VERSION"
-+_ACEOF
-+
-+# Some tools Automake needs.
-+
-+ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
-+
-+
-+AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
-+
-+
-+AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
-+
-+
-+AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
-+
-+
-+MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
-+
-+
-+AMTAR=${AMTAR-"${am_missing_run}tar"}
-+
-+install_sh=${install_sh-"$am_aux_dir/install-sh"}
-+
-+# Installed binaries are usually stripped using `strip' when the user
-+# run `make install-strip'.  However `strip' might not be the right
-+# tool to use in cross-compilation environments, therefore Automake
-+# will honor the `STRIP' environment variable to overrule this program.
-+if test "$cross_compiling" != no; then
-+  if test -n "$ac_tool_prefix"; then
-+  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
-+set dummy ${ac_tool_prefix}strip; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_STRIP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$STRIP"; then
-+  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+STRIP=$ac_cv_prog_STRIP
-+if test -n "$STRIP"; then
-+  { echo "$as_me:$LINENO: result: $STRIP" >&5
-+echo "${ECHO_T}$STRIP" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+fi
-+if test -z "$ac_cv_prog_STRIP"; then
-+  ac_ct_STRIP=$STRIP
-+  # Extract the first word of "strip", so it can be a program name with args.
-+set dummy strip; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$ac_ct_STRIP"; then
-+  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_ac_ct_STRIP="strip"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
-+if test -n "$ac_ct_STRIP"; then
-+  { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
-+echo "${ECHO_T}$ac_ct_STRIP" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+  if test "x$ac_ct_STRIP" = x; then
-+    STRIP=":"
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&5
-+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    STRIP=$ac_ct_STRIP
-+  fi
-+else
-+  STRIP="$ac_cv_prog_STRIP"
-+fi
-+
-+fi
-+INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
-+
-+# We need awk for the "check" target.  The system "awk" is bad on
-+# some platforms.
-+
-+
-+
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+if test -n "$ac_tool_prefix"; then
-+  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
-+set dummy ${ac_tool_prefix}gcc; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$CC"; then
-+  ac_cv_prog_CC="$CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_CC="${ac_tool_prefix}gcc"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+CC=$ac_cv_prog_CC
-+if test -n "$CC"; then
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+fi
-+if test -z "$ac_cv_prog_CC"; then
-+  ac_ct_CC=$CC
-+  # Extract the first word of "gcc", so it can be a program name with args.
-+set dummy gcc; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$ac_ct_CC"; then
-+  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_ac_ct_CC="gcc"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+ac_ct_CC=$ac_cv_prog_ac_ct_CC
-+if test -n "$ac_ct_CC"; then
-+  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
-+echo "${ECHO_T}$ac_ct_CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+  if test "x$ac_ct_CC" = x; then
-+    CC=""
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&5
-+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    CC=$ac_ct_CC
-+  fi
-+else
-+  CC="$ac_cv_prog_CC"
-+fi
-+
-+if test -z "$CC"; then
-+          if test -n "$ac_tool_prefix"; then
-+    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
-+set dummy ${ac_tool_prefix}cc; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$CC"; then
-+  ac_cv_prog_CC="$CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_CC="${ac_tool_prefix}cc"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+CC=$ac_cv_prog_CC
-+if test -n "$CC"; then
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+  fi
-+fi
-+if test -z "$CC"; then
-+  # Extract the first word of "cc", so it can be a program name with args.
-+set dummy cc; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$CC"; then
-+  ac_cv_prog_CC="$CC" # Let the user override the test.
-+else
-+  ac_prog_rejected=no
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
-+       ac_prog_rejected=yes
-+       continue
-+     fi
-+    ac_cv_prog_CC="cc"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+if test $ac_prog_rejected = yes; then
-+  # We found a bogon in the path, so make sure we never use it.
-+  set dummy $ac_cv_prog_CC
-+  shift
-+  if test $@%:@ != 0; then
-+    # We chose a different compiler from the bogus one.
-+    # However, it has the same basename, so the bogon will be chosen
-+    # first if we set CC to just the basename; use the full file name.
-+    shift
-+    ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
-+  fi
-+fi
-+fi
-+fi
-+CC=$ac_cv_prog_CC
-+if test -n "$CC"; then
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+fi
-+if test -z "$CC"; then
-+  if test -n "$ac_tool_prefix"; then
-+  for ac_prog in cl.exe
-+  do
-+    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
-+set dummy $ac_tool_prefix$ac_prog; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$CC"; then
-+  ac_cv_prog_CC="$CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+CC=$ac_cv_prog_CC
-+if test -n "$CC"; then
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+    test -n "$CC" && break
-+  done
-+fi
-+if test -z "$CC"; then
-+  ac_ct_CC=$CC
-+  for ac_prog in cl.exe
-+do
-+  # Extract the first word of "$ac_prog", so it can be a program name with args.
-+set dummy $ac_prog; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$ac_ct_CC"; then
-+  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_ac_ct_CC="$ac_prog"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+ac_ct_CC=$ac_cv_prog_ac_ct_CC
-+if test -n "$ac_ct_CC"; then
-+  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
-+echo "${ECHO_T}$ac_ct_CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+  test -n "$ac_ct_CC" && break
-+done
-+
-+  if test "x$ac_ct_CC" = x; then
-+    CC=""
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&5
-+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    CC=$ac_ct_CC
-+  fi
-+fi
-+
-+fi
-+
-+
-+test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: no acceptable C compiler found in \$PATH
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+# Provide some information about the compiler.
-+echo "$as_me:$LINENO: checking for C compiler version" >&5
-+ac_compiler=`set X $ac_compile; echo $2`
-+{ (ac_try="$ac_compiler --version >&5"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compiler --version >&5") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }
-+{ (ac_try="$ac_compiler -v >&5"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compiler -v >&5") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }
-+{ (ac_try="$ac_compiler -V >&5"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compiler -V >&5") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }
-+
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+ac_clean_files_save=$ac_clean_files
-+ac_clean_files="$ac_clean_files a.out a.exe b.out"
-+# Try to create an executable without -o first, disregard a.out.
-+# It will help us diagnose broken compilers, and finding out an intuition
-+# of exeext.
-+{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
-+echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; }
-+ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
-+#
-+# List of possible output files, starting from the most likely.
-+# The algorithm is not robust to junk in `.', hence go to wildcards (a.*)
-+# only as a last resort.  b.out is created by i960 compilers.
-+ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out'
-+#
-+# The IRIX 6 linker writes into existing files which may not be
-+# executable, retaining their permissions.  Remove them first so a
-+# subsequent execution test works.
-+ac_rmfiles=
-+for ac_file in $ac_files
-+do
-+  case $ac_file in
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
-+    * ) ac_rmfiles="$ac_rmfiles $ac_file";;
-+  esac
-+done
-+rm -f $ac_rmfiles
-+
-+if { (ac_try="$ac_link_default"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link_default") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; then
-+  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
-+# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
-+# in a Makefile.  We should not override ac_cv_exeext if it was cached,
-+# so that the user can short-circuit this test for compilers unknown to
-+# Autoconf.
-+for ac_file in $ac_files ''
-+do
-+  test -f "$ac_file" || continue
-+  case $ac_file in
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj )
-+	;;
-+    [ab].out )
-+	# We found the default executable, but exeext='' is most
-+	# certainly right.
-+	break;;
-+    *.* )
-+        if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
-+	then :; else
-+	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
-+	fi
-+	# We set ac_cv_exeext here because the later test for it is not
-+	# safe: cross compilers may not add the suffix if given an `-o'
-+	# argument, so we may need to know it at that point already.
-+	# Even if this section looks crufty: it has the advantage of
-+	# actually working.
-+	break;;
-+    * )
-+	break;;
-+  esac
-+done
-+test "$ac_cv_exeext" = no && ac_cv_exeext=
-+
-+else
-+  ac_file=''
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $ac_file" >&5
-+echo "${ECHO_T}$ac_file" >&6; }
-+if test -z "$ac_file"; then
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: C compiler cannot create executables
-+See \`config.log' for more details." >&2;}
-+   { (exit 77); exit 77; }; }
-+fi
-+
-+ac_exeext=$ac_cv_exeext
-+
-+# Check that the compiler produces executables we can run.  If not, either
-+# the compiler is broken, or we cross compile.
-+{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5
-+echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; }
-+# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
-+# If not cross compiling, check that we can run a simple program.
-+if test "$cross_compiling" != yes; then
-+  if { ac_try='./$ac_file'
-+  { (case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_try") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+    cross_compiling=no
-+  else
-+    if test "$cross_compiling" = maybe; then
-+	cross_compiling=yes
-+    else
-+	{ { echo "$as_me:$LINENO: error: cannot run C compiled programs.
-+If you meant to cross compile, use \`--host'.
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: cannot run C compiled programs.
-+If you meant to cross compile, use \`--host'.
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+    fi
-+  fi
-+fi
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+rm -f a.out a.exe conftest$ac_cv_exeext b.out
-+ac_clean_files=$ac_clean_files_save
-+# Check that the compiler produces executables we can run.  If not, either
-+# the compiler is broken, or we cross compile.
-+{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
-+echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
-+{ echo "$as_me:$LINENO: result: $cross_compiling" >&5
-+echo "${ECHO_T}$cross_compiling" >&6; }
-+
-+{ echo "$as_me:$LINENO: checking for suffix of executables" >&5
-+echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; then
-+  # If both `conftest.exe' and `conftest' are `present' (well, observable)
-+# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
-+# work properly (i.e., refer to `conftest.exe'), while it won't with
-+# `rm'.
-+for ac_file in conftest.exe conftest conftest.*; do
-+  test -f "$ac_file" || continue
-+  case $ac_file in
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
-+    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
-+	  break;;
-+    * ) break;;
-+  esac
-+done
-+else
-+  { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+rm -f conftest$ac_cv_exeext
-+{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
-+echo "${ECHO_T}$ac_cv_exeext" >&6; }
-+
-+rm -f conftest.$ac_ext
-+EXEEXT=$ac_cv_exeext
-+ac_exeext=$EXEEXT
-+{ echo "$as_me:$LINENO: checking for suffix of object files" >&5
-+echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; }
-+if test "${ac_cv_objext+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.o conftest.obj
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; then
-+  for ac_file in conftest.o conftest.obj conftest.*; do
-+  test -f "$ac_file" || continue;
-+  case $ac_file in
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;
-+    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
-+       break;;
-+  esac
-+done
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: cannot compute suffix of object files: cannot compile
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+rm -f conftest.$ac_cv_objext conftest.$ac_ext
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
-+echo "${ECHO_T}$ac_cv_objext" >&6; }
-+OBJEXT=$ac_cv_objext
-+ac_objext=$OBJEXT
-+{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
-+echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; }
-+if test "${ac_cv_c_compiler_gnu+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+#ifndef __GNUC__
-+       choke me
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_compiler_gnu=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_compiler_gnu=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+ac_cv_c_compiler_gnu=$ac_compiler_gnu
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
-+echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; }
-+GCC=`test $ac_compiler_gnu = yes && echo yes`
-+ac_test_CFLAGS=${CFLAGS+set}
-+ac_save_CFLAGS=$CFLAGS
-+{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
-+echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_cc_g+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_save_c_werror_flag=$ac_c_werror_flag
-+   ac_c_werror_flag=yes
-+   ac_cv_prog_cc_g=no
-+   CFLAGS="-g"
-+   cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_prog_cc_g=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	CFLAGS=""
-+      cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  :
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_c_werror_flag=$ac_save_c_werror_flag
-+	 CFLAGS="-g"
-+	 cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_prog_cc_g=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+   ac_c_werror_flag=$ac_save_c_werror_flag
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
-+echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }
-+if test "$ac_test_CFLAGS" = set; then
-+  CFLAGS=$ac_save_CFLAGS
-+elif test $ac_cv_prog_cc_g = yes; then
-+  if test "$GCC" = yes; then
-+    CFLAGS="-g -O2"
-+  else
-+    CFLAGS="-g"
-+  fi
-+else
-+  if test "$GCC" = yes; then
-+    CFLAGS="-O2"
-+  else
-+    CFLAGS=
-+  fi
-+fi
-+{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5
-+echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_cc_c89+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_cv_prog_cc_c89=no
-+ac_save_CC=$CC
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <stdarg.h>
-+#include <stdio.h>
-+#include <sys/types.h>
-+#include <sys/stat.h>
-+/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
-+struct buf { int x; };
-+FILE * (*rcsopen) (struct buf *, struct stat *, int);
-+static char *e (p, i)
-+     char **p;
-+     int i;
-+{
-+  return p[i];
-+}
-+static char *f (char * (*g) (char **, int), char **p, ...)
-+{
-+  char *s;
-+  va_list v;
-+  va_start (v,p);
-+  s = g (p, va_arg (v,int));
-+  va_end (v);
-+  return s;
-+}
-+
-+/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
-+   function prototypes and stuff, but not '\xHH' hex character constants.
-+   These don't provoke an error unfortunately, instead are silently treated
-+   as 'x'.  The following induces an error, until -std is added to get
-+   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
-+   array size at least.  It's necessary to write '\x00'==0 to get something
-+   that's true only with -std.  */
-+int osf4_cc_array ['\x00' == 0 ? 1 : -1];
-+
-+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
-+   inside strings and character constants.  */
-+#define FOO(x) 'x'
-+int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
-+
-+int test (int i, double x);
-+struct s1 {int (*f) (int a);};
-+struct s2 {int (*f) (double a);};
-+int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
-+int argc;
-+char **argv;
-+int
-+main ()
-+{
-+return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
-+	-Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
-+do
-+  CC="$ac_save_CC $ac_arg"
-+  rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_prog_cc_c89=$ac_arg
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext 
-+  test "x$ac_cv_prog_cc_c89" != "xno" && break
-+done
-+rm -f conftest.$ac_ext
-+CC=$ac_save_CC
-+
-+fi
-+# AC_CACHE_VAL
-+case "x$ac_cv_prog_cc_c89" in
-+  x)
-+    { echo "$as_me:$LINENO: result: none needed" >&5
-+echo "${ECHO_T}none needed" >&6; } ;;
-+  xno)
-+    { echo "$as_me:$LINENO: result: unsupported" >&5
-+echo "${ECHO_T}unsupported" >&6; } ;;
-+  *)
-+    CC="$CC $ac_cv_prog_cc_c89"
-+    { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5
-+echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;;
-+esac
-+
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+DEPDIR="${am__leading_dot}deps"
-+
-+ac_config_commands="$ac_config_commands depfiles"
-+
-+
-+am_make=${MAKE-make}
-+cat > confinc << 'END'
-+am__doit:
-+	@echo done
-+.PHONY: am__doit
-+END
-+# If we don't find an include directive, just comment out the code.
-+{ echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
-+echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; }
-+am__include="#"
-+am__quote=
-+_am_result=none
-+# First try GNU make style include.
-+echo "include confinc" > confmf
-+# We grep out `Entering directory' and `Leaving directory'
-+# messages which can occur if `w' ends up in MAKEFLAGS.
-+# In particular we don't look at `^make:' because GNU make might
-+# be invoked under some other name (usually "gmake"), in which
-+# case it prints its new name instead of `make'.
-+if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
-+   am__include=include
-+   am__quote=
-+   _am_result=GNU
-+fi
-+# Now try BSD make style include.
-+if test "$am__include" = "#"; then
-+   echo '.include "confinc"' > confmf
-+   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
-+      am__include=.include
-+      am__quote="\""
-+      _am_result=BSD
-+   fi
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: result: $_am_result" >&5
-+echo "${ECHO_T}$_am_result" >&6; }
-+rm -f confinc confmf
-+
-+# Check whether --enable-dependency-tracking was given.
-+if test "${enable_dependency_tracking+set}" = set; then
-+  enableval=$enable_dependency_tracking; 
-+fi
-+
-+if test "x$enable_dependency_tracking" != xno; then
-+  am_depcomp="$ac_aux_dir/depcomp"
-+  AMDEPBACKSLASH='\'
-+fi
-+
-+
-+if test "x$enable_dependency_tracking" != xno; then
-+  AMDEP_TRUE=
-+  AMDEP_FALSE='#'
-+else
-+  AMDEP_TRUE='#'
-+  AMDEP_FALSE=
-+fi
-+
-+
-+
-+
-+depcc="$CC"   am_compiler_list=
-+
-+{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
-+echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; }
-+if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
-+  # We make a subdir and do the tests there.  Otherwise we can end up
-+  # making bogus files that we don't know about and never remove.  For
-+  # instance it was reported that on HP-UX the gcc test will end up
-+  # making a dummy file named `D' -- because `-MD' means `put the output
-+  # in D'.
-+  mkdir conftest.dir
-+  # Copy depcomp to subdir because otherwise we won't find it if we're
-+  # using a relative directory.
-+  cp "$am_depcomp" conftest.dir
-+  cd conftest.dir
-+  # We will build objects and dependencies in a subdirectory because
-+  # it helps to detect inapplicable dependency modes.  For instance
-+  # both Tru64's cc and ICC support -MD to output dependencies as a
-+  # side effect of compilation, but ICC will put the dependencies in
-+  # the current directory while Tru64 will put them in the object
-+  # directory.
-+  mkdir sub
-+
-+  am_cv_CC_dependencies_compiler_type=none
-+  if test "$am_compiler_list" = ""; then
-+     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
-+  fi
-+  for depmode in $am_compiler_list; do
-+    # Setup a source with many dependencies, because some compilers
-+    # like to wrap large dependency lists on column 80 (with \), and
-+    # we should not choose a depcomp mode which is confused by this.
-+    #
-+    # We need to recreate these files for each test, as the compiler may
-+    # overwrite some of them when testing with obscure command lines.
-+    # This happens at least with the AIX C compiler.
-+    : > sub/conftest.c
-+    for i in 1 2 3 4 5 6; do
-+      echo '#include "conftst'$i'.h"' >> sub/conftest.c
-+      : > sub/conftst$i.h
-+    done
-+    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
-+
-+    case $depmode in
-+    nosideeffect)
-+      # after this tag, mechanisms are not by side-effect, so they'll
-+      # only be used when explicitly requested
-+      if test "x$enable_dependency_tracking" = xyes; then
-+	continue
-+      else
-+	break
-+      fi
-+      ;;
-+    none) break ;;
-+    esac
-+    # We check with `-c' and `-o' for the sake of the "dashmstdout"
-+    # mode.  It turns out that the SunPro C++ compiler does not properly
-+    # handle `-M -o', and we need to detect this.
-+    if depmode=$depmode \
-+       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
-+       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
-+       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
-+         >/dev/null 2>conftest.err &&
-+       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
-+       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
-+       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
-+      # icc doesn't choke on unknown options, it will just issue warnings
-+      # (even with -Werror).  So we grep stderr for any message
-+      # that says an option was ignored.
-+      if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
-+        am_cv_CC_dependencies_compiler_type=$depmode
-+        break
-+      fi
-+    fi
-+  done
-+
-+  cd ..
-+  rm -rf conftest.dir
-+else
-+  am_cv_CC_dependencies_compiler_type=none
-+fi
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
-+echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
-+CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
-+
-+
-+
-+if 
-+  test "x$enable_dependency_tracking" != xno \
-+  && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
-+  am__fastdepCC_TRUE=
-+  am__fastdepCC_FALSE='#'
-+else
-+  am__fastdepCC_TRUE='#'
-+  am__fastdepCC_FALSE=
-+fi
-+
-+
-+
-+case $target_os in
-+	linux*)
-+		lb_target_os="linux"
-+		;;
-+	darwin*)
-+		lb_target_os="darwin"
-+		;;
-+	solaris*)
-+		lb_target_os="SunOS"
-+		;;esac
-+
-+
-+INCLUDE_RULES="include $PWD/Rules"
-+
-+
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
-+echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; }
-+# On Suns, sometimes $CPP names a directory.
-+if test -n "$CPP" && test -d "$CPP"; then
-+  CPP=
-+fi
-+if test -z "$CPP"; then
-+  if test "${ac_cv_prog_CPP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+      # Double quotes because CPP needs to be expanded
-+    for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
-+    do
-+      ac_preproc_ok=false
-+for ac_c_preproc_warn_flag in '' yes
-+do
-+  # Use a header file that comes with gcc, so configuring glibc
-+  # with a fresh cross-compiler works.
-+  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-+  # <limits.h> exists even on freestanding compilers.
-+  # On the NeXT, cc -E runs the code through the compiler's parser,
-+  # not just through cpp. "Syntax error" is here to catch this case.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@ifdef __STDC__
-+@%:@ include <limits.h>
-+@%:@else
-+@%:@ include <assert.h>
-+@%:@endif
-+		     Syntax error
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  :
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  # Broken: fails on valid input.
-+continue
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+
-+  # OK, works on sane cases.  Now check whether nonexistent headers
-+  # can be detected and how.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <ac_nonexistent.h>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  # Broken: success on invalid input.
-+continue
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  # Passes both tests.
-+ac_preproc_ok=:
-+break
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+
-+done
-+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-+rm -f conftest.err conftest.$ac_ext
-+if $ac_preproc_ok; then
-+  break
-+fi
-+
-+    done
-+    ac_cv_prog_CPP=$CPP
-+  
-+fi
-+  CPP=$ac_cv_prog_CPP
-+else
-+  ac_cv_prog_CPP=$CPP
-+fi
-+{ echo "$as_me:$LINENO: result: $CPP" >&5
-+echo "${ECHO_T}$CPP" >&6; }
-+ac_preproc_ok=false
-+for ac_c_preproc_warn_flag in '' yes
-+do
-+  # Use a header file that comes with gcc, so configuring glibc
-+  # with a fresh cross-compiler works.
-+  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-+  # <limits.h> exists even on freestanding compilers.
-+  # On the NeXT, cc -E runs the code through the compiler's parser,
-+  # not just through cpp. "Syntax error" is here to catch this case.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@ifdef __STDC__
-+@%:@ include <limits.h>
-+@%:@else
-+@%:@ include <assert.h>
-+@%:@endif
-+		     Syntax error
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  :
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  # Broken: fails on valid input.
-+continue
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+
-+  # OK, works on sane cases.  Now check whether nonexistent headers
-+  # can be detected and how.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <ac_nonexistent.h>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  # Broken: success on invalid input.
-+continue
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  # Passes both tests.
-+ac_preproc_ok=:
-+break
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+
-+done
-+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-+rm -f conftest.err conftest.$ac_ext
-+if $ac_preproc_ok; then
-+  :
-+else
-+  { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+
-+
-+{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5
-+echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; }
-+if test "${ac_cv_path_GREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  # Extract the first word of "grep ggrep" to use in msg output
-+if test -z "$GREP"; then
-+set dummy grep ggrep; ac_prog_name=$2
-+if test "${ac_cv_path_GREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_path_GREP_found=false
-+# Loop through the user's path and test for each of PROGNAME-LIST
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_prog in grep ggrep; do
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+    ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
-+    { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
-+    # Check for GNU ac_path_GREP and select it if it is found.
-+  # Check for GNU $ac_path_GREP
-+case `"$ac_path_GREP" --version 2>&1` in
-+*GNU*)
-+  ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
-+*)
-+  ac_count=0
-+  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
-+  while :
-+  do
-+    cat "conftest.in" "conftest.in" >"conftest.tmp"
-+    mv "conftest.tmp" "conftest.in"
-+    cp "conftest.in" "conftest.nl"
-+    echo 'GREP' >> "conftest.nl"
-+    "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
-+    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
-+    ac_count=`expr $ac_count + 1`
-+    if test $ac_count -gt ${ac_path_GREP_max-0}; then
-+      # Best one so far, save it but keep looking for a better one
-+      ac_cv_path_GREP="$ac_path_GREP"
-+      ac_path_GREP_max=$ac_count
-+    fi
-+    # 10*(2^10) chars as input seems more than enough
-+    test $ac_count -gt 10 && break
-+  done
-+  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
-+esac
-+
-+
-+    $ac_path_GREP_found && break 3
-+  done
-+done
-+
-+done
-+IFS=$as_save_IFS
-+
-+
-+fi
-+
-+GREP="$ac_cv_path_GREP"
-+if test -z "$GREP"; then
-+  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
-+echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+else
-+  ac_cv_path_GREP=$GREP
-+fi
-+
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5
-+echo "${ECHO_T}$ac_cv_path_GREP" >&6; }
-+ GREP="$ac_cv_path_GREP"
-+ 
-+
-+{ echo "$as_me:$LINENO: checking for egrep" >&5
-+echo $ECHO_N "checking for egrep... $ECHO_C" >&6; }
-+if test "${ac_cv_path_EGREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
-+   then ac_cv_path_EGREP="$GREP -E"
-+   else
-+     # Extract the first word of "egrep" to use in msg output
-+if test -z "$EGREP"; then
-+set dummy egrep; ac_prog_name=$2
-+if test "${ac_cv_path_EGREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_path_EGREP_found=false
-+# Loop through the user's path and test for each of PROGNAME-LIST
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_prog in egrep; do
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+    ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
-+    { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
-+    # Check for GNU ac_path_EGREP and select it if it is found.
-+  # Check for GNU $ac_path_EGREP
-+case `"$ac_path_EGREP" --version 2>&1` in
-+*GNU*)
-+  ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
-+*)
-+  ac_count=0
-+  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
-+  while :
-+  do
-+    cat "conftest.in" "conftest.in" >"conftest.tmp"
-+    mv "conftest.tmp" "conftest.in"
-+    cp "conftest.in" "conftest.nl"
-+    echo 'EGREP' >> "conftest.nl"
-+    "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
-+    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
-+    ac_count=`expr $ac_count + 1`
-+    if test $ac_count -gt ${ac_path_EGREP_max-0}; then
-+      # Best one so far, save it but keep looking for a better one
-+      ac_cv_path_EGREP="$ac_path_EGREP"
-+      ac_path_EGREP_max=$ac_count
-+    fi
-+    # 10*(2^10) chars as input seems more than enough
-+    test $ac_count -gt 10 && break
-+  done
-+  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
-+esac
-+
-+
-+    $ac_path_EGREP_found && break 3
-+  done
-+done
-+
-+done
-+IFS=$as_save_IFS
-+
-+
-+fi
-+
-+EGREP="$ac_cv_path_EGREP"
-+if test -z "$EGREP"; then
-+  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
-+echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+else
-+  ac_cv_path_EGREP=$EGREP
-+fi
-+
-+
-+   fi
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5
-+echo "${ECHO_T}$ac_cv_path_EGREP" >&6; }
-+ EGREP="$ac_cv_path_EGREP"
-+ 
-+
-+{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5
-+echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
-+if test "${ac_cv_header_stdc+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <stdlib.h>
-+#include <stdarg.h>
-+#include <string.h>
-+#include <float.h>
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_header_stdc=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_cv_header_stdc=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+
-+if test $ac_cv_header_stdc = yes; then
-+  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <string.h>
-+
-+_ACEOF
-+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
-+  $EGREP "memchr" >/dev/null 2>&1; then
-+  :
-+else
-+  ac_cv_header_stdc=no
-+fi
-+rm -f conftest*
-+
-+fi
-+
-+if test $ac_cv_header_stdc = yes; then
-+  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <stdlib.h>
-+
-+_ACEOF
-+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
-+  $EGREP "free" >/dev/null 2>&1; then
-+  :
-+else
-+  ac_cv_header_stdc=no
-+fi
-+rm -f conftest*
-+
-+fi
-+
-+if test $ac_cv_header_stdc = yes; then
-+  # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
-+  if test "$cross_compiling" = yes; then
-+  :
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <ctype.h>
-+#include <stdlib.h>
-+#if ((' ' & 0x0FF) == 0x020)
-+# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
-+# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
-+#else
-+# define ISLOWER(c) \
-+		   (('a' <= (c) && (c) <= 'i') \
-+		     || ('j' <= (c) && (c) <= 'r') \
-+		     || ('s' <= (c) && (c) <= 'z'))
-+# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
-+#endif
-+
-+#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
-+int
-+main ()
-+{
-+  int i;
-+  for (i = 0; i < 256; i++)
-+    if (XOR (islower (i), ISLOWER (i))
-+	|| toupper (i) != TOUPPER (i))
-+      return 2;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-+  { (case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_try") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  :
-+else
-+  echo "$as_me: program exited with status $ac_status" >&5
-+echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+( exit $ac_status )
-+ac_cv_header_stdc=no
-+fi
-+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
-+fi
-+
-+
-+fi
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
-+echo "${ECHO_T}$ac_cv_header_stdc" >&6; }
-+if test $ac_cv_header_stdc = yes; then
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define STDC_HEADERS 1
-+_ACEOF
-+
-+fi
-+
-+# On IRIX 5.3, sys/types and inttypes.h are conflicting.
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
-+		  inttypes.h stdint.h unistd.h
-+do
-+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
-+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
-+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+
-+@%:@include <$ac_header>
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  eval "$as_ac_Header=yes"
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	eval "$as_ac_Header=no"
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+ac_res=`eval echo '${'$as_ac_Header'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_ac_Header'}'` = yes; then
-+  cat >>confdefs.h <<_ACEOF
-+@%:@define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
-+_ACEOF
-+ 
-+fi
-+
-+done
-+
-+
-+if test -n "$ac_tool_prefix"; then
-+  # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
-+set dummy ${ac_tool_prefix}ranlib; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_RANLIB+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$RANLIB"; then
-+  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+RANLIB=$ac_cv_prog_RANLIB
-+if test -n "$RANLIB"; then
-+  { echo "$as_me:$LINENO: result: $RANLIB" >&5
-+echo "${ECHO_T}$RANLIB" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+fi
-+if test -z "$ac_cv_prog_RANLIB"; then
-+  ac_ct_RANLIB=$RANLIB
-+  # Extract the first word of "ranlib", so it can be a program name with args.
-+set dummy ranlib; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$ac_ct_RANLIB"; then
-+  ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_ac_ct_RANLIB="ranlib"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
-+if test -n "$ac_ct_RANLIB"; then
-+  { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
-+echo "${ECHO_T}$ac_ct_RANLIB" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+  if test "x$ac_ct_RANLIB" = x; then
-+    RANLIB=":"
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&5
-+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    RANLIB=$ac_ct_RANLIB
-+  fi
-+else
-+  RANLIB="$ac_cv_prog_RANLIB"
-+fi
-+
-+{ echo "$as_me:$LINENO: checking for buggy compiler" >&5
-+echo $ECHO_N "checking for buggy compiler... $ECHO_C" >&6; }
-+CC_VERSION=`$CC -v 2>&1 | grep "^gcc version"`
-+bad_cc() {
-+	{ echo "$as_me:$LINENO: result: buggy compiler found!" >&5
-+echo "${ECHO_T}buggy compiler found!" >&6; }
-+	echo
-+	echo "   '$CC_VERSION'"
-+	echo "  has been known to generate bad code, "
-+	echo "  please get an updated compiler."
-+	{ { echo "$as_me:$LINENO: error: sorry" >&5
-+echo "$as_me: error: sorry" >&2;}
-+   { (exit 1); exit 1; }; }
-+}
-+case "$CC_VERSION" in
-+	"gcc version 2.95"*)
-+		bad_cc
-+		;;
-+	# ost_pack_niobuf putting 64bit NTOH temporaries on the stack
-+	# without "sub    LB_PROG_CCxc,%esp" to protect the stack from being
-+	# stomped on by interrupts (bug 606)
-+	"gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-98)")
-+		bad_cc
-+		;;
-+	# mandrake's similar sub 0xc compiler bug
-+	# http://marc.theaimsgroup.com/?l=linux-kernel&m=104748366226348&w=2
-+	"gcc version 2.96 20000731 (Mandrake Linux 8.1 2.96-0.62mdk)")
-+		bad_cc
-+		;;
-+	*)
-+		{ echo "$as_me:$LINENO: result: no known problems" >&5
-+echo "${ECHO_T}no known problems" >&6; }
-+		;;
-+esac
-+
-+# ---------  unsigned long long sane? -------
-+{ echo "$as_me:$LINENO: checking for unsigned long long" >&5
-+echo $ECHO_N "checking for unsigned long long... $ECHO_C" >&6; }
-+if test "${ac_cv_type_unsigned_long_long+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+typedef unsigned long long ac__type_new_;
-+int
-+main ()
-+{
-+if ((ac__type_new_ *) 0)
-+  return 0;
-+if (sizeof (ac__type_new_))
-+  return 0;
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_type_unsigned_long_long=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_cv_type_unsigned_long_long=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_type_unsigned_long_long" >&5
-+echo "${ECHO_T}$ac_cv_type_unsigned_long_long" >&6; }
-+
-+# The cast to long int works around a bug in the HP C Compiler
-+# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
-+# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
-+# This bug is HP SR number 8606223364.
-+{ echo "$as_me:$LINENO: checking size of unsigned long long" >&5
-+echo $ECHO_N "checking size of unsigned long long... $ECHO_C" >&6; }
-+if test "${ac_cv_sizeof_unsigned_long_long+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test "$cross_compiling" = yes; then
-+  # Depending upon the size, compute the lo and hi bounds.
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+   typedef unsigned long long ac__type_sizeof_;
-+int
-+main ()
-+{
-+static int test_array @<:@1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)@:>@;
-+test_array @<:@0@:>@ = 0
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_lo=0 ac_mid=0
-+  while :; do
-+    cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+   typedef unsigned long long ac__type_sizeof_;
-+int
-+main ()
-+{
-+static int test_array @<:@1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)@:>@;
-+test_array @<:@0@:>@ = 0
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_hi=$ac_mid; break
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_lo=`expr $ac_mid + 1`
-+			if test $ac_lo -le $ac_mid; then
-+			  ac_lo= ac_hi=
-+			  break
-+			fi
-+			ac_mid=`expr 2 '*' $ac_mid + 1`
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+  done
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+   typedef unsigned long long ac__type_sizeof_;
-+int
-+main ()
-+{
-+static int test_array @<:@1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)@:>@;
-+test_array @<:@0@:>@ = 0
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_hi=-1 ac_mid=-1
-+  while :; do
-+    cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+   typedef unsigned long long ac__type_sizeof_;
-+int
-+main ()
-+{
-+static int test_array @<:@1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)@:>@;
-+test_array @<:@0@:>@ = 0
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_lo=$ac_mid; break
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_hi=`expr '(' $ac_mid ')' - 1`
-+			if test $ac_mid -le $ac_hi; then
-+			  ac_lo= ac_hi=
-+			  break
-+			fi
-+			ac_mid=`expr 2 '*' $ac_mid`
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+  done
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_lo= ac_hi=
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+# Binary search between lo and hi bounds.
-+while test "x$ac_lo" != "x$ac_hi"; do
-+  ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+   typedef unsigned long long ac__type_sizeof_;
-+int
-+main ()
-+{
-+static int test_array @<:@1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)@:>@;
-+test_array @<:@0@:>@ = 0
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_hi=$ac_mid
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_lo=`expr '(' $ac_mid ')' + 1`
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+done
-+case $ac_lo in
-+?*) ac_cv_sizeof_unsigned_long_long=$ac_lo;;
-+'') if test "$ac_cv_type_unsigned_long_long" = yes; then
-+     { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long long)
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: cannot compute sizeof (unsigned long long)
-+See \`config.log' for more details." >&2;}
-+   { (exit 77); exit 77; }; }
-+   else
-+     ac_cv_sizeof_unsigned_long_long=0
-+   fi ;;
-+esac
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+$ac_includes_default
-+   typedef unsigned long long ac__type_sizeof_;
-+static long int longval () { return (long int) (sizeof (ac__type_sizeof_)); }
-+static unsigned long int ulongval () { return (long int) (sizeof (ac__type_sizeof_)); }
-+@%:@include <stdio.h>
-+@%:@include <stdlib.h>
-+int
-+main ()
-+{
-+
-+  FILE *f = fopen ("conftest.val", "w");
-+  if (! f)
-+    return 1;
-+  if (((long int) (sizeof (ac__type_sizeof_))) < 0)
-+    {
-+      long int i = longval ();
-+      if (i != ((long int) (sizeof (ac__type_sizeof_))))
-+	return 1;
-+      fprintf (f, "%ld\n", i);
-+    }
-+  else
-+    {
-+      unsigned long int i = ulongval ();
-+      if (i != ((long int) (sizeof (ac__type_sizeof_))))
-+	return 1;
-+      fprintf (f, "%lu\n", i);
-+    }
-+  return ferror (f) || fclose (f) != 0;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-+  { (case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_try") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  ac_cv_sizeof_unsigned_long_long=`cat conftest.val`
-+else
-+  echo "$as_me: program exited with status $ac_status" >&5
-+echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+( exit $ac_status )
-+if test "$ac_cv_type_unsigned_long_long" = yes; then
-+     { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long long)
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: cannot compute sizeof (unsigned long long)
-+See \`config.log' for more details." >&2;}
-+   { (exit 77); exit 77; }; }
-+   else
-+     ac_cv_sizeof_unsigned_long_long=0
-+   fi
-+fi
-+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
-+fi
-+rm -f conftest.val
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_sizeof_unsigned_long_long" >&5
-+echo "${ECHO_T}$ac_cv_sizeof_unsigned_long_long" >&6; }
-+
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define SIZEOF_UNSIGNED_LONG_LONG $ac_cv_sizeof_unsigned_long_long
-+_ACEOF
-+
-+
-+echo "---> size SIZEOF $SIZEOF_unsigned_long_long"
-+echo "---> size SIZEOF $ac_cv_sizeof_unsigned_long_long"
-+if test $ac_cv_sizeof_unsigned_long_long != 8 ; then
-+        { { echo "$as_me:$LINENO: error: ** we assume that sizeof(long long) == 8.  Tell phil at clusterfs.com" >&5
-+echo "$as_me: error: ** we assume that sizeof(long long) == 8.  Tell phil at clusterfs.com" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+if test $target_cpu == "powerpc64"; then
-+	{ echo "$as_me:$LINENO: WARNING: set compiler with -m64" >&5
-+echo "$as_me: WARNING: set compiler with -m64" >&2;}
-+	CFLAGS="$CFLAGS -m64"
-+	CC="$CC -m64"
-+fi
-+
-+CPPFLAGS="-I$PWD/$LIBCFS_INCLUDE_DIR -I$PWD/lnet/include -I$PWD/lustre/include $CPPFLAGS"
-+
-+LLCPPFLAGS="-D__arch_lib__ -D_LARGEFILE64_SOURCE=1"
-+
-+
-+# Add _GNU_SOURCE for strnlen on linux
-+LLCFLAGS="-g -Wall -fPIC -D_GNU_SOURCE"
-+
-+
-+# everyone builds against lnet and lustre
-+EXTRA_KCFLAGS="$EXTRA_KCFLAGS -g -I$PWD/$LIBCFS_INCLUDE_DIR -I$PWD/lnet/include -I$PWD/lustre/include"
-+
-+
-+
-+
-+#
-+# LC_TARGET_SUPPORTED
-+#
-+# is the target os supported?
-+#
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to build kernel modules" >&5
-+echo $ECHO_N "checking whether to build kernel modules... $ECHO_C" >&6; }
-+# Check whether --enable-modules was given.
-+if test "${enable_modules+set}" = set; then
-+  enableval=$enable_modules; 
-+else
-+  case $target_os in
-+	linux* | darwin*)
-+enable_modules='yes'
-+		;;
-+	*)
-+enable_modules='no'
-+		;;
-+esac
-+
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_modules" >&5
-+echo "${ECHO_T}$enable_modules" >&6; }
-+
-+if test x$enable_modules = xyes ; then
-+	{ echo "$as_me:$LINENO: checking for Linux sources" >&5
-+echo $ECHO_N "checking for Linux sources... $ECHO_C" >&6; }
-+
-+# Check whether --with-linux was given.
-+if test "${with_linux+set}" = set; then
-+  withval=$with_linux; 
-+		if ! [[ $with_linux = /* ]]; then
-+			{ { echo "$as_me:$LINENO: error: You must provide an absolute pathname to the --with-linux= option." >&5
-+echo "$as_me: error: You must provide an absolute pathname to the --with-linux= option." >&2;}
-+   { (exit 1); exit 1; }; }
-+		else
-+			LINUX=$with_linux
-+		fi
-+	
-+else
-+  LINUX=/usr/src/linux
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $LINUX" >&5
-+echo "${ECHO_T}$LINUX" >&6; }
-+
-+
-+# -------- check for linux --------
-+as_lb_File=`echo "lb_cv_file_$LINUX" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX" >&5
-+echo $ECHO_N "checking for $LINUX... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  { { echo "$as_me:$LINENO: error: Kernel source $LINUX could not be found." >&5
-+echo "$as_me: error: Kernel source $LINUX could not be found." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+# -------- linux objects (for 2.6) --
-+{ echo "$as_me:$LINENO: checking for Linux objects dir" >&5
-+echo $ECHO_N "checking for Linux objects dir... $ECHO_C" >&6; }
-+
-+# Check whether --with-linux-obj was given.
-+if test "${with_linux_obj+set}" = set; then
-+  withval=$with_linux_obj; LINUX_OBJ=$with_linux_obj
-+else
-+  LINUX_OBJ=$LINUX
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $LINUX_OBJ" >&5
-+echo "${ECHO_T}$LINUX_OBJ" >&6; }
-+
-+
-+# -------- check for .config --------
-+
-+# Check whether --with-linux-config was given.
-+if test "${with_linux_config+set}" = set; then
-+  withval=$with_linux_config; LINUX_CONFIG=$with_linux_config
-+else
-+  LINUX_CONFIG=$LINUX_OBJ/.config
-+fi
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking for /boot/kernel.h" >&5
-+echo $ECHO_N "checking for /boot/kernel.h... $ECHO_C" >&6; }
-+if test "${lb_cv_file__boot_kernel_h+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "/boot/kernel.h"; then
-+  lb_cv_file__boot_kernel_h=yes
-+else
-+  lb_cv_file__boot_kernel_h=no
-+fi
-+fi
-+{ echo "$as_me:$LINENO: result: $lb_cv_file__boot_kernel_h" >&5
-+echo "${ECHO_T}$lb_cv_file__boot_kernel_h" >&6; }
-+if test $lb_cv_file__boot_kernel_h = yes; then
-+  KERNEL_SOURCE_HEADER='/boot/kernel.h'
-+else
-+  { echo "$as_me:$LINENO: checking for /var/adm/running-kernel.h" >&5
-+echo $ECHO_N "checking for /var/adm/running-kernel.h... $ECHO_C" >&6; }
-+if test "${lb_cv_file__var_adm_running_kernel_h+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "/var/adm/running-kernel.h"; then
-+  lb_cv_file__var_adm_running_kernel_h=yes
-+else
-+  lb_cv_file__var_adm_running_kernel_h=no
-+fi
-+fi
-+{ echo "$as_me:$LINENO: result: $lb_cv_file__var_adm_running_kernel_h" >&5
-+echo "${ECHO_T}$lb_cv_file__var_adm_running_kernel_h" >&6; }
-+if test $lb_cv_file__var_adm_running_kernel_h = yes; then
-+  KERNEL_SOURCE_HEADER='/var/adm/running-kernel.h'
-+fi
-+
-+fi
-+
-+
-+
-+# Check whether --with-kernel-source-header was given.
-+if test "${with_kernel_source_header+set}" = set; then
-+  withval=$with_kernel_source_header; KERNEL_SOURCE_HEADER=$with_kernel_source_header
-+fi
-+
-+
-+# ------------ .config exists ----------------
-+as_lb_File=`echo "lb_cv_file_$LINUX_CONFIG" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX_CONFIG" >&5
-+echo $ECHO_N "checking for $LINUX_CONFIG... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX_CONFIG"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  { { echo "$as_me:$LINENO: error: Kernel config could not be found.  If you are building from a kernel-source rpm consult build/README.kernel-source" >&5
-+echo "$as_me: error: Kernel config could not be found.  If you are building from a kernel-source rpm consult build/README.kernel-source" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+# ----------- make dep run? ------------------
-+# at 2.6.19 # $LINUX/include/linux/config.h is removed
-+# and at more old has only one line
-+# include <autoconf.h>
-+as_lb_File=`echo "lb_cv_file_$LINUX_OBJ/include/linux/autoconf.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX_OBJ/include/linux/autoconf.h" >&5
-+echo $ECHO_N "checking for $LINUX_OBJ/include/linux/autoconf.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX_OBJ/include/linux/autoconf.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  { { echo "$as_me:$LINENO: error: Run make config in $LINUX." >&5
-+echo "$as_me: error: Run make config in $LINUX." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+as_lb_File=`echo "lb_cv_file_$LINUX_OBJ/include/linux/version.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX_OBJ/include/linux/version.h" >&5
-+echo $ECHO_N "checking for $LINUX_OBJ/include/linux/version.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX_OBJ/include/linux/version.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  :
-+else
-+  { { echo "$as_me:$LINENO: error: Run make config in $LINUX." >&5
-+echo "$as_me: error: Run make config in $LINUX." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+# ------------ rhconfig.h includes runtime-generated bits --
-+# red hat kernel-source checks
-+
-+# we know this exists after the check above.  if the user
-+# tarred up the tree and ran make dep etc. in it, then
-+# version.h gets overwritten with a standard linux one.
-+
-+if grep rhconfig $LINUX_OBJ/include/linux/version.h >/dev/null ; then
-+	# This is a clean kernel-source tree, we need to
-+	# enable extensive workarounds to get this to build
-+	# modules
-+	as_lb_File=`echo "lb_cv_file_$KERNEL_SOURCE_HEADER" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $KERNEL_SOURCE_HEADER" >&5
-+echo $ECHO_N "checking for $KERNEL_SOURCE_HEADER... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$KERNEL_SOURCE_HEADER"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  if test $KERNEL_SOURCE_HEADER = '/boot/kernel.h' ; then
-+			{ echo "$as_me:$LINENO: WARNING: Using /boot/kernel.h from RUNNING kernel." >&5
-+echo "$as_me: WARNING: Using /boot/kernel.h from RUNNING kernel." >&2;}
-+			{ echo "$as_me:$LINENO: WARNING: If this is not what you want, use --with-kernel-source-header." >&5
-+echo "$as_me: WARNING: If this is not what you want, use --with-kernel-source-header." >&2;}
-+			{ echo "$as_me:$LINENO: WARNING: Consult build/README.kernel-source for details." >&5
-+echo "$as_me: WARNING: Consult build/README.kernel-source for details." >&2;}
-+		fi
-+else
-+  { { echo "$as_me:$LINENO: error: $KERNEL_SOURCE_HEADER not found.  Consult build/README.kernel-source for details." >&5
-+echo "$as_me: error: $KERNEL_SOURCE_HEADER not found.  Consult build/README.kernel-source for details." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+	EXTRA_KCFLAGS="-include $KERNEL_SOURCE_HEADER $EXTRA_KCFLAGS"
-+fi
-+
-+# this is needed before we can build modules
-+ARCH_UM=
-+UML_CFLAGS=
-+
-+{ echo "$as_me:$LINENO: checking if you are running user mode linux for $target_cpu" >&5
-+echo $ECHO_N "checking if you are running user mode linux for $target_cpu... $ECHO_C" >&6; }
-+if test -e $LINUX/include/asm-um ; then
-+	if test  X`ls -id $LINUX/include/asm/ 2>/dev/null | awk '{print $1}'` = X`ls -id $LINUX/include/asm-um 2>/dev/null | awk '{print $1}'` ; then
-+		ARCH_UM='ARCH=um'
-+		# see notes in Rules.in
-+		UML_CFLAGS='-O0'
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	else
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	fi
-+else
-+	{ echo "$as_me:$LINENO: result: no (asm-um missing)" >&5
-+echo "${ECHO_T}no (asm-um missing)" >&6; }
-+fi
-+
-+
-+
-+as_lb_File=`echo "lb_cv_file_$LINUX/include/linux/namei.h" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX/include/linux/namei.h" >&5
-+echo $ECHO_N "checking for $LINUX/include/linux/namei.h... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX/include/linux/namei.h"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  
-+        	linux25="yes"
-+		KMODEXT=".ko"
-+	
-+else
-+  
-+		KMODEXT=".o"
-+		linux25="no"
-+	
-+fi
-+
-+{ echo "$as_me:$LINENO: checking if you are using Linux 2.6" >&5
-+echo $ECHO_N "checking if you are using Linux 2.6... $ECHO_C" >&6; }
-+{ echo "$as_me:$LINENO: result: $linux25" >&5
-+echo "${ECHO_T}$linux25" >&6; }
-+
-+MODULE_TARGET="SUBDIRS"
-+if test $linux25 = "yes" ; then
-+	makerule="$PWD/build"
-+	{ echo "$as_me:$LINENO: checking for external module build support" >&5
-+echo $ECHO_N "checking for external module build support... $ECHO_C" >&6; }
-+	rm -f build/conftest.i
-+	cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main (void)
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d $makerule LUSTRE_KERNEL_TEST=conftest.i ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.i'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+			{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+		
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+			makerule="_module_$makerule"
-+			MODULE_TARGET="M"
-+			cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main (void)
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d $makerule LUSTRE_KERNEL_TEST=conftest.i ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.i'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+					{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+				
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+					{ { echo "$as_me:$LINENO: error: unknown; check config.log for details" >&5
-+echo "$as_me: error: unknown; check config.log for details" >&2;}
-+   { (exit 1); exit 1; }; }
-+				
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+		
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+else
-+	makerule="_dir_$PWD/build"
-+fi
-+
-+
-+
-+
-+
-+
-+# --- check that we can build modules at all
-+{ echo "$as_me:$LINENO: checking that modules can be built at all" >&5
-+echo $ECHO_N "checking that modules can be built at all... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main (void)
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	{ echo "$as_me:$LINENO: WARNING: Consult config.log for details." >&5
-+echo "$as_me: WARNING: Consult config.log for details." >&2;}
-+	{ echo "$as_me:$LINENO: WARNING: If you are trying to build with a kernel-source rpm, consult build/README.kernel-source" >&5
-+echo "$as_me: WARNING: If you are trying to build with a kernel-source rpm, consult build/README.kernel-source" >&2;}
-+	{ { echo "$as_me:$LINENO: error: Kernel modules cannot be built." >&5
-+echo "$as_me: error: Kernel modules cannot be built." >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+LINUXRELEASE=
-+rm -f build/conftest.i
-+{ echo "$as_me:$LINENO: checking for Linux release" >&5
-+echo $ECHO_N "checking for Linux release... $ECHO_C" >&6; }
-+if test -s $LINUX_OBJ/include/linux/utsrelease.h ; then
-+	LINUXRELEASEHEADER=utsrelease.h
-+else
-+	LINUXRELEASEHEADER=version.h
-+fi
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <linux/$LINUXRELEASEHEADER>
-+
-+int
-+main (void)
-+{
-+
-+	char *LINUXRELEASE;
-+	LINUXRELEASE=UTS_RELEASE;
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d 
-+	$makerule LUSTRE_KERNEL_TEST=conftest.i
-+ ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='
-+	test -s build/conftest.i
-+'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+	# LINUXRELEASE="UTS_RELEASE"
-+	eval $(grep "LINUXRELEASE=" build/conftest.i)
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	{ echo "$as_me:$LINENO: result: unknown" >&5
-+echo "${ECHO_T}unknown" >&6; }
-+	{ { echo "$as_me:$LINENO: error: Could not preprocess test program.  Consult config.log for details." >&5
-+echo "$as_me: error: Could not preprocess test program.  Consult config.log for details." >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+rm -f build/conftest.i
-+if test x$LINUXRELEASE = x ; then
-+	{ echo "$as_me:$LINENO: result: unknown" >&5
-+echo "${ECHO_T}unknown" >&6; }
-+	{ { echo "$as_me:$LINENO: error: Could not determine Linux release version from linux/version.h." >&5
-+echo "$as_me: error: Could not determine Linux release version from linux/version.h." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+{ echo "$as_me:$LINENO: result: $LINUXRELEASE" >&5
-+echo "${ECHO_T}$LINUXRELEASE" >&6; }
-+
-+
-+moduledir='/lib/modules/'$LINUXRELEASE/kernel
-+
-+
-+modulefsdir='$(moduledir)/fs/$(PACKAGE)'
-+
-+
-+modulenetdir='$(moduledir)/net/$(PACKAGE)'
-+
-+
-+# ------------ RELEASE --------------------------------
-+{ echo "$as_me:$LINENO: checking for Lustre release" >&5
-+echo $ECHO_N "checking for Lustre release... $ECHO_C" >&6; }
-+RELEASE="`echo ${LINUXRELEASE} | tr '-' '_'`_`date +%Y%m%d%H%M`"
-+{ echo "$as_me:$LINENO: result: $RELEASE" >&5
-+echo "${ECHO_T}$RELEASE" >&6; }
-+
-+
-+# check is redhat/suse kernels
-+{ echo "$as_me:$LINENO: checking that RedHat kernel" >&5
-+echo $ECHO_N "checking that RedHat kernel... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+		#include <linux/version.h>
-+	
-+int
-+main (void)
-+{
-+
-+		#ifndef RHEL_RELEASE_CODE
-+		#error "not redhat kernel"
-+		#endif
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+		RHEL_KENEL="yes"
-+		RHEL_KERNEL="yes"
-+		{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+	        { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_SUSE_KERNEL" >&5
-+echo $ECHO_N "checking if Linux was built with CONFIG_SUSE_KERNEL... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/autoconf.h>
-+
-+int
-+main (void)
-+{
-+
-+#ifndef CONFIG_SUSE_KERNEL
-+#error CONFIG_SUSE_KERNEL not #defined
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+SUSE_KERNEL="yes"
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking Linux kernel architecture" >&5
-+echo $ECHO_N "checking Linux kernel architecture... $ECHO_C" >&6; }
-+          if rm -f $PWD/build/arch
-+                 make -s --no-print-directory echoarch -f $PWD/build/Makefile \
-+                     LUSTRE_LINUX_CONFIG=$LINUX_CONFIG -C $LINUX $ARCH_UM \
-+                     ARCHFILE=$PWD/build/arch && LINUX_ARCH=`cat $PWD/build/arch`; then
-+  { echo "$as_me:$LINENO: result: $LINUX_ARCH" >&5
-+echo "${ECHO_T}$LINUX_ARCH" >&6; }
-+else
-+  { { echo "$as_me:$LINENO: error: Could not determine the kernel architecture." >&5
-+echo "$as_me: error: Could not determine the kernel architecture." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+          rm -f build/arch
-+{ echo "$as_me:$LINENO: checking name of module symbol version file" >&5
-+echo $ECHO_N "checking name of module symbol version file... $ECHO_C" >&6; }
-+	if grep -q Modules.symvers $LINUX/scripts/Makefile.modpost ; then
-+		SYMVERFILE=Modules.symvers
-+	else
-+		SYMVERFILE=Module.symvers
-+	fi
-+	{ echo "$as_me:$LINENO: result: $SYMVERFILE" >&5
-+echo "${ECHO_T}$SYMVERFILE" >&6; }
-+	
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_MODULES" >&5
-+echo $ECHO_N "checking if Linux was built with CONFIG_MODULES... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/autoconf.h>
-+
-+int
-+main (void)
-+{
-+
-+#ifndef CONFIG_MODULES
-+#error CONFIG_MODULES not #defined
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+	{ { echo "$as_me:$LINENO: error: module support is required to build Lustre kernel modules." >&5
-+echo "$as_me: error: module support is required to build Lustre kernel modules." >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_MODVERSIONS" >&5
-+echo $ECHO_N "checking if Linux was built with CONFIG_MODVERSIONS... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/autoconf.h>
-+
-+int
-+main (void)
-+{
-+
-+#ifndef CONFIG_MODVERSIONS
-+#error CONFIG_MODVERSIONS not #defined
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_KALLSYMS" >&5
-+echo $ECHO_N "checking if Linux was built with CONFIG_KALLSYMS... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/autoconf.h>
-+
-+int
-+main (void)
-+{
-+
-+#ifndef CONFIG_KALLSYMS
-+#error CONFIG_KALLSYMS not #defined
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+if test "x$ARCH_UM" = "x" ; then
-+	{ { echo "$as_me:$LINENO: error: Lustre requires that CONFIG_KALLSYMS is enabled in your kernel." >&5
-+echo "$as_me: error: Lustre requires that CONFIG_KALLSYMS is enabled in your kernel." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_KMOD" >&5
-+echo $ECHO_N "checking if Linux was built with CONFIG_KMOD... $ECHO_C" >&6; }
-+cat >conftest.c <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <linux/autoconf.h>
-+
-+int
-+main (void)
-+{
-+
-+#ifndef CONFIG_KMOD
-+#error CONFIG_KMOD not #defined
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
-+if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/arch/`uname -m|sed -e 's/ppc.*/powerpc/' -e 's/x86_64/x86/' -e 's/i.86/x86/'`/include -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } >/dev/null && { ac_try='test -s build/conftest.o'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+	{ echo "$as_me:$LINENO: WARNING: " >&5
-+echo "$as_me: WARNING: " >&2;}
-+	{ echo "$as_me:$LINENO: WARNING: Kernel module loading support is highly recommended." >&5
-+echo "$as_me: WARNING: Kernel module loading support is highly recommended." >&2;}
-+	{ echo "$as_me:$LINENO: WARNING: " >&5
-+echo "$as_me: WARNING: " >&2;}
-+
-+
-+fi
-+rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
-+
-+
-+#LB_LINUX_CONFIG_BIG_STACK
-+
-+# it's ugly to be doing anything with OFED outside of the lnet module, but
-+# this has to be done here so that the backports path is set before all of
-+# the LN_PROG_LINUX checks are done
-+{ echo "$as_me:$LINENO: checking whether to use any OFED backport headers" >&5
-+echo $ECHO_N "checking whether to use any OFED backport headers... $ECHO_C" >&6; }
-+# set default
-+
-+# Check whether --with-o2ib was given.
-+if test "${with_o2ib+set}" = set; then
-+  withval=$with_o2ib; 
-+		case $with_o2ib in
-+		yes)    O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
-+			ENABLEO2IB=2
-+			;;
-+		no)     ENABLEO2IB=0
-+			;;
-+		*)      O2IBPATHS=$with_o2ib
-+			ENABLEO2IB=3
-+			;;
-+		esac
-+	
-+else
-+  
-+		O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
-+		ENABLEO2IB=1
-+	
-+fi
-+
-+if test $ENABLEO2IB -eq 0; then
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+else
-+	o2ib_found=false
-+	for O2IBPATH in $O2IBPATHS; do
-+		if test \( -f ${O2IBPATH}/include/rdma/rdma_cm.h -a \
-+			   -f ${O2IBPATH}/include/rdma/ib_cm.h -a \
-+			   -f ${O2IBPATH}/include/rdma/ib_verbs.h -a \
-+			   -f ${O2IBPATH}/include/rdma/ib_fmr_pool.h \); then
-+			o2ib_found=true
-+			break
-+		fi
-+	done
-+	if ! $o2ib_found; then
-+		{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+		case $ENABLEO2IB in
-+			1) ;;
-+			2) { { echo "$as_me:$LINENO: error: kernel OpenIB gen2 headers not present" >&5
-+echo "$as_me: error: kernel OpenIB gen2 headers not present" >&2;}
-+   { (exit 1); exit 1; }; };;
-+			3) { { echo "$as_me:$LINENO: error: bad --with-o2ib path" >&5
-+echo "$as_me: error: bad --with-o2ib path" >&2;}
-+   { (exit 1); exit 1; }; };;
-+			*) { { echo "$as_me:$LINENO: error: internal error" >&5
-+echo "$as_me: error: internal error" >&2;}
-+   { (exit 1); exit 1; }; };;
-+		esac
-+	else
-+                if test -f $O2IBPATH/config.mk; then
-+			. $O2IBPATH/config.mk
-+                elif test -f $O2IBPATH/ofed_patch.mk; then
-+			. $O2IBPATH/ofed_patch.mk
-+		fi
-+		if test -n "$BACKPORT_INCLUDES"; then
-+			OFED_BACKPORT_PATH=`echo $BACKPORT_INCLUDES | sed "s#.*/src/ofa_kernel/#$O2IBPATH/#"`
-+			EXTRA_LNET_INCLUDE="-I$OFED_BACKPORT_PATH $EXTRA_LNET_INCLUDE"
-+			{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+		else
-+			{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+                fi
-+	fi
-+fi
-+
-+
-+if test x$linux25 = xyes ; then
-+	
-+# Find the modpost utility
-+as_lb_File=`echo "lb_cv_file_$LINUX_OBJ/scripts/mod/modpost" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX_OBJ/scripts/mod/modpost" >&5
-+echo $ECHO_N "checking for $LINUX_OBJ/scripts/mod/modpost... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX_OBJ/scripts/mod/modpost"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  MODPOST=$LINUX_OBJ/scripts/mod/modpost
-+else
-+  as_lb_File=`echo "lb_cv_file_$LINUX_OBJ/scripts/modpost" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for $LINUX_OBJ/scripts/modpost" >&5
-+echo $ECHO_N "checking for $LINUX_OBJ/scripts/modpost... $ECHO_C" >&6; }
-+if { as_var=$as_lb_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -r "$LINUX_OBJ/scripts/modpost"; then
-+  eval "$as_lb_File=yes"
-+else
-+  eval "$as_lb_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_lb_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_lb_File'}'` = yes; then
-+  MODPOST=$LINUX_OBJ/scripts/modpost
-+else
-+  { { echo "$as_me:$LINENO: error: modpost not found." >&5
-+echo "$as_me: error: modpost not found." >&2;}
-+   { (exit 1); exit 1; }; }
-+	
-+fi
-+
-+
-+fi
-+
-+
-+
-+# Ensure it can run
-+{ echo "$as_me:$LINENO: checking if modpost can be run" >&5
-+echo $ECHO_N "checking if modpost can be run... $ECHO_C" >&6; }
-+if $MODPOST ; then
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+else
-+	{ { echo "$as_me:$LINENO: error: modpost can not be run." >&5
-+echo "$as_me: error: modpost can not be run." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+# Check if modpost supports (and therefore requires) -m
-+{ echo "$as_me:$LINENO: checking if modpost supports -m" >&5
-+echo $ECHO_N "checking if modpost supports -m... $ECHO_C" >&6; }
-+if $MODPOST -m 2>/dev/null ; then
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	MODPOST_ARGS=-m
-+else
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+	MODPOST_ARGS=""
-+fi
-+
-+
-+fi
-+fi
-+
-+ac_config_headers="$ac_config_headers config.h"
-+
-+CPPFLAGS="-include $PWD/config.h $CPPFLAGS"
-+EXTRA_KCFLAGS="-include $PWD/config.h $EXTRA_KCFLAGS"
-+
-+
-+
-+# These allow Lustre Makefiles and autoMakefiles to be used unchanged.
-+
-+
-+if true; then
-+  MODULES_TRUE=
-+  MODULES_FALSE='#'
-+else
-+  MODULES_TRUE='#'
-+  MODULES_FALSE=
-+fi
-+
-+
-+
-+if true; then
-+  LINUX_TRUE=
-+  LINUX_FALSE='#'
-+else
-+  LINUX_TRUE='#'
-+  LINUX_FALSE=
-+fi
-+
-+
-+
-+if true; then
-+  DARWIN_TRUE=
-+  DARWIN_FALSE='#'
-+else
-+  DARWIN_TRUE='#'
-+  DARWIN_FALSE=
-+fi
-+
-+
-+
-+if true; then
-+  LINUX25_TRUE=
-+  LINUX25_FALSE='#'
-+else
-+  LINUX25_TRUE='#'
-+  LINUX25_FALSE=
-+fi
-+
-+
-+LDISKFSDIR="$PWD/ldiskfs"
-+
-+
-+{ echo "$as_me:$LINENO: checking whether to enable quilt for making ldiskfs" >&5
-+echo $ECHO_N "checking whether to enable quilt for making ldiskfs... $ECHO_C" >&6; }
-+# Check whether --enable-quilt was given.
-+if test "${enable_quilt+set}" = set; then
-+  enableval=$enable_quilt; 
-+else
-+  enable_quilt='yes'
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $enable_quilt" >&5
-+echo "${ECHO_T}$enable_quilt" >&6; }
-+
-+# Extract the first word of "patch", so it can be a program name with args.
-+set dummy patch; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_path_PATCH+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  case $PATCH in
-+  [\\/]* | ?:[\\/]*)
-+  ac_cv_path_PATCH="$PATCH" # Let the user override the test with a path.
-+  ;;
-+  *)
-+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_path_PATCH="$as_dir/$ac_word$ac_exec_ext"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+  test -z "$ac_cv_path_PATCH" && ac_cv_path_PATCH="no"
-+  ;;
-+esac
-+fi
-+PATCH=$ac_cv_path_PATCH
-+if test -n "$PATCH"; then
-+  { echo "$as_me:$LINENO: result: $PATCH" >&5
-+echo "${ECHO_T}$PATCH" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+
-+if test x$enable_quilt = xno ; then
-+    QUILT="no"
-+else
-+    # Extract the first word of "quilt", so it can be a program name with args.
-+set dummy quilt; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_path_QUILT+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  case $QUILT in
-+  [\\/]* | ?:[\\/]*)
-+  ac_cv_path_QUILT="$QUILT" # Let the user override the test with a path.
-+  ;;
-+  *)
-+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_path_QUILT="$as_dir/$ac_word$ac_exec_ext"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+  test -z "$ac_cv_path_QUILT" && ac_cv_path_QUILT="no"
-+  ;;
-+esac
-+fi
-+QUILT=$ac_cv_path_QUILT
-+if test -n "$QUILT"; then
-+  { echo "$as_me:$LINENO: result: $QUILT" >&5
-+echo "${ECHO_T}$QUILT" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+fi
-+
-+if test x$enable_ldiskfs$PATCH$QUILT = xyesnono ; then
-+	{ { echo "$as_me:$LINENO: error: Quilt or patch are needed to build the ldiskfs module" >&5
-+echo "$as_me: error: Quilt or patch are needed to build the ldiskfs module" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+
-+if test x$QUILT != xno; then
-+  USE_QUILT_TRUE=
-+  USE_QUILT_FALSE='#'
-+else
-+  USE_QUILT_TRUE='#'
-+  USE_QUILT_FALSE=
-+fi
-+
-+
-+
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_LDISKFS_FS_MODULE 1
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_LDISKFS_FS_XATTR 1
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_LDISKFS_FS_POSIX_ACL 1
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_LDISKFS_FS_SECURITY 1
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_LDISKFSDEV_FS_POSIX_ACL 1
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_LDISKFSDEV_FS_XATTR 1
-+_ACEOF
-+
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define CONFIG_LDISKFSDEV_FS_SECURITY 1
-+_ACEOF
-+
-+
-+
-+if test x$enable_ext4 = xyes ; then
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_EXT4_LDISKFS 1
-+_ACEOF
-+
-+	BACKFS=ext4
-+else
-+	BACKFS=ext3
-+fi
-+
-+
-+BACKFSU=${BACKFS/ext/EXT}
-+ # We need a Upper string
-+
-+
-+
-+if test x$enable_ext4 = xyes; then
-+  USE_EXT4_TRUE=
-+  USE_EXT4_FALSE='#'
-+else
-+  USE_EXT4_TRUE='#'
-+  USE_EXT4_FALSE=
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: checking which ldiskfs series to use" >&5
-+echo $ECHO_N "checking which ldiskfs series to use... $ECHO_C" >&6; }
-+case $LINUXRELEASE in
-+2.6.5*) LDISKFS_SERIES="2.6-suse.series" ;;
-+2.6.9*) LDISKFS_SERIES="2.6-rhel4.series" ;;
-+2.6.10-ac*) LDISKFS_SERIES="2.6-fc3.series" ;;
-+2.6.10*) LDISKFS_SERIES="2.6-rhel4.series" ;;
-+2.6.12*) LDISKFS_SERIES="2.6.12-vanilla.series" ;;
-+2.6.15*) LDISKFS_SERIES="2.6-fc5.series";;
-+2.6.16*) LDISKFS_SERIES="2.6-sles10.series";;
-+2.6.18*)
-+	if test x$RHEL_KENEL = xyes; then
-+                if test x$enable_ext4 = xyes; then
-+		        LDISKFS_SERIES="2.6-rhel5-ext4.series"
-+                else
-+		        LDISKFS_SERIES="2.6-rhel5.series"
-+                fi
-+	else 
-+	    if test -e $LINUX_OBJ/version.Debian; then
-+		LDISKFS_SERIES="2.6.18-debian.series"
-+	    else
-+		LDISKFS_SERIES="2.6.18-vanilla.series"
-+	    fi
-+	fi
-+	;;
-+2.6.22*) LDISKFS_SERIES="2.6.22-vanilla.series";;
-+2.6.27*) LDISKFS_SERIES="2.6-sles11.series";;
-+*) { echo "$as_me:$LINENO: WARNING: Unknown kernel version $LINUXRELEASE, fix ldiskfs/configure.ac" >&5
-+echo "$as_me: WARNING: Unknown kernel version $LINUXRELEASE, fix ldiskfs/configure.ac" >&2;}
-+esac
-+{ echo "$as_me:$LINENO: result: $LDISKFS_SERIES" >&5
-+echo "${ECHO_T}$LDISKFS_SERIES" >&6; }
-+
-+
-+
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with symbol d_rehash_cond exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol d_rehash_cond exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]d_rehash_cond[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in fs/dcache.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(d_rehash_cond\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_D_REHASH_COND 1
-+_ACEOF
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_D_REHASH_COND 1
-+_ACEOF
-+
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with symbol __d_rehash exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol __d_rehash exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]__d_rehash[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in fs/dcache.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(__d_rehash\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE___D_REHASH 1
-+_ACEOF
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE___D_REHASH 1
-+_ACEOF
-+
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with symbol d_move_locked exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol d_move_locked exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]d_move_locked[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in fs/dcache.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(d_move_locked\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_D_MOVE_LOCKED 1
-+_ACEOF
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_D_MOVE_LOCKED 1
-+_ACEOF
-+
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: checking if Linux was built with symbol __d_move exported" >&5
-+echo $ECHO_N "checking if Linux was built with symbol __d_move exported... $ECHO_C" >&6; }
-+grep -q -E '[[:space:]]__d_move[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
-+rc=$?
-+if test $rc -ne 0; then
-+    export=0
-+    for file in fs/dcache.c; do
-+    	grep -q -E "EXPORT_SYMBOL.*\(__d_move\)" "$LINUX/$file" 2>/dev/null
-+    	rc=$?
-+	if test $rc -eq 0; then
-+		export=1
-+		break;
-+	fi
-+    done
-+    if test $export -eq 0; then
-+    	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+    	
-+    else
-+    	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE___D_MOVE 1
-+_ACEOF
-+
-+    fi
-+else
-+    { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+    
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE___D_MOVE 1
-+_ACEOF
-+
-+fi
-+
-+
-+
-+ac_config_files="$ac_config_files Makefile autoMakefile Rules:build/Rules.in lustre-ldiskfs.spec"
-+
-+
-+ac_config_files="$ac_config_files ldiskfs/autoMakefile ldiskfs/Makefile"
-+
-+
-+MOSTLYCLEANFILES='.*.cmd .*.flags *.o *.ko *.mod.c .depend .*.1.* Modules.symvers Module.symvers'
-+
-+
-+cat >confcache <<\_ACEOF
-+# This file is a shell script that caches the results of configure
-+# tests run on this system so they can be shared between configure
-+# scripts and configure runs, see configure's option --config-cache.
-+# It is not useful on other systems.  If it contains results you don't
-+# want to keep, you may remove or edit it.
-+#
-+# config.status only pays attention to the cache file if you give it
-+# the --recheck option to rerun configure.
-+#
-+# `ac_cv_env_foo' variables (set or unset) will be overridden when
-+# loading this file, other *unset* `ac_cv_foo' will be assigned the
-+# following values.
-+
-+_ACEOF
-+
-+# The following way of writing the cache mishandles newlines in values,
-+# but we know of no workaround that is simple, portable, and efficient.
-+# So, we kill variables containing newlines.
-+# Ultrix sh set writes to stderr and can't be redirected directly,
-+# and sets the high bit in the cache file unless we assign to the vars.
-+(
-+  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
-+    eval ac_val=\$$ac_var
-+    case $ac_val in #(
-+    *${as_nl}*)
-+      case $ac_var in #(
-+      *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
-+echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
-+      esac
-+      case $ac_var in #(
-+      _ | IFS | as_nl) ;; #(
-+      *) $as_unset $ac_var ;;
-+      esac ;;
-+    esac
-+  done
-+
-+  (set) 2>&1 |
-+    case $as_nl`(ac_space=' '; set) 2>&1` in #(
-+    *${as_nl}ac_space=\ *)
-+      # `set' does not quote correctly, so add quotes (double-quote
-+      # substitution turns \\\\ into \\, and sed turns \\ into \).
-+      sed -n \
-+	"s/'/'\\\\''/g;
-+	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
-+      ;; #(
-+    *)
-+      # `set' quotes correctly as required by POSIX, so do not add quotes.
-+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
-+      ;;
-+    esac |
-+    sort
-+) |
-+  sed '
-+     /^ac_cv_env_/b end
-+     t clear
-+     :clear
-+     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
-+     t end
-+     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
-+     :end' >>confcache
-+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
-+  if test -w "$cache_file"; then
-+    test "x$cache_file" != "x/dev/null" &&
-+      { echo "$as_me:$LINENO: updating cache $cache_file" >&5
-+echo "$as_me: updating cache $cache_file" >&6;}
-+    cat confcache >$cache_file
-+  else
-+    { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
-+echo "$as_me: not updating unwritable cache $cache_file" >&6;}
-+  fi
-+fi
-+rm -f confcache
-+
-+test "x$prefix" = xNONE && prefix=$ac_default_prefix
-+# Let make expand exec_prefix.
-+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
-+
-+DEFS=-DHAVE_CONFIG_H
-+
-+ac_libobjs=
-+ac_ltlibobjs=
-+for ac_i in : $LIB@&t at OBJS; do test "x$ac_i" = x: && continue
-+  # 1. Remove the extension, and $U if already installed.
-+  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
-+  ac_i=`echo "$ac_i" | sed "$ac_script"`
-+  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
-+  #    will be set to the directory where LIBOBJS objects are built.
-+  ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext"
-+  ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo'
-+done
-+LIB@&t at OBJS=$ac_libobjs
-+
-+LTLIBOBJS=$ac_ltlibobjs
-+
-+
-+if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"AMDEP\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${MODULES_TRUE}" && test -z "${MODULES_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"MODULES\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"MODULES\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${LINUX_TRUE}" && test -z "${LINUX_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"LINUX\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"LINUX\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${DARWIN_TRUE}" && test -z "${DARWIN_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"DARWIN\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"DARWIN\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${LINUX25_TRUE}" && test -z "${LINUX25_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"LINUX25\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"LINUX25\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${USE_QUILT_TRUE}" && test -z "${USE_QUILT_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"USE_QUILT\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"USE_QUILT\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${USE_EXT4_TRUE}" && test -z "${USE_EXT4_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"USE_EXT4\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"USE_EXT4\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+: ${CONFIG_STATUS=./config.status}
-+ac_clean_files_save=$ac_clean_files
-+ac_clean_files="$ac_clean_files $CONFIG_STATUS"
-+{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
-+echo "$as_me: creating $CONFIG_STATUS" >&6;}
-+cat >$CONFIG_STATUS <<_ACEOF
-+#! $SHELL
-+# Generated by $as_me.
-+# Run this file to recreate the current configuration.
-+# Compiler output produced by configure, useful for debugging
-+# configure, is in config.log if it exists.
-+
-+debug=false
-+ac_cs_recheck=false
-+ac_cs_silent=false
-+SHELL=\${CONFIG_SHELL-$SHELL}
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+## --------------------- ##
-+## M4sh Initialization.  ##
-+## --------------------- ##
-+
-+# Be more Bourne compatible
-+DUALCASE=1; export DUALCASE # for MKS sh
-+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-+  emulate sh
-+  NULLCMD=:
-+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-+  # is contrary to our usage.  Disable this feature.
-+  alias -g '${1+"$@"}'='"$@"'
-+  setopt NO_GLOB_SUBST
-+else
-+  case `(set -o) 2>/dev/null` in
-+  *posix*) set -o posix ;;
-+esac
-+
-+fi
-+
-+
-+
-+
-+# PATH needs CR
-+# Avoid depending upon Character Ranges.
-+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-+as_cr_digits='0123456789'
-+as_cr_alnum=$as_cr_Letters$as_cr_digits
-+
-+# The user is always right.
-+if test "${PATH_SEPARATOR+set}" != set; then
-+  echo "#! /bin/sh" >conf$$.sh
-+  echo  "exit 0"   >>conf$$.sh
-+  chmod +x conf$$.sh
-+  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
-+    PATH_SEPARATOR=';'
-+  else
-+    PATH_SEPARATOR=:
-+  fi
-+  rm -f conf$$.sh
-+fi
-+
-+# Support unset when possible.
-+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
-+  as_unset=unset
-+else
-+  as_unset=false
-+fi
-+
-+
-+# IFS
-+# We need space, tab and new line, in precisely that order.  Quoting is
-+# there to prevent editors from complaining about space-tab.
-+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-+# splitting by setting IFS to empty value.)
-+as_nl='
-+'
-+IFS=" ""	$as_nl"
-+
-+# Find who we are.  Look in the path if we contain no directory separator.
-+case $0 in
-+  *[\\/]* ) as_myself=$0 ;;
-+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
-+done
-+IFS=$as_save_IFS
-+
-+     ;;
-+esac
-+# We did not find ourselves, most probably we were run as `sh COMMAND'
-+# in which case we are not to be found in the path.
-+if test "x$as_myself" = x; then
-+  as_myself=$0
-+fi
-+if test ! -f "$as_myself"; then
-+  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
-+  { (exit 1); exit 1; }
-+fi
-+
-+# Work around bugs in pre-3.0 UWIN ksh.
-+for as_var in ENV MAIL MAILPATH
-+do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+done
-+PS1='$ '
-+PS2='> '
-+PS4='+ '
-+
-+# NLS nuisances.
-+for as_var in \
-+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
-+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
-+  LC_TELEPHONE LC_TIME
-+do
-+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
-+    eval $as_var=C; export $as_var
-+  else
-+    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+  fi
-+done
-+
-+# Required to use basename.
-+if expr a : '\(a\)' >/dev/null 2>&1 &&
-+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
-+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
-+  as_basename=basename
-+else
-+  as_basename=false
-+fi
-+
-+
-+# Name of the executable.
-+as_me=`$as_basename -- "$0" ||
-+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
-+	 X"$0" : 'X\(//\)$' \| \
-+	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X/"$0" |
-+    sed '/^.*\/\([^/][^/]*\)\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\/\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\/\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+
-+# CDPATH.
-+$as_unset CDPATH
-+
-+
-+
-+  as_lineno_1=$LINENO
-+  as_lineno_2=$LINENO
-+  test "x$as_lineno_1" != "x$as_lineno_2" &&
-+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
-+
-+  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
-+  # uniformly replaced by the line number.  The first 'sed' inserts a
-+  # line-number line after each line using $LINENO; the second 'sed'
-+  # does the real work.  The second script uses 'N' to pair each
-+  # line-number line with the line containing $LINENO, and appends
-+  # trailing '-' during substitution so that $LINENO is not a special
-+  # case at line end.
-+  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
-+  # scripts with optimization help from Paolo Bonzini.  Blame Lee
-+  # E. McMahon (1931-1989) for sed's syntax.  :-)
-+  sed -n '
-+    p
-+    /[$]LINENO/=
-+  ' <$as_myself |
-+    sed '
-+      s/[$]LINENO.*/&-/
-+      t lineno
-+      b
-+      :lineno
-+      N
-+      :loop
-+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
-+      t loop
-+      s/-\n.*//
-+    ' >$as_me.lineno &&
-+  chmod +x "$as_me.lineno" ||
-+    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
-+   { (exit 1); exit 1; }; }
-+
-+  # Don't try to exec as it changes $[0], causing all sort of problems
-+  # (the dirname of $[0] is not the place where we might find the
-+  # original and so on.  Autoconf is especially sensitive to this).
-+  . "./$as_me.lineno"
-+  # Exit status is that of the last command.
-+  exit
-+}
-+
-+
-+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
-+  as_dirname=dirname
-+else
-+  as_dirname=false
-+fi
-+
-+ECHO_C= ECHO_N= ECHO_T=
-+case `echo -n x` in
-+-n*)
-+  case `echo 'x\c'` in
-+  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
-+  *)   ECHO_C='\c';;
-+  esac;;
-+*)
-+  ECHO_N='-n';;
-+esac
-+
-+if expr a : '\(a\)' >/dev/null 2>&1 &&
-+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
-+rm -f conf$$ conf$$.exe conf$$.file
-+if test -d conf$$.dir; then
-+  rm -f conf$$.dir/conf$$.file
-+else
-+  rm -f conf$$.dir
-+  mkdir conf$$.dir
-+fi
-+echo >conf$$.file
-+if ln -s conf$$.file conf$$ 2>/dev/null; then
-+  as_ln_s='ln -s'
-+  # ... but there are two gotchas:
-+  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
-+  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
-+  # In both cases, we have to default to `cp -p'.
-+  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-+    as_ln_s='cp -p'
-+elif ln conf$$.file conf$$ 2>/dev/null; then
-+  as_ln_s=ln
-+else
-+  as_ln_s='cp -p'
-+fi
-+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-+rmdir conf$$.dir 2>/dev/null
-+
-+if mkdir -p . 2>/dev/null; then
-+  as_mkdir_p=:
-+else
-+  test -d ./-p && rmdir ./-p
-+  as_mkdir_p=false
-+fi
-+
-+if test -x / >/dev/null 2>&1; then
-+  as_test_x='test -x'
-+else
-+  if ls -dL / >/dev/null 2>&1; then
-+    as_ls_L_option=L
-+  else
-+    as_ls_L_option=
-+  fi
-+  as_test_x='
-+    eval sh -c '\''
-+      if test -d "$1"; then
-+        test -d "$1/.";
-+      else
-+	case $1 in
-+        -*)set "./$1";;
-+	esac;
-+	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
-+	???[sx]*):;;*)false;;esac;fi
-+    '\'' sh
-+  '
-+fi
-+as_executable_p=$as_test_x
-+
-+# Sed expression to map a string onto a valid CPP name.
-+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-+
-+# Sed expression to map a string onto a valid variable name.
-+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-+
-+
-+exec 6>&1
-+
-+# Save the log message, to keep $[0] and so on meaningful, and to
-+# report actual input values of CONFIG_FILES etc. instead of their
-+# values after options handling.
-+ac_log="
-+This file was extended by Lustre ldiskfs $as_me 3.0.9, which was
-+generated by GNU Autoconf 2.61.  Invocation command line was
-+
-+  CONFIG_FILES    = $CONFIG_FILES
-+  CONFIG_HEADERS  = $CONFIG_HEADERS
-+  CONFIG_LINKS    = $CONFIG_LINKS
-+  CONFIG_COMMANDS = $CONFIG_COMMANDS
-+  $ $0 $@
-+
-+on `(hostname || uname -n) 2>/dev/null | sed 1q`
-+"
-+
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<_ACEOF
-+# Files that config.status was made for.
-+config_files="$ac_config_files"
-+config_headers="$ac_config_headers"
-+config_commands="$ac_config_commands"
-+
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+ac_cs_usage="\
-+\`$as_me' instantiates files from templates according to the
-+current configuration.
-+
-+Usage: $0 [OPTIONS] [FILE]...
-+
-+  -h, --help       print this help, then exit
-+  -V, --version    print version number and configuration settings, then exit
-+  -q, --quiet      do not print progress messages
-+  -d, --debug      don't remove temporary files
-+      --recheck    update $as_me by reconfiguring in the same conditions
-+  --file=FILE[:TEMPLATE]
-+		   instantiate the configuration file FILE
-+  --header=FILE[:TEMPLATE]
-+		   instantiate the configuration header FILE
-+
-+Configuration files:
-+$config_files
-+
-+Configuration headers:
-+$config_headers
-+
-+Configuration commands:
-+$config_commands
-+
-+Report bugs to <bug-autoconf at gnu.org>."
-+
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF
-+ac_cs_version="\\
-+Lustre ldiskfs config.status 3.0.9
-+configured by $0, generated by GNU Autoconf 2.61,
-+  with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
-+
-+Copyright (C) 2006 Free Software Foundation, Inc.
-+This config.status script is free software; the Free Software Foundation
-+gives unlimited permission to copy, distribute and modify it."
-+
-+ac_pwd='$ac_pwd'
-+srcdir='$srcdir'
-+INSTALL='$INSTALL'
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+# If no file are specified by the user, then we need to provide default
-+# value.  By we need to know if files were specified by the user.
-+ac_need_defaults=:
-+while test $# != 0
-+do
-+  case $1 in
-+  --*=*)
-+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
-+    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
-+    ac_shift=:
-+    ;;
-+  *)
-+    ac_option=$1
-+    ac_optarg=$2
-+    ac_shift=shift
-+    ;;
-+  esac
-+
-+  case $ac_option in
-+  # Handling of the options.
-+  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
-+    ac_cs_recheck=: ;;
-+  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
-+    echo "$ac_cs_version"; exit ;;
-+  --debug | --debu | --deb | --de | --d | -d )
-+    debug=: ;;
-+  --file | --fil | --fi | --f )
-+    $ac_shift
-+    CONFIG_FILES="$CONFIG_FILES $ac_optarg"
-+    ac_need_defaults=false;;
-+  --header | --heade | --head | --hea )
-+    $ac_shift
-+    CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
-+    ac_need_defaults=false;;
-+  --he | --h)
-+    # Conflict between --help and --header
-+    { echo "$as_me: error: ambiguous option: $1
-+Try \`$0 --help' for more information." >&2
-+   { (exit 1); exit 1; }; };;
-+  --help | --hel | -h )
-+    echo "$ac_cs_usage"; exit ;;
-+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-+  | -silent | --silent | --silen | --sile | --sil | --si | --s)
-+    ac_cs_silent=: ;;
-+
-+  # This is an error.
-+  -*) { echo "$as_me: error: unrecognized option: $1
-+Try \`$0 --help' for more information." >&2
-+   { (exit 1); exit 1; }; } ;;
-+
-+  *) ac_config_targets="$ac_config_targets $1"
-+     ac_need_defaults=false ;;
-+
-+  esac
-+  shift
-+done
-+
-+ac_configure_extra_args=
-+
-+if $ac_cs_silent; then
-+  exec 6>/dev/null
-+  ac_configure_extra_args="$ac_configure_extra_args --silent"
-+fi
-+
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF
-+if \$ac_cs_recheck; then
-+  echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
-+  CONFIG_SHELL=$SHELL
-+  export CONFIG_SHELL
-+  exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
-+fi
-+
-+_ACEOF
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+exec 5>>config.log
-+{
-+  echo
-+  sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX
-+@%:@@%:@ Running $as_me. @%:@@%:@
-+_ASBOX
-+  echo "$ac_log"
-+} >&5
-+
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF
-+#
-+# INIT-COMMANDS
-+#
-+AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
-+
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+
-+# Handling of arguments.
-+for ac_config_target in $ac_config_targets
-+do
-+  case $ac_config_target in
-+    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
-+    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
-+    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
-+    "autoMakefile") CONFIG_FILES="$CONFIG_FILES autoMakefile" ;;
-+    "Rules") CONFIG_FILES="$CONFIG_FILES Rules:build/Rules.in" ;;
-+    "lustre-ldiskfs.spec") CONFIG_FILES="$CONFIG_FILES lustre-ldiskfs.spec" ;;
-+    "ldiskfs/autoMakefile") CONFIG_FILES="$CONFIG_FILES ldiskfs/autoMakefile" ;;
-+    "ldiskfs/Makefile") CONFIG_FILES="$CONFIG_FILES ldiskfs/Makefile" ;;
-+
-+  *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
-+echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
-+   { (exit 1); exit 1; }; };;
-+  esac
-+done
-+
-+
-+# If the user did not use the arguments to specify the items to instantiate,
-+# then the envvar interface is used.  Set only those that are not.
-+# We use the long form for the default assignment because of an extremely
-+# bizarre bug on SunOS 4.1.3.
-+if $ac_need_defaults; then
-+  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
-+  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
-+  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
-+fi
-+
-+# Have a temporary directory for convenience.  Make it in the build tree
-+# simply because there is no reason against having it here, and in addition,
-+# creating and moving files from /tmp can sometimes cause problems.
-+# Hook for its removal unless debugging.
-+# Note that there is a small window in which the directory will not be cleaned:
-+# after its creation but before its name has been assigned to `$tmp'.
-+$debug ||
-+{
-+  tmp=
-+  trap 'exit_status=$?
-+  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
-+' 0
-+  trap '{ (exit 1); exit 1; }' 1 2 13 15
-+}
-+# Create a (secure) tmp directory for tmp files.
-+
-+{
-+  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
-+  test -n "$tmp" && test -d "$tmp"
-+}  ||
-+{
-+  tmp=./conf$$-$RANDOM
-+  (umask 077 && mkdir "$tmp")
-+} ||
-+{
-+   echo "$me: cannot create a temporary directory in ." >&2
-+   { (exit 1); exit 1; }
-+}
-+
-+#
-+# Set up the sed scripts for CONFIG_FILES section.
-+#
-+
-+# No need to generate the scripts if there are no CONFIG_FILES.
-+# This happens for instance when ./config.status config.h
-+if test -n "$CONFIG_FILES"; then
-+
-+_ACEOF
-+
-+
-+
-+ac_delim='%!_!# '
-+for ac_last_try in false false false false false :; do
-+  cat >conf$$subs.sed <<_ACEOF
-+SHELL!$SHELL$ac_delim
-+PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim
-+PACKAGE_NAME!$PACKAGE_NAME$ac_delim
-+PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim
-+PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim
-+PACKAGE_STRING!$PACKAGE_STRING$ac_delim
-+PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim
-+exec_prefix!$exec_prefix$ac_delim
-+prefix!$prefix$ac_delim
-+program_transform_name!$program_transform_name$ac_delim
-+bindir!$bindir$ac_delim
-+sbindir!$sbindir$ac_delim
-+libexecdir!$libexecdir$ac_delim
-+datarootdir!$datarootdir$ac_delim
-+datadir!$datadir$ac_delim
-+sysconfdir!$sysconfdir$ac_delim
-+sharedstatedir!$sharedstatedir$ac_delim
-+localstatedir!$localstatedir$ac_delim
-+includedir!$includedir$ac_delim
-+oldincludedir!$oldincludedir$ac_delim
-+docdir!$docdir$ac_delim
-+infodir!$infodir$ac_delim
-+htmldir!$htmldir$ac_delim
-+dvidir!$dvidir$ac_delim
-+pdfdir!$pdfdir$ac_delim
-+psdir!$psdir$ac_delim
-+libdir!$libdir$ac_delim
-+localedir!$localedir$ac_delim
-+mandir!$mandir$ac_delim
-+DEFS!$DEFS$ac_delim
-+ECHO_C!$ECHO_C$ac_delim
-+ECHO_N!$ECHO_N$ac_delim
-+ECHO_T!$ECHO_T$ac_delim
-+LIBS!$LIBS$ac_delim
-+build_alias!$build_alias$ac_delim
-+host_alias!$host_alias$ac_delim
-+target_alias!$target_alias$ac_delim
-+build!$build$ac_delim
-+build_cpu!$build_cpu$ac_delim
-+build_vendor!$build_vendor$ac_delim
-+build_os!$build_os$ac_delim
-+host!$host$ac_delim
-+host_cpu!$host_cpu$ac_delim
-+host_vendor!$host_vendor$ac_delim
-+host_os!$host_os$ac_delim
-+target!$target$ac_delim
-+target_cpu!$target_cpu$ac_delim
-+target_vendor!$target_vendor$ac_delim
-+target_os!$target_os$ac_delim
-+INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
-+INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
-+INSTALL_DATA!$INSTALL_DATA$ac_delim
-+CYGPATH_W!$CYGPATH_W$ac_delim
-+PACKAGE!$PACKAGE$ac_delim
-+VERSION!$VERSION$ac_delim
-+ACLOCAL!$ACLOCAL$ac_delim
-+AUTOCONF!$AUTOCONF$ac_delim
-+AUTOMAKE!$AUTOMAKE$ac_delim
-+AUTOHEADER!$AUTOHEADER$ac_delim
-+MAKEINFO!$MAKEINFO$ac_delim
-+AMTAR!$AMTAR$ac_delim
-+install_sh!$install_sh$ac_delim
-+STRIP!$STRIP$ac_delim
-+INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim
-+AWK!$AWK$ac_delim
-+SET_MAKE!$SET_MAKE$ac_delim
-+am__leading_dot!$am__leading_dot$ac_delim
-+CC!$CC$ac_delim
-+CFLAGS!$CFLAGS$ac_delim
-+LDFLAGS!$LDFLAGS$ac_delim
-+CPPFLAGS!$CPPFLAGS$ac_delim
-+ac_ct_CC!$ac_ct_CC$ac_delim
-+EXEEXT!$EXEEXT$ac_delim
-+OBJEXT!$OBJEXT$ac_delim
-+DEPDIR!$DEPDIR$ac_delim
-+am__include!$am__include$ac_delim
-+am__quote!$am__quote$ac_delim
-+AMDEP_TRUE!$AMDEP_TRUE$ac_delim
-+AMDEP_FALSE!$AMDEP_FALSE$ac_delim
-+AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim
-+CCDEPMODE!$CCDEPMODE$ac_delim
-+am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim
-+am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim
-+lb_target_os!$lb_target_os$ac_delim
-+INCLUDE_RULES!$INCLUDE_RULES$ac_delim
-+RANLIB!$RANLIB$ac_delim
-+CPP!$CPP$ac_delim
-+GREP!$GREP$ac_delim
-+EGREP!$EGREP$ac_delim
-+LLCPPFLAGS!$LLCPPFLAGS$ac_delim
-+LLCFLAGS!$LLCFLAGS$ac_delim
-+EXTRA_KCFLAGS!$EXTRA_KCFLAGS$ac_delim
-+LINUX!$LINUX$ac_delim
-+LINUX_OBJ!$LINUX_OBJ$ac_delim
-+LINUX_CONFIG!$LINUX_CONFIG$ac_delim
-+ARCH_UM!$ARCH_UM$ac_delim
-+UML_CFLAGS!$UML_CFLAGS$ac_delim
-+_ACEOF
-+
-+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
-+    break
-+  elif $ac_last_try; then
-+    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
-+echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
-+   { (exit 1); exit 1; }; }
-+  else
-+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-+  fi
-+done
-+
-+ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
-+if test -n "$ac_eof"; then
-+  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
-+  ac_eof=`expr $ac_eof + 1`
-+fi
-+
-+cat >>$CONFIG_STATUS <<_ACEOF
-+cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof
-+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-+_ACEOF
-+sed '
-+s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
-+s/^/s,@/; s/!/@,|#_!!_#|/
-+:n
-+t n
-+s/'"$ac_delim"'$/,g/; t
-+s/$/\\/; p
-+N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
-+' >>$CONFIG_STATUS <conf$$subs.sed
-+rm -f conf$$subs.sed
-+cat >>$CONFIG_STATUS <<_ACEOF
-+CEOF$ac_eof
-+_ACEOF
-+
-+
-+ac_delim='%!_!# '
-+for ac_last_try in false false false false false :; do
-+  cat >conf$$subs.sed <<_ACEOF
-+MODULE_TARGET!$MODULE_TARGET$ac_delim
-+linux25!$linux25$ac_delim
-+KMODEXT!$KMODEXT$ac_delim
-+LINUXRELEASE!$LINUXRELEASE$ac_delim
-+moduledir!$moduledir$ac_delim
-+modulefsdir!$modulefsdir$ac_delim
-+modulenetdir!$modulenetdir$ac_delim
-+RELEASE!$RELEASE$ac_delim
-+SYMVERFILE!$SYMVERFILE$ac_delim
-+MODPOST!$MODPOST$ac_delim
-+MODPOST_ARGS!$MODPOST_ARGS$ac_delim
-+MODULES_TRUE!$MODULES_TRUE$ac_delim
-+MODULES_FALSE!$MODULES_FALSE$ac_delim
-+LINUX_TRUE!$LINUX_TRUE$ac_delim
-+LINUX_FALSE!$LINUX_FALSE$ac_delim
-+DARWIN_TRUE!$DARWIN_TRUE$ac_delim
-+DARWIN_FALSE!$DARWIN_FALSE$ac_delim
-+LINUX25_TRUE!$LINUX25_TRUE$ac_delim
-+LINUX25_FALSE!$LINUX25_FALSE$ac_delim
-+LDISKFSDIR!$LDISKFSDIR$ac_delim
-+PATCH!$PATCH$ac_delim
-+QUILT!$QUILT$ac_delim
-+USE_QUILT_TRUE!$USE_QUILT_TRUE$ac_delim
-+USE_QUILT_FALSE!$USE_QUILT_FALSE$ac_delim
-+BACKFS!$BACKFS$ac_delim
-+BACKFSU!$BACKFSU$ac_delim
-+USE_EXT4_TRUE!$USE_EXT4_TRUE$ac_delim
-+USE_EXT4_FALSE!$USE_EXT4_FALSE$ac_delim
-+LDISKFS_SERIES!$LDISKFS_SERIES$ac_delim
-+ac_configure_args!$ac_configure_args$ac_delim
-+MOSTLYCLEANFILES!$MOSTLYCLEANFILES$ac_delim
-+LIB@&t at OBJS!$LIB@&t at OBJS$ac_delim
-+LTLIBOBJS!$LTLIBOBJS$ac_delim
-+_ACEOF
-+
-+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 33; then
-+    break
-+  elif $ac_last_try; then
-+    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
-+echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
-+   { (exit 1); exit 1; }; }
-+  else
-+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-+  fi
-+done
-+
-+ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
-+if test -n "$ac_eof"; then
-+  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
-+  ac_eof=`expr $ac_eof + 1`
-+fi
-+
-+cat >>$CONFIG_STATUS <<_ACEOF
-+cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof
-+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end
-+_ACEOF
-+sed '
-+s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
-+s/^/s,@/; s/!/@,|#_!!_#|/
-+:n
-+t n
-+s/'"$ac_delim"'$/,g/; t
-+s/$/\\/; p
-+N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
-+' >>$CONFIG_STATUS <conf$$subs.sed
-+rm -f conf$$subs.sed
-+cat >>$CONFIG_STATUS <<_ACEOF
-+:end
-+s/|#_!!_#|//g
-+CEOF$ac_eof
-+_ACEOF
-+
-+
-+# VPATH may cause trouble with some makes, so we remove $(srcdir),
-+# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
-+# trailing colons and then remove the whole line if VPATH becomes empty
-+# (actually we leave an empty line to preserve line numbers).
-+if test "x$srcdir" = x.; then
-+  ac_vpsub='/^[	 ]*VPATH[	 ]*=/{
-+s/:*\$(srcdir):*/:/
-+s/:*\${srcdir}:*/:/
-+s/:*@srcdir@:*/:/
-+s/^\([^=]*=[	 ]*\):*/\1/
-+s/:*$//
-+s/^[^=]*=[	 ]*$//
-+}'
-+fi
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+fi # test -n "$CONFIG_FILES"
-+
-+
-+for ac_tag in  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS
-+do
-+  case $ac_tag in
-+  :[FHLC]) ac_mode=$ac_tag; continue;;
-+  esac
-+  case $ac_mode$ac_tag in
-+  :[FHL]*:*);;
-+  :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
-+echo "$as_me: error: Invalid tag $ac_tag." >&2;}
-+   { (exit 1); exit 1; }; };;
-+  :[FH]-) ac_tag=-:-;;
-+  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
-+  esac
-+  ac_save_IFS=$IFS
-+  IFS=:
-+  set x $ac_tag
-+  IFS=$ac_save_IFS
-+  shift
-+  ac_file=$1
-+  shift
-+
-+  case $ac_mode in
-+  :L) ac_source=$1;;
-+  :[FH])
-+    ac_file_inputs=
-+    for ac_f
-+    do
-+      case $ac_f in
-+      -) ac_f="$tmp/stdin";;
-+      *) # Look for the file first in the build tree, then in the source tree
-+	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
-+	 # because $ac_f cannot contain `:'.
-+	 test -f "$ac_f" ||
-+	   case $ac_f in
-+	   [\\/$]*) false;;
-+	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
-+	   esac ||
-+	   { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
-+echo "$as_me: error: cannot find input file: $ac_f" >&2;}
-+   { (exit 1); exit 1; }; };;
-+      esac
-+      ac_file_inputs="$ac_file_inputs $ac_f"
-+    done
-+
-+    # Let's still pretend it is `configure' which instantiates (i.e., don't
-+    # use $as_me), people would be surprised to read:
-+    #    /* config.h.  Generated by config.status.  */
-+    configure_input="Generated from "`IFS=:
-+	  echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure."
-+    if test x"$ac_file" != x-; then
-+      configure_input="$ac_file.  $configure_input"
-+      { echo "$as_me:$LINENO: creating $ac_file" >&5
-+echo "$as_me: creating $ac_file" >&6;}
-+    fi
-+
-+    case $ac_tag in
-+    *:-:* | *:-) cat >"$tmp/stdin";;
-+    esac
-+    ;;
-+  esac
-+
-+  ac_dir=`$as_dirname -- "$ac_file" ||
-+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$ac_file" : 'X\(//\)[^/]' \| \
-+	 X"$ac_file" : 'X\(//\)$' \| \
-+	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$ac_file" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+  { as_dir="$ac_dir"
-+  case $as_dir in #(
-+  -*) as_dir=./$as_dir;;
-+  esac
-+  test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
-+    as_dirs=
-+    while :; do
-+      case $as_dir in #(
-+      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
-+      *) as_qdir=$as_dir;;
-+      esac
-+      as_dirs="'$as_qdir' $as_dirs"
-+      as_dir=`$as_dirname -- "$as_dir" ||
-+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$as_dir" : 'X\(//\)[^/]' \| \
-+	 X"$as_dir" : 'X\(//\)$' \| \
-+	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$as_dir" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+      test -d "$as_dir" && break
-+    done
-+    test -z "$as_dirs" || eval "mkdir $as_dirs"
-+  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
-+echo "$as_me: error: cannot create directory $as_dir" >&2;}
-+   { (exit 1); exit 1; }; }; }
-+  ac_builddir=.
-+
-+case "$ac_dir" in
-+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+*)
-+  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
-+  # A ".." for each directory in $ac_dir_suffix.
-+  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
-+  case $ac_top_builddir_sub in
-+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
-+  esac ;;
-+esac
-+ac_abs_top_builddir=$ac_pwd
-+ac_abs_builddir=$ac_pwd$ac_dir_suffix
-+# for backward compatibility:
-+ac_top_builddir=$ac_top_build_prefix
-+
-+case $srcdir in
-+  .)  # We are building in place.
-+    ac_srcdir=.
-+    ac_top_srcdir=$ac_top_builddir_sub
-+    ac_abs_top_srcdir=$ac_pwd ;;
-+  [\\/]* | ?:[\\/]* )  # Absolute name.
-+    ac_srcdir=$srcdir$ac_dir_suffix;
-+    ac_top_srcdir=$srcdir
-+    ac_abs_top_srcdir=$srcdir ;;
-+  *) # Relative name.
-+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
-+    ac_top_srcdir=$ac_top_build_prefix$srcdir
-+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-+esac
-+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-+
-+
-+  case $ac_mode in
-+  :F)
-+  #
-+  # CONFIG_FILE
-+  #
-+
-+  case $INSTALL in
-+  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
-+  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
-+  esac
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+# If the template does not know about datarootdir, expand it.
-+# FIXME: This hack should be removed a few years after 2.60.
-+ac_datarootdir_hack=; ac_datarootdir_seen=
-+
-+case `sed -n '/datarootdir/ {
-+  p
-+  q
-+}
-+/@datadir@/p
-+/@docdir@/p
-+/@infodir@/p
-+/@localedir@/p
-+/@mandir@/p
-+' $ac_file_inputs` in
-+*datarootdir*) ac_datarootdir_seen=yes;;
-+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
-+  { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
-+echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF
-+  ac_datarootdir_hack='
-+  s&@datadir@&$datadir&g
-+  s&@docdir@&$docdir&g
-+  s&@infodir@&$infodir&g
-+  s&@localedir@&$localedir&g
-+  s&@mandir@&$mandir&g
-+    s&\\\${datarootdir}&$datarootdir&g' ;;
-+esac
-+_ACEOF
-+
-+# Neutralize VPATH when `$srcdir' = `.'.
-+# Shell code in configure.ac might set extrasub.
-+# FIXME: do we really want to maintain this feature?
-+cat >>$CONFIG_STATUS <<_ACEOF
-+  sed "$ac_vpsub
-+$extrasub
-+_ACEOF
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+:t
-+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-+s&@configure_input@&$configure_input&;t t
-+s&@top_builddir@&$ac_top_builddir_sub&;t t
-+s&@srcdir@&$ac_srcdir&;t t
-+s&@abs_srcdir@&$ac_abs_srcdir&;t t
-+s&@top_srcdir@&$ac_top_srcdir&;t t
-+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
-+s&@builddir@&$ac_builddir&;t t
-+s&@abs_builddir@&$ac_abs_builddir&;t t
-+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
-+s&@INSTALL@&$ac_INSTALL&;t t
-+$ac_datarootdir_hack
-+" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out
-+
-+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
-+  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
-+  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
-+  { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-+which seems to be undefined.  Please make sure it is defined." >&5
-+echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-+which seems to be undefined.  Please make sure it is defined." >&2;}
-+
-+  rm -f "$tmp/stdin"
-+  case $ac_file in
-+  -) cat "$tmp/out"; rm -f "$tmp/out";;
-+  *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
-+  esac
-+ ;;
-+  :H)
-+  #
-+  # CONFIG_HEADER
-+  #
-+_ACEOF
-+
-+# Transform confdefs.h into a sed script `conftest.defines', that
-+# substitutes the proper values into config.h.in to produce config.h.
-+rm -f conftest.defines conftest.tail
-+# First, append a space to every undef/define line, to ease matching.
-+echo 's/$/ /' >conftest.defines
-+# Then, protect against being on the right side of a sed subst, or in
-+# an unquoted here document, in config.status.  If some macros were
-+# called several times there might be several #defines for the same
-+# symbol, which is useless.  But do not sort them, since the last
-+# AC_DEFINE must be honored.
-+ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
-+# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where
-+# NAME is the cpp macro being defined, VALUE is the value it is being given.
-+# PARAMS is the parameter list in the macro definition--in most cases, it's
-+# just an empty string.
-+ac_dA='s,^\\([	 #]*\\)[^	 ]*\\([	 ]*'
-+ac_dB='\\)[	 (].*,\\1define\\2'
-+ac_dC=' '
-+ac_dD=' ,'
-+
-+uniq confdefs.h |
-+  sed -n '
-+	t rset
-+	:rset
-+	s/^[	 ]*#[	 ]*define[	 ][	 ]*//
-+	t ok
-+	d
-+	:ok
-+	s/[\\&,]/\\&/g
-+	s/^\('"$ac_word_re"'\)\(([^()]*)\)[	 ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p
-+	s/^\('"$ac_word_re"'\)[	 ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p
-+  ' >>conftest.defines
-+
-+# Remove the space that was appended to ease matching.
-+# Then replace #undef with comments.  This is necessary, for
-+# example, in the case of _POSIX_SOURCE, which is predefined and required
-+# on some systems where configure will not decide to define it.
-+# (The regexp can be short, since the line contains either #define or #undef.)
-+echo 's/ $//
-+s,^[	 #]*u.*,/* & */,' >>conftest.defines
-+
-+# Break up conftest.defines:
-+ac_max_sed_lines=50
-+
-+# First sed command is:	 sed -f defines.sed $ac_file_inputs >"$tmp/out1"
-+# Second one is:	 sed -f defines.sed "$tmp/out1" >"$tmp/out2"
-+# Third one will be:	 sed -f defines.sed "$tmp/out2" >"$tmp/out1"
-+# et cetera.
-+ac_in='$ac_file_inputs'
-+ac_out='"$tmp/out1"'
-+ac_nxt='"$tmp/out2"'
-+
-+while :
-+do
-+  # Write a here document:
-+    cat >>$CONFIG_STATUS <<_ACEOF
-+    # First, check the format of the line:
-+    cat >"\$tmp/defines.sed" <<\\CEOF
-+/^[	 ]*#[	 ]*undef[	 ][	 ]*$ac_word_re[	 ]*\$/b def
-+/^[	 ]*#[	 ]*define[	 ][	 ]*$ac_word_re[(	 ]/b def
-+b
-+:def
-+_ACEOF
-+  sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS
-+  echo 'CEOF
-+    sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS
-+  ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in
-+  sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail
-+  grep . conftest.tail >/dev/null || break
-+  rm -f conftest.defines
-+  mv conftest.tail conftest.defines
-+done
-+rm -f conftest.defines conftest.tail
-+
-+echo "ac_result=$ac_in" >>$CONFIG_STATUS
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+  if test x"$ac_file" != x-; then
-+    echo "/* $configure_input  */" >"$tmp/config.h"
-+    cat "$ac_result" >>"$tmp/config.h"
-+    if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then
-+      { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
-+echo "$as_me: $ac_file is unchanged" >&6;}
-+    else
-+      rm -f $ac_file
-+      mv "$tmp/config.h" $ac_file
-+    fi
-+  else
-+    echo "/* $configure_input  */"
-+    cat "$ac_result"
-+  fi
-+  rm -f "$tmp/out12"
-+# Compute $ac_file's index in $config_headers.
-+_am_stamp_count=1
-+for _am_header in $config_headers :; do
-+  case $_am_header in
-+    $ac_file | $ac_file:* )
-+      break ;;
-+    * )
-+      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
-+  esac
-+done
-+echo "timestamp for $ac_file" >`$as_dirname -- $ac_file ||
-+$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X$ac_file : 'X\(//\)[^/]' \| \
-+	 X$ac_file : 'X\(//\)$' \| \
-+	 X$ac_file : 'X\(/\)' \| . 2>/dev/null ||
-+echo X$ac_file |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`/stamp-h$_am_stamp_count
-+ ;;
-+  
-+  :C)  { echo "$as_me:$LINENO: executing $ac_file commands" >&5
-+echo "$as_me: executing $ac_file commands" >&6;}
-+ ;;
-+  esac
-+
-+
-+  case $ac_file$ac_mode in
-+    "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
-+  # Strip MF so we end up with the name of the file.
-+  mf=`echo "$mf" | sed -e 's/:.*$//'`
-+  # Check whether this is an Automake generated Makefile or not.
-+  # We used to match only the files named `Makefile.in', but
-+  # some people rename them; so instead we look at the file content.
-+  # Grep'ing the first line is not enough: some people post-process
-+  # each Makefile.in and add a new line on top of each file to say so.
-+  # So let's grep whole file.
-+  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
-+    dirpart=`$as_dirname -- "$mf" ||
-+$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$mf" : 'X\(//\)[^/]' \| \
-+	 X"$mf" : 'X\(//\)$' \| \
-+	 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$mf" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+  else
-+    continue
-+  fi
-+  grep '^DEP_FILES *= *[^ @%:@]' < "$mf" > /dev/null || continue
-+  # Extract the definition of DEP_FILES from the Makefile without
-+  # running `make'.
-+  DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
-+  test -z "$DEPDIR" && continue
-+  # When using ansi2knr, U may be empty or an underscore; expand it
-+  U=`sed -n -e '/^U = / s///p' < "$mf"`
-+  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
-+  # We invoke sed twice because it is the simplest approach to
-+  # changing $(DEPDIR) to its actual value in the expansion.
-+  for file in `sed -n -e '
-+    /^DEP_FILES = .*\\\\$/ {
-+      s/^DEP_FILES = //
-+      :loop
-+	s/\\\\$//
-+	p
-+	n
-+	/\\\\$/ b loop
-+      p
-+    }
-+    /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \
-+       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
-+    # Make sure the directory exists.
-+    test -f "$dirpart/$file" && continue
-+    fdir=`$as_dirname -- "$file" ||
-+$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$file" : 'X\(//\)[^/]' \| \
-+	 X"$file" : 'X\(//\)$' \| \
-+	 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$file" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+    { as_dir=$dirpart/$fdir
-+  case $as_dir in #(
-+  -*) as_dir=./$as_dir;;
-+  esac
-+  test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
-+    as_dirs=
-+    while :; do
-+      case $as_dir in #(
-+      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
-+      *) as_qdir=$as_dir;;
-+      esac
-+      as_dirs="'$as_qdir' $as_dirs"
-+      as_dir=`$as_dirname -- "$as_dir" ||
-+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$as_dir" : 'X\(//\)[^/]' \| \
-+	 X"$as_dir" : 'X\(//\)$' \| \
-+	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$as_dir" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+      test -d "$as_dir" && break
-+    done
-+    test -z "$as_dirs" || eval "mkdir $as_dirs"
-+  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
-+echo "$as_me: error: cannot create directory $as_dir" >&2;}
-+   { (exit 1); exit 1; }; }; }
-+    # echo "creating $dirpart/$file"
-+    echo '# dummy' > "$dirpart/$file"
-+  done
-+done
-+ ;;
-+
-+  esac
-+done # for ac_tag
-+
-+
-+{ (exit 0); exit 0; }
-+_ACEOF
-+chmod +x $CONFIG_STATUS
-+ac_clean_files=$ac_clean_files_save
-+
-+
-+# configure is writing to config.log, and then calls config.status.
-+# config.status does its own redirection, appending to config.log.
-+# Unfortunately, on DOS this fails, as config.log is still kept open
-+# by configure, so config.status won't be able to write to it; its
-+# output is simply discarded.  So we exec the FD to /dev/null,
-+# effectively closing config.log, so it can be properly (re)opened and
-+# appended to by config.status.  When coming back to configure, we
-+# need to make the FD available again.
-+if test "$no_create" != yes; then
-+  ac_cs_success=:
-+  ac_config_status_args=
-+  test "$silent" = yes &&
-+    ac_config_status_args="$ac_config_status_args --quiet"
-+  exec 5>/dev/null
-+  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
-+  exec 5>>config.log
-+  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
-+  # would make configure fail if this is the last instruction.
-+  $ac_cs_success || { (exit 1); exit 1; }
-+fi
-+
-diff -Nurwd orig/lustre-1.8.2/ldiskfs/autom4te.cache/requests lustre-1.8.2/ldiskfs/autom4te.cache/requests
---- orig/lustre-1.8.2/ldiskfs/autom4te.cache/requests	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/ldiskfs/autom4te.cache/requests	2010-03-03 16:00:19.084632645 +0000
-@@ -0,0 +1,64 @@
-+# This file was generated by Autom4te Mon Aug 11 20:59:21 PDT 2008.
-+# It contains the lists of macros which have been traced.
-+# It can be safely removed.
-+
-+ at request = (
-+             bless( [
-+                      '0',
-+                      1,
-+                      [
-+                        '/usr/share/autoconf'
-+                      ],
-+                      [
-+                        '/usr/share/autoconf/autoconf/autoconf.m4f',
-+                        'aclocal.m4',
-+                        'configure.ac'
-+                      ],
-+                      {
-+                        '_LT_AC_TAGCONFIG' => 1,
-+                        'AM_PROG_F77_C_O' => 1,
-+                        'AC_INIT' => 1,
-+                        'm4_pattern_forbid' => 1,
-+                        'AC_CANONICAL_TARGET' => 1,
-+                        'AC_SUBST' => 1,
-+                        'AC_CONFIG_LIBOBJ_DIR' => 1,
-+                        'AC_FC_SRCEXT' => 1,
-+                        'AC_CANONICAL_HOST' => 1,
-+                        'AC_PROG_LIBTOOL' => 1,
-+                        'AM_INIT_AUTOMAKE' => 1,
-+                        'AC_CONFIG_SUBDIRS' => 1,
-+                        'AM_AUTOMAKE_VERSION' => 1,
-+                        'LT_CONFIG_LTDL_DIR' => 1,
-+                        'AC_REQUIRE_AUX_FILE' => 1,
-+                        'AC_CONFIG_LINKS' => 1,
-+                        'm4_sinclude' => 1,
-+                        'LT_SUPPORTED_TAG' => 1,
-+                        'AM_MAINTAINER_MODE' => 1,
-+                        'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
-+                        '_m4_warn' => 1,
-+                        'AM_PROG_CXX_C_O' => 1,
-+                        'AM_ENABLE_MULTILIB' => 1,
-+                        'AC_CONFIG_FILES' => 1,
-+                        'include' => 1,
-+                        'LT_INIT' => 1,
-+                        'AM_GNU_GETTEXT' => 1,
-+                        'AC_LIBSOURCE' => 1,
-+                        'AM_PROG_FC_C_O' => 1,
-+                        'AC_CANONICAL_BUILD' => 1,
-+                        'AC_FC_FREEFORM' => 1,
-+                        'AH_OUTPUT' => 1,
-+                        '_AM_SUBST_NOTMAKE' => 1,
-+                        'AC_CONFIG_AUX_DIR' => 1,
-+                        'sinclude' => 1,
-+                        'AM_PROG_CC_C_O' => 1,
-+                        'm4_pattern_allow' => 1,
-+                        'AC_CANONICAL_SYSTEM' => 1,
-+                        'AM_CONDITIONAL' => 1,
-+                        'AC_CONFIG_HEADERS' => 1,
-+                        'AC_DEFINE_TRACE_LITERAL' => 1,
-+                        'm4_include' => 1,
-+                        'AC_SUBST_TRACE' => 1
-+                      }
-+                    ], 'Autom4te::Request' )
-+           );
-+
-diff -Nurwd orig/lustre-1.8.2/ldiskfs/autom4te.cache/traces.0 lustre-1.8.2/ldiskfs/autom4te.cache/traces.0
---- orig/lustre-1.8.2/ldiskfs/autom4te.cache/traces.0	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/ldiskfs/autom4te.cache/traces.0	2010-03-03 16:00:18.360632890 +0000
-@@ -0,0 +1,626 @@
-+m4trace:aclocal.m4:43: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
-+m4trace:configure.ac:3: -1- AC_INIT([Lustre ldiskfs], [3.0.9], [https://bugzilla.lustre.org/])
-+m4trace:configure.ac:3: -1- m4_pattern_forbid([^_?A[CHUM]_])
-+m4trace:configure.ac:3: -1- m4_pattern_forbid([_AC_])
-+m4trace:configure.ac:3: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^AS_FLAGS$])
-+m4trace:configure.ac:3: -1- m4_pattern_forbid([^_?m4_])
-+m4trace:configure.ac:3: -1- m4_pattern_forbid([^dnl$])
-+m4trace:configure.ac:3: -1- m4_pattern_forbid([^_?AS_])
-+m4trace:configure.ac:3: -1- AC_SUBST([SHELL], [${CONFIG_SHELL-/bin/sh}])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([SHELL])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^SHELL$])
-+m4trace:configure.ac:3: -1- AC_SUBST([PATH_SEPARATOR])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([PATH_SEPARATOR])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^PATH_SEPARATOR$])
-+m4trace:configure.ac:3: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME],      ['AC_PACKAGE_NAME'])])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([PACKAGE_NAME])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_NAME$])
-+m4trace:configure.ac:3: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME],   ['AC_PACKAGE_TARNAME'])])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([PACKAGE_TARNAME])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
-+m4trace:configure.ac:3: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION],   ['AC_PACKAGE_VERSION'])])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([PACKAGE_VERSION])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_VERSION$])
-+m4trace:configure.ac:3: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING],    ['AC_PACKAGE_STRING'])])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([PACKAGE_STRING])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_STRING$])
-+m4trace:configure.ac:3: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
-+m4trace:configure.ac:3: -1- AC_SUBST([exec_prefix], [NONE])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([exec_prefix])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^exec_prefix$])
-+m4trace:configure.ac:3: -1- AC_SUBST([prefix], [NONE])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([prefix])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^prefix$])
-+m4trace:configure.ac:3: -1- AC_SUBST([program_transform_name], [s,x,x,])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([program_transform_name])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^program_transform_name$])
-+m4trace:configure.ac:3: -1- AC_SUBST([bindir], ['${exec_prefix}/bin'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([bindir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^bindir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([sbindir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^sbindir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([libexecdir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^libexecdir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([datarootdir], ['${prefix}/share'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([datarootdir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^datarootdir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([datadir], ['${datarootdir}'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([datadir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^datadir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([sysconfdir], ['${prefix}/etc'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([sysconfdir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^sysconfdir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([sharedstatedir], ['${prefix}/com'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([sharedstatedir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^sharedstatedir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([localstatedir], ['${prefix}/var'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([localstatedir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^localstatedir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([includedir], ['${prefix}/include'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([includedir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^includedir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([oldincludedir], ['/usr/include'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([oldincludedir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^oldincludedir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME],
-+				     ['${datarootdir}/doc/${PACKAGE_TARNAME}'],
-+				     ['${datarootdir}/doc/${PACKAGE}'])])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([docdir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^docdir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([infodir], ['${datarootdir}/info'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([infodir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^infodir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([htmldir], ['${docdir}'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([htmldir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^htmldir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([dvidir], ['${docdir}'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([dvidir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^dvidir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([pdfdir], ['${docdir}'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([pdfdir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^pdfdir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([psdir], ['${docdir}'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([psdir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^psdir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([libdir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^libdir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([localedir], ['${datarootdir}/locale'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([localedir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^localedir$])
-+m4trace:configure.ac:3: -1- AC_SUBST([mandir], ['${datarootdir}/man'])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([mandir])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^mandir$])
-+m4trace:configure.ac:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_NAME$])
-+m4trace:configure.ac:3: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
-+#undef PACKAGE_NAME])
-+m4trace:configure.ac:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
-+m4trace:configure.ac:3: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
-+#undef PACKAGE_TARNAME])
-+m4trace:configure.ac:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_VERSION$])
-+m4trace:configure.ac:3: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
-+#undef PACKAGE_VERSION])
-+m4trace:configure.ac:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_STRING$])
-+m4trace:configure.ac:3: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
-+#undef PACKAGE_STRING])
-+m4trace:configure.ac:3: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
-+m4trace:configure.ac:3: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
-+#undef PACKAGE_BUGREPORT])
-+m4trace:configure.ac:3: -1- AC_SUBST([DEFS])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([DEFS])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^DEFS$])
-+m4trace:configure.ac:3: -1- AC_SUBST([ECHO_C])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([ECHO_C])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^ECHO_C$])
-+m4trace:configure.ac:3: -1- AC_SUBST([ECHO_N])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([ECHO_N])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^ECHO_N$])
-+m4trace:configure.ac:3: -1- AC_SUBST([ECHO_T])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([ECHO_T])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^ECHO_T$])
-+m4trace:configure.ac:3: -1- AC_SUBST([LIBS])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([LIBS])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^LIBS$])
-+m4trace:configure.ac:3: -1- AC_SUBST([build_alias])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([build_alias])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^build_alias$])
-+m4trace:configure.ac:3: -1- AC_SUBST([host_alias])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([host_alias])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^host_alias$])
-+m4trace:configure.ac:3: -1- AC_SUBST([target_alias])
-+m4trace:configure.ac:3: -1- AC_SUBST_TRACE([target_alias])
-+m4trace:configure.ac:3: -1- m4_pattern_allow([^target_alias$])
-+m4trace:configure.ac:7: -1- AC_CONFIG_AUX_DIR([.])
-+m4trace:configure.ac:9: -1- AC_CANONICAL_SYSTEM
-+m4trace:configure.ac:9: -1- _m4_warn([obsolete], [The macro `AC_CANONICAL_SYSTEM' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:1747: AC_CANONICAL_SYSTEM is expanded from...
-+configure.ac:9: the top level])
-+m4trace:configure.ac:9: -1- AC_CANONICAL_TARGET
-+m4trace:configure.ac:9: -1- AC_CANONICAL_HOST
-+m4trace:configure.ac:9: -1- AC_CANONICAL_BUILD
-+m4trace:configure.ac:9: -1- AC_REQUIRE_AUX_FILE([config.sub])
-+m4trace:configure.ac:9: -1- AC_REQUIRE_AUX_FILE([config.guess])
-+m4trace:configure.ac:9: -1- AC_SUBST([build], [$ac_cv_build])
-+m4trace:configure.ac:9: -1- AC_SUBST_TRACE([build])
-+m4trace:configure.ac:9: -1- m4_pattern_allow([^build$])
-+m4trace:configure.ac:9: -1- AC_SUBST([build_cpu], [$[1]])
-+m4trace:configure.ac:9: -1- AC_SUBST_TRACE([build_cpu])
-+m4trace:configure.ac:9: -1- m4_pattern_allow([^build_cpu$])
-+m4trace:configure.ac:9: -1- AC_SUBST([build_vendor], [$[2]])
-+m4trace:configure.ac:9: -1- AC_SUBST_TRACE([build_vendor])
-+m4trace:configure.ac:9: -1- m4_pattern_allow([^build_vendor$])
-+m4trace:configure.ac:9: -1- AC_SUBST([build_os])
-+m4trace:configure.ac:9: -1- AC_SUBST_TRACE([build_os])
-+m4trace:configure.ac:9: -1- m4_pattern_allow([^build_os$])
-+m4trace:configure.ac:9: -1- AC_SUBST([host], [$ac_cv_host])
-+m4trace:configure.ac:9: -1- AC_SUBST_TRACE([host])
-+m4trace:configure.ac:9: -1- m4_pattern_allow([^host$])
-+m4trace:configure.ac:9: -1- AC_SUBST([host_cpu], [$[1]])
-+m4trace:configure.ac:9: -1- AC_SUBST_TRACE([host_cpu])
-+m4trace:configure.ac:9: -1- m4_pattern_allow([^host_cpu$])
-+m4trace:configure.ac:9: -1- AC_SUBST([host_vendor], [$[2]])
-+m4trace:configure.ac:9: -1- AC_SUBST_TRACE([host_vendor])
-+m4trace:configure.ac:9: -1- m4_pattern_allow([^host_vendor$])
-+m4trace:configure.ac:9: -1- AC_SUBST([host_os])
-+m4trace:configure.ac:9: -1- AC_SUBST_TRACE([host_os])
-+m4trace:configure.ac:9: -1- m4_pattern_allow([^host_os$])
-+m4trace:configure.ac:9: -1- AC_SUBST([target], [$ac_cv_target])
-+m4trace:configure.ac:9: -1- AC_SUBST_TRACE([target])
-+m4trace:configure.ac:9: -1- m4_pattern_allow([^target$])
-+m4trace:configure.ac:9: -1- AC_SUBST([target_cpu], [$[1]])
-+m4trace:configure.ac:9: -1- AC_SUBST_TRACE([target_cpu])
-+m4trace:configure.ac:9: -1- m4_pattern_allow([^target_cpu$])
-+m4trace:configure.ac:9: -1- AC_SUBST([target_vendor], [$[2]])
-+m4trace:configure.ac:9: -1- AC_SUBST_TRACE([target_vendor])
-+m4trace:configure.ac:9: -1- m4_pattern_allow([^target_vendor$])
-+m4trace:configure.ac:9: -1- AC_SUBST([target_os])
-+m4trace:configure.ac:9: -1- AC_SUBST_TRACE([target_os])
-+m4trace:configure.ac:9: -1- m4_pattern_allow([^target_os$])
-+m4trace:configure.ac:11: -1- AM_INIT_AUTOMAKE
-+m4trace:configure.ac:11: -1- AM_AUTOMAKE_VERSION([1.7.9])
-+m4trace:configure.ac:11: -1- AC_REQUIRE_AUX_FILE([install-sh])
-+m4trace:configure.ac:11: -1- AC_SUBST([INSTALL_PROGRAM])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([INSTALL_PROGRAM])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
-+m4trace:configure.ac:11: -1- AC_SUBST([INSTALL_SCRIPT])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([INSTALL_SCRIPT])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
-+m4trace:configure.ac:11: -1- AC_SUBST([INSTALL_DATA])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([INSTALL_DATA])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^INSTALL_DATA$])
-+m4trace:configure.ac:11: -1- AC_SUBST([CYGPATH_W])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([CYGPATH_W])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^CYGPATH_W$])
-+m4trace:configure.ac:11: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:196: AC_FOREACH is expanded from...
-+aclocal.m4:203: _AM_SET_OPTIONS is expanded from...
-+aclocal.m4:56: AM_INIT_AUTOMAKE is expanded from...
-+configure.ac:11: the top level])
-+m4trace:configure.ac:11: -1- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([PACKAGE])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^PACKAGE$])
-+m4trace:configure.ac:11: -1- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([VERSION])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^VERSION$])
-+m4trace:configure.ac:11: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^PACKAGE$])
-+m4trace:configure.ac:11: -1- AH_OUTPUT([PACKAGE], [/* Name of package */
-+#undef PACKAGE])
-+m4trace:configure.ac:11: -1- AC_DEFINE_TRACE_LITERAL([VERSION])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^VERSION$])
-+m4trace:configure.ac:11: -1- AH_OUTPUT([VERSION], [/* Version number of package */
-+#undef VERSION])
-+m4trace:configure.ac:11: -1- AC_SUBST([ACLOCAL])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([ACLOCAL])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^ACLOCAL$])
-+m4trace:configure.ac:11: -1- AC_SUBST([AUTOCONF])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([AUTOCONF])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^AUTOCONF$])
-+m4trace:configure.ac:11: -1- AC_SUBST([AUTOMAKE])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([AUTOMAKE])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^AUTOMAKE$])
-+m4trace:configure.ac:11: -1- AC_SUBST([AUTOHEADER])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([AUTOHEADER])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^AUTOHEADER$])
-+m4trace:configure.ac:11: -1- AC_SUBST([MAKEINFO])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([MAKEINFO])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^MAKEINFO$])
-+m4trace:configure.ac:11: -1- AC_SUBST([AMTAR])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([AMTAR])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^AMTAR$])
-+m4trace:configure.ac:11: -1- AC_SUBST([install_sh])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([install_sh])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^install_sh$])
-+m4trace:configure.ac:11: -1- AC_SUBST([STRIP])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([STRIP])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^STRIP$])
-+m4trace:configure.ac:11: -1- AC_SUBST([INSTALL_STRIP_PROGRAM])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([INSTALL_STRIP_PROGRAM])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
-+m4trace:configure.ac:11: -1- AC_SUBST([AWK])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([AWK])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^AWK$])
-+m4trace:configure.ac:11: -1- AC_SUBST([SET_MAKE])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([SET_MAKE])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^SET_MAKE$])
-+m4trace:configure.ac:11: -1- AC_SUBST([am__leading_dot])
-+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([am__leading_dot])
-+m4trace:configure.ac:11: -1- m4_pattern_allow([^am__leading_dot$])
-+m4trace:configure.ac:13: -1- AC_SUBST([CC])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.ac:13: -1- AC_SUBST([CFLAGS])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([CFLAGS])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^CFLAGS$])
-+m4trace:configure.ac:13: -1- AC_SUBST([LDFLAGS])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([LDFLAGS])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^LDFLAGS$])
-+m4trace:configure.ac:13: -1- AC_SUBST([LIBS])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([LIBS])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^LIBS$])
-+m4trace:configure.ac:13: -1- AC_SUBST([CPPFLAGS])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([CPPFLAGS])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^CPPFLAGS$])
-+m4trace:configure.ac:13: -1- AC_SUBST([CC])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.ac:13: -1- AC_SUBST([CC])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.ac:13: -1- AC_SUBST([CC])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.ac:13: -1- AC_SUBST([CC])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.ac:13: -1- AC_SUBST([ac_ct_CC])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([ac_ct_CC])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^ac_ct_CC$])
-+m4trace:configure.ac:13: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([EXEEXT])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^EXEEXT$])
-+m4trace:configure.ac:13: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([OBJEXT])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^OBJEXT$])
-+m4trace:configure.ac:13: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([DEPDIR])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^DEPDIR$])
-+m4trace:configure.ac:13: -1- AC_SUBST([am__include])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([am__include])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^am__include$])
-+m4trace:configure.ac:13: -1- AC_SUBST([am__quote])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([am__quote])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^am__quote$])
-+m4trace:configure.ac:13: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
-+m4trace:configure.ac:13: -1- AC_SUBST([AMDEP_TRUE])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([AMDEP_TRUE])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^AMDEP_TRUE$])
-+m4trace:configure.ac:13: -1- AC_SUBST([AMDEP_FALSE])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([AMDEP_FALSE])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^AMDEP_FALSE$])
-+m4trace:configure.ac:13: -1- AC_SUBST([AMDEPBACKSLASH])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([AMDEPBACKSLASH])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
-+m4trace:configure.ac:13: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([CCDEPMODE])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^CCDEPMODE$])
-+m4trace:configure.ac:13: -1- AM_CONDITIONAL([am__fastdepCC], [
-+  test "x$enable_dependency_tracking" != xno \
-+  && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
-+m4trace:configure.ac:13: -1- AC_SUBST([am__fastdepCC_TRUE])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
-+m4trace:configure.ac:13: -1- AC_SUBST([am__fastdepCC_FALSE])
-+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE])
-+m4trace:configure.ac:13: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
-+m4trace:configure.ac:15: -1- AC_SUBST([lb_target_os])
-+m4trace:configure.ac:15: -1- AC_SUBST_TRACE([lb_target_os])
-+m4trace:configure.ac:15: -1- m4_pattern_allow([^lb_target_os$])
-+m4trace:configure.ac:16: -1- AC_SUBST([INCLUDE_RULES])
-+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([INCLUDE_RULES])
-+m4trace:configure.ac:16: -1- m4_pattern_allow([^INCLUDE_RULES$])
-+m4trace:configure.ac:17: -1- AC_SUBST([RANLIB])
-+m4trace:configure.ac:17: -1- AC_SUBST_TRACE([RANLIB])
-+m4trace:configure.ac:17: -1- m4_pattern_allow([^RANLIB$])
-+m4trace:configure.ac:17: -1- AC_SUBST([CPP])
-+m4trace:configure.ac:17: -1- AC_SUBST_TRACE([CPP])
-+m4trace:configure.ac:17: -1- m4_pattern_allow([^CPP$])
-+m4trace:configure.ac:17: -1- AC_SUBST([CPPFLAGS])
-+m4trace:configure.ac:17: -1- AC_SUBST_TRACE([CPPFLAGS])
-+m4trace:configure.ac:17: -1- m4_pattern_allow([^CPPFLAGS$])
-+m4trace:configure.ac:17: -1- AC_SUBST([CPP])
-+m4trace:configure.ac:17: -1- AC_SUBST_TRACE([CPP])
-+m4trace:configure.ac:17: -1- m4_pattern_allow([^CPP$])
-+m4trace:configure.ac:17: -1- AC_SUBST([GREP])
-+m4trace:configure.ac:17: -1- AC_SUBST_TRACE([GREP])
-+m4trace:configure.ac:17: -1- m4_pattern_allow([^GREP$])
-+m4trace:configure.ac:17: -1- AC_SUBST([GREP])
-+m4trace:configure.ac:17: -1- AC_SUBST_TRACE([GREP])
-+m4trace:configure.ac:17: -1- m4_pattern_allow([^GREP$])
-+m4trace:configure.ac:17: -1- AC_SUBST([EGREP])
-+m4trace:configure.ac:17: -1- AC_SUBST_TRACE([EGREP])
-+m4trace:configure.ac:17: -1- m4_pattern_allow([^EGREP$])
-+m4trace:configure.ac:17: -1- AC_SUBST([EGREP])
-+m4trace:configure.ac:17: -1- AC_SUBST_TRACE([EGREP])
-+m4trace:configure.ac:17: -1- m4_pattern_allow([^EGREP$])
-+m4trace:configure.ac:17: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
-+m4trace:configure.ac:17: -1- m4_pattern_allow([^STDC_HEADERS$])
-+m4trace:configure.ac:17: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
-+#undef STDC_HEADERS])
-+m4trace:configure.ac:17: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
-+#undef HAVE_SYS_TYPES_H])
-+m4trace:configure.ac:17: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
-+#undef HAVE_SYS_STAT_H])
-+m4trace:configure.ac:17: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
-+#undef HAVE_STDLIB_H])
-+m4trace:configure.ac:17: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
-+#undef HAVE_STRING_H])
-+m4trace:configure.ac:17: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
-+#undef HAVE_MEMORY_H])
-+m4trace:configure.ac:17: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */
-+#undef HAVE_STRINGS_H])
-+m4trace:configure.ac:17: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
-+#undef HAVE_INTTYPES_H])
-+m4trace:configure.ac:17: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
-+#undef HAVE_STDINT_H])
-+m4trace:configure.ac:17: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
-+#undef HAVE_UNISTD_H])
-+m4trace:configure.ac:17: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_UNSIGNED_LONG_LONG])
-+m4trace:configure.ac:17: -1- m4_pattern_allow([^SIZEOF_UNSIGNED_LONG_LONG$])
-+m4trace:configure.ac:17: -1- AH_OUTPUT([SIZEOF_UNSIGNED_LONG_LONG], [/* The size of `unsigned long long\', as computed by sizeof. */
-+#undef SIZEOF_UNSIGNED_LONG_LONG])
-+m4trace:configure.ac:17: -1- AC_SUBST([LLCPPFLAGS])
-+m4trace:configure.ac:17: -1- AC_SUBST_TRACE([LLCPPFLAGS])
-+m4trace:configure.ac:17: -1- m4_pattern_allow([^LLCPPFLAGS$])
-+m4trace:configure.ac:17: -1- AC_SUBST([LLCFLAGS])
-+m4trace:configure.ac:17: -1- AC_SUBST_TRACE([LLCFLAGS])
-+m4trace:configure.ac:17: -1- m4_pattern_allow([^LLCFLAGS$])
-+m4trace:configure.ac:17: -1- AC_SUBST([EXTRA_KCFLAGS])
-+m4trace:configure.ac:17: -1- AC_SUBST_TRACE([EXTRA_KCFLAGS])
-+m4trace:configure.ac:17: -1- m4_pattern_allow([^EXTRA_KCFLAGS$])
-+m4trace:configure.ac:39: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.ac:39: the top level])
-+m4trace:configure.ac:46: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:1936: LB_LINUX_PATH is expanded from...
-+aclocal.m4:2329: LB_PROG_LINUX is expanded from...
-+configure.ac:46: the top level])
-+m4trace:configure.ac:46: -1- AC_SUBST([LINUX])
-+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([LINUX])
-+m4trace:configure.ac:46: -1- m4_pattern_allow([^LINUX$])
-+m4trace:configure.ac:46: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:1936: LB_LINUX_PATH is expanded from...
-+aclocal.m4:2329: LB_PROG_LINUX is expanded from...
-+configure.ac:46: the top level])
-+m4trace:configure.ac:46: -1- AC_SUBST([LINUX_OBJ])
-+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([LINUX_OBJ])
-+m4trace:configure.ac:46: -1- m4_pattern_allow([^LINUX_OBJ$])
-+m4trace:configure.ac:46: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+../../lib/autoconf/general.m4:1382: AC_ARG_WITH is expanded from...
-+aclocal.m4:1936: LB_LINUX_PATH is expanded from...
-+aclocal.m4:2329: LB_PROG_LINUX is expanded from...
-+configure.ac:46: the top level])
-+m4trace:configure.ac:46: -1- AC_SUBST([LINUX_CONFIG])
-+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([LINUX_CONFIG])
-+m4trace:configure.ac:46: -1- m4_pattern_allow([^LINUX_CONFIG$])
-+m4trace:configure.ac:46: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:1936: LB_LINUX_PATH is expanded from...
-+aclocal.m4:2329: LB_PROG_LINUX is expanded from...
-+configure.ac:46: the top level])
-+m4trace:configure.ac:46: -1- AC_SUBST([ARCH_UM])
-+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([ARCH_UM])
-+m4trace:configure.ac:46: -1- m4_pattern_allow([^ARCH_UM$])
-+m4trace:configure.ac:46: -1- AC_SUBST([UML_CFLAGS])
-+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([UML_CFLAGS])
-+m4trace:configure.ac:46: -1- m4_pattern_allow([^UML_CFLAGS$])
-+m4trace:configure.ac:46: -1- AC_SUBST([MODULE_TARGET])
-+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([MODULE_TARGET])
-+m4trace:configure.ac:46: -1- m4_pattern_allow([^MODULE_TARGET$])
-+m4trace:configure.ac:46: -1- AC_SUBST([linux25])
-+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([linux25])
-+m4trace:configure.ac:46: -1- m4_pattern_allow([^linux25$])
-+m4trace:configure.ac:46: -1- AC_SUBST([KMODEXT])
-+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([KMODEXT])
-+m4trace:configure.ac:46: -1- m4_pattern_allow([^KMODEXT$])
-+m4trace:configure.ac:46: -1- AC_SUBST([LINUXRELEASE])
-+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([LINUXRELEASE])
-+m4trace:configure.ac:46: -1- m4_pattern_allow([^LINUXRELEASE$])
-+m4trace:configure.ac:46: -1- AC_SUBST([moduledir])
-+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([moduledir])
-+m4trace:configure.ac:46: -1- m4_pattern_allow([^moduledir$])
-+m4trace:configure.ac:46: -1- AC_SUBST([modulefsdir])
-+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([modulefsdir])
-+m4trace:configure.ac:46: -1- m4_pattern_allow([^modulefsdir$])
-+m4trace:configure.ac:46: -1- AC_SUBST([modulenetdir])
-+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([modulenetdir])
-+m4trace:configure.ac:46: -1- m4_pattern_allow([^modulenetdir$])
-+m4trace:configure.ac:46: -1- AC_SUBST([RELEASE])
-+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([RELEASE])
-+m4trace:configure.ac:46: -1- m4_pattern_allow([^RELEASE$])
-+m4trace:configure.ac:46: -1- AC_SUBST([SYMVERFILE])
-+m4trace:configure.ac:46: -1- AC_SUBST_TRACE([SYMVERFILE])
-+m4trace:configure.ac:46: -1- m4_pattern_allow([^SYMVERFILE$])
-+m4trace:configure.ac:46: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+aclocal.m4:2264: LB_CONFIG_OFED_BACKPORTS is expanded from...
-+aclocal.m4:2329: LB_PROG_LINUX is expanded from...
-+configure.ac:46: the top level])
-+m4trace:configure.ac:48: -1- AC_SUBST([MODPOST])
-+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([MODPOST])
-+m4trace:configure.ac:48: -1- m4_pattern_allow([^MODPOST$])
-+m4trace:configure.ac:48: -1- AC_SUBST([MODPOST_ARGS])
-+m4trace:configure.ac:48: -1- AC_SUBST_TRACE([MODPOST_ARGS])
-+m4trace:configure.ac:48: -1- m4_pattern_allow([^MODPOST_ARGS$])
-+m4trace:configure.ac:52: -1- AC_CONFIG_HEADERS([config.h])
-+m4trace:configure.ac:52: -1- AC_SUBST([EXTRA_KCFLAGS])
-+m4trace:configure.ac:52: -1- AC_SUBST_TRACE([EXTRA_KCFLAGS])
-+m4trace:configure.ac:52: -1- m4_pattern_allow([^EXTRA_KCFLAGS$])
-+m4trace:configure.ac:55: -1- AM_CONDITIONAL([MODULES], [true])
-+m4trace:configure.ac:55: -1- AC_SUBST([MODULES_TRUE])
-+m4trace:configure.ac:55: -1- AC_SUBST_TRACE([MODULES_TRUE])
-+m4trace:configure.ac:55: -1- m4_pattern_allow([^MODULES_TRUE$])
-+m4trace:configure.ac:55: -1- AC_SUBST([MODULES_FALSE])
-+m4trace:configure.ac:55: -1- AC_SUBST_TRACE([MODULES_FALSE])
-+m4trace:configure.ac:55: -1- m4_pattern_allow([^MODULES_FALSE$])
-+m4trace:configure.ac:56: -1- AM_CONDITIONAL([LINUX], [true])
-+m4trace:configure.ac:56: -1- AC_SUBST([LINUX_TRUE])
-+m4trace:configure.ac:56: -1- AC_SUBST_TRACE([LINUX_TRUE])
-+m4trace:configure.ac:56: -1- m4_pattern_allow([^LINUX_TRUE$])
-+m4trace:configure.ac:56: -1- AC_SUBST([LINUX_FALSE])
-+m4trace:configure.ac:56: -1- AC_SUBST_TRACE([LINUX_FALSE])
-+m4trace:configure.ac:56: -1- m4_pattern_allow([^LINUX_FALSE$])
-+m4trace:configure.ac:57: -1- AM_CONDITIONAL([DARWIN], [true])
-+m4trace:configure.ac:57: -1- AC_SUBST([DARWIN_TRUE])
-+m4trace:configure.ac:57: -1- AC_SUBST_TRACE([DARWIN_TRUE])
-+m4trace:configure.ac:57: -1- m4_pattern_allow([^DARWIN_TRUE$])
-+m4trace:configure.ac:57: -1- AC_SUBST([DARWIN_FALSE])
-+m4trace:configure.ac:57: -1- AC_SUBST_TRACE([DARWIN_FALSE])
-+m4trace:configure.ac:57: -1- m4_pattern_allow([^DARWIN_FALSE$])
-+m4trace:configure.ac:58: -1- AM_CONDITIONAL([LINUX25], [true])
-+m4trace:configure.ac:58: -1- AC_SUBST([LINUX25_TRUE])
-+m4trace:configure.ac:58: -1- AC_SUBST_TRACE([LINUX25_TRUE])
-+m4trace:configure.ac:58: -1- m4_pattern_allow([^LINUX25_TRUE$])
-+m4trace:configure.ac:58: -1- AC_SUBST([LINUX25_FALSE])
-+m4trace:configure.ac:58: -1- AC_SUBST_TRACE([LINUX25_FALSE])
-+m4trace:configure.ac:58: -1- m4_pattern_allow([^LINUX25_FALSE$])
-+m4trace:configure.ac:61: -1- AC_SUBST([LDISKFSDIR])
-+m4trace:configure.ac:61: -1- AC_SUBST_TRACE([LDISKFSDIR])
-+m4trace:configure.ac:61: -1- m4_pattern_allow([^LDISKFSDIR$])
-+m4trace:configure.ac:65: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.ac:65: the top level])
-+m4trace:configure.ac:70: -1- AC_SUBST([PATCH])
-+m4trace:configure.ac:70: -1- AC_SUBST_TRACE([PATCH])
-+m4trace:configure.ac:70: -1- m4_pattern_allow([^PATCH$])
-+m4trace:configure.ac:75: -1- AC_SUBST([QUILT])
-+m4trace:configure.ac:75: -1- AC_SUBST_TRACE([QUILT])
-+m4trace:configure.ac:75: -1- m4_pattern_allow([^QUILT$])
-+m4trace:configure.ac:82: -1- AM_CONDITIONAL([USE_QUILT], [test x$QUILT != xno])
-+m4trace:configure.ac:82: -1- AC_SUBST([USE_QUILT_TRUE])
-+m4trace:configure.ac:82: -1- AC_SUBST_TRACE([USE_QUILT_TRUE])
-+m4trace:configure.ac:82: -1- m4_pattern_allow([^USE_QUILT_TRUE$])
-+m4trace:configure.ac:82: -1- AC_SUBST([USE_QUILT_FALSE])
-+m4trace:configure.ac:82: -1- AC_SUBST_TRACE([USE_QUILT_FALSE])
-+m4trace:configure.ac:82: -1- m4_pattern_allow([^USE_QUILT_FALSE$])
-+m4trace:configure.ac:84: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_LDISKFS_FS_MODULE])
-+m4trace:configure.ac:84: -1- m4_pattern_allow([^CONFIG_LDISKFS_FS_MODULE$])
-+m4trace:configure.ac:84: -1- AH_OUTPUT([CONFIG_LDISKFS_FS_MODULE], [/* build ldiskfs as a module */
-+#undef CONFIG_LDISKFS_FS_MODULE])
-+m4trace:configure.ac:84: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_LDISKFS_FS_XATTR])
-+m4trace:configure.ac:84: -1- m4_pattern_allow([^CONFIG_LDISKFS_FS_XATTR$])
-+m4trace:configure.ac:84: -1- AH_OUTPUT([CONFIG_LDISKFS_FS_XATTR], [/* enable extended attributes for ldiskfs */
-+#undef CONFIG_LDISKFS_FS_XATTR])
-+m4trace:configure.ac:84: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_LDISKFS_FS_POSIX_ACL])
-+m4trace:configure.ac:84: -1- m4_pattern_allow([^CONFIG_LDISKFS_FS_POSIX_ACL$])
-+m4trace:configure.ac:84: -1- AH_OUTPUT([CONFIG_LDISKFS_FS_POSIX_ACL], [/* enable posix acls for ldiskfs */
-+#undef CONFIG_LDISKFS_FS_POSIX_ACL])
-+m4trace:configure.ac:84: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_LDISKFS_FS_SECURITY])
-+m4trace:configure.ac:84: -1- m4_pattern_allow([^CONFIG_LDISKFS_FS_SECURITY$])
-+m4trace:configure.ac:84: -1- AH_OUTPUT([CONFIG_LDISKFS_FS_SECURITY], [/* enable fs security for ldiskfs */
-+#undef CONFIG_LDISKFS_FS_SECURITY])
-+m4trace:configure.ac:84: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_LDISKFSDEV_FS_POSIX_ACL])
-+m4trace:configure.ac:84: -1- m4_pattern_allow([^CONFIG_LDISKFSDEV_FS_POSIX_ACL$])
-+m4trace:configure.ac:84: -1- AH_OUTPUT([CONFIG_LDISKFSDEV_FS_POSIX_ACL], [/* enable posix acls for ldiskfs */
-+#undef CONFIG_LDISKFSDEV_FS_POSIX_ACL])
-+m4trace:configure.ac:84: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_LDISKFSDEV_FS_XATTR])
-+m4trace:configure.ac:84: -1- m4_pattern_allow([^CONFIG_LDISKFSDEV_FS_XATTR$])
-+m4trace:configure.ac:84: -1- AH_OUTPUT([CONFIG_LDISKFSDEV_FS_XATTR], [/* enable extented attributes for ldiskfs */
-+#undef CONFIG_LDISKFSDEV_FS_XATTR])
-+m4trace:configure.ac:84: -1- AC_DEFINE_TRACE_LITERAL([CONFIG_LDISKFSDEV_FS_SECURITY])
-+m4trace:configure.ac:84: -1- m4_pattern_allow([^CONFIG_LDISKFSDEV_FS_SECURITY$])
-+m4trace:configure.ac:84: -1- AH_OUTPUT([CONFIG_LDISKFSDEV_FS_SECURITY], [/* enable fs security for ldiskfs */
-+#undef CONFIG_LDISKFSDEV_FS_SECURITY])
-+m4trace:configure.ac:87: -1- AC_DEFINE_TRACE_LITERAL([HAVE_EXT4_LDISKFS])
-+m4trace:configure.ac:87: -1- m4_pattern_allow([^HAVE_EXT4_LDISKFS$])
-+m4trace:configure.ac:87: -1- AH_OUTPUT([HAVE_EXT4_LDISKFS], [/* ldiskfs based on ext4 */
-+#undef HAVE_EXT4_LDISKFS])
-+m4trace:configure.ac:93: -1- AC_SUBST([BACKFS])
-+m4trace:configure.ac:93: -1- AC_SUBST_TRACE([BACKFS])
-+m4trace:configure.ac:93: -1- m4_pattern_allow([^BACKFS$])
-+m4trace:configure.ac:95: -1- AC_SUBST([BACKFSU])
-+m4trace:configure.ac:95: -1- AC_SUBST_TRACE([BACKFSU])
-+m4trace:configure.ac:95: -1- m4_pattern_allow([^BACKFSU$])
-+m4trace:configure.ac:97: -1- AM_CONDITIONAL([USE_EXT4], [test x$enable_ext4 = xyes])
-+m4trace:configure.ac:97: -1- AC_SUBST([USE_EXT4_TRUE])
-+m4trace:configure.ac:97: -1- AC_SUBST_TRACE([USE_EXT4_TRUE])
-+m4trace:configure.ac:97: -1- m4_pattern_allow([^USE_EXT4_TRUE$])
-+m4trace:configure.ac:97: -1- AC_SUBST([USE_EXT4_FALSE])
-+m4trace:configure.ac:97: -1- AC_SUBST_TRACE([USE_EXT4_FALSE])
-+m4trace:configure.ac:97: -1- m4_pattern_allow([^USE_EXT4_FALSE$])
-+m4trace:configure.ac:128: -1- AC_SUBST([LDISKFS_SERIES])
-+m4trace:configure.ac:128: -1- AC_SUBST_TRACE([LDISKFS_SERIES])
-+m4trace:configure.ac:128: -1- m4_pattern_allow([^LDISKFS_SERIES$])
-+m4trace:configure.ac:130: -1- AC_SUBST([ac_configure_args])
-+m4trace:configure.ac:130: -1- AC_SUBST_TRACE([ac_configure_args])
-+m4trace:configure.ac:130: -1- m4_pattern_allow([^ac_configure_args$])
-+m4trace:configure.ac:132: -1- AC_DEFINE_TRACE_LITERAL([HAVE_D_REHASH_COND])
-+m4trace:configure.ac:132: -1- m4_pattern_allow([^HAVE_D_REHASH_COND$])
-+m4trace:configure.ac:132: -1- AH_OUTPUT([HAVE_D_REHASH_COND], [/* d_rehash_cond is exported by the kernel */
-+#undef HAVE_D_REHASH_COND])
-+m4trace:configure.ac:132: -1- AC_DEFINE_TRACE_LITERAL([HAVE_D_REHASH_COND])
-+m4trace:configure.ac:132: -1- m4_pattern_allow([^HAVE_D_REHASH_COND$])
-+m4trace:configure.ac:132: -1- AH_OUTPUT([HAVE_D_REHASH_COND], [/* d_rehash_cond is exported by the kernel */
-+#undef HAVE_D_REHASH_COND])
-+m4trace:configure.ac:138: -1- AC_DEFINE_TRACE_LITERAL([HAVE___D_REHASH])
-+m4trace:configure.ac:138: -1- m4_pattern_allow([^HAVE___D_REHASH$])
-+m4trace:configure.ac:138: -1- AH_OUTPUT([HAVE___D_REHASH], [/* __d_rehash is exported by the kernel */
-+#undef HAVE___D_REHASH])
-+m4trace:configure.ac:138: -1- AC_DEFINE_TRACE_LITERAL([HAVE___D_REHASH])
-+m4trace:configure.ac:138: -1- m4_pattern_allow([^HAVE___D_REHASH$])
-+m4trace:configure.ac:138: -1- AH_OUTPUT([HAVE___D_REHASH], [/* __d_rehash is exported by the kernel */
-+#undef HAVE___D_REHASH])
-+m4trace:configure.ac:144: -1- AC_DEFINE_TRACE_LITERAL([HAVE_D_MOVE_LOCKED])
-+m4trace:configure.ac:144: -1- m4_pattern_allow([^HAVE_D_MOVE_LOCKED$])
-+m4trace:configure.ac:144: -1- AH_OUTPUT([HAVE_D_MOVE_LOCKED], [/* d_move_locked is exported by the kernel */
-+#undef HAVE_D_MOVE_LOCKED])
-+m4trace:configure.ac:144: -1- AC_DEFINE_TRACE_LITERAL([HAVE_D_MOVE_LOCKED])
-+m4trace:configure.ac:144: -1- m4_pattern_allow([^HAVE_D_MOVE_LOCKED$])
-+m4trace:configure.ac:144: -1- AH_OUTPUT([HAVE_D_MOVE_LOCKED], [/* d_move_locked is exported by the kernel */
-+#undef HAVE_D_MOVE_LOCKED])
-+m4trace:configure.ac:150: -1- AC_DEFINE_TRACE_LITERAL([HAVE___D_MOVE])
-+m4trace:configure.ac:150: -1- m4_pattern_allow([^HAVE___D_MOVE$])
-+m4trace:configure.ac:150: -1- AH_OUTPUT([HAVE___D_MOVE], [/* __d_move exported by the kernel */
-+#undef HAVE___D_MOVE])
-+m4trace:configure.ac:150: -1- AC_DEFINE_TRACE_LITERAL([HAVE___D_MOVE])
-+m4trace:configure.ac:150: -1- m4_pattern_allow([^HAVE___D_MOVE$])
-+m4trace:configure.ac:150: -1- AH_OUTPUT([HAVE___D_MOVE], [/* __d_move exported by the kernel */
-+#undef HAVE___D_MOVE])
-+m4trace:configure.ac:156: -1- AC_CONFIG_FILES([Makefile
-+autoMakefile
-+
-+Rules:build/Rules.in
-+lustre-ldiskfs.spec
-+])
-+m4trace:configure.ac:157: -1- AC_CONFIG_FILES([ldiskfs/autoMakefile ldiskfs/Makefile])
-+m4trace:configure.ac:160: -1- AC_SUBST([MOSTLYCLEANFILES])
-+m4trace:configure.ac:160: -1- AC_SUBST_TRACE([MOSTLYCLEANFILES])
-+m4trace:configure.ac:160: -1- m4_pattern_allow([^MOSTLYCLEANFILES$])
-+m4trace:configure.ac:162: -1- AC_SUBST([LIB@&t at OBJS], [$ac_libobjs])
-+m4trace:configure.ac:162: -1- AC_SUBST_TRACE([LIB@&t at OBJS])
-+m4trace:configure.ac:162: -1- m4_pattern_allow([^LIB@&t at OBJS$])
-+m4trace:configure.ac:162: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
-+m4trace:configure.ac:162: -1- AC_SUBST_TRACE([LTLIBOBJS])
-+m4trace:configure.ac:162: -1- m4_pattern_allow([^LTLIBOBJS$])
-+m4trace:configure.ac:162: -1- AC_SUBST_TRACE([top_builddir])
-+m4trace:configure.ac:162: -1- AC_SUBST_TRACE([srcdir])
-+m4trace:configure.ac:162: -1- AC_SUBST_TRACE([abs_srcdir])
-+m4trace:configure.ac:162: -1- AC_SUBST_TRACE([top_srcdir])
-+m4trace:configure.ac:162: -1- AC_SUBST_TRACE([abs_top_srcdir])
-+m4trace:configure.ac:162: -1- AC_SUBST_TRACE([builddir])
-+m4trace:configure.ac:162: -1- AC_SUBST_TRACE([abs_builddir])
-+m4trace:configure.ac:162: -1- AC_SUBST_TRACE([abs_top_builddir])
-+m4trace:configure.ac:162: -1- AC_SUBST_TRACE([INSTALL])
-diff -Nurwd orig/lustre-1.8.2/ldiskfs/build/autogen.sh lustre-1.8.2/ldiskfs/build/autogen.sh
---- orig/lustre-1.8.2/ldiskfs/build/autogen.sh	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/ldiskfs/build/autogen.sh	2010-03-03 15:57:14.819658335 +0000
-@@ -0,0 +1,128 @@
-+#!/bin/bash
-+
-+# taken from gnome-common/macros2/autogen.sh
-+compare_versions() {
-+    ch_min_version=$1
-+    ch_actual_version=$2
-+    ch_status=0
-+    IFS="${IFS=         }"; ch_save_IFS="$IFS"; IFS="."
-+    set $ch_actual_version
-+    for ch_min in $ch_min_version; do
-+        ch_cur=`echo $1 | sed 's/[^0-9].*$//'`; shift # remove letter suffixes
-+        if [ -z "$ch_min" ]; then break; fi
-+        if [ -z "$ch_cur" ]; then ch_status=1; break; fi
-+        if [ $ch_cur -gt $ch_min ]; then break; fi
-+        if [ $ch_cur -lt $ch_min ]; then ch_status=1; break; fi
-+    done
-+    IFS="$ch_save_IFS"
-+    return $ch_status
-+}
-+
-+error_msg() {
-+	echo "$cmd is $1.  version $required is required to build Lustre."
-+
-+	if [ -e /usr/lib/autolustre/bin/$cmd ]; then
-+		cat >&2 <<-EOF
-+		You apparently already have Lustre-specific autoconf/make RPMs
-+		installed on your system at /usr/lib/autolustre/share/$cmd.
-+		Please set your PATH to point to those versions:
-+
-+		export PATH="/usr/lib/autolustre/bin:\$PATH"
-+		EOF
-+	else
-+		cat >&2 <<-EOF
-+		CFS provides RPMs which can be installed alongside your
-+		existing autoconf/make RPMs, if you are nervous about
-+		upgrading.  See
-+
-+		ftp://ftp.lustre.org/pub/other/autolustre/README.autolustre
-+
-+		You may be able to download newer version from:
-+
-+		http://ftp.gnu.org/gnu/$tool/$tool-$required.tar.gz
-+	EOF
-+	fi
-+	[ "$cmd" = "autoconf" -a "$required" = "2.57" ] && cat >&2 <<EOF
-+
-+or for RH9 systems you can use:
-+
-+ftp://fr2.rpmfind.net/linux/redhat/9/en/os/i386/RedHat/RPMS/autoconf-2.57-3.noarch.rpm
-+EOF
-+	[ "$cmd" = "automake-1.7" -a "$required" = "1.7.8" ] && cat >&2 <<EOF
-+
-+or for RH9 systems you can use:
-+
-+ftp://fr2.rpmfind.net/linux/fedora/core/1/i386/os/Fedora/RPMS/automake-1.7.8-1.noarch.rpm
-+EOF
-+	exit 1
-+}
-+
-+check_version() {
-+    local tool
-+    local cmd
-+    local required
-+    local version
-+
-+    tool=$1
-+    cmd=$2
-+    required=$3
-+    echo -n "checking for $cmd $required... "
-+    if ! $cmd --version >/dev/null ; then
-+	error_msg "missing"
-+    fi
-+    version=$($cmd --version | awk "/$tool \(GNU/ { print \$4 }")
-+    echo "found $version"
-+    if ! compare_versions "$required" "$version" ; then
-+	error_msg "too old"
-+    fi
-+}
-+
-+echo "Checking for a complete tree..."
-+if [ -d kernel_patches ] ; then
-+    # This is ldiskfs
-+    REQUIRED_DIRS="build"
-+    CONFIGURE_DIRS=""
-+else
-+    REQUIRED_DIRS="build lnet lustre"
-+    OPTIONAL_DIRS="snmp portals"
-+    CONFIGURE_DIRS="libsysio ldiskfs"
-+fi
-+
-+for dir in $REQUIRED_DIRS ; do
-+    if [ ! -d "$dir" ] ; then
-+	cat >&2 <<EOF
-+Your tree seems to be missing $dir.
-+Please read README.lustrecvs for details.
-+EOF
-+	exit 1
-+    fi
-+    ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $PWD/$dir/autoconf"
-+done
-+# optional directories for Lustre
-+for dir in $OPTIONAL_DIRS; do
-+    if [ -d "$dir" ] ; then
-+	ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $PWD/$dir/autoconf"
-+    fi
-+done
-+
-+check_version automake automake-1.7 "1.7.8"
-+check_version autoconf autoconf "2.57"
-+
-+echo "Running aclocal-1.7 $ACLOCAL_FLAGS..."
-+aclocal-1.7 $ACLOCAL_FLAGS || exit 1
-+echo "Running autoheader..."
-+autoheader || exit 1
-+echo "Running automake-1.7..."
-+automake-1.7 -a -c || exit 1
-+echo "Running autoconf..."
-+autoconf || exit 1
-+
-+# Run autogen.sh in these directories
-+for dir in $CONFIGURE_DIRS; do
-+    if [ -d $dir ] ; then
-+        pushd $dir >/dev/null
-+        echo "Running autogen for $dir..."
-+        sh autogen.sh || exit $?
-+        popd >/dev/null
-+    fi
-+done
-diff -Nurwd orig/lustre-1.8.2/ldiskfs/config.h.in lustre-1.8.2/ldiskfs/config.h.in
---- orig/lustre-1.8.2/ldiskfs/config.h.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/ldiskfs/config.h.in	2010-03-03 16:00:18.396634183 +0000
+diff --git a/ldiskfs/config.h.in b/ldiskfs/config.h.in
+index cc60100..dc9e4f2 100644
+--- a/ldiskfs/config.h.in
++++ b/ldiskfs/config.h.in
 @@ -81,7 +81,7 @@
  /* Define to the version of this package. */
  #undef PACKAGE_VERSION
@@ -52491,104 +19245,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/config.h.in lustre-1.8.2/ldiskfs/config.h.
  #undef SIZEOF_UNSIGNED_LONG_LONG
  
  /* Define to 1 if you have the ANSI C header files. */
-diff -Nurwd orig/lustre-1.8.2/ldiskfs/config.h.in~ lustre-1.8.2/ldiskfs/config.h.in~
---- orig/lustre-1.8.2/ldiskfs/config.h.in~	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/ldiskfs/config.h.in~	2010-03-03 13:43:00.000000000 +0000
-@@ -0,0 +1,91 @@
-+/* config.h.in.  Generated from configure.ac by autoheader.  */
-+
-+/* enable posix acls for ldiskfs */
-+#undef CONFIG_LDISKFSDEV_FS_POSIX_ACL
-+
-+/* enable fs security for ldiskfs */
-+#undef CONFIG_LDISKFSDEV_FS_SECURITY
-+
-+/* enable extented attributes for ldiskfs */
-+#undef CONFIG_LDISKFSDEV_FS_XATTR
-+
-+/* build ldiskfs as a module */
-+#undef CONFIG_LDISKFS_FS_MODULE
-+
-+/* enable posix acls for ldiskfs */
-+#undef CONFIG_LDISKFS_FS_POSIX_ACL
-+
-+/* enable fs security for ldiskfs */
-+#undef CONFIG_LDISKFS_FS_SECURITY
-+
-+/* enable extended attributes for ldiskfs */
-+#undef CONFIG_LDISKFS_FS_XATTR
-+
-+/* d_move_locked is exported by the kernel */
-+#undef HAVE_D_MOVE_LOCKED
-+
-+/* d_rehash_cond is exported by the kernel */
-+#undef HAVE_D_REHASH_COND
-+
-+/* ldiskfs based on ext4 */
-+#undef HAVE_EXT4_LDISKFS
-+
-+/* Define to 1 if you have the <inttypes.h> header file. */
-+#undef HAVE_INTTYPES_H
-+
-+/* Define to 1 if you have the <memory.h> header file. */
-+#undef HAVE_MEMORY_H
-+
-+/* Define to 1 if you have the <stdint.h> header file. */
-+#undef HAVE_STDINT_H
-+
-+/* Define to 1 if you have the <stdlib.h> header file. */
-+#undef HAVE_STDLIB_H
-+
-+/* Define to 1 if you have the <strings.h> header file. */
-+#undef HAVE_STRINGS_H
-+
-+/* Define to 1 if you have the <string.h> header file. */
-+#undef HAVE_STRING_H
-+
-+/* Define to 1 if you have the <sys/stat.h> header file. */
-+#undef HAVE_SYS_STAT_H
-+
-+/* Define to 1 if you have the <sys/types.h> header file. */
-+#undef HAVE_SYS_TYPES_H
-+
-+/* Define to 1 if you have the <unistd.h> header file. */
-+#undef HAVE_UNISTD_H
-+
-+/* __d_move exported by the kernel */
-+#undef HAVE___D_MOVE
-+
-+/* __d_rehash is exported by the kernel */
-+#undef HAVE___D_REHASH
-+
-+/* Name of package */
-+#undef PACKAGE
-+
-+/* Define to the address where bug reports for this package should be sent. */
-+#undef PACKAGE_BUGREPORT
-+
-+/* Define to the full name of this package. */
-+#undef PACKAGE_NAME
-+
-+/* Define to the full name and version of this package. */
-+#undef PACKAGE_STRING
-+
-+/* Define to the one symbol short name of this package. */
-+#undef PACKAGE_TARNAME
-+
-+/* Define to the version of this package. */
-+#undef PACKAGE_VERSION
-+
-+/* The size of a `unsigned long long', as computed by sizeof. */
-+#undef SIZEOF_UNSIGNED_LONG_LONG
-+
-+/* Define to 1 if you have the ANSI C header files. */
-+#undef STDC_HEADERS
-+
-+/* Version number of package */
-+#undef VERSION
-diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
---- orig/lustre-1.8.2/ldiskfs/configure	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/ldiskfs/configure	2010-03-03 16:00:19.084632645 +0000
+diff --git a/ldiskfs/configure b/ldiskfs/configure
+index 2ea4aab..5329615 100755
+--- a/ldiskfs/configure
++++ b/ldiskfs/configure
 @@ -1,27 +1,56 @@
  #! /bin/sh
  # Guess values for system-dependent variables and create Makefiles.
@@ -52652,7 +19312,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  # Support unset when possible.
  if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
-@@ -31,8 +60,43 @@
+@@ -31,8 +60,43 @@ else
  fi
  
  
@@ -52697,7 +19357,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  PS1='$ '
  PS2='> '
  PS4='+ '
-@@ -46,18 +110,19 @@
+@@ -46,18 +110,19 @@ do
    if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
      eval $as_var=C; export $as_var
    else
@@ -52720,7 +19380,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    as_basename=basename
  else
    as_basename=false
-@@ -65,157 +130,388 @@
+@@ -65,157 +130,388 @@ fi
  
  
  # Name of the executable.
@@ -52735,6 +19395,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
 -  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\/\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^.*\/\([^/][^/]*\)\/*$/{
 +	    s//\1/
 +	    q
@@ -52747,7 +19408,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
  
 +# CDPATH.
 +$as_unset CDPATH
@@ -52767,15 +19428,17 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  chmod +x conf$$.sh
 -  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
 -    PATH_SEPARATOR=';'
+-  else
+-    PATH_SEPARATOR=:
+-  fi
+-  rm -f conf$$.sh
 +if test "x$CONFIG_SHELL" = x; then
 +  if (eval ":") 2>/dev/null; then
 +  as_have_required=yes
-   else
--    PATH_SEPARATOR=:
++else
 +  as_have_required=no
-   fi
--  rm -f conf$$.sh
-+
+ fi
+ 
 +  if test $as_have_required = yes && 	 (eval ":
 +(as_func_return () {
 +  (exit \$1)
@@ -52792,19 +19455,6 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +as_func_ret_failure () {
 +  return 1
 +}
-+
-+exitcode=0
-+if as_func_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_success failed.
- fi
- 
-+if as_func_failure; then
-+  exitcode=1
-+  echo as_func_failure succeeded.
-+fi
  
 -  as_lineno_1=$LINENO
 -  as_lineno_2=$LINENO
@@ -52822,11 +19472,12 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  test -z "$as_dir" && as_dir=.
 -  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 -done
-+if as_func_ret_success; then
++exitcode=0
++if as_func_success; then
 +  :
 +else
 +  exitcode=1
-+  echo as_func_ret_success failed.
++  echo as_func_success failed.
 +fi
  
 -       ;;
@@ -52835,22 +19486,36 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  # in which case we are not to be found in the path.
 -  if test "x$as_myself" = x; then
 -    as_myself=$0
-+if as_func_ret_failure; then
-+  exitcode=1
-+  echo as_func_ret_failure succeeded.
-   fi
+-  fi
 -  if test ! -f "$as_myself"; then
 -    { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
 -   { (exit 1); exit 1; }; }
+-  fi
+-  case $CONFIG_SHELL in
+-  '')
++if as_func_failure; then
++  exitcode=1
++  echo as_func_failure succeeded.
++fi
++
++if as_func_ret_success; then
++  :
++else
++  exitcode=1
++  echo as_func_ret_success failed.
++fi
++
++if as_func_ret_failure; then
++  exitcode=1
++  echo as_func_ret_failure succeeded.
++fi
 +
 +if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
 +  :
 +else
 +  exitcode=1
 +  echo positional parameters were not saved.
-   fi
--  case $CONFIG_SHELL in
--  '')
++fi
 +
 +test \$exitcode = 0) || { (exit 1); exit 1; }
 +
@@ -52869,7 +19534,8 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
 -  for as_base in sh bash ksh sh5; do
- 	 case $as_dir in
+-	 case $as_dir in
++  case $as_dir in
  	 /*)
 -	   if ("$as_dir/$as_base" -c '
 +	   for as_base in sh bash ksh sh5; do
@@ -52984,6 +19650,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -	     exec "$CONFIG_SHELL" "$0" ${1+"$@"}
 -	   fi;;
 -	 esac
+-       done
+-done
+-;;
+-  esac
 +  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; }
 +
 +_ASEOF
@@ -52993,14 +19663,12 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +
 +fi
 +
-        done
++      done
 +
 +      if test "x$CONFIG_SHELL" != x; then
 +  for as_var in BASH_ENV ENV
 +        do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
- done
--;;
--  esac
++        done
 +        export CONFIG_SHELL
 +        exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
 +fi
@@ -53110,8 +19778,9 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +      :lineno
        N
 -      s,$,-,
-       : loop
+-      : loop
 -      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
++      :loop
 +      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
        t loop
 -      s,-$,,
@@ -53177,16 +19846,16 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
 -  if test -f conf$$.exe; then
 -    # Don't use ln at all; we don't have any links
--    as_ln_s='cp -p'
--  else
-     as_ln_s='ln -s'
--  fi
++  as_ln_s='ln -s'
 +  # ... but there are two gotchas:
 +  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 +  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 +  # In both cases, we have to default to `cp -p'.
 +  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-+    as_ln_s='cp -p'
+     as_ln_s='cp -p'
+-  else
+-    as_ln_s='ln -s'
+-  fi
  elif ln conf$$.file conf$$ 2>/dev/null; then
    as_ln_s=ln
  else
@@ -53198,7 +19867,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  if mkdir -p . 2>/dev/null; then
    as_mkdir_p=:
-@@ -224,7 +520,28 @@
+@@ -224,7 +520,28 @@ else
    as_mkdir_p=false
  fi
  
@@ -53228,7 +19897,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  # Sed expression to map a string onto a valid CPP name.
  as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-@@ -233,39 +550,27 @@
+@@ -233,39 +550,27 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  
  
@@ -53271,7 +19940,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  # Identity of this package.
  PACKAGE_NAME='Lustre ldiskfs'
  PACKAGE_TARNAME='lustre-ldiskfs'
-@@ -277,42 +582,180 @@
+@@ -277,42 +582,180 @@ ac_unique_file="lustre-ldiskfs.spec.in"
  # Factoring default headers for most tests.
  ac_includes_default="\
  #include <stdio.h>
@@ -53311,11 +19980,12 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -#else
 -# if HAVE_STDINT_H
 -#  include <stdint.h>
- # endif
-+#ifdef HAVE_STDINT_H
-+# include <stdint.h>
+-# endif
  #endif
 -#if HAVE_UNISTD_H
++#ifdef HAVE_STDINT_H
++# include <stdint.h>
++#endif
 +#ifdef HAVE_UNISTD_H
  # include <unistd.h>
  #endif"
@@ -53465,7 +20135,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  # Initialize some variables set by options.
  ac_init_help=
-@@ -339,34 +782,48 @@
+@@ -339,34 +782,48 @@ x_libraries=NONE
  # and all the variables that are supposed to be based on exec_prefix
  # by default will actually change.
  # Use braces instead of parens because sh, perl, etc. also accept them.
@@ -53521,7 +20191,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
    -bindir | --bindir | --bindi | --bind | --bin | --bi)
      ac_prev=bindir ;;
-@@ -388,33 +845,45 @@
+@@ -388,33 +845,45 @@ do
    --config-cache | -C)
      cache_file=config.cache ;;
  
@@ -53580,7 +20250,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
    -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
    | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
-@@ -441,6 +910,12 @@
+@@ -441,6 +910,12 @@ do
    -host=* | --host=* | --hos=* | --ho=*)
      host_alias=$ac_optarg ;;
  
@@ -53593,7 +20263,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    -includedir | --includedir | --includedi | --included | --include \
    | --includ | --inclu | --incl | --inc)
      ac_prev=includedir ;;
-@@ -465,13 +940,16 @@
+@@ -465,13 +940,16 @@ do
    | --libexe=* | --libex=* | --libe=*)
      libexecdir=$ac_optarg ;;
  
@@ -53614,7 +20284,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
      localstatedir=$ac_optarg ;;
  
    -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
-@@ -536,6 +1014,16 @@
+@@ -536,6 +1014,16 @@ do
    | --progr-tra=* | --program-tr=* | --program-t=*)
      program_transform_name=$ac_optarg ;;
  
@@ -53631,7 +20301,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
    | -silent | --silent | --silen | --sile | --sil)
      silent=yes ;;
-@@ -588,24 +1076,20 @@
+@@ -588,24 +1076,20 @@ do
    -with-* | --with-*)
      ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
      # Reject names that are not valid shell variable names.
@@ -53662,7 +20332,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
    --x)
      # Obsolete; use --with-x.
-@@ -636,8 +1120,7 @@
+@@ -636,8 +1120,7 @@ Try \`$0 --help' for more information." >&2
      expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
        { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
     { (exit 1); exit 1; }; }
@@ -53672,7 +20342,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
      export $ac_envvar ;;
  
    *)
-@@ -657,27 +1140,19 @@
+@@ -657,27 +1140,19 @@ if test -n "$ac_prev"; then
     { (exit 1); exit 1; }; }
  fi
  
@@ -53710,7 +20380,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  done
  
  # There might be people who depend on the old broken behavior: `$host'
-@@ -704,74 +1179,76 @@
+@@ -704,74 +1179,76 @@ test -n "$host_alias" && ac_tool_prefix=$host_alias-
  test "$silent" = yes && exec 6>/dev/null
  
  
@@ -53742,6 +20412,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -53758,7 +20429,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
    srcdir=$ac_confdir
 -  if test ! -r $srcdir/$ac_unique_file; then
 +  if test ! -r "$srcdir/$ac_unique_file"; then
@@ -53770,14 +20441,15 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -if test ! -r $srcdir/$ac_unique_file; then
 -  if test "$ac_srcdir_defaulted" = yes; then
 -    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
--   { (exit 1); exit 1; }; }
--  else
 +if test ! -r "$srcdir/$ac_unique_file"; then
 +  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
-     { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
++  { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
     { (exit 1); exit 1; }; }
-   fi
--fi
+-  else
+-    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
+-   { (exit 1); exit 1; }; }
+-  fi
+ fi
 -(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
 -  { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
 +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
@@ -53837,7 +20509,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  #
  # Report the --help message.
-@@ -800,9 +1277,6 @@
+@@ -800,9 +1277,6 @@ Configuration:
    -n, --no-create         do not create output files
        --srcdir=DIR        find the sources in DIR [configure dir or \`..']
  
@@ -53847,7 +20519,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  Installation directories:
    --prefix=PREFIX         install architecture-independent files in PREFIX
  			  [$ac_default_prefix]
-@@ -820,15 +1294,22 @@
+@@ -820,15 +1294,22 @@ Fine tuning of the installation directories:
    --bindir=DIR           user executables [EPREFIX/bin]
    --sbindir=DIR          system admin executables [EPREFIX/sbin]
    --libexecdir=DIR       program executables [EPREFIX/libexec]
@@ -53873,7 +20545,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  _ACEOF
  
    cat <<\_ACEOF
-@@ -876,8 +1357,9 @@
+@@ -876,8 +1357,9 @@ Some influential environment variables:
    CFLAGS      C compiler flags
    LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
                nonstandard directory <lib dir>
@@ -53885,7 +20557,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    CPP         C preprocessor
  
  Use these variables to override the choices made by `configure' or to help
-@@ -885,120 +1367,86 @@
+@@ -885,120 +1367,86 @@ it to find libraries and programs with nonstandard names/locations.
  
  Report bugs to <https://bugzilla.lustre.org/>.
  _ACEOF
@@ -53940,7 +20612,13 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  *) # Relative path.
 -    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
 -    ac_top_srcdir=$ac_top_builddir$srcdir ;;
--esac
++    ac_top_srcdir=$srcdir
++    ac_abs_top_srcdir=$srcdir ;;
++  *) # Relative name.
++    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
++    ac_top_srcdir=$ac_top_build_prefix$srcdir
++    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+ esac
 -
 -# Do not use `cd foo && pwd` to compute absolute paths, because
 -# the directories may not exist.
@@ -53979,15 +20657,8 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
 -  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
 -  esac;;
-+    ac_top_srcdir=$srcdir
-+    ac_abs_top_srcdir=$srcdir ;;
-+  *) # Relative name.
-+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
-+    ac_top_srcdir=$ac_top_build_prefix$srcdir
-+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
- esac
-+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
- 
+-esac
+-
 -    cd $ac_dir
 -    # Check for guested configure; otherwise get Cygnus style configure.
 -    if test -f $ac_srcdir/configure.gnu; then
@@ -54000,6 +20671,8 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -	   test -f $ac_srcdir/configure.in; then
 -      echo
 -      $ac_configure --help
++ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
++
 +    cd "$ac_dir" || { ac_status=$?; continue; }
 +    # Check for guested configure.
 +    if test -f "$ac_srcdir/configure.gnu"; then
@@ -54051,7 +20724,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  {
  cat <<_ASUNAME
  ## --------- ##
-@@ -1017,7 +1465,7 @@
+@@ -1017,7 +1465,7 @@ uname -v = `(uname -v) 2>/dev/null || echo unknown`
  /bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
  /usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
  /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
@@ -54060,7 +20733,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  /bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
  /usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
  /bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
-@@ -1031,6 +1479,7 @@
+@@ -1031,6 +1479,7 @@ do
    test -z "$as_dir" && as_dir=.
    echo "PATH: $as_dir"
  done
@@ -54068,7 +20741,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  } >&5
  
-@@ -1052,7 +1501,6 @@
+@@ -1052,7 +1501,6 @@ _ACEOF
  ac_configure_args=
  ac_configure_args0=
  ac_configure_args1=
@@ -54076,7 +20749,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  ac_must_keep_next=false
  for ac_pass in 1 2
  do
-@@ -1063,7 +1511,7 @@
+@@ -1063,7 +1511,7 @@ do
      -q | -quiet | --quiet | --quie | --qui | --qu | --q \
      | -silent | --silent | --silen | --sile | --sil)
        continue ;;
@@ -54085,7 +20758,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
        ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
      esac
      case $ac_pass in
-@@ -1085,9 +1533,7 @@
+@@ -1085,9 +1533,7 @@ do
  	  -* ) ac_must_keep_next=true ;;
  	esac
        fi
@@ -54096,7 +20769,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
        ;;
      esac
    done
-@@ -1098,8 +1544,8 @@
+@@ -1098,8 +1544,8 @@ $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_
  # When interrupted or exit'd, cleanup temporary files, and complete
  # config.log.  We remove comments because anyway the quotes in there
  # would cause problems or look ugly.
@@ -54107,7 +20780,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  trap 'exit_status=$?
    # Save into config.log some information that might help in debugging.
    {
-@@ -1112,20 +1558,34 @@
+@@ -1112,20 +1558,34 @@ trap 'exit_status=$?
  _ASBOX
      echo
      # The following way of writing the cache mishandles newlines in values,
@@ -54152,7 +20825,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
      echo
  
      cat <<\_ASBOX
-@@ -1136,22 +1596,28 @@
+@@ -1136,22 +1596,28 @@ _ASBOX
      echo
      for ac_var in $ac_subst_vars
      do
@@ -54188,7 +20861,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
        done | sort
        echo
      fi
-@@ -1163,15 +1629,15 @@
+@@ -1163,26 +1629,24 @@ _ASBOX
  ## ----------- ##
  _ASBOX
        echo
@@ -54205,9 +20878,11 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +  rm -f core *.core core.conftest.* &&
 +    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
      exit $exit_status
-      ' 0
+-     ' 0
++' 0
  for ac_signal in 1 2 13 15; do
-@@ -1180,9 +1646,7 @@
+   trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
+ done
  ac_signal=0
  
  # confdefs.h avoids OS command line length limits that DEFS can exceed.
@@ -54218,20 +20893,21 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  # Predefined preprocessor variables.
  
-@@ -1213,14 +1677,17 @@
+@@ -1213,14 +1677,17 @@ _ACEOF
  
  # Let the site file select an alternate cache file if it wants to.
  # Prefer explicitly selected file to automatically selected ones.
 -if test -z "$CONFIG_SITE"; then
 -  if test "x$prefix" != xNONE; then
 -    CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
+-  else
+-    CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
+-  fi
 +if test -n "$CONFIG_SITE"; then
 +  set x "$CONFIG_SITE"
 +elif test "x$prefix" != xNONE; then
 +  set x "$prefix/share/config.site" "$prefix/etc/config.site"
-   else
--    CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
--  fi
++else
 +  set x "$ac_default_prefix/share/config.site" \
 +	"$ac_default_prefix/etc/config.site"
  fi
@@ -54242,7 +20918,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    if test -r "$ac_site_file"; then
      { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
  echo "$as_me: loading site script $ac_site_file" >&6;}
-@@ -1236,8 +1703,8 @@
+@@ -1236,8 +1703,8 @@ if test -r "$cache_file"; then
      { echo "$as_me:$LINENO: loading cache $cache_file" >&5
  echo "$as_me: loading cache $cache_file" >&6;}
      case $cache_file in
@@ -54253,7 +20929,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
      esac
    fi
  else
-@@ -1249,12 +1716,11 @@
+@@ -1249,12 +1716,11 @@ fi
  # Check that the precious variables saved in the cache have kept the same
  # value.
  ac_cache_corrupted=false
@@ -54269,7 +20945,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    case $ac_old_set,$ac_new_set in
      set,)
        { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
-@@ -1279,8 +1745,7 @@
+@@ -1279,8 +1745,7 @@ echo "$as_me:   current value: $ac_new_val" >&2;}
    # Pass precious variables to config.status.
    if test "$ac_new_set" = set; then
      case $ac_new_val in
@@ -54279,7 +20955,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
      *) ac_arg=$ac_var=$ac_new_val ;;
      esac
      case " $ac_configure_args " in
-@@ -1297,12 +1762,6 @@
+@@ -1297,12 +1762,6 @@ echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start ov
     { (exit 1); exit 1; }; }
  fi
  
@@ -54292,7 +20968,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  
  
-@@ -1327,111 +1786,166 @@
+@@ -1327,111 +1786,166 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
  
  
  
@@ -54397,6 +21073,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 -build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 -build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+-
+-
+-echo "$as_me:$LINENO: checking host system type" >&5
+-echo $ECHO_N "checking host system type... $ECHO_C" >&6
 +ac_save_IFS=$IFS; IFS='-'
 +set x $ac_cv_build
 +shift
@@ -54408,10 +21088,8 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +build_os=$*
 +IFS=$ac_save_IFS
 +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
- 
- 
--echo "$as_me:$LINENO: checking host system type" >&5
--echo $ECHO_N "checking host system type... $ECHO_C" >&6
++
++
 +{ echo "$as_me:$LINENO: checking host system type" >&5
 +echo $ECHO_N "checking host system type... $ECHO_C" >&6; }
  if test "${ac_cv_host+set}" = set; then
@@ -54447,6 +21125,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 -host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 -host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+-
+-
+-echo "$as_me:$LINENO: checking target system type" >&5
+-echo $ECHO_N "checking target system type... $ECHO_C" >&6
 +ac_save_IFS=$IFS; IFS='-'
 +set x $ac_cv_host
 +shift
@@ -54458,10 +21140,8 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +host_os=$*
 +IFS=$ac_save_IFS
 +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
- 
- 
--echo "$as_me:$LINENO: checking target system type" >&5
--echo $ECHO_N "checking target system type... $ECHO_C" >&6
++
++
 +{ echo "$as_me:$LINENO: checking target system type" >&5
 +echo $ECHO_N "checking target system type... $ECHO_C" >&6; }
  if test "${ac_cv_target+set}" = set; then
@@ -54511,7 +21191,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  
  # The aliases save the names the user supplied, while $host etc.
-@@ -1455,8 +1969,8 @@
+@@ -1455,8 +1969,8 @@ am__api_version="1.7"
  # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  # OS/2's system install, which has a completely different semantic
  # ./install, which can be erroneously created by make from ./install.sh.
@@ -54522,7 +21202,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test -z "$INSTALL"; then
  if test "${ac_cv_path_install+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
-@@ -1478,7 +1992,7 @@
+@@ -1478,7 +1992,7 @@ case $as_dir/ in
      # by default.
      for ac_prog in ginstall scoinst install; do
        for ac_exec_ext in '' $ac_executable_extensions; do
@@ -54531,7 +21211,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  	  if test $ac_prog = install &&
  	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
  	    # AIX install.  It has an incompatible calling convention.
-@@ -1497,21 +2011,22 @@
+@@ -1497,21 +2011,22 @@ case $as_dir/ in
      ;;
  esac
  done
@@ -54559,7 +21239,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  # It thinks the first close brace ends the variable substitution.
-@@ -1521,8 +2036,8 @@
+@@ -1521,8 +2036,8 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
  
  test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  
@@ -54570,7 +21250,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  # Just in case
  sleep 1
  echo timestamp > conftest.file
-@@ -1564,20 +2079,20 @@
+@@ -1564,20 +2079,20 @@ echo "$as_me: error: newly created file is older than distributed files!
  Check your system clock" >&2;}
     { (exit 1); exit 1; }; }
  fi
@@ -54596,7 +21276,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  
  # expand $ac_aux_dir to an absolute path
-@@ -1597,8 +2112,8 @@
+@@ -1597,8 +2112,8 @@ for ac_prog in gawk mawk nawk awk
  do
    # Extract the first word of "$ac_prog", so it can be a program name with args.
  set dummy $ac_prog; ac_word=$2
@@ -54607,7 +21287,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_prog_AWK+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1611,54 +2126,57 @@
+@@ -1611,54 +2126,57 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -54686,7 +21366,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    SET_MAKE="MAKE=${MAKE-make}"
  fi
  
-@@ -1732,8 +2250,8 @@
+@@ -1732,8 +2250,8 @@ if test "$cross_compiling" != no; then
    if test -n "$ac_tool_prefix"; then
    # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
  set dummy ${ac_tool_prefix}strip; ac_word=$2
@@ -54697,7 +21377,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_prog_STRIP+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1746,32 +2264,34 @@
+@@ -1746,32 +2264,34 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -54739,7 +21419,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1784,27 +2304,41 @@
+@@ -1784,27 +2304,41 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -54769,6 +21449,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +echo "${ECHO_T}no" >&6; }
  fi
  
+-  STRIP=$ac_ct_STRIP
 +  if test "x$ac_ct_STRIP" = x; then
 +    STRIP=":"
 +  else
@@ -54782,12 +21463,12 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +configuration is useful to you, please write to autoconf at gnu.org." >&2;}
 +ac_tool_warned=yes ;;
 +esac
-   STRIP=$ac_ct_STRIP
++    STRIP=$ac_ct_STRIP
 +  fi
  else
    STRIP="$ac_cv_prog_STRIP"
  fi
-@@ -1826,8 +2360,8 @@
+@@ -1826,8 +2360,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
  if test -n "$ac_tool_prefix"; then
    # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
  set dummy ${ac_tool_prefix}gcc; ac_word=$2
@@ -54798,7 +21479,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_prog_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1840,32 +2374,34 @@
+@@ -1840,32 +2374,34 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -54840,7 +21521,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1878,26 +2414,41 @@
+@@ -1878,36 +2414,51 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -54869,6 +21550,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +echo "${ECHO_T}no" >&6; }
  fi
  
+-  CC=$ac_ct_CC
 +  if test "x$ac_ct_CC" = x; then
 +    CC=""
 +  else
@@ -54882,14 +21564,17 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +configuration is useful to you, please write to autoconf at gnu.org." >&2;}
 +ac_tool_warned=yes ;;
 +esac
-   CC=$ac_ct_CC
++    CC=$ac_ct_CC
 +  fi
  else
    CC="$ac_cv_prog_CC"
  fi
-@@ -1906,8 +2457,8 @@
-   if test -n "$ac_tool_prefix"; then
-   # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
+ 
+ if test -z "$CC"; then
+-  if test -n "$ac_tool_prefix"; then
+-  # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
++          if test -n "$ac_tool_prefix"; then
++    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
  set dummy ${ac_tool_prefix}cc; ac_word=$2
 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
@@ -54898,7 +21583,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_prog_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1920,74 +2471,34 @@
+@@ -1920,74 +2471,34 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -54935,9 +21620,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -else
 -  if test -n "$ac_ct_CC"; then
 -  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
- else
+-else
 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 -for as_dir in $PATH
 -do
@@ -54948,28 +21631,31 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -    ac_cv_prog_ac_ct_CC="cc"
 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 -    break 2
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-   fi
+-  fi
 -done
 -done
- 
+-
 -fi
 -fi
 -ac_ct_CC=$ac_cv_prog_ac_ct_CC
 -if test -n "$ac_ct_CC"; then
 -  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 -echo "${ECHO_T}$ac_ct_CC" >&6
--else
++  { echo "$as_me:$LINENO: result: $CC" >&5
++echo "${ECHO_T}$CC" >&6; }
+ else
 -  echo "$as_me:$LINENO: result: no" >&5
 -echo "${ECHO_T}no" >&6
--fi
++  { echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ fi
  
 -  CC=$ac_ct_CC
 -else
 -  CC="$ac_cv_prog_CC"
- fi
--
+-fi
+ 
++  fi
  fi
  if test -z "$CC"; then
    # Extract the first word of "cc", so it can be a program name with args.
@@ -54981,7 +21667,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_prog_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2001,7 +2512,7 @@
+@@ -2001,7 +2512,7 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -54990,7 +21676,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
      if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
         ac_prog_rejected=yes
         continue
-@@ -2012,6 +2523,7 @@
+@@ -2012,6 +2523,7 @@ do
    fi
  done
  done
@@ -54998,7 +21684,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  if test $ac_prog_rejected = yes; then
    # We found a bogon in the path, so make sure we never use it.
-@@ -2029,22 +2541,23 @@
+@@ -2029,22 +2541,23 @@ fi
  fi
  CC=$ac_cv_prog_CC
  if test -n "$CC"; then
@@ -55029,7 +21715,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_prog_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2057,36 +2570,38 @@
+@@ -2057,36 +2570,38 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -55076,7 +21762,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2099,30 +2614,46 @@
+@@ -2099,29 +2614,45 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -55109,6 +21795,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    test -n "$ac_ct_CC" && break
  done
  
+-  CC=$ac_ct_CC
 +  if test "x$ac_ct_CC" = x; then
 +    CC=""
 +  else
@@ -55122,13 +21809,12 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +configuration is useful to you, please write to autoconf at gnu.org." >&2;}
 +ac_tool_warned=yes ;;
 +esac
-   CC=$ac_ct_CC
++    CC=$ac_ct_CC
++  fi
  fi
-+fi
  
  fi
- 
-@@ -2134,21 +2665,35 @@
+@@ -2134,21 +2665,35 @@ See \`config.log' for more details." >&2;}
     { (exit 1); exit 1; }; }
  
  # Provide some information about the compiler.
@@ -55172,7 +21858,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }
-@@ -2173,47 +2718,77 @@
+@@ -2173,47 +2718,77 @@ ac_clean_files="$ac_clean_files a.out a.exe b.out"
  # Try to create an executable without -o first, disregard a.out.
  # It will help us diagnose broken compilers, and finding out an intuition
  # of exeext.
@@ -55241,13 +21927,14 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  	# certainly right.
  	break;;
      *.* )
-+        if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
-+	then :; else
- 	ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
+-	ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 -	# FIXME: I believe we export ac_cv_exeext for Libtool,
 -	# but it would be cool to find out if it's true.  Does anybody
 -	# maintain Libtool? --akim.
 -	export ac_cv_exeext
++        if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
++	then :; else
++	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 +	fi
 +	# We set ac_cv_exeext here because the later test for it is not
 +	# safe: cross compilers may not add the suffix if given an `-o'
@@ -55271,7 +21958,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    echo "$as_me: failed program was:" >&5
  sed 's/^/| /' conftest.$ac_ext >&5
  
-@@ -2225,19 +2800,21 @@
+@@ -2225,19 +2800,21 @@ See \`config.log' for more details." >&2;}
  fi
  
  ac_exeext=$ac_cv_exeext
@@ -55300,7 +21987,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
-@@ -2256,22 +2833,27 @@
+@@ -2256,22 +2833,27 @@ See \`config.log' for more details." >&2;}
      fi
    fi
  fi
@@ -55318,15 +22005,16 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
 -echo "$as_me:$LINENO: result: $cross_compiling" >&5
 -echo "${ECHO_T}$cross_compiling" >&6
-+{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
-+echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
-+{ echo "$as_me:$LINENO: result: $cross_compiling" >&5
-+echo "${ECHO_T}$cross_compiling" >&6; }
- 
+-
 -echo "$as_me:$LINENO: checking for suffix of executables" >&5
 -echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 -  (eval $ac_link) 2>&5
++{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
++echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
++{ echo "$as_me:$LINENO: result: $cross_compiling" >&5
++echo "${ECHO_T}$cross_compiling" >&6; }
++
 +{ echo "$as_me:$LINENO: checking for suffix of executables" >&5
 +echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }
 +if { (ac_try="$ac_link"
@@ -55339,7 +22027,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; then
-@@ -2282,9 +2864,8 @@
+@@ -2282,9 +2864,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  for ac_file in conftest.exe conftest conftest.*; do
    test -f "$ac_file" || continue
    case $ac_file in
@@ -55350,7 +22038,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  	  break;;
      * ) break;;
    esac
-@@ -2298,14 +2879,14 @@
+@@ -2298,14 +2879,14 @@ See \`config.log' for more details." >&2;}
  fi
  
  rm -f conftest$ac_cv_exeext
@@ -55369,7 +22057,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_objext+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2325,14 +2906,20 @@
+@@ -2325,14 +2906,20 @@ main ()
  }
  _ACEOF
  rm -f conftest.o conftest.obj
@@ -55394,7 +22082,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
      *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
         break;;
    esac
-@@ -2350,12 +2937,12 @@
+@@ -2350,12 +2937,12 @@ fi
  
  rm -f conftest.$ac_cv_objext conftest.$ac_ext
  fi
@@ -55411,7 +22099,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_c_compiler_gnu+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2378,27 +2965,22 @@
+@@ -2378,50 +2965,49 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -55450,9 +22138,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    ac_compiler_gnu=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -2406,21 +2988,25 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_compiler_gnu=no
+-ac_compiler_gnu=no
++	ac_compiler_gnu=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -55475,14 +22164,16 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_prog_cc_g+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
+-  cat >conftest.$ac_ext <<_ACEOF
 +  ac_save_c_werror_flag=$ac_c_werror_flag
 +   ac_c_werror_flag=yes
 +   ac_cv_prog_cc_g=no
 +   CFLAGS="-g"
-   cat >conftest.$ac_ext <<_ACEOF
++   cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -2437,38 +3023,118 @@
+ cat confdefs.h >>conftest.$ac_ext
+@@ -2437,38 +3023,118 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -55598,26 +22289,26 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
 -ac_cv_prog_cc_g=no
 +
- fi
--rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++fi
 +
 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
- fi
--echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
--echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
++fi
 +
 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 +   ac_c_werror_flag=$ac_save_c_werror_flag
-+fi
+ fi
+-echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
+-echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
 +{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
 +echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }
  if test "$ac_test_CFLAGS" = set; then
    CFLAGS=$ac_save_CFLAGS
  elif test $ac_cv_prog_cc_g = yes; then
-@@ -2484,12 +3150,12 @@
+@@ -2484,12 +3150,12 @@ else
      CFLAGS=
    fi
  fi
@@ -55634,7 +22325,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  ac_save_CC=$CC
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
-@@ -2523,12 +3189,17 @@
+@@ -2523,12 +3189,17 @@ static char *f (char * (*g) (char **, int), char **p, ...)
  /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
     function prototypes and stuff, but not '\xHH' hex character constants.
     These don't provoke an error unfortunately, instead are silently treated
@@ -55654,7 +22345,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  int test (int i, double x);
  struct s1 {int (*f) (int a);};
  struct s2 {int (*f) (double a);};
-@@ -2543,205 +3214,57 @@
+@@ -2543,205 +3214,57 @@ return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
    return 0;
  }
  _ACEOF
@@ -55870,7 +22561,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -else
 -  echo "$as_me: failed program was:" >&5
 -sed 's/^/| /' conftest.$ac_ext >&5
--
+ 
 -fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 -done
@@ -55884,13 +22575,22 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -else
 -  echo "$as_me: failed program was:" >&5
 -sed 's/^/| /' conftest.$ac_ext >&5
- 
+-
 -fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
  ac_ext=c
  ac_cpp='$CPP $CPPFLAGS'
  ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-@@ -2759,8 +3282,8 @@
+@@ -2749,7 +3272,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
+ ac_compiler_gnu=$ac_cv_c_compiler_gnu
+ DEPDIR="${am__leading_dot}deps"
+ 
+-          ac_config_commands="$ac_config_commands depfiles"
++ac_config_commands="$ac_config_commands depfiles"
+ 
+ 
+ am_make=${MAKE-make}
+@@ -2759,8 +3282,8 @@ am__doit:
  .PHONY: am__doit
  END
  # If we don't find an include directive, just comment out the code.
@@ -55901,7 +22601,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  am__include="#"
  am__quote=
  _am_result=none
-@@ -2787,15 +3310,15 @@
+@@ -2787,15 +3310,15 @@ if test "$am__include" = "#"; then
  fi
  
  
@@ -55922,7 +22622,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "x$enable_dependency_tracking" != xno; then
    am_depcomp="$ac_aux_dir/depcomp"
    AMDEPBACKSLASH='\'
-@@ -2815,8 +3338,8 @@
+@@ -2815,8 +3338,8 @@ fi
  
  depcc="$CC"   am_compiler_list=
  
@@ -55933,7 +22633,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2898,8 +3421,8 @@
+@@ -2898,8 +3421,8 @@ else
  fi
  
  fi
@@ -55944,7 +22644,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
  
  
-@@ -2937,8 +3460,8 @@
+@@ -2937,8 +3460,8 @@ ac_cpp='$CPP $CPPFLAGS'
  ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  ac_compiler_gnu=$ac_cv_c_compiler_gnu
@@ -55955,7 +22655,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  # On Suns, sometimes $CPP names a directory.
  if test -n "$CPP" && test -d "$CPP"; then
    CPP=
-@@ -2972,24 +3495,22 @@
+@@ -2972,24 +3495,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  #endif
  		     Syntax error
  _ACEOF
@@ -55991,7 +22691,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    :
  else
    echo "$as_me: failed program was:" >&5
-@@ -2998,9 +3519,10 @@
+@@ -2998,9 +3519,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
    # Broken: fails on valid input.
  continue
  fi
@@ -56003,7 +22703,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    # can be detected and how.
    cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
-@@ -3010,24 +3532,22 @@
+@@ -3010,24 +3532,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <ac_nonexistent.h>
  _ACEOF
@@ -56039,7 +22739,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    # Broken: success on invalid input.
  continue
  else
-@@ -3038,6 +3558,7 @@
+@@ -3038,6 +3558,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
  ac_preproc_ok=:
  break
  fi
@@ -56047,7 +22747,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  rm -f conftest.err conftest.$ac_ext
  
  done
-@@ -3055,8 +3576,8 @@
+@@ -3055,8 +3576,8 @@ fi
  else
    ac_cv_prog_CPP=$CPP
  fi
@@ -56058,7 +22758,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  ac_preproc_ok=false
  for ac_c_preproc_warn_flag in '' yes
  do
-@@ -3079,24 +3600,22 @@
+@@ -3079,24 +3600,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  #endif
  		     Syntax error
  _ACEOF
@@ -56094,7 +22794,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    :
  else
    echo "$as_me: failed program was:" >&5
-@@ -3105,9 +3624,10 @@
+@@ -3105,9 +3624,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
    # Broken: fails on valid input.
  continue
  fi
@@ -56106,7 +22806,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    # can be detected and how.
    cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
-@@ -3117,24 +3637,22 @@
+@@ -3117,24 +3637,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <ac_nonexistent.h>
  _ACEOF
@@ -56142,7 +22842,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    # Broken: success on invalid input.
  continue
  else
-@@ -3145,6 +3663,7 @@
+@@ -3145,6 +3663,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
  ac_preproc_ok=:
  break
  fi
@@ -56150,7 +22850,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  rm -f conftest.err conftest.$ac_ext
  
  done
-@@ -3167,23 +3686,170 @@
+@@ -3167,23 +3686,170 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
  ac_compiler_gnu=$ac_cv_c_compiler_gnu
  
  
@@ -56160,11 +22860,8 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5
 +echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; }
 +if test "${ac_cv_path_GREP+set}" = set; then
-   echo $ECHO_N "(cached) $ECHO_C" >&6
- else
--  if echo a | (grep -E '(a|b)') >/dev/null 2>&1
--    then ac_cv_prog_egrep='grep -E'
--    else ac_cv_prog_egrep='egrep'
++  echo $ECHO_N "(cached) $ECHO_C" >&6
++else
 +  # Extract the first word of "grep ggrep" to use in msg output
 +if test -z "$GREP"; then
 +set dummy grep ggrep; ac_prog_name=$2
@@ -56203,7 +22900,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +      # Best one so far, save it but keep looking for a better one
 +      ac_cv_path_GREP="$ac_path_GREP"
 +      ac_path_GREP_max=$ac_count
-     fi
++    fi
 +    # 10*(2^10) chars as input seems more than enough
 +    test $ac_count -gt 10 && break
 +  done
@@ -56219,20 +22916,15 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +IFS=$as_save_IFS
 +
 +
- fi
--echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
--echo "${ECHO_T}$ac_cv_prog_egrep" >&6
-- EGREP=$ac_cv_prog_egrep
- 
++fi
++
 +GREP="$ac_cv_path_GREP"
 +if test -z "$GREP"; then
 +  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
 +echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
 +   { (exit 1); exit 1; }; }
 +fi
- 
--echo "$as_me:$LINENO: checking for ANSI C header files" >&5
--echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
++
 +else
 +  ac_cv_path_GREP=$GREP
 +fi
@@ -56247,8 +22939,11 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +{ echo "$as_me:$LINENO: checking for egrep" >&5
 +echo $ECHO_N "checking for egrep... $ECHO_C" >&6; }
 +if test "${ac_cv_path_EGREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
+   echo $ECHO_N "(cached) $ECHO_C" >&6
+ else
+-  if echo a | (grep -E '(a|b)') >/dev/null 2>&1
+-    then ac_cv_prog_egrep='grep -E'
+-    else ac_cv_prog_egrep='egrep'
 +  if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
 +   then ac_cv_path_EGREP="$GREP -E"
 +   else
@@ -56290,7 +22985,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +      # Best one so far, save it but keep looking for a better one
 +      ac_cv_path_EGREP="$ac_path_EGREP"
 +      ac_path_EGREP_max=$ac_count
-+    fi
+     fi
 +    # 10*(2^10) chars as input seems more than enough
 +    test $ac_count -gt 10 && break
 +  done
@@ -56321,18 +23016,23 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +
 +
 +   fi
-+fi
+ fi
+-echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
+-echo "${ECHO_T}$ac_cv_prog_egrep" >&6
+- EGREP=$ac_cv_prog_egrep
 +{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5
 +echo "${ECHO_T}$ac_cv_path_EGREP" >&6; }
 + EGREP="$ac_cv_path_EGREP"
-+
-+
+ 
+ 
+-echo "$as_me:$LINENO: checking for ANSI C header files" >&5
+-echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
 +{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5
 +echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
  if test "${ac_cv_header_stdc+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -3207,27 +3873,22 @@
+@@ -3207,35 +3873,31 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -56371,9 +23071,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    ac_cv_header_stdc=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -3235,7 +3896,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_cv_header_stdc=no
+-ac_cv_header_stdc=no
++	ac_cv_header_stdc=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -56381,7 +23082,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  if test $ac_cv_header_stdc = yes; then
    # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
-@@ -3291,6 +3953,7 @@
+@@ -3291,6 +3953,7 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <ctype.h>
@@ -56389,7 +23090,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  #if ((' ' & 0x0FF) == 0x020)
  # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
-@@ -3310,18 +3973,27 @@
+@@ -3310,18 +3973,27 @@ main ()
    for (i = 0; i < 256; i++)
      if (XOR (islower (i), ISLOWER (i))
  	|| toupper (i) != TOUPPER (i))
@@ -56423,7 +23124,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
-@@ -3334,12 +4006,14 @@
+@@ -3334,12 +4006,14 @@ sed 's/^/| /' conftest.$ac_ext >&5
  ( exit $ac_status )
  ac_cv_header_stdc=no
  fi
@@ -56441,7 +23142,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test $ac_cv_header_stdc = yes; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -3362,9 +4036,9 @@
+@@ -3362,9 +4036,9 @@ for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
  		  inttypes.h stdint.h unistd.h
  do
  as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
@@ -56454,7 +23155,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    cat >conftest.$ac_ext <<_ACEOF
-@@ -3378,27 +4052,22 @@
+@@ -3378,38 +4052,35 @@ $ac_includes_default
  #include <$ac_header>
  _ACEOF
  rm -f conftest.$ac_objext
@@ -56493,9 +23194,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    eval "$as_ac_Header=yes"
  else
    echo "$as_me: failed program was:" >&5
-@@ -3406,10 +4075,12 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- eval "$as_ac_Header=no"
+-eval "$as_ac_Header=no"
++	eval "$as_ac_Header=no"
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -56509,7 +23211,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test `eval echo '${'$as_ac_Header'}'` = yes; then
    cat >>confdefs.h <<_ACEOF
  #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
-@@ -3423,8 +4094,8 @@
+@@ -3423,8 +4094,8 @@ done
  if test -n "$ac_tool_prefix"; then
    # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
  set dummy ${ac_tool_prefix}ranlib; ac_word=$2
@@ -56520,7 +23222,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_prog_RANLIB+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -3437,32 +4108,34 @@
+@@ -3437,32 +4108,34 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -56562,7 +23264,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -3475,37 +4148,51 @@
+@@ -3475,37 +4148,51 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -56592,6 +23294,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +echo "${ECHO_T}no" >&6; }
  fi
  
+-  RANLIB=$ac_ct_RANLIB
 +  if test "x$ac_ct_RANLIB" = x; then
 +    RANLIB=":"
 +  else
@@ -56605,7 +23308,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +configuration is useful to you, please write to autoconf at gnu.org." >&2;}
 +ac_tool_warned=yes ;;
 +esac
-   RANLIB=$ac_ct_RANLIB
++    RANLIB=$ac_ct_RANLIB
 +  fi
  else
    RANLIB="$ac_cv_prog_RANLIB"
@@ -56624,7 +23327,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  	echo
  	echo "   '$CC_VERSION'"
  	echo "  has been known to generate bad code, "
-@@ -3530,14 +4217,14 @@
+@@ -3530,14 +4217,14 @@ case "$CC_VERSION" in
  		bad_cc
  		;;
  	*)
@@ -56643,7 +23346,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_type_unsigned_long_long+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -3548,39 +4235,35 @@
+@@ -3548,61 +4235,57 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  $ac_includes_default
@@ -56697,9 +23400,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    ac_cv_type_unsigned_long_long=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -3588,21 +4271,21 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_cv_type_unsigned_long_long=no
+-ac_cv_type_unsigned_long_long=no
++	ac_cv_type_unsigned_long_long=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -56712,24 +23416,24 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
 -echo "$as_me:$LINENO: checking size of unsigned long long" >&5
 -echo $ECHO_N "checking size of unsigned long long... $ECHO_C" >&6
--if test "${ac_cv_sizeof_unsigned_long_long+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
--else
--  if test "$ac_cv_type_unsigned_long_long" = yes; then
--  # The cast to unsigned long works around a bug in the HP C Compiler
 +# The cast to long int works around a bug in the HP C Compiler
-   # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
-   # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
-   # This bug is HP SR number 8606223364.
++# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
++# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
++# This bug is HP SR number 8606223364.
 +{ echo "$as_me:$LINENO: checking size of unsigned long long" >&5
 +echo $ECHO_N "checking size of unsigned long long... $ECHO_C" >&6; }
-+if test "${ac_cv_sizeof_unsigned_long_long+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
+ if test "${ac_cv_sizeof_unsigned_long_long+set}" = set; then
+   echo $ECHO_N "(cached) $ECHO_C" >&6
+ else
+-  if test "$ac_cv_type_unsigned_long_long" = yes; then
+-  # The cast to unsigned long works around a bug in the HP C Compiler
+-  # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
+-  # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
+-  # This bug is HP SR number 8606223364.
    if test "$cross_compiling" = yes; then
    # Depending upon the size, compute the lo and hi bounds.
  cat >conftest.$ac_ext <<_ACEOF
-@@ -3612,10 +4295,11 @@
+@@ -3612,10 +4295,11 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  $ac_includes_default
@@ -56742,7 +23446,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  test_array [0] = 0
  
    ;
-@@ -3623,27 +4307,22 @@
+@@ -3623,27 +4307,22 @@ test_array [0] = 0
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -56781,7 +23485,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    ac_lo=0 ac_mid=0
    while :; do
      cat >conftest.$ac_ext <<_ACEOF
-@@ -3653,10 +4332,11 @@
+@@ -3653,10 +4332,11 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  $ac_includes_default
@@ -56794,7 +23498,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  test_array [0] = 0
  
    ;
-@@ -3664,27 +4344,22 @@
+@@ -3664,56 +4344,53 @@ test_array [0] = 0
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -56833,9 +23537,20 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    ac_hi=$ac_mid; break
  else
    echo "$as_me: failed program was:" >&5
-@@ -3697,7 +4372,8 @@
- 		    fi
- 		    ac_mid=`expr 2 '*' $ac_mid + 1`
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+-ac_lo=`expr $ac_mid + 1`
+-		    if test $ac_lo -le $ac_mid; then
+-		      ac_lo= ac_hi=
+-		      break
+-		    fi
+-		    ac_mid=`expr 2 '*' $ac_mid + 1`
++	ac_lo=`expr $ac_mid + 1`
++			if test $ac_lo -le $ac_mid; then
++			  ac_lo= ac_hi=
++			  break
++			fi
++			ac_mid=`expr 2 '*' $ac_mid + 1`
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -56843,7 +23558,13 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    done
  else
    echo "$as_me: failed program was:" >&5
-@@ -3710,10 +4386,11 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+-cat >conftest.$ac_ext <<_ACEOF
++	cat >conftest.$ac_ext <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  $ac_includes_default
@@ -56856,7 +23577,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  test_array [0] = 0
  
    ;
-@@ -3721,27 +4398,22 @@
+@@ -3721,27 +4398,22 @@ test_array [0] = 0
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -56895,7 +23616,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    ac_hi=-1 ac_mid=-1
    while :; do
      cat >conftest.$ac_ext <<_ACEOF
-@@ -3751,10 +4423,11 @@
+@@ -3751,10 +4423,11 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  $ac_includes_default
@@ -56908,7 +23629,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  test_array [0] = 0
  
    ;
-@@ -3762,27 +4435,22 @@
+@@ -3762,50 +4435,48 @@ test_array [0] = 0
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -56947,9 +23668,20 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    ac_lo=$ac_mid; break
  else
    echo "$as_me: failed program was:" >&5
-@@ -3795,7 +4463,8 @@
- 		       fi
- 		       ac_mid=`expr 2 '*' $ac_mid`
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+-ac_hi=`expr '(' $ac_mid ')' - 1`
+-		       if test $ac_mid -le $ac_hi; then
+-			 ac_lo= ac_hi=
+-			 break
+-		       fi
+-		       ac_mid=`expr 2 '*' $ac_mid`
++	ac_hi=`expr '(' $ac_mid ')' - 1`
++			if test $ac_mid -le $ac_hi; then
++			  ac_lo= ac_hi=
++			  break
++			fi
++			ac_mid=`expr 2 '*' $ac_mid`
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -56957,9 +23689,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    done
  else
    echo "$as_me: failed program was:" >&5
-@@ -3803,9 +4472,11 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_lo= ac_hi=
+-ac_lo= ac_hi=
++	ac_lo= ac_hi=
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -56971,7 +23704,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  # Binary search between lo and hi bounds.
  while test "x$ac_lo" != "x$ac_hi"; do
    ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
-@@ -3816,10 +4487,11 @@
+@@ -3816,10 +4487,11 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  $ac_includes_default
@@ -56984,7 +23717,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  test_array [0] = 0
  
    ;
-@@ -3827,27 +4499,22 @@
+@@ -3827,52 +4499,45 @@ test_array [0] = 0
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -57023,9 +23756,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    ac_hi=$ac_mid
  else
    echo "$as_me: failed program was:" >&5
-@@ -3855,23 +4522,21 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_lo=`expr '(' $ac_mid ')' + 1`
+-ac_lo=`expr '(' $ac_mid ')' + 1`
++	ac_lo=`expr '(' $ac_mid ')' + 1`
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -57041,8 +23775,11 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +echo "$as_me: error: cannot compute sizeof (unsigned long long)
  See \`config.log' for more details." >&2;}
 -   { (exit 1); exit 1; }; } ;;
--esac
 +   { (exit 77); exit 77; }; }
++   else
++     ac_cv_sizeof_unsigned_long_long=0
++   fi ;;
+ esac
  else
 -  if test "$cross_compiling" = yes; then
 -  { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
@@ -57050,13 +23787,11 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -echo "$as_me: error: cannot run test program while cross compiling
 -See \`config.log' for more details." >&2;}
 -   { (exit 1); exit 1; }; }
-+     ac_cv_sizeof_unsigned_long_long=0
-+   fi ;;
-+esac
- else
+-else
    cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
-@@ -3880,8 +4545,9 @@
+ _ACEOF
+@@ -3880,8 +4545,9 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  $ac_includes_default
@@ -57068,7 +23803,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  #include <stdio.h>
  #include <stdlib.h>
  int
-@@ -3890,35 +4556,44 @@
+@@ -3890,35 +4556,44 @@ main ()
  
    FILE *f = fopen ("conftest.val", "w");
    if (! f)
@@ -57126,7 +23861,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
-@@ -3929,22 +4604,25 @@
+@@ -3929,22 +4604,25 @@ echo "$as_me: failed program was:" >&5
  sed 's/^/| /' conftest.$ac_ext >&5
  
  ( exit $ac_status )
@@ -57138,11 +23873,12 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +echo "$as_me: error: cannot compute sizeof (unsigned long long)
  See \`config.log' for more details." >&2;}
 -   { (exit 1); exit 1; }; }
+-fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 +   { (exit 77); exit 77; }; }
 +   else
 +     ac_cv_sizeof_unsigned_long_long=0
- fi
--rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
++   fi
  fi
 +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
  fi
@@ -57161,7 +23897,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  cat >>confdefs.h <<_ACEOF
  #define SIZEOF_UNSIGNED_LONG_LONG $ac_cv_sizeof_unsigned_long_long
  _ACEOF
-@@ -3988,12 +4666,11 @@
+@@ -3988,12 +4666,11 @@ EXTRA_KCFLAGS="$EXTRA_KCFLAGS -g -I$PWD/$LIBCFS_INCLUDE_DIR -I$PWD/lnet/include
  
  
  
@@ -57178,7 +23914,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  else
    case $target_os in
  	linux* | darwin*)
-@@ -4004,18 +4681,18 @@
+@@ -4004,18 +4681,18 @@ enable_modules='no'
  		;;
  esac
  
@@ -57205,7 +23941,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  		if ! [[ $with_linux = /* ]]; then
  			{ { echo "$as_me:$LINENO: error: You must provide an absolute pathname to the --with-linux= option." >&5
  echo "$as_me: error: You must provide an absolute pathname to the --with-linux= option." >&2;}
-@@ -4026,16 +4703,17 @@
+@@ -4026,16 +4703,17 @@ echo "$as_me: error: You must provide an absolute pathname to the --with-linux=
  
  else
    LINUX=/usr/src/linux
@@ -57229,7 +23965,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX"; then
-@@ -4044,8 +4722,9 @@
+@@ -4044,8 +4722,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -57241,7 +23977,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -4056,33 +4735,33 @@
+@@ -4056,33 +4735,33 @@ fi
  
  
  # -------- linux objects (for 2.6) --
@@ -57279,17 +24015,17 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    LINUX_CONFIG=$LINUX_OBJ/.config
 -fi;
 +fi
++
  
  
 -echo "$as_me:$LINENO: checking for /boot/kernel.h" >&5
 -echo $ECHO_N "checking for /boot/kernel.h... $ECHO_C" >&6
-+
 +{ echo "$as_me:$LINENO: checking for /boot/kernel.h" >&5
 +echo $ECHO_N "checking for /boot/kernel.h... $ECHO_C" >&6; }
  if test "${lb_cv_file__boot_kernel_h+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -4092,13 +4771,13 @@
+@@ -4092,13 +4771,13 @@ else
    lb_cv_file__boot_kernel_h=no
  fi
  fi
@@ -57307,7 +24043,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${lb_cv_file__var_adm_running_kernel_h+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -4108,8 +4787,8 @@
+@@ -4108,8 +4787,8 @@ else
    lb_cv_file__var_adm_running_kernel_h=no
  fi
  fi
@@ -57318,7 +24054,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test $lb_cv_file__var_adm_running_kernel_h = yes; then
    KERNEL_SOURCE_HEADER='/var/adm/running-kernel.h'
  fi
-@@ -4118,17 +4797,17 @@
+@@ -4118,17 +4797,17 @@ fi
  
  
  
@@ -57343,7 +24079,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX_CONFIG"; then
-@@ -4137,8 +4816,9 @@
+@@ -4137,8 +4816,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -57355,7 +24091,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -4153,9 +4833,9 @@
+@@ -4153,9 +4833,9 @@ fi
  # and at more old has only one line
  # include <autoconf.h>
  as_lb_File=`echo "lb_cv_file_$LINUX_OBJ/include/linux/autoconf.h" | $as_tr_sh`
@@ -57368,7 +24104,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX_OBJ/include/linux/autoconf.h"; then
-@@ -4164,8 +4844,9 @@
+@@ -4164,8 +4844,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -57380,7 +24116,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -4175,9 +4856,9 @@
+@@ -4175,9 +4856,9 @@ echo "$as_me: error: Run make config in $LINUX." >&2;}
  fi
  
  as_lb_File=`echo "lb_cv_file_$LINUX_OBJ/include/linux/version.h" | $as_tr_sh`
@@ -57393,7 +24129,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX_OBJ/include/linux/version.h"; then
-@@ -4186,8 +4867,9 @@
+@@ -4186,8 +4867,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -57405,7 +24141,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    :
  else
-@@ -4209,9 +4891,9 @@
+@@ -4209,9 +4891,9 @@ if grep rhconfig $LINUX_OBJ/include/linux/version.h >/dev/null ; then
  	# enable extensive workarounds to get this to build
  	# modules
  	as_lb_File=`echo "lb_cv_file_$KERNEL_SOURCE_HEADER" | $as_tr_sh`
@@ -57418,7 +24154,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$KERNEL_SOURCE_HEADER"; then
-@@ -4220,8 +4902,9 @@
+@@ -4220,8 +4902,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -57430,7 +24166,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    if test $KERNEL_SOURCE_HEADER = '/boot/kernel.h' ; then
  			{ echo "$as_me:$LINENO: WARNING: Using /boot/kernel.h from RUNNING kernel." >&5
-@@ -4244,30 +4927,30 @@
+@@ -4244,30 +4927,30 @@ fi
  ARCH_UM=
  UML_CFLAGS=
  
@@ -57472,7 +24208,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX/include/linux/namei.h"; then
-@@ -4276,8 +4959,9 @@
+@@ -4276,8 +4959,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -57484,7 +24220,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
  
          	linux25="yes"
-@@ -4290,16 +4974,16 @@
+@@ -4290,16 +4974,16 @@ else
  
  fi
  
@@ -57507,7 +24243,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  	rm -f build/conftest.i
  	cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
-@@ -4330,8 +5014,8 @@
+@@ -4330,8 +5014,8 @@ if { ac_try='cp conftest.c build && make -d $makerule LUSTRE_KERNEL_TEST=conftes
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -57518,7 +24254,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  else
    echo "$as_me: failed program was:" >&5
-@@ -4369,8 +5053,8 @@
+@@ -4369,8 +5053,8 @@ if { ac_try='cp conftest.c build && make -d $makerule LUSTRE_KERNEL_TEST=conftes
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -57529,7 +24265,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  else
    echo "$as_me: failed program was:" >&5
-@@ -4396,8 +5080,8 @@
+@@ -4396,8 +5080,8 @@ fi
  
  
  # --- check that we can build modules at all
@@ -57540,7 +24276,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4427,16 +5111,16 @@
+@@ -4427,16 +5111,16 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -57561,7 +24297,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  	{ echo "$as_me:$LINENO: WARNING: Consult config.log for details." >&5
  echo "$as_me: WARNING: Consult config.log for details." >&2;}
  	{ echo "$as_me:$LINENO: WARNING: If you are trying to build with a kernel-source rpm, consult build/README.kernel-source" >&5
-@@ -4450,8 +5134,8 @@
+@@ -4450,8 +5134,8 @@ rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.
  
  LINUXRELEASE=
  rm -f build/conftest.i
@@ -57572,7 +24308,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test -s $LINUX_OBJ/include/linux/utsrelease.h ; then
  	LINUXRELEASEHEADER=utsrelease.h
  else
-@@ -4503,8 +5187,8 @@
+@@ -4503,8 +5187,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -57583,7 +24319,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  	{ { echo "$as_me:$LINENO: error: Could not preprocess test program.  Consult config.log for details." >&5
  echo "$as_me: error: Could not preprocess test program.  Consult config.log for details." >&2;}
     { (exit 1); exit 1; }; }
-@@ -4513,14 +5197,14 @@
+@@ -4513,14 +5197,14 @@ fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
  rm -f build/conftest.i
  if test x$LINUXRELEASE = x ; then
@@ -57602,7 +24338,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  
  moduledir='/lib/modules/'$LINUXRELEASE/kernel
-@@ -4533,16 +5217,16 @@
+@@ -4533,16 +5217,16 @@ modulenetdir='$(moduledir)/net/$(PACKAGE)'
  
  
  # ------------ RELEASE --------------------------------
@@ -57625,7 +24361,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4580,22 +5264,22 @@
+@@ -4580,22 +5264,22 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
  
  		RHEL_KENEL="yes"
  		RHEL_KERNEL="yes"
@@ -57654,7 +24390,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4631,8 +5315,8 @@
+@@ -4631,8 +5315,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -57665,7 +24401,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  SUSE_KERNEL="yes"
  
  else
-@@ -4640,8 +5324,8 @@
+@@ -4640,8 +5324,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -57676,7 +24412,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  
  fi
-@@ -4650,14 +5334,14 @@
+@@ -4650,14 +5334,14 @@ rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.
  
  
  
@@ -57695,7 +24431,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  else
    { { echo "$as_me:$LINENO: error: Could not determine the kernel architecture." >&5
  echo "$as_me: error: Could not determine the kernel architecture." >&2;}
-@@ -4665,21 +5349,21 @@
+@@ -4665,21 +5349,21 @@ echo "$as_me: error: Could not determine the kernel architecture." >&2;}
  fi
  
            rm -f build/arch
@@ -57723,7 +24459,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4715,8 +5399,8 @@
+@@ -4715,8 +5399,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -57734,7 +24470,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  
  else
-@@ -4724,8 +5408,8 @@
+@@ -4724,8 +5408,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -57745,7 +24481,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  	{ { echo "$as_me:$LINENO: error: module support is required to build Lustre kernel modules." >&5
  echo "$as_me: error: module support is required to build Lustre kernel modules." >&2;}
-@@ -4736,8 +5420,8 @@
+@@ -4736,8 +5420,8 @@ fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
  
  
@@ -57756,7 +24492,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4773,8 +5457,8 @@
+@@ -4773,8 +5457,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -57767,7 +24503,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  
  else
-@@ -4782,16 +5466,16 @@
+@@ -4782,16 +5466,16 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -57788,7 +24524,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4827,8 +5511,8 @@
+@@ -4827,8 +5511,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -57799,7 +24535,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  
  else
-@@ -4836,8 +5520,8 @@
+@@ -4836,8 +5520,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -57810,7 +24546,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  if test "x$ARCH_UM" = "x" ; then
  	{ { echo "$as_me:$LINENO: error: Lustre requires that CONFIG_KALLSYMS is enabled in your kernel." >&5
-@@ -4850,8 +5534,8 @@
+@@ -4850,8 +5534,8 @@ fi
  rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
  
  
@@ -57821,7 +24557,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  cat >conftest.c <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4887,8 +5571,8 @@
+@@ -4887,8 +5571,8 @@ if { ac_try='cp conftest.c build && make -d modules ${LD:+"LD=$LD"} CC="$CC" -f
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
  
@@ -57832,7 +24568,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  
  else
-@@ -4896,8 +5580,8 @@
+@@ -4896,8 +5580,8 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -57843,7 +24579,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  	{ echo "$as_me:$LINENO: WARNING: " >&5
  echo "$as_me: WARNING: " >&2;}
-@@ -4916,14 +5600,13 @@
+@@ -4916,14 +5600,13 @@ rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.
  # it's ugly to be doing anything with OFED outside of the lnet module, but
  # this has to be done here so that the backports path is set before all of
  # the LN_PROG_LINUX checks are done
@@ -57862,7 +24598,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  		case $with_o2ib in
  		yes)    O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
  			ENABLEO2IB=2
-@@ -4940,10 +5623,11 @@
+@@ -4940,10 +5623,11 @@ else
  		O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
  		ENABLEO2IB=1
  
@@ -57877,7 +24613,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  else
  	o2ib_found=false
  	for O2IBPATH in $O2IBPATHS; do
-@@ -4956,8 +5640,8 @@
+@@ -4956,8 +5640,8 @@ else
  		fi
  	done
  	if ! $o2ib_found; then
@@ -57888,7 +24624,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  		case $ENABLEO2IB in
  			1) ;;
  			2) { { echo "$as_me:$LINENO: error: kernel OpenIB gen2 headers not present" >&5
-@@ -4979,11 +5663,11 @@
+@@ -4979,11 +5663,11 @@ echo "$as_me: error: internal error" >&2;}
  		if test -n "$BACKPORT_INCLUDES"; then
  			OFED_BACKPORT_PATH=`echo $BACKPORT_INCLUDES | sed "s#.*/src/ofa_kernel/#$O2IBPATH/#"`
  			EXTRA_LNET_INCLUDE="-I$OFED_BACKPORT_PATH $EXTRA_LNET_INCLUDE"
@@ -57904,7 +24640,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
                  fi
  	fi
  fi
-@@ -4993,9 +5677,9 @@
+@@ -4993,9 +5677,9 @@ if test x$linux25 = xyes ; then
  
  # Find the modpost utility
  as_lb_File=`echo "lb_cv_file_$LINUX_OBJ/scripts/mod/modpost" | $as_tr_sh`
@@ -57917,7 +24653,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX_OBJ/scripts/mod/modpost"; then
-@@ -5004,15 +5688,16 @@
+@@ -5004,15 +5688,16 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -57939,7 +24675,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    if test -r "$LINUX_OBJ/scripts/modpost"; then
-@@ -5021,8 +5706,9 @@
+@@ -5021,8 +5706,9 @@ else
    eval "$as_lb_File=no"
  fi
  fi
@@ -57951,7 +24687,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test `eval echo '${'$as_lb_File'}'` = yes; then
    MODPOST=$LINUX_OBJ/scripts/modpost
  else
-@@ -5038,11 +5724,11 @@
+@@ -5038,11 +5724,11 @@ fi
  
  
  # Ensure it can run
@@ -57967,7 +24703,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  else
  	{ { echo "$as_me:$LINENO: error: modpost can not be run." >&5
  echo "$as_me: error: modpost can not be run." >&2;}
-@@ -5050,15 +5736,15 @@
+@@ -5050,15 +5736,15 @@ echo "$as_me: error: modpost can not be run." >&2;}
  fi
  
  # Check if modpost supports (and therefore requires) -m
@@ -57989,7 +24725,16 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  	MODPOST_ARGS=""
  fi
  
-@@ -5118,22 +5804,22 @@
+@@ -5066,7 +5752,7 @@ fi
+ fi
+ fi
+ 
+-          ac_config_headers="$ac_config_headers config.h"
++ac_config_headers="$ac_config_headers config.h"
+ 
+ CPPFLAGS="-include $PWD/config.h $CPPFLAGS"
+ EXTRA_KCFLAGS="-include $PWD/config.h $EXTRA_KCFLAGS"
+@@ -5118,22 +5804,22 @@ fi
  LDISKFSDIR="$PWD/ldiskfs"
  
  
@@ -58022,7 +24767,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_path_PATCH+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -5148,36 +5834,37 @@
+@@ -5148,36 +5834,37 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -58068,7 +24813,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  if test "${ac_cv_path_QUILT+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -5192,28 +5879,29 @@
+@@ -5192,28 +5879,29 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -58104,7 +24849,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  fi
  
  if test x$enable_ldiskfs$PATCH$QUILT = xyesnono ; then
-@@ -5297,8 +5985,8 @@
+@@ -5297,8 +5985,8 @@ else
  fi
  
  
@@ -58115,7 +24860,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  case $LINUXRELEASE in
  2.6.5*) LDISKFS_SERIES="2.6-suse.series" ;;
  2.6.9*) LDISKFS_SERIES="2.6-rhel4.series" ;;
-@@ -5315,22 +6003,26 @@
+@@ -5315,7 +6003,11 @@ case $LINUXRELEASE in
  		        LDISKFS_SERIES="2.6-rhel5.series"
                  fi
  	else
@@ -58123,11 +24868,11 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +		LDISKFS_SERIES="2.6.18-debian.series"
 +	    else
  		LDISKFS_SERIES="2.6.18-vanilla.series"
++	    fi
  	fi
-+	fi
  	;;
  2.6.22*) LDISKFS_SERIES="2.6.22-vanilla.series";;
- 2.6.27*) LDISKFS_SERIES="2.6-sles11.series";;
+@@ -5323,14 +6015,14 @@ case $LINUXRELEASE in
  *) { echo "$as_me:$LINENO: WARNING: Unknown kernel version $LINUXRELEASE, fix ldiskfs/configure.ac" >&5
  echo "$as_me: WARNING: Unknown kernel version $LINUXRELEASE, fix ldiskfs/configure.ac" >&2;}
  esac
@@ -58146,7 +24891,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  grep -q -E '[[:space:]]d_rehash_cond[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -5344,12 +6036,12 @@
+@@ -5344,12 +6036,12 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -58163,7 +24908,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_D_REHASH_COND 1
-@@ -5357,8 +6049,8 @@
+@@ -5357,8 +6049,8 @@ _ACEOF
  
      fi
  else
@@ -58174,7 +24919,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_D_REHASH_COND 1
-@@ -5367,8 +6059,8 @@
+@@ -5367,8 +6059,8 @@ _ACEOF
  fi
  
  
@@ -58185,7 +24930,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  grep -q -E '[[:space:]]__d_rehash[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -5382,12 +6074,12 @@
+@@ -5382,12 +6074,12 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -58202,7 +24947,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE___D_REHASH 1
-@@ -5395,8 +6087,8 @@
+@@ -5395,8 +6087,8 @@ _ACEOF
  
      fi
  else
@@ -58213,7 +24958,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE___D_REHASH 1
-@@ -5405,8 +6097,8 @@
+@@ -5405,8 +6097,8 @@ _ACEOF
  fi
  
  
@@ -58224,7 +24969,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  grep -q -E '[[:space:]]d_move_locked[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -5420,12 +6112,12 @@
+@@ -5420,12 +6112,12 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -58241,7 +24986,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_D_MOVE_LOCKED 1
-@@ -5433,8 +6125,8 @@
+@@ -5433,8 +6125,8 @@ _ACEOF
  
      fi
  else
@@ -58252,7 +24997,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_D_MOVE_LOCKED 1
-@@ -5443,8 +6135,8 @@
+@@ -5443,8 +6135,8 @@ _ACEOF
  fi
  
  
@@ -58263,7 +25008,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  grep -q -E '[[:space:]]__d_move[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
  rc=$?
  if test $rc -ne 0; then
-@@ -5458,12 +6150,12 @@
+@@ -5458,12 +6150,12 @@ if test $rc -ne 0; then
  	fi
      done
      if test $export -eq 0; then
@@ -58280,7 +25025,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE___D_MOVE 1
-@@ -5471,8 +6163,8 @@
+@@ -5471,8 +6163,8 @@ _ACEOF
  
      fi
  else
@@ -58291,7 +25036,20 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE___D_MOVE 1
-@@ -5509,39 +6201,58 @@
+@@ -5482,10 +6174,10 @@ fi
+ 
+ 
+ 
+-                                        ac_config_files="$ac_config_files Makefile autoMakefile Rules:build/Rules.in lustre-ldiskfs.spec"
++ac_config_files="$ac_config_files Makefile autoMakefile Rules:build/Rules.in lustre-ldiskfs.spec"
+ 
+ 
+-                    ac_config_files="$ac_config_files ldiskfs/autoMakefile ldiskfs/Makefile"
++ac_config_files="$ac_config_files ldiskfs/autoMakefile ldiskfs/Makefile"
+ 
+ 
+ MOSTLYCLEANFILES='.*.cmd .*.flags *.o *.ko *.mod.c .depend .*.1.* Modules.symvers Module.symvers'
+@@ -5509,39 +6201,58 @@ _ACEOF
  
  # The following way of writing the cache mishandles newlines in values,
  # but we know of no workaround that is simple, portable, and efficient.
@@ -58342,15 +25100,17 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    sed '
 +     /^ac_cv_env_/b end
       t clear
-      : clear
+-     : clear
++     :clear
       s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
       t end
 -     /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
-+     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
-      : end' >>confcache
+-     : end' >>confcache
 -if diff $cache_file confcache >/dev/null 2>&1; then :; else
 -  if test -w $cache_file; then
 -    test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
++     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
++     :end' >>confcache
 +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
 +  if test -w "$cache_file"; then
 +    test "x$cache_file" != "x/dev/null" &&
@@ -58364,7 +25124,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    fi
  fi
  rm -f confcache
-@@ -5550,32 +6261,18 @@
+@@ -5550,32 +6261,18 @@ test "x$prefix" = xNONE && prefix=$ac_default_prefix
  # Let make expand exec_prefix.
  test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  
@@ -58403,7 +25163,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  done
  LIBOBJS=$ac_libobjs
  
-@@ -5662,73 +6359,26 @@
+@@ -5662,17 +6359,45 @@ cat >>$CONFIG_STATUS <<\_ACEOF
  ## M4sh Initialization.  ##
  ## --------------------- ##
  
@@ -58418,91 +25178,45 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    alias -g '${1+"$@"}'='"$@"'
 -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
 -  set -o posix
--fi
--DUALCASE=1; export DUALCASE # for MKS sh
--
--# Support unset when possible.
--if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
--  as_unset=unset
--else
--  as_unset=false
--fi
--
--
--# Work around bugs in pre-3.0 UWIN ksh.
--$as_unset ENV MAIL MAILPATH
--PS1='$ '
--PS2='> '
--PS4='+ '
--
--# NLS nuisances.
--for as_var in \
--  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
--  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
--  LC_TELEPHONE LC_TIME
--do
--  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
--    eval $as_var=C; export $as_var
--  else
--    $as_unset $as_var
--  fi
--done
--
--# Required to use basename.
--if expr a : '\(a\)' >/dev/null 2>&1; then
--  as_expr=expr
 +  setopt NO_GLOB_SUBST
- else
--  as_expr=false
--fi
++else
 +  case `(set -o) 2>/dev/null` in
 +  *posix*) set -o posix ;;
 +esac
- 
--if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
--  as_basename=basename
--else
--  as_basename=false
++
++fi
++
++
++
++
++# PATH needs CR
++# Avoid depending upon Character Ranges.
++as_cr_letters='abcdefghijklmnopqrstuvwxyz'
++as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
++as_cr_Letters=$as_cr_letters$as_cr_LETTERS
++as_cr_digits='0123456789'
++as_cr_alnum=$as_cr_Letters$as_cr_digits
++
++# The user is always right.
++if test "${PATH_SEPARATOR+set}" != set; then
++  echo "#! /bin/sh" >conf$$.sh
++  echo  "exit 0"   >>conf$$.sh
++  chmod +x conf$$.sh
++  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
++    PATH_SEPARATOR=';'
++  else
++    PATH_SEPARATOR=:
++  fi
++  rm -f conf$$.sh
  fi
+-DUALCASE=1; export DUALCASE # for MKS sh
  
- 
--# Name of the executable.
--as_me=`$as_basename "$0" ||
--$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
--	 X"$0" : 'X\(//\)$' \| \
--	 X"$0" : 'X\(/\)$' \| \
--	 .     : '\(.\)' 2>/dev/null ||
--echo X/"$0" |
--    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
--  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
--  	  /^X\/\(\/\).*/{ s//\1/; q; }
--  	  s/.*/./; q'`
- 
- 
--# PATH needs CR, and LINENO needs CR and PATH.
-+# PATH needs CR
- # Avoid depending upon Character Ranges.
- as_cr_letters='abcdefghijklmnopqrstuvwxyz'
- as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-@@ -5749,14 +6399,24 @@
-   rm -f conf$$.sh
+ # Support unset when possible.
+ if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
+@@ -5682,8 +6407,43 @@ else
  fi
  
-+# Support unset when possible.
-+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
-+  as_unset=unset
-+else
-+  as_unset=false
-+fi
  
--  as_lineno_1=$LINENO
--  as_lineno_2=$LINENO
--  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
--  test "x$as_lineno_1" != "x$as_lineno_2" &&
--  test "x$as_lineno_3"  = "x$as_lineno_2"  || {
--  # Find who we are.  Look in the path if we contain no path at all
--  # relative or not.
-+
 +# IFS
 +# We need space, tab and new line, in precisely that order.  Quoting is
 +# there to prevent editors from complaining about space-tab.
@@ -58513,80 +25227,77 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +IFS=" ""	$as_nl"
 +
 +# Find who we are.  Look in the path if we contain no directory separator.
-   case $0 in
-     *[\\/]* ) as_myself=$0 ;;
-     *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-@@ -5766,6 +6426,7 @@
-   test -z "$as_dir" && as_dir=.
-   test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
- done
++case $0 in
++  *[\\/]* ) as_myself=$0 ;;
++  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
++for as_dir in $PATH
++do
++  IFS=$as_save_IFS
++  test -z "$as_dir" && as_dir=.
++  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
++done
 +IFS=$as_save_IFS
- 
-        ;;
-   esac
-@@ -5775,100 +6436,161 @@
-     as_myself=$0
-   fi
-   if test ! -f "$as_myself"; then
--    { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
--echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
--   { (exit 1); exit 1; }; }
++
++     ;;
++esac
++# We did not find ourselves, most probably we were run as `sh COMMAND'
++# in which case we are not to be found in the path.
++if test "x$as_myself" = x; then
++  as_myself=$0
++fi
++if test ! -f "$as_myself"; then
 +  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 +  { (exit 1); exit 1; }
-   fi
--  case $CONFIG_SHELL in
--  '')
--    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
--for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
++fi
 +
-+# Work around bugs in pre-3.0 UWIN ksh.
+ # Work around bugs in pre-3.0 UWIN ksh.
+-$as_unset ENV MAIL MAILPATH
 +for as_var in ENV MAIL MAILPATH
 +do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 +done
-+PS1='$ '
-+PS2='> '
-+PS4='+ '
-+
-+# NLS nuisances.
-+for as_var in \
-+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
-+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
-+  LC_TELEPHONE LC_TIME
- do
--  IFS=$as_save_IFS
--  test -z "$as_dir" && as_dir=.
--  for as_base in sh bash ksh sh5; do
--	 case $as_dir in
--	 /*)
--	   if ("$as_dir/$as_base" -c '
-+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
-+    eval $as_var=C; export $as_var
-+  else
+ PS1='$ '
+ PS2='> '
+ PS4='+ '
+@@ -5697,18 +6457,19 @@ do
+   if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
+     eval $as_var=C; export $as_var
+   else
+-    $as_unset $as_var
 +    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+  fi
-+done
-+
-+# Required to use basename.
+   fi
+ done
+ 
+ # Required to use basename.
+-if expr a : '\(a\)' >/dev/null 2>&1; then
 +if expr a : '\(a\)' >/dev/null 2>&1 &&
 +   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
+   as_expr=expr
+ else
+   as_expr=false
+ fi
+ 
+-if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
 +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
-+  as_basename=basename
-+else
-+  as_basename=false
-+fi
-+
-+
-+# Name of the executable.
+   as_basename=basename
+ else
+   as_basename=false
+@@ -5716,159 +6477,120 @@ fi
+ 
+ 
+ # Name of the executable.
+-as_me=`$as_basename "$0" ||
 +as_me=`$as_basename -- "$0" ||
-+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
-+	 X"$0" : 'X\(//\)$' \| \
+ $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+ 	 X"$0" : 'X\(//\)$' \| \
+-	 X"$0" : 'X\(/\)$' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
 +	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X/"$0" |
+ echo X/"$0" |
+-    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
+-  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\/\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-
 +    sed '/^.*\/\([^/][^/]*\)\/*$/{
 +	    s//\1/
 +	    q
@@ -58600,12 +25311,71 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +	    q
 +	  }
 +	  s/.*/./; q'`
-+
+ 
+-# PATH needs CR, and LINENO needs CR and PATH.
+-# Avoid depending upon Character Ranges.
+-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+-as_cr_digits='0123456789'
+-as_cr_alnum=$as_cr_Letters$as_cr_digits
+-
+-# The user is always right.
+-if test "${PATH_SEPARATOR+set}" != set; then
+-  echo "#! /bin/sh" >conf$$.sh
+-  echo  "exit 0"   >>conf$$.sh
+-  chmod +x conf$$.sh
+-  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
+-    PATH_SEPARATOR=';'
+-  else
+-    PATH_SEPARATOR=:
+-  fi
+-  rm -f conf$$.sh
+-fi
 +# CDPATH.
 +$as_unset CDPATH
-+
-+
-+
+ 
+ 
+-  as_lineno_1=$LINENO
+-  as_lineno_2=$LINENO
+-  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
+-  test "x$as_lineno_1" != "x$as_lineno_2" &&
+-  test "x$as_lineno_3"  = "x$as_lineno_2"  || {
+-  # Find who we are.  Look in the path if we contain no path at all
+-  # relative or not.
+-  case $0 in
+-    *[\\/]* ) as_myself=$0 ;;
+-    *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+-done
+ 
+-       ;;
+-  esac
+-  # We did not find ourselves, most probably we were run as `sh COMMAND'
+-  # in which case we are not to be found in the path.
+-  if test "x$as_myself" = x; then
+-    as_myself=$0
+-  fi
+-  if test ! -f "$as_myself"; then
+-    { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
+-echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
+-   { (exit 1); exit 1; }; }
+-  fi
+-  case $CONFIG_SHELL in
+-  '')
+-    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for as_base in sh bash ksh sh5; do
+-	 case $as_dir in
+-	 /*)
+-	   if ("$as_dir/$as_base" -c '
    as_lineno_1=$LINENO
    as_lineno_2=$LINENO
 -  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
@@ -58651,8 +25421,9 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +      :lineno
        N
 -      s,$,-,
-       : loop
+-      : loop
 -      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
++      :loop
 +      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
        t loop
 -      s,-$,,
@@ -58720,16 +25491,16 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
 -  if test -f conf$$.exe; then
 -    # Don't use ln at all; we don't have any links
--    as_ln_s='cp -p'
--  else
-     as_ln_s='ln -s'
--  fi
++  as_ln_s='ln -s'
 +  # ... but there are two gotchas:
 +  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 +  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 +  # In both cases, we have to default to `cp -p'.
 +  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-+    as_ln_s='cp -p'
+     as_ln_s='cp -p'
+-  else
+-    as_ln_s='ln -s'
+-  fi
  elif ln conf$$.file conf$$ 2>/dev/null; then
    as_ln_s=ln
  else
@@ -58741,7 +25512,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  if mkdir -p . 2>/dev/null; then
    as_mkdir_p=:
-@@ -5877,7 +6599,28 @@
+@@ -5877,7 +6599,28 @@ else
    as_mkdir_p=false
  fi
  
@@ -58771,7 +25542,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  # Sed expression to map a string onto a valid CPP name.
  as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-@@ -5886,31 +6629,14 @@
+@@ -5886,31 +6629,14 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  
  
@@ -58807,7 +25578,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
    CONFIG_FILES    = $CONFIG_FILES
    CONFIG_HEADERS  = $CONFIG_HEADERS
-@@ -5918,30 +6644,20 @@
+@@ -5918,30 +6644,20 @@ generated by GNU Autoconf 2.59.  Invocation command line was
    CONFIG_COMMANDS = $CONFIG_COMMANDS
    $ $0 $@
  
@@ -58824,7 +25595,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -if test -n "$ac_config_files"; then
 -  echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
 -fi
--
++config_files="$ac_config_files"
++config_headers="$ac_config_headers"
++config_commands="$ac_config_commands"
+ 
 -if test -n "$ac_config_headers"; then
 -  echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
 -fi
@@ -58832,10 +25606,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -if test -n "$ac_config_links"; then
 -  echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
 -fi
-+config_files="$ac_config_files"
-+config_headers="$ac_config_headers"
-+config_commands="$ac_config_commands"
- 
+-
 -if test -n "$ac_config_commands"; then
 -  echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
 -fi
@@ -58846,7 +25617,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  ac_cs_usage="\
  \`$as_me' instantiates files from templates according to the
  current configuration.
-@@ -5949,7 +6665,7 @@
+@@ -5949,7 +6665,7 @@ current configuration.
  Usage: $0 [OPTIONS] [FILE]...
  
    -h, --help       print this help, then exit
@@ -58855,7 +25626,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    -q, --quiet      do not print progress messages
    -d, --debug      don't remove temporary files
        --recheck    update $as_me by reconfiguring in the same conditions
-@@ -5968,19 +6684,21 @@
+@@ -5968,19 +6684,21 @@ Configuration commands:
  $config_commands
  
  Report bugs to <bug-autoconf at gnu.org>."
@@ -58883,7 +25654,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  _ACEOF
  
  cat >>$CONFIG_STATUS <<\_ACEOF
-@@ -5991,39 +6709,24 @@
+@@ -5991,39 +6709,24 @@ while test $# != 0
  do
    case $1 in
    --*=*)
@@ -58929,7 +25700,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
      debug=: ;;
    --file | --fil | --fi | --f )
      $ac_shift
-@@ -6033,18 +6736,24 @@
+@@ -6033,18 +6736,24 @@ Try \`$0 --help' for more information." >&2;}
      $ac_shift
      CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
      ac_need_defaults=false;;
@@ -58959,7 +25730,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
    esac
    shift
-@@ -6060,42 +6769,54 @@
+@@ -6060,42 +6769,54 @@ fi
  _ACEOF
  cat >>$CONFIG_STATUS <<_ACEOF
  if \$ac_cs_recheck; then
@@ -59002,17 +25773,23 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  do
 -  case "$ac_config_target" in
 -  # Handling of arguments.
+-  "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+-  "autoMakefile" ) CONFIG_FILES="$CONFIG_FILES autoMakefile" ;;
+-  "Rules" ) CONFIG_FILES="$CONFIG_FILES Rules:build/Rules.in" ;;
+-  "lustre-ldiskfs.spec" ) CONFIG_FILES="$CONFIG_FILES lustre-ldiskfs.spec" ;;
+-  "ldiskfs/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES ldiskfs/autoMakefile" ;;
+-  "ldiskfs/Makefile" ) CONFIG_FILES="$CONFIG_FILES ldiskfs/Makefile" ;;
+-  "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
+-  "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
 +  case $ac_config_target in
 +    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
 +    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
-   "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
-   "autoMakefile" ) CONFIG_FILES="$CONFIG_FILES autoMakefile" ;;
-   "Rules" ) CONFIG_FILES="$CONFIG_FILES Rules:build/Rules.in" ;;
-   "lustre-ldiskfs.spec" ) CONFIG_FILES="$CONFIG_FILES lustre-ldiskfs.spec" ;;
-   "ldiskfs/autoMakefile" ) CONFIG_FILES="$CONFIG_FILES ldiskfs/autoMakefile" ;;
-   "ldiskfs/Makefile" ) CONFIG_FILES="$CONFIG_FILES ldiskfs/Makefile" ;;
--  "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
--  "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
++    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
++    "autoMakefile") CONFIG_FILES="$CONFIG_FILES autoMakefile" ;;
++    "Rules") CONFIG_FILES="$CONFIG_FILES Rules:build/Rules.in" ;;
++    "lustre-ldiskfs.spec") CONFIG_FILES="$CONFIG_FILES lustre-ldiskfs.spec" ;;
++    "ldiskfs/autoMakefile") CONFIG_FILES="$CONFIG_FILES ldiskfs/autoMakefile" ;;
++    "ldiskfs/Makefile") CONFIG_FILES="$CONFIG_FILES ldiskfs/Makefile" ;;
 +
    *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
  echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
@@ -59024,7 +25801,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  # If the user did not use the arguments to specify the items to instantiate,
  # then the envvar interface is used.  Set only those that are not.
  # We use the long form for the default assignment because of an extremely
-@@ -6107,378 +6828,485 @@
+@@ -6107,627 +6828,616 @@ if $ac_need_defaults; then
  fi
  
  # Have a temporary directory for convenience.  Make it in the build tree
@@ -59219,6 +25996,30 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  while $ac_more_lines; do
 -    if test $ac_beg -gt 1; then
 -      sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
+-    else
+-      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
+-    fi
+-    if test ! -s $tmp/subs.frag; then
+-      ac_more_lines=false
+-    else
+-      # The purpose of the label and of the branching condition is to
+-      # speed up the sed processing (if there are no `@' at all, there
+-      # is no need to browse any of the substitutions).
+-      # These are the two extra sed commands mentioned above.
+-      (echo ':t
+-  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
+-      if test -z "$ac_sed_cmds"; then
+-	ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
+-      else
+-	ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
+-      fi
+-      ac_sed_frag=`expr $ac_sed_frag + 1`
+-      ac_beg=$ac_end
+-      ac_end=`expr $ac_end + $ac_max_sed_lines`
+-    fi
+-  done
+-  if test -z "$ac_sed_cmds"; then
+-    ac_sed_cmds=cat
 +
 +
 +ac_delim='%!_!# '
@@ -59329,33 +26130,17 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
 +echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
 +   { (exit 1); exit 1; }; }
-     else
--      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
++  else
 +    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-     fi
--    if test ! -s $tmp/subs.frag; then
--      ac_more_lines=false
--    else
--      # The purpose of the label and of the branching condition is to
--      # speed up the sed processing (if there are no `@' at all, there
--      # is no need to browse any of the substitutions).
--      # These are the two extra sed commands mentioned above.
--      (echo ':t
--  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
--      if test -z "$ac_sed_cmds"; then
--	ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
--      else
--	ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
+   fi
+-fi # test -n "$CONFIG_FILES"
 +done
-+
+ 
 +ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
 +if test -n "$ac_eof"; then
 +  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
 +  ac_eof=`expr $ac_eof + 1`
-       fi
--      ac_sed_frag=`expr $ac_sed_frag + 1`
--      ac_beg=$ac_end
--      ac_end=`expr $ac_end + $ac_max_sed_lines`
++fi
 +
 +cat >>$CONFIG_STATUS <<_ACEOF
 +cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof
@@ -59373,7 +26158,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +rm -f conf$$subs.sed
 +cat >>$CONFIG_STATUS <<_ACEOF
 +CEOF$ac_eof
-+_ACEOF
+ _ACEOF
 +
 +
 +ac_delim='%!_!# '
@@ -59422,22 +26207,19 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +   { (exit 1); exit 1; }; }
 +  else
 +    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-     fi
-   done
--  if test -z "$ac_sed_cmds"; then
--    ac_sed_cmds=cat
++  fi
++done
 +
 +ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
 +if test -n "$ac_eof"; then
 +  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
 +  ac_eof=`expr $ac_eof + 1`
-   fi
--fi # test -n "$CONFIG_FILES"
- 
++fi
++
 +cat >>$CONFIG_STATUS <<_ACEOF
 +cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof
 +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end
- _ACEOF
++_ACEOF
 +sed '
 +s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
 +s/^/s,@/; s/!/@,|#_!!_#|/
@@ -59488,7 +26270,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +do
 +  case $ac_tag in
 +  :[FHLC]) ac_mode=$ac_tag; continue;;
-   esac
++  esac
 +  case $ac_mode$ac_tag in
 +  :[FHL]*:*);;
 +  :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
@@ -59504,9 +26286,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +  shift
 +  ac_file=$1
 +  shift
- 
--  # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
--  ac_dir=`(dirname "$ac_file") 2>/dev/null ||
++
 +  case $ac_mode in
 +  :L) ac_source=$1;;
 +  :[FH])
@@ -59545,8 +26325,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +    *:-:* | *:-) cat >"$tmp/stdin";;
 +    esac
 +    ;;
-+  esac
-+
+   esac
+ 
+-  # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
+-  ac_dir=`(dirname "$ac_file") 2>/dev/null ||
 +  ac_dir=`$as_dirname -- "$ac_file" ||
  $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  	 X"$ac_file" : 'X\(//\)[^/]' \| \
@@ -59559,6 +26341,11 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-  { if $as_mkdir_p; then
+-    mkdir -p "$ac_dir"
+-  else
+-    as_dir="$ac_dir"
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -59575,11 +26362,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
--  { if $as_mkdir_p; then
--    mkdir -p "$ac_dir"
--  else
--    as_dir="$ac_dir"
++	  s/.*/./; q'`
 +  { as_dir="$ac_dir"
 +  case $as_dir in #(
 +  -*) as_dir=./$as_dir;;
@@ -59607,6 +26390,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -59623,7 +26407,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
 +      test -d "$as_dir" && break
      done
 -    test ! -n "$as_dirs" || mkdir $as_dirs
@@ -59752,11 +26536,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  fi
 -  configure_input=$configure_input"Generated from `echo $ac_file_in |
 -				     sed 's,.*/,,'` by configure."
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+# If the template does not know about datarootdir, expand it.
-+# FIXME: This hack should be removed a few years after 2.60.
-+ac_datarootdir_hack=; ac_datarootdir_seen=
- 
+-
 -  # First look for the input files in the build tree, otherwise in the
 -  # src tree.
 -  ac_file_inputs=`IFS=:
@@ -59782,6 +26562,13 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -echo "$as_me: error: cannot find input file: $f" >&2;}
 -   { (exit 1); exit 1; }; }
 -	 fi;;
+-      esac
+-    done` || { (exit 1); exit 1; }
++cat >>$CONFIG_STATUS <<\_ACEOF
++# If the template does not know about datarootdir, expand it.
++# FIXME: This hack should be removed a few years after 2.60.
++ac_datarootdir_hack=; ac_datarootdir_seen=
++
 +case `sed -n '/datarootdir/ {
 +  p
 +  q
@@ -59796,8 +26583,8 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
 +  { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
 +echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF
+ _ACEOF
+ cat >>$CONFIG_STATUS <<_ACEOF
 +  ac_datarootdir_hack='
 +  s&@datadir@&$datadir&g
 +  s&@docdir@&$docdir&g
@@ -59805,17 +26592,16 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +  s&@localedir@&$localedir&g
 +  s&@mandir@&$mandir&g
 +    s&\\\${datarootdir}&$datarootdir&g' ;;
-       esac
--    done` || { (exit 1); exit 1; }
- _ACEOF
++esac
++_ACEOF
 +
 +# Neutralize VPATH when `$srcdir' = `.'.
 +# Shell code in configure.ac might set extrasub.
 +# FIXME: do we really want to maintain this feature?
- cat >>$CONFIG_STATUS <<_ACEOF
++cat >>$CONFIG_STATUS <<_ACEOF
    sed "$ac_vpsub
  $extrasub
-@@ -6486,248 +7314,130 @@
+ _ACEOF
  cat >>$CONFIG_STATUS <<\_ACEOF
  :t
  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
@@ -59837,6 +26623,31 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -    cat $tmp/out
 -    rm -f $tmp/out
 -  fi
+-
+-done
+-_ACEOF
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-
+-#
+-# CONFIG_HEADER section.
+-#
+-
+-# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
+-# NAME is the cpp macro being defined and VALUE is the value it is being given.
+-#
+-# ac_d sets the value in "#define NAME VALUE" lines.
+-ac_dA='s,^\([	 ]*\)#\([	 ]*define[	 ][	 ]*\)'
+-ac_dB='[	 ].*$,\1#\2'
+-ac_dC=' '
+-ac_dD=',;t'
+-# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
+-ac_uA='s,^\([	 ]*\)#\([	 ]*\)undef\([	 ][	 ]*\)'
+-ac_uB='$,\1#\2define\3'
+-ac_uC=' '
+-ac_uD=',;t'
+-
+-for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
+-  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
 +s&@configure_input@&$configure_input&;t t
 +s&@top_builddir@&$ac_top_builddir_sub&;t t
 +s&@srcdir@&$ac_srcdir&;t t
@@ -59849,10 +26660,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +s&@INSTALL@&$ac_INSTALL&;t t
 +$ac_datarootdir_hack
 +" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out
- 
--done
--_ACEOF
--cat >>$CONFIG_STATUS <<\_ACEOF
++
 +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
 +  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
 +  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
@@ -59860,54 +26668,9 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +which seems to be undefined.  Please make sure it is defined." >&5
 +echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 +which seems to be undefined.  Please make sure it is defined." >&2;}
- 
++
 +  rm -f "$tmp/stdin"
-+  case $ac_file in
-+  -) cat "$tmp/out"; rm -f "$tmp/out";;
-+  *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
-+  esac
-+ ;;
-+  :H)
- #
--# CONFIG_HEADER section.
-+  # CONFIG_HEADER
- #
-+_ACEOF
- 
--# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
--# NAME is the cpp macro being defined and VALUE is the value it is being given.
--#
--# ac_d sets the value in "#define NAME VALUE" lines.
--ac_dA='s,^\([	 ]*\)#\([	 ]*define[	 ][	 ]*\)'
--ac_dB='[	 ].*$,\1#\2'
-+# Transform confdefs.h into a sed script `conftest.defines', that
-+# substitutes the proper values into config.h.in to produce config.h.
-+rm -f conftest.defines conftest.tail
-+# First, append a space to every undef/define line, to ease matching.
-+echo 's/$/ /' >conftest.defines
-+# Then, protect against being on the right side of a sed subst, or in
-+# an unquoted here document, in config.status.  If some macros were
-+# called several times there might be several #defines for the same
-+# symbol, which is useless.  But do not sort them, since the last
-+# AC_DEFINE must be honored.
-+ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
-+# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where
-+# NAME is the cpp macro being defined, VALUE is the value it is being given.
-+# PARAMS is the parameter list in the macro definition--in most cases, it's
-+# just an empty string.
-+ac_dA='s,^\\([	 #]*\\)[^	 ]*\\([	 ]*'
-+ac_dB='\\)[	 (].*,\\1define\\2'
- ac_dC=' '
--ac_dD=',;t'
--# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
--ac_uA='s,^\([	 ]*\)#\([	 ]*\)undef\([	 ][	 ]*\)'
--ac_uB='$,\1#\2define\3'
--ac_uC=' '
--ac_uD=',;t'
--
--for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
--  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
--  case $ac_file in
+   case $ac_file in
 -  - | *:- | *:-:* ) # input from stdin
 -	cat >$tmp/stdin
 -	ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
@@ -59915,7 +26678,9 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
 -	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
 -  * )   ac_file_in=$ac_file.in ;;
--  esac
++  -) cat "$tmp/out"; rm -f "$tmp/out";;
++  *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
+   esac
 -
 -  test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
 -echo "$as_me: creating $ac_file" >&6;}
@@ -59951,8 +26716,12 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  # Remove the trailing spaces.
 -  sed 's/[	 ]*$//' $ac_file_inputs >$tmp/in
 -
--_ACEOF
-+ac_dD=' ,'
++ ;;
++  :H)
++  #
++  # CONFIG_HEADER
++  #
+ _ACEOF
  
 -# Transform confdefs.h into two sed scripts, `conftest.defines' and
 -# `conftest.undefs', that substitutes the proper values into
@@ -59969,15 +26738,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -# 0-ary CPP macros) applies to n-ary macro definitions.
 -# See the Autoconf documentation for `clear'.
 -cat >confdef2sed.sed <<\_ACEOF
-+uniq confdefs.h |
-+  sed -n '
-+	t rset
-+	:rset
-+	s/^[	 ]*#[	 ]*define[	 ][	 ]*//
-+	t ok
-+	d
-+	:ok
- s/[\\&,]/\\&/g
+-s/[\\&,]/\\&/g
 -s,[\\$`],\\&,g
 -t clear
 -: clear
@@ -59992,11 +26753,41 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
 -sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
 -rm -f confdef2sed.sed
+-
+-# This sed command replaces #undef with comments.  This is necessary, for
++# Transform confdefs.h into a sed script `conftest.defines', that
++# substitutes the proper values into config.h.in to produce config.h.
++rm -f conftest.defines conftest.tail
++# First, append a space to every undef/define line, to ease matching.
++echo 's/$/ /' >conftest.defines
++# Then, protect against being on the right side of a sed subst, or in
++# an unquoted here document, in config.status.  If some macros were
++# called several times there might be several #defines for the same
++# symbol, which is useless.  But do not sort them, since the last
++# AC_DEFINE must be honored.
++ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
++# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where
++# NAME is the cpp macro being defined, VALUE is the value it is being given.
++# PARAMS is the parameter list in the macro definition--in most cases, it's
++# just an empty string.
++ac_dA='s,^\\([	 #]*\\)[^	 ]*\\([	 ]*'
++ac_dB='\\)[	 (].*,\\1define\\2'
++ac_dC=' '
++ac_dD=' ,'
++
++uniq confdefs.h |
++  sed -n '
++	t rset
++	:rset
++	s/^[	 ]*#[	 ]*define[	 ][	 ]*//
++	t ok
++	d
++	:ok
++	s/[\\&,]/\\&/g
 +	s/^\('"$ac_word_re"'\)\(([^()]*)\)[	 ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p
 +	s/^\('"$ac_word_re"'\)[	 ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p
 +  ' >>conftest.defines
- 
--# This sed command replaces #undef with comments.  This is necessary, for
++
 +# Remove the space that was appended to ease matching.
 +# Then replace #undef with comments.  This is necessary, for
  # example, in the case of _POSIX_SOURCE, which is predefined and required
@@ -60004,10 +26795,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -cat >>conftest.undefs <<\_ACEOF
 -s,^[	 ]*#[	 ]*undef[	 ][	 ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
 -_ACEOF
-+# (The regexp can be short, since the line contains either #define or #undef.)
-+echo 's/ $//
-+s,^[	 #]*u.*,/* & */,' >>conftest.defines
- 
+-
 -# Break up conftest.defines because some shells have a limit on the size
 -# of here documents, and old seds have small limits too (100 cmds).
 -echo '  # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
@@ -60016,6 +26804,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -echo '  :' >>$CONFIG_STATUS
 -rm -f conftest.tail
 -while grep . conftest.defines >/dev/null
++# (The regexp can be short, since the line contains either #define or #undef.)
++echo 's/ $//
++s,^[	 #]*u.*,/* & */,' >>conftest.defines
++
 +# Break up conftest.defines:
 +ac_max_sed_lines=50
 +
@@ -60161,7 +26953,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  # Compute $ac_file's index in $config_headers.
  _am_stamp_count=1
  for _am_header in $config_headers :; do
-@@ -6738,135 +7448,39 @@
+@@ -6738,135 +7448,39 @@ for _am_header in $config_headers :; do
        _am_stamp_count=`expr $_am_stamp_count + 1` ;;
    esac
  done
@@ -60178,23 +26970,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-   	  s/.*/./; q'`/stamp-h$_am_stamp_count
+-  	  s/.*/./; q'`/stamp-h$_am_stamp_count
 -done
 -_ACEOF
 -cat >>$CONFIG_STATUS <<\_ACEOF
@@ -60267,6 +27043,23 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
 -    ac_top_srcdir=$ac_top_builddir$srcdir ;;
 -esac
++    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\/\)[^/].*/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\/\)$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\).*/{
++	    s//\1/
++	    q
++	  }
++	  s/.*/./; q'`/stamp-h$_am_stamp_count
 + ;;
  
 -# Do not use `cd foo && pwd` to compute absolute paths, because
@@ -60306,10 +27099,11 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
 -  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
 -  esac;;
+-esac
 +  :C)  { echo "$as_me:$LINENO: executing $ac_file commands" >&5
 +echo "$as_me: executing $ac_file commands" >&6;}
 + ;;
- esac
++  esac
  
  
 -  { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
@@ -60321,7 +27115,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
    # Strip MF so we end up with the name of the file.
    mf=`echo "$mf" | sed -e 's/:.*$//'`
    # Check whether this is an Automake generated Makefile or not.
-@@ -6876,17 +7490,28 @@
+@@ -6876,18 +7490,29 @@ echo "$as_me: executing $ac_dest commands" >&6;}
    # each Makefile.in and add a new line on top of each file to say so.
    # So let's grep whole file.
    if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
@@ -60338,6 +27132,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -60354,10 +27149,11 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
    else
      continue
-@@ -6915,53 +7540,79 @@
+   fi
+@@ -6915,53 +7540,79 @@ echo X"$mf" |
         sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
      # Make sure the directory exists.
      test -f "$dirpart/$file" && continue
@@ -60374,6 +27170,11 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-    { if $as_mkdir_p; then
+-    mkdir -p $dirpart/$fdir
+-  else
+-    as_dir=$dirpart/$fdir
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -60390,11 +27191,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
--    { if $as_mkdir_p; then
--    mkdir -p $dirpart/$fdir
--  else
--    as_dir=$dirpart/$fdir
++	  s/.*/./; q'`
 +    { as_dir=$dirpart/$fdir
 +  case $as_dir in #(
 +  -*) as_dir=./$as_dir;;
@@ -60422,6 +27219,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -60438,7 +27236,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
 +      test -d "$as_dir" && break
      done
 -    test ! -n "$as_dirs" || mkdir $as_dirs
@@ -60464,26 +27262,11 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure lustre-1.8.2/ldiskfs/configure
  
  { (exit 0); exit 0; }
  _ACEOF
-diff -Nurwd orig/lustre-1.8.2/ldiskfs/configure.ac lustre-1.8.2/ldiskfs/configure.ac
---- orig/lustre-1.8.2/ldiskfs/configure.ac	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/ldiskfs/configure.ac	2010-03-03 15:57:14.803634020 +0000
-@@ -113,8 +113,12 @@
- 		        LDISKFS_SERIES="2.6-rhel5.series"
-                 fi
- 	else
-+	    if test -e $LINUX_OBJ/version.Debian; then
-+		LDISKFS_SERIES="2.6.18-debian.series"
-+	    else
- 		LDISKFS_SERIES="2.6.18-vanilla.series"
- 	fi
-+	fi
- 	;;
- 2.6.22*) LDISKFS_SERIES="2.6.22-vanilla.series";;
- 2.6.27*) LDISKFS_SERIES="2.6-sles11.series";;
-diff -Nurwd orig/lustre-1.8.2/ldiskfs/ldiskfs/autoMakefile.in lustre-1.8.2/ldiskfs/ldiskfs/autoMakefile.in
---- orig/lustre-1.8.2/ldiskfs/ldiskfs/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/ldiskfs/ldiskfs/autoMakefile.in	2010-03-03 16:00:18.803633117 +0000
-@@ -65,6 +65,7 @@
+diff --git a/ldiskfs/ldiskfs/autoMakefile.in b/ldiskfs/ldiskfs/autoMakefile.in
+index b22941f..56723b6 100644
+--- a/ldiskfs/ldiskfs/autoMakefile.in
++++ b/ldiskfs/ldiskfs/autoMakefile.in
+@@ -65,6 +65,7 @@ ECHO_T = @ECHO_T@
  EGREP = @EGREP@
  EXEEXT = @EXEEXT@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -60491,7 +27274,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/ldiskfs/autoMakefile.in lustre-1.8.2/ldisk
  INCLUDE_RULES = @INCLUDE_RULES@
  INSTALL_DATA = @INSTALL_DATA@
  INSTALL_PROGRAM = @INSTALL_PROGRAM@
-@@ -119,8 +120,6 @@
+@@ -119,8 +120,6 @@ USE_QUILT_TRUE = @USE_QUILT_TRUE@
  VERSION = @VERSION@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -60500,7 +27283,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/ldiskfs/autoMakefile.in lustre-1.8.2/ldisk
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
  am__include = @am__include@
-@@ -133,12 +132,16 @@
+@@ -133,12 +132,16 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -60517,7 +27300,7 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/ldiskfs/autoMakefile.in lustre-1.8.2/ldisk
  includedir = @includedir@
  infodir = @infodir@
  install_sh = @install_sh@
-@@ -146,14 +149,17 @@
+@@ -146,14 +149,17 @@ lb_target_os = @lb_target_os@
  libdir = @libdir@
  libexecdir = @libexecdir@
  linux25 = @linux25@
@@ -60535,9 +27318,10 @@ diff -Nurwd orig/lustre-1.8.2/ldiskfs/ldiskfs/autoMakefile.in lustre-1.8.2/ldisk
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
  sysconfdir = @sysconfdir@
-diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefile.in
---- orig/lustre-1.8.2/libsysio/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/libsysio/Makefile.in	2010-03-03 16:00:16.696633475 +0000
+diff --git a/libsysio/Makefile.in b/libsysio/Makefile.in
+index c4dd212..ffca501 100644
+--- a/libsysio/Makefile.in
++++ b/libsysio/Makefile.in
 @@ -1,8 +1,8 @@
 -# Makefile.in generated by automake 1.9.6 from Makefile.am.
 +# Makefile.in generated by automake 1.7.9 from Makefile.am.
@@ -60550,7 +27334,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  # This Makefile.in is free software; the Free Software Foundation
  # gives unlimited permission to copy and/or distribute it,
  # with or without modifications, as long as this notice is preserved.
-@@ -26,6 +26,7 @@
+@@ -26,6 +26,7 @@ pkgdatadir = $(datadir)/@PACKAGE@
  pkglibdir = $(libdir)/@PACKAGE@
  pkgincludedir = $(includedir)/@PACKAGE@
  top_builddir = .
@@ -60558,7 +27342,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  INSTALL = @INSTALL@
  install_sh_DATA = $(install_sh) -c -m 644
-@@ -42,107 +43,6 @@
+@@ -42,107 +43,6 @@ POST_UNINSTALL = :
  build_triplet = @build@
  host_triplet = @host@
  target_triplet = @target@
@@ -60666,7 +27450,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  ACLOCAL = @ACLOCAL@
  AMDEP_FALSE = @AMDEP_FALSE@
  AMDEP_TRUE = @AMDEP_TRUE@
-@@ -166,6 +66,7 @@
+@@ -166,6 +66,7 @@ ECHO_N = @ECHO_N@
  ECHO_T = @ECHO_T@
  EGREP = @EGREP@
  EXEEXT = @EXEEXT@
@@ -60674,7 +27458,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  INSTALL_DATA = @INSTALL_DATA@
  INSTALL_PROGRAM = @INSTALL_PROGRAM@
  INSTALL_SCRIPT = @INSTALL_SCRIPT@
-@@ -211,15 +112,11 @@
+@@ -211,15 +112,11 @@ WITH_TESTS_FALSE = @WITH_TESTS_FALSE@
  WITH_TESTS_TRUE = @WITH_TESTS_TRUE@
  ZERO_SUM_MEMORY = @ZERO_SUM_MEMORY@
  ac_ct_CC = @ac_ct_CC@
@@ -60690,7 +27474,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  bindir = @bindir@
  build = @build@
  build_alias = @build_alias@
-@@ -227,23 +124,29 @@
+@@ -227,23 +124,29 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -60721,7 +27505,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
  sysconfdir = @sysconfdir@
-@@ -253,12 +156,16 @@
+@@ -253,12 +156,16 @@ target_cpu = @target_cpu@
  target_os = @target_os@
  target_vendor = @target_vendor@
  AUTOMAKE_OPTIONS = 1.6
@@ -60741,7 +27525,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  SRCDIR_SRCS = src/access.c src/chdir.c src/chmod.c \
  	src/chown.c src/dev.c src/dup.c src/fcntl.c \
  	src/fs.c src/fsync.c \
-@@ -273,6 +180,7 @@
+@@ -273,6 +180,7 @@ SRCDIR_SRCS = src/access.c src/chdir.c src/chmod.c \
  	src/truncate.c src/unlink.c src/utime.c \
  	$(FILE_SUPPORT) $(LUSTRE_SRCDIR_SRCS)
  
@@ -60749,7 +27533,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  SRCDIR_EXTRA = src/module.mk
  INCLUDE_EXTRA = include/dev.h include/file.h include/fs.h \
  	include/inode.h include/mount.h include/sysio.h include/sysio-cmn.h \
-@@ -298,21 +206,29 @@
+@@ -298,21 +206,29 @@ NATIVE_EXTRA = drivers/native/fs_native.h drivers/native/module.mk
  YOD_EXTRA = include/cplant-yod.h drivers/yod/fs_yod.h drivers/yod/module.mk
  SOCKETS_SRCS = drivers/sockets/sockets.c
  SOCKETS_EXTRA = drivers/sockets/module.mk
@@ -60780,7 +27564,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  __LIBBUILD_DIR__libsysio_a_SOURCES = \
  	$(SRCDIR_SRCS) \
  	$(OPTIONAL_STDFD_SRCS) \
-@@ -324,90 +240,188 @@
+@@ -324,90 +240,188 @@ __LIBBUILD_DIR__libsysio_a_SOURCES = \
  @WITH_STDFD_DEV_TRUE at STDFD_DEV_CPPFLAGS = -DSTDFD_DEV=1 -I$(top_srcdir)/dev/stdfd
  @WITH_STDFD_DEV_FALSE at STFD_DEV_CPPFLAGS = 
  @WITH_SOCKETS_DRIVER_FALSE at SOCKETS_CPPFLAGS = 
@@ -60791,12 +27575,13 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
 -AM_CPPFLAGS = $(TRACING) $(AUTOMOUNT) $(ZERO_SUM_MEMORY) \
 -	$(DEV_CPPFLAGS) $(SOCKETS_CPPFLAGS) $(DEFER_INIT_CWD) \
 -	$(SYSIO_LABEL_NAMES) -I$(top_srcdir)/include \
+-	${YOD_DRIVER_FLAGS}
 +
 +AM_CPPFLAGS = \
 +	$(TRACING) \
 +	$(AUTOMOUNT) $(ZERO_SUM_MEMORY) $(DEV_CPPFLAGS) $(SOCKETS_CPPFLAGS) \
 +	$(DEFER_INIT_CWD) $(SYSIO_LABEL_NAMES) -I$(top_srcdir)/include \
- 	${YOD_DRIVER_FLAGS}
++${YOD_DRIVER_FLAGS}
 +
  EXTRA_DIST = Rules.make misc/init-env.sh $(TESTS_EXTRA) $(SRCDIR_EXTRA) \
  	$(INCLUDE_EXTRA) $(STDFD_EXTRA) $(INCORE_EXTRA) \
@@ -60934,7 +27719,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  	cd $(top_srcdir) && \
  	  $(AUTOMAKE) --gnu  Makefile
 -.PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 -	@case '$?' in \
 -	  *config.status*) \
 -	    echo ' $(SHELL) ./config.status'; \
@@ -60943,13 +27728,15 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
 -	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
 -	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
 -	esac;
+-
+-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+-	$(SHELL) ./config.status --recheck
++Makefile:  $(srcdir)/Makefile.in  $(top_builddir)/config.status
 +	cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)
  
--$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
-+$(top_builddir)/config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
- 	$(SHELL) ./config.status --recheck
--
 -$(top_srcdir)/configure:  $(am__configure_deps)
++$(top_builddir)/config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
++	$(SHELL) ./config.status --recheck
 +$(srcdir)/configure:  $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
  	cd $(srcdir) && $(AUTOCONF)
 -$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
@@ -61012,7 +27799,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  src/chdir.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
  src/chmod.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
  src/chown.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
-@@ -422,8 +436,7 @@
+@@ -422,8 +436,7 @@ src/init.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
  src/inode.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
  src/ioctl.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
  src/ioctx.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
@@ -61022,7 +27809,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  src/link.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
  src/lseek.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
  src/mkdir.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
-@@ -434,74 +447,67 @@
+@@ -434,74 +447,67 @@ src/open.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
  src/rw.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
  src/reconcile.$(OBJEXT): src/$(am__dirstamp) \
  	src/$(DEPDIR)/$(am__dirstamp)
@@ -61116,7 +27903,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  	@: > ${LIBBUILD_DIR}/$(am__dirstamp)
  ${LIBBUILD_DIR}/libsysio.a: $(__LIBBUILD_DIR__libsysio_a_OBJECTS) $(__LIBBUILD_DIR__libsysio_a_DEPENDENCIES) ${LIBBUILD_DIR}/$(am__dirstamp)
  	-rm -f ${LIBBUILD_DIR}/libsysio.a
-@@ -509,7 +515,7 @@
+@@ -509,7 +515,7 @@ ${LIBBUILD_DIR}/libsysio.a: $(__LIBBUILD_DIR__libsysio_a_OBJECTS) $(__LIBBUILD_D
  	$(RANLIB) ${LIBBUILD_DIR}/libsysio.a
  
  mostlyclean-compile:
@@ -61125,7 +27912,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  	-rm -f dev/stdfd/stdfd.$(OBJEXT)
  	-rm -f drivers/incore/fs_incore.$(OBJEXT)
  	-rm -f drivers/native/fs_native.$(OBJEXT)
-@@ -604,22 +610,1004 @@
+@@ -604,22 +610,1004 @@ distclean-compile:
  @AMDEP_TRUE@@am__include@ @am__quote at src/$(DEPDIR)/utime.Po at am__quote@
  
  .c.o:
@@ -62140,7 +28927,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  	unique=`for i in $$list; do \
-@@ -628,7 +1616,6 @@
+@@ -628,7 +1616,6 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  	  $(AWK) '    { files[$$0] = 1; } \
  	       END { for (i in files) print i; }'`; \
  	mkid -fID $$unique
@@ -62148,7 +28935,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  
  TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
  		$(TAGS_FILES) $(LISP)
-@@ -640,11 +1627,10 @@
+@@ -640,11 +1627,10 @@ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
  	  done | \
  	  $(AWK) '    { files[$$0] = 1; } \
  	       END { for (i in files) print i; }'`; \
@@ -62164,7 +28951,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  ctags: CTAGS
  CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
  		$(TAGS_FILES) $(LISP)
-@@ -667,11 +1653,24 @@
+@@ -667,11 +1653,24 @@ GTAGS:
  
  distclean-tags:
  	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -62190,7 +28977,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
  	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
  	list='$(DISTFILES)'; for file in $$list; do \
-@@ -683,7 +1682,7 @@
+@@ -683,7 +1682,7 @@ distdir: $(DISTFILES)
  	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
  	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
  	    dir="/$$dir"; \
@@ -62199,7 +28986,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  	  else \
  	    dir=''; \
  	  fi; \
-@@ -704,46 +1703,19 @@
+@@ -704,46 +1703,19 @@ distdir: $(DISTFILES)
  	  ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
  	|| chmod -R a+r $(distdir)
  dist-gzip: distdir
@@ -62250,7 +29037,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  	chmod -R a-w $(distdir); chmod a+w $(distdir)
  	mkdir $(distdir)/_build
  	mkdir $(distdir)/_inst
-@@ -763,20 +1735,19 @@
+@@ -763,20 +1735,19 @@ distcheck: dist
  	        distuninstallcheck \
  	  && chmod -R a-w "$$dc_install_base" \
  	  && ({ \
@@ -62276,7 +29063,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  distuninstallcheck:
  	@cd $(distuninstallcheck_dir) \
  	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
-@@ -798,10 +1769,9 @@
+@@ -798,10 +1769,9 @@ distcleancheck: distclean
  check-am: all-am
  check: check-am
  all-am: Makefile $(LIBRARIES)
@@ -62289,7 +29076,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  install: install-am
  install-exec: install-exec-am
  install-data: install-data-am
-@@ -821,24 +1791,26 @@
+@@ -821,24 +1791,26 @@ mostlyclean-generic:
  clean-generic:
  
  distclean-generic:
@@ -62325,7 +29112,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  clean-am: clean-generic clean-libLIBRARIES mostlyclean-am
  
  distclean: distclean-am
-@@ -852,8 +1824,6 @@
+@@ -852,8 +1824,6 @@ dvi: dvi-am
  
  dvi-am:
  
@@ -62334,7 +29121,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  info: info-am
  
  info-am:
-@@ -889,15 +1859,14 @@
+@@ -889,15 +1859,14 @@ ps-am:
  
  uninstall-am: uninstall-info-am uninstall-libLIBRARIES
  
@@ -62357,9 +29144,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/Makefile.in lustre-1.8.2/libsysio/Makefil
  	maintainer-clean-generic mostlyclean mostlyclean-compile \
  	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
  	uninstall-am uninstall-info-am uninstall-libLIBRARIES
-diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.m4
---- orig/lustre-1.8.2/libsysio/aclocal.m4	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/libsysio/aclocal.m4	2010-03-03 16:00:15.783632878 +0000
+diff --git a/libsysio/aclocal.m4 b/libsysio/aclocal.m4
+index fd273ba..7270897 100644
+--- a/libsysio/aclocal.m4
++++ b/libsysio/aclocal.m4
 @@ -1,7 +1,7 @@
 -# generated automatically by aclocal 1.9.6 -*- Autoconf -*-
 +# generated automatically by aclocal 1.7.9 -*- Autoconf -*-
@@ -62535,8 +29323,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
  AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
 -	 [AM_AUTOMAKE_VERSION([1.9.6])])
 +	 [AM_AUTOMAKE_VERSION([1.7.9])])
- 
--# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
++
 +# Helper functions for option handling.                    -*- Autoconf -*-
 +
 +# Copyright 2001, 2002  Free Software Foundation, Inc.
@@ -62568,7 +29355,8 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
 +# Set option NAME.  Presently that only means defining a flag for this option.
 +AC_DEFUN([_AM_SET_OPTION],
 +[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
-+
+ 
+-# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
 +# _AM_SET_OPTIONS(OPTIONS)
 +# ----------------------------------
 +# OPTIONS is a space-separated list of Automake options.
@@ -62716,7 +29504,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
  
  # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
  # $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
-@@ -76,55 +376,131 @@
+@@ -76,55 +376,131 @@ AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
  # absolute PATH.  The drawback is that using absolute paths prevent a
  # configured tree to be moved without reconfiguration.
  
@@ -62885,7 +29673,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
  
  # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
  # written in clear, in which case automake, when reading aclocal.m4,
-@@ -133,6 +509,7 @@
+@@ -133,6 +509,7 @@ fi])])
  # CC etc. in the Makefile, will ask for an AC_PROG_CC use...
  
  
@@ -62893,7 +29681,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
  # _AM_DEPENDENCIES(NAME)
  # ----------------------
  # See how the compiler implements dependency checking.
-@@ -191,9 +568,7 @@
+@@ -191,9 +568,7 @@ AC_CACHE_CHECK([dependency style of $depcc],
      : > sub/conftest.c
      for i in 1 2 3 4 5 6; do
        echo '#include "conftst'$i'.h"' >> sub/conftest.c
@@ -62904,7 +29692,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
      done
      echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
  
-@@ -221,14 +596,9 @@
+@@ -221,14 +596,9 @@ AC_CACHE_CHECK([dependency style of $depcc],
         grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
         ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
        # icc doesn't choke on unknown options, it will just issue warnings
@@ -62922,7 +29710,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
          am_cv_$1_dependencies_compiler_type=$depmode
          break
        fi
-@@ -262,8 +632,8 @@
+@@ -262,8 +632,8 @@ AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
  # ------------
  AC_DEFUN([AM_DEP_TRACK],
  [AC_ARG_ENABLE(dependency-tracking,
@@ -62933,9 +29721,12 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
  if test "x$enable_dependency_tracking" != xno; then
    am_depcomp="$ac_aux_dir/depcomp"
    AMDEPBACKSLASH='\'
-@@ -274,14 +644,24 @@
+@@ -272,16 +642,26 @@ AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
+ AC_SUBST([AMDEPBACKSLASH])
+ ])
  
- # Generate code to set up dependency tracking.              -*- Autoconf -*-
+-# Generate code to set up dependency tracking.              -*- Autoconf -*-
++# Generate code to set up dependency tracking.   -*- Autoconf -*-
  
 -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
 -# Free Software Foundation, Inc.
@@ -62944,8 +29735,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
 -# gives unlimited permission to copy and/or distribute it,
 -# with or without modifications, as long as this notice is preserved.
 +# Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
- 
--#serial 3
++
 +# This program is free software; you can redistribute it and/or modify
 +# it under the terms of the GNU General Public License as published by
 +# the Free Software Foundation; either version 2, or (at your option)
@@ -62960,12 +29750,13 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
 +# along with this program; if not, write to the Free Software
 +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 +# 02111-1307, USA.
-+
+ 
+-#serial 3
 +#serial 2
  
  # _AM_OUTPUT_DEPENDENCY_COMMANDS
  # ------------------------------
-@@ -300,21 +680,27 @@
+@@ -300,21 +680,27 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
    else
      continue
    fi
@@ -63006,21 +29797,27 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
         sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
      # Make sure the directory exists.
      test -f "$dirpart/$file" && continue
-@@ -340,165 +726,27 @@
+@@ -340,165 +726,27 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
       [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
  ])
  
 -# Do all the work for Automake.                             -*- Autoconf -*-
--
++# Check to see how 'make' treats includes.	-*- Autoconf -*-
+ 
 -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 -# Free Software Foundation, Inc.
 -#
 -# This file is free software; the Free Software Foundation
 -# gives unlimited permission to copy and/or distribute it,
 -# with or without modifications, as long as this notice is preserved.
--
++# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
+ 
 -# serial 12
--
++# This program is free software; you can redistribute it and/or modify
++# it under the terms of the GNU General Public License as published by
++# the Free Software Foundation; either version 2, or (at your option)
++# any later version.
+ 
 -# This macro actually does too much.  Some checks are only needed if
 -# your package does certain things.  But this isn't really a big deal.
 -
@@ -63107,8 +29904,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
 -# When config.status generates a header, we must update the stamp-h file.
 -# This file resides in the same directory as the config header
 -# that is generated.  The stamp files are numbered to have different names.
-+# Check to see how 'make' treats includes.	-*- Autoconf -*-
- 
+-
 -# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
 -# loop where config.status creates the headers, so we can generate
 -# our stamp files there.
@@ -63124,18 +29920,13 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
 -  esac
 -done
 -echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
-+# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
- 
+-
 -# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 -#
 -# This file is free software; the Free Software Foundation
 -# gives unlimited permission to copy and/or distribute it,
 -# with or without modifications, as long as this notice is preserved.
-+# This program is free software; you can redistribute it and/or modify
-+# it under the terms of the GNU General Public License as published by
-+# the Free Software Foundation; either version 2, or (at your option)
-+# any later version.
- 
+-
 -# AM_PROG_INSTALL_SH
 -# ------------------
 -# Define $install_sh.
@@ -63186,7 +29977,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
  # AM_MAKE_INCLUDE()
  # -----------------
  # Check to see how make treats includes.
-@@ -541,17 +789,73 @@
+@@ -541,17 +789,73 @@ AC_MSG_RESULT([$_am_result])
  rm -f confinc confmf
  ])
  
@@ -63266,7 +30057,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
  AC_DEFUN([AM_PROG_CC_C_O],
  [AC_REQUIRE([AC_PROG_CC_C_O])dnl
  AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
-@@ -569,310 +873,3 @@
+@@ -569,310 +873,3 @@ if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" != yes"; then
  fi
  ])
  
@@ -63577,7543 +30368,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/aclocal.m4 lustre-1.8.2/libsysio/aclocal.
 -AC_SUBST([am__untar])
 -]) # _AM_PROG_TAR
 -
-diff -Nurwd orig/lustre-1.8.2/libsysio/autogen.sh lustre-1.8.2/libsysio/autogen.sh
---- orig/lustre-1.8.2/libsysio/autogen.sh	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/libsysio/autogen.sh	2010-03-03 15:57:14.819658335 +0000
-@@ -0,0 +1,5 @@
-+#!/bin/sh
-+
-+aclocal &&
-+automake --add-missing --copy &&
-+${AUTOCONF:-autoconf}
-diff -Nurwd orig/lustre-1.8.2/libsysio/autom4te.cache/output.0 lustre-1.8.2/libsysio/autom4te.cache/output.0
---- orig/lustre-1.8.2/libsysio/autom4te.cache/output.0	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/libsysio/autom4te.cache/output.0	2010-03-03 16:00:16.391632779 +0000
-@@ -0,0 +1,6840 @@
-+@%:@! /bin/sh
-+@%:@ Guess values for system-dependent variables and create Makefiles.
-+@%:@ Generated by GNU Autoconf 2.61 for libsysio 1.2.
-+@%:@ 
-+@%:@ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
-+@%:@ 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-+@%:@ This configure script is free software; the Free Software Foundation
-+@%:@ gives unlimited permission to copy, distribute and modify it.
-+## --------------------- ##
-+## M4sh Initialization.  ##
-+## --------------------- ##
-+
-+# Be more Bourne compatible
-+DUALCASE=1; export DUALCASE # for MKS sh
-+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-+  emulate sh
-+  NULLCMD=:
-+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-+  # is contrary to our usage.  Disable this feature.
-+  alias -g '${1+"$@"}'='"$@"'
-+  setopt NO_GLOB_SUBST
-+else
-+  case `(set -o) 2>/dev/null` in
-+  *posix*) set -o posix ;;
-+esac
-+
-+fi
-+
-+
-+
-+
-+# PATH needs CR
-+# Avoid depending upon Character Ranges.
-+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-+as_cr_digits='0123456789'
-+as_cr_alnum=$as_cr_Letters$as_cr_digits
-+
-+# The user is always right.
-+if test "${PATH_SEPARATOR+set}" != set; then
-+  echo "#! /bin/sh" >conf$$.sh
-+  echo  "exit 0"   >>conf$$.sh
-+  chmod +x conf$$.sh
-+  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
-+    PATH_SEPARATOR=';'
-+  else
-+    PATH_SEPARATOR=:
-+  fi
-+  rm -f conf$$.sh
-+fi
-+
-+# Support unset when possible.
-+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
-+  as_unset=unset
-+else
-+  as_unset=false
-+fi
-+
-+
-+# IFS
-+# We need space, tab and new line, in precisely that order.  Quoting is
-+# there to prevent editors from complaining about space-tab.
-+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-+# splitting by setting IFS to empty value.)
-+as_nl='
-+'
-+IFS=" ""	$as_nl"
-+
-+# Find who we are.  Look in the path if we contain no directory separator.
-+case $0 in
-+  *[\\/]* ) as_myself=$0 ;;
-+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
-+done
-+IFS=$as_save_IFS
-+
-+     ;;
-+esac
-+# We did not find ourselves, most probably we were run as `sh COMMAND'
-+# in which case we are not to be found in the path.
-+if test "x$as_myself" = x; then
-+  as_myself=$0
-+fi
-+if test ! -f "$as_myself"; then
-+  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
-+  { (exit 1); exit 1; }
-+fi
-+
-+# Work around bugs in pre-3.0 UWIN ksh.
-+for as_var in ENV MAIL MAILPATH
-+do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+done
-+PS1='$ '
-+PS2='> '
-+PS4='+ '
-+
-+# NLS nuisances.
-+for as_var in \
-+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
-+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
-+  LC_TELEPHONE LC_TIME
-+do
-+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
-+    eval $as_var=C; export $as_var
-+  else
-+    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+  fi
-+done
-+
-+# Required to use basename.
-+if expr a : '\(a\)' >/dev/null 2>&1 &&
-+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
-+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
-+  as_basename=basename
-+else
-+  as_basename=false
-+fi
-+
-+
-+# Name of the executable.
-+as_me=`$as_basename -- "$0" ||
-+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
-+	 X"$0" : 'X\(//\)$' \| \
-+	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X/"$0" |
-+    sed '/^.*\/\([^/][^/]*\)\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\/\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\/\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+
-+# CDPATH.
-+$as_unset CDPATH
-+
-+
-+if test "x$CONFIG_SHELL" = x; then
-+  if (eval ":") 2>/dev/null; then
-+  as_have_required=yes
-+else
-+  as_have_required=no
-+fi
-+
-+  if test $as_have_required = yes && 	 (eval ":
-+(as_func_return () {
-+  (exit \$1)
-+}
-+as_func_success () {
-+  as_func_return 0
-+}
-+as_func_failure () {
-+  as_func_return 1
-+}
-+as_func_ret_success () {
-+  return 0
-+}
-+as_func_ret_failure () {
-+  return 1
-+}
-+
-+exitcode=0
-+if as_func_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_success failed.
-+fi
-+
-+if as_func_failure; then
-+  exitcode=1
-+  echo as_func_failure succeeded.
-+fi
-+
-+if as_func_ret_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_ret_success failed.
-+fi
-+
-+if as_func_ret_failure; then
-+  exitcode=1
-+  echo as_func_ret_failure succeeded.
-+fi
-+
-+if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
-+  :
-+else
-+  exitcode=1
-+  echo positional parameters were not saved.
-+fi
-+
-+test \$exitcode = 0) || { (exit 1); exit 1; }
-+
-+(
-+  as_lineno_1=\$LINENO
-+  as_lineno_2=\$LINENO
-+  test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" &&
-+  test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; }
-+") 2> /dev/null; then
-+  :
-+else
-+  as_candidate_shells=
-+    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  case $as_dir in
-+	 /*)
-+	   for as_base in sh bash ksh sh5; do
-+	     as_candidate_shells="$as_candidate_shells $as_dir/$as_base"
-+	   done;;
-+       esac
-+done
-+IFS=$as_save_IFS
-+
-+
-+      for as_shell in $as_candidate_shells $SHELL; do
-+	 # Try only shells that exist, to save several forks.
-+	 if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
-+		{ ("$as_shell") 2> /dev/null <<\_ASEOF
-+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-+  emulate sh
-+  NULLCMD=:
-+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-+  # is contrary to our usage.  Disable this feature.
-+  alias -g '${1+"$@"}'='"$@"'
-+  setopt NO_GLOB_SUBST
-+else
-+  case `(set -o) 2>/dev/null` in
-+  *posix*) set -o posix ;;
-+esac
-+
-+fi
-+
-+
-+:
-+_ASEOF
-+}; then
-+  CONFIG_SHELL=$as_shell
-+	       as_have_required=yes
-+	       if { "$as_shell" 2> /dev/null <<\_ASEOF
-+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-+  emulate sh
-+  NULLCMD=:
-+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-+  # is contrary to our usage.  Disable this feature.
-+  alias -g '${1+"$@"}'='"$@"'
-+  setopt NO_GLOB_SUBST
-+else
-+  case `(set -o) 2>/dev/null` in
-+  *posix*) set -o posix ;;
-+esac
-+
-+fi
-+
-+
-+:
-+(as_func_return () {
-+  (exit $1)
-+}
-+as_func_success () {
-+  as_func_return 0
-+}
-+as_func_failure () {
-+  as_func_return 1
-+}
-+as_func_ret_success () {
-+  return 0
-+}
-+as_func_ret_failure () {
-+  return 1
-+}
-+
-+exitcode=0
-+if as_func_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_success failed.
-+fi
-+
-+if as_func_failure; then
-+  exitcode=1
-+  echo as_func_failure succeeded.
-+fi
-+
-+if as_func_ret_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_ret_success failed.
-+fi
-+
-+if as_func_ret_failure; then
-+  exitcode=1
-+  echo as_func_ret_failure succeeded.
-+fi
-+
-+if ( set x; as_func_ret_success y && test x = "$1" ); then
-+  :
-+else
-+  exitcode=1
-+  echo positional parameters were not saved.
-+fi
-+
-+test $exitcode = 0) || { (exit 1); exit 1; }
-+
-+(
-+  as_lineno_1=$LINENO
-+  as_lineno_2=$LINENO
-+  test "x$as_lineno_1" != "x$as_lineno_2" &&
-+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; }
-+
-+_ASEOF
-+}; then
-+  break
-+fi
-+
-+fi
-+
-+      done
-+
-+      if test "x$CONFIG_SHELL" != x; then
-+  for as_var in BASH_ENV ENV
-+        do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+        done
-+        export CONFIG_SHELL
-+        exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
-+fi
-+
-+
-+    if test $as_have_required = no; then
-+  echo This script requires a shell more modern than all the
-+      echo shells that I found on your system.  Please install a
-+      echo modern shell, or manually run the script under such a
-+      echo shell if you do have one.
-+      { (exit 1); exit 1; }
-+fi
-+
-+    
-+fi
-+
-+fi
-+
-+
-+
-+(eval "as_func_return () {
-+  (exit \$1)
-+}
-+as_func_success () {
-+  as_func_return 0
-+}
-+as_func_failure () {
-+  as_func_return 1
-+}
-+as_func_ret_success () {
-+  return 0
-+}
-+as_func_ret_failure () {
-+  return 1
-+}
-+
-+exitcode=0
-+if as_func_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_success failed.
-+fi
-+
-+if as_func_failure; then
-+  exitcode=1
-+  echo as_func_failure succeeded.
-+fi
-+
-+if as_func_ret_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_ret_success failed.
-+fi
-+
-+if as_func_ret_failure; then
-+  exitcode=1
-+  echo as_func_ret_failure succeeded.
-+fi
-+
-+if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
-+  :
-+else
-+  exitcode=1
-+  echo positional parameters were not saved.
-+fi
-+
-+test \$exitcode = 0") || {
-+  echo No shell found that supports shell functions.
-+  echo Please tell autoconf at gnu.org about your system,
-+  echo including any error possibly output before this
-+  echo message
-+}
-+
-+
-+
-+  as_lineno_1=$LINENO
-+  as_lineno_2=$LINENO
-+  test "x$as_lineno_1" != "x$as_lineno_2" &&
-+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
-+
-+  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
-+  # uniformly replaced by the line number.  The first 'sed' inserts a
-+  # line-number line after each line using $LINENO; the second 'sed'
-+  # does the real work.  The second script uses 'N' to pair each
-+  # line-number line with the line containing $LINENO, and appends
-+  # trailing '-' during substitution so that $LINENO is not a special
-+  # case at line end.
-+  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
-+  # scripts with optimization help from Paolo Bonzini.  Blame Lee
-+  # E. McMahon (1931-1989) for sed's syntax.  :-)
-+  sed -n '
-+    p
-+    /[$]LINENO/=
-+  ' <$as_myself |
-+    sed '
-+      s/[$]LINENO.*/&-/
-+      t lineno
-+      b
-+      :lineno
-+      N
-+      :loop
-+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
-+      t loop
-+      s/-\n.*//
-+    ' >$as_me.lineno &&
-+  chmod +x "$as_me.lineno" ||
-+    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
-+   { (exit 1); exit 1; }; }
-+
-+  # Don't try to exec as it changes $[0], causing all sort of problems
-+  # (the dirname of $[0] is not the place where we might find the
-+  # original and so on.  Autoconf is especially sensitive to this).
-+  . "./$as_me.lineno"
-+  # Exit status is that of the last command.
-+  exit
-+}
-+
-+
-+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
-+  as_dirname=dirname
-+else
-+  as_dirname=false
-+fi
-+
-+ECHO_C= ECHO_N= ECHO_T=
-+case `echo -n x` in
-+-n*)
-+  case `echo 'x\c'` in
-+  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
-+  *)   ECHO_C='\c';;
-+  esac;;
-+*)
-+  ECHO_N='-n';;
-+esac
-+
-+if expr a : '\(a\)' >/dev/null 2>&1 &&
-+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
-+rm -f conf$$ conf$$.exe conf$$.file
-+if test -d conf$$.dir; then
-+  rm -f conf$$.dir/conf$$.file
-+else
-+  rm -f conf$$.dir
-+  mkdir conf$$.dir
-+fi
-+echo >conf$$.file
-+if ln -s conf$$.file conf$$ 2>/dev/null; then
-+  as_ln_s='ln -s'
-+  # ... but there are two gotchas:
-+  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
-+  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
-+  # In both cases, we have to default to `cp -p'.
-+  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-+    as_ln_s='cp -p'
-+elif ln conf$$.file conf$$ 2>/dev/null; then
-+  as_ln_s=ln
-+else
-+  as_ln_s='cp -p'
-+fi
-+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-+rmdir conf$$.dir 2>/dev/null
-+
-+if mkdir -p . 2>/dev/null; then
-+  as_mkdir_p=:
-+else
-+  test -d ./-p && rmdir ./-p
-+  as_mkdir_p=false
-+fi
-+
-+if test -x / >/dev/null 2>&1; then
-+  as_test_x='test -x'
-+else
-+  if ls -dL / >/dev/null 2>&1; then
-+    as_ls_L_option=L
-+  else
-+    as_ls_L_option=
-+  fi
-+  as_test_x='
-+    eval sh -c '\''
-+      if test -d "$1"; then
-+        test -d "$1/.";
-+      else
-+	case $1 in
-+        -*)set "./$1";;
-+	esac;
-+	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
-+	???[sx]*):;;*)false;;esac;fi
-+    '\'' sh
-+  '
-+fi
-+as_executable_p=$as_test_x
-+
-+# Sed expression to map a string onto a valid CPP name.
-+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-+
-+# Sed expression to map a string onto a valid variable name.
-+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-+
-+
-+
-+exec 7<&0 </dev/null 6>&1
-+
-+# Name of the host.
-+# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
-+# so uname gets run too.
-+ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
-+
-+#
-+# Initializations.
-+#
-+ac_default_prefix=/usr/local
-+ac_clean_files=
-+ac_config_libobj_dir=.
-+LIB@&t at OBJS=
-+cross_compiling=no
-+subdirs=
-+MFLAGS=
-+MAKEFLAGS=
-+SHELL=${CONFIG_SHELL-/bin/sh}
-+
-+# Identity of this package.
-+PACKAGE_NAME='libsysio'
-+PACKAGE_TARNAME='libsysio'
-+PACKAGE_VERSION='1.2'
-+PACKAGE_STRING='libsysio 1.2'
-+PACKAGE_BUGREPORT=''
-+
-+ac_subst_vars='SHELL
-+PATH_SEPARATOR
-+PACKAGE_NAME
-+PACKAGE_TARNAME
-+PACKAGE_VERSION
-+PACKAGE_STRING
-+PACKAGE_BUGREPORT
-+exec_prefix
-+prefix
-+program_transform_name
-+bindir
-+sbindir
-+libexecdir
-+datarootdir
-+datadir
-+sysconfdir
-+sharedstatedir
-+localstatedir
-+includedir
-+oldincludedir
-+docdir
-+infodir
-+htmldir
-+dvidir
-+pdfdir
-+psdir
-+libdir
-+localedir
-+mandir
-+DEFS
-+ECHO_C
-+ECHO_N
-+ECHO_T
-+LIBS
-+build_alias
-+host_alias
-+target_alias
-+build
-+build_cpu
-+build_vendor
-+build_os
-+host
-+host_cpu
-+host_vendor
-+host_os
-+target
-+target_cpu
-+target_vendor
-+target_os
-+INSTALL_PROGRAM
-+INSTALL_SCRIPT
-+INSTALL_DATA
-+CYGPATH_W
-+PACKAGE
-+VERSION
-+ACLOCAL
-+AUTOCONF
-+AUTOMAKE
-+AUTOHEADER
-+MAKEINFO
-+AMTAR
-+install_sh
-+STRIP
-+INSTALL_STRIP_PROGRAM
-+AWK
-+SET_MAKE
-+am__leading_dot
-+CC
-+CFLAGS
-+LDFLAGS
-+CPPFLAGS
-+ac_ct_CC
-+EXEEXT
-+OBJEXT
-+DEPDIR
-+am__include
-+am__quote
-+AMDEP_TRUE
-+AMDEP_FALSE
-+AMDEPBACKSLASH
-+CCDEPMODE
-+am__fastdepCC_TRUE
-+am__fastdepCC_FALSE
-+RANLIB
-+CPP
-+GREP
-+EGREP
-+LIBBUILD_DIR
-+WITH_NATIVE_DRIVER_TRUE
-+WITH_NATIVE_DRIVER_FALSE
-+WITH_INCORE_DRIVER_TRUE
-+WITH_INCORE_DRIVER_FALSE
-+WITH_TESTS_TRUE
-+WITH_TESTS_FALSE
-+AUTOMOUNT
-+WITH_STDFD_DEV_TRUE
-+WITH_STDFD_DEV_FALSE
-+ZERO_SUM_MEMORY
-+DEFER_INIT_CWD
-+TRACING
-+WITH_CPLANT_YOD_TRUE
-+WITH_CPLANT_YOD_FALSE
-+WITH_CPLANT_TESTS_TRUE
-+WITH_CPLANT_TESTS_FALSE
-+WITH_SOCKETS_DRIVER_TRUE
-+WITH_SOCKETS_DRIVER_FALSE
-+WITH_LUSTRE_HACK_TRUE
-+WITH_LUSTRE_HACK_FALSE
-+SYSIO_LABEL_NAMES
-+TEST_ALPHA_ARG_TRUE
-+TEST_ALPHA_ARG_FALSE
-+LIB@&t at OBJS
-+LTLIBOBJS'
-+ac_subst_files=''
-+      ac_precious_vars='build_alias
-+host_alias
-+target_alias
-+CC
-+CFLAGS
-+LDFLAGS
-+LIBS
-+CPPFLAGS
-+CPP'
-+
-+
-+# Initialize some variables set by options.
-+ac_init_help=
-+ac_init_version=false
-+# The variables have the same names as the options, with
-+# dashes changed to underlines.
-+cache_file=/dev/null
-+exec_prefix=NONE
-+no_create=
-+no_recursion=
-+prefix=NONE
-+program_prefix=NONE
-+program_suffix=NONE
-+program_transform_name=s,x,x,
-+silent=
-+site=
-+srcdir=
-+verbose=
-+x_includes=NONE
-+x_libraries=NONE
-+
-+# Installation directory options.
-+# These are left unexpanded so users can "make install exec_prefix=/foo"
-+# and all the variables that are supposed to be based on exec_prefix
-+# by default will actually change.
-+# Use braces instead of parens because sh, perl, etc. also accept them.
-+# (The list follows the same order as the GNU Coding Standards.)
-+bindir='${exec_prefix}/bin'
-+sbindir='${exec_prefix}/sbin'
-+libexecdir='${exec_prefix}/libexec'
-+datarootdir='${prefix}/share'
-+datadir='${datarootdir}'
-+sysconfdir='${prefix}/etc'
-+sharedstatedir='${prefix}/com'
-+localstatedir='${prefix}/var'
-+includedir='${prefix}/include'
-+oldincludedir='/usr/include'
-+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
-+infodir='${datarootdir}/info'
-+htmldir='${docdir}'
-+dvidir='${docdir}'
-+pdfdir='${docdir}'
-+psdir='${docdir}'
-+libdir='${exec_prefix}/lib'
-+localedir='${datarootdir}/locale'
-+mandir='${datarootdir}/man'
-+
-+ac_prev=
-+ac_dashdash=
-+for ac_option
-+do
-+  # If the previous option needs an argument, assign it.
-+  if test -n "$ac_prev"; then
-+    eval $ac_prev=\$ac_option
-+    ac_prev=
-+    continue
-+  fi
-+
-+  case $ac_option in
-+  *=*)	ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
-+  *)	ac_optarg=yes ;;
-+  esac
-+
-+  # Accept the important Cygnus configure options, so we can diagnose typos.
-+
-+  case $ac_dashdash$ac_option in
-+  --)
-+    ac_dashdash=yes ;;
-+
-+  -bindir | --bindir | --bindi | --bind | --bin | --bi)
-+    ac_prev=bindir ;;
-+  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
-+    bindir=$ac_optarg ;;
-+
-+  -build | --build | --buil | --bui | --bu)
-+    ac_prev=build_alias ;;
-+  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
-+    build_alias=$ac_optarg ;;
-+
-+  -cache-file | --cache-file | --cache-fil | --cache-fi \
-+  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
-+    ac_prev=cache_file ;;
-+  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
-+  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
-+    cache_file=$ac_optarg ;;
-+
-+  --config-cache | -C)
-+    cache_file=config.cache ;;
-+
-+  -datadir | --datadir | --datadi | --datad)
-+    ac_prev=datadir ;;
-+  -datadir=* | --datadir=* | --datadi=* | --datad=*)
-+    datadir=$ac_optarg ;;
-+
-+  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
-+  | --dataroo | --dataro | --datar)
-+    ac_prev=datarootdir ;;
-+  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
-+  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
-+    datarootdir=$ac_optarg ;;
-+
-+  -disable-* | --disable-*)
-+    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
-+   { (exit 1); exit 1; }; }
-+    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
-+    eval enable_$ac_feature=no ;;
-+
-+  -docdir | --docdir | --docdi | --doc | --do)
-+    ac_prev=docdir ;;
-+  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
-+    docdir=$ac_optarg ;;
-+
-+  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
-+    ac_prev=dvidir ;;
-+  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
-+    dvidir=$ac_optarg ;;
-+
-+  -enable-* | --enable-*)
-+    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
-+   { (exit 1); exit 1; }; }
-+    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
-+    eval enable_$ac_feature=\$ac_optarg ;;
-+
-+  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
-+  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
-+  | --exec | --exe | --ex)
-+    ac_prev=exec_prefix ;;
-+  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
-+  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
-+  | --exec=* | --exe=* | --ex=*)
-+    exec_prefix=$ac_optarg ;;
-+
-+  -gas | --gas | --ga | --g)
-+    # Obsolete; use --with-gas.
-+    with_gas=yes ;;
-+
-+  -help | --help | --hel | --he | -h)
-+    ac_init_help=long ;;
-+  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
-+    ac_init_help=recursive ;;
-+  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
-+    ac_init_help=short ;;
-+
-+  -host | --host | --hos | --ho)
-+    ac_prev=host_alias ;;
-+  -host=* | --host=* | --hos=* | --ho=*)
-+    host_alias=$ac_optarg ;;
-+
-+  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
-+    ac_prev=htmldir ;;
-+  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
-+  | --ht=*)
-+    htmldir=$ac_optarg ;;
-+
-+  -includedir | --includedir | --includedi | --included | --include \
-+  | --includ | --inclu | --incl | --inc)
-+    ac_prev=includedir ;;
-+  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
-+  | --includ=* | --inclu=* | --incl=* | --inc=*)
-+    includedir=$ac_optarg ;;
-+
-+  -infodir | --infodir | --infodi | --infod | --info | --inf)
-+    ac_prev=infodir ;;
-+  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
-+    infodir=$ac_optarg ;;
-+
-+  -libdir | --libdir | --libdi | --libd)
-+    ac_prev=libdir ;;
-+  -libdir=* | --libdir=* | --libdi=* | --libd=*)
-+    libdir=$ac_optarg ;;
-+
-+  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
-+  | --libexe | --libex | --libe)
-+    ac_prev=libexecdir ;;
-+  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
-+  | --libexe=* | --libex=* | --libe=*)
-+    libexecdir=$ac_optarg ;;
-+
-+  -localedir | --localedir | --localedi | --localed | --locale)
-+    ac_prev=localedir ;;
-+  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
-+    localedir=$ac_optarg ;;
-+
-+  -localstatedir | --localstatedir | --localstatedi | --localstated \
-+  | --localstate | --localstat | --localsta | --localst | --locals)
-+    ac_prev=localstatedir ;;
-+  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
-+  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
-+    localstatedir=$ac_optarg ;;
-+
-+  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
-+    ac_prev=mandir ;;
-+  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
-+    mandir=$ac_optarg ;;
-+
-+  -nfp | --nfp | --nf)
-+    # Obsolete; use --without-fp.
-+    with_fp=no ;;
-+
-+  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
-+  | --no-cr | --no-c | -n)
-+    no_create=yes ;;
-+
-+  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
-+  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
-+    no_recursion=yes ;;
-+
-+  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
-+  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
-+  | --oldin | --oldi | --old | --ol | --o)
-+    ac_prev=oldincludedir ;;
-+  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
-+  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
-+  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
-+    oldincludedir=$ac_optarg ;;
-+
-+  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
-+    ac_prev=prefix ;;
-+  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
-+    prefix=$ac_optarg ;;
-+
-+  -program-prefix | --program-prefix | --program-prefi | --program-pref \
-+  | --program-pre | --program-pr | --program-p)
-+    ac_prev=program_prefix ;;
-+  -program-prefix=* | --program-prefix=* | --program-prefi=* \
-+  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
-+    program_prefix=$ac_optarg ;;
-+
-+  -program-suffix | --program-suffix | --program-suffi | --program-suff \
-+  | --program-suf | --program-su | --program-s)
-+    ac_prev=program_suffix ;;
-+  -program-suffix=* | --program-suffix=* | --program-suffi=* \
-+  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
-+    program_suffix=$ac_optarg ;;
-+
-+  -program-transform-name | --program-transform-name \
-+  | --program-transform-nam | --program-transform-na \
-+  | --program-transform-n | --program-transform- \
-+  | --program-transform | --program-transfor \
-+  | --program-transfo | --program-transf \
-+  | --program-trans | --program-tran \
-+  | --progr-tra | --program-tr | --program-t)
-+    ac_prev=program_transform_name ;;
-+  -program-transform-name=* | --program-transform-name=* \
-+  | --program-transform-nam=* | --program-transform-na=* \
-+  | --program-transform-n=* | --program-transform-=* \
-+  | --program-transform=* | --program-transfor=* \
-+  | --program-transfo=* | --program-transf=* \
-+  | --program-trans=* | --program-tran=* \
-+  | --progr-tra=* | --program-tr=* | --program-t=*)
-+    program_transform_name=$ac_optarg ;;
-+
-+  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
-+    ac_prev=pdfdir ;;
-+  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
-+    pdfdir=$ac_optarg ;;
-+
-+  -psdir | --psdir | --psdi | --psd | --ps)
-+    ac_prev=psdir ;;
-+  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
-+    psdir=$ac_optarg ;;
-+
-+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-+  | -silent | --silent | --silen | --sile | --sil)
-+    silent=yes ;;
-+
-+  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
-+    ac_prev=sbindir ;;
-+  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
-+  | --sbi=* | --sb=*)
-+    sbindir=$ac_optarg ;;
-+
-+  -sharedstatedir | --sharedstatedir | --sharedstatedi \
-+  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
-+  | --sharedst | --shareds | --shared | --share | --shar \
-+  | --sha | --sh)
-+    ac_prev=sharedstatedir ;;
-+  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
-+  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
-+  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
-+  | --sha=* | --sh=*)
-+    sharedstatedir=$ac_optarg ;;
-+
-+  -site | --site | --sit)
-+    ac_prev=site ;;
-+  -site=* | --site=* | --sit=*)
-+    site=$ac_optarg ;;
-+
-+  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
-+    ac_prev=srcdir ;;
-+  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
-+    srcdir=$ac_optarg ;;
-+
-+  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
-+  | --syscon | --sysco | --sysc | --sys | --sy)
-+    ac_prev=sysconfdir ;;
-+  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
-+  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
-+    sysconfdir=$ac_optarg ;;
-+
-+  -target | --target | --targe | --targ | --tar | --ta | --t)
-+    ac_prev=target_alias ;;
-+  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
-+    target_alias=$ac_optarg ;;
-+
-+  -v | -verbose | --verbose | --verbos | --verbo | --verb)
-+    verbose=yes ;;
-+
-+  -version | --version | --versio | --versi | --vers | -V)
-+    ac_init_version=: ;;
-+
-+  -with-* | --with-*)
-+    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid package name: $ac_package" >&2
-+   { (exit 1); exit 1; }; }
-+    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
-+    eval with_$ac_package=\$ac_optarg ;;
-+
-+  -without-* | --without-*)
-+    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid package name: $ac_package" >&2
-+   { (exit 1); exit 1; }; }
-+    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
-+    eval with_$ac_package=no ;;
-+
-+  --x)
-+    # Obsolete; use --with-x.
-+    with_x=yes ;;
-+
-+  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
-+  | --x-incl | --x-inc | --x-in | --x-i)
-+    ac_prev=x_includes ;;
-+  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
-+  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
-+    x_includes=$ac_optarg ;;
-+
-+  -x-libraries | --x-libraries | --x-librarie | --x-librari \
-+  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
-+    ac_prev=x_libraries ;;
-+  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
-+  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
-+    x_libraries=$ac_optarg ;;
-+
-+  -*) { echo "$as_me: error: unrecognized option: $ac_option
-+Try \`$0 --help' for more information." >&2
-+   { (exit 1); exit 1; }; }
-+    ;;
-+
-+  *=*)
-+    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
-+    # Reject names that are not valid shell variable names.
-+    expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
-+      { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
-+   { (exit 1); exit 1; }; }
-+    eval $ac_envvar=\$ac_optarg
-+    export $ac_envvar ;;
-+
-+  *)
-+    # FIXME: should be removed in autoconf 3.0.
-+    echo "$as_me: WARNING: you should use --build, --host, --target" >&2
-+    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-+      echo "$as_me: WARNING: invalid host type: $ac_option" >&2
-+    : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
-+    ;;
-+
-+  esac
-+done
-+
-+if test -n "$ac_prev"; then
-+  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
-+  { echo "$as_me: error: missing argument to $ac_option" >&2
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+# Be sure to have absolute directory names.
-+for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
-+		datadir sysconfdir sharedstatedir localstatedir includedir \
-+		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
-+		libdir localedir mandir
-+do
-+  eval ac_val=\$$ac_var
-+  case $ac_val in
-+    [\\/$]* | ?:[\\/]* )  continue;;
-+    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
-+  esac
-+  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
-+   { (exit 1); exit 1; }; }
-+done
-+
-+# There might be people who depend on the old broken behavior: `$host'
-+# used to hold the argument of --host etc.
-+# FIXME: To remove some day.
-+build=$build_alias
-+host=$host_alias
-+target=$target_alias
-+
-+# FIXME: To remove some day.
-+if test "x$host_alias" != x; then
-+  if test "x$build_alias" = x; then
-+    cross_compiling=maybe
-+    echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
-+    If a cross compiler is detected then cross compile mode will be used." >&2
-+  elif test "x$build_alias" != "x$host_alias"; then
-+    cross_compiling=yes
-+  fi
-+fi
-+
-+ac_tool_prefix=
-+test -n "$host_alias" && ac_tool_prefix=$host_alias-
-+
-+test "$silent" = yes && exec 6>/dev/null
-+
-+
-+ac_pwd=`pwd` && test -n "$ac_pwd" &&
-+ac_ls_di=`ls -di .` &&
-+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
-+  { echo "$as_me: error: Working directory cannot be determined" >&2
-+   { (exit 1); exit 1; }; }
-+test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
-+  { echo "$as_me: error: pwd does not report name of working directory" >&2
-+   { (exit 1); exit 1; }; }
-+
-+
-+# Find the source files, if location was not specified.
-+if test -z "$srcdir"; then
-+  ac_srcdir_defaulted=yes
-+  # Try the directory containing this script, then the parent directory.
-+  ac_confdir=`$as_dirname -- "$0" ||
-+$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$0" : 'X\(//\)[^/]' \| \
-+	 X"$0" : 'X\(//\)$' \| \
-+	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$0" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+  srcdir=$ac_confdir
-+  if test ! -r "$srcdir/$ac_unique_file"; then
-+    srcdir=..
-+  fi
-+else
-+  ac_srcdir_defaulted=no
-+fi
-+if test ! -r "$srcdir/$ac_unique_file"; then
-+  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
-+  { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
-+   { (exit 1); exit 1; }; }
-+fi
-+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
-+ac_abs_confdir=`(
-+	cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2
-+   { (exit 1); exit 1; }; }
-+	pwd)`
-+# When building in place, set srcdir=.
-+if test "$ac_abs_confdir" = "$ac_pwd"; then
-+  srcdir=.
-+fi
-+# Remove unnecessary trailing slashes from srcdir.
-+# Double slashes in file names in object file debugging info
-+# mess up M-x gdb in Emacs.
-+case $srcdir in
-+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
-+esac
-+for ac_var in $ac_precious_vars; do
-+  eval ac_env_${ac_var}_set=\${${ac_var}+set}
-+  eval ac_env_${ac_var}_value=\$${ac_var}
-+  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
-+  eval ac_cv_env_${ac_var}_value=\$${ac_var}
-+done
-+
-+#
-+# Report the --help message.
-+#
-+if test "$ac_init_help" = "long"; then
-+  # Omit some internal or obsolete options to make the list less imposing.
-+  # This message is too long to be a string in the A/UX 3.1 sh.
-+  cat <<_ACEOF
-+\`configure' configures libsysio 1.2 to adapt to many kinds of systems.
-+
-+Usage: $0 [OPTION]... [VAR=VALUE]...
-+
-+To assign environment variables (e.g., CC, CFLAGS...), specify them as
-+VAR=VALUE.  See below for descriptions of some of the useful variables.
-+
-+Defaults for the options are specified in brackets.
-+
-+Configuration:
-+  -h, --help              display this help and exit
-+      --help=short        display options specific to this package
-+      --help=recursive    display the short help of all the included packages
-+  -V, --version           display version information and exit
-+  -q, --quiet, --silent   do not print \`checking...' messages
-+      --cache-file=FILE   cache test results in FILE [disabled]
-+  -C, --config-cache      alias for \`--cache-file=config.cache'
-+  -n, --no-create         do not create output files
-+      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
-+
-+Installation directories:
-+  --prefix=PREFIX         install architecture-independent files in PREFIX
-+			  [$ac_default_prefix]
-+  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
-+			  [PREFIX]
-+
-+By default, \`make install' will install all the files in
-+\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
-+an installation prefix other than \`$ac_default_prefix' using \`--prefix',
-+for instance \`--prefix=\$HOME'.
-+
-+For better control, use the options below.
-+
-+Fine tuning of the installation directories:
-+  --bindir=DIR           user executables [EPREFIX/bin]
-+  --sbindir=DIR          system admin executables [EPREFIX/sbin]
-+  --libexecdir=DIR       program executables [EPREFIX/libexec]
-+  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
-+  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
-+  --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
-+  --libdir=DIR           object code libraries [EPREFIX/lib]
-+  --includedir=DIR       C header files [PREFIX/include]
-+  --oldincludedir=DIR    C header files for non-gcc [/usr/include]
-+  --datarootdir=DIR      read-only arch.-independent data root [PREFIX/share]
-+  --datadir=DIR          read-only architecture-independent data [DATAROOTDIR]
-+  --infodir=DIR          info documentation [DATAROOTDIR/info]
-+  --localedir=DIR        locale-dependent data [DATAROOTDIR/locale]
-+  --mandir=DIR           man documentation [DATAROOTDIR/man]
-+  --docdir=DIR           documentation root @<:@DATAROOTDIR/doc/libsysio@:>@
-+  --htmldir=DIR          html documentation [DOCDIR]
-+  --dvidir=DIR           dvi documentation [DOCDIR]
-+  --pdfdir=DIR           pdf documentation [DOCDIR]
-+  --psdir=DIR            ps documentation [DOCDIR]
-+_ACEOF
-+
-+  cat <<\_ACEOF
-+
-+Program names:
-+  --program-prefix=PREFIX            prepend PREFIX to installed program names
-+  --program-suffix=SUFFIX            append SUFFIX to installed program names
-+  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
-+
-+System types:
-+  --build=BUILD     configure for building on BUILD [guessed]
-+  --host=HOST       cross-compile to build programs to run on HOST [BUILD]
-+  --target=TARGET   configure for building compilers for TARGET [HOST]
-+_ACEOF
-+fi
-+
-+if test -n "$ac_init_help"; then
-+  case $ac_init_help in
-+     short | recursive ) echo "Configuration of libsysio 1.2:";;
-+   esac
-+  cat <<\_ACEOF
-+
-+Optional Features:
-+  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
-+  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
-+  --disable-dependency-tracking Speeds up one-time builds
-+  --enable-dependency-tracking  Do not reject slow dependency extractors
-+
-+Optional Packages:
-+  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
-+  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
-+  --with-lib-dir=<sysio lib build directory> 
-+                          directory for sysio library
-+  --with-native-driver    build native test driver
-+  --with-incore-driver    build incore test driver
-+  --with-tests            build tests
-+  --with-automount@<:@=<automount-file-name>@:>@ 
-+                          with automounts @<:@<automount-file-name>=.mount@:>@
-+  --with-stdfd-dev        build standard file descriptors pseudo-driver
-+  --with-zero-sum-memory  free all dynamically allocated memory at the end --
-+                          useful for debugging
-+  --with-defer-init-cwd   defer initialization of current working directory
-+  --with-tracing          enable tracing support
-+  --with-cplant-yod       build cplant yod I/O driver
-+  --with-cplant-tests=<cplant-build-path> 
-+                          build libsysio tests for cplant platform
-+  --with-sockets          build sockets interface driver (EXPERIMENTAL)
-+  --with-lustre-hack      have hacking code which needed to support liblustre
-+                          driver (EXPERIMENTAL)
-+  --with-alternate-symbols@<:@=<qualifier>@:>@ 
-+                          Prepend standard, public, symbols with a unique
-+                          qualifer
-+
-+Some influential environment variables:
-+  CC          C compiler command
-+  CFLAGS      C compiler flags
-+  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
-+              nonstandard directory <lib dir>
-+  LIBS        libraries to pass to the linker, e.g. -l<library>
-+  CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
-+              you have headers in a nonstandard directory <include dir>
-+  CPP         C preprocessor
-+
-+Use these variables to override the choices made by `configure' or to help
-+it to find libraries and programs with nonstandard names/locations.
-+
-+_ACEOF
-+ac_status=$?
-+fi
-+
-+if test "$ac_init_help" = "recursive"; then
-+  # If there are subdirs, report their specific --help.
-+  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
-+    test -d "$ac_dir" || continue
-+    ac_builddir=.
-+
-+case "$ac_dir" in
-+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+*)
-+  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
-+  # A ".." for each directory in $ac_dir_suffix.
-+  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
-+  case $ac_top_builddir_sub in
-+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
-+  esac ;;
-+esac
-+ac_abs_top_builddir=$ac_pwd
-+ac_abs_builddir=$ac_pwd$ac_dir_suffix
-+# for backward compatibility:
-+ac_top_builddir=$ac_top_build_prefix
-+
-+case $srcdir in
-+  .)  # We are building in place.
-+    ac_srcdir=.
-+    ac_top_srcdir=$ac_top_builddir_sub
-+    ac_abs_top_srcdir=$ac_pwd ;;
-+  [\\/]* | ?:[\\/]* )  # Absolute name.
-+    ac_srcdir=$srcdir$ac_dir_suffix;
-+    ac_top_srcdir=$srcdir
-+    ac_abs_top_srcdir=$srcdir ;;
-+  *) # Relative name.
-+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
-+    ac_top_srcdir=$ac_top_build_prefix$srcdir
-+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-+esac
-+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-+
-+    cd "$ac_dir" || { ac_status=$?; continue; }
-+    # Check for guested configure.
-+    if test -f "$ac_srcdir/configure.gnu"; then
-+      echo &&
-+      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
-+    elif test -f "$ac_srcdir/configure"; then
-+      echo &&
-+      $SHELL "$ac_srcdir/configure" --help=recursive
-+    else
-+      echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
-+    fi || ac_status=$?
-+    cd "$ac_pwd" || { ac_status=$?; break; }
-+  done
-+fi
-+
-+test -n "$ac_init_help" && exit $ac_status
-+if $ac_init_version; then
-+  cat <<\_ACEOF
-+libsysio configure 1.2
-+generated by GNU Autoconf 2.61
-+
-+Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
-+2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-+This configure script is free software; the Free Software Foundation
-+gives unlimited permission to copy, distribute and modify it.
-+_ACEOF
-+  exit
-+fi
-+cat >config.log <<_ACEOF
-+This file contains any messages produced by compilers while
-+running configure, to aid debugging if configure makes a mistake.
-+
-+It was created by libsysio $as_me 1.2, which was
-+generated by GNU Autoconf 2.61.  Invocation command line was
-+
-+  $ $0 $@
-+
-+_ACEOF
-+exec 5>>config.log
-+{
-+cat <<_ASUNAME
-+@%:@@%:@ --------- @%:@@%:@
-+@%:@@%:@ Platform. @%:@@%:@
-+@%:@@%:@ --------- @%:@@%:@
-+
-+hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
-+uname -m = `(uname -m) 2>/dev/null || echo unknown`
-+uname -r = `(uname -r) 2>/dev/null || echo unknown`
-+uname -s = `(uname -s) 2>/dev/null || echo unknown`
-+uname -v = `(uname -v) 2>/dev/null || echo unknown`
-+
-+/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
-+/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
-+
-+/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
-+/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
-+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
-+/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
-+/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
-+/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
-+/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
-+
-+_ASUNAME
-+
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  echo "PATH: $as_dir"
-+done
-+IFS=$as_save_IFS
-+
-+} >&5
-+
-+cat >&5 <<_ACEOF
-+
-+
-+@%:@@%:@ ----------- @%:@@%:@
-+@%:@@%:@ Core tests. @%:@@%:@
-+@%:@@%:@ ----------- @%:@@%:@
-+
-+_ACEOF
-+
-+
-+# Keep a trace of the command line.
-+# Strip out --no-create and --no-recursion so they do not pile up.
-+# Strip out --silent because we don't want to record it for future runs.
-+# Also quote any args containing shell meta-characters.
-+# Make two passes to allow for proper duplicate-argument suppression.
-+ac_configure_args=
-+ac_configure_args0=
-+ac_configure_args1=
-+ac_must_keep_next=false
-+for ac_pass in 1 2
-+do
-+  for ac_arg
-+  do
-+    case $ac_arg in
-+    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
-+    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-+    | -silent | --silent | --silen | --sile | --sil)
-+      continue ;;
-+    *\'*)
-+      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
-+    esac
-+    case $ac_pass in
-+    1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
-+    2)
-+      ac_configure_args1="$ac_configure_args1 '$ac_arg'"
-+      if test $ac_must_keep_next = true; then
-+	ac_must_keep_next=false # Got value, back to normal.
-+      else
-+	case $ac_arg in
-+	  *=* | --config-cache | -C | -disable-* | --disable-* \
-+	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
-+	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
-+	  | -with-* | --with-* | -without-* | --without-* | --x)
-+	    case "$ac_configure_args0 " in
-+	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
-+	    esac
-+	    ;;
-+	  -* ) ac_must_keep_next=true ;;
-+	esac
-+      fi
-+      ac_configure_args="$ac_configure_args '$ac_arg'"
-+      ;;
-+    esac
-+  done
-+done
-+$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
-+$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
-+
-+# When interrupted or exit'd, cleanup temporary files, and complete
-+# config.log.  We remove comments because anyway the quotes in there
-+# would cause problems or look ugly.
-+# WARNING: Use '\'' to represent an apostrophe within the trap.
-+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
-+trap 'exit_status=$?
-+  # Save into config.log some information that might help in debugging.
-+  {
-+    echo
-+
-+    cat <<\_ASBOX
-+@%:@@%:@ ---------------- @%:@@%:@
-+@%:@@%:@ Cache variables. @%:@@%:@
-+@%:@@%:@ ---------------- @%:@@%:@
-+_ASBOX
-+    echo
-+    # The following way of writing the cache mishandles newlines in values,
-+(
-+  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
-+    eval ac_val=\$$ac_var
-+    case $ac_val in #(
-+    *${as_nl}*)
-+      case $ac_var in #(
-+      *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
-+echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
-+      esac
-+      case $ac_var in #(
-+      _ | IFS | as_nl) ;; #(
-+      *) $as_unset $ac_var ;;
-+      esac ;;
-+    esac
-+  done
-+  (set) 2>&1 |
-+    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
-+    *${as_nl}ac_space=\ *)
-+      sed -n \
-+	"s/'\''/'\''\\\\'\'''\''/g;
-+	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
-+      ;; #(
-+    *)
-+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
-+      ;;
-+    esac |
-+    sort
-+)
-+    echo
-+
-+    cat <<\_ASBOX
-+@%:@@%:@ ----------------- @%:@@%:@
-+@%:@@%:@ Output variables. @%:@@%:@
-+@%:@@%:@ ----------------- @%:@@%:@
-+_ASBOX
-+    echo
-+    for ac_var in $ac_subst_vars
-+    do
-+      eval ac_val=\$$ac_var
-+      case $ac_val in
-+      *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
-+      esac
-+      echo "$ac_var='\''$ac_val'\''"
-+    done | sort
-+    echo
-+
-+    if test -n "$ac_subst_files"; then
-+      cat <<\_ASBOX
-+@%:@@%:@ ------------------- @%:@@%:@
-+@%:@@%:@ File substitutions. @%:@@%:@
-+@%:@@%:@ ------------------- @%:@@%:@
-+_ASBOX
-+      echo
-+      for ac_var in $ac_subst_files
-+      do
-+	eval ac_val=\$$ac_var
-+	case $ac_val in
-+	*\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
-+	esac
-+	echo "$ac_var='\''$ac_val'\''"
-+      done | sort
-+      echo
-+    fi
-+
-+    if test -s confdefs.h; then
-+      cat <<\_ASBOX
-+@%:@@%:@ ----------- @%:@@%:@
-+@%:@@%:@ confdefs.h. @%:@@%:@
-+@%:@@%:@ ----------- @%:@@%:@
-+_ASBOX
-+      echo
-+      cat confdefs.h
-+      echo
-+    fi
-+    test "$ac_signal" != 0 &&
-+      echo "$as_me: caught signal $ac_signal"
-+    echo "$as_me: exit $exit_status"
-+  } >&5
-+  rm -f core *.core core.conftest.* &&
-+    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
-+    exit $exit_status
-+' 0
-+for ac_signal in 1 2 13 15; do
-+  trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
-+done
-+ac_signal=0
-+
-+# confdefs.h avoids OS command line length limits that DEFS can exceed.
-+rm -f -r conftest* confdefs.h
-+
-+# Predefined preprocessor variables.
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_NAME "$PACKAGE_NAME"
-+_ACEOF
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME"
-+_ACEOF
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_VERSION "$PACKAGE_VERSION"
-+_ACEOF
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_STRING "$PACKAGE_STRING"
-+_ACEOF
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
-+_ACEOF
-+
-+
-+# Let the site file select an alternate cache file if it wants to.
-+# Prefer explicitly selected file to automatically selected ones.
-+if test -n "$CONFIG_SITE"; then
-+  set x "$CONFIG_SITE"
-+elif test "x$prefix" != xNONE; then
-+  set x "$prefix/share/config.site" "$prefix/etc/config.site"
-+else
-+  set x "$ac_default_prefix/share/config.site" \
-+	"$ac_default_prefix/etc/config.site"
-+fi
-+shift
-+for ac_site_file
-+do
-+  if test -r "$ac_site_file"; then
-+    { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
-+echo "$as_me: loading site script $ac_site_file" >&6;}
-+    sed 's/^/| /' "$ac_site_file" >&5
-+    . "$ac_site_file"
-+  fi
-+done
-+
-+if test -r "$cache_file"; then
-+  # Some versions of bash will fail to source /dev/null (special
-+  # files actually), so we avoid doing that.
-+  if test -f "$cache_file"; then
-+    { echo "$as_me:$LINENO: loading cache $cache_file" >&5
-+echo "$as_me: loading cache $cache_file" >&6;}
-+    case $cache_file in
-+      [\\/]* | ?:[\\/]* ) . "$cache_file";;
-+      *)                      . "./$cache_file";;
-+    esac
-+  fi
-+else
-+  { echo "$as_me:$LINENO: creating cache $cache_file" >&5
-+echo "$as_me: creating cache $cache_file" >&6;}
-+  >$cache_file
-+fi
-+
-+# Check that the precious variables saved in the cache have kept the same
-+# value.
-+ac_cache_corrupted=false
-+for ac_var in $ac_precious_vars; do
-+  eval ac_old_set=\$ac_cv_env_${ac_var}_set
-+  eval ac_new_set=\$ac_env_${ac_var}_set
-+  eval ac_old_val=\$ac_cv_env_${ac_var}_value
-+  eval ac_new_val=\$ac_env_${ac_var}_value
-+  case $ac_old_set,$ac_new_set in
-+    set,)
-+      { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
-+echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
-+      ac_cache_corrupted=: ;;
-+    ,set)
-+      { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
-+echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
-+      ac_cache_corrupted=: ;;
-+    ,);;
-+    *)
-+      if test "x$ac_old_val" != "x$ac_new_val"; then
-+	{ echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
-+echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
-+	{ echo "$as_me:$LINENO:   former value:  $ac_old_val" >&5
-+echo "$as_me:   former value:  $ac_old_val" >&2;}
-+	{ echo "$as_me:$LINENO:   current value: $ac_new_val" >&5
-+echo "$as_me:   current value: $ac_new_val" >&2;}
-+	ac_cache_corrupted=:
-+      fi;;
-+  esac
-+  # Pass precious variables to config.status.
-+  if test "$ac_new_set" = set; then
-+    case $ac_new_val in
-+    *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
-+    *) ac_arg=$ac_var=$ac_new_val ;;
-+    esac
-+    case " $ac_configure_args " in
-+      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
-+      *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
-+    esac
-+  fi
-+done
-+if $ac_cache_corrupted; then
-+  { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
-+echo "$as_me: error: changes in the environment can compromise the build" >&2;}
-+  { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
-+echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+
-+
-+
-+ac_aux_dir=
-+for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
-+  if test -f "$ac_dir/install-sh"; then
-+    ac_aux_dir=$ac_dir
-+    ac_install_sh="$ac_aux_dir/install-sh -c"
-+    break
-+  elif test -f "$ac_dir/install.sh"; then
-+    ac_aux_dir=$ac_dir
-+    ac_install_sh="$ac_aux_dir/install.sh -c"
-+    break
-+  elif test -f "$ac_dir/shtool"; then
-+    ac_aux_dir=$ac_dir
-+    ac_install_sh="$ac_aux_dir/shtool install -c"
-+    break
-+  fi
-+done
-+if test -z "$ac_aux_dir"; then
-+  { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5
-+echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+# These three variables are undocumented and unsupported,
-+# and are intended to be withdrawn in a future Autoconf release.
-+# They can cause serious problems if a builder's source tree is in a directory
-+# whose full name contains unusual characters.
-+ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
-+ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
-+ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
-+
-+
-+# Make sure we can run config.sub.
-+$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
-+  { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5
-+echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+{ echo "$as_me:$LINENO: checking build system type" >&5
-+echo $ECHO_N "checking build system type... $ECHO_C" >&6; }
-+if test "${ac_cv_build+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_build_alias=$build_alias
-+test "x$ac_build_alias" = x &&
-+  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
-+test "x$ac_build_alias" = x &&
-+  { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
-+echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
-+   { (exit 1); exit 1; }; }
-+ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
-+  { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5
-+echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_build" >&5
-+echo "${ECHO_T}$ac_cv_build" >&6; }
-+case $ac_cv_build in
-+*-*-*) ;;
-+*) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5
-+echo "$as_me: error: invalid value of canonical build" >&2;}
-+   { (exit 1); exit 1; }; };;
-+esac
-+build=$ac_cv_build
-+ac_save_IFS=$IFS; IFS='-'
-+set x $ac_cv_build
-+shift
-+build_cpu=$1
-+build_vendor=$2
-+shift; shift
-+# Remember, the first character of IFS is used to create $*,
-+# except with old shells:
-+build_os=$*
-+IFS=$ac_save_IFS
-+case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
-+
-+
-+{ echo "$as_me:$LINENO: checking host system type" >&5
-+echo $ECHO_N "checking host system type... $ECHO_C" >&6; }
-+if test "${ac_cv_host+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test "x$host_alias" = x; then
-+  ac_cv_host=$ac_cv_build
-+else
-+  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
-+    { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5
-+echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_host" >&5
-+echo "${ECHO_T}$ac_cv_host" >&6; }
-+case $ac_cv_host in
-+*-*-*) ;;
-+*) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5
-+echo "$as_me: error: invalid value of canonical host" >&2;}
-+   { (exit 1); exit 1; }; };;
-+esac
-+host=$ac_cv_host
-+ac_save_IFS=$IFS; IFS='-'
-+set x $ac_cv_host
-+shift
-+host_cpu=$1
-+host_vendor=$2
-+shift; shift
-+# Remember, the first character of IFS is used to create $*,
-+# except with old shells:
-+host_os=$*
-+IFS=$ac_save_IFS
-+case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
-+
-+
-+{ echo "$as_me:$LINENO: checking target system type" >&5
-+echo $ECHO_N "checking target system type... $ECHO_C" >&6; }
-+if test "${ac_cv_target+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test "x$target_alias" = x; then
-+  ac_cv_target=$ac_cv_host
-+else
-+  ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
-+    { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5
-+echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_target" >&5
-+echo "${ECHO_T}$ac_cv_target" >&6; }
-+case $ac_cv_target in
-+*-*-*) ;;
-+*) { { echo "$as_me:$LINENO: error: invalid value of canonical target" >&5
-+echo "$as_me: error: invalid value of canonical target" >&2;}
-+   { (exit 1); exit 1; }; };;
-+esac
-+target=$ac_cv_target
-+ac_save_IFS=$IFS; IFS='-'
-+set x $ac_cv_target
-+shift
-+target_cpu=$1
-+target_vendor=$2
-+shift; shift
-+# Remember, the first character of IFS is used to create $*,
-+# except with old shells:
-+target_os=$*
-+IFS=$ac_save_IFS
-+case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac
-+
-+
-+# The aliases save the names the user supplied, while $host etc.
-+# will get canonicalized.
-+test -n "$target_alias" &&
-+  test "$program_prefix$program_suffix$program_transform_name" = \
-+    NONENONEs,x,x, &&
-+  program_prefix=${target_alias}-
-+
-+case "$host_os" in
-+  aix*)
-+  	;;
-+  linux*)
-+	;;
-+  *)
-+	{ echo "$as_me:$LINENO: WARNING: '***' ${host_os}: Unsupported OS target" >&5
-+echo "$as_me: WARNING: '***' ${host_os}: Unsupported OS target" >&2;}
-+	;;
-+esac
-+
-+am__api_version="1.7"
-+# Find a good install program.  We prefer a C program (faster),
-+# so one script is as good as another.  But avoid the broken or
-+# incompatible versions:
-+# SysV /etc/install, /usr/sbin/install
-+# SunOS /usr/etc/install
-+# IRIX /sbin/install
-+# AIX /bin/install
-+# AmigaOS /C/install, which installs bootblocks on floppy discs
-+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
-+# AFS /usr/afsws/bin/install, which mishandles nonexistent args
-+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
-+# OS/2's system install, which has a completely different semantic
-+# ./install, which can be erroneously created by make from ./install.sh.
-+{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
-+echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; }
-+if test -z "$INSTALL"; then
-+if test "${ac_cv_path_install+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  # Account for people who put trailing slashes in PATH elements.
-+case $as_dir/ in
-+  ./ | .// | /cC/* | \
-+  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
-+  ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
-+  /usr/ucb/* ) ;;
-+  *)
-+    # OSF1 and SCO ODT 3.0 have their own names for install.
-+    # Don't use installbsd from OSF since it installs stuff as root
-+    # by default.
-+    for ac_prog in ginstall scoinst install; do
-+      for ac_exec_ext in '' $ac_executable_extensions; do
-+	if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
-+	  if test $ac_prog = install &&
-+	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
-+	    # AIX install.  It has an incompatible calling convention.
-+	    :
-+	  elif test $ac_prog = install &&
-+	    grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
-+	    # program-specific install script used by HP pwplus--don't use.
-+	    :
-+	  else
-+	    ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
-+	    break 3
-+	  fi
-+	fi
-+      done
-+    done
-+    ;;
-+esac
-+done
-+IFS=$as_save_IFS
-+
-+
-+fi
-+  if test "${ac_cv_path_install+set}" = set; then
-+    INSTALL=$ac_cv_path_install
-+  else
-+    # As a last resort, use the slow shell script.  Don't cache a
-+    # value for INSTALL within a source directory, because that will
-+    # break other packages using the cache if that directory is
-+    # removed, or if the value is a relative name.
-+    INSTALL=$ac_install_sh
-+  fi
-+fi
-+{ echo "$as_me:$LINENO: result: $INSTALL" >&5
-+echo "${ECHO_T}$INSTALL" >&6; }
-+
-+# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
-+# It thinks the first close brace ends the variable substitution.
-+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
-+
-+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
-+
-+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
-+
-+{ echo "$as_me:$LINENO: checking whether build environment is sane" >&5
-+echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; }
-+# Just in case
-+sleep 1
-+echo timestamp > conftest.file
-+# Do `set' in a subshell so we don't clobber the current shell's
-+# arguments.  Must try -L first in case configure is actually a
-+# symlink; some systems play weird games with the mod time of symlinks
-+# (eg FreeBSD returns the mod time of the symlink's containing
-+# directory).
-+if (
-+   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
-+   if test "$*" = "X"; then
-+      # -L didn't work.
-+      set X `ls -t $srcdir/configure conftest.file`
-+   fi
-+   rm -f conftest.file
-+   if test "$*" != "X $srcdir/configure conftest.file" \
-+      && test "$*" != "X conftest.file $srcdir/configure"; then
-+
-+      # If neither matched, then we have a broken ls.  This can happen
-+      # if, for instance, CONFIG_SHELL is bash and it inherits a
-+      # broken ls alias from the environment.  This has actually
-+      # happened.  Such a system could not be considered "sane".
-+      { { echo "$as_me:$LINENO: error: ls -t appears to fail.  Make sure there is not a broken
-+alias in your environment" >&5
-+echo "$as_me: error: ls -t appears to fail.  Make sure there is not a broken
-+alias in your environment" >&2;}
-+   { (exit 1); exit 1; }; }
-+   fi
-+
-+   test "$2" = conftest.file
-+   )
-+then
-+   # Ok.
-+   :
-+else
-+   { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
-+Check your system clock" >&5
-+echo "$as_me: error: newly created file is older than distributed files!
-+Check your system clock" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+test "$program_prefix" != NONE &&
-+  program_transform_name="s&^&$program_prefix&;$program_transform_name"
-+# Use a double $ so make ignores it.
-+test "$program_suffix" != NONE &&
-+  program_transform_name="s&\$&$program_suffix&;$program_transform_name"
-+# Double any \ or $.  echo might interpret backslashes.
-+# By default was `s,x,x', remove it if useless.
-+cat <<\_ACEOF >conftest.sed
-+s/[\\$]/&&/g;s/;s,x,x,$//
-+_ACEOF
-+program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
-+rm -f conftest.sed
-+
-+
-+# expand $ac_aux_dir to an absolute path
-+am_aux_dir=`cd $ac_aux_dir && pwd`
-+
-+test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
-+# Use eval to expand $SHELL
-+if eval "$MISSING --run true"; then
-+  am_missing_run="$MISSING --run "
-+else
-+  am_missing_run=
-+  { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
-+echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
-+fi
-+
-+for ac_prog in gawk mawk nawk awk
-+do
-+  # Extract the first word of "$ac_prog", so it can be a program name with args.
-+set dummy $ac_prog; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_AWK+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$AWK"; then
-+  ac_cv_prog_AWK="$AWK" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_AWK="$ac_prog"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+AWK=$ac_cv_prog_AWK
-+if test -n "$AWK"; then
-+  { echo "$as_me:$LINENO: result: $AWK" >&5
-+echo "${ECHO_T}$AWK" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+  test -n "$AWK" && break
-+done
-+
-+{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
-+echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
-+set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
-+if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.make <<\_ACEOF
-+SHELL = /bin/sh
-+all:
-+	@echo '@@@%%%=$(MAKE)=@@@%%%'
-+_ACEOF
-+# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
-+case `${MAKE-make} -f conftest.make 2>/dev/null` in
-+  *@@@%%%=?*=@@@%%%*)
-+    eval ac_cv_prog_make_${ac_make}_set=yes;;
-+  *)
-+    eval ac_cv_prog_make_${ac_make}_set=no;;
-+esac
-+rm -f conftest.make
-+fi
-+if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
-+  { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+  SET_MAKE=
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+  SET_MAKE="MAKE=${MAKE-make}"
-+fi
-+
-+rm -rf .tst 2>/dev/null
-+mkdir .tst 2>/dev/null
-+if test -d .tst; then
-+  am__leading_dot=.
-+else
-+  am__leading_dot=_
-+fi
-+rmdir .tst 2>/dev/null
-+
-+ # test to see if srcdir already configured
-+if test "`cd $srcdir && pwd`" != "`pwd`" &&
-+   test -f $srcdir/config.status; then
-+  { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
-+echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+# test whether we have cygpath
-+if test -z "$CYGPATH_W"; then
-+  if (cygpath --version) >/dev/null 2>/dev/null; then
-+    CYGPATH_W='cygpath -w'
-+  else
-+    CYGPATH_W=echo
-+  fi
-+fi
-+
-+
-+# Define the identity of the package.
-+ PACKAGE='libsysio'
-+ VERSION='1.2'
-+
-+
-+cat >>confdefs.h <<_ACEOF
-+@%:@define PACKAGE "$PACKAGE"
-+_ACEOF
-+
-+ 
-+cat >>confdefs.h <<_ACEOF
-+@%:@define VERSION "$VERSION"
-+_ACEOF
-+
-+# Some tools Automake needs.
-+
-+ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
-+
-+
-+AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
-+
-+
-+AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
-+
-+
-+AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
-+
-+
-+MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
-+
-+
-+AMTAR=${AMTAR-"${am_missing_run}tar"}
-+
-+install_sh=${install_sh-"$am_aux_dir/install-sh"}
-+
-+# Installed binaries are usually stripped using `strip' when the user
-+# run `make install-strip'.  However `strip' might not be the right
-+# tool to use in cross-compilation environments, therefore Automake
-+# will honor the `STRIP' environment variable to overrule this program.
-+if test "$cross_compiling" != no; then
-+  if test -n "$ac_tool_prefix"; then
-+  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
-+set dummy ${ac_tool_prefix}strip; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_STRIP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$STRIP"; then
-+  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+STRIP=$ac_cv_prog_STRIP
-+if test -n "$STRIP"; then
-+  { echo "$as_me:$LINENO: result: $STRIP" >&5
-+echo "${ECHO_T}$STRIP" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+fi
-+if test -z "$ac_cv_prog_STRIP"; then
-+  ac_ct_STRIP=$STRIP
-+  # Extract the first word of "strip", so it can be a program name with args.
-+set dummy strip; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$ac_ct_STRIP"; then
-+  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_ac_ct_STRIP="strip"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
-+if test -n "$ac_ct_STRIP"; then
-+  { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
-+echo "${ECHO_T}$ac_ct_STRIP" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+  if test "x$ac_ct_STRIP" = x; then
-+    STRIP=":"
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&5
-+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    STRIP=$ac_ct_STRIP
-+  fi
-+else
-+  STRIP="$ac_cv_prog_STRIP"
-+fi
-+
-+fi
-+INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
-+
-+# We need awk for the "check" target.  The system "awk" is bad on
-+# some platforms.
-+
-+
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+if test -n "$ac_tool_prefix"; then
-+  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
-+set dummy ${ac_tool_prefix}gcc; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$CC"; then
-+  ac_cv_prog_CC="$CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_CC="${ac_tool_prefix}gcc"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+CC=$ac_cv_prog_CC
-+if test -n "$CC"; then
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+fi
-+if test -z "$ac_cv_prog_CC"; then
-+  ac_ct_CC=$CC
-+  # Extract the first word of "gcc", so it can be a program name with args.
-+set dummy gcc; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$ac_ct_CC"; then
-+  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_ac_ct_CC="gcc"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+ac_ct_CC=$ac_cv_prog_ac_ct_CC
-+if test -n "$ac_ct_CC"; then
-+  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
-+echo "${ECHO_T}$ac_ct_CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+  if test "x$ac_ct_CC" = x; then
-+    CC=""
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&5
-+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    CC=$ac_ct_CC
-+  fi
-+else
-+  CC="$ac_cv_prog_CC"
-+fi
-+
-+if test -z "$CC"; then
-+          if test -n "$ac_tool_prefix"; then
-+    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
-+set dummy ${ac_tool_prefix}cc; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$CC"; then
-+  ac_cv_prog_CC="$CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_CC="${ac_tool_prefix}cc"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+CC=$ac_cv_prog_CC
-+if test -n "$CC"; then
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+  fi
-+fi
-+if test -z "$CC"; then
-+  # Extract the first word of "cc", so it can be a program name with args.
-+set dummy cc; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$CC"; then
-+  ac_cv_prog_CC="$CC" # Let the user override the test.
-+else
-+  ac_prog_rejected=no
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
-+       ac_prog_rejected=yes
-+       continue
-+     fi
-+    ac_cv_prog_CC="cc"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+if test $ac_prog_rejected = yes; then
-+  # We found a bogon in the path, so make sure we never use it.
-+  set dummy $ac_cv_prog_CC
-+  shift
-+  if test $@%:@ != 0; then
-+    # We chose a different compiler from the bogus one.
-+    # However, it has the same basename, so the bogon will be chosen
-+    # first if we set CC to just the basename; use the full file name.
-+    shift
-+    ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
-+  fi
-+fi
-+fi
-+fi
-+CC=$ac_cv_prog_CC
-+if test -n "$CC"; then
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+fi
-+if test -z "$CC"; then
-+  if test -n "$ac_tool_prefix"; then
-+  for ac_prog in cl.exe
-+  do
-+    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
-+set dummy $ac_tool_prefix$ac_prog; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$CC"; then
-+  ac_cv_prog_CC="$CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+CC=$ac_cv_prog_CC
-+if test -n "$CC"; then
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+    test -n "$CC" && break
-+  done
-+fi
-+if test -z "$CC"; then
-+  ac_ct_CC=$CC
-+  for ac_prog in cl.exe
-+do
-+  # Extract the first word of "$ac_prog", so it can be a program name with args.
-+set dummy $ac_prog; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$ac_ct_CC"; then
-+  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_ac_ct_CC="$ac_prog"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+ac_ct_CC=$ac_cv_prog_ac_ct_CC
-+if test -n "$ac_ct_CC"; then
-+  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
-+echo "${ECHO_T}$ac_ct_CC" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+  test -n "$ac_ct_CC" && break
-+done
-+
-+  if test "x$ac_ct_CC" = x; then
-+    CC=""
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&5
-+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    CC=$ac_ct_CC
-+  fi
-+fi
-+
-+fi
-+
-+
-+test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: no acceptable C compiler found in \$PATH
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+
-+# Provide some information about the compiler.
-+echo "$as_me:$LINENO: checking for C compiler version" >&5
-+ac_compiler=`set X $ac_compile; echo $2`
-+{ (ac_try="$ac_compiler --version >&5"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compiler --version >&5") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }
-+{ (ac_try="$ac_compiler -v >&5"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compiler -v >&5") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }
-+{ (ac_try="$ac_compiler -V >&5"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compiler -V >&5") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }
-+
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+ac_clean_files_save=$ac_clean_files
-+ac_clean_files="$ac_clean_files a.out a.exe b.out"
-+# Try to create an executable without -o first, disregard a.out.
-+# It will help us diagnose broken compilers, and finding out an intuition
-+# of exeext.
-+{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
-+echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; }
-+ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
-+#
-+# List of possible output files, starting from the most likely.
-+# The algorithm is not robust to junk in `.', hence go to wildcards (a.*)
-+# only as a last resort.  b.out is created by i960 compilers.
-+ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out'
-+#
-+# The IRIX 6 linker writes into existing files which may not be
-+# executable, retaining their permissions.  Remove them first so a
-+# subsequent execution test works.
-+ac_rmfiles=
-+for ac_file in $ac_files
-+do
-+  case $ac_file in
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
-+    * ) ac_rmfiles="$ac_rmfiles $ac_file";;
-+  esac
-+done
-+rm -f $ac_rmfiles
-+
-+if { (ac_try="$ac_link_default"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link_default") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; then
-+  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
-+# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
-+# in a Makefile.  We should not override ac_cv_exeext if it was cached,
-+# so that the user can short-circuit this test for compilers unknown to
-+# Autoconf.
-+for ac_file in $ac_files ''
-+do
-+  test -f "$ac_file" || continue
-+  case $ac_file in
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj )
-+	;;
-+    [ab].out )
-+	# We found the default executable, but exeext='' is most
-+	# certainly right.
-+	break;;
-+    *.* )
-+        if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
-+	then :; else
-+	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
-+	fi
-+	# We set ac_cv_exeext here because the later test for it is not
-+	# safe: cross compilers may not add the suffix if given an `-o'
-+	# argument, so we may need to know it at that point already.
-+	# Even if this section looks crufty: it has the advantage of
-+	# actually working.
-+	break;;
-+    * )
-+	break;;
-+  esac
-+done
-+test "$ac_cv_exeext" = no && ac_cv_exeext=
-+
-+else
-+  ac_file=''
-+fi
-+
-+{ echo "$as_me:$LINENO: result: $ac_file" >&5
-+echo "${ECHO_T}$ac_file" >&6; }
-+if test -z "$ac_file"; then
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: C compiler cannot create executables
-+See \`config.log' for more details." >&2;}
-+   { (exit 77); exit 77; }; }
-+fi
-+
-+ac_exeext=$ac_cv_exeext
-+
-+# Check that the compiler produces executables we can run.  If not, either
-+# the compiler is broken, or we cross compile.
-+{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5
-+echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; }
-+# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
-+# If not cross compiling, check that we can run a simple program.
-+if test "$cross_compiling" != yes; then
-+  if { ac_try='./$ac_file'
-+  { (case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_try") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+    cross_compiling=no
-+  else
-+    if test "$cross_compiling" = maybe; then
-+	cross_compiling=yes
-+    else
-+	{ { echo "$as_me:$LINENO: error: cannot run C compiled programs.
-+If you meant to cross compile, use \`--host'.
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: cannot run C compiled programs.
-+If you meant to cross compile, use \`--host'.
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+    fi
-+  fi
-+fi
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+rm -f a.out a.exe conftest$ac_cv_exeext b.out
-+ac_clean_files=$ac_clean_files_save
-+# Check that the compiler produces executables we can run.  If not, either
-+# the compiler is broken, or we cross compile.
-+{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
-+echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
-+{ echo "$as_me:$LINENO: result: $cross_compiling" >&5
-+echo "${ECHO_T}$cross_compiling" >&6; }
-+
-+{ echo "$as_me:$LINENO: checking for suffix of executables" >&5
-+echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; then
-+  # If both `conftest.exe' and `conftest' are `present' (well, observable)
-+# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
-+# work properly (i.e., refer to `conftest.exe'), while it won't with
-+# `rm'.
-+for ac_file in conftest.exe conftest conftest.*; do
-+  test -f "$ac_file" || continue
-+  case $ac_file in
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
-+    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
-+	  break;;
-+    * ) break;;
-+  esac
-+done
-+else
-+  { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+rm -f conftest$ac_cv_exeext
-+{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
-+echo "${ECHO_T}$ac_cv_exeext" >&6; }
-+
-+rm -f conftest.$ac_ext
-+EXEEXT=$ac_cv_exeext
-+ac_exeext=$EXEEXT
-+{ echo "$as_me:$LINENO: checking for suffix of object files" >&5
-+echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; }
-+if test "${ac_cv_objext+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.o conftest.obj
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; then
-+  for ac_file in conftest.o conftest.obj conftest.*; do
-+  test -f "$ac_file" || continue;
-+  case $ac_file in
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;
-+    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
-+       break;;
-+  esac
-+done
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: cannot compute suffix of object files: cannot compile
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+rm -f conftest.$ac_cv_objext conftest.$ac_ext
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
-+echo "${ECHO_T}$ac_cv_objext" >&6; }
-+OBJEXT=$ac_cv_objext
-+ac_objext=$OBJEXT
-+{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
-+echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; }
-+if test "${ac_cv_c_compiler_gnu+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+#ifndef __GNUC__
-+       choke me
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_compiler_gnu=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_compiler_gnu=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+ac_cv_c_compiler_gnu=$ac_compiler_gnu
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
-+echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; }
-+GCC=`test $ac_compiler_gnu = yes && echo yes`
-+ac_test_CFLAGS=${CFLAGS+set}
-+ac_save_CFLAGS=$CFLAGS
-+{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
-+echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_cc_g+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_save_c_werror_flag=$ac_c_werror_flag
-+   ac_c_werror_flag=yes
-+   ac_cv_prog_cc_g=no
-+   CFLAGS="-g"
-+   cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_prog_cc_g=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	CFLAGS=""
-+      cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  :
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_c_werror_flag=$ac_save_c_werror_flag
-+	 CFLAGS="-g"
-+	 cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_prog_cc_g=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+   ac_c_werror_flag=$ac_save_c_werror_flag
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
-+echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }
-+if test "$ac_test_CFLAGS" = set; then
-+  CFLAGS=$ac_save_CFLAGS
-+elif test $ac_cv_prog_cc_g = yes; then
-+  if test "$GCC" = yes; then
-+    CFLAGS="-g -O2"
-+  else
-+    CFLAGS="-g"
-+  fi
-+else
-+  if test "$GCC" = yes; then
-+    CFLAGS="-O2"
-+  else
-+    CFLAGS=
-+  fi
-+fi
-+{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5
-+echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_cc_c89+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_cv_prog_cc_c89=no
-+ac_save_CC=$CC
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <stdarg.h>
-+#include <stdio.h>
-+#include <sys/types.h>
-+#include <sys/stat.h>
-+/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
-+struct buf { int x; };
-+FILE * (*rcsopen) (struct buf *, struct stat *, int);
-+static char *e (p, i)
-+     char **p;
-+     int i;
-+{
-+  return p[i];
-+}
-+static char *f (char * (*g) (char **, int), char **p, ...)
-+{
-+  char *s;
-+  va_list v;
-+  va_start (v,p);
-+  s = g (p, va_arg (v,int));
-+  va_end (v);
-+  return s;
-+}
-+
-+/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
-+   function prototypes and stuff, but not '\xHH' hex character constants.
-+   These don't provoke an error unfortunately, instead are silently treated
-+   as 'x'.  The following induces an error, until -std is added to get
-+   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
-+   array size at least.  It's necessary to write '\x00'==0 to get something
-+   that's true only with -std.  */
-+int osf4_cc_array ['\x00' == 0 ? 1 : -1];
-+
-+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
-+   inside strings and character constants.  */
-+#define FOO(x) 'x'
-+int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
-+
-+int test (int i, double x);
-+struct s1 {int (*f) (int a);};
-+struct s2 {int (*f) (double a);};
-+int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
-+int argc;
-+char **argv;
-+int
-+main ()
-+{
-+return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
-+	-Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
-+do
-+  CC="$ac_save_CC $ac_arg"
-+  rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_prog_cc_c89=$ac_arg
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext 
-+  test "x$ac_cv_prog_cc_c89" != "xno" && break
-+done
-+rm -f conftest.$ac_ext
-+CC=$ac_save_CC
-+
-+fi
-+# AC_CACHE_VAL
-+case "x$ac_cv_prog_cc_c89" in
-+  x)
-+    { echo "$as_me:$LINENO: result: none needed" >&5
-+echo "${ECHO_T}none needed" >&6; } ;;
-+  xno)
-+    { echo "$as_me:$LINENO: result: unsupported" >&5
-+echo "${ECHO_T}unsupported" >&6; } ;;
-+  *)
-+    CC="$CC $ac_cv_prog_cc_c89"
-+    { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5
-+echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;;
-+esac
-+
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+DEPDIR="${am__leading_dot}deps"
-+
-+ac_config_commands="$ac_config_commands depfiles"
-+
-+
-+am_make=${MAKE-make}
-+cat > confinc << 'END'
-+am__doit:
-+	@echo done
-+.PHONY: am__doit
-+END
-+# If we don't find an include directive, just comment out the code.
-+{ echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
-+echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; }
-+am__include="#"
-+am__quote=
-+_am_result=none
-+# First try GNU make style include.
-+echo "include confinc" > confmf
-+# We grep out `Entering directory' and `Leaving directory'
-+# messages which can occur if `w' ends up in MAKEFLAGS.
-+# In particular we don't look at `^make:' because GNU make might
-+# be invoked under some other name (usually "gmake"), in which
-+# case it prints its new name instead of `make'.
-+if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
-+   am__include=include
-+   am__quote=
-+   _am_result=GNU
-+fi
-+# Now try BSD make style include.
-+if test "$am__include" = "#"; then
-+   echo '.include "confinc"' > confmf
-+   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
-+      am__include=.include
-+      am__quote="\""
-+      _am_result=BSD
-+   fi
-+fi
-+
-+
-+{ echo "$as_me:$LINENO: result: $_am_result" >&5
-+echo "${ECHO_T}$_am_result" >&6; }
-+rm -f confinc confmf
-+
-+# Check whether --enable-dependency-tracking was given.
-+if test "${enable_dependency_tracking+set}" = set; then
-+  enableval=$enable_dependency_tracking; 
-+fi
-+
-+if test "x$enable_dependency_tracking" != xno; then
-+  am_depcomp="$ac_aux_dir/depcomp"
-+  AMDEPBACKSLASH='\'
-+fi
-+
-+
-+if test "x$enable_dependency_tracking" != xno; then
-+  AMDEP_TRUE=
-+  AMDEP_FALSE='#'
-+else
-+  AMDEP_TRUE='#'
-+  AMDEP_FALSE=
-+fi
-+
-+
-+
-+
-+depcc="$CC"   am_compiler_list=
-+
-+{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
-+echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; }
-+if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
-+  # We make a subdir and do the tests there.  Otherwise we can end up
-+  # making bogus files that we don't know about and never remove.  For
-+  # instance it was reported that on HP-UX the gcc test will end up
-+  # making a dummy file named `D' -- because `-MD' means `put the output
-+  # in D'.
-+  mkdir conftest.dir
-+  # Copy depcomp to subdir because otherwise we won't find it if we're
-+  # using a relative directory.
-+  cp "$am_depcomp" conftest.dir
-+  cd conftest.dir
-+  # We will build objects and dependencies in a subdirectory because
-+  # it helps to detect inapplicable dependency modes.  For instance
-+  # both Tru64's cc and ICC support -MD to output dependencies as a
-+  # side effect of compilation, but ICC will put the dependencies in
-+  # the current directory while Tru64 will put them in the object
-+  # directory.
-+  mkdir sub
-+
-+  am_cv_CC_dependencies_compiler_type=none
-+  if test "$am_compiler_list" = ""; then
-+     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
-+  fi
-+  for depmode in $am_compiler_list; do
-+    # Setup a source with many dependencies, because some compilers
-+    # like to wrap large dependency lists on column 80 (with \), and
-+    # we should not choose a depcomp mode which is confused by this.
-+    #
-+    # We need to recreate these files for each test, as the compiler may
-+    # overwrite some of them when testing with obscure command lines.
-+    # This happens at least with the AIX C compiler.
-+    : > sub/conftest.c
-+    for i in 1 2 3 4 5 6; do
-+      echo '#include "conftst'$i'.h"' >> sub/conftest.c
-+      : > sub/conftst$i.h
-+    done
-+    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
-+
-+    case $depmode in
-+    nosideeffect)
-+      # after this tag, mechanisms are not by side-effect, so they'll
-+      # only be used when explicitly requested
-+      if test "x$enable_dependency_tracking" = xyes; then
-+	continue
-+      else
-+	break
-+      fi
-+      ;;
-+    none) break ;;
-+    esac
-+    # We check with `-c' and `-o' for the sake of the "dashmstdout"
-+    # mode.  It turns out that the SunPro C++ compiler does not properly
-+    # handle `-M -o', and we need to detect this.
-+    if depmode=$depmode \
-+       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
-+       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
-+       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
-+         >/dev/null 2>conftest.err &&
-+       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
-+       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
-+       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
-+      # icc doesn't choke on unknown options, it will just issue warnings
-+      # (even with -Werror).  So we grep stderr for any message
-+      # that says an option was ignored.
-+      if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
-+        am_cv_CC_dependencies_compiler_type=$depmode
-+        break
-+      fi
-+    fi
-+  done
-+
-+  cd ..
-+  rm -rf conftest.dir
-+else
-+  am_cv_CC_dependencies_compiler_type=none
-+fi
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
-+echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
-+CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
-+
-+
-+
-+if 
-+  test "x$enable_dependency_tracking" != xno \
-+  && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
-+  am__fastdepCC_TRUE=
-+  am__fastdepCC_FALSE='#'
-+else
-+  am__fastdepCC_TRUE='#'
-+  am__fastdepCC_FALSE=
-+fi
-+
-+
-+if test "x$CC" != xcc; then
-+  { echo "$as_me:$LINENO: checking whether $CC and cc understand -c and -o together" >&5
-+echo $ECHO_N "checking whether $CC and cc understand -c and -o together... $ECHO_C" >&6; }
-+else
-+  { echo "$as_me:$LINENO: checking whether cc understands -c and -o together" >&5
-+echo $ECHO_N "checking whether cc understands -c and -o together... $ECHO_C" >&6; }
-+fi
-+set dummy $CC; ac_cc=`echo $2 |
-+		      sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
-+if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+# Make sure it works both with $CC and with simple cc.
-+# We do the test twice because some compilers refuse to overwrite an
-+# existing .o file with -o, though they will create one.
-+ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
-+rm -f conftest2.*
-+if { (case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_try") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } &&
-+   test -f conftest2.$ac_objext && { (case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_try") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); };
-+then
-+  eval ac_cv_prog_cc_${ac_cc}_c_o=yes
-+  if test "x$CC" != xcc; then
-+    # Test first that cc exists at all.
-+    if { ac_try='cc -c conftest.$ac_ext >&5'
-+  { (case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_try") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+      ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
-+      rm -f conftest2.*
-+      if { (case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_try") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } &&
-+	 test -f conftest2.$ac_objext && { (case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_try") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); };
-+      then
-+	# cc works too.
-+	:
-+      else
-+	# cc exists but doesn't like -o.
-+	eval ac_cv_prog_cc_${ac_cc}_c_o=no
-+      fi
-+    fi
-+  fi
-+else
-+  eval ac_cv_prog_cc_${ac_cc}_c_o=no
-+fi
-+rm -f core conftest*
-+
-+fi
-+if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then
-+  { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define NO_MINUS_C_MINUS_O 1
-+_ACEOF
-+
-+fi
-+
-+# FIXME: we rely on the cache variable name because
-+# there is no other way.
-+set dummy $CC
-+ac_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
-+if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" != yes"; then
-+   # Losing compiler, so override with the script.
-+   # FIXME: It is wrong to rewrite CC.
-+   # But if we don't then we get into trouble of one sort or another.
-+   # A longer-term fix would be to have automake use am__CC in this case,
-+   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
-+   CC="$am_aux_dir/compile $CC"
-+fi
-+
-+
-+if test -n "$ac_tool_prefix"; then
-+  # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
-+set dummy ${ac_tool_prefix}ranlib; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_RANLIB+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$RANLIB"; then
-+  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+RANLIB=$ac_cv_prog_RANLIB
-+if test -n "$RANLIB"; then
-+  { echo "$as_me:$LINENO: result: $RANLIB" >&5
-+echo "${ECHO_T}$RANLIB" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+
-+fi
-+if test -z "$ac_cv_prog_RANLIB"; then
-+  ac_ct_RANLIB=$RANLIB
-+  # Extract the first word of "ranlib", so it can be a program name with args.
-+set dummy ranlib; ac_word=$2
-+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
-+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
-+if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if test -n "$ac_ct_RANLIB"; then
-+  ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_ac_ct_RANLIB="ranlib"
-+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
-+if test -n "$ac_ct_RANLIB"; then
-+  { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
-+echo "${ECHO_T}$ac_ct_RANLIB" >&6; }
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+fi
-+
-+  if test "x$ac_ct_RANLIB" = x; then
-+    RANLIB=":"
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&5
-+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
-+whose name does not start with the host triplet.  If you think this
-+configuration is useful to you, please write to autoconf at gnu.org." >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    RANLIB=$ac_ct_RANLIB
-+  fi
-+else
-+  RANLIB="$ac_cv_prog_RANLIB"
-+fi
-+
-+{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
-+echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
-+set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
-+if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.make <<\_ACEOF
-+SHELL = /bin/sh
-+all:
-+	@echo '@@@%%%=$(MAKE)=@@@%%%'
-+_ACEOF
-+# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
-+case `${MAKE-make} -f conftest.make 2>/dev/null` in
-+  *@@@%%%=?*=@@@%%%*)
-+    eval ac_cv_prog_make_${ac_make}_set=yes;;
-+  *)
-+    eval ac_cv_prog_make_${ac_make}_set=no;;
-+esac
-+rm -f conftest.make
-+fi
-+if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
-+  { echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+  SET_MAKE=
-+else
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+  SET_MAKE="MAKE=${MAKE-make}"
-+fi
-+
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
-+echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; }
-+# On Suns, sometimes $CPP names a directory.
-+if test -n "$CPP" && test -d "$CPP"; then
-+  CPP=
-+fi
-+if test -z "$CPP"; then
-+  if test "${ac_cv_prog_CPP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+      # Double quotes because CPP needs to be expanded
-+    for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
-+    do
-+      ac_preproc_ok=false
-+for ac_c_preproc_warn_flag in '' yes
-+do
-+  # Use a header file that comes with gcc, so configuring glibc
-+  # with a fresh cross-compiler works.
-+  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-+  # <limits.h> exists even on freestanding compilers.
-+  # On the NeXT, cc -E runs the code through the compiler's parser,
-+  # not just through cpp. "Syntax error" is here to catch this case.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@ifdef __STDC__
-+@%:@ include <limits.h>
-+@%:@else
-+@%:@ include <assert.h>
-+@%:@endif
-+		     Syntax error
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  :
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  # Broken: fails on valid input.
-+continue
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+
-+  # OK, works on sane cases.  Now check whether nonexistent headers
-+  # can be detected and how.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <ac_nonexistent.h>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  # Broken: success on invalid input.
-+continue
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  # Passes both tests.
-+ac_preproc_ok=:
-+break
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+
-+done
-+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-+rm -f conftest.err conftest.$ac_ext
-+if $ac_preproc_ok; then
-+  break
-+fi
-+
-+    done
-+    ac_cv_prog_CPP=$CPP
-+  
-+fi
-+  CPP=$ac_cv_prog_CPP
-+else
-+  ac_cv_prog_CPP=$CPP
-+fi
-+{ echo "$as_me:$LINENO: result: $CPP" >&5
-+echo "${ECHO_T}$CPP" >&6; }
-+ac_preproc_ok=false
-+for ac_c_preproc_warn_flag in '' yes
-+do
-+  # Use a header file that comes with gcc, so configuring glibc
-+  # with a fresh cross-compiler works.
-+  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-+  # <limits.h> exists even on freestanding compilers.
-+  # On the NeXT, cc -E runs the code through the compiler's parser,
-+  # not just through cpp. "Syntax error" is here to catch this case.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@ifdef __STDC__
-+@%:@ include <limits.h>
-+@%:@else
-+@%:@ include <assert.h>
-+@%:@endif
-+		     Syntax error
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  :
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  # Broken: fails on valid input.
-+continue
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+
-+  # OK, works on sane cases.  Now check whether nonexistent headers
-+  # can be detected and how.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+@%:@include <ac_nonexistent.h>
-+_ACEOF
-+if { (ac_try="$ac_cpp conftest.$ac_ext"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } >/dev/null && {
-+	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       }; then
-+  # Broken: success on invalid input.
-+continue
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+  # Passes both tests.
-+ac_preproc_ok=:
-+break
-+fi
-+
-+rm -f conftest.err conftest.$ac_ext
-+
-+done
-+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
-+rm -f conftest.err conftest.$ac_ext
-+if $ac_preproc_ok; then
-+  :
-+else
-+  { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
-+See \`config.log' for more details." >&5
-+echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
-+See \`config.log' for more details." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+
-+
-+{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5
-+echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; }
-+if test "${ac_cv_path_GREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  # Extract the first word of "grep ggrep" to use in msg output
-+if test -z "$GREP"; then
-+set dummy grep ggrep; ac_prog_name=$2
-+if test "${ac_cv_path_GREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_path_GREP_found=false
-+# Loop through the user's path and test for each of PROGNAME-LIST
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_prog in grep ggrep; do
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+    ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
-+    { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
-+    # Check for GNU ac_path_GREP and select it if it is found.
-+  # Check for GNU $ac_path_GREP
-+case `"$ac_path_GREP" --version 2>&1` in
-+*GNU*)
-+  ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
-+*)
-+  ac_count=0
-+  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
-+  while :
-+  do
-+    cat "conftest.in" "conftest.in" >"conftest.tmp"
-+    mv "conftest.tmp" "conftest.in"
-+    cp "conftest.in" "conftest.nl"
-+    echo 'GREP' >> "conftest.nl"
-+    "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
-+    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
-+    ac_count=`expr $ac_count + 1`
-+    if test $ac_count -gt ${ac_path_GREP_max-0}; then
-+      # Best one so far, save it but keep looking for a better one
-+      ac_cv_path_GREP="$ac_path_GREP"
-+      ac_path_GREP_max=$ac_count
-+    fi
-+    # 10*(2^10) chars as input seems more than enough
-+    test $ac_count -gt 10 && break
-+  done
-+  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
-+esac
-+
-+
-+    $ac_path_GREP_found && break 3
-+  done
-+done
-+
-+done
-+IFS=$as_save_IFS
-+
-+
-+fi
-+
-+GREP="$ac_cv_path_GREP"
-+if test -z "$GREP"; then
-+  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
-+echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+else
-+  ac_cv_path_GREP=$GREP
-+fi
-+
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5
-+echo "${ECHO_T}$ac_cv_path_GREP" >&6; }
-+ GREP="$ac_cv_path_GREP"
-+ 
-+
-+{ echo "$as_me:$LINENO: checking for egrep" >&5
-+echo $ECHO_N "checking for egrep... $ECHO_C" >&6; }
-+if test "${ac_cv_path_EGREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
-+   then ac_cv_path_EGREP="$GREP -E"
-+   else
-+     # Extract the first word of "egrep" to use in msg output
-+if test -z "$EGREP"; then
-+set dummy egrep; ac_prog_name=$2
-+if test "${ac_cv_path_EGREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_path_EGREP_found=false
-+# Loop through the user's path and test for each of PROGNAME-LIST
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  for ac_prog in egrep; do
-+  for ac_exec_ext in '' $ac_executable_extensions; do
-+    ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
-+    { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
-+    # Check for GNU ac_path_EGREP and select it if it is found.
-+  # Check for GNU $ac_path_EGREP
-+case `"$ac_path_EGREP" --version 2>&1` in
-+*GNU*)
-+  ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
-+*)
-+  ac_count=0
-+  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
-+  while :
-+  do
-+    cat "conftest.in" "conftest.in" >"conftest.tmp"
-+    mv "conftest.tmp" "conftest.in"
-+    cp "conftest.in" "conftest.nl"
-+    echo 'EGREP' >> "conftest.nl"
-+    "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
-+    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
-+    ac_count=`expr $ac_count + 1`
-+    if test $ac_count -gt ${ac_path_EGREP_max-0}; then
-+      # Best one so far, save it but keep looking for a better one
-+      ac_cv_path_EGREP="$ac_path_EGREP"
-+      ac_path_EGREP_max=$ac_count
-+    fi
-+    # 10*(2^10) chars as input seems more than enough
-+    test $ac_count -gt 10 && break
-+  done
-+  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
-+esac
-+
-+
-+    $ac_path_EGREP_found && break 3
-+  done
-+done
-+
-+done
-+IFS=$as_save_IFS
-+
-+
-+fi
-+
-+EGREP="$ac_cv_path_EGREP"
-+if test -z "$EGREP"; then
-+  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
-+echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+else
-+  ac_cv_path_EGREP=$EGREP
-+fi
-+
-+
-+   fi
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5
-+echo "${ECHO_T}$ac_cv_path_EGREP" >&6; }
-+ EGREP="$ac_cv_path_EGREP"
-+ 
-+
-+{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5
-+echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
-+if test "${ac_cv_header_stdc+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <stdlib.h>
-+#include <stdarg.h>
-+#include <string.h>
-+#include <float.h>
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_header_stdc=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_cv_header_stdc=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+
-+if test $ac_cv_header_stdc = yes; then
-+  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <string.h>
-+
-+_ACEOF
-+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
-+  $EGREP "memchr" >/dev/null 2>&1; then
-+  :
-+else
-+  ac_cv_header_stdc=no
-+fi
-+rm -f conftest*
-+
-+fi
-+
-+if test $ac_cv_header_stdc = yes; then
-+  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <stdlib.h>
-+
-+_ACEOF
-+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
-+  $EGREP "free" >/dev/null 2>&1; then
-+  :
-+else
-+  ac_cv_header_stdc=no
-+fi
-+rm -f conftest*
-+
-+fi
-+
-+if test $ac_cv_header_stdc = yes; then
-+  # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
-+  if test "$cross_compiling" = yes; then
-+  :
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <ctype.h>
-+#include <stdlib.h>
-+#if ((' ' & 0x0FF) == 0x020)
-+# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
-+# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
-+#else
-+# define ISLOWER(c) \
-+		   (('a' <= (c) && (c) <= 'i') \
-+		     || ('j' <= (c) && (c) <= 'r') \
-+		     || ('s' <= (c) && (c) <= 'z'))
-+# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
-+#endif
-+
-+#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
-+int
-+main ()
-+{
-+  int i;
-+  for (i = 0; i < 256; i++)
-+    if (XOR (islower (i), ISLOWER (i))
-+	|| toupper (i) != TOUPPER (i))
-+      return 2;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest$ac_exeext
-+if { (ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_link") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-+  { (case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_try") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  :
-+else
-+  echo "$as_me: program exited with status $ac_status" >&5
-+echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+( exit $ac_status )
-+ac_cv_header_stdc=no
-+fi
-+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
-+fi
-+
-+
-+fi
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
-+echo "${ECHO_T}$ac_cv_header_stdc" >&6; }
-+if test $ac_cv_header_stdc = yes; then
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define STDC_HEADERS 1
-+_ACEOF
-+
-+fi
-+
-+{ echo "$as_me:$LINENO: checking whether stat file-mode macros are broken" >&5
-+echo $ECHO_N "checking whether stat file-mode macros are broken... $ECHO_C" >&6; }
-+if test "${ac_cv_header_stat_broken+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <sys/types.h>
-+#include <sys/stat.h>
-+
-+#if defined S_ISBLK && defined S_IFDIR
-+extern char c1[S_ISBLK (S_IFDIR) ? -1 : 1];
-+#endif
-+
-+#if defined S_ISBLK && defined S_IFCHR
-+extern char c2[S_ISBLK (S_IFCHR) ? -1 : 1];
-+#endif
-+
-+#if defined S_ISLNK && defined S_IFREG
-+extern char c3[S_ISLNK (S_IFREG) ? -1 : 1];
-+#endif
-+
-+#if defined S_ISSOCK && defined S_IFREG
-+extern char c4[S_ISSOCK (S_IFREG) ? -1 : 1];
-+#endif
-+
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_header_stat_broken=no
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_cv_header_stat_broken=yes
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_header_stat_broken" >&5
-+echo "${ECHO_T}$ac_cv_header_stat_broken" >&6; }
-+if test $ac_cv_header_stat_broken = yes; then
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define STAT_MACROS_BROKEN 1
-+_ACEOF
-+
-+fi
-+
-+{ echo "$as_me:$LINENO: checking whether time.h and sys/time.h may both be included" >&5
-+echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6; }
-+if test "${ac_cv_header_time+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+#include <sys/types.h>
-+#include <sys/time.h>
-+#include <time.h>
-+
-+int
-+main ()
-+{
-+if ((struct tm *) 0)
-+return 0;
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  ac_cv_header_time=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	ac_cv_header_time=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+{ echo "$as_me:$LINENO: result: $ac_cv_header_time" >&5
-+echo "${ECHO_T}$ac_cv_header_time" >&6; }
-+if test $ac_cv_header_time = yes; then
-+  
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define TIME_WITH_SYS_TIME 1
-+_ACEOF
-+
-+fi
-+
-+
-+if test ${target_cpu} == "powerpc64"; then
-+	{ echo "$as_me:$LINENO: WARNING: set compiler with -m64" >&5
-+echo "$as_me: WARNING: set compiler with -m64" >&2;}
-+	CC="$CC -m64"
-+fi
-+
-+have_lib_dir=yes;
-+
-+# Check whether --with-lib-dir was given.
-+if test "${with_lib_dir+set}" = set; then
-+  withval=$with_lib_dir;      case "${withval}" in
-+         "yes"|"no"|"") have_lib_dir=no ;;
-+         *) LIBBUILD_DIR=${withval};
-+            test -d ${LIBBUILD_DIR} || mkdir ${LIBBUILD_DIR} ||
-+                have_lib_dir=no;;
-+        esac;
-+else
-+   LIBBUILD_DIR=`pwd`/lib;
-+    test -d ${LIBBUILD_DIR} || mkdir ${LIBBUILD_DIR} || have_lib_dir=no;
-+fi
-+
-+if test x${have_lib_dir} = xyes; then
-+  echo "Using sysio library directory ${LIBBUILD_DIR}"
-+else
-+  { { echo "$as_me:$LINENO: error: Need writeable path to sysio library directory ${LIBBUILD_DIR}" >&5
-+echo "$as_me: error: Need writeable path to sysio library directory ${LIBBUILD_DIR}" >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+
-+
-+# Check whether --with-native_driver was given.
-+if test "${with_native_driver+set}" = set; then
-+  withval=$with_native_driver; 	case "${withval}" in
-+	 yes) ;;
-+	 no) ;;
-+	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-native-driver" >&5
-+echo "$as_me: error: bad value ${withval} for --with-native-driver" >&2;}
-+   { (exit 1); exit 1; }; } ;;
-+	esac;
-+else
-+  with_native_driver=yes;
-+fi
-+
-+
-+
-+if test x$with_native_driver = xyes; then
-+  WITH_NATIVE_DRIVER_TRUE=
-+  WITH_NATIVE_DRIVER_FALSE='#'
-+else
-+  WITH_NATIVE_DRIVER_TRUE='#'
-+  WITH_NATIVE_DRIVER_FALSE=
-+fi
-+
-+
-+
-+# Check whether --with-incore-driver was given.
-+if test "${with_incore_driver+set}" = set; then
-+  withval=$with_incore_driver;  	case "${withval}" in
-+	 yes) ;;
-+	 no) ;;
-+	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-incore-driver" >&5
-+echo "$as_me: error: bad value ${withval} for --with-incore-driver" >&2;}
-+   { (exit 1); exit 1; }; } ;;
-+	esac
-+else
-+  with_incore_driver=yes
-+fi
-+
-+
-+
-+if test x$with_incore_driver = xyes; then
-+  WITH_INCORE_DRIVER_TRUE=
-+  WITH_INCORE_DRIVER_FALSE='#'
-+else
-+  WITH_INCORE_DRIVER_TRUE='#'
-+  WITH_INCORE_DRIVER_FALSE=
-+fi
-+
-+
-+
-+# Check whether --with-tests was given.
-+if test "${with_tests+set}" = set; then
-+  withval=$with_tests; 	case "${withval}" in
-+	 yes) ;;
-+	 no) ;;
-+	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-tests" >&5
-+echo "$as_me: error: bad value ${withval} for --with-tests" >&2;}
-+   { (exit 1); exit 1; }; } ;;
-+	esac
-+else
-+  with_tests=yes
-+fi
-+
-+
-+
-+if test x$with_tests = xyes; then
-+  WITH_TESTS_TRUE=
-+  WITH_TESTS_FALSE='#'
-+else
-+  WITH_TESTS_TRUE='#'
-+  WITH_TESTS_FALSE=
-+fi
-+
-+
-+
-+# Check whether --with-automount was given.
-+if test "${with_automount+set}" = set; then
-+  withval=$with_automount; 	if test x${withval} = xyes; then
-+	 AUTOMOUNT=-DAUTOMOUNT_FILE_NAME="\\\".mount\\\"" 
-+	elif test x${withval} != x; then
-+	 AUTOMOUNT=-DAUTOMOUNT_FILE_NAME="\\\"${withval}\\\""
-+	fi
-+fi
-+
-+
-+
-+
-+# Check whether --with-stdfd-dev was given.
-+if test "${with_stdfd_dev+set}" = set; then
-+  withval=$with_stdfd_dev; 	case "${withval}" in
-+	 yes) ;;
-+	 no) ;;
-+	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-stdfd-dev" >&5
-+echo "$as_me: error: bad value ${withval} for --with-stdfd-dev" >&2;}
-+   { (exit 1); exit 1; }; } ;;
-+	esac
-+else
-+  with_stdfd_dev=yes
-+fi
-+
-+
-+
-+if test x$with_stdfd_dev = xyes; then
-+  WITH_STDFD_DEV_TRUE=
-+  WITH_STDFD_DEV_FALSE='#'
-+else
-+  WITH_STDFD_DEV_TRUE='#'
-+  WITH_STDFD_DEV_FALSE=
-+fi
-+
-+
-+
-+# Check whether --with-zero-sum-memory was given.
-+if test "${with_zero_sum_memory+set}" = set; then
-+  withval=$with_zero_sum_memory; 	case "${withval}" in
-+	 yes) ZERO_SUM_MEMORY=-DZERO_SUM_MEMORY=1 ;;
-+	 no) ;;
-+	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-zero-sum-memory" >&5
-+echo "$as_me: error: bad value ${withval} for --with-zero-sum-memory" >&2;}
-+   { (exit 1); exit 1; }; } ;;
-+	esac
-+else
-+  with_zero_sum_memory=no
-+fi
-+
-+
-+
-+
-+# Check whether --with-defer-init-cwd was given.
-+if test "${with_defer_init_cwd+set}" = set; then
-+  withval=$with_defer_init_cwd; 	case "${withval}" in
-+	 yes) DEFER_INIT_CWD=-DDEFER_INIT_CWD=1 ;;
-+	 no) ;;
-+	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-defer-init-cwd" >&5
-+echo "$as_me: error: bad value ${withval} for --with-defer-init-cwd" >&2;}
-+   { (exit 1); exit 1; }; } ;;
-+	esac
-+else
-+  with_defer_init_cwd=no
-+fi
-+
-+
-+
-+
-+# Check whether --with-tracing was given.
-+if test "${with_tracing+set}" = set; then
-+  withval=$with_tracing; 	case "${withval}" in
-+	 yes) TRACING=-DSYSIO_TRACING=1 ;;
-+	 no) ;;
-+	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-tracing" >&5
-+echo "$as_me: error: bad value ${withval} for --with-tracing" >&2;}
-+   { (exit 1); exit 1; }; } ;;
-+	esac
-+else
-+  TRACING=-DSYSIO_TRACING=1
-+fi
-+
-+
-+
-+
-+# Check whether --with-cplant_yod was given.
-+if test "${with_cplant_yod+set}" = set; then
-+  withval=$with_cplant_yod; 	case "${withval}" in	
-+	yes) if test x${with_stdfd_dev} != xyes; then
-+		with_stdfd_dev=yes
-+		
-+
-+if test x$with_stdfd_dev = xyes; then
-+  WITH_STDFD_DEV_TRUE=
-+  WITH_STDFD_DEV_FALSE='#'
-+else
-+  WITH_STDFD_DEV_TRUE='#'
-+  WITH_STDFD_DEV_FALSE=
-+fi
-+
-+	     fi ;;
-+	no) ;;
-+	*) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-cplant-yod" >&5
-+echo "$as_me: error: bad value ${withval} for --with-cplant-yod" >&2;}
-+   { (exit 1); exit 1; }; };;
-+	esac
-+else
-+  with_cplant_yod=no
-+fi
-+
-+
-+
-+if test x$with_cplant_yod = xyes; then
-+  WITH_CPLANT_YOD_TRUE=
-+  WITH_CPLANT_YOD_FALSE='#'
-+else
-+  WITH_CPLANT_YOD_TRUE='#'
-+  WITH_CPLANT_YOD_FALSE=
-+fi
-+
-+
-+
-+# Check whether --with-cplant_tests was given.
-+if test "${with_cplant_tests+set}" = set; then
-+  withval=$with_cplant_tests; 	case "${withval}" in
-+	yes) { { echo "$as_me:$LINENO: error: need path to compiler for --with-cplant-tests" >&5
-+echo "$as_me: error: need path to compiler for --with-cplant-tests" >&2;}
-+   { (exit 1); exit 1; }; };;
-+	no)  with_cplant_tests=no;;
-+	*) CC=${withval}
-+	   CCDEPMODE=${CC} 
-+	   CPP="${CC} -E"
-+	   as_ac_File=`echo "ac_cv_file_${CC}" | $as_tr_sh`
-+{ echo "$as_me:$LINENO: checking for ${CC}" >&5
-+echo $ECHO_N "checking for ${CC}... $ECHO_C" >&6; }
-+if { as_var=$as_ac_File; eval "test \"\${$as_var+set}\" = set"; }; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  test "$cross_compiling" = yes &&
-+  { { echo "$as_me:$LINENO: error: cannot check for file existence when cross compiling" >&5
-+echo "$as_me: error: cannot check for file existence when cross compiling" >&2;}
-+   { (exit 1); exit 1; }; }
-+if test -r "${CC}"; then
-+  eval "$as_ac_File=yes"
-+else
-+  eval "$as_ac_File=no"
-+fi
-+fi
-+ac_res=`eval echo '${'$as_ac_File'}'`
-+	       { echo "$as_me:$LINENO: result: $ac_res" >&5
-+echo "${ECHO_T}$ac_res" >&6; }
-+if test `eval echo '${'$as_ac_File'}'` = yes; then
-+   if test x${with_cplant_yod} != xyes; then
-+                	with_cplant_yod=yes
-+                	
-+
-+if test x$with_cplant_yod = xyes; then
-+  WITH_CPLANT_YOD_TRUE=
-+  WITH_CPLANT_YOD_FALSE='#'
-+else
-+  WITH_CPLANT_YOD_TRUE='#'
-+  WITH_CPLANT_YOD_FALSE=
-+fi
-+
-+             	  fi
-+else
-+   { { echo "$as_me:$LINENO: error: path not found ${CC} for --with-cplant-tests" >&5
-+echo "$as_me: error: path not found ${CC} for --with-cplant-tests" >&2;}
-+   { (exit 1); exit 1; }; } 
-+fi
-+;;
-+	esac
-+else
-+  with_cplant_tests=no
-+fi
-+
-+
-+
-+if test x$with_cplant_tests != xno; then
-+  WITH_CPLANT_TESTS_TRUE=
-+  WITH_CPLANT_TESTS_FALSE='#'
-+else
-+  WITH_CPLANT_TESTS_TRUE='#'
-+  WITH_CPLANT_TESTS_FALSE=
-+fi
-+
-+
-+
-+# Check whether --with-sockets was given.
-+if test "${with_sockets+set}" = set; then
-+  withval=$with_sockets; 	case "${withval}" in
-+	 yes) ;;
-+	 no) ;;
-+	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-sockets" >&5
-+echo "$as_me: error: bad value ${withval} for --with-sockets" >&2;}
-+   { (exit 1); exit 1; }; } ;;
-+	esac
-+else
-+  with_sockets=no
-+fi
-+
-+
-+
-+if test x$with_sockets = xyes; then
-+  WITH_SOCKETS_DRIVER_TRUE=
-+  WITH_SOCKETS_DRIVER_FALSE='#'
-+else
-+  WITH_SOCKETS_DRIVER_TRUE='#'
-+  WITH_SOCKETS_DRIVER_FALSE=
-+fi
-+
-+
-+
-+# Check whether --with-lustre-hack was given.
-+if test "${with_lustre_hack+set}" = set; then
-+  withval=$with_lustre_hack; 	case "${withval}" in
-+	 yes) ;;
-+	 no) ;;
-+	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-lustre-hack" >&5
-+echo "$as_me: error: bad value ${withval} for --with-lustre-hack" >&2;}
-+   { (exit 1); exit 1; }; } ;;
-+	esac
-+else
-+  with_lustre_hack=no
-+fi
-+
-+
-+
-+if test x$with_lustre_hack = xyes; then
-+  WITH_LUSTRE_HACK_TRUE=
-+  WITH_LUSTRE_HACK_FALSE='#'
-+else
-+  WITH_LUSTRE_HACK_TRUE='#'
-+  WITH_LUSTRE_HACK_FALSE=
-+fi
-+
-+if test x$with_lustre_hack = xyes; then
-+	cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_LUSTRE_HACK 1
-+_ACEOF
-+
-+fi
-+
-+
-+# Check whether --with-alternate-symbols was given.
-+if test "${with_alternate_symbols+set}" = set; then
-+  withval=$with_alternate_symbols; 	case "${withval}" in
-+	 yes) SYSIO_LABEL_NAMES=-DSYSIO_LABEL_NAMES=sysio_ ;;
-+	 no) ;;
-+	 *) SYSIO_LABEL_NAMES=-DSYSIO_LABEL_NAMES="${withval}" ;;
-+	esac
-+fi
-+
-+
-+
-+# We keep the original values in `$config_*' and never modify them, so we
-+# can write them unchanged into config.make.  Everything else uses
-+# $machine, $vendor, and $os, and changes them whenever convenient.
-+config_machine=$host_cpu config_vendor=$host_vendor config_os=$host_os
-+
-+# Don't allow vendor == "unknown"
-+test "$config_vendor" = unknown && config_vendor=
-+config_os="`echo $config_os | sed 's/^unknown-//'`"
-+
-+# Some configurations imply other options.
-+case "$host_os" in
-+  gnu* | linux* | bsd4.4* | netbsd* | freebsd*)
-+	# These systems always use GNU tools.
-+	gnu_ld=yes gnu_as=yes ;;
-+esac
-+case "$host_os" in
-+  # i586-linuxaout is mangled into i586-pc-linux-gnuaout
-+  linux*ecoff* | linux*aout* | gnu*aout* | gnu*ecoff*)
-+	;;
-+  gnu* | linux* | freebsd* | netbsd* | sysv4* | solaris2* | irix6*)
-+	# These systems (almost) always use the ELF format.
-+	elf=yes
-+	;;
-+  aix*)
-+	# These systems are always xcoff
-+	xcoff=yes
-+	elf=no
-+	;;
-+esac
-+
-+machine=$config_machine
-+vendor=$config_vendor
-+os=$config_os
-+
-+# config.guess on some IBM machines says `rs6000' instead of `powerpc'.
-+# Unify this here.
-+if test "$machine" = rs6000; then
-+	machine="powerpc"
-+fi
-+
-+case "$host_os" in
-+  gnu* | linux*)
-+	cat >>confdefs.h <<\_ACEOF
-+@%:@define _XOPEN_SOURCE 600
-+_ACEOF
-+
-+	;;
-+  aix*)
-+	# ... and always needed...
-+	cat >>confdefs.h <<\_ACEOF
-+@%:@define __USE_LARGEFILE64 1
-+_ACEOF
-+
-+	cat >>confdefs.h <<\_ACEOF
-+@%:@define _LARGE_FILES 1
-+_ACEOF
-+
-+	cat >>confdefs.h <<\_ACEOF
-+@%:@define _LARGE_FILE_API 1
-+_ACEOF
-+
-+	cat >>confdefs.h <<\_ACEOF
-+@%:@define _ALL_SOURCE 1
-+_ACEOF
-+
-+	cat >>confdefs.h <<\_ACEOF
-+@%:@define _XOPEN_SOURCE_EXTENDED 1
-+_ACEOF
-+
-+	;;
-+esac
-+
-+{ echo "$as_me:$LINENO: checking for symlink support" >&5
-+echo $ECHO_N "checking for symlink support... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <sys/types.h>
-+#include <sys/stat.h>
-+
-+int
-+main ()
-+{
-+
-+#ifndef S_ISLNK
-+#error
-+#endif
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  symlink_support="yes"
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	symlink_support="no"
-+
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $symlink_support" >&5
-+echo "${ECHO_T}$symlink_support" >&6; }
-+
-+if test x$symlink_support = xyes; then
-+	{ echo "$as_me:$LINENO: checking if readlink returns int" >&5
-+echo $ECHO_N "checking if readlink returns int... $ECHO_C" >&6; }
-+	cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <unistd.h>
-+	
-+int
-+main ()
-+{
-+
-+		extern int readlink(const char *, char *, size_t);
-+	
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  readlink_returns_int="yes"
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	readlink_returns_int="no"
-+	
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+	{ echo "$as_me:$LINENO: result: $readlink_returns_int" >&5
-+echo "${ECHO_T}$readlink_returns_int" >&6; }
-+	if test x$readlink_returns_int = no; then
-+		
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_POSIX_1003_READLINK 1
-+_ACEOF
-+
-+	fi
-+fi
-+
-+{ echo "$as_me:$LINENO: checking if readlink returns ssize_t" >&5
-+echo $ECHO_N "checking if readlink returns ssize_t... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+	#include <unistd.h>
-+
-+int
-+main ()
-+{
-+
-+	ssize_t readlink(const char *, char *, size_t);
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+	
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_POSIX_1003_READLINK 1
-+_ACEOF
-+
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+
-+# If we can't provoke the declaration of stat64 then we assume the
-+# environment supports 64-bit file support naturally. Beware!
-+{ echo "$as_me:$LINENO: checking whether _LARGEFILE64_SOURCE definition is required" >&5
-+echo $ECHO_N "checking whether _LARGEFILE64_SOURCE definition is required... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <sys/types.h>
-+#include <sys/stat.h>
-+#include <unistd.h>
-+int
-+main ()
-+{
-+
-+struct stat64 st64;
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  sysio_largefile64_source_required=no
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	sysio_largefile64_source_required=maybe
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+if test x$sysio_largefile64_source_required = xmaybe; then
-+	cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#define _LARGEFILE64_SOURCE
-+#include <sys/types.h>
-+#include <sys/stat.h>
-+#include <unistd.h>
-+int
-+main ()
-+{
-+
-+struct stat64 st64;
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  sysio_largefile64_source_required=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	sysio_largefile64_source_required=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+{ echo "$as_me:$LINENO: result: $sysio_largefile64_source_required" >&5
-+echo "${ECHO_T}$sysio_largefile64_source_required" >&6; }
-+if test x$sysio_largefile64_source_required = xyes; then
-+	cat >>confdefs.h <<\_ACEOF
-+@%:@define _LARGEFILE64_SOURCE 1
-+_ACEOF
-+
-+fi
-+
-+# Alpha linux defines 
-+# 
-+{ echo "$as_me:$LINENO: checking for alpha linux" >&5
-+echo $ECHO_N "checking for alpha linux... $ECHO_C" >&6; }
-+alpha_linux_env=no
-+if test `expr ${machine} : "alpha"` = 5 && \
-+   test `expr ${os} : "linux"` = 5; then
-+	alpha_linux_env=yes
-+	cat >>confdefs.h <<\_ACEOF
-+@%:@define ALPHA_LINUX 1
-+_ACEOF
-+
-+fi
-+{ echo "$as_me:$LINENO: result: $alpha_linux_env" >&5
-+echo "${ECHO_T}$alpha_linux_env" >&6; }
-+
-+
-+if test x$alpha_linux_env = xyes; then
-+  TEST_ALPHA_ARG_TRUE=
-+  TEST_ALPHA_ARG_FALSE='#'
-+else
-+  TEST_ALPHA_ARG_TRUE='#'
-+  TEST_ALPHA_ARG_FALSE=
-+fi
-+
-+
-+# Check for __st_ino 
-+#
-+{ echo "$as_me:$LINENO: checking for __st_ino" >&5
-+echo $ECHO_N "checking for __st_ino... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <sys/stat.h>
-+int
-+main ()
-+{
-+struct stat st;
-+st.__st_ino = 0;
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  have__st_ino=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	have__st_ino=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $have__st_ino" >&5
-+echo "${ECHO_T}$have__st_ino" >&6; }
-+if test x$have__st_ino = xyes; then
-+	cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE__ST_INO 1
-+_ACEOF
-+
-+fi
-+
-+# Check for st_gen 
-+#
-+{ echo "$as_me:$LINENO: checking for st_gen" >&5
-+echo $ECHO_N "checking for st_gen... $ECHO_C" >&6; }
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <sys/stat.h>
-+int
-+main ()
-+{
-+struct stat st;
-+st.st_gen = 0;
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  have_st_gen=yes
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	have_st_gen=no
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+{ echo "$as_me:$LINENO: result: $have_st_gen" >&5
-+echo "${ECHO_T}$have_st_gen" >&6; }
-+if test x$have_st_gen = xyes; then
-+	cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_GENERATION 1
-+_ACEOF
-+
-+fi
-+
-+{ echo "$as_me:$LINENO: checking for POSIX 2008 preadv" >&5
-+echo $ECHO_N "checking for POSIX 2008 preadv... $ECHO_C" >&6; }
-+tmp_flags="$CFLAGS"
-+CFLAGS="$CFLAGS -Wall -Werror"
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#include <sys/uio.h>
-+ssize_t preadv (int __fd, const struct iovec *__iovec,
-+                int __count, off_t off)
-+{
-+    return 0;
-+}
-+
-+int
-+main ()
-+{
-+
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_POSIX2008_PREADV 1
-+_ACEOF
-+
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+CFLAGS="$tmp_flags"
-+
-+{ echo "$as_me:$LINENO: checking for POSIX 2008 scandir" >&5
-+echo $ECHO_N "checking for POSIX 2008 scandir... $ECHO_C" >&6; }
-+tmp_flags="$CFLAGS"
-+CFLAGS="$CFLAGS -Wall -Werror"
-+cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+#define _BSD_SOURCE
-+
-+#include <stdio.h>
-+#include <dirent.h>
-+
-+int scandir(const char *dir,
-+	 struct dirent ***namelist,
-+	 int(*filter)(const struct dirent *),
-+	 int(*compar)(const struct dirent **,
-+	              const struct dirent **)
-+	);
-+
-+
-+int
-+main ()
-+{
-+
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
-+  (eval "$ac_compile") 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } && {
-+	 test -z "$ac_c_werror_flag" ||
-+	 test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then
-+  
-+
-+cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_POSIX2008_SCANDIR 1
-+_ACEOF
-+
-+{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; } 
-+
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+	
-+{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+
-+fi
-+
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+CFLAGS="$tmp_flags"
-+
-+
-+{ echo "$as_me:$LINENO: checking whether .text pseudo-op must be used" >&5
-+echo $ECHO_N "checking whether .text pseudo-op must be used... $ECHO_C" >&6; }
-+if test "${am_cv_sysio_asm_dot_text+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat > conftest.s <<EOF
-+	.text
-+EOF
-+	am_cv_sysio_asm_dot_text=
-+	if ${CC-cc} $CFLAGS -c conftest.s 2>/dev/null; then
-+		am_cv_sysio_asm_dot_text=.text
-+	fi
-+	rm -f conftest*
-+fi
-+
-+if test -z "$am_cv_sysio_asm_dot_text"; then
-+	{ echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-+else
-+	{ echo "$as_me:$LINENO: result: yes" >&5
-+echo "${ECHO_T}yes" >&6; }
-+fi
-+
-+{ echo "$as_me:$LINENO: checking for assembler global-symbol directive" >&5
-+echo $ECHO_N "checking for assembler global-symbol directive... $ECHO_C" >&6; }
-+if test "${am_cv_sysio_asm_global_directive+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  am_cv_sysio_asm_global_directive=UNKNOWN
-+for ac_globl in .globl .global .EXPORT; do
-+	cat > conftest.s <<EOF
-+		${am_cv_sysio_asm_dot_text}
-+		${ac_globl} foo
-+foo:
-+EOF
-+	if ${CC-cc} $CFLAGS -c conftest.s 2>/dev/null; then
-+	am_cv_sysio_asm_global_directive=${ac_globl}
-+	fi
-+	rm -f conftest*
-+	test $am_cv_sysio_asm_global_directive != UNKNOWN && break
-+done
-+fi
-+{ echo "$as_me:$LINENO: result: $am_cv_sysio_asm_global_directive" >&5
-+echo "${ECHO_T}$am_cv_sysio_asm_global_directive" >&6; }
-+if test $am_cv_sysio_asm_global_directive = UNKNOWN; then
-+	{ { echo "$as_me:$LINENO: error: cannot determine asm global directive" >&5
-+echo "$as_me: error: cannot determine asm global directive" >&2;}
-+   { (exit 1); exit 1; }; }
-+#else
-+#	AC_DEFINE_UNQUOTED(ASM_GLOBAL_DIRECTIVE, ${am_cv_sysio_asm_global_directive})
-+fi
-+
-+{ echo "$as_me:$LINENO: checking for .set assembler directive" >&5
-+echo $ECHO_N "checking for .set assembler directive... $ECHO_C" >&6; }
-+if test "${am_cv_sysio_asm_set_directive+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat > conftest.s<<EOF
-+${am_cv_sysio_asm_dot_text}
-+foo:
-+.set bar, foo
-+${am_cv_sysio_asm_global_directive} bar
-+EOF
-+	# The alpha-dec-osf1 assembler gives only a warning for `.set'
-+	# (but it doesn't work), so we must do a linking check to be sure.
-+cat > conftest1.c <<EOF
-+extern int bar;
-+main () { printf ("%d\n", bar); }
-+EOF
-+	if ${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS \
-+	   -o conftest conftest.s conftest1.c 1>&5 2>&5; then
-+		am_cv_sysio_asm_set_directive=yes
-+	else
-+		am_cv_sysio_asm_set_directive=no
-+	fi
-+	rm -f conftest*
-+fi
-+{ echo "$as_me:$LINENO: result: $am_cv_sysio_asm_set_directive" >&5
-+echo "${ECHO_T}$am_cv_sysio_asm_set_directive" >&6; }
-+#if test $am_cv_sysio_asm_set_directive = yes; then
-+#	AC_DEFINE(HAVE_ASM_SET_DIRECTIVE)
-+#fi
-+
-+{ echo "$as_me:$LINENO: checking for assembler .weak directive" >&5
-+echo $ECHO_N "checking for assembler .weak directive... $ECHO_C" >&6; }
-+if test "${am_cv_sysio_asm_weak_directive+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat > conftest.s <<EOF
-+${am_cv_sysio_asm_dot_text}
-+foo:
-+.weak foo
-+EOF
-+	if ${CC-cc} $CFLAGS -c conftest.s 2>/dev/null; then
-+		am_cv_sysio_asm_weak_directive=yes
-+	else
-+		am_cv_sysio_asm_weak_directive=no
-+	fi
-+	rm -f conftest*
-+fi
-+{ echo "$as_me:$LINENO: result: $am_cv_sysio_asm_weak_directive" >&5
-+echo "${ECHO_T}$am_cv_sysio_asm_weak_directive" >&6; }
-+
-+if test $am_cv_sysio_asm_weak_directive = no; then
-+	{ echo "$as_me:$LINENO: checking for assembler .weakext directive" >&5
-+echo $ECHO_N "checking for assembler .weakext directive... $ECHO_C" >&6; }
-+if test "${am_cv_sysio_asm_weakext_directive+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  cat > conftest.s <<EOF
-+${am_cv_sysio_asm_dot_text}
-+${am_cv_sysio_asm_global_directive} foo
-+foo:
-+.weakext bar foo
-+.weakext baz
-+${am_cv_sysio_asm_global_directive} baz
-+baz:
-+EOF
-+		if ${CC-cc} $CFLAGS -c conftest.s 2>/dev/null; then
-+			am_cv_sysio_asm_weakext_directive=yes
-+		else
-+			am_cv_sysio_asm_weakext_directive=no
-+		fi
-+		rm -f conftest*
-+fi
-+{ echo "$as_me:$LINENO: result: $am_cv_sysio_asm_weakext_directive" >&5
-+echo "${ECHO_T}$am_cv_sysio_asm_weakext_directive" >&6; }
-+fi # no .weak
-+
-+if test x$am_cv_sysio_asm_weak_directive = xyes; then
-+	cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_ASM_WEAK_DIRECTIVE 1
-+_ACEOF
-+
-+fi
-+if test x$am_cv_sysio_asm_weakext_directive = xyes; then
-+	cat >>confdefs.h <<\_ACEOF
-+@%:@define HAVE_ASM_WEAKEXT_DIRECTIVE 1
-+_ACEOF
-+
-+fi
-+
-+ac_config_files="$ac_config_files Makefile tests/Makefile"
-+
-+cat >confcache <<\_ACEOF
-+# This file is a shell script that caches the results of configure
-+# tests run on this system so they can be shared between configure
-+# scripts and configure runs, see configure's option --config-cache.
-+# It is not useful on other systems.  If it contains results you don't
-+# want to keep, you may remove or edit it.
-+#
-+# config.status only pays attention to the cache file if you give it
-+# the --recheck option to rerun configure.
-+#
-+# `ac_cv_env_foo' variables (set or unset) will be overridden when
-+# loading this file, other *unset* `ac_cv_foo' will be assigned the
-+# following values.
-+
-+_ACEOF
-+
-+# The following way of writing the cache mishandles newlines in values,
-+# but we know of no workaround that is simple, portable, and efficient.
-+# So, we kill variables containing newlines.
-+# Ultrix sh set writes to stderr and can't be redirected directly,
-+# and sets the high bit in the cache file unless we assign to the vars.
-+(
-+  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
-+    eval ac_val=\$$ac_var
-+    case $ac_val in #(
-+    *${as_nl}*)
-+      case $ac_var in #(
-+      *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
-+echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
-+      esac
-+      case $ac_var in #(
-+      _ | IFS | as_nl) ;; #(
-+      *) $as_unset $ac_var ;;
-+      esac ;;
-+    esac
-+  done
-+
-+  (set) 2>&1 |
-+    case $as_nl`(ac_space=' '; set) 2>&1` in #(
-+    *${as_nl}ac_space=\ *)
-+      # `set' does not quote correctly, so add quotes (double-quote
-+      # substitution turns \\\\ into \\, and sed turns \\ into \).
-+      sed -n \
-+	"s/'/'\\\\''/g;
-+	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
-+      ;; #(
-+    *)
-+      # `set' quotes correctly as required by POSIX, so do not add quotes.
-+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
-+      ;;
-+    esac |
-+    sort
-+) |
-+  sed '
-+     /^ac_cv_env_/b end
-+     t clear
-+     :clear
-+     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
-+     t end
-+     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
-+     :end' >>confcache
-+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
-+  if test -w "$cache_file"; then
-+    test "x$cache_file" != "x/dev/null" &&
-+      { echo "$as_me:$LINENO: updating cache $cache_file" >&5
-+echo "$as_me: updating cache $cache_file" >&6;}
-+    cat confcache >$cache_file
-+  else
-+    { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
-+echo "$as_me: not updating unwritable cache $cache_file" >&6;}
-+  fi
-+fi
-+rm -f confcache
-+
-+test "x$prefix" = xNONE && prefix=$ac_default_prefix
-+# Let make expand exec_prefix.
-+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
-+
-+# Transform confdefs.h into DEFS.
-+# Protect against shell expansion while executing Makefile rules.
-+# Protect against Makefile macro expansion.
-+#
-+# If the first sed substitution is executed (which looks for macros that
-+# take arguments), then branch to the quote section.  Otherwise,
-+# look for a macro that doesn't take arguments.
-+ac_script='
-+t clear
-+:clear
-+s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*([^)]*)\)[	 ]*\(.*\)/-D\1=\2/g
-+t quote
-+s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 ][^	 ]*\)[	 ]*\(.*\)/-D\1=\2/g
-+t quote
-+b any
-+:quote
-+s/[	 `~#$^&*(){}\\|;'\''"<>?]/\\&/g
-+s/\[/\\&/g
-+s/\]/\\&/g
-+s/\$/$$/g
-+H
-+:any
-+${
-+	g
-+	s/^\n//
-+	s/\n/ /g
-+	p
-+}
-+'
-+DEFS=`sed -n "$ac_script" confdefs.h`
-+
-+
-+ac_libobjs=
-+ac_ltlibobjs=
-+for ac_i in : $LIB@&t at OBJS; do test "x$ac_i" = x: && continue
-+  # 1. Remove the extension, and $U if already installed.
-+  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
-+  ac_i=`echo "$ac_i" | sed "$ac_script"`
-+  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
-+  #    will be set to the directory where LIBOBJS objects are built.
-+  ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext"
-+  ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo'
-+done
-+LIB@&t at OBJS=$ac_libobjs
-+
-+LTLIBOBJS=$ac_ltlibobjs
-+
-+
-+if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"AMDEP\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${WITH_NATIVE_DRIVER_TRUE}" && test -z "${WITH_NATIVE_DRIVER_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"WITH_NATIVE_DRIVER\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"WITH_NATIVE_DRIVER\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${WITH_INCORE_DRIVER_TRUE}" && test -z "${WITH_INCORE_DRIVER_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"WITH_INCORE_DRIVER\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"WITH_INCORE_DRIVER\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${WITH_TESTS_TRUE}" && test -z "${WITH_TESTS_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"WITH_TESTS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"WITH_TESTS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${WITH_STDFD_DEV_TRUE}" && test -z "${WITH_STDFD_DEV_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"WITH_STDFD_DEV\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"WITH_STDFD_DEV\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${WITH_STDFD_DEV_TRUE}" && test -z "${WITH_STDFD_DEV_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"WITH_STDFD_DEV\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"WITH_STDFD_DEV\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${WITH_CPLANT_YOD_TRUE}" && test -z "${WITH_CPLANT_YOD_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"WITH_CPLANT_YOD\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"WITH_CPLANT_YOD\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${WITH_CPLANT_YOD_TRUE}" && test -z "${WITH_CPLANT_YOD_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"WITH_CPLANT_YOD\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"WITH_CPLANT_YOD\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${WITH_CPLANT_TESTS_TRUE}" && test -z "${WITH_CPLANT_TESTS_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"WITH_CPLANT_TESTS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"WITH_CPLANT_TESTS\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${WITH_SOCKETS_DRIVER_TRUE}" && test -z "${WITH_SOCKETS_DRIVER_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"WITH_SOCKETS_DRIVER\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"WITH_SOCKETS_DRIVER\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${WITH_LUSTRE_HACK_TRUE}" && test -z "${WITH_LUSTRE_HACK_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"WITH_LUSTRE_HACK\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"WITH_LUSTRE_HACK\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+if test -z "${TEST_ALPHA_ARG_TRUE}" && test -z "${TEST_ALPHA_ARG_FALSE}"; then
-+  { { echo "$as_me:$LINENO: error: conditional \"TEST_ALPHA_ARG\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&5
-+echo "$as_me: error: conditional \"TEST_ALPHA_ARG\" was never defined.
-+Usually this means the macro was only invoked conditionally." >&2;}
-+   { (exit 1); exit 1; }; }
-+fi
-+
-+: ${CONFIG_STATUS=./config.status}
-+ac_clean_files_save=$ac_clean_files
-+ac_clean_files="$ac_clean_files $CONFIG_STATUS"
-+{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
-+echo "$as_me: creating $CONFIG_STATUS" >&6;}
-+cat >$CONFIG_STATUS <<_ACEOF
-+#! $SHELL
-+# Generated by $as_me.
-+# Run this file to recreate the current configuration.
-+# Compiler output produced by configure, useful for debugging
-+# configure, is in config.log if it exists.
-+
-+debug=false
-+ac_cs_recheck=false
-+ac_cs_silent=false
-+SHELL=\${CONFIG_SHELL-$SHELL}
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+## --------------------- ##
-+## M4sh Initialization.  ##
-+## --------------------- ##
-+
-+# Be more Bourne compatible
-+DUALCASE=1; export DUALCASE # for MKS sh
-+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-+  emulate sh
-+  NULLCMD=:
-+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-+  # is contrary to our usage.  Disable this feature.
-+  alias -g '${1+"$@"}'='"$@"'
-+  setopt NO_GLOB_SUBST
-+else
-+  case `(set -o) 2>/dev/null` in
-+  *posix*) set -o posix ;;
-+esac
-+
-+fi
-+
-+
-+
-+
-+# PATH needs CR
-+# Avoid depending upon Character Ranges.
-+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-+as_cr_digits='0123456789'
-+as_cr_alnum=$as_cr_Letters$as_cr_digits
-+
-+# The user is always right.
-+if test "${PATH_SEPARATOR+set}" != set; then
-+  echo "#! /bin/sh" >conf$$.sh
-+  echo  "exit 0"   >>conf$$.sh
-+  chmod +x conf$$.sh
-+  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
-+    PATH_SEPARATOR=';'
-+  else
-+    PATH_SEPARATOR=:
-+  fi
-+  rm -f conf$$.sh
-+fi
-+
-+# Support unset when possible.
-+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
-+  as_unset=unset
-+else
-+  as_unset=false
-+fi
-+
-+
-+# IFS
-+# We need space, tab and new line, in precisely that order.  Quoting is
-+# there to prevent editors from complaining about space-tab.
-+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-+# splitting by setting IFS to empty value.)
-+as_nl='
-+'
-+IFS=" ""	$as_nl"
-+
-+# Find who we are.  Look in the path if we contain no directory separator.
-+case $0 in
-+  *[\\/]* ) as_myself=$0 ;;
-+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
-+done
-+IFS=$as_save_IFS
-+
-+     ;;
-+esac
-+# We did not find ourselves, most probably we were run as `sh COMMAND'
-+# in which case we are not to be found in the path.
-+if test "x$as_myself" = x; then
-+  as_myself=$0
-+fi
-+if test ! -f "$as_myself"; then
-+  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
-+  { (exit 1); exit 1; }
-+fi
-+
-+# Work around bugs in pre-3.0 UWIN ksh.
-+for as_var in ENV MAIL MAILPATH
-+do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+done
-+PS1='$ '
-+PS2='> '
-+PS4='+ '
-+
-+# NLS nuisances.
-+for as_var in \
-+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
-+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
-+  LC_TELEPHONE LC_TIME
-+do
-+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
-+    eval $as_var=C; export $as_var
-+  else
-+    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+  fi
-+done
-+
-+# Required to use basename.
-+if expr a : '\(a\)' >/dev/null 2>&1 &&
-+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
-+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
-+  as_basename=basename
-+else
-+  as_basename=false
-+fi
-+
-+
-+# Name of the executable.
-+as_me=`$as_basename -- "$0" ||
-+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
-+	 X"$0" : 'X\(//\)$' \| \
-+	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X/"$0" |
-+    sed '/^.*\/\([^/][^/]*\)\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\/\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\/\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+
-+# CDPATH.
-+$as_unset CDPATH
-+
-+
-+
-+  as_lineno_1=$LINENO
-+  as_lineno_2=$LINENO
-+  test "x$as_lineno_1" != "x$as_lineno_2" &&
-+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
-+
-+  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
-+  # uniformly replaced by the line number.  The first 'sed' inserts a
-+  # line-number line after each line using $LINENO; the second 'sed'
-+  # does the real work.  The second script uses 'N' to pair each
-+  # line-number line with the line containing $LINENO, and appends
-+  # trailing '-' during substitution so that $LINENO is not a special
-+  # case at line end.
-+  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
-+  # scripts with optimization help from Paolo Bonzini.  Blame Lee
-+  # E. McMahon (1931-1989) for sed's syntax.  :-)
-+  sed -n '
-+    p
-+    /[$]LINENO/=
-+  ' <$as_myself |
-+    sed '
-+      s/[$]LINENO.*/&-/
-+      t lineno
-+      b
-+      :lineno
-+      N
-+      :loop
-+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
-+      t loop
-+      s/-\n.*//
-+    ' >$as_me.lineno &&
-+  chmod +x "$as_me.lineno" ||
-+    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
-+   { (exit 1); exit 1; }; }
-+
-+  # Don't try to exec as it changes $[0], causing all sort of problems
-+  # (the dirname of $[0] is not the place where we might find the
-+  # original and so on.  Autoconf is especially sensitive to this).
-+  . "./$as_me.lineno"
-+  # Exit status is that of the last command.
-+  exit
-+}
-+
-+
-+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
-+  as_dirname=dirname
-+else
-+  as_dirname=false
-+fi
-+
-+ECHO_C= ECHO_N= ECHO_T=
-+case `echo -n x` in
-+-n*)
-+  case `echo 'x\c'` in
-+  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
-+  *)   ECHO_C='\c';;
-+  esac;;
-+*)
-+  ECHO_N='-n';;
-+esac
-+
-+if expr a : '\(a\)' >/dev/null 2>&1 &&
-+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
-+rm -f conf$$ conf$$.exe conf$$.file
-+if test -d conf$$.dir; then
-+  rm -f conf$$.dir/conf$$.file
-+else
-+  rm -f conf$$.dir
-+  mkdir conf$$.dir
-+fi
-+echo >conf$$.file
-+if ln -s conf$$.file conf$$ 2>/dev/null; then
-+  as_ln_s='ln -s'
-+  # ... but there are two gotchas:
-+  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
-+  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
-+  # In both cases, we have to default to `cp -p'.
-+  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-+    as_ln_s='cp -p'
-+elif ln conf$$.file conf$$ 2>/dev/null; then
-+  as_ln_s=ln
-+else
-+  as_ln_s='cp -p'
-+fi
-+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-+rmdir conf$$.dir 2>/dev/null
-+
-+if mkdir -p . 2>/dev/null; then
-+  as_mkdir_p=:
-+else
-+  test -d ./-p && rmdir ./-p
-+  as_mkdir_p=false
-+fi
-+
-+if test -x / >/dev/null 2>&1; then
-+  as_test_x='test -x'
-+else
-+  if ls -dL / >/dev/null 2>&1; then
-+    as_ls_L_option=L
-+  else
-+    as_ls_L_option=
-+  fi
-+  as_test_x='
-+    eval sh -c '\''
-+      if test -d "$1"; then
-+        test -d "$1/.";
-+      else
-+	case $1 in
-+        -*)set "./$1";;
-+	esac;
-+	case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
-+	???[sx]*):;;*)false;;esac;fi
-+    '\'' sh
-+  '
-+fi
-+as_executable_p=$as_test_x
-+
-+# Sed expression to map a string onto a valid CPP name.
-+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-+
-+# Sed expression to map a string onto a valid variable name.
-+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-+
-+
-+exec 6>&1
-+
-+# Save the log message, to keep $[0] and so on meaningful, and to
-+# report actual input values of CONFIG_FILES etc. instead of their
-+# values after options handling.
-+ac_log="
-+This file was extended by libsysio $as_me 1.2, which was
-+generated by GNU Autoconf 2.61.  Invocation command line was
-+
-+  CONFIG_FILES    = $CONFIG_FILES
-+  CONFIG_HEADERS  = $CONFIG_HEADERS
-+  CONFIG_LINKS    = $CONFIG_LINKS
-+  CONFIG_COMMANDS = $CONFIG_COMMANDS
-+  $ $0 $@
-+
-+on `(hostname || uname -n) 2>/dev/null | sed 1q`
-+"
-+
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<_ACEOF
-+# Files that config.status was made for.
-+config_files="$ac_config_files"
-+config_commands="$ac_config_commands"
-+
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+ac_cs_usage="\
-+\`$as_me' instantiates files from templates according to the
-+current configuration.
-+
-+Usage: $0 [OPTIONS] [FILE]...
-+
-+  -h, --help       print this help, then exit
-+  -V, --version    print version number and configuration settings, then exit
-+  -q, --quiet      do not print progress messages
-+  -d, --debug      don't remove temporary files
-+      --recheck    update $as_me by reconfiguring in the same conditions
-+  --file=FILE[:TEMPLATE]
-+		   instantiate the configuration file FILE
-+
-+Configuration files:
-+$config_files
-+
-+Configuration commands:
-+$config_commands
-+
-+Report bugs to <bug-autoconf at gnu.org>."
-+
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF
-+ac_cs_version="\\
-+libsysio config.status 1.2
-+configured by $0, generated by GNU Autoconf 2.61,
-+  with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
-+
-+Copyright (C) 2006 Free Software Foundation, Inc.
-+This config.status script is free software; the Free Software Foundation
-+gives unlimited permission to copy, distribute and modify it."
-+
-+ac_pwd='$ac_pwd'
-+srcdir='$srcdir'
-+INSTALL='$INSTALL'
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+# If no file are specified by the user, then we need to provide default
-+# value.  By we need to know if files were specified by the user.
-+ac_need_defaults=:
-+while test $# != 0
-+do
-+  case $1 in
-+  --*=*)
-+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
-+    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
-+    ac_shift=:
-+    ;;
-+  *)
-+    ac_option=$1
-+    ac_optarg=$2
-+    ac_shift=shift
-+    ;;
-+  esac
-+
-+  case $ac_option in
-+  # Handling of the options.
-+  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
-+    ac_cs_recheck=: ;;
-+  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
-+    echo "$ac_cs_version"; exit ;;
-+  --debug | --debu | --deb | --de | --d | -d )
-+    debug=: ;;
-+  --file | --fil | --fi | --f )
-+    $ac_shift
-+    CONFIG_FILES="$CONFIG_FILES $ac_optarg"
-+    ac_need_defaults=false;;
-+  --he | --h |  --help | --hel | -h )
-+    echo "$ac_cs_usage"; exit ;;
-+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-+  | -silent | --silent | --silen | --sile | --sil | --si | --s)
-+    ac_cs_silent=: ;;
-+
-+  # This is an error.
-+  -*) { echo "$as_me: error: unrecognized option: $1
-+Try \`$0 --help' for more information." >&2
-+   { (exit 1); exit 1; }; } ;;
-+
-+  *) ac_config_targets="$ac_config_targets $1"
-+     ac_need_defaults=false ;;
-+
-+  esac
-+  shift
-+done
-+
-+ac_configure_extra_args=
-+
-+if $ac_cs_silent; then
-+  exec 6>/dev/null
-+  ac_configure_extra_args="$ac_configure_extra_args --silent"
-+fi
-+
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF
-+if \$ac_cs_recheck; then
-+  echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
-+  CONFIG_SHELL=$SHELL
-+  export CONFIG_SHELL
-+  exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
-+fi
-+
-+_ACEOF
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+exec 5>>config.log
-+{
-+  echo
-+  sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX
-+@%:@@%:@ Running $as_me. @%:@@%:@
-+_ASBOX
-+  echo "$ac_log"
-+} >&5
-+
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF
-+#
-+# INIT-COMMANDS
-+#
-+AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
-+
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+
-+# Handling of arguments.
-+for ac_config_target in $ac_config_targets
-+do
-+  case $ac_config_target in
-+    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
-+    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
-+    "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
-+
-+  *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
-+echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
-+   { (exit 1); exit 1; }; };;
-+  esac
-+done
-+
-+
-+# If the user did not use the arguments to specify the items to instantiate,
-+# then the envvar interface is used.  Set only those that are not.
-+# We use the long form for the default assignment because of an extremely
-+# bizarre bug on SunOS 4.1.3.
-+if $ac_need_defaults; then
-+  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
-+  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
-+fi
-+
-+# Have a temporary directory for convenience.  Make it in the build tree
-+# simply because there is no reason against having it here, and in addition,
-+# creating and moving files from /tmp can sometimes cause problems.
-+# Hook for its removal unless debugging.
-+# Note that there is a small window in which the directory will not be cleaned:
-+# after its creation but before its name has been assigned to `$tmp'.
-+$debug ||
-+{
-+  tmp=
-+  trap 'exit_status=$?
-+  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
-+' 0
-+  trap '{ (exit 1); exit 1; }' 1 2 13 15
-+}
-+# Create a (secure) tmp directory for tmp files.
-+
-+{
-+  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
-+  test -n "$tmp" && test -d "$tmp"
-+}  ||
-+{
-+  tmp=./conf$$-$RANDOM
-+  (umask 077 && mkdir "$tmp")
-+} ||
-+{
-+   echo "$me: cannot create a temporary directory in ." >&2
-+   { (exit 1); exit 1; }
-+}
-+
-+#
-+# Set up the sed scripts for CONFIG_FILES section.
-+#
-+
-+# No need to generate the scripts if there are no CONFIG_FILES.
-+# This happens for instance when ./config.status config.h
-+if test -n "$CONFIG_FILES"; then
-+
-+_ACEOF
-+
-+
-+
-+ac_delim='%!_!# '
-+for ac_last_try in false false false false false :; do
-+  cat >conf$$subs.sed <<_ACEOF
-+SHELL!$SHELL$ac_delim
-+PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim
-+PACKAGE_NAME!$PACKAGE_NAME$ac_delim
-+PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim
-+PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim
-+PACKAGE_STRING!$PACKAGE_STRING$ac_delim
-+PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim
-+exec_prefix!$exec_prefix$ac_delim
-+prefix!$prefix$ac_delim
-+program_transform_name!$program_transform_name$ac_delim
-+bindir!$bindir$ac_delim
-+sbindir!$sbindir$ac_delim
-+libexecdir!$libexecdir$ac_delim
-+datarootdir!$datarootdir$ac_delim
-+datadir!$datadir$ac_delim
-+sysconfdir!$sysconfdir$ac_delim
-+sharedstatedir!$sharedstatedir$ac_delim
-+localstatedir!$localstatedir$ac_delim
-+includedir!$includedir$ac_delim
-+oldincludedir!$oldincludedir$ac_delim
-+docdir!$docdir$ac_delim
-+infodir!$infodir$ac_delim
-+htmldir!$htmldir$ac_delim
-+dvidir!$dvidir$ac_delim
-+pdfdir!$pdfdir$ac_delim
-+psdir!$psdir$ac_delim
-+libdir!$libdir$ac_delim
-+localedir!$localedir$ac_delim
-+mandir!$mandir$ac_delim
-+DEFS!$DEFS$ac_delim
-+ECHO_C!$ECHO_C$ac_delim
-+ECHO_N!$ECHO_N$ac_delim
-+ECHO_T!$ECHO_T$ac_delim
-+LIBS!$LIBS$ac_delim
-+build_alias!$build_alias$ac_delim
-+host_alias!$host_alias$ac_delim
-+target_alias!$target_alias$ac_delim
-+build!$build$ac_delim
-+build_cpu!$build_cpu$ac_delim
-+build_vendor!$build_vendor$ac_delim
-+build_os!$build_os$ac_delim
-+host!$host$ac_delim
-+host_cpu!$host_cpu$ac_delim
-+host_vendor!$host_vendor$ac_delim
-+host_os!$host_os$ac_delim
-+target!$target$ac_delim
-+target_cpu!$target_cpu$ac_delim
-+target_vendor!$target_vendor$ac_delim
-+target_os!$target_os$ac_delim
-+INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
-+INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
-+INSTALL_DATA!$INSTALL_DATA$ac_delim
-+CYGPATH_W!$CYGPATH_W$ac_delim
-+PACKAGE!$PACKAGE$ac_delim
-+VERSION!$VERSION$ac_delim
-+ACLOCAL!$ACLOCAL$ac_delim
-+AUTOCONF!$AUTOCONF$ac_delim
-+AUTOMAKE!$AUTOMAKE$ac_delim
-+AUTOHEADER!$AUTOHEADER$ac_delim
-+MAKEINFO!$MAKEINFO$ac_delim
-+AMTAR!$AMTAR$ac_delim
-+install_sh!$install_sh$ac_delim
-+STRIP!$STRIP$ac_delim
-+INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim
-+AWK!$AWK$ac_delim
-+SET_MAKE!$SET_MAKE$ac_delim
-+am__leading_dot!$am__leading_dot$ac_delim
-+CC!$CC$ac_delim
-+CFLAGS!$CFLAGS$ac_delim
-+LDFLAGS!$LDFLAGS$ac_delim
-+CPPFLAGS!$CPPFLAGS$ac_delim
-+ac_ct_CC!$ac_ct_CC$ac_delim
-+EXEEXT!$EXEEXT$ac_delim
-+OBJEXT!$OBJEXT$ac_delim
-+DEPDIR!$DEPDIR$ac_delim
-+am__include!$am__include$ac_delim
-+am__quote!$am__quote$ac_delim
-+AMDEP_TRUE!$AMDEP_TRUE$ac_delim
-+AMDEP_FALSE!$AMDEP_FALSE$ac_delim
-+AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim
-+CCDEPMODE!$CCDEPMODE$ac_delim
-+am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim
-+am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim
-+RANLIB!$RANLIB$ac_delim
-+CPP!$CPP$ac_delim
-+GREP!$GREP$ac_delim
-+EGREP!$EGREP$ac_delim
-+LIBBUILD_DIR!$LIBBUILD_DIR$ac_delim
-+WITH_NATIVE_DRIVER_TRUE!$WITH_NATIVE_DRIVER_TRUE$ac_delim
-+WITH_NATIVE_DRIVER_FALSE!$WITH_NATIVE_DRIVER_FALSE$ac_delim
-+WITH_INCORE_DRIVER_TRUE!$WITH_INCORE_DRIVER_TRUE$ac_delim
-+WITH_INCORE_DRIVER_FALSE!$WITH_INCORE_DRIVER_FALSE$ac_delim
-+WITH_TESTS_TRUE!$WITH_TESTS_TRUE$ac_delim
-+WITH_TESTS_FALSE!$WITH_TESTS_FALSE$ac_delim
-+AUTOMOUNT!$AUTOMOUNT$ac_delim
-+WITH_STDFD_DEV_TRUE!$WITH_STDFD_DEV_TRUE$ac_delim
-+WITH_STDFD_DEV_FALSE!$WITH_STDFD_DEV_FALSE$ac_delim
-+_ACEOF
-+
-+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
-+    break
-+  elif $ac_last_try; then
-+    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
-+echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
-+   { (exit 1); exit 1; }; }
-+  else
-+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-+  fi
-+done
-+
-+ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
-+if test -n "$ac_eof"; then
-+  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
-+  ac_eof=`expr $ac_eof + 1`
-+fi
-+
-+cat >>$CONFIG_STATUS <<_ACEOF
-+cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof
-+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-+_ACEOF
-+sed '
-+s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
-+s/^/s,@/; s/!/@,|#_!!_#|/
-+:n
-+t n
-+s/'"$ac_delim"'$/,g/; t
-+s/$/\\/; p
-+N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
-+' >>$CONFIG_STATUS <conf$$subs.sed
-+rm -f conf$$subs.sed
-+cat >>$CONFIG_STATUS <<_ACEOF
-+CEOF$ac_eof
-+_ACEOF
-+
-+
-+ac_delim='%!_!# '
-+for ac_last_try in false false false false false :; do
-+  cat >conf$$subs.sed <<_ACEOF
-+ZERO_SUM_MEMORY!$ZERO_SUM_MEMORY$ac_delim
-+DEFER_INIT_CWD!$DEFER_INIT_CWD$ac_delim
-+TRACING!$TRACING$ac_delim
-+WITH_CPLANT_YOD_TRUE!$WITH_CPLANT_YOD_TRUE$ac_delim
-+WITH_CPLANT_YOD_FALSE!$WITH_CPLANT_YOD_FALSE$ac_delim
-+WITH_CPLANT_TESTS_TRUE!$WITH_CPLANT_TESTS_TRUE$ac_delim
-+WITH_CPLANT_TESTS_FALSE!$WITH_CPLANT_TESTS_FALSE$ac_delim
-+WITH_SOCKETS_DRIVER_TRUE!$WITH_SOCKETS_DRIVER_TRUE$ac_delim
-+WITH_SOCKETS_DRIVER_FALSE!$WITH_SOCKETS_DRIVER_FALSE$ac_delim
-+WITH_LUSTRE_HACK_TRUE!$WITH_LUSTRE_HACK_TRUE$ac_delim
-+WITH_LUSTRE_HACK_FALSE!$WITH_LUSTRE_HACK_FALSE$ac_delim
-+SYSIO_LABEL_NAMES!$SYSIO_LABEL_NAMES$ac_delim
-+TEST_ALPHA_ARG_TRUE!$TEST_ALPHA_ARG_TRUE$ac_delim
-+TEST_ALPHA_ARG_FALSE!$TEST_ALPHA_ARG_FALSE$ac_delim
-+LIB@&t at OBJS!$LIB@&t at OBJS$ac_delim
-+LTLIBOBJS!$LTLIBOBJS$ac_delim
-+_ACEOF
-+
-+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 16; then
-+    break
-+  elif $ac_last_try; then
-+    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
-+echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
-+   { (exit 1); exit 1; }; }
-+  else
-+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-+  fi
-+done
-+
-+ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
-+if test -n "$ac_eof"; then
-+  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
-+  ac_eof=`expr $ac_eof + 1`
-+fi
-+
-+cat >>$CONFIG_STATUS <<_ACEOF
-+cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof
-+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end
-+_ACEOF
-+sed '
-+s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
-+s/^/s,@/; s/!/@,|#_!!_#|/
-+:n
-+t n
-+s/'"$ac_delim"'$/,g/; t
-+s/$/\\/; p
-+N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
-+' >>$CONFIG_STATUS <conf$$subs.sed
-+rm -f conf$$subs.sed
-+cat >>$CONFIG_STATUS <<_ACEOF
-+:end
-+s/|#_!!_#|//g
-+CEOF$ac_eof
-+_ACEOF
-+
-+
-+# VPATH may cause trouble with some makes, so we remove $(srcdir),
-+# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
-+# trailing colons and then remove the whole line if VPATH becomes empty
-+# (actually we leave an empty line to preserve line numbers).
-+if test "x$srcdir" = x.; then
-+  ac_vpsub='/^[	 ]*VPATH[	 ]*=/{
-+s/:*\$(srcdir):*/:/
-+s/:*\${srcdir}:*/:/
-+s/:*@srcdir@:*/:/
-+s/^\([^=]*=[	 ]*\):*/\1/
-+s/:*$//
-+s/^[^=]*=[	 ]*$//
-+}'
-+fi
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+fi # test -n "$CONFIG_FILES"
-+
-+
-+for ac_tag in  :F $CONFIG_FILES      :C $CONFIG_COMMANDS
-+do
-+  case $ac_tag in
-+  :[FHLC]) ac_mode=$ac_tag; continue;;
-+  esac
-+  case $ac_mode$ac_tag in
-+  :[FHL]*:*);;
-+  :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
-+echo "$as_me: error: Invalid tag $ac_tag." >&2;}
-+   { (exit 1); exit 1; }; };;
-+  :[FH]-) ac_tag=-:-;;
-+  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
-+  esac
-+  ac_save_IFS=$IFS
-+  IFS=:
-+  set x $ac_tag
-+  IFS=$ac_save_IFS
-+  shift
-+  ac_file=$1
-+  shift
-+
-+  case $ac_mode in
-+  :L) ac_source=$1;;
-+  :[FH])
-+    ac_file_inputs=
-+    for ac_f
-+    do
-+      case $ac_f in
-+      -) ac_f="$tmp/stdin";;
-+      *) # Look for the file first in the build tree, then in the source tree
-+	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
-+	 # because $ac_f cannot contain `:'.
-+	 test -f "$ac_f" ||
-+	   case $ac_f in
-+	   [\\/$]*) false;;
-+	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
-+	   esac ||
-+	   { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
-+echo "$as_me: error: cannot find input file: $ac_f" >&2;}
-+   { (exit 1); exit 1; }; };;
-+      esac
-+      ac_file_inputs="$ac_file_inputs $ac_f"
-+    done
-+
-+    # Let's still pretend it is `configure' which instantiates (i.e., don't
-+    # use $as_me), people would be surprised to read:
-+    #    /* config.h.  Generated by config.status.  */
-+    configure_input="Generated from "`IFS=:
-+	  echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure."
-+    if test x"$ac_file" != x-; then
-+      configure_input="$ac_file.  $configure_input"
-+      { echo "$as_me:$LINENO: creating $ac_file" >&5
-+echo "$as_me: creating $ac_file" >&6;}
-+    fi
-+
-+    case $ac_tag in
-+    *:-:* | *:-) cat >"$tmp/stdin";;
-+    esac
-+    ;;
-+  esac
-+
-+  ac_dir=`$as_dirname -- "$ac_file" ||
-+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$ac_file" : 'X\(//\)[^/]' \| \
-+	 X"$ac_file" : 'X\(//\)$' \| \
-+	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$ac_file" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+  { as_dir="$ac_dir"
-+  case $as_dir in #(
-+  -*) as_dir=./$as_dir;;
-+  esac
-+  test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
-+    as_dirs=
-+    while :; do
-+      case $as_dir in #(
-+      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
-+      *) as_qdir=$as_dir;;
-+      esac
-+      as_dirs="'$as_qdir' $as_dirs"
-+      as_dir=`$as_dirname -- "$as_dir" ||
-+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$as_dir" : 'X\(//\)[^/]' \| \
-+	 X"$as_dir" : 'X\(//\)$' \| \
-+	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$as_dir" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+      test -d "$as_dir" && break
-+    done
-+    test -z "$as_dirs" || eval "mkdir $as_dirs"
-+  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
-+echo "$as_me: error: cannot create directory $as_dir" >&2;}
-+   { (exit 1); exit 1; }; }; }
-+  ac_builddir=.
-+
-+case "$ac_dir" in
-+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+*)
-+  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
-+  # A ".." for each directory in $ac_dir_suffix.
-+  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
-+  case $ac_top_builddir_sub in
-+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
-+  esac ;;
-+esac
-+ac_abs_top_builddir=$ac_pwd
-+ac_abs_builddir=$ac_pwd$ac_dir_suffix
-+# for backward compatibility:
-+ac_top_builddir=$ac_top_build_prefix
-+
-+case $srcdir in
-+  .)  # We are building in place.
-+    ac_srcdir=.
-+    ac_top_srcdir=$ac_top_builddir_sub
-+    ac_abs_top_srcdir=$ac_pwd ;;
-+  [\\/]* | ?:[\\/]* )  # Absolute name.
-+    ac_srcdir=$srcdir$ac_dir_suffix;
-+    ac_top_srcdir=$srcdir
-+    ac_abs_top_srcdir=$srcdir ;;
-+  *) # Relative name.
-+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
-+    ac_top_srcdir=$ac_top_build_prefix$srcdir
-+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-+esac
-+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-+
-+
-+  case $ac_mode in
-+  :F)
-+  #
-+  # CONFIG_FILE
-+  #
-+
-+  case $INSTALL in
-+  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
-+  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
-+  esac
-+_ACEOF
-+
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+# If the template does not know about datarootdir, expand it.
-+# FIXME: This hack should be removed a few years after 2.60.
-+ac_datarootdir_hack=; ac_datarootdir_seen=
-+
-+case `sed -n '/datarootdir/ {
-+  p
-+  q
-+}
-+/@datadir@/p
-+/@docdir@/p
-+/@infodir@/p
-+/@localedir@/p
-+/@mandir@/p
-+' $ac_file_inputs` in
-+*datarootdir*) ac_datarootdir_seen=yes;;
-+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
-+  { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
-+echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF
-+  ac_datarootdir_hack='
-+  s&@datadir@&$datadir&g
-+  s&@docdir@&$docdir&g
-+  s&@infodir@&$infodir&g
-+  s&@localedir@&$localedir&g
-+  s&@mandir@&$mandir&g
-+    s&\\\${datarootdir}&$datarootdir&g' ;;
-+esac
-+_ACEOF
-+
-+# Neutralize VPATH when `$srcdir' = `.'.
-+# Shell code in configure.ac might set extrasub.
-+# FIXME: do we really want to maintain this feature?
-+cat >>$CONFIG_STATUS <<_ACEOF
-+  sed "$ac_vpsub
-+$extrasub
-+_ACEOF
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+:t
-+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-+s&@configure_input@&$configure_input&;t t
-+s&@top_builddir@&$ac_top_builddir_sub&;t t
-+s&@srcdir@&$ac_srcdir&;t t
-+s&@abs_srcdir@&$ac_abs_srcdir&;t t
-+s&@top_srcdir@&$ac_top_srcdir&;t t
-+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
-+s&@builddir@&$ac_builddir&;t t
-+s&@abs_builddir@&$ac_abs_builddir&;t t
-+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
-+s&@INSTALL@&$ac_INSTALL&;t t
-+$ac_datarootdir_hack
-+" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out
-+
-+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
-+  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
-+  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
-+  { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-+which seems to be undefined.  Please make sure it is defined." >&5
-+echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-+which seems to be undefined.  Please make sure it is defined." >&2;}
-+
-+  rm -f "$tmp/stdin"
-+  case $ac_file in
-+  -) cat "$tmp/out"; rm -f "$tmp/out";;
-+  *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
-+  esac
-+ ;;
-+  
-+  
-+  :C)  { echo "$as_me:$LINENO: executing $ac_file commands" >&5
-+echo "$as_me: executing $ac_file commands" >&6;}
-+ ;;
-+  esac
-+
-+
-+  case $ac_file$ac_mode in
-+    "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
-+  # Strip MF so we end up with the name of the file.
-+  mf=`echo "$mf" | sed -e 's/:.*$//'`
-+  # Check whether this is an Automake generated Makefile or not.
-+  # We used to match only the files named `Makefile.in', but
-+  # some people rename them; so instead we look at the file content.
-+  # Grep'ing the first line is not enough: some people post-process
-+  # each Makefile.in and add a new line on top of each file to say so.
-+  # So let's grep whole file.
-+  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
-+    dirpart=`$as_dirname -- "$mf" ||
-+$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$mf" : 'X\(//\)[^/]' \| \
-+	 X"$mf" : 'X\(//\)$' \| \
-+	 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$mf" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+  else
-+    continue
-+  fi
-+  grep '^DEP_FILES *= *[^ @%:@]' < "$mf" > /dev/null || continue
-+  # Extract the definition of DEP_FILES from the Makefile without
-+  # running `make'.
-+  DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
-+  test -z "$DEPDIR" && continue
-+  # When using ansi2knr, U may be empty or an underscore; expand it
-+  U=`sed -n -e '/^U = / s///p' < "$mf"`
-+  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
-+  # We invoke sed twice because it is the simplest approach to
-+  # changing $(DEPDIR) to its actual value in the expansion.
-+  for file in `sed -n -e '
-+    /^DEP_FILES = .*\\\\$/ {
-+      s/^DEP_FILES = //
-+      :loop
-+	s/\\\\$//
-+	p
-+	n
-+	/\\\\$/ b loop
-+      p
-+    }
-+    /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \
-+       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
-+    # Make sure the directory exists.
-+    test -f "$dirpart/$file" && continue
-+    fdir=`$as_dirname -- "$file" ||
-+$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$file" : 'X\(//\)[^/]' \| \
-+	 X"$file" : 'X\(//\)$' \| \
-+	 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$file" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+    { as_dir=$dirpart/$fdir
-+  case $as_dir in #(
-+  -*) as_dir=./$as_dir;;
-+  esac
-+  test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
-+    as_dirs=
-+    while :; do
-+      case $as_dir in #(
-+      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
-+      *) as_qdir=$as_dir;;
-+      esac
-+      as_dirs="'$as_qdir' $as_dirs"
-+      as_dir=`$as_dirname -- "$as_dir" ||
-+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+	 X"$as_dir" : 'X\(//\)[^/]' \| \
-+	 X"$as_dir" : 'X\(//\)$' \| \
-+	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X"$as_dir" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)[^/].*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\/\)$/{
-+	    s//\1/
-+	    q
-+	  }
-+	  /^X\(\/\).*/{
-+	    s//\1/
-+	    q
-+	  }
-+	  s/.*/./; q'`
-+      test -d "$as_dir" && break
-+    done
-+    test -z "$as_dirs" || eval "mkdir $as_dirs"
-+  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
-+echo "$as_me: error: cannot create directory $as_dir" >&2;}
-+   { (exit 1); exit 1; }; }; }
-+    # echo "creating $dirpart/$file"
-+    echo '# dummy' > "$dirpart/$file"
-+  done
-+done
-+ ;;
-+
-+  esac
-+done # for ac_tag
-+
-+
-+{ (exit 0); exit 0; }
-+_ACEOF
-+chmod +x $CONFIG_STATUS
-+ac_clean_files=$ac_clean_files_save
-+
-+
-+# configure is writing to config.log, and then calls config.status.
-+# config.status does its own redirection, appending to config.log.
-+# Unfortunately, on DOS this fails, as config.log is still kept open
-+# by configure, so config.status won't be able to write to it; its
-+# output is simply discarded.  So we exec the FD to /dev/null,
-+# effectively closing config.log, so it can be properly (re)opened and
-+# appended to by config.status.  When coming back to configure, we
-+# need to make the FD available again.
-+if test "$no_create" != yes; then
-+  ac_cs_success=:
-+  ac_config_status_args=
-+  test "$silent" = yes &&
-+    ac_config_status_args="$ac_config_status_args --quiet"
-+  exec 5>/dev/null
-+  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
-+  exec 5>>config.log
-+  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
-+  # would make configure fail if this is the last instruction.
-+  $ac_cs_success || { (exit 1); exit 1; }
-+fi
-+
-+
-diff -Nurwd orig/lustre-1.8.2/libsysio/autom4te.cache/requests lustre-1.8.2/libsysio/autom4te.cache/requests
---- orig/lustre-1.8.2/libsysio/autom4te.cache/requests	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/libsysio/autom4te.cache/requests	2010-03-03 16:00:17.299633935 +0000
-@@ -0,0 +1,64 @@
-+# This file was generated by Autom4te Mon Aug 11 20:59:21 PDT 2008.
-+# It contains the lists of macros which have been traced.
-+# It can be safely removed.
-+
-+ at request = (
-+             bless( [
-+                      '0',
-+                      1,
-+                      [
-+                        '/usr/share/autoconf'
-+                      ],
-+                      [
-+                        '/usr/share/autoconf/autoconf/autoconf.m4f',
-+                        'aclocal.m4',
-+                        'configure.in'
-+                      ],
-+                      {
-+                        'AM_PROG_F77_C_O' => 1,
-+                        '_LT_AC_TAGCONFIG' => 1,
-+                        'AC_INIT' => 1,
-+                        'm4_pattern_forbid' => 1,
-+                        'AC_CANONICAL_TARGET' => 1,
-+                        'AC_SUBST' => 1,
-+                        'AC_CONFIG_LIBOBJ_DIR' => 1,
-+                        'AC_CANONICAL_HOST' => 1,
-+                        'AC_FC_SRCEXT' => 1,
-+                        'AC_PROG_LIBTOOL' => 1,
-+                        'AM_INIT_AUTOMAKE' => 1,
-+                        'AC_CONFIG_SUBDIRS' => 1,
-+                        'AM_AUTOMAKE_VERSION' => 1,
-+                        'LT_CONFIG_LTDL_DIR' => 1,
-+                        'AC_REQUIRE_AUX_FILE' => 1,
-+                        'AC_CONFIG_LINKS' => 1,
-+                        'LT_SUPPORTED_TAG' => 1,
-+                        'm4_sinclude' => 1,
-+                        'AM_MAINTAINER_MODE' => 1,
-+                        'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
-+                        '_m4_warn' => 1,
-+                        'AM_PROG_CXX_C_O' => 1,
-+                        'AM_ENABLE_MULTILIB' => 1,
-+                        'AC_CONFIG_FILES' => 1,
-+                        'include' => 1,
-+                        'LT_INIT' => 1,
-+                        'AM_GNU_GETTEXT' => 1,
-+                        'AC_LIBSOURCE' => 1,
-+                        'AM_PROG_FC_C_O' => 1,
-+                        'AC_CANONICAL_BUILD' => 1,
-+                        'AC_FC_FREEFORM' => 1,
-+                        'AH_OUTPUT' => 1,
-+                        '_AM_SUBST_NOTMAKE' => 1,
-+                        'AC_CONFIG_AUX_DIR' => 1,
-+                        'm4_pattern_allow' => 1,
-+                        'AM_PROG_CC_C_O' => 1,
-+                        'sinclude' => 1,
-+                        'AC_CANONICAL_SYSTEM' => 1,
-+                        'AM_CONDITIONAL' => 1,
-+                        'AC_CONFIG_HEADERS' => 1,
-+                        'AC_DEFINE_TRACE_LITERAL' => 1,
-+                        'm4_include' => 1,
-+                        'AC_SUBST_TRACE' => 1
-+                      }
-+                    ], 'Autom4te::Request' )
-+           );
-+
-diff -Nurwd orig/lustre-1.8.2/libsysio/autom4te.cache/traces.0 lustre-1.8.2/libsysio/autom4te.cache/traces.0
---- orig/lustre-1.8.2/libsysio/autom4te.cache/traces.0	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/libsysio/autom4te.cache/traces.0	2010-03-03 16:00:16.391632779 +0000
-@@ -0,0 +1,609 @@
-+m4trace:aclocal.m4:43: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
-+m4trace:configure.in:1: -1- AC_INIT([libsysio], [1.2])
-+m4trace:configure.in:1: -1- m4_pattern_forbid([^_?A[CHUM]_])
-+m4trace:configure.in:1: -1- m4_pattern_forbid([_AC_])
-+m4trace:configure.in:1: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^AS_FLAGS$])
-+m4trace:configure.in:1: -1- m4_pattern_forbid([^_?m4_])
-+m4trace:configure.in:1: -1- m4_pattern_forbid([^dnl$])
-+m4trace:configure.in:1: -1- m4_pattern_forbid([^_?AS_])
-+m4trace:configure.in:1: -1- AC_SUBST([SHELL], [${CONFIG_SHELL-/bin/sh}])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([SHELL])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^SHELL$])
-+m4trace:configure.in:1: -1- AC_SUBST([PATH_SEPARATOR])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([PATH_SEPARATOR])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^PATH_SEPARATOR$])
-+m4trace:configure.in:1: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME],      ['AC_PACKAGE_NAME'])])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([PACKAGE_NAME])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
-+m4trace:configure.in:1: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME],   ['AC_PACKAGE_TARNAME'])])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([PACKAGE_TARNAME])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
-+m4trace:configure.in:1: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION],   ['AC_PACKAGE_VERSION'])])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([PACKAGE_VERSION])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
-+m4trace:configure.in:1: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING],    ['AC_PACKAGE_STRING'])])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([PACKAGE_STRING])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
-+m4trace:configure.in:1: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
-+m4trace:configure.in:1: -1- AC_SUBST([exec_prefix], [NONE])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([exec_prefix])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^exec_prefix$])
-+m4trace:configure.in:1: -1- AC_SUBST([prefix], [NONE])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([prefix])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^prefix$])
-+m4trace:configure.in:1: -1- AC_SUBST([program_transform_name], [s,x,x,])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([program_transform_name])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^program_transform_name$])
-+m4trace:configure.in:1: -1- AC_SUBST([bindir], ['${exec_prefix}/bin'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([bindir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^bindir$])
-+m4trace:configure.in:1: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([sbindir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^sbindir$])
-+m4trace:configure.in:1: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([libexecdir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^libexecdir$])
-+m4trace:configure.in:1: -1- AC_SUBST([datarootdir], ['${prefix}/share'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([datarootdir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^datarootdir$])
-+m4trace:configure.in:1: -1- AC_SUBST([datadir], ['${datarootdir}'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([datadir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^datadir$])
-+m4trace:configure.in:1: -1- AC_SUBST([sysconfdir], ['${prefix}/etc'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([sysconfdir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^sysconfdir$])
-+m4trace:configure.in:1: -1- AC_SUBST([sharedstatedir], ['${prefix}/com'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([sharedstatedir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^sharedstatedir$])
-+m4trace:configure.in:1: -1- AC_SUBST([localstatedir], ['${prefix}/var'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([localstatedir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^localstatedir$])
-+m4trace:configure.in:1: -1- AC_SUBST([includedir], ['${prefix}/include'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([includedir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^includedir$])
-+m4trace:configure.in:1: -1- AC_SUBST([oldincludedir], ['/usr/include'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([oldincludedir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^oldincludedir$])
-+m4trace:configure.in:1: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME],
-+				     ['${datarootdir}/doc/${PACKAGE_TARNAME}'],
-+				     ['${datarootdir}/doc/${PACKAGE}'])])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([docdir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^docdir$])
-+m4trace:configure.in:1: -1- AC_SUBST([infodir], ['${datarootdir}/info'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([infodir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^infodir$])
-+m4trace:configure.in:1: -1- AC_SUBST([htmldir], ['${docdir}'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([htmldir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^htmldir$])
-+m4trace:configure.in:1: -1- AC_SUBST([dvidir], ['${docdir}'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([dvidir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^dvidir$])
-+m4trace:configure.in:1: -1- AC_SUBST([pdfdir], ['${docdir}'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([pdfdir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^pdfdir$])
-+m4trace:configure.in:1: -1- AC_SUBST([psdir], ['${docdir}'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([psdir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^psdir$])
-+m4trace:configure.in:1: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([libdir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^libdir$])
-+m4trace:configure.in:1: -1- AC_SUBST([localedir], ['${datarootdir}/locale'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([localedir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^localedir$])
-+m4trace:configure.in:1: -1- AC_SUBST([mandir], ['${datarootdir}/man'])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([mandir])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^mandir$])
-+m4trace:configure.in:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
-+m4trace:configure.in:1: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
-+#undef PACKAGE_NAME])
-+m4trace:configure.in:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
-+m4trace:configure.in:1: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
-+#undef PACKAGE_TARNAME])
-+m4trace:configure.in:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
-+m4trace:configure.in:1: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
-+#undef PACKAGE_VERSION])
-+m4trace:configure.in:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
-+m4trace:configure.in:1: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
-+#undef PACKAGE_STRING])
-+m4trace:configure.in:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
-+m4trace:configure.in:1: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
-+#undef PACKAGE_BUGREPORT])
-+m4trace:configure.in:1: -1- AC_SUBST([DEFS])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([DEFS])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^DEFS$])
-+m4trace:configure.in:1: -1- AC_SUBST([ECHO_C])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([ECHO_C])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^ECHO_C$])
-+m4trace:configure.in:1: -1- AC_SUBST([ECHO_N])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([ECHO_N])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^ECHO_N$])
-+m4trace:configure.in:1: -1- AC_SUBST([ECHO_T])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([ECHO_T])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^ECHO_T$])
-+m4trace:configure.in:1: -1- AC_SUBST([LIBS])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([LIBS])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^LIBS$])
-+m4trace:configure.in:1: -1- AC_SUBST([build_alias])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([build_alias])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^build_alias$])
-+m4trace:configure.in:1: -1- AC_SUBST([host_alias])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([host_alias])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^host_alias$])
-+m4trace:configure.in:1: -1- AC_SUBST([target_alias])
-+m4trace:configure.in:1: -1- AC_SUBST_TRACE([target_alias])
-+m4trace:configure.in:1: -1- m4_pattern_allow([^target_alias$])
-+m4trace:configure.in:3: -1- AC_CANONICAL_SYSTEM
-+m4trace:configure.in:3: -1- _m4_warn([obsolete], [The macro `AC_CANONICAL_SYSTEM' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:1747: AC_CANONICAL_SYSTEM is expanded from...
-+configure.in:3: the top level])
-+m4trace:configure.in:3: -1- AC_CANONICAL_TARGET
-+m4trace:configure.in:3: -1- AC_CANONICAL_HOST
-+m4trace:configure.in:3: -1- AC_CANONICAL_BUILD
-+m4trace:configure.in:3: -1- AC_REQUIRE_AUX_FILE([config.sub])
-+m4trace:configure.in:3: -1- AC_REQUIRE_AUX_FILE([config.guess])
-+m4trace:configure.in:3: -1- AC_SUBST([build], [$ac_cv_build])
-+m4trace:configure.in:3: -1- AC_SUBST_TRACE([build])
-+m4trace:configure.in:3: -1- m4_pattern_allow([^build$])
-+m4trace:configure.in:3: -1- AC_SUBST([build_cpu], [$[1]])
-+m4trace:configure.in:3: -1- AC_SUBST_TRACE([build_cpu])
-+m4trace:configure.in:3: -1- m4_pattern_allow([^build_cpu$])
-+m4trace:configure.in:3: -1- AC_SUBST([build_vendor], [$[2]])
-+m4trace:configure.in:3: -1- AC_SUBST_TRACE([build_vendor])
-+m4trace:configure.in:3: -1- m4_pattern_allow([^build_vendor$])
-+m4trace:configure.in:3: -1- AC_SUBST([build_os])
-+m4trace:configure.in:3: -1- AC_SUBST_TRACE([build_os])
-+m4trace:configure.in:3: -1- m4_pattern_allow([^build_os$])
-+m4trace:configure.in:3: -1- AC_SUBST([host], [$ac_cv_host])
-+m4trace:configure.in:3: -1- AC_SUBST_TRACE([host])
-+m4trace:configure.in:3: -1- m4_pattern_allow([^host$])
-+m4trace:configure.in:3: -1- AC_SUBST([host_cpu], [$[1]])
-+m4trace:configure.in:3: -1- AC_SUBST_TRACE([host_cpu])
-+m4trace:configure.in:3: -1- m4_pattern_allow([^host_cpu$])
-+m4trace:configure.in:3: -1- AC_SUBST([host_vendor], [$[2]])
-+m4trace:configure.in:3: -1- AC_SUBST_TRACE([host_vendor])
-+m4trace:configure.in:3: -1- m4_pattern_allow([^host_vendor$])
-+m4trace:configure.in:3: -1- AC_SUBST([host_os])
-+m4trace:configure.in:3: -1- AC_SUBST_TRACE([host_os])
-+m4trace:configure.in:3: -1- m4_pattern_allow([^host_os$])
-+m4trace:configure.in:3: -1- AC_SUBST([target], [$ac_cv_target])
-+m4trace:configure.in:3: -1- AC_SUBST_TRACE([target])
-+m4trace:configure.in:3: -1- m4_pattern_allow([^target$])
-+m4trace:configure.in:3: -1- AC_SUBST([target_cpu], [$[1]])
-+m4trace:configure.in:3: -1- AC_SUBST_TRACE([target_cpu])
-+m4trace:configure.in:3: -1- m4_pattern_allow([^target_cpu$])
-+m4trace:configure.in:3: -1- AC_SUBST([target_vendor], [$[2]])
-+m4trace:configure.in:3: -1- AC_SUBST_TRACE([target_vendor])
-+m4trace:configure.in:3: -1- m4_pattern_allow([^target_vendor$])
-+m4trace:configure.in:3: -1- AC_SUBST([target_os])
-+m4trace:configure.in:3: -1- AC_SUBST_TRACE([target_os])
-+m4trace:configure.in:3: -1- m4_pattern_allow([^target_os$])
-+m4trace:configure.in:15: -1- AM_INIT_AUTOMAKE([subdir-objects])
-+m4trace:configure.in:15: -1- AM_AUTOMAKE_VERSION([1.7.9])
-+m4trace:configure.in:15: -1- AC_REQUIRE_AUX_FILE([install-sh])
-+m4trace:configure.in:15: -1- AC_SUBST([INSTALL_PROGRAM])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([INSTALL_PROGRAM])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
-+m4trace:configure.in:15: -1- AC_SUBST([INSTALL_SCRIPT])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([INSTALL_SCRIPT])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
-+m4trace:configure.in:15: -1- AC_SUBST([INSTALL_DATA])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([INSTALL_DATA])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^INSTALL_DATA$])
-+m4trace:configure.in:15: -1- AC_SUBST([CYGPATH_W])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([CYGPATH_W])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^CYGPATH_W$])
-+m4trace:configure.in:15: -1- _m4_warn([obsolete], [The macro `AC_FOREACH' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:196: AC_FOREACH is expanded from...
-+aclocal.m4:203: _AM_SET_OPTIONS is expanded from...
-+aclocal.m4:56: AM_INIT_AUTOMAKE is expanded from...
-+configure.in:15: the top level])
-+m4trace:configure.in:15: -1- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([PACKAGE])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^PACKAGE$])
-+m4trace:configure.in:15: -1- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([VERSION])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^VERSION$])
-+m4trace:configure.in:15: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^PACKAGE$])
-+m4trace:configure.in:15: -1- AH_OUTPUT([PACKAGE], [/* Name of package */
-+#undef PACKAGE])
-+m4trace:configure.in:15: -1- AC_DEFINE_TRACE_LITERAL([VERSION])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^VERSION$])
-+m4trace:configure.in:15: -1- AH_OUTPUT([VERSION], [/* Version number of package */
-+#undef VERSION])
-+m4trace:configure.in:15: -1- AC_SUBST([ACLOCAL])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([ACLOCAL])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^ACLOCAL$])
-+m4trace:configure.in:15: -1- AC_SUBST([AUTOCONF])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([AUTOCONF])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^AUTOCONF$])
-+m4trace:configure.in:15: -1- AC_SUBST([AUTOMAKE])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([AUTOMAKE])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^AUTOMAKE$])
-+m4trace:configure.in:15: -1- AC_SUBST([AUTOHEADER])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([AUTOHEADER])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^AUTOHEADER$])
-+m4trace:configure.in:15: -1- AC_SUBST([MAKEINFO])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([MAKEINFO])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^MAKEINFO$])
-+m4trace:configure.in:15: -1- AC_SUBST([AMTAR])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([AMTAR])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^AMTAR$])
-+m4trace:configure.in:15: -1- AC_SUBST([install_sh])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([install_sh])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^install_sh$])
-+m4trace:configure.in:15: -1- AC_SUBST([STRIP])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([STRIP])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^STRIP$])
-+m4trace:configure.in:15: -1- AC_SUBST([INSTALL_STRIP_PROGRAM])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([INSTALL_STRIP_PROGRAM])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
-+m4trace:configure.in:15: -1- AC_SUBST([AWK])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([AWK])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^AWK$])
-+m4trace:configure.in:15: -1- AC_SUBST([SET_MAKE])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([SET_MAKE])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^SET_MAKE$])
-+m4trace:configure.in:15: -1- AC_SUBST([am__leading_dot])
-+m4trace:configure.in:15: -1- AC_SUBST_TRACE([am__leading_dot])
-+m4trace:configure.in:15: -1- m4_pattern_allow([^am__leading_dot$])
-+m4trace:configure.in:16: -1- AC_SUBST([CC])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.in:16: -1- AC_SUBST([CFLAGS])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([CFLAGS])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^CFLAGS$])
-+m4trace:configure.in:16: -1- AC_SUBST([LDFLAGS])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([LDFLAGS])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^LDFLAGS$])
-+m4trace:configure.in:16: -1- AC_SUBST([LIBS])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([LIBS])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^LIBS$])
-+m4trace:configure.in:16: -1- AC_SUBST([CPPFLAGS])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([CPPFLAGS])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^CPPFLAGS$])
-+m4trace:configure.in:16: -1- AC_SUBST([CC])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.in:16: -1- AC_SUBST([CC])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.in:16: -1- AC_SUBST([CC])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.in:16: -1- AC_SUBST([CC])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([CC])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^CC$])
-+m4trace:configure.in:16: -1- AC_SUBST([ac_ct_CC])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([ac_ct_CC])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^ac_ct_CC$])
-+m4trace:configure.in:16: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([EXEEXT])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^EXEEXT$])
-+m4trace:configure.in:16: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([OBJEXT])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^OBJEXT$])
-+m4trace:configure.in:16: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([DEPDIR])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^DEPDIR$])
-+m4trace:configure.in:16: -1- AC_SUBST([am__include])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([am__include])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^am__include$])
-+m4trace:configure.in:16: -1- AC_SUBST([am__quote])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([am__quote])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^am__quote$])
-+m4trace:configure.in:16: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
-+m4trace:configure.in:16: -1- AC_SUBST([AMDEP_TRUE])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([AMDEP_TRUE])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^AMDEP_TRUE$])
-+m4trace:configure.in:16: -1- AC_SUBST([AMDEP_FALSE])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([AMDEP_FALSE])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^AMDEP_FALSE$])
-+m4trace:configure.in:16: -1- AC_SUBST([AMDEPBACKSLASH])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([AMDEPBACKSLASH])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
-+m4trace:configure.in:16: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([CCDEPMODE])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^CCDEPMODE$])
-+m4trace:configure.in:16: -1- AM_CONDITIONAL([am__fastdepCC], [
-+  test "x$enable_dependency_tracking" != xno \
-+  && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
-+m4trace:configure.in:16: -1- AC_SUBST([am__fastdepCC_TRUE])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
-+m4trace:configure.in:16: -1- AC_SUBST([am__fastdepCC_FALSE])
-+m4trace:configure.in:16: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE])
-+m4trace:configure.in:16: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
-+m4trace:configure.in:17: -1- AM_PROG_CC_C_O
-+m4trace:configure.in:17: -1- AC_DEFINE_TRACE_LITERAL([NO_MINUS_C_MINUS_O])
-+m4trace:configure.in:17: -1- m4_pattern_allow([^NO_MINUS_C_MINUS_O$])
-+m4trace:configure.in:17: -1- AH_OUTPUT([NO_MINUS_C_MINUS_O], [/* Define to 1 if your C compiler doesn\'t accept -c and -o together. */
-+#undef NO_MINUS_C_MINUS_O])
-+m4trace:configure.in:19: -1- AC_SUBST([RANLIB])
-+m4trace:configure.in:19: -1- AC_SUBST_TRACE([RANLIB])
-+m4trace:configure.in:19: -1- m4_pattern_allow([^RANLIB$])
-+m4trace:configure.in:20: -1- AC_SUBST([SET_MAKE])
-+m4trace:configure.in:20: -1- AC_SUBST_TRACE([SET_MAKE])
-+m4trace:configure.in:20: -1- m4_pattern_allow([^SET_MAKE$])
-+m4trace:configure.in:21: -1- AC_SUBST([CPP])
-+m4trace:configure.in:21: -1- AC_SUBST_TRACE([CPP])
-+m4trace:configure.in:21: -1- m4_pattern_allow([^CPP$])
-+m4trace:configure.in:21: -1- AC_SUBST([CPPFLAGS])
-+m4trace:configure.in:21: -1- AC_SUBST_TRACE([CPPFLAGS])
-+m4trace:configure.in:21: -1- m4_pattern_allow([^CPPFLAGS$])
-+m4trace:configure.in:21: -1- AC_SUBST([CPP])
-+m4trace:configure.in:21: -1- AC_SUBST_TRACE([CPP])
-+m4trace:configure.in:21: -1- m4_pattern_allow([^CPP$])
-+m4trace:configure.in:21: -1- AC_SUBST([GREP])
-+m4trace:configure.in:21: -1- AC_SUBST_TRACE([GREP])
-+m4trace:configure.in:21: -1- m4_pattern_allow([^GREP$])
-+m4trace:configure.in:21: -1- AC_SUBST([GREP])
-+m4trace:configure.in:21: -1- AC_SUBST_TRACE([GREP])
-+m4trace:configure.in:21: -1- m4_pattern_allow([^GREP$])
-+m4trace:configure.in:21: -1- AC_SUBST([EGREP])
-+m4trace:configure.in:21: -1- AC_SUBST_TRACE([EGREP])
-+m4trace:configure.in:21: -1- m4_pattern_allow([^EGREP$])
-+m4trace:configure.in:21: -1- AC_SUBST([EGREP])
-+m4trace:configure.in:21: -1- AC_SUBST_TRACE([EGREP])
-+m4trace:configure.in:21: -1- m4_pattern_allow([^EGREP$])
-+m4trace:configure.in:21: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
-+m4trace:configure.in:21: -1- m4_pattern_allow([^STDC_HEADERS$])
-+m4trace:configure.in:21: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
-+#undef STDC_HEADERS])
-+m4trace:configure.in:22: -1- AC_DEFINE_TRACE_LITERAL([STAT_MACROS_BROKEN])
-+m4trace:configure.in:22: -1- m4_pattern_allow([^STAT_MACROS_BROKEN$])
-+m4trace:configure.in:22: -1- AH_OUTPUT([STAT_MACROS_BROKEN], [/* Define to 1 if the `S_IS*\' macros in <sys/stat.h> do not work properly. */
-+#undef STAT_MACROS_BROKEN])
-+m4trace:configure.in:23: -1- AC_DEFINE_TRACE_LITERAL([TIME_WITH_SYS_TIME])
-+m4trace:configure.in:23: -1- m4_pattern_allow([^TIME_WITH_SYS_TIME$])
-+m4trace:configure.in:23: -1- AH_OUTPUT([TIME_WITH_SYS_TIME], [/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
-+#undef TIME_WITH_SYS_TIME])
-+m4trace:configure.in:32: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.in:32: the top level])
-+m4trace:configure.in:47: -1- AC_SUBST([LIBBUILD_DIR])
-+m4trace:configure.in:47: -1- AC_SUBST_TRACE([LIBBUILD_DIR])
-+m4trace:configure.in:47: -1- m4_pattern_allow([^LIBBUILD_DIR$])
-+m4trace:configure.in:50: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.in:50: the top level])
-+m4trace:configure.in:57: -1- AM_CONDITIONAL([WITH_NATIVE_DRIVER], [test x$with_native_driver = xyes])
-+m4trace:configure.in:57: -1- AC_SUBST([WITH_NATIVE_DRIVER_TRUE])
-+m4trace:configure.in:57: -1- AC_SUBST_TRACE([WITH_NATIVE_DRIVER_TRUE])
-+m4trace:configure.in:57: -1- m4_pattern_allow([^WITH_NATIVE_DRIVER_TRUE$])
-+m4trace:configure.in:57: -1- AC_SUBST([WITH_NATIVE_DRIVER_FALSE])
-+m4trace:configure.in:57: -1- AC_SUBST_TRACE([WITH_NATIVE_DRIVER_FALSE])
-+m4trace:configure.in:57: -1- m4_pattern_allow([^WITH_NATIVE_DRIVER_FALSE$])
-+m4trace:configure.in:60: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.in:60: the top level])
-+m4trace:configure.in:67: -1- AM_CONDITIONAL([WITH_INCORE_DRIVER], [test x$with_incore_driver = xyes])
-+m4trace:configure.in:67: -1- AC_SUBST([WITH_INCORE_DRIVER_TRUE])
-+m4trace:configure.in:67: -1- AC_SUBST_TRACE([WITH_INCORE_DRIVER_TRUE])
-+m4trace:configure.in:67: -1- m4_pattern_allow([^WITH_INCORE_DRIVER_TRUE$])
-+m4trace:configure.in:67: -1- AC_SUBST([WITH_INCORE_DRIVER_FALSE])
-+m4trace:configure.in:67: -1- AC_SUBST_TRACE([WITH_INCORE_DRIVER_FALSE])
-+m4trace:configure.in:67: -1- m4_pattern_allow([^WITH_INCORE_DRIVER_FALSE$])
-+m4trace:configure.in:70: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.in:70: the top level])
-+m4trace:configure.in:77: -1- AM_CONDITIONAL([WITH_TESTS], [test x$with_tests = xyes])
-+m4trace:configure.in:77: -1- AC_SUBST([WITH_TESTS_TRUE])
-+m4trace:configure.in:77: -1- AC_SUBST_TRACE([WITH_TESTS_TRUE])
-+m4trace:configure.in:77: -1- m4_pattern_allow([^WITH_TESTS_TRUE$])
-+m4trace:configure.in:77: -1- AC_SUBST([WITH_TESTS_FALSE])
-+m4trace:configure.in:77: -1- AC_SUBST_TRACE([WITH_TESTS_FALSE])
-+m4trace:configure.in:77: -1- m4_pattern_allow([^WITH_TESTS_FALSE$])
-+m4trace:configure.in:80: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.in:80: the top level])
-+m4trace:configure.in:87: -1- AC_SUBST([AUTOMOUNT])
-+m4trace:configure.in:87: -1- AC_SUBST_TRACE([AUTOMOUNT])
-+m4trace:configure.in:87: -1- m4_pattern_allow([^AUTOMOUNT$])
-+m4trace:configure.in:90: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.in:90: the top level])
-+m4trace:configure.in:98: -1- AM_CONDITIONAL([WITH_STDFD_DEV], [test x$with_stdfd_dev = xyes])
-+m4trace:configure.in:98: -1- AC_SUBST([WITH_STDFD_DEV_TRUE])
-+m4trace:configure.in:98: -1- AC_SUBST_TRACE([WITH_STDFD_DEV_TRUE])
-+m4trace:configure.in:98: -1- m4_pattern_allow([^WITH_STDFD_DEV_TRUE$])
-+m4trace:configure.in:98: -1- AC_SUBST([WITH_STDFD_DEV_FALSE])
-+m4trace:configure.in:98: -1- AC_SUBST_TRACE([WITH_STDFD_DEV_FALSE])
-+m4trace:configure.in:98: -1- m4_pattern_allow([^WITH_STDFD_DEV_FALSE$])
-+m4trace:configure.in:101: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.in:101: the top level])
-+m4trace:configure.in:109: -1- AC_SUBST([ZERO_SUM_MEMORY])
-+m4trace:configure.in:109: -1- AC_SUBST_TRACE([ZERO_SUM_MEMORY])
-+m4trace:configure.in:109: -1- m4_pattern_allow([^ZERO_SUM_MEMORY$])
-+m4trace:configure.in:112: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.in:112: the top level])
-+m4trace:configure.in:120: -1- AC_SUBST([DEFER_INIT_CWD])
-+m4trace:configure.in:120: -1- AC_SUBST_TRACE([DEFER_INIT_CWD])
-+m4trace:configure.in:120: -1- m4_pattern_allow([^DEFER_INIT_CWD$])
-+m4trace:configure.in:123: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.in:123: the top level])
-+m4trace:configure.in:131: -1- AC_SUBST([TRACING])
-+m4trace:configure.in:131: -1- AC_SUBST_TRACE([TRACING])
-+m4trace:configure.in:131: -1- m4_pattern_allow([^TRACING$])
-+m4trace:configure.in:134: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.in:134: the top level])
-+m4trace:configure.in:133: -1- AM_CONDITIONAL([WITH_STDFD_DEV], [test x$with_stdfd_dev = xyes])
-+m4trace:configure.in:133: -1- AC_SUBST([WITH_STDFD_DEV_TRUE])
-+m4trace:configure.in:133: -1- AC_SUBST_TRACE([WITH_STDFD_DEV_TRUE])
-+m4trace:configure.in:133: -1- m4_pattern_allow([^WITH_STDFD_DEV_TRUE$])
-+m4trace:configure.in:133: -1- AC_SUBST([WITH_STDFD_DEV_FALSE])
-+m4trace:configure.in:133: -1- AC_SUBST_TRACE([WITH_STDFD_DEV_FALSE])
-+m4trace:configure.in:133: -1- m4_pattern_allow([^WITH_STDFD_DEV_FALSE$])
-+m4trace:configure.in:144: -1- AM_CONDITIONAL([WITH_CPLANT_YOD], [test x$with_cplant_yod = xyes])
-+m4trace:configure.in:144: -1- AC_SUBST([WITH_CPLANT_YOD_TRUE])
-+m4trace:configure.in:144: -1- AC_SUBST_TRACE([WITH_CPLANT_YOD_TRUE])
-+m4trace:configure.in:144: -1- m4_pattern_allow([^WITH_CPLANT_YOD_TRUE$])
-+m4trace:configure.in:144: -1- AC_SUBST([WITH_CPLANT_YOD_FALSE])
-+m4trace:configure.in:144: -1- AC_SUBST_TRACE([WITH_CPLANT_YOD_FALSE])
-+m4trace:configure.in:144: -1- m4_pattern_allow([^WITH_CPLANT_YOD_FALSE$])
-+m4trace:configure.in:147: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.in:147: the top level])
-+m4trace:configure.in:146: -1- _m4_warn([cross], [cannot check for file existence when cross compiling], [../../lib/autoconf/general.m4:2491: AC_CHECK_FILE is expanded from...
-+../../lib/m4sugar/m4sh.m4:516: AS_IF is expanded from...
-+../../lib/autoconf/general.m4:1382: AC_ARG_WITH is expanded from...
-+configure.in:146: the top level])
-+m4trace:configure.in:146: -1- AM_CONDITIONAL([WITH_CPLANT_YOD], [test x$with_cplant_yod = xyes])
-+m4trace:configure.in:146: -1- AC_SUBST([WITH_CPLANT_YOD_TRUE])
-+m4trace:configure.in:146: -1- AC_SUBST_TRACE([WITH_CPLANT_YOD_TRUE])
-+m4trace:configure.in:146: -1- m4_pattern_allow([^WITH_CPLANT_YOD_TRUE$])
-+m4trace:configure.in:146: -1- AC_SUBST([WITH_CPLANT_YOD_FALSE])
-+m4trace:configure.in:146: -1- AC_SUBST_TRACE([WITH_CPLANT_YOD_FALSE])
-+m4trace:configure.in:146: -1- m4_pattern_allow([^WITH_CPLANT_YOD_FALSE$])
-+m4trace:configure.in:163: -1- AM_CONDITIONAL([WITH_CPLANT_TESTS], [test x$with_cplant_tests != xno])
-+m4trace:configure.in:163: -1- AC_SUBST([WITH_CPLANT_TESTS_TRUE])
-+m4trace:configure.in:163: -1- AC_SUBST_TRACE([WITH_CPLANT_TESTS_TRUE])
-+m4trace:configure.in:163: -1- m4_pattern_allow([^WITH_CPLANT_TESTS_TRUE$])
-+m4trace:configure.in:163: -1- AC_SUBST([WITH_CPLANT_TESTS_FALSE])
-+m4trace:configure.in:163: -1- AC_SUBST_TRACE([WITH_CPLANT_TESTS_FALSE])
-+m4trace:configure.in:163: -1- m4_pattern_allow([^WITH_CPLANT_TESTS_FALSE$])
-+m4trace:configure.in:166: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.in:166: the top level])
-+m4trace:configure.in:174: -1- AM_CONDITIONAL([WITH_SOCKETS_DRIVER], [test x$with_sockets = xyes])
-+m4trace:configure.in:174: -1- AC_SUBST([WITH_SOCKETS_DRIVER_TRUE])
-+m4trace:configure.in:174: -1- AC_SUBST_TRACE([WITH_SOCKETS_DRIVER_TRUE])
-+m4trace:configure.in:174: -1- m4_pattern_allow([^WITH_SOCKETS_DRIVER_TRUE$])
-+m4trace:configure.in:174: -1- AC_SUBST([WITH_SOCKETS_DRIVER_FALSE])
-+m4trace:configure.in:174: -1- AC_SUBST_TRACE([WITH_SOCKETS_DRIVER_FALSE])
-+m4trace:configure.in:174: -1- m4_pattern_allow([^WITH_SOCKETS_DRIVER_FALSE$])
-+m4trace:configure.in:177: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.in:177: the top level])
-+m4trace:configure.in:185: -1- AM_CONDITIONAL([WITH_LUSTRE_HACK], [test x$with_lustre_hack = xyes])
-+m4trace:configure.in:185: -1- AC_SUBST([WITH_LUSTRE_HACK_TRUE])
-+m4trace:configure.in:185: -1- AC_SUBST_TRACE([WITH_LUSTRE_HACK_TRUE])
-+m4trace:configure.in:185: -1- m4_pattern_allow([^WITH_LUSTRE_HACK_TRUE$])
-+m4trace:configure.in:185: -1- AC_SUBST([WITH_LUSTRE_HACK_FALSE])
-+m4trace:configure.in:185: -1- AC_SUBST_TRACE([WITH_LUSTRE_HACK_FALSE])
-+m4trace:configure.in:185: -1- m4_pattern_allow([^WITH_LUSTRE_HACK_FALSE$])
-+m4trace:configure.in:187: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LUSTRE_HACK])
-+m4trace:configure.in:187: -1- m4_pattern_allow([^HAVE_LUSTRE_HACK$])
-+m4trace:configure.in:191: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
-+configure.in:191: the top level])
-+m4trace:configure.in:198: -1- AC_SUBST([SYSIO_LABEL_NAMES])
-+m4trace:configure.in:198: -1- AC_SUBST_TRACE([SYSIO_LABEL_NAMES])
-+m4trace:configure.in:198: -1- m4_pattern_allow([^SYSIO_LABEL_NAMES$])
-+m4trace:configure.in:242: -1- AC_DEFINE_TRACE_LITERAL([_XOPEN_SOURCE])
-+m4trace:configure.in:242: -1- m4_pattern_allow([^_XOPEN_SOURCE$])
-+m4trace:configure.in:246: -1- AC_DEFINE_TRACE_LITERAL([__USE_LARGEFILE64])
-+m4trace:configure.in:246: -1- m4_pattern_allow([^__USE_LARGEFILE64$])
-+m4trace:configure.in:247: -1- AC_DEFINE_TRACE_LITERAL([_LARGE_FILES])
-+m4trace:configure.in:247: -1- m4_pattern_allow([^_LARGE_FILES$])
-+m4trace:configure.in:248: -1- AC_DEFINE_TRACE_LITERAL([_LARGE_FILE_API])
-+m4trace:configure.in:248: -1- m4_pattern_allow([^_LARGE_FILE_API$])
-+m4trace:configure.in:249: -1- AC_DEFINE_TRACE_LITERAL([_ALL_SOURCE])
-+m4trace:configure.in:249: -1- m4_pattern_allow([^_ALL_SOURCE$])
-+m4trace:configure.in:250: -1- AC_DEFINE_TRACE_LITERAL([_XOPEN_SOURCE_EXTENDED])
-+m4trace:configure.in:250: -1- m4_pattern_allow([^_XOPEN_SOURCE_EXTENDED$])
-+m4trace:configure.in:255: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:2367: AC_TRY_COMPILE is expanded from...
-+configure.in:255: the top level])
-+m4trace:configure.in:270: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:2367: AC_TRY_COMPILE is expanded from...
-+configure.in:270: the top level])
-+m4trace:configure.in:280: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POSIX_1003_READLINK])
-+m4trace:configure.in:280: -1- m4_pattern_allow([^HAVE_POSIX_1003_READLINK$])
-+m4trace:configure.in:280: -1- AH_OUTPUT([HAVE_POSIX_1003_READLINK], [/* readlink returns ssize_t */
-+#undef HAVE_POSIX_1003_READLINK])
-+m4trace:configure.in:287: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:2367: AC_TRY_COMPILE is expanded from...
-+configure.in:287: the top level])
-+m4trace:configure.in:287: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POSIX_1003_READLINK])
-+m4trace:configure.in:287: -1- m4_pattern_allow([^HAVE_POSIX_1003_READLINK$])
-+m4trace:configure.in:287: -1- AH_OUTPUT([HAVE_POSIX_1003_READLINK], [/* readlink returns ssize_t */
-+#undef HAVE_POSIX_1003_READLINK])
-+m4trace:configure.in:301: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:2367: AC_TRY_COMPILE is expanded from...
-+configure.in:301: the top level])
-+m4trace:configure.in:309: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:2367: AC_TRY_COMPILE is expanded from...
-+configure.in:309: the top level])
-+m4trace:configure.in:320: -1- AC_DEFINE_TRACE_LITERAL([_LARGEFILE64_SOURCE])
-+m4trace:configure.in:320: -1- m4_pattern_allow([^_LARGEFILE64_SOURCE$])
-+m4trace:configure.in:330: -1- AC_DEFINE_TRACE_LITERAL([ALPHA_LINUX])
-+m4trace:configure.in:330: -1- m4_pattern_allow([^ALPHA_LINUX$])
-+m4trace:configure.in:333: -1- AM_CONDITIONAL([TEST_ALPHA_ARG], [test x$alpha_linux_env = xyes])
-+m4trace:configure.in:333: -1- AC_SUBST([TEST_ALPHA_ARG_TRUE])
-+m4trace:configure.in:333: -1- AC_SUBST_TRACE([TEST_ALPHA_ARG_TRUE])
-+m4trace:configure.in:333: -1- m4_pattern_allow([^TEST_ALPHA_ARG_TRUE$])
-+m4trace:configure.in:333: -1- AC_SUBST([TEST_ALPHA_ARG_FALSE])
-+m4trace:configure.in:333: -1- AC_SUBST_TRACE([TEST_ALPHA_ARG_FALSE])
-+m4trace:configure.in:333: -1- m4_pattern_allow([^TEST_ALPHA_ARG_FALSE$])
-+m4trace:configure.in:338: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:2367: AC_TRY_COMPILE is expanded from...
-+configure.in:338: the top level])
-+m4trace:configure.in:346: -1- AC_DEFINE_TRACE_LITERAL([HAVE__ST_INO])
-+m4trace:configure.in:346: -1- m4_pattern_allow([^HAVE__ST_INO$])
-+m4trace:configure.in:352: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:2367: AC_TRY_COMPILE is expanded from...
-+configure.in:352: the top level])
-+m4trace:configure.in:360: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GENERATION])
-+m4trace:configure.in:360: -1- m4_pattern_allow([^HAVE_GENERATION$])
-+m4trace:configure.in:366: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:2367: AC_TRY_COMPILE is expanded from...
-+configure.in:366: the top level])
-+m4trace:configure.in:366: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POSIX2008_PREADV])
-+m4trace:configure.in:366: -1- m4_pattern_allow([^HAVE_POSIX2008_PREADV$])
-+m4trace:configure.in:366: -1- AH_OUTPUT([HAVE_POSIX2008_PREADV], [/* POSIX 2008 preadv */
-+#undef HAVE_POSIX2008_PREADV])
-+m4trace:configure.in:385: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:2367: AC_TRY_COMPILE is expanded from...
-+configure.in:385: the top level])
-+m4trace:configure.in:385: -1- AC_DEFINE_TRACE_LITERAL([HAVE_POSIX2008_SCANDIR])
-+m4trace:configure.in:385: -1- m4_pattern_allow([^HAVE_POSIX2008_SCANDIR$])
-+m4trace:configure.in:385: -1- AH_OUTPUT([HAVE_POSIX2008_SCANDIR], [/* POSIX 2008 scandir */
-+#undef HAVE_POSIX2008_SCANDIR])
-+m4trace:configure.in:445: -1- _m4_warn([obsolete], [The macro `AC_FD_CC' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:364: AC_FD_CC is expanded from...
-+../../lib/m4sugar/m4sh.m4:516: AS_IF is expanded from...
-+../../lib/autoconf/general.m4:1898: AC_CACHE_VAL is expanded from...
-+../../lib/autoconf/general.m4:1911: AC_CACHE_CHECK is expanded from...
-+configure.in:445: the top level])
-+m4trace:configure.in:445: -1- _m4_warn([obsolete], [The macro `AC_FD_CC' is obsolete.
-+You should run autoupdate.], [../../lib/autoconf/general.m4:364: AC_FD_CC is expanded from...
-+../../lib/m4sugar/m4sh.m4:516: AS_IF is expanded from...
-+../../lib/autoconf/general.m4:1898: AC_CACHE_VAL is expanded from...
-+../../lib/autoconf/general.m4:1911: AC_CACHE_CHECK is expanded from...
-+configure.in:445: the top level])
-+m4trace:configure.in:505: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASM_WEAK_DIRECTIVE])
-+m4trace:configure.in:505: -1- m4_pattern_allow([^HAVE_ASM_WEAK_DIRECTIVE$])
-+m4trace:configure.in:508: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASM_WEAKEXT_DIRECTIVE])
-+m4trace:configure.in:508: -1- m4_pattern_allow([^HAVE_ASM_WEAKEXT_DIRECTIVE$])
-+m4trace:configure.in:511: -1- AC_CONFIG_FILES([Makefile
-+	tests/Makefile])
-+m4trace:configure.in:511: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
-+You should run autoupdate.], [])
-+m4trace:configure.in:511: -1- AC_SUBST([LIB@&t at OBJS], [$ac_libobjs])
-+m4trace:configure.in:511: -1- AC_SUBST_TRACE([LIB@&t at OBJS])
-+m4trace:configure.in:511: -1- m4_pattern_allow([^LIB@&t at OBJS$])
-+m4trace:configure.in:511: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
-+m4trace:configure.in:511: -1- AC_SUBST_TRACE([LTLIBOBJS])
-+m4trace:configure.in:511: -1- m4_pattern_allow([^LTLIBOBJS$])
-+m4trace:configure.in:511: -1- AC_SUBST_TRACE([top_builddir])
-+m4trace:configure.in:511: -1- AC_SUBST_TRACE([srcdir])
-+m4trace:configure.in:511: -1- AC_SUBST_TRACE([abs_srcdir])
-+m4trace:configure.in:511: -1- AC_SUBST_TRACE([top_srcdir])
-+m4trace:configure.in:511: -1- AC_SUBST_TRACE([abs_top_srcdir])
-+m4trace:configure.in:511: -1- AC_SUBST_TRACE([builddir])
-+m4trace:configure.in:511: -1- AC_SUBST_TRACE([abs_builddir])
-+m4trace:configure.in:511: -1- AC_SUBST_TRACE([abs_top_builddir])
-+m4trace:configure.in:511: -1- AC_SUBST_TRACE([INSTALL])
-diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
---- orig/lustre-1.8.2/libsysio/configure	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/libsysio/configure	2010-03-03 16:00:17.299633935 +0000
+diff --git a/libsysio/configure b/libsysio/configure
+index 039b559..888951d 100755
+--- a/libsysio/configure
++++ b/libsysio/configure
 @@ -1,25 +1,54 @@
  #! /bin/sh
  # Guess values for system-dependent variables and create Makefiles.
@@ -71175,7 +30433,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  # Support unset when possible.
  if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
-@@ -29,8 +58,43 @@
+@@ -29,8 +58,43 @@ else
  fi
  
  
@@ -71220,7 +30478,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  PS1='$ '
  PS2='> '
  PS4='+ '
-@@ -44,18 +108,19 @@
+@@ -44,18 +108,19 @@ do
    if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
      eval $as_var=C; export $as_var
    else
@@ -71243,7 +30501,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    as_basename=basename
  else
    as_basename=false
-@@ -63,157 +128,388 @@
+@@ -63,157 +128,388 @@ fi
  
  
  # Name of the executable.
@@ -71258,6 +30516,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
 -  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\/\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^.*\/\([^/][^/]*\)\/*$/{
 +	    s//\1/
 +	    q
@@ -71270,7 +30529,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
  
 +# CDPATH.
 +$as_unset CDPATH
@@ -71290,15 +30549,17 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  chmod +x conf$$.sh
 -  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
 -    PATH_SEPARATOR=';'
+-  else
+-    PATH_SEPARATOR=:
+-  fi
+-  rm -f conf$$.sh
 +if test "x$CONFIG_SHELL" = x; then
 +  if (eval ":") 2>/dev/null; then
 +  as_have_required=yes
-   else
--    PATH_SEPARATOR=:
++else
 +  as_have_required=no
-   fi
--  rm -f conf$$.sh
-+
+ fi
+ 
 +  if test $as_have_required = yes && 	 (eval ":
 +(as_func_return () {
 +  (exit \$1)
@@ -71315,19 +30576,6 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +as_func_ret_failure () {
 +  return 1
 +}
-+
-+exitcode=0
-+if as_func_success; then
-+  :
-+else
-+  exitcode=1
-+  echo as_func_success failed.
- fi
- 
-+if as_func_failure; then
-+  exitcode=1
-+  echo as_func_failure succeeded.
-+fi
  
 -  as_lineno_1=$LINENO
 -  as_lineno_2=$LINENO
@@ -71345,11 +30593,12 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  test -z "$as_dir" && as_dir=.
 -  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 -done
-+if as_func_ret_success; then
++exitcode=0
++if as_func_success; then
 +  :
 +else
 +  exitcode=1
-+  echo as_func_ret_success failed.
++  echo as_func_success failed.
 +fi
  
 -       ;;
@@ -71358,22 +30607,36 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  # in which case we are not to be found in the path.
 -  if test "x$as_myself" = x; then
 -    as_myself=$0
-+if as_func_ret_failure; then
-+  exitcode=1
-+  echo as_func_ret_failure succeeded.
-   fi
+-  fi
 -  if test ! -f "$as_myself"; then
 -    { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
 -   { (exit 1); exit 1; }; }
+-  fi
+-  case $CONFIG_SHELL in
+-  '')
++if as_func_failure; then
++  exitcode=1
++  echo as_func_failure succeeded.
++fi
++
++if as_func_ret_success; then
++  :
++else
++  exitcode=1
++  echo as_func_ret_success failed.
++fi
++
++if as_func_ret_failure; then
++  exitcode=1
++  echo as_func_ret_failure succeeded.
++fi
 +
 +if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
 +  :
 +else
 +  exitcode=1
 +  echo positional parameters were not saved.
-   fi
--  case $CONFIG_SHELL in
--  '')
++fi
 +
 +test \$exitcode = 0) || { (exit 1); exit 1; }
 +
@@ -71392,7 +30655,8 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
 -  for as_base in sh bash ksh sh5; do
- 	 case $as_dir in
+-	 case $as_dir in
++  case $as_dir in
  	 /*)
 -	   if ("$as_dir/$as_base" -c '
 +	   for as_base in sh bash ksh sh5; do
@@ -71507,6 +30771,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -	     exec "$CONFIG_SHELL" "$0" ${1+"$@"}
 -	   fi;;
 -	 esac
+-       done
+-done
+-;;
+-  esac
 +  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; }
 +
 +_ASEOF
@@ -71516,14 +30784,12 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +
 +fi
 +
-        done
++      done
 +
 +      if test "x$CONFIG_SHELL" != x; then
 +  for as_var in BASH_ENV ENV
 +        do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
- done
--;;
--  esac
++        done
 +        export CONFIG_SHELL
 +        exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
 +fi
@@ -71633,8 +30899,9 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +      :lineno
        N
 -      s,$,-,
-       : loop
+-      : loop
 -      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
++      :loop
 +      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
        t loop
 -      s,-$,,
@@ -71700,16 +30967,16 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
 -  if test -f conf$$.exe; then
 -    # Don't use ln at all; we don't have any links
--    as_ln_s='cp -p'
--  else
-     as_ln_s='ln -s'
--  fi
++  as_ln_s='ln -s'
 +  # ... but there are two gotchas:
 +  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 +  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 +  # In both cases, we have to default to `cp -p'.
 +  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-+    as_ln_s='cp -p'
+     as_ln_s='cp -p'
+-  else
+-    as_ln_s='ln -s'
+-  fi
  elif ln conf$$.file conf$$ 2>/dev/null; then
    as_ln_s=ln
  else
@@ -71721,7 +30988,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  if mkdir -p . 2>/dev/null; then
    as_mkdir_p=:
-@@ -222,7 +518,28 @@
+@@ -222,7 +518,28 @@ else
    as_mkdir_p=false
  fi
  
@@ -71751,7 +31018,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  # Sed expression to map a string onto a valid CPP name.
  as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-@@ -231,39 +548,27 @@
+@@ -231,39 +548,27 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  
  
@@ -71794,7 +31061,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  # Identity of this package.
  PACKAGE_NAME='libsysio'
  PACKAGE_TARNAME='libsysio'
-@@ -271,8 +576,130 @@
+@@ -271,8 +576,130 @@ PACKAGE_VERSION='1.2'
  PACKAGE_STRING='libsysio 1.2'
  PACKAGE_BUGREPORT=''
  
@@ -71926,7 +31193,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  # Initialize some variables set by options.
  ac_init_help=
-@@ -299,34 +726,48 @@
+@@ -299,34 +726,48 @@ x_libraries=NONE
  # and all the variables that are supposed to be based on exec_prefix
  # by default will actually change.
  # Use braces instead of parens because sh, perl, etc. also accept them.
@@ -71982,7 +31249,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
    -bindir | --bindir | --bindi | --bind | --bin | --bi)
      ac_prev=bindir ;;
-@@ -348,33 +789,45 @@
+@@ -348,33 +789,45 @@ do
    --config-cache | -C)
      cache_file=config.cache ;;
  
@@ -72041,7 +31308,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
    -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
    | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
-@@ -401,6 +854,12 @@
+@@ -401,6 +854,12 @@ do
    -host=* | --host=* | --hos=* | --ho=*)
      host_alias=$ac_optarg ;;
  
@@ -72054,7 +31321,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    -includedir | --includedir | --includedi | --included | --include \
    | --includ | --inclu | --incl | --inc)
      ac_prev=includedir ;;
-@@ -425,13 +884,16 @@
+@@ -425,13 +884,16 @@ do
    | --libexe=* | --libex=* | --libe=*)
      libexecdir=$ac_optarg ;;
  
@@ -72075,7 +31342,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
      localstatedir=$ac_optarg ;;
  
    -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
-@@ -496,6 +958,16 @@
+@@ -496,6 +958,16 @@ do
    | --progr-tra=* | --program-tr=* | --program-t=*)
      program_transform_name=$ac_optarg ;;
  
@@ -72092,7 +31359,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
    | -silent | --silent | --silen | --sile | --sil)
      silent=yes ;;
-@@ -548,24 +1020,20 @@
+@@ -548,24 +1020,20 @@ do
    -with-* | --with-*)
      ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
      # Reject names that are not valid shell variable names.
@@ -72123,7 +31390,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
    --x)
      # Obsolete; use --with-x.
-@@ -596,8 +1064,7 @@
+@@ -596,8 +1064,7 @@ Try \`$0 --help' for more information." >&2
      expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
        { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
     { (exit 1); exit 1; }; }
@@ -72133,7 +31400,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
      export $ac_envvar ;;
  
    *)
-@@ -617,27 +1084,19 @@
+@@ -617,27 +1084,19 @@ if test -n "$ac_prev"; then
     { (exit 1); exit 1; }; }
  fi
  
@@ -72171,7 +31438,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  done
  
  # There might be people who depend on the old broken behavior: `$host'
-@@ -664,74 +1123,76 @@
+@@ -664,74 +1123,76 @@ test -n "$host_alias" && ac_tool_prefix=$host_alias-
  test "$silent" = yes && exec 6>/dev/null
  
  
@@ -72203,6 +31470,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -72219,7 +31487,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
    srcdir=$ac_confdir
 -  if test ! -r $srcdir/$ac_unique_file; then
 +  if test ! -r "$srcdir/$ac_unique_file"; then
@@ -72233,12 +31501,13 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
 -   { (exit 1); exit 1; }; }
 -  else
+-    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
 +if test ! -r "$srcdir/$ac_unique_file"; then
 +  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
-     { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
++  { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
     { (exit 1); exit 1; }; }
-   fi
--fi
+-  fi
+ fi
 -(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
 -  { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
 +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
@@ -72298,7 +31567,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  #
  # Report the --help message.
-@@ -760,9 +1221,6 @@
+@@ -760,9 +1221,6 @@ Configuration:
    -n, --no-create         do not create output files
        --srcdir=DIR        find the sources in DIR [configure dir or \`..']
  
@@ -72308,7 +31577,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  Installation directories:
    --prefix=PREFIX         install architecture-independent files in PREFIX
  			  [$ac_default_prefix]
-@@ -780,15 +1238,22 @@
+@@ -780,15 +1238,22 @@ Fine tuning of the installation directories:
    --bindir=DIR           user executables [EPREFIX/bin]
    --sbindir=DIR          system admin executables [EPREFIX/sbin]
    --libexecdir=DIR       program executables [EPREFIX/libexec]
@@ -72334,7 +31603,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  _ACEOF
  
    cat <<\_ACEOF
-@@ -814,8 +1279,8 @@
+@@ -814,8 +1279,8 @@ if test -n "$ac_init_help"; then
  Optional Features:
    --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
    --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
@@ -72345,7 +31614,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  Optional Packages:
    --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
-@@ -847,128 +1312,95 @@
+@@ -847,128 +1312,95 @@ Some influential environment variables:
    CFLAGS      C compiler flags
    LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
                nonstandard directory <lib dir>
@@ -72441,7 +31710,13 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
 -  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
 -  esac;;
--esac
++    ac_top_srcdir=$srcdir
++    ac_abs_top_srcdir=$srcdir ;;
++  *) # Relative name.
++    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
++    ac_top_srcdir=$ac_top_build_prefix$srcdir
++    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+ esac
 -case $ac_abs_builddir in
 -.) ac_abs_top_srcdir=$ac_top_srcdir;;
 -*)
@@ -72450,15 +31725,8 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
 -  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
 -  esac;;
-+    ac_top_srcdir=$srcdir
-+    ac_abs_top_srcdir=$srcdir ;;
-+  *) # Relative name.
-+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
-+    ac_top_srcdir=$ac_top_build_prefix$srcdir
-+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
- esac
-+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
- 
+-esac
+-
 -    cd $ac_dir
 -    # Check for guested configure; otherwise get Cygnus style configure.
 -    if test -f $ac_srcdir/configure.gnu; then
@@ -72471,6 +31739,8 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -	   test -f $ac_srcdir/configure.in; then
 -      echo
 -      $ac_configure --help
++ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
++
 +    cd "$ac_dir" || { ac_status=$?; continue; }
 +    # Check for guested configure.
 +    if test -f "$ac_srcdir/configure.gnu"; then
@@ -72522,7 +31792,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  {
  cat <<_ASUNAME
  ## --------- ##
-@@ -987,7 +1419,7 @@
+@@ -987,7 +1419,7 @@ uname -v = `(uname -v) 2>/dev/null || echo unknown`
  /bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
  /usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
  /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
@@ -72531,7 +31801,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  /bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
  /usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
  /bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
-@@ -1001,6 +1433,7 @@
+@@ -1001,6 +1433,7 @@ do
    test -z "$as_dir" && as_dir=.
    echo "PATH: $as_dir"
  done
@@ -72539,7 +31809,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  } >&5
  
-@@ -1022,7 +1455,6 @@
+@@ -1022,7 +1455,6 @@ _ACEOF
  ac_configure_args=
  ac_configure_args0=
  ac_configure_args1=
@@ -72547,7 +31817,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  ac_must_keep_next=false
  for ac_pass in 1 2
  do
-@@ -1033,7 +1465,7 @@
+@@ -1033,7 +1465,7 @@ do
      -q | -quiet | --quiet | --quie | --qui | --qu | --q \
      | -silent | --silent | --silen | --sile | --sil)
        continue ;;
@@ -72556,7 +31826,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
        ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
      esac
      case $ac_pass in
-@@ -1055,9 +1487,7 @@
+@@ -1055,9 +1487,7 @@ do
  	  -* ) ac_must_keep_next=true ;;
  	esac
        fi
@@ -72567,7 +31837,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
        ;;
      esac
    done
-@@ -1068,8 +1498,8 @@
+@@ -1068,8 +1498,8 @@ $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_
  # When interrupted or exit'd, cleanup temporary files, and complete
  # config.log.  We remove comments because anyway the quotes in there
  # would cause problems or look ugly.
@@ -72578,7 +31848,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  trap 'exit_status=$?
    # Save into config.log some information that might help in debugging.
    {
-@@ -1082,20 +1512,34 @@
+@@ -1082,20 +1512,34 @@ trap 'exit_status=$?
  _ASBOX
      echo
      # The following way of writing the cache mishandles newlines in values,
@@ -72623,7 +31893,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
      echo
  
      cat <<\_ASBOX
-@@ -1106,22 +1550,28 @@
+@@ -1106,22 +1550,28 @@ _ASBOX
      echo
      for ac_var in $ac_subst_vars
      do
@@ -72659,7 +31929,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
        done | sort
        echo
      fi
-@@ -1133,15 +1583,15 @@
+@@ -1133,26 +1583,24 @@ _ASBOX
  ## ----------- ##
  _ASBOX
        echo
@@ -72676,9 +31946,11 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +  rm -f core *.core core.conftest.* &&
 +    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
      exit $exit_status
-      ' 0
+-     ' 0
++' 0
  for ac_signal in 1 2 13 15; do
-@@ -1150,9 +1600,7 @@
+   trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
+ done
  ac_signal=0
  
  # confdefs.h avoids OS command line length limits that DEFS can exceed.
@@ -72689,20 +31961,21 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  # Predefined preprocessor variables.
  
-@@ -1183,14 +1631,17 @@
+@@ -1183,14 +1631,17 @@ _ACEOF
  
  # Let the site file select an alternate cache file if it wants to.
  # Prefer explicitly selected file to automatically selected ones.
 -if test -z "$CONFIG_SITE"; then
 -  if test "x$prefix" != xNONE; then
 -    CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
+-  else
+-    CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
+-  fi
 +if test -n "$CONFIG_SITE"; then
 +  set x "$CONFIG_SITE"
 +elif test "x$prefix" != xNONE; then
 +  set x "$prefix/share/config.site" "$prefix/etc/config.site"
-   else
--    CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
--  fi
++else
 +  set x "$ac_default_prefix/share/config.site" \
 +	"$ac_default_prefix/etc/config.site"
  fi
@@ -72713,7 +31986,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    if test -r "$ac_site_file"; then
      { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
  echo "$as_me: loading site script $ac_site_file" >&6;}
-@@ -1206,8 +1657,8 @@
+@@ -1206,8 +1657,8 @@ if test -r "$cache_file"; then
      { echo "$as_me:$LINENO: loading cache $cache_file" >&5
  echo "$as_me: loading cache $cache_file" >&6;}
      case $cache_file in
@@ -72724,7 +31997,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
      esac
    fi
  else
-@@ -1219,12 +1670,11 @@
+@@ -1219,12 +1670,11 @@ fi
  # Check that the precious variables saved in the cache have kept the same
  # value.
  ac_cache_corrupted=false
@@ -72740,7 +32013,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    case $ac_old_set,$ac_new_set in
      set,)
        { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
-@@ -1249,8 +1699,7 @@
+@@ -1249,8 +1699,7 @@ echo "$as_me:   current value: $ac_new_val" >&2;}
    # Pass precious variables to config.status.
    if test "$ac_new_set" = set; then
      case $ac_new_val in
@@ -72750,7 +32023,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
      *) ac_arg=$ac_var=$ac_new_val ;;
      esac
      case " $ac_configure_args " in
-@@ -1267,12 +1716,6 @@
+@@ -1267,12 +1716,6 @@ echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start ov
     { (exit 1); exit 1; }; }
  fi
  
@@ -72763,7 +32036,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  
  
-@@ -1297,108 +1740,163 @@
+@@ -1297,108 +1740,163 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
  
  
  
@@ -72865,6 +32138,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 -build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 -build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+-
+-
+-echo "$as_me:$LINENO: checking host system type" >&5
+-echo $ECHO_N "checking host system type... $ECHO_C" >&6
 +ac_save_IFS=$IFS; IFS='-'
 +set x $ac_cv_build
 +shift
@@ -72876,10 +32153,8 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +build_os=$*
 +IFS=$ac_save_IFS
 +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
- 
- 
--echo "$as_me:$LINENO: checking host system type" >&5
--echo $ECHO_N "checking host system type... $ECHO_C" >&6
++
++
 +{ echo "$as_me:$LINENO: checking host system type" >&5
 +echo $ECHO_N "checking host system type... $ECHO_C" >&6; }
  if test "${ac_cv_host+set}" = set; then
@@ -72915,6 +32190,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 -host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 -host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+-
+-
+-echo "$as_me:$LINENO: checking target system type" >&5
+-echo $ECHO_N "checking target system type... $ECHO_C" >&6
 +ac_save_IFS=$IFS; IFS='-'
 +set x $ac_cv_host
 +shift
@@ -72926,10 +32205,8 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +host_os=$*
 +IFS=$ac_save_IFS
 +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
- 
- 
--echo "$as_me:$LINENO: checking target system type" >&5
--echo $ECHO_N "checking target system type... $ECHO_C" >&6
++
++
 +{ echo "$as_me:$LINENO: checking target system type" >&5
 +echo $ECHO_N "checking target system type... $ECHO_C" >&6; }
  if test "${ac_cv_target+set}" = set; then
@@ -72979,7 +32256,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  
  # The aliases save the names the user supplied, while $host etc.
-@@ -1419,7 +1917,7 @@
+@@ -1419,7 +1917,7 @@ echo "$as_me: WARNING: '***' ${host_os}: Unsupported OS target" >&2;}
  	;;
  esac
  
@@ -72988,7 +32265,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  # Find a good install program.  We prefer a C program (faster),
  # so one script is as good as another.  But avoid the broken or
  # incompatible versions:
-@@ -1433,8 +1931,8 @@
+@@ -1433,8 +1931,8 @@ am__api_version="1.9"
  # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  # OS/2's system install, which has a completely different semantic
  # ./install, which can be erroneously created by make from ./install.sh.
@@ -72999,7 +32276,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test -z "$INSTALL"; then
  if test "${ac_cv_path_install+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
-@@ -1456,7 +1954,7 @@
+@@ -1456,7 +1954,7 @@ case $as_dir/ in
      # by default.
      for ac_prog in ginstall scoinst install; do
        for ac_exec_ext in '' $ac_executable_extensions; do
@@ -73008,7 +32285,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	  if test $ac_prog = install &&
  	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
  	    # AIX install.  It has an incompatible calling convention.
-@@ -1475,21 +1973,22 @@
+@@ -1475,21 +1973,22 @@ case $as_dir/ in
      ;;
  esac
  done
@@ -73036,7 +32313,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  # It thinks the first close brace ends the variable substitution.
-@@ -1499,8 +1998,8 @@
+@@ -1499,8 +1998,8 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
  
  test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  
@@ -73047,7 +32324,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  # Just in case
  sleep 1
  echo timestamp > conftest.file
-@@ -1542,20 +2041,21 @@
+@@ -1542,20 +2041,21 @@ echo "$as_me: error: newly created file is older than distributed files!
  Check your system clock" >&2;}
     { (exit 1); exit 1; }; }
  fi
@@ -73074,7 +32351,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  # expand $ac_aux_dir to an absolute path
  am_aux_dir=`cd $ac_aux_dir && pwd`
-@@ -1570,45 +2070,12 @@
+@@ -1570,45 +2070,12 @@ else
  echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
  fi
  
@@ -73122,7 +32399,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_prog_AWK+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1621,54 +2088,57 @@
+@@ -1621,54 +2088,57 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -73201,7 +32478,16 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    SET_MAKE="MAKE=${MAKE-make}"
  fi
  
-@@ -1729,6 +2199,9 @@
+@@ -1681,7 +2151,7 @@ else
+ fi
+ rmdir .tst 2>/dev/null
+ 
+-# test to see if srcdir already configured
++ # test to see if srcdir already configured
+ if test "`cd $srcdir && pwd`" != "`pwd`" &&
+    test -f $srcdir/config.status; then
+   { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
+@@ -1729,6 +2199,9 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
  
  MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
  
@@ -73211,7 +32497,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  install_sh=${install_sh-"$am_aux_dir/install-sh"}
  
  # Installed binaries are usually stripped using `strip' when the user
-@@ -1739,8 +2212,8 @@
+@@ -1739,8 +2212,8 @@ if test "$cross_compiling" != no; then
    if test -n "$ac_tool_prefix"; then
    # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
  set dummy ${ac_tool_prefix}strip; ac_word=$2
@@ -73222,7 +32508,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_prog_STRIP+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1753,32 +2226,34 @@
+@@ -1753,32 +2226,34 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -73264,7 +32550,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1791,27 +2266,41 @@
+@@ -1791,27 +2266,41 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -73294,6 +32580,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +echo "${ECHO_T}no" >&6; }
  fi
  
+-  STRIP=$ac_ct_STRIP
 +  if test "x$ac_ct_STRIP" = x; then
 +    STRIP=":"
 +  else
@@ -73307,12 +32594,12 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +configuration is useful to you, please write to autoconf at gnu.org." >&2;}
 +ac_tool_warned=yes ;;
 +esac
-   STRIP=$ac_ct_STRIP
++    STRIP=$ac_ct_STRIP
 +  fi
  else
    STRIP="$ac_cv_prog_STRIP"
  fi
-@@ -1821,13 +2310,6 @@
+@@ -1821,13 +2310,6 @@ INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
  
  # We need awk for the "check" target.  The system "awk" is bad on
  # some platforms.
@@ -73326,7 +32613,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  
  
-@@ -1839,8 +2321,8 @@
+@@ -1839,8 +2321,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
  if test -n "$ac_tool_prefix"; then
    # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
  set dummy ${ac_tool_prefix}gcc; ac_word=$2
@@ -73337,7 +32624,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_prog_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1853,32 +2335,34 @@
+@@ -1853,32 +2335,34 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -73379,7 +32666,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1891,26 +2375,41 @@
+@@ -1891,36 +2375,51 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -73408,6 +32695,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +echo "${ECHO_T}no" >&6; }
  fi
  
+-  CC=$ac_ct_CC
 +  if test "x$ac_ct_CC" = x; then
 +    CC=""
 +  else
@@ -73421,14 +32709,17 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +configuration is useful to you, please write to autoconf at gnu.org." >&2;}
 +ac_tool_warned=yes ;;
 +esac
-   CC=$ac_ct_CC
++    CC=$ac_ct_CC
 +  fi
  else
    CC="$ac_cv_prog_CC"
  fi
-@@ -1919,8 +2418,8 @@
-   if test -n "$ac_tool_prefix"; then
-   # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
+ 
+ if test -z "$CC"; then
+-  if test -n "$ac_tool_prefix"; then
+-  # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
++          if test -n "$ac_tool_prefix"; then
++    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
  set dummy ${ac_tool_prefix}cc; ac_word=$2
 -echo "$as_me:$LINENO: checking for $ac_word" >&5
 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
@@ -73437,7 +32728,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_prog_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -1933,74 +2432,34 @@
+@@ -1933,74 +2432,34 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -73457,11 +32748,15 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test -n "$CC"; then
 -  echo "$as_me:$LINENO: result: $CC" >&5
 -echo "${ECHO_T}$CC" >&6
--else
++  { echo "$as_me:$LINENO: result: $CC" >&5
++echo "${ECHO_T}$CC" >&6; }
+ else
 -  echo "$as_me:$LINENO: result: no" >&5
 -echo "${ECHO_T}no" >&6
--fi
--
++  { echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ fi
+ 
 -fi
 -if test -z "$ac_cv_prog_CC"; then
 -  ac_ct_CC=$CC
@@ -73474,9 +32769,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -else
 -  if test -n "$ac_ct_CC"; then
 -  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
-+  { echo "$as_me:$LINENO: result: $CC" >&5
-+echo "${ECHO_T}$CC" >&6; }
- else
+-else
 -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 -for as_dir in $PATH
 -do
@@ -73487,12 +32780,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -    ac_cv_prog_ac_ct_CC="cc"
 -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 -    break 2
-+  { echo "$as_me:$LINENO: result: no" >&5
-+echo "${ECHO_T}no" >&6; }
-   fi
+-  fi
 -done
 -done
- 
+-
 -fi
 -fi
 -ac_ct_CC=$ac_cv_prog_ac_ct_CC
@@ -73503,12 +32794,13 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  echo "$as_me:$LINENO: result: no" >&5
 -echo "${ECHO_T}no" >&6
 -fi
- 
+-
 -  CC=$ac_ct_CC
 -else
 -  CC="$ac_cv_prog_CC"
- fi
--
+-fi
+ 
++  fi
  fi
  if test -z "$CC"; then
    # Extract the first word of "cc", so it can be a program name with args.
@@ -73520,7 +32812,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_prog_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2014,7 +2473,7 @@
+@@ -2014,7 +2473,7 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -73529,7 +32821,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
      if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
         ac_prog_rejected=yes
         continue
-@@ -2025,6 +2484,7 @@
+@@ -2025,6 +2484,7 @@ do
    fi
  done
  done
@@ -73537,7 +32829,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  if test $ac_prog_rejected = yes; then
    # We found a bogon in the path, so make sure we never use it.
-@@ -2042,22 +2502,23 @@
+@@ -2042,22 +2502,23 @@ fi
  fi
  CC=$ac_cv_prog_CC
  if test -n "$CC"; then
@@ -73568,7 +32860,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_prog_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2070,36 +2531,38 @@
+@@ -2070,36 +2531,38 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -73615,7 +32907,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2112,30 +2575,46 @@
+@@ -2112,29 +2575,45 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -73648,6 +32940,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    test -n "$ac_ct_CC" && break
  done
  
+-  CC=$ac_ct_CC
 +  if test "x$ac_ct_CC" = x; then
 +    CC=""
 +  else
@@ -73661,13 +32954,12 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +configuration is useful to you, please write to autoconf at gnu.org." >&2;}
 +ac_tool_warned=yes ;;
 +esac
-   CC=$ac_ct_CC
++    CC=$ac_ct_CC
++  fi
  fi
-+fi
  
  fi
- 
-@@ -2147,21 +2626,35 @@
+@@ -2147,21 +2626,35 @@ See \`config.log' for more details." >&2;}
     { (exit 1); exit 1; }; }
  
  # Provide some information about the compiler.
@@ -73711,7 +33003,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }
-@@ -2186,47 +2679,77 @@
+@@ -2186,47 +2679,77 @@ ac_clean_files="$ac_clean_files a.out a.exe b.out"
  # Try to create an executable without -o first, disregard a.out.
  # It will help us diagnose broken compilers, and finding out an intuition
  # of exeext.
@@ -73780,13 +33072,14 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	# certainly right.
  	break;;
      *.* )
-+        if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
-+	then :; else
- 	ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
+-	ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 -	# FIXME: I believe we export ac_cv_exeext for Libtool,
 -	# but it would be cool to find out if it's true.  Does anybody
 -	# maintain Libtool? --akim.
 -	export ac_cv_exeext
++        if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
++	then :; else
++	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 +	fi
 +	# We set ac_cv_exeext here because the later test for it is not
 +	# safe: cross compilers may not add the suffix if given an `-o'
@@ -73810,7 +33103,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    echo "$as_me: failed program was:" >&5
  sed 's/^/| /' conftest.$ac_ext >&5
  
-@@ -2238,19 +2761,21 @@
+@@ -2238,19 +2761,21 @@ See \`config.log' for more details." >&2;}
  fi
  
  ac_exeext=$ac_cv_exeext
@@ -73839,7 +33132,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
-@@ -2269,22 +2794,27 @@
+@@ -2269,22 +2794,27 @@ See \`config.log' for more details." >&2;}
      fi
    fi
  fi
@@ -73857,15 +33150,16 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
 -echo "$as_me:$LINENO: result: $cross_compiling" >&5
 -echo "${ECHO_T}$cross_compiling" >&6
-+{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
-+echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
-+{ echo "$as_me:$LINENO: result: $cross_compiling" >&5
-+echo "${ECHO_T}$cross_compiling" >&6; }
- 
+-
 -echo "$as_me:$LINENO: checking for suffix of executables" >&5
 -echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 -  (eval $ac_link) 2>&5
++{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
++echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
++{ echo "$as_me:$LINENO: result: $cross_compiling" >&5
++echo "${ECHO_T}$cross_compiling" >&6; }
++
 +{ echo "$as_me:$LINENO: checking for suffix of executables" >&5
 +echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }
 +if { (ac_try="$ac_link"
@@ -73878,7 +33172,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; then
-@@ -2295,9 +2825,8 @@
+@@ -2295,9 +2825,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
  for ac_file in conftest.exe conftest conftest.*; do
    test -f "$ac_file" || continue
    case $ac_file in
@@ -73889,7 +33183,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	  break;;
      * ) break;;
    esac
-@@ -2311,14 +2840,14 @@
+@@ -2311,14 +2840,14 @@ See \`config.log' for more details." >&2;}
  fi
  
  rm -f conftest$ac_cv_exeext
@@ -73908,7 +33202,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_objext+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2338,14 +2867,20 @@
+@@ -2338,14 +2867,20 @@ main ()
  }
  _ACEOF
  rm -f conftest.o conftest.obj
@@ -73933,7 +33227,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
      *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
         break;;
    esac
-@@ -2363,12 +2898,12 @@
+@@ -2363,12 +2898,12 @@ fi
  
  rm -f conftest.$ac_cv_objext conftest.$ac_ext
  fi
@@ -73950,7 +33244,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_c_compiler_gnu+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2391,27 +2926,22 @@
+@@ -2391,50 +2926,49 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -73989,9 +33283,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    ac_compiler_gnu=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -2419,21 +2949,25 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_compiler_gnu=no
+-ac_compiler_gnu=no
++	ac_compiler_gnu=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -74014,14 +33309,16 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_prog_cc_g+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
+-  cat >conftest.$ac_ext <<_ACEOF
 +  ac_save_c_werror_flag=$ac_c_werror_flag
 +   ac_c_werror_flag=yes
 +   ac_cv_prog_cc_g=no
 +   CFLAGS="-g"
-   cat >conftest.$ac_ext <<_ACEOF
++   cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -2450,38 +2984,118 @@
+ cat confdefs.h >>conftest.$ac_ext
+@@ -2450,38 +2984,118 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -74137,26 +33434,26 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
 -ac_cv_prog_cc_g=no
 +
- fi
--rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++fi
 +
 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
- fi
--echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
--echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
++fi
 +
 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
 +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 +   ac_c_werror_flag=$ac_save_c_werror_flag
-+fi
+ fi
+-echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
+-echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
 +{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
 +echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }
  if test "$ac_test_CFLAGS" = set; then
    CFLAGS=$ac_save_CFLAGS
  elif test $ac_cv_prog_cc_g = yes; then
-@@ -2497,12 +3111,12 @@
+@@ -2497,12 +3111,12 @@ else
      CFLAGS=
    fi
  fi
@@ -74173,7 +33470,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  ac_save_CC=$CC
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
-@@ -2536,12 +3150,17 @@
+@@ -2536,12 +3150,17 @@ static char *f (char * (*g) (char **, int), char **p, ...)
  /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
     function prototypes and stuff, but not '\xHH' hex character constants.
     These don't provoke an error unfortunately, instead are silently treated
@@ -74193,7 +33490,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  int test (int i, double x);
  struct s1 {int (*f) (int a);};
  struct s2 {int (*f) (double a);};
-@@ -2556,205 +3175,57 @@
+@@ -2556,205 +3175,57 @@ return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
    return 0;
  }
  _ACEOF
@@ -74429,7 +33726,16 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  ac_ext=c
  ac_cpp='$CPP $CPPFLAGS'
  ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-@@ -2772,8 +3243,8 @@
+@@ -2762,7 +3233,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
+ ac_compiler_gnu=$ac_cv_c_compiler_gnu
+ DEPDIR="${am__leading_dot}deps"
+ 
+-          ac_config_commands="$ac_config_commands depfiles"
++ac_config_commands="$ac_config_commands depfiles"
+ 
+ 
+ am_make=${MAKE-make}
+@@ -2772,8 +3243,8 @@ am__doit:
  .PHONY: am__doit
  END
  # If we don't find an include directive, just comment out the code.
@@ -74440,7 +33746,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  am__include="#"
  am__quote=
  _am_result=none
-@@ -2800,15 +3271,15 @@
+@@ -2800,15 +3271,15 @@ if test "$am__include" = "#"; then
  fi
  
  
@@ -74461,7 +33767,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "x$enable_dependency_tracking" != xno; then
    am_depcomp="$ac_aux_dir/depcomp"
    AMDEPBACKSLASH='\'
-@@ -2828,8 +3299,8 @@
+@@ -2828,8 +3299,8 @@ fi
  
  depcc="$CC"   am_compiler_list=
  
@@ -74472,7 +33778,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -2867,9 +3338,7 @@
+@@ -2867,9 +3338,7 @@ else
      : > sub/conftest.c
      for i in 1 2 3 4 5 6; do
        echo '#include "conftst'$i'.h"' >> sub/conftest.c
@@ -74483,7 +33789,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
      done
      echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
  
-@@ -2897,14 +3366,9 @@
+@@ -2897,14 +3366,9 @@ else
         grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
         ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
        # icc doesn't choke on unknown options, it will just issue warnings
@@ -74501,7 +33807,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
          am_cv_CC_dependencies_compiler_type=$depmode
          break
        fi
-@@ -2918,8 +3382,8 @@
+@@ -2918,8 +3382,8 @@ else
  fi
  
  fi
@@ -74512,7 +33818,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
  
  
-@@ -2936,15 +3400,15 @@
+@@ -2936,15 +3400,15 @@ fi
  
  
  if test "x$CC" != xcc; then
@@ -74533,7 +33839,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    cat >conftest.$ac_ext <<_ACEOF
-@@ -2965,14 +3429,23 @@
+@@ -2965,14 +3429,23 @@ _ACEOF
  # Make sure it works both with $CC and with simple cc.
  # We do the test twice because some compilers refuse to overwrite an
  # existing .o file with -o, though they will create one.
@@ -74562,7 +33868,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); };
-@@ -2981,19 +3454,32 @@
+@@ -2981,19 +3454,32 @@ then
    if test "x$CC" != xcc; then
      # Test first that cc exists at all.
      if { ac_try='cc -c conftest.$ac_ext >&5'
@@ -74602,7 +33908,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); };
-@@ -3009,15 +3495,15 @@
+@@ -3009,15 +3495,15 @@ then
  else
    eval ac_cv_prog_cc_${ac_cc}_c_o=no
  fi
@@ -74624,7 +33930,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define NO_MINUS_C_MINUS_O 1
-@@ -3042,8 +3528,8 @@
+@@ -3042,8 +3528,8 @@ fi
  if test -n "$ac_tool_prefix"; then
    # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
  set dummy ${ac_tool_prefix}ranlib; ac_word=$2
@@ -74635,7 +33941,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_prog_RANLIB+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -3056,32 +3542,34 @@
+@@ -3056,32 +3542,34 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -74677,7 +33983,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -3094,57 +3582,72 @@
+@@ -3094,57 +3582,72 @@ do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
@@ -74707,6 +34013,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +echo "${ECHO_T}no" >&6; }
  fi
  
+-  RANLIB=$ac_ct_RANLIB
 +  if test "x$ac_ct_RANLIB" = x; then
 +    RANLIB=":"
 +  else
@@ -74720,7 +34027,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +configuration is useful to you, please write to autoconf at gnu.org." >&2;}
 +ac_tool_warned=yes ;;
 +esac
-   RANLIB=$ac_ct_RANLIB
++    RANLIB=$ac_ct_RANLIB
 +  fi
  else
    RANLIB="$ac_cv_prog_RANLIB"
@@ -74772,7 +34079,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    SET_MAKE="MAKE=${MAKE-make}"
  fi
  
-@@ -3154,8 +3657,8 @@
+@@ -3154,8 +3657,8 @@ ac_cpp='$CPP $CPPFLAGS'
  ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  ac_compiler_gnu=$ac_cv_c_compiler_gnu
@@ -74783,7 +34090,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  # On Suns, sometimes $CPP names a directory.
  if test -n "$CPP" && test -d "$CPP"; then
    CPP=
-@@ -3189,24 +3692,22 @@
+@@ -3189,24 +3692,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  #endif
  		     Syntax error
  _ACEOF
@@ -74819,7 +34126,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    :
  else
    echo "$as_me: failed program was:" >&5
-@@ -3215,9 +3716,10 @@
+@@ -3215,9 +3716,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
    # Broken: fails on valid input.
  continue
  fi
@@ -74831,7 +34138,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    # can be detected and how.
    cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
-@@ -3227,24 +3729,22 @@
+@@ -3227,24 +3729,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <ac_nonexistent.h>
  _ACEOF
@@ -74867,7 +34174,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    # Broken: success on invalid input.
  continue
  else
-@@ -3255,6 +3755,7 @@
+@@ -3255,6 +3755,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
  ac_preproc_ok=:
  break
  fi
@@ -74875,7 +34182,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  rm -f conftest.err conftest.$ac_ext
  
  done
-@@ -3272,8 +3773,8 @@
+@@ -3272,8 +3773,8 @@ fi
  else
    ac_cv_prog_CPP=$CPP
  fi
@@ -74886,7 +34193,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  ac_preproc_ok=false
  for ac_c_preproc_warn_flag in '' yes
  do
-@@ -3296,24 +3797,22 @@
+@@ -3296,24 +3797,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  #endif
  		     Syntax error
  _ACEOF
@@ -74922,7 +34229,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    :
  else
    echo "$as_me: failed program was:" >&5
-@@ -3322,9 +3821,10 @@
+@@ -3322,9 +3821,10 @@ sed 's/^/| /' conftest.$ac_ext >&5
    # Broken: fails on valid input.
  continue
  fi
@@ -74934,7 +34241,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    # can be detected and how.
    cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
-@@ -3334,24 +3834,22 @@
+@@ -3334,24 +3834,22 @@ cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <ac_nonexistent.h>
  _ACEOF
@@ -74970,7 +34277,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    # Broken: success on invalid input.
  continue
  else
-@@ -3362,6 +3860,7 @@
+@@ -3362,6 +3860,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
  ac_preproc_ok=:
  break
  fi
@@ -74978,7 +34285,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  rm -f conftest.err conftest.$ac_ext
  
  done
-@@ -3384,23 +3883,170 @@
+@@ -3384,23 +3883,170 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
  ac_compiler_gnu=$ac_cv_c_compiler_gnu
  
  
@@ -74988,11 +34295,8 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5
 +echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; }
 +if test "${ac_cv_path_GREP+set}" = set; then
-   echo $ECHO_N "(cached) $ECHO_C" >&6
- else
--  if echo a | (grep -E '(a|b)') >/dev/null 2>&1
--    then ac_cv_prog_egrep='grep -E'
--    else ac_cv_prog_egrep='egrep'
++  echo $ECHO_N "(cached) $ECHO_C" >&6
++else
 +  # Extract the first word of "grep ggrep" to use in msg output
 +if test -z "$GREP"; then
 +set dummy grep ggrep; ac_prog_name=$2
@@ -75031,7 +34335,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +      # Best one so far, save it but keep looking for a better one
 +      ac_cv_path_GREP="$ac_path_GREP"
 +      ac_path_GREP_max=$ac_count
-     fi
++    fi
 +    # 10*(2^10) chars as input seems more than enough
 +    test $ac_count -gt 10 && break
 +  done
@@ -75047,20 +34351,15 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +IFS=$as_save_IFS
 +
 +
- fi
--echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
--echo "${ECHO_T}$ac_cv_prog_egrep" >&6
-- EGREP=$ac_cv_prog_egrep
- 
++fi
++
 +GREP="$ac_cv_path_GREP"
 +if test -z "$GREP"; then
 +  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
 +echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
 +   { (exit 1); exit 1; }; }
 +fi
- 
--echo "$as_me:$LINENO: checking for ANSI C header files" >&5
--echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
++
 +else
 +  ac_cv_path_GREP=$GREP
 +fi
@@ -75084,8 +34383,11 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +if test -z "$EGREP"; then
 +set dummy egrep; ac_prog_name=$2
 +if test "${ac_cv_path_EGREP+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
+   echo $ECHO_N "(cached) $ECHO_C" >&6
+ else
+-  if echo a | (grep -E '(a|b)') >/dev/null 2>&1
+-    then ac_cv_prog_egrep='grep -E'
+-    else ac_cv_prog_egrep='egrep'
 +  ac_path_EGREP_found=false
 +# Loop through the user's path and test for each of PROGNAME-LIST
 +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -75118,7 +34420,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +      # Best one so far, save it but keep looking for a better one
 +      ac_cv_path_EGREP="$ac_path_EGREP"
 +      ac_path_EGREP_max=$ac_count
-+    fi
+     fi
 +    # 10*(2^10) chars as input seems more than enough
 +    test $ac_count -gt 10 && break
 +  done
@@ -75145,9 +34447,14 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +
 +else
 +  ac_cv_path_EGREP=$EGREP
-+fi
-+
-+
+ fi
+-echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
+-echo "${ECHO_T}$ac_cv_prog_egrep" >&6
+- EGREP=$ac_cv_prog_egrep
+ 
+ 
+-echo "$as_me:$LINENO: checking for ANSI C header files" >&5
+-echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
 +   fi
 +fi
 +{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5
@@ -75160,7 +34467,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_header_stdc+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -3424,27 +4070,22 @@
+@@ -3424,35 +4070,31 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -75199,9 +34506,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    ac_cv_header_stdc=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -3452,7 +4093,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_cv_header_stdc=no
+-ac_cv_header_stdc=no
++	ac_cv_header_stdc=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -75209,7 +34517,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  if test $ac_cv_header_stdc = yes; then
    # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
-@@ -3508,6 +4150,7 @@
+@@ -3508,6 +4150,7 @@ cat confdefs.h >>conftest.$ac_ext
  cat >>conftest.$ac_ext <<_ACEOF
  /* end confdefs.h.  */
  #include <ctype.h>
@@ -75217,7 +34525,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  #if ((' ' & 0x0FF) == 0x020)
  # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
-@@ -3527,18 +4170,27 @@
+@@ -3527,18 +4170,27 @@ main ()
    for (i = 0; i < 256; i++)
      if (XOR (islower (i), ISLOWER (i))
  	|| toupper (i) != TOUPPER (i))
@@ -75251,7 +34559,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; }; then
-@@ -3551,12 +4203,14 @@
+@@ -3551,12 +4203,14 @@ sed 's/^/| /' conftest.$ac_ext >&5
  ( exit $ac_status )
  ac_cv_header_stdc=no
  fi
@@ -75269,7 +34577,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test $ac_cv_header_stdc = yes; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -3565,8 +4219,8 @@
+@@ -3565,8 +4219,8 @@ _ACEOF
  
  fi
  
@@ -75280,7 +34588,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_header_stat_broken+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -3579,42 +4233,52 @@
+@@ -3579,42 +4233,52 @@ cat >>conftest.$ac_ext <<_ACEOF
  #include <sys/types.h>
  #include <sys/stat.h>
  
@@ -75356,7 +34664,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test $ac_cv_header_stat_broken = yes; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -3623,8 +4287,8 @@
+@@ -3623,8 +4287,8 @@ _ACEOF
  
  fi
  
@@ -75367,7 +34675,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${ac_cv_header_time+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -3648,27 +4312,22 @@
+@@ -3648,38 +4312,34 @@ return 0;
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -75406,9 +34714,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    ac_cv_header_time=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -3676,10 +4335,11 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- ac_cv_header_time=no
+-ac_cv_header_time=no
++	ac_cv_header_time=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -75421,7 +34730,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test $ac_cv_header_time = yes; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -3697,10 +4357,9 @@
+@@ -3697,10 +4357,9 @@ fi
  
  have_lib_dir=yes;
  
@@ -75434,7 +34743,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
           "yes"|"no"|"") have_lib_dir=no ;;
           *) LIBBUILD_DIR=${withval};
              test -d ${LIBBUILD_DIR} || mkdir ${LIBBUILD_DIR} ||
-@@ -3709,7 +4368,8 @@
+@@ -3709,7 +4368,8 @@ if test "${with_lib_dir+set}" = set; then
  else
     LIBBUILD_DIR=`pwd`/lib;
      test -d ${LIBBUILD_DIR} || mkdir ${LIBBUILD_DIR} || have_lib_dir=no;
@@ -75444,7 +34753,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test x${have_lib_dir} = xyes; then
    echo "Using sysio library directory ${LIBBUILD_DIR}"
  else
-@@ -3720,10 +4380,9 @@
+@@ -3720,10 +4380,9 @@ fi
  
  
  
@@ -75457,7 +34766,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	 yes) ;;
  	 no) ;;
  	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-native-driver" >&5
-@@ -3732,7 +4391,8 @@
+@@ -3732,7 +4391,8 @@ echo "$as_me: error: bad value ${withval} for --with-native-driver" >&2;}
  	esac;
  else
    with_native_driver=yes;
@@ -75467,7 +34776,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  
  if test x$with_native_driver = xyes; then
-@@ -3745,10 +4405,9 @@
+@@ -3745,10 +4405,9 @@ fi
  
  
  
@@ -75480,7 +34789,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	 yes) ;;
  	 no) ;;
  	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-incore-driver" >&5
-@@ -3757,7 +4416,8 @@
+@@ -3757,7 +4416,8 @@ echo "$as_me: error: bad value ${withval} for --with-incore-driver" >&2;}
  	esac
  else
    with_incore_driver=yes
@@ -75490,7 +34799,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  
  if test x$with_incore_driver = xyes; then
-@@ -3770,10 +4430,9 @@
+@@ -3770,10 +4430,9 @@ fi
  
  
  
@@ -75503,7 +34812,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	 yes) ;;
  	 no) ;;
  	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-tests" >&5
-@@ -3782,7 +4441,8 @@
+@@ -3782,7 +4441,8 @@ echo "$as_me: error: bad value ${withval} for --with-tests" >&2;}
  	esac
  else
    with_tests=yes
@@ -75513,7 +34822,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  
  if test x$with_tests = xyes; then
-@@ -3795,22 +4455,21 @@
+@@ -3795,22 +4455,21 @@ fi
  
  
  
@@ -75542,7 +34851,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	 yes) ;;
  	 no) ;;
  	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-stdfd-dev" >&5
-@@ -3819,7 +4478,8 @@
+@@ -3819,7 +4478,8 @@ echo "$as_me: error: bad value ${withval} for --with-stdfd-dev" >&2;}
  	esac
  else
    with_stdfd_dev=yes
@@ -75552,7 +34861,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  
  if test x$with_stdfd_dev = xyes; then
-@@ -3832,10 +4492,9 @@
+@@ -3832,10 +4492,9 @@ fi
  
  
  
@@ -75565,17 +34874,17 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	 yes) ZERO_SUM_MEMORY=-DZERO_SUM_MEMORY=1 ;;
  	 no) ;;
  	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-zero-sum-memory" >&5
-@@ -3844,14 +4503,14 @@
+@@ -3844,14 +4503,14 @@ echo "$as_me: error: bad value ${withval} for --with-zero-sum-memory" >&2;}
  	esac
  else
    with_zero_sum_memory=no
 -fi;
 +fi
++
  
  
  
 -# Check whether --with-defer-init-cwd or --without-defer-init-cwd was given.
-+
 +# Check whether --with-defer-init-cwd was given.
  if test "${with_defer_init_cwd+set}" = set; then
 -  withval="$with_defer_init_cwd"
@@ -75584,17 +34893,17 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	 yes) DEFER_INIT_CWD=-DDEFER_INIT_CWD=1 ;;
  	 no) ;;
  	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-defer-init-cwd" >&5
-@@ -3860,14 +4519,14 @@
+@@ -3860,14 +4519,14 @@ echo "$as_me: error: bad value ${withval} for --with-defer-init-cwd" >&2;}
  	esac
  else
    with_defer_init_cwd=no
 -fi;
 +fi
++
  
  
  
 -# Check whether --with-tracing or --without-tracing was given.
-+
 +# Check whether --with-tracing was given.
  if test "${with_tracing+set}" = set; then
 -  withval="$with_tracing"
@@ -75603,7 +34912,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	 yes) TRACING=-DSYSIO_TRACING=1 ;;
  	 no) ;;
  	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-tracing" >&5
-@@ -3876,14 +4535,14 @@
+@@ -3876,14 +4535,14 @@ echo "$as_me: error: bad value ${withval} for --with-tracing" >&2;}
  	esac
  else
    TRACING=-DSYSIO_TRACING=1
@@ -75622,7 +34931,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	yes) if test x${with_stdfd_dev} != xyes; then
  		with_stdfd_dev=yes
  
-@@ -3904,7 +4563,8 @@
+@@ -3904,7 +4563,8 @@ echo "$as_me: error: bad value ${withval} for --with-cplant-yod" >&2;}
  	esac
  else
    with_cplant_yod=no
@@ -75632,7 +34941,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  
  if test x$with_cplant_yod = xyes; then
-@@ -3917,10 +4577,9 @@
+@@ -3917,10 +4577,9 @@ fi
  
  
  
@@ -75645,7 +34954,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	yes) { { echo "$as_me:$LINENO: error: need path to compiler for --with-cplant-tests" >&5
  echo "$as_me: error: need path to compiler for --with-cplant-tests" >&2;}
     { (exit 1); exit 1; }; };;
-@@ -3929,9 +4588,9 @@
+@@ -3929,9 +4588,9 @@ echo "$as_me: error: need path to compiler for --with-cplant-tests" >&2;}
  	   CCDEPMODE=${CC}
  	   CPP="${CC} -E"
  	   as_ac_File=`echo "ac_cv_file_${CC}" | $as_tr_sh`
@@ -75658,7 +34967,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
    test "$cross_compiling" = yes &&
-@@ -3944,8 +4603,9 @@
+@@ -3944,8 +4603,9 @@ else
    eval "$as_ac_File=no"
  fi
  fi
@@ -75670,7 +34979,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test `eval echo '${'$as_ac_File'}'` = yes; then
     if test x${with_cplant_yod} != xyes; then
                  	with_cplant_yod=yes
-@@ -3969,7 +4629,8 @@
+@@ -3969,7 +4629,8 @@ fi
  	esac
  else
    with_cplant_tests=no
@@ -75680,7 +34989,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  
  if test x$with_cplant_tests != xno; then
-@@ -3982,10 +4643,9 @@
+@@ -3982,10 +4643,9 @@ fi
  
  
  
@@ -75693,7 +35002,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	 yes) ;;
  	 no) ;;
  	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-sockets" >&5
-@@ -3994,7 +4654,8 @@
+@@ -3994,7 +4654,8 @@ echo "$as_me: error: bad value ${withval} for --with-sockets" >&2;}
  	esac
  else
    with_sockets=no
@@ -75703,7 +35012,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  
  if test x$with_sockets = xyes; then
-@@ -4007,10 +4668,9 @@
+@@ -4007,10 +4668,9 @@ fi
  
  
  
@@ -75716,7 +35025,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	 yes) ;;
  	 no) ;;
  	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-lustre-hack" >&5
-@@ -4019,7 +4679,8 @@
+@@ -4019,7 +4679,8 @@ echo "$as_me: error: bad value ${withval} for --with-lustre-hack" >&2;}
  	esac
  else
    with_lustre_hack=no
@@ -75726,7 +35035,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  
  if test x$with_lustre_hack = xyes; then
-@@ -4038,15 +4699,15 @@
+@@ -4038,15 +4699,15 @@ _ACEOF
  fi
  
  
@@ -75746,7 +35055,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  
  # We keep the original values in `$config_*' and never modify them, so we
-@@ -4121,8 +4782,8 @@
+@@ -4121,8 +4782,8 @@ _ACEOF
  	;;
  esac
  
@@ -75757,7 +35066,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4146,27 +4807,22 @@
+@@ -4146,42 +4807,38 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -75796,8 +35105,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    symlink_support="yes"
  else
    echo "$as_me: failed program was:" >&5
-@@ -4175,13 +4831,14 @@
- symlink_support="no"
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+-symlink_support="no"
++	symlink_support="no"
  
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
@@ -75816,7 +35127,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4202,27 +4859,22 @@
+@@ -4202,38 +4859,34 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -75855,8 +35166,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    readlink_returns_int="yes"
  else
    echo "$as_me: failed program was:" >&5
-@@ -4231,9 +4883,10 @@
- readlink_returns_int="no"
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+-readlink_returns_int="no"
++	readlink_returns_int="no"
  
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
@@ -75869,7 +35182,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  	if test x$readlink_returns_int = no; then
  
  cat >>confdefs.h <<\_ACEOF
-@@ -4243,8 +4896,8 @@
+@@ -4243,8 +4896,8 @@ _ACEOF
  	fi
  fi
  
@@ -75880,7 +35193,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4265,30 +4918,25 @@
+@@ -4265,30 +4918,25 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -75924,7 +35237,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  cat >>confdefs.h <<\_ACEOF
  #define HAVE_POSIX_1003_READLINK 1
-@@ -4300,16 +4948,17 @@
+@@ -4300,16 +4948,17 @@ else
  sed 's/^/| /' conftest.$ac_ext >&5
  
  
@@ -75947,7 +35260,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4330,27 +4979,22 @@
+@@ -4330,35 +4979,31 @@ struct stat64 st64;
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -75986,9 +35299,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    sysio_largefile64_source_required=no
  else
    echo "$as_me: failed program was:" >&5
-@@ -4358,7 +5002,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- sysio_largefile64_source_required=maybe
+-sysio_largefile64_source_required=maybe
++	sysio_largefile64_source_required=maybe
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -75996,7 +35310,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test x$sysio_largefile64_source_required = xmaybe; then
  	cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
-@@ -4381,27 +5026,22 @@
+@@ -4381,38 +5026,34 @@ struct stat64 st64;
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -76035,9 +35349,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    sysio_largefile64_source_required=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -4409,10 +5049,11 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- sysio_largefile64_source_required=no
+-sysio_largefile64_source_required=no
++	sysio_largefile64_source_required=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 +
@@ -76050,7 +35365,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test x$sysio_largefile64_source_required = xyes; then
  	cat >>confdefs.h <<\_ACEOF
  #define _LARGEFILE64_SOURCE 1
-@@ -4422,8 +5063,8 @@
+@@ -4422,8 +5063,8 @@ fi
  
  # Alpha linux defines
  #
@@ -76061,7 +35376,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  alpha_linux_env=no
  if test `expr ${machine} : "alpha"` = 5 && \
     test `expr ${os} : "linux"` = 5; then
-@@ -4433,8 +5074,8 @@
+@@ -4433,8 +5074,8 @@ if test `expr ${machine} : "alpha"` = 5 && \
  _ACEOF
  
  fi
@@ -76072,7 +35387,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  
  if test x$alpha_linux_env = xyes; then
-@@ -4448,8 +5089,8 @@
+@@ -4448,8 +5089,8 @@ fi
  
  # Check for __st_ino
  #
@@ -76083,7 +35398,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4468,27 +5109,22 @@
+@@ -4468,37 +5109,33 @@ st.__st_ino = 0;
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -76122,9 +35437,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    have__st_ino=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -4496,9 +5132,10 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- have__st_ino=no
+-have__st_ino=no
++	have__st_ino=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 -echo "$as_me:$LINENO: result: $have__st_ino" >&5
@@ -76136,7 +35452,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test x$have__st_ino = xyes; then
  	cat >>confdefs.h <<\_ACEOF
  #define HAVE__ST_INO 1
-@@ -4508,8 +5145,8 @@
+@@ -4508,8 +5145,8 @@ fi
  
  # Check for st_gen
  #
@@ -76147,7 +35463,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  cat >conftest.$ac_ext <<_ACEOF
  /* confdefs.h.  */
  _ACEOF
-@@ -4528,27 +5165,22 @@
+@@ -4528,37 +5165,33 @@ st.st_gen = 0;
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -76186,9 +35502,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    have_st_gen=yes
  else
    echo "$as_me: failed program was:" >&5
-@@ -4556,9 +5188,10 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
  
- have_st_gen=no
+-have_st_gen=no
++	have_st_gen=no
  fi
 -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 -echo "$as_me:$LINENO: result: $have_st_gen" >&5
@@ -76200,7 +35517,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test x$have_st_gen = xyes; then
  	cat >>confdefs.h <<\_ACEOF
  #define HAVE_GENERATION 1
-@@ -4566,8 +5199,8 @@
+@@ -4566,8 +5199,8 @@ _ACEOF
  
  fi
  
@@ -76211,7 +35528,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  tmp_flags="$CFLAGS"
  CFLAGS="$CFLAGS -Wall -Werror"
  cat >conftest.$ac_ext <<_ACEOF
-@@ -4594,50 +5227,46 @@
+@@ -4594,50 +5227,46 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -76281,7 +35598,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  tmp_flags="$CFLAGS"
  CFLAGS="$CFLAGS -Wall -Werror"
  cat >conftest.$ac_ext <<_ACEOF
-@@ -4670,51 +5299,47 @@
+@@ -4670,51 +5299,47 @@ main ()
  }
  _ACEOF
  rm -f conftest.$ac_objext
@@ -76352,7 +35669,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${am_cv_sysio_asm_dot_text+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -4729,15 +5354,15 @@
+@@ -4729,15 +5354,15 @@ EOF
  fi
  
  if test -z "$am_cv_sysio_asm_dot_text"; then
@@ -76374,7 +35691,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${am_cv_sysio_asm_global_directive+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -4755,8 +5380,8 @@
+@@ -4755,8 +5380,8 @@ EOF
  	test $am_cv_sysio_asm_global_directive != UNKNOWN && break
  done
  fi
@@ -76385,7 +35702,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test $am_cv_sysio_asm_global_directive = UNKNOWN; then
  	{ { echo "$as_me:$LINENO: error: cannot determine asm global directive" >&5
  echo "$as_me: error: cannot determine asm global directive" >&2;}
-@@ -4765,8 +5390,8 @@
+@@ -4765,8 +5390,8 @@ echo "$as_me: error: cannot determine asm global directive" >&2;}
  #	AC_DEFINE_UNQUOTED(ASM_GLOBAL_DIRECTIVE, ${am_cv_sysio_asm_global_directive})
  fi
  
@@ -76396,7 +35713,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${am_cv_sysio_asm_set_directive+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -4790,14 +5415,14 @@
+@@ -4790,14 +5415,14 @@ EOF
  	fi
  	rm -f conftest*
  fi
@@ -76415,7 +35732,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${am_cv_sysio_asm_weak_directive+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -4813,12 +5438,12 @@
+@@ -4813,12 +5438,12 @@ EOF
  	fi
  	rm -f conftest*
  fi
@@ -76432,7 +35749,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  if test "${am_cv_sysio_asm_weakext_directive+set}" = set; then
    echo $ECHO_N "(cached) $ECHO_C" >&6
  else
-@@ -4838,8 +5463,8 @@
+@@ -4838,8 +5463,8 @@ EOF
  		fi
  		rm -f conftest*
  fi
@@ -76443,15 +35760,17 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  fi # no .weak
  
  if test x$am_cv_sysio_asm_weak_directive = xyes; then
-@@ -4856,6 +5481,7 @@
+@@ -4855,7 +5480,8 @@ _ACEOF
+ 
  fi
  
-                     ac_config_files="$ac_config_files Makefile tests/Makefile"
+-                    ac_config_files="$ac_config_files Makefile tests/Makefile"
++ac_config_files="$ac_config_files Makefile tests/Makefile"
 +
  cat >confcache <<\_ACEOF
  # This file is a shell script that caches the results of configure
  # tests run on this system so they can be shared between configure
-@@ -4874,39 +5500,58 @@
+@@ -4874,39 +5500,58 @@ _ACEOF
  
  # The following way of writing the cache mishandles newlines in values,
  # but we know of no workaround that is simple, portable, and efficient.
@@ -76502,15 +35821,17 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    sed '
 +     /^ac_cv_env_/b end
       t clear
-      : clear
+-     : clear
++     :clear
       s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
       t end
 -     /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
-+     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
-      : end' >>confcache
+-     : end' >>confcache
 -if diff $cache_file confcache >/dev/null 2>&1; then :; else
 -  if test -w $cache_file; then
 -    test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
++     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
++     :end' >>confcache
 +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
 +  if test -w "$cache_file"; then
 +    test "x$cache_file" != "x/dev/null" &&
@@ -76524,7 +35845,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    fi
  fi
  rm -f confcache
-@@ -4915,63 +5560,48 @@
+@@ -4915,63 +5560,48 @@ test "x$prefix" = xNONE && prefix=$ac_default_prefix
  # Let make expand exec_prefix.
  test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  
@@ -76554,31 +35875,21 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -cat >confdef2opt.sed <<\_ACEOF
 +ac_script='
  t clear
- : clear
+-: clear
 -s,^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*([^)]*)\)[	 ]*\(.*\),-D\1=\2,g
++:clear
 +s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*([^)]*)\)[	 ]*\(.*\)/-D\1=\2/g
  t quote
 -s,^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 ][^	 ]*\)[	 ]*\(.*\),-D\1=\2,g
 +s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 ][^	 ]*\)[	 ]*\(.*\)/-D\1=\2/g
  t quote
 -d
-+b any
- : quote
+-: quote
 -s,[	 `~#$^&*(){}\\|;'"<>?],\\&,g
 -s,\[,\\&,g
 -s,\],\\&,g
 -s,\$,$$,g
-+s/[	 `~#$^&*(){}\\|;'\''"<>?]/\\&/g
-+s/\[/\\&/g
-+s/\]/\\&/g
-+s/\$/$$/g
-+H
-+:any
-+${
-+	g
-+	s/^\n//
-+	s/\n/ /g
- p
+-p
 -_ACEOF
 -# We use echo to avoid assuming a particular line-breaking character.
 -# The extra dot is to prevent the shell from consuming trailing
@@ -76589,6 +35900,19 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -ac_LF_and_DOT=`echo; echo .`
 -DEFS=`sed -n -f confdef2opt.sed confdefs.h | tr "$ac_LF_and_DOT" ' .'`
 -rm -f confdef2opt.sed
++b any
++:quote
++s/[	 `~#$^&*(){}\\|;'\''"<>?]/\\&/g
++s/\[/\\&/g
++s/\]/\\&/g
++s/\$/$$/g
++H
++:any
++${
++	g
++	s/^\n//
++	s/\n/ /g
++	p
 +}
 +'
 +DEFS=`sed -n "$ac_script" confdefs.h`
@@ -76612,7 +35936,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  done
  LIBOBJS=$ac_libobjs
  
-@@ -5093,73 +5723,26 @@
+@@ -5093,17 +5723,45 @@ cat >>$CONFIG_STATUS <<\_ACEOF
  ## M4sh Initialization.  ##
  ## --------------------- ##
  
@@ -76627,91 +35951,45 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    alias -g '${1+"$@"}'='"$@"'
 -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
 -  set -o posix
--fi
--DUALCASE=1; export DUALCASE # for MKS sh
--
--# Support unset when possible.
--if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
--  as_unset=unset
--else
--  as_unset=false
--fi
--
--
--# Work around bugs in pre-3.0 UWIN ksh.
--$as_unset ENV MAIL MAILPATH
--PS1='$ '
--PS2='> '
--PS4='+ '
--
--# NLS nuisances.
--for as_var in \
--  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
--  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
--  LC_TELEPHONE LC_TIME
--do
--  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
--    eval $as_var=C; export $as_var
--  else
--    $as_unset $as_var
--  fi
--done
--
--# Required to use basename.
--if expr a : '\(a\)' >/dev/null 2>&1; then
--  as_expr=expr
 +  setopt NO_GLOB_SUBST
- else
--  as_expr=false
--fi
++else
 +  case `(set -o) 2>/dev/null` in
 +  *posix*) set -o posix ;;
 +esac
- 
--if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
--  as_basename=basename
--else
--  as_basename=false
++
++fi
++
++
++
++
++# PATH needs CR
++# Avoid depending upon Character Ranges.
++as_cr_letters='abcdefghijklmnopqrstuvwxyz'
++as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
++as_cr_Letters=$as_cr_letters$as_cr_LETTERS
++as_cr_digits='0123456789'
++as_cr_alnum=$as_cr_Letters$as_cr_digits
++
++# The user is always right.
++if test "${PATH_SEPARATOR+set}" != set; then
++  echo "#! /bin/sh" >conf$$.sh
++  echo  "exit 0"   >>conf$$.sh
++  chmod +x conf$$.sh
++  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
++    PATH_SEPARATOR=';'
++  else
++    PATH_SEPARATOR=:
++  fi
++  rm -f conf$$.sh
  fi
+-DUALCASE=1; export DUALCASE # for MKS sh
  
- 
--# Name of the executable.
--as_me=`$as_basename "$0" ||
--$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
--	 X"$0" : 'X\(//\)$' \| \
--	 X"$0" : 'X\(/\)$' \| \
--	 .     : '\(.\)' 2>/dev/null ||
--echo X/"$0" |
--    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
--  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
--  	  /^X\/\(\/\).*/{ s//\1/; q; }
--  	  s/.*/./; q'`
- 
- 
--# PATH needs CR, and LINENO needs CR and PATH.
-+# PATH needs CR
- # Avoid depending upon Character Ranges.
- as_cr_letters='abcdefghijklmnopqrstuvwxyz'
- as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-@@ -5180,14 +5763,24 @@
-   rm -f conf$$.sh
+ # Support unset when possible.
+ if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
+@@ -5113,8 +5771,43 @@ else
  fi
  
-+# Support unset when possible.
-+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
-+  as_unset=unset
-+else
-+  as_unset=false
-+fi
  
--  as_lineno_1=$LINENO
--  as_lineno_2=$LINENO
--  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
--  test "x$as_lineno_1" != "x$as_lineno_2" &&
--  test "x$as_lineno_3"  = "x$as_lineno_2"  || {
--  # Find who we are.  Look in the path if we contain no path at all
--  # relative or not.
-+
 +# IFS
 +# We need space, tab and new line, in precisely that order.  Quoting is
 +# there to prevent editors from complaining about space-tab.
@@ -76722,80 +36000,76 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +IFS=" ""	$as_nl"
 +
 +# Find who we are.  Look in the path if we contain no directory separator.
-   case $0 in
-     *[\\/]* ) as_myself=$0 ;;
-     *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-@@ -5197,6 +5790,7 @@
-   test -z "$as_dir" && as_dir=.
-   test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
- done
++case $0 in
++  *[\\/]* ) as_myself=$0 ;;
++  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
++for as_dir in $PATH
++do
++  IFS=$as_save_IFS
++  test -z "$as_dir" && as_dir=.
++  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
++done
 +IFS=$as_save_IFS
- 
-        ;;
-   esac
-@@ -5206,100 +5800,161 @@
-     as_myself=$0
-   fi
-   if test ! -f "$as_myself"; then
--    { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
--echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
--   { (exit 1); exit 1; }; }
++
++     ;;
++esac
++# We did not find ourselves, most probably we were run as `sh COMMAND'
++# in which case we are not to be found in the path.
++if test "x$as_myself" = x; then
++  as_myself=$0
++fi
++if test ! -f "$as_myself"; then
 +  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 +  { (exit 1); exit 1; }
-   fi
--  case $CONFIG_SHELL in
--  '')
--    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
--for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
++fi
 +
-+# Work around bugs in pre-3.0 UWIN ksh.
+ # Work around bugs in pre-3.0 UWIN ksh.
+-$as_unset ENV MAIL MAILPATH
 +for as_var in ENV MAIL MAILPATH
 +do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 +done
-+PS1='$ '
-+PS2='> '
-+PS4='+ '
-+
-+# NLS nuisances.
-+for as_var in \
-+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
-+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
-+  LC_TELEPHONE LC_TIME
- do
--  IFS=$as_save_IFS
--  test -z "$as_dir" && as_dir=.
--  for as_base in sh bash ksh sh5; do
--	 case $as_dir in
--	 /*)
--	   if ("$as_dir/$as_base" -c '
-+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
-+    eval $as_var=C; export $as_var
-+  else
+ PS1='$ '
+ PS2='> '
+ PS4='+ '
+@@ -5128,18 +5821,19 @@ do
+   if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
+     eval $as_var=C; export $as_var
+   else
+-    $as_unset $as_var
 +    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
-+  fi
-+done
-+
-+# Required to use basename.
+   fi
+ done
+ 
+ # Required to use basename.
+-if expr a : '\(a\)' >/dev/null 2>&1; then
 +if expr a : '\(a\)' >/dev/null 2>&1 &&
 +   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-+  as_expr=expr
-+else
-+  as_expr=false
-+fi
-+
+   as_expr=expr
+ else
+   as_expr=false
+ fi
+ 
+-if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
 +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
-+  as_basename=basename
-+else
-+  as_basename=false
-+fi
-+
-+
-+# Name of the executable.
+   as_basename=basename
+ else
+   as_basename=false
+@@ -5147,159 +5841,120 @@ fi
+ 
+ 
+ # Name of the executable.
+-as_me=`$as_basename "$0" ||
 +as_me=`$as_basename -- "$0" ||
-+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
-+	 X"$0" : 'X\(//\)$' \| \
+ $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+ 	 X"$0" : 'X\(//\)$' \| \
+-	 X"$0" : 'X\(/\)$' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
 +	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-+echo X/"$0" |
+ echo X/"$0" |
+-    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
+-  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\/\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^.*\/\([^/][^/]*\)\/*$/{
 +	    s//\1/
 +	    q
@@ -76809,16 +36083,76 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +	    q
 +	  }
 +	  s/.*/./; q'`
-+
+ 
 +# CDPATH.
 +$as_unset CDPATH
-+
-+
-+
+ 
+-# PATH needs CR, and LINENO needs CR and PATH.
+-# Avoid depending upon Character Ranges.
+-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+-as_cr_digits='0123456789'
+-as_cr_alnum=$as_cr_Letters$as_cr_digits
+-
+-# The user is always right.
+-if test "${PATH_SEPARATOR+set}" != set; then
+-  echo "#! /bin/sh" >conf$$.sh
+-  echo  "exit 0"   >>conf$$.sh
+-  chmod +x conf$$.sh
+-  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
+-    PATH_SEPARATOR=';'
+-  else
+-    PATH_SEPARATOR=:
+-  fi
+-  rm -f conf$$.sh
+-fi
+ 
+ 
    as_lineno_1=$LINENO
    as_lineno_2=$LINENO
 -  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
    test "x$as_lineno_1" != "x$as_lineno_2" &&
+-  test "x$as_lineno_3"  = "x$as_lineno_2"  || {
+-  # Find who we are.  Look in the path if we contain no path at all
+-  # relative or not.
+-  case $0 in
+-    *[\\/]* ) as_myself=$0 ;;
+-    *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in $PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+-done
+-
+-       ;;
+-  esac
+-  # We did not find ourselves, most probably we were run as `sh COMMAND'
+-  # in which case we are not to be found in the path.
+-  if test "x$as_myself" = x; then
+-    as_myself=$0
+-  fi
+-  if test ! -f "$as_myself"; then
+-    { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
+-echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
+-   { (exit 1); exit 1; }; }
+-  fi
+-  case $CONFIG_SHELL in
+-  '')
+-    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+-for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
+-do
+-  IFS=$as_save_IFS
+-  test -z "$as_dir" && as_dir=.
+-  for as_base in sh bash ksh sh5; do
+-	 case $as_dir in
+-	 /*)
+-	   if ("$as_dir/$as_base" -c '
+-  as_lineno_1=$LINENO
+-  as_lineno_2=$LINENO
+-  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
+-  test "x$as_lineno_1" != "x$as_lineno_2" &&
 -  test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
 -	     $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
 -	     $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
@@ -76860,8 +36194,9 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +      :lineno
        N
 -      s,$,-,
-       : loop
+-      : loop
 -      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
++      :loop
 +      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
        t loop
 -      s,-$,,
@@ -76929,16 +36264,16 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
 -  if test -f conf$$.exe; then
 -    # Don't use ln at all; we don't have any links
--    as_ln_s='cp -p'
--  else
-     as_ln_s='ln -s'
--  fi
++  as_ln_s='ln -s'
 +  # ... but there are two gotchas:
 +  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 +  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 +  # In both cases, we have to default to `cp -p'.
 +  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-+    as_ln_s='cp -p'
+     as_ln_s='cp -p'
+-  else
+-    as_ln_s='ln -s'
+-  fi
  elif ln conf$$.file conf$$ 2>/dev/null; then
    as_ln_s=ln
  else
@@ -76950,7 +36285,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  if mkdir -p . 2>/dev/null; then
    as_mkdir_p=:
-@@ -5308,7 +5963,28 @@
+@@ -5308,7 +5963,28 @@ else
    as_mkdir_p=false
  fi
  
@@ -76980,7 +36315,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  # Sed expression to map a string onto a valid CPP name.
  as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-@@ -5317,31 +5993,14 @@
+@@ -5317,31 +5993,14 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  
  
@@ -77016,7 +36351,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
    CONFIG_FILES    = $CONFIG_FILES
    CONFIG_HEADERS  = $CONFIG_HEADERS
-@@ -5349,30 +6008,19 @@
+@@ -5349,30 +6008,19 @@ generated by GNU Autoconf 2.59.  Invocation command line was
    CONFIG_COMMANDS = $CONFIG_COMMANDS
    $ $0 $@
  
@@ -77037,13 +36372,13 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -if test -n "$ac_config_headers"; then
 -  echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
 -fi
--
--if test -n "$ac_config_links"; then
--  echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
--fi
 +config_files="$ac_config_files"
 +config_commands="$ac_config_commands"
  
+-if test -n "$ac_config_links"; then
+-  echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
+-fi
+-
 -if test -n "$ac_config_commands"; then
 -  echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
 -fi
@@ -77054,7 +36389,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  ac_cs_usage="\
  \`$as_me' instantiates files from templates according to the
  current configuration.
-@@ -5380,7 +6028,7 @@
+@@ -5380,7 +6028,7 @@ current configuration.
  Usage: $0 [OPTIONS] [FILE]...
  
    -h, --help       print this help, then exit
@@ -77063,7 +36398,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    -q, --quiet      do not print progress messages
    -d, --debug      don't remove temporary files
        --recheck    update $as_me by reconfiguring in the same conditions
-@@ -5394,19 +6042,21 @@
+@@ -5394,19 +6042,21 @@ Configuration commands:
  $config_commands
  
  Report bugs to <bug-autoconf at gnu.org>."
@@ -77091,7 +36426,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  _ACEOF
  
  cat >>$CONFIG_STATUS <<\_ACEOF
-@@ -5417,60 +6067,42 @@
+@@ -5417,60 +6067,42 @@ while test $# != 0
  do
    case $1 in
    --*=*)
@@ -77164,7 +36499,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
    esac
    shift
-@@ -5486,37 +6118,49 @@
+@@ -5486,37 +6118,49 @@ fi
  _ACEOF
  cat >>$CONFIG_STATUS <<_ACEOF
  if \$ac_cs_recheck; then
@@ -77207,11 +36542,13 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  do
 -  case "$ac_config_target" in
 -  # Handling of arguments.
+-  "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+-  "tests/Makefile" ) CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
+-  "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
 +  case $ac_config_target in
 +    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
-   "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
-   "tests/Makefile" ) CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
--  "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
++    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
++    "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
 +
    *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
  echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
@@ -77223,7 +36560,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  # If the user did not use the arguments to specify the items to instantiate,
  # then the envvar interface is used.  Set only those that are not.
  # We use the long form for the default assignment because of an extremely
-@@ -5527,364 +6171,468 @@
+@@ -5527,364 +6171,468 @@ if $ac_need_defaults; then
  fi
  
  # Have a temporary directory for convenience.  Make it in the build tree
@@ -77404,6 +36741,30 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  while $ac_more_lines; do
 -    if test $ac_beg -gt 1; then
 -      sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
+-    else
+-      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
+-    fi
+-    if test ! -s $tmp/subs.frag; then
+-      ac_more_lines=false
+-    else
+-      # The purpose of the label and of the branching condition is to
+-      # speed up the sed processing (if there are no `@' at all, there
+-      # is no need to browse any of the substitutions).
+-      # These are the two extra sed commands mentioned above.
+-      (echo ':t
+-  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
+-      if test -z "$ac_sed_cmds"; then
+-	ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
+-      else
+-	ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
+-      fi
+-      ac_sed_frag=`expr $ac_sed_frag + 1`
+-      ac_beg=$ac_end
+-      ac_end=`expr $ac_end + $ac_max_sed_lines`
+-    fi
+-  done
+-  if test -z "$ac_sed_cmds"; then
+-    ac_sed_cmds=cat
 +
 +
 +ac_delim='%!_!# '
@@ -77514,33 +36875,17 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
 +echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
 +   { (exit 1); exit 1; }; }
-     else
--      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
++  else
 +    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-     fi
--    if test ! -s $tmp/subs.frag; then
--      ac_more_lines=false
--    else
--      # The purpose of the label and of the branching condition is to
--      # speed up the sed processing (if there are no `@' at all, there
--      # is no need to browse any of the substitutions).
--      # These are the two extra sed commands mentioned above.
--      (echo ':t
--  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
--      if test -z "$ac_sed_cmds"; then
--	ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
--      else
--	ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
+   fi
+-fi # test -n "$CONFIG_FILES"
 +done
-+
+ 
 +ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
 +if test -n "$ac_eof"; then
 +  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
 +  ac_eof=`expr $ac_eof + 1`
-       fi
--      ac_sed_frag=`expr $ac_sed_frag + 1`
--      ac_beg=$ac_end
--      ac_end=`expr $ac_end + $ac_max_sed_lines`
++fi
 +
 +cat >>$CONFIG_STATUS <<_ACEOF
 +cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof
@@ -77558,7 +36903,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +rm -f conf$$subs.sed
 +cat >>$CONFIG_STATUS <<_ACEOF
 +CEOF$ac_eof
-+_ACEOF
+ _ACEOF
 +
 +
 +ac_delim='%!_!# '
@@ -77590,18 +36935,15 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +   { (exit 1); exit 1; }; }
 +  else
 +    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-     fi
-   done
--  if test -z "$ac_sed_cmds"; then
--    ac_sed_cmds=cat
++  fi
++done
 +
 +ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
 +if test -n "$ac_eof"; then
 +  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
 +  ac_eof=`expr $ac_eof + 1`
-   fi
--fi # test -n "$CONFIG_FILES"
- 
++fi
++
 +cat >>$CONFIG_STATUS <<_ACEOF
 +cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof
 +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end
@@ -77620,7 +36962,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +:end
 +s/|#_!!_#|//g
 +CEOF$ac_eof
- _ACEOF
++_ACEOF
 +
 +
 +# VPATH may cause trouble with some makes, so we remove $(srcdir),
@@ -77664,7 +37006,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +   { (exit 1); exit 1; }; };;
 +  :[FH]-) ac_tag=-:-;;
 +  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
-   esac
++  esac
 +  ac_save_IFS=$IFS
 +  IFS=:
 +  set x $ac_tag
@@ -77672,9 +37014,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +  shift
 +  ac_file=$1
 +  shift
- 
--  # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
--  ac_dir=`(dirname "$ac_file") 2>/dev/null ||
++
 +  case $ac_mode in
 +  :L) ac_source=$1;;
 +  :[FH])
@@ -77713,8 +37053,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +    *:-:* | *:-) cat >"$tmp/stdin";;
 +    esac
 +    ;;
-+  esac
-+
+   esac
+ 
+-  # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
+-  ac_dir=`(dirname "$ac_file") 2>/dev/null ||
 +  ac_dir=`$as_dirname -- "$ac_file" ||
  $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  	 X"$ac_file" : 'X\(//\)[^/]' \| \
@@ -77727,6 +37069,11 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-  { if $as_mkdir_p; then
+-    mkdir -p "$ac_dir"
+-  else
+-    as_dir="$ac_dir"
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -77743,11 +37090,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
--  { if $as_mkdir_p; then
--    mkdir -p "$ac_dir"
--  else
--    as_dir="$ac_dir"
++	  s/.*/./; q'`
 +  { as_dir="$ac_dir"
 +  case $as_dir in #(
 +  -*) as_dir=./$as_dir;;
@@ -77775,6 +37118,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -77791,7 +37135,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
 +      test -d "$as_dir" && break
      done
 -    test ! -n "$as_dirs" || mkdir $as_dirs
@@ -77920,11 +37264,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  fi
 -  configure_input=$configure_input"Generated from `echo $ac_file_in |
 -				     sed 's,.*/,,'` by configure."
-+cat >>$CONFIG_STATUS <<\_ACEOF
-+# If the template does not know about datarootdir, expand it.
-+# FIXME: This hack should be removed a few years after 2.60.
-+ac_datarootdir_hack=; ac_datarootdir_seen=
- 
+-
 -  # First look for the input files in the build tree, otherwise in the
 -  # src tree.
 -  ac_file_inputs=`IFS=:
@@ -77950,6 +37290,13 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -echo "$as_me: error: cannot find input file: $f" >&2;}
 -   { (exit 1); exit 1; }; }
 -	 fi;;
+-      esac
+-    done` || { (exit 1); exit 1; }
++cat >>$CONFIG_STATUS <<\_ACEOF
++# If the template does not know about datarootdir, expand it.
++# FIXME: This hack should be removed a few years after 2.60.
++ac_datarootdir_hack=; ac_datarootdir_seen=
++
 +case `sed -n '/datarootdir/ {
 +  p
 +  q
@@ -77973,8 +37320,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +  s&@localedir@&$localedir&g
 +  s&@mandir@&$mandir&g
 +    s&\\\${datarootdir}&$datarootdir&g' ;;
-       esac
--    done` || { (exit 1); exit 1; }
++esac
  _ACEOF
 +
 +# Neutralize VPATH when `$srcdir' = `.'.
@@ -77983,7 +37329,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  cat >>$CONFIG_STATUS <<_ACEOF
    sed "$ac_vpsub
  $extrasub
-@@ -5892,142 +6640,43 @@
+@@ -5892,142 +6640,43 @@ _ACEOF
  cat >>$CONFIG_STATUS <<\_ACEOF
  :t
  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
@@ -78054,6 +37400,14 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -   { (exit 1); exit 1; }; }; }
 -
 -  ac_builddir=.
+-
+-if test "$ac_dir" != .; then
+-  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
+-  # A "../" for each directory in $ac_dir_suffix.
+-  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+-else
+-  ac_dir_suffix= ac_top_builddir=
+-fi
 +s&@configure_input@&$configure_input&;t t
 +s&@top_builddir@&$ac_top_builddir_sub&;t t
 +s&@srcdir@&$ac_srcdir&;t t
@@ -78066,14 +37420,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +s&@INSTALL@&$ac_INSTALL&;t t
 +$ac_datarootdir_hack
 +" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out
- 
--if test "$ac_dir" != .; then
--  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
--  # A "../" for each directory in $ac_dir_suffix.
--  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
--else
--  ac_dir_suffix= ac_top_builddir=
--fi
++
 +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
 +  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
 +  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
@@ -78081,6 +37428,13 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +which seems to be undefined.  Please make sure it is defined." >&5
 +echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 +which seems to be undefined.  Please make sure it is defined." >&2;}
++
++  rm -f "$tmp/stdin"
++  case $ac_file in
++  -) cat "$tmp/out"; rm -f "$tmp/out";;
++  *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
++  esac
++ ;;
  
 -case $srcdir in
 -  .)  # No --srcdir option.  We are building in place.
@@ -78096,12 +37450,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  *) # Relative path.
 -    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
 -    ac_top_srcdir=$ac_top_builddir$srcdir ;;
-+  rm -f "$tmp/stdin"
-+  case $ac_file in
-+  -) cat "$tmp/out"; rm -f "$tmp/out";;
-+  *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
- esac
-+ ;;
+-esac
  
 -# Do not use `cd foo && pwd` to compute absolute paths, because
 -# the directories may not exist.
@@ -78140,11 +37489,11 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
 -  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
 -  esac;;
-+
+-esac
 +  :C)  { echo "$as_me:$LINENO: executing $ac_file commands" >&5
 +echo "$as_me: executing $ac_file commands" >&6;}
 + ;;
- esac
++  esac
  
  
 -  { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
@@ -78156,7 +37505,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
    # Strip MF so we end up with the name of the file.
    mf=`echo "$mf" | sed -e 's/:.*$//'`
    # Check whether this is an Automake generated Makefile or not.
-@@ -6037,86 +6686,129 @@
+@@ -6037,86 +6686,129 @@ echo "$as_me: executing $ac_dest commands" >&6;}
    # each Makefile.in and add a new line on top of each file to say so.
    # So let's grep whole file.
    if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
@@ -78173,6 +37522,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -78189,7 +37539,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
    else
      continue
    fi
@@ -78243,6 +37593,11 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
+-    { if $as_mkdir_p; then
+-    mkdir -p $dirpart/$fdir
+-  else
+-    as_dir=$dirpart/$fdir
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -78259,11 +37614,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
--    { if $as_mkdir_p; then
--    mkdir -p $dirpart/$fdir
--  else
--    as_dir=$dirpart/$fdir
++	  s/.*/./; q'`
 +    { as_dir=$dirpart/$fdir
 +  case $as_dir in #(
 +  -*) as_dir=./$as_dir;;
@@ -78291,6 +37642,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 -  	  /^X\(\/\/\)$/{ s//\1/; q; }
 -  	  /^X\(\/\).*/{ s//\1/; q; }
+-  	  s/.*/./; q'`
 +    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 +	    s//\1/
 +	    q
@@ -78307,7 +37659,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
 +	    s//\1/
 +	    q
 +	  }
-   	  s/.*/./; q'`
++	  s/.*/./; q'`
 +      test -d "$as_dir" && break
      done
 -    test ! -n "$as_dirs" || mkdir $as_dirs
@@ -78333,9 +37685,10 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/configure lustre-1.8.2/libsysio/configure
  
  { (exit 0); exit 0; }
  _ACEOF
-diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/tests/Makefile.in
---- orig/lustre-1.8.2/libsysio/tests/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/libsysio/tests/Makefile.in	2010-03-03 16:00:17.008633253 +0000
+diff --git a/libsysio/tests/Makefile.in b/libsysio/tests/Makefile.in
+index 88e90b2..e41dc79 100644
+--- a/libsysio/tests/Makefile.in
++++ b/libsysio/tests/Makefile.in
 @@ -1,8 +1,8 @@
 -# Makefile.in generated by automake 1.9.6 from Makefile.am.
 +# Makefile.in generated by automake 1.7.9 from Makefile.am.
@@ -78356,7 +37709,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  srcdir = @srcdir@
  top_srcdir = @top_srcdir@
  VPATH = @srcdir@
-@@ -22,6 +21,7 @@
+@@ -22,6 +21,7 @@ pkgdatadir = $(datadir)/@PACKAGE@
  pkglibdir = $(libdir)/@PACKAGE@
  pkgincludedir = $(includedir)/@PACKAGE@
  top_builddir = ..
@@ -78364,7 +37717,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  INSTALL = @INSTALL@
  install_sh_DATA = $(install_sh) -c -m 644
-@@ -38,161 +38,6 @@
+@@ -38,161 +38,6 @@ POST_UNINSTALL = :
  build_triplet = @build@
  host_triplet = @host@
  target_triplet = @target@
@@ -78526,7 +37879,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  ACLOCAL = @ACLOCAL@
  AMDEP_FALSE = @AMDEP_FALSE@
  AMDEP_TRUE = @AMDEP_TRUE@
-@@ -216,6 +61,7 @@
+@@ -216,6 +61,7 @@ ECHO_N = @ECHO_N@
  ECHO_T = @ECHO_T@
  EGREP = @EGREP@
  EXEEXT = @EXEEXT@
@@ -78534,7 +37887,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  INSTALL_DATA = @INSTALL_DATA@
  INSTALL_PROGRAM = @INSTALL_PROGRAM@
  INSTALL_SCRIPT = @INSTALL_SCRIPT@
-@@ -223,6 +69,7 @@
+@@ -223,6 +69,7 @@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  LDFLAGS = @LDFLAGS@
  LIBBUILD_DIR = @LIBBUILD_DIR@
  LIBOBJS = @LIBOBJS@
@@ -78542,7 +37895,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  LIBS = $(LIBBUILD_DIR)/libsysio.a
  LTLIBOBJS = @LTLIBOBJS@
  MAKEINFO = @MAKEINFO@
-@@ -261,15 +108,11 @@
+@@ -261,15 +108,11 @@ WITH_TESTS_FALSE = @WITH_TESTS_FALSE@
  WITH_TESTS_TRUE = @WITH_TESTS_TRUE@
  ZERO_SUM_MEMORY = @ZERO_SUM_MEMORY@
  ac_ct_CC = @ac_ct_CC@
@@ -78558,7 +37911,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  bindir = @bindir@
  build = @build@
  build_alias = @build_alias@
-@@ -277,23 +120,29 @@
+@@ -277,23 +120,29 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -78589,7 +37942,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
  sysconfdir = @sysconfdir@
-@@ -302,145 +151,365 @@
+@@ -302,145 +151,365 @@ target_alias = @target_alias@
  target_cpu = @target_cpu@
  target_os = @target_os@
  target_vendor = @target_vendor@
@@ -78935,7 +38288,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  	cd $(top_srcdir) && \
  	  $(AUTOMAKE) --gnu  tests/Makefile
 -.PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 -	@case '$?' in \
 -	  *config.status*) \
 -	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
@@ -78946,12 +38299,14 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
 -
 -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 -	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
- 
+-
 -$(top_srcdir)/configure:  $(am__configure_deps)
 -	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 -$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 -	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++Makefile:  $(srcdir)/Makefile.in  $(top_builddir)/config.status
++	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
++
 +AR = ar
 +libLIBRARIES_INSTALL = $(INSTALL_DATA)
  install-libLIBRARIES: $(lib_LIBRARIES)
@@ -78992,7 +38347,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  	done
  
  clean-libLIBRARIES:
-@@ -499,7 +568,7 @@
+@@ -499,7 +568,7 @@ test_unlink$(EXEEXT): $(test_unlink_OBJECTS) $(test_unlink_DEPENDENCIES)
  	$(LINK) $(test_unlink_LDFLAGS) $(test_unlink_OBJECTS) $(test_unlink_LDADD) $(LIBS)
  
  mostlyclean-compile:
@@ -79001,7 +38356,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  
  distclean-compile:
  	-rm -f *.tab.c
-@@ -570,862 +639,1356 @@
+@@ -570,862 +639,1356 @@ distclean-compile:
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/test_unlink-test_unlink.Po at am__quote@
  
  .c.o:
@@ -80728,7 +40083,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  	unique=`for i in $$list; do \
-@@ -1434,7 +1997,6 @@
+@@ -1434,7 +1997,6 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  	  $(AWK) '    { files[$$0] = 1; } \
  	       END { for (i in files) print i; }'`; \
  	mkid -fID $$unique
@@ -80736,7 +40091,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  
  TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
  		$(TAGS_FILES) $(LISP)
-@@ -1446,11 +2008,10 @@
+@@ -1446,11 +2008,10 @@ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
  	  done | \
  	  $(AWK) '    { files[$$0] = 1; } \
  	       END { for (i in files) print i; }'`; \
@@ -80752,7 +40107,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  ctags: CTAGS
  CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
  		$(TAGS_FILES) $(LISP)
-@@ -1473,9 +2034,13 @@
+@@ -1473,9 +2034,13 @@ GTAGS:
  
  distclean-tags:
  	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -80767,7 +40122,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
  	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
  	list='$(DISTFILES)'; for file in $$list; do \
-@@ -1487,7 +2052,7 @@
+@@ -1487,7 +2052,7 @@ distdir: $(DISTFILES)
  	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
  	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
  	    dir="/$$dir"; \
@@ -80776,7 +40131,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  	  else \
  	    dir=''; \
  	  fi; \
-@@ -1506,10 +2071,9 @@
+@@ -1506,10 +2071,9 @@ check-am: all-am
  check: $(BUILT_SOURCES)
  	$(MAKE) $(AM_MAKEFLAGS) check-am
  all-am: Makefile $(LIBRARIES) $(PROGRAMS)
@@ -80789,7 +40144,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  install: $(BUILT_SOURCES)
  	$(MAKE) $(AM_MAKEFLAGS) install-am
  install-exec: install-exec-am
-@@ -1531,7 +2095,7 @@
+@@ -1531,7 +2095,7 @@ clean-generic:
  	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  
  distclean-generic:
@@ -80798,7 +40153,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  
  maintainer-clean-generic:
  	@echo "This command is intended for maintainers to use"
-@@ -1552,8 +2116,6 @@
+@@ -1552,8 +2116,6 @@ dvi: dvi-am
  
  dvi-am:
  
@@ -80807,7 +40162,7 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  info: info-am
  
  info-am:
-@@ -1590,14 +2152,13 @@
+@@ -1590,14 +2152,13 @@ uninstall-am: uninstall-info-am uninstall-libLIBRARIES
  .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
  	clean-libLIBRARIES clean-noinstPROGRAMS ctags distclean \
  	distclean-compile distclean-generic distclean-tags distdir dvi \
@@ -80829,10 +40184,11 @@ diff -Nurwd orig/lustre-1.8.2/libsysio/tests/Makefile.in lustre-1.8.2/libsysio/t
  
  
  drv_data.c: $(CONFIG_DEPENDENCIES) $(top_srcdir)/tests/gendrvdata.sh
-diff -Nurwd orig/lustre-1.8.2/lnet/autoMakefile.in lustre-1.8.2/lnet/autoMakefile.in
---- orig/lustre-1.8.2/lnet/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/autoMakefile.in	2010-03-03 16:00:10.763633198 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lnet/autoMakefile.in b/lnet/autoMakefile.in
+index 53db956..a855969 100644
+--- a/lnet/autoMakefile.in
++++ b/lnet/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -80846,7 +40202,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/autoMakefile.in lustre-1.8.2/lnet/autoMakefil
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -276,8 +275,6 @@
+@@ -276,8 +275,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -80855,7 +40211,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/autoMakefile.in lustre-1.8.2/lnet/autoMakefil
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -291,8 +288,10 @@
+@@ -291,8 +288,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -80866,7 +40222,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/autoMakefile.in lustre-1.8.2/lnet/autoMakefil
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -300,26 +299,27 @@
+@@ -300,26 +299,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -80897,10 +40253,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/autoMakefile.in lustre-1.8.2/lnet/autoMakefil
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/autoconf/Makefile.in lustre-1.8.2/lnet/autoconf/Makefile.in
---- orig/lustre-1.8.2/lnet/autoconf/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/autoconf/Makefile.in	2010-03-03 16:00:10.811633016 +0000
-@@ -119,12 +119,11 @@
+diff --git a/lnet/autoconf/Makefile.in b/lnet/autoconf/Makefile.in
+index 585a31c..a4ea5b4 100644
+--- a/lnet/autoconf/Makefile.in
++++ b/lnet/autoconf/Makefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -80914,7 +40271,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/autoconf/Makefile.in lustre-1.8.2/lnet/autoco
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -240,8 +239,6 @@
+@@ -240,8 +239,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -80923,7 +40280,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/autoconf/Makefile.in lustre-1.8.2/lnet/autoco
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -255,8 +252,10 @@
+@@ -255,8 +252,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -80934,7 +40291,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/autoconf/Makefile.in lustre-1.8.2/lnet/autoco
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -264,26 +263,27 @@
+@@ -264,26 +263,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -80965,10 +40322,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/autoconf/Makefile.in lustre-1.8.2/lnet/autoco
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/doc/Makefile.in lustre-1.8.2/lnet/doc/Makefile.in
---- orig/lustre-1.8.2/lnet/doc/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/doc/Makefile.in	2010-03-03 16:00:10.859633601 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lnet/doc/Makefile.in b/lnet/doc/Makefile.in
+index d2d66c6..d355ed8 100644
+--- a/lnet/doc/Makefile.in
++++ b/lnet/doc/Makefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -80982,7 +40340,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/doc/Makefile.in lustre-1.8.2/lnet/doc/Makefil
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -276,8 +275,6 @@
+@@ -276,8 +275,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -80991,7 +40349,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/doc/Makefile.in lustre-1.8.2/lnet/doc/Makefil
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -291,8 +288,10 @@
+@@ -291,8 +288,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -81002,7 +40360,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/doc/Makefile.in lustre-1.8.2/lnet/doc/Makefil
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -300,26 +299,27 @@
+@@ -300,26 +299,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -81033,10 +40391,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/doc/Makefile.in lustre-1.8.2/lnet/doc/Makefil
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/include/Makefile.in lustre-1.8.2/lnet/include/Makefile.in
---- orig/lustre-1.8.2/lnet/include/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/include/Makefile.in	2010-03-03 16:00:10.911634342 +0000
-@@ -119,12 +119,11 @@
+diff --git a/lnet/include/Makefile.in b/lnet/include/Makefile.in
+index 5440f67..7279f28 100644
+--- a/lnet/include/Makefile.in
++++ b/lnet/include/Makefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -81050,7 +40409,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/Makefile.in lustre-1.8.2/lnet/include
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -240,8 +239,6 @@
+@@ -240,8 +239,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -81059,7 +40418,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/Makefile.in lustre-1.8.2/lnet/include
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -255,8 +252,10 @@
+@@ -255,8 +252,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -81070,7 +40429,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/Makefile.in lustre-1.8.2/lnet/include
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -264,26 +263,27 @@
+@@ -264,26 +263,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -81101,24 +40460,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/Makefile.in lustre-1.8.2/lnet/include
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/include/libcfs/Makefile.am lustre-1.8.2/lnet/include/libcfs/Makefile.am
---- orig/lustre-1.8.2/lnet/include/libcfs/Makefile.am	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/include/libcfs/Makefile.am	2010-03-03 15:57:14.823633491 +0000
-@@ -1,7 +1,7 @@
- SUBDIRS := linux
--if DARWIN
--SUBDIRS += darwin
--endif
-+#if DARWIN
-+#SUBDIRS += darwin
-+#endif
- DIST_SUBDIRS := $(SUBDIRS)
- 
- EXTRA_DIST := curproc.h kp30.h libcfs.h list.h lltrace.h \
-diff -Nurwd orig/lustre-1.8.2/lnet/include/libcfs/Makefile.in lustre-1.8.2/lnet/include/libcfs/Makefile.in
---- orig/lustre-1.8.2/lnet/include/libcfs/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/include/libcfs/Makefile.in	2010-03-03 16:00:10.963634383 +0000
-@@ -38,7 +38,6 @@
+diff --git a/lnet/include/libcfs/Makefile.in b/lnet/include/libcfs/Makefile.in
+index 5c78540..0d9ccae 100644
+--- a/lnet/include/libcfs/Makefile.in
++++ b/lnet/include/libcfs/Makefile.in
+@@ -38,7 +38,6 @@ POST_UNINSTALL = :
  build_triplet = @build@
  host_triplet = @host@
  target_triplet = @target@
@@ -81126,7 +40472,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/libcfs/Makefile.in lustre-1.8.2/lnet/
  ACLOCAL = @ACLOCAL@
  AC_LUSTRE_CLIENT_URN = @AC_LUSTRE_CLIENT_URN@
  AC_LUSTRE_CLI_VER_OFFSET_WARN = @AC_LUSTRE_CLI_VER_OFFSET_WARN@
-@@ -120,12 +119,11 @@
+@@ -120,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -81140,7 +40486,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/libcfs/Makefile.in lustre-1.8.2/lnet/
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -241,8 +239,6 @@
+@@ -241,8 +239,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -81149,7 +40495,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/libcfs/Makefile.in lustre-1.8.2/lnet/
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -256,8 +252,10 @@
+@@ -256,8 +252,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -81160,7 +40506,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/libcfs/Makefile.in lustre-1.8.2/lnet/
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -265,26 +263,27 @@
+@@ -265,26 +263,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -81191,7 +40537,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/libcfs/Makefile.in lustre-1.8.2/lnet/
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-@@ -295,7 +294,10 @@
+@@ -295,7 +294,10 @@ target_alias = @target_alias@
  target_cpu = @target_cpu@
  target_os = @target_os@
  target_vendor = @target_vendor@
@@ -81203,10 +40549,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/libcfs/Makefile.in lustre-1.8.2/lnet/
  DIST_SUBDIRS := $(SUBDIRS)
  
  EXTRA_DIST := curproc.h kp30.h libcfs.h list.h lltrace.h \
-diff -Nurwd orig/lustre-1.8.2/lnet/include/libcfs/linux/Makefile.in lustre-1.8.2/lnet/include/libcfs/linux/Makefile.in
---- orig/lustre-1.8.2/lnet/include/libcfs/linux/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/include/libcfs/linux/Makefile.in	2010-03-03 16:00:11.011633774 +0000
-@@ -119,12 +119,11 @@
+diff --git a/lnet/include/libcfs/linux/Makefile.in b/lnet/include/libcfs/linux/Makefile.in
+index f821f34..6b5b596 100644
+--- a/lnet/include/libcfs/linux/Makefile.in
++++ b/lnet/include/libcfs/linux/Makefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -81220,7 +40567,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/libcfs/linux/Makefile.in lustre-1.8.2
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -240,8 +239,6 @@
+@@ -240,8 +239,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -81229,7 +40576,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/libcfs/linux/Makefile.in lustre-1.8.2
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -255,8 +252,10 @@
+@@ -255,8 +252,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -81240,7 +40587,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/libcfs/linux/Makefile.in lustre-1.8.2
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -264,26 +263,27 @@
+@@ -264,26 +263,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -81271,42 +40618,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/libcfs/linux/Makefile.in lustre-1.8.2
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/include/libcfs/user-prim.h lustre-1.8.2/lnet/include/libcfs/user-prim.h
---- orig/lustre-1.8.2/lnet/include/libcfs/user-prim.h	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/include/libcfs/user-prim.h	2010-03-03 15:57:14.775659583 +0000
-@@ -139,6 +139,12 @@
- 
- #else
- 
-+#ifndef PAGE_SHIFT
-+#define PAGE_SHIFT 12 /* 4KB page size if not defined */
-+#endif
-+#ifndef PAGE_SIZE
-+#define PAGE_SIZE ((__u64)1 << PAGE_SHIFT)
-+#endif
- #define CFS_PAGE_SIZE                   PAGE_SIZE
- #define CFS_PAGE_SHIFT                  PAGE_SHIFT
- #define CFS_PAGE_MASK                   (~((__u64)CFS_PAGE_SIZE-1))
-diff -Nurwd orig/lustre-1.8.2/lnet/include/lnet/Makefile.am lustre-1.8.2/lnet/include/lnet/Makefile.am
---- orig/lustre-1.8.2/lnet/include/lnet/Makefile.am	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/include/lnet/Makefile.am	2010-03-03 15:57:14.823633491 +0000
-@@ -1,9 +1,9 @@
- lnetdir=$(includedir)/lnet
- 
- SUBDIRS := linux
--if DARWIN
--SUBDIRS += darwin
--endif
-+#if DARWIN
-+#SUBDIRS += darwin
-+#endif
- DIST_SUBDIRS := $(SUBDIRS)
- 
- EXTRA_DIST = api.h api-support.h \
-diff -Nurwd orig/lustre-1.8.2/lnet/include/lnet/Makefile.in lustre-1.8.2/lnet/include/lnet/Makefile.in
---- orig/lustre-1.8.2/lnet/include/lnet/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/include/lnet/Makefile.in	2010-03-03 16:00:11.063634514 +0000
-@@ -38,7 +38,6 @@
+diff --git a/lnet/include/lnet/Makefile.in b/lnet/include/lnet/Makefile.in
+index e974dfc..11ed08e 100644
+--- a/lnet/include/lnet/Makefile.in
++++ b/lnet/include/lnet/Makefile.in
+@@ -38,7 +38,6 @@ POST_UNINSTALL = :
  build_triplet = @build@
  host_triplet = @host@
  target_triplet = @target@
@@ -81314,7 +40630,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/lnet/Makefile.in lustre-1.8.2/lnet/in
  ACLOCAL = @ACLOCAL@
  AC_LUSTRE_CLIENT_URN = @AC_LUSTRE_CLIENT_URN@
  AC_LUSTRE_CLI_VER_OFFSET_WARN = @AC_LUSTRE_CLI_VER_OFFSET_WARN@
-@@ -120,12 +119,11 @@
+@@ -120,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -81328,7 +40644,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/lnet/Makefile.in lustre-1.8.2/lnet/in
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -241,8 +239,6 @@
+@@ -241,8 +239,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -81337,7 +40653,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/lnet/Makefile.in lustre-1.8.2/lnet/in
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -256,8 +252,10 @@
+@@ -256,8 +252,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -81348,7 +40664,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/lnet/Makefile.in lustre-1.8.2/lnet/in
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -265,26 +263,27 @@
+@@ -265,26 +263,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -81379,7 +40695,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/lnet/Makefile.in lustre-1.8.2/lnet/in
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-@@ -297,7 +296,10 @@
+@@ -297,7 +296,10 @@ target_os = @target_os@
  target_vendor = @target_vendor@
  lnetdir = $(includedir)/lnet
  
@@ -81391,10 +40707,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/lnet/Makefile.in lustre-1.8.2/lnet/in
  DIST_SUBDIRS := $(SUBDIRS)
  
  EXTRA_DIST = api.h api-support.h \
-diff -Nurwd orig/lustre-1.8.2/lnet/include/lnet/linux/Makefile.in lustre-1.8.2/lnet/include/lnet/linux/Makefile.in
---- orig/lustre-1.8.2/lnet/include/lnet/linux/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/include/lnet/linux/Makefile.in	2010-03-03 16:00:11.111633075 +0000
-@@ -119,12 +119,11 @@
+diff --git a/lnet/include/lnet/linux/Makefile.in b/lnet/include/lnet/linux/Makefile.in
+index 594eb0c..aa2a1be 100644
+--- a/lnet/include/lnet/linux/Makefile.in
++++ b/lnet/include/lnet/linux/Makefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -81408,7 +40725,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/lnet/linux/Makefile.in lustre-1.8.2/l
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -240,8 +239,6 @@
+@@ -240,8 +239,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -81417,7 +40734,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/lnet/linux/Makefile.in lustre-1.8.2/l
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -255,8 +252,10 @@
+@@ -255,8 +252,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -81428,7 +40745,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/lnet/linux/Makefile.in lustre-1.8.2/l
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -264,26 +263,27 @@
+@@ -264,26 +263,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -81459,10 +40776,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/include/lnet/linux/Makefile.in lustre-1.8.2/l
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/klnds/autoMakefile.in lustre-1.8.2/lnet/klnds/autoMakefile.in
---- orig/lustre-1.8.2/lnet/klnds/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/klnds/autoMakefile.in	2010-03-03 16:00:11.163633680 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lnet/klnds/autoMakefile.in b/lnet/klnds/autoMakefile.in
+index f6303b7..4c6631a 100644
+--- a/lnet/klnds/autoMakefile.in
++++ b/lnet/klnds/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -81476,7 +40794,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/autoMakefile.in lustre-1.8.2/lnet/klnds
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -276,8 +275,6 @@
+@@ -276,8 +275,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -81485,7 +40803,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/autoMakefile.in lustre-1.8.2/lnet/klnds
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -291,8 +288,10 @@
+@@ -291,8 +288,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -81496,7 +40814,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/autoMakefile.in lustre-1.8.2/lnet/klnds
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -300,26 +299,27 @@
+@@ -300,26 +299,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -81527,10 +40845,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/autoMakefile.in lustre-1.8.2/lnet/klnds
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ciblnd/autoMakefile.in lustre-1.8.2/lnet/klnds/ciblnd/autoMakefile.in
---- orig/lustre-1.8.2/lnet/klnds/ciblnd/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/klnds/ciblnd/autoMakefile.in	2010-03-03 16:00:11.215635053 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lnet/klnds/ciblnd/autoMakefile.in b/lnet/klnds/ciblnd/autoMakefile.in
+index 270c603..cf5b531 100644
+--- a/lnet/klnds/ciblnd/autoMakefile.in
++++ b/lnet/klnds/ciblnd/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -81544,7 +40863,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ciblnd/autoMakefile.in lustre-1.8.2/lne
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -81553,7 +40872,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ciblnd/autoMakefile.in lustre-1.8.2/lne
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -81564,7 +40883,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ciblnd/autoMakefile.in lustre-1.8.2/lne
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -81595,10 +40914,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ciblnd/autoMakefile.in lustre-1.8.2/lne
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/klnds/gmlnd/autoMakefile.in lustre-1.8.2/lnet/klnds/gmlnd/autoMakefile.in
---- orig/lustre-1.8.2/lnet/klnds/gmlnd/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/klnds/gmlnd/autoMakefile.in	2010-03-03 16:00:11.267632659 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lnet/klnds/gmlnd/autoMakefile.in b/lnet/klnds/gmlnd/autoMakefile.in
+index d78e07a..5056a7b 100644
+--- a/lnet/klnds/gmlnd/autoMakefile.in
++++ b/lnet/klnds/gmlnd/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -81612,7 +40932,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/gmlnd/autoMakefile.in lustre-1.8.2/lnet
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -81621,7 +40941,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/gmlnd/autoMakefile.in lustre-1.8.2/lnet
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -81632,7 +40952,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/gmlnd/autoMakefile.in lustre-1.8.2/lnet
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -81663,10 +40983,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/gmlnd/autoMakefile.in lustre-1.8.2/lnet
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/klnds/iiblnd/autoMakefile.in lustre-1.8.2/lnet/klnds/iiblnd/autoMakefile.in
---- orig/lustre-1.8.2/lnet/klnds/iiblnd/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/klnds/iiblnd/autoMakefile.in	2010-03-03 16:00:11.319633265 +0000
-@@ -154,12 +154,11 @@
+diff --git a/lnet/klnds/iiblnd/autoMakefile.in b/lnet/klnds/iiblnd/autoMakefile.in
+index 7346143..84a9ae8 100644
+--- a/lnet/klnds/iiblnd/autoMakefile.in
++++ b/lnet/klnds/iiblnd/autoMakefile.in
+@@ -154,12 +154,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -81680,7 +41001,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/iiblnd/autoMakefile.in lustre-1.8.2/lne
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -276,8 +275,6 @@
+@@ -276,8 +275,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -81689,7 +41010,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/iiblnd/autoMakefile.in lustre-1.8.2/lne
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -291,8 +288,10 @@
+@@ -291,8 +288,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -81700,7 +41021,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/iiblnd/autoMakefile.in lustre-1.8.2/lne
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -300,26 +299,27 @@
+@@ -300,26 +299,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -81731,10 +41052,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/iiblnd/autoMakefile.in lustre-1.8.2/lne
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/klnds/mxlnd/autoMakefile.in lustre-1.8.2/lnet/klnds/mxlnd/autoMakefile.in
---- orig/lustre-1.8.2/lnet/klnds/mxlnd/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/klnds/mxlnd/autoMakefile.in	2010-03-03 16:00:11.367633431 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lnet/klnds/mxlnd/autoMakefile.in b/lnet/klnds/mxlnd/autoMakefile.in
+index 8ba84c2..f1ec074 100644
+--- a/lnet/klnds/mxlnd/autoMakefile.in
++++ b/lnet/klnds/mxlnd/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -81748,7 +41070,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/mxlnd/autoMakefile.in lustre-1.8.2/lnet
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -81757,7 +41079,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/mxlnd/autoMakefile.in lustre-1.8.2/lnet
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -81768,7 +41090,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/mxlnd/autoMakefile.in lustre-1.8.2/lnet
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -81799,10 +41121,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/mxlnd/autoMakefile.in lustre-1.8.2/lnet
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/klnds/o2iblnd/autoMakefile.in lustre-1.8.2/lnet/klnds/o2iblnd/autoMakefile.in
---- orig/lustre-1.8.2/lnet/klnds/o2iblnd/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/klnds/o2iblnd/autoMakefile.in	2010-03-03 16:00:11.423633912 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lnet/klnds/o2iblnd/autoMakefile.in b/lnet/klnds/o2iblnd/autoMakefile.in
+index f9d3feb..e9c572a 100644
+--- a/lnet/klnds/o2iblnd/autoMakefile.in
++++ b/lnet/klnds/o2iblnd/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -81816,7 +41139,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/o2iblnd/autoMakefile.in lustre-1.8.2/ln
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -81825,7 +41148,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/o2iblnd/autoMakefile.in lustre-1.8.2/ln
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -81836,7 +41159,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/o2iblnd/autoMakefile.in lustre-1.8.2/ln
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -81867,10 +41190,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/o2iblnd/autoMakefile.in lustre-1.8.2/ln
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/klnds/openiblnd/autoMakefile.in lustre-1.8.2/lnet/klnds/openiblnd/autoMakefile.in
---- orig/lustre-1.8.2/lnet/klnds/openiblnd/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/klnds/openiblnd/autoMakefile.in	2010-03-03 16:00:11.471634142 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lnet/klnds/openiblnd/autoMakefile.in b/lnet/klnds/openiblnd/autoMakefile.in
+index 4f76aaf..e500890 100644
+--- a/lnet/klnds/openiblnd/autoMakefile.in
++++ b/lnet/klnds/openiblnd/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -81884,7 +41208,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/openiblnd/autoMakefile.in lustre-1.8.2/
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -81893,7 +41217,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/openiblnd/autoMakefile.in lustre-1.8.2/
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -81904,7 +41228,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/openiblnd/autoMakefile.in lustre-1.8.2/
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -81935,10 +41259,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/openiblnd/autoMakefile.in lustre-1.8.2/
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ptllnd/autoMakefile.in lustre-1.8.2/lnet/klnds/ptllnd/autoMakefile.in
---- orig/lustre-1.8.2/lnet/klnds/ptllnd/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/klnds/ptllnd/autoMakefile.in	2010-03-03 16:00:11.523633414 +0000
-@@ -119,12 +119,11 @@
+diff --git a/lnet/klnds/ptllnd/autoMakefile.in b/lnet/klnds/ptllnd/autoMakefile.in
+index fdcfc5c..d5027db 100644
+--- a/lnet/klnds/ptllnd/autoMakefile.in
++++ b/lnet/klnds/ptllnd/autoMakefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -81952,7 +41277,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ptllnd/autoMakefile.in lustre-1.8.2/lne
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -241,8 +240,6 @@
+@@ -241,8 +240,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -81961,7 +41286,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ptllnd/autoMakefile.in lustre-1.8.2/lne
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -256,8 +253,10 @@
+@@ -256,8 +253,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -81972,7 +41297,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ptllnd/autoMakefile.in lustre-1.8.2/lne
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -265,26 +264,27 @@
+@@ -265,26 +264,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -82003,10 +41328,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ptllnd/autoMakefile.in lustre-1.8.2/lne
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/klnds/qswlnd/autoMakefile.in lustre-1.8.2/lnet/klnds/qswlnd/autoMakefile.in
---- orig/lustre-1.8.2/lnet/klnds/qswlnd/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/klnds/qswlnd/autoMakefile.in	2010-03-03 16:00:11.575632757 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lnet/klnds/qswlnd/autoMakefile.in b/lnet/klnds/qswlnd/autoMakefile.in
+index dabac58..379a529 100644
+--- a/lnet/klnds/qswlnd/autoMakefile.in
++++ b/lnet/klnds/qswlnd/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -82020,7 +41346,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/qswlnd/autoMakefile.in lustre-1.8.2/lne
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -82029,7 +41355,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/qswlnd/autoMakefile.in lustre-1.8.2/lne
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -82040,7 +41366,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/qswlnd/autoMakefile.in lustre-1.8.2/lne
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -82071,10 +41397,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/qswlnd/autoMakefile.in lustre-1.8.2/lne
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ralnd/autoMakefile.in lustre-1.8.2/lnet/klnds/ralnd/autoMakefile.in
---- orig/lustre-1.8.2/lnet/klnds/ralnd/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/klnds/ralnd/autoMakefile.in	2010-03-03 16:00:11.627633154 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lnet/klnds/ralnd/autoMakefile.in b/lnet/klnds/ralnd/autoMakefile.in
+index 3f47e73..8aeb6e1 100644
+--- a/lnet/klnds/ralnd/autoMakefile.in
++++ b/lnet/klnds/ralnd/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -82088,7 +41415,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ralnd/autoMakefile.in lustre-1.8.2/lnet
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -82097,7 +41424,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ralnd/autoMakefile.in lustre-1.8.2/lnet
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -82108,7 +41435,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ralnd/autoMakefile.in lustre-1.8.2/lnet
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -82139,49 +41466,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/ralnd/autoMakefile.in lustre-1.8.2/lnet
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.am lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.am
---- orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.am	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.am	2010-03-03 15:57:14.823633491 +0000
-@@ -6,21 +6,21 @@
- endif # LINUX
- endif # MODULES
- 
--if DARWIN
--
--  macos_PROGRAMS := ksocklnd
--
--  nodist_ksocklnd_SOURCES := socklnd.c socklnd_cb.c socklnd_proto.c socklnd_modparams.c socklnd_lib-darwin.c
--
--  ksocklnd_CFLAGS := $(EXTRA_KCFLAGS)
--  ksocklnd_LDFLAGS := $(EXTRA_KLDFLAGS)
--  ksocklnd_LDADD := $(EXTRA_KLIBS)
--
--  plist_DATA := Info.plist
--  install_data_hook := fix-kext-ownership
-+#if DARWIN
-+#
-+#  macos_PROGRAMS := ksocklnd
-+#
-+#  nodist_ksocklnd_SOURCES := socklnd.c socklnd_cb.c socklnd_proto.c socklnd_modparams.c socklnd_lib-darwin.c
-+#
-+#  ksocklnd_CFLAGS := $(EXTRA_KCFLAGS)
-+#  ksocklnd_LDFLAGS := $(EXTRA_KLDFLAGS)
-+#  ksocklnd_LDADD := $(EXTRA_KLIBS)
-+#
-+#  plist_DATA := Info.plist
-+#  install_data_hook := fix-kext-ownership
- 
--  EXTRA_DIST := socklnd_lib-darwin.c socklnd_lib-darwin.h $(plist_DATA)
--endif # DARWIN
-+#  EXTRA_DIST := socklnd_lib-darwin.c socklnd_lib-darwin.h $(plist_DATA)
-+#endif # DARWIN
- 
- install-data-hook: $(install_data_hook)
- 
-diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in
---- orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in	2010-03-03 16:00:11.675633809 +0000
-@@ -119,12 +119,11 @@
+diff --git a/lnet/klnds/socklnd/autoMakefile.in b/lnet/klnds/socklnd/autoMakefile.in
+index 32b4545..7de7a43 100644
+--- a/lnet/klnds/socklnd/autoMakefile.in
++++ b/lnet/klnds/socklnd/autoMakefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -82195,7 +41484,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in lustre-1.8.2/ln
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -241,8 +240,6 @@
+@@ -241,8 +240,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -82204,7 +41493,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in lustre-1.8.2/ln
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -256,8 +253,10 @@
+@@ -256,8 +253,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -82215,7 +41504,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in lustre-1.8.2/ln
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -265,26 +264,27 @@
+@@ -265,26 +264,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -82246,7 +41535,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in lustre-1.8.2/ln
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-@@ -297,59 +297,18 @@
+@@ -297,59 +297,18 @@ target_os = @target_os@
  target_vendor = @target_vendor@
  
  @LINUX_TRUE@@MODULES_TRUE at modulenet_DATA := ksocklnd$(KMODEXT)
@@ -82307,7 +41596,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in lustre-1.8.2/ln
  $(srcdir)/autoMakefile.in:  autoMakefile.am  $(top_srcdir)/configure.ac $(ACLOCAL_M4)
  	cd $(top_srcdir) && \
  	  $(AUTOMAKE) --gnu  lnet/klnds/socklnd/autoMakefile
-@@ -357,177 +316,6 @@
+@@ -357,177 +316,6 @@ autoMakefile:  $(srcdir)/autoMakefile.in  $(top_builddir)/config.status
  	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
  Makefile: $(top_builddir)/config.status Makefile.in
  	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
@@ -82485,7 +41774,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in lustre-1.8.2/ln
  uninstall-info-am:
  modulenetDATA_INSTALL = $(INSTALL_DATA)
  install-modulenetDATA: $(modulenet_DATA)
-@@ -547,78 +335,12 @@
+@@ -547,78 +335,12 @@ uninstall-modulenetDATA:
  	  echo " rm -f $(DESTDIR)$(modulenetdir)/$$f"; \
  	  rm -f $(DESTDIR)$(modulenetdir)/$$f; \
  	done
@@ -82559,14 +41848,15 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in lustre-1.8.2/ln
 -	here=`$(am__cd) $(top_builddir) && pwd` \
 -	  && cd $(top_srcdir) \
 -	  && gtags -i $(GTAGS_ARGS) $$here
-+CTAGS:
- 
+-
 -distclean-tags:
 -	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
++CTAGS:
++
  DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  
  top_distdir = ../../..
-@@ -653,10 +375,10 @@
+@@ -653,10 +375,10 @@ distdir: $(DISTFILES)
  	done
  check-am: all-am
  check: check-am
@@ -82579,7 +41869,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in lustre-1.8.2/ln
  install: install-am
  install-exec: install-exec-am
  install-data: install-data-am
-@@ -684,13 +406,11 @@
+@@ -684,13 +406,11 @@ maintainer-clean-generic:
  	@echo "it deletes files that may require special tools to rebuild."
  clean: clean-am
  
@@ -82595,7 +41885,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in lustre-1.8.2/ln
  
  dvi: dvi-am
  
-@@ -700,8 +420,7 @@
+@@ -700,8 +420,7 @@ info: info-am
  
  info-am:
  
@@ -82605,7 +41895,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in lustre-1.8.2/ln
  	@$(NORMAL_INSTALL)
  	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
  
-@@ -714,13 +433,12 @@
+@@ -714,13 +433,12 @@ install-man:
  installcheck-am:
  
  maintainer-clean: maintainer-clean-am
@@ -82620,14 +41910,13 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in lustre-1.8.2/ln
  
  pdf: pdf-am
  
-@@ -730,22 +448,34 @@
+@@ -730,22 +448,34 @@ ps: ps-am
  
  ps-am:
  
 -uninstall-am: uninstall-info-am uninstall-macosPROGRAMS \
 -	uninstall-modulenetDATA uninstall-plistDATA
-+uninstall-am: uninstall-info-am uninstall-modulenetDATA
- 
+-
 -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
 -	clean-macosPROGRAMS ctags distclean distclean-compile \
 -	distclean-generic distclean-tags distdir dvi dvi-am info \
@@ -82640,6 +41929,9 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in lustre-1.8.2/ln
 -	ps ps-am tags uninstall uninstall-am uninstall-info-am \
 -	uninstall-macosPROGRAMS uninstall-modulenetDATA \
 -	uninstall-plistDATA
+-
++uninstall-am: uninstall-info-am uninstall-modulenetDATA
++
 +.PHONY: all all-am check check-am clean clean-generic distclean \
 +	distclean-generic distdir dvi dvi-am info info-am install \
 +	install-am install-data install-data-am install-exec \
@@ -82663,16 +41955,17 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/socklnd/autoMakefile.in lustre-1.8.2/ln
 +#
 +#  plist_DATA := Info.plist
 +#  install_data_hook := fix-kext-ownership
- 
++
 +#  EXTRA_DIST := socklnd_lib-darwin.c socklnd_lib-darwin.h $(plist_DATA)
 +#endif # DARWIN
  
  install-data-hook: $(install_data_hook)
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
-diff -Nurwd orig/lustre-1.8.2/lnet/klnds/viblnd/autoMakefile.in lustre-1.8.2/lnet/klnds/viblnd/autoMakefile.in
---- orig/lustre-1.8.2/lnet/klnds/viblnd/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/klnds/viblnd/autoMakefile.in	2010-03-03 16:00:11.727633926 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lnet/klnds/viblnd/autoMakefile.in b/lnet/klnds/viblnd/autoMakefile.in
+index 3dd2c3a..f17f9b6 100644
+--- a/lnet/klnds/viblnd/autoMakefile.in
++++ b/lnet/klnds/viblnd/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -82686,7 +41979,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/viblnd/autoMakefile.in lustre-1.8.2/lne
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -82695,7 +41988,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/viblnd/autoMakefile.in lustre-1.8.2/lne
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -82706,7 +41999,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/viblnd/autoMakefile.in lustre-1.8.2/lne
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -82737,71 +42030,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/klnds/viblnd/autoMakefile.in lustre-1.8.2/lne
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.am lustre-1.8.2/lnet/libcfs/autoMakefile.am
---- orig/lustre-1.8.2/lnet/libcfs/autoMakefile.am	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/libcfs/autoMakefile.am	2010-03-03 15:57:14.827661168 +0000
-@@ -35,9 +35,9 @@
- #
- 
- SUBDIRS := linux
--if DARWIN
--SUBDIRS += darwin
--endif
-+#if DARWIN
-+#SUBDIRS += darwin
-+#endif
- DIST_SUBDIRS := $(SUBDIRS)
- 
- if LIBLUSTRE
-@@ -53,25 +53,25 @@
- modulenet_DATA := libcfs$(KMODEXT)
- endif
- 
--if DARWIN
--macos_PROGRAMS := libcfs
--
--nodist_libcfs_SOURCES := darwin/darwin-sync.c darwin/darwin-mem.c	\
--	darwin/darwin-prim.c darwin/darwin-fs.c darwin/darwin-curproc.c	\
--	darwin/darwin-tcpip.c darwin/darwin-utils.c 			\
--	darwin/darwin-debug.c darwin/darwin-proc.c 			\
--	darwin/darwin-tracefile.c darwin/darwin-module.c 		\
--	debug.c module.c tracefile.c nidstrings.c watchdog.c
--
--libcfs_CFLAGS := $(EXTRA_KCFLAGS)
--libcfs_LDFLAGS := $(EXTRA_KLDFLAGS)
--libcfs_LDADD := $(EXTRA_KLIBS)
--
--plist_DATA := Info.plist
--
--install_data_hook := fix-kext-ownership
--
--endif
-+#if DARWIN
-+#macos_PROGRAMS := libcfs
-+#
-+#nodist_libcfs_SOURCES := darwin/darwin-sync.c darwin/darwin-mem.c	\
-+#	darwin/darwin-prim.c darwin/darwin-fs.c darwin/darwin-curproc.c	\
-+#	darwin/darwin-tcpip.c darwin/darwin-utils.c 			\
-+#	darwin/darwin-debug.c darwin/darwin-proc.c 			\
-+#	darwin/darwin-tracefile.c darwin/darwin-module.c 		\
-+#	debug.c module.c tracefile.c nidstrings.c watchdog.c
-+#
-+#libcfs_CFLAGS := $(EXTRA_KCFLAGS)
-+#libcfs_LDFLAGS := $(EXTRA_KLDFLAGS)
-+#libcfs_LDADD := $(EXTRA_KLIBS)
-+#
-+#plist_DATA := Info.plist
-+#
-+#install_data_hook := fix-kext-ownership
-+#
-+#endif
- 
- endif
- 
-diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libcfs/autoMakefile.in
---- orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/libcfs/autoMakefile.in	2010-03-03 16:00:11.819632288 +0000
-@@ -74,7 +74,6 @@
+diff --git a/lnet/libcfs/autoMakefile.in b/lnet/libcfs/autoMakefile.in
+index e46f4a8..76838c3 100644
+--- a/lnet/libcfs/autoMakefile.in
++++ b/lnet/libcfs/autoMakefile.in
+@@ -74,7 +74,6 @@ POST_UNINSTALL = :
  build_triplet = @build@
  host_triplet = @host@
  target_triplet = @target@
@@ -82809,7 +42042,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  ACLOCAL = @ACLOCAL@
  AC_LUSTRE_CLIENT_URN = @AC_LUSTRE_CLIENT_URN@
  AC_LUSTRE_CLI_VER_OFFSET_WARN = @AC_LUSTRE_CLI_VER_OFFSET_WARN@
-@@ -156,12 +155,11 @@
+@@ -156,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -82823,7 +42056,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -278,8 +276,6 @@
+@@ -278,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -82832,7 +42065,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -293,8 +289,10 @@
+@@ -293,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -82843,7 +42076,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -302,26 +300,27 @@
+@@ -302,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -82874,7 +42107,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-@@ -333,7 +332,10 @@
+@@ -333,7 +332,10 @@ target_cpu = @target_cpu@
  target_os = @target_os@
  target_vendor = @target_vendor@
  
@@ -82886,7 +42119,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  DIST_SUBDIRS := $(SUBDIRS)
  
  @LIBLUSTRE_TRUE at noinst_LIBRARIES = libcfs.a
-@@ -342,24 +344,6 @@
+@@ -342,24 +344,6 @@ DIST_SUBDIRS := $(SUBDIRS)
  @LIBLUSTRE_TRUE at libcfs_a_CFLAGS = $(LLCFLAGS)
  
  @LINUX_TRUE@@MODULES_TRUE at modulenet_DATA := libcfs$(KMODEXT)
@@ -82911,7 +42144,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  subdir = lnet/libcfs
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
-@@ -377,55 +361,11 @@
+@@ -377,55 +361,11 @@ am__libcfs_a_SOURCES_DIST = debug.c user-prim.c user-lock.c user-tcpip.c \
  @LIBLUSTRE_TRUE@	libcfs_a-user-tcpip.$(OBJEXT) \
  @LIBLUSTRE_TRUE@	libcfs_a-user-bitops.$(OBJEXT)
  libcfs_a_OBJECTS = $(am_libcfs_a_OBJECTS)
@@ -82968,7 +42201,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  @AMDEP_TRUE@	./$(DEPDIR)/libcfs_a-user-bitops.Po \
  @AMDEP_TRUE@	./$(DEPDIR)/libcfs_a-user-lock.Po \
  @AMDEP_TRUE@	./$(DEPDIR)/libcfs_a-user-prim.Po \
-@@ -435,7 +375,7 @@
+@@ -435,7 +375,7 @@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  CCLD = $(CC)
  LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
  DIST_SOURCES = $(am__libcfs_a_SOURCES_DIST)
@@ -82977,7 +42210,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  
  
  RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
-@@ -444,7 +384,7 @@
+@@ -444,7 +384,7 @@ RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
  	installdirs-recursive install-recursive uninstall-recursive \
  	check-recursive installcheck-recursive
  DIST_COMMON = $(srcdir)/autoMakefile.in Makefile.in autoMakefile.am
@@ -82986,7 +42219,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  
  all: all-recursive
  
-@@ -466,33 +406,6 @@
+@@ -466,33 +406,6 @@ libcfs.a: $(libcfs_a_OBJECTS) $(libcfs_a_DEPENDENCIES)
  	-rm -f libcfs.a
  	$(libcfs_a_AR) libcfs.a $(libcfs_a_OBJECTS) $(libcfs_a_LIBADD)
  	$(RANLIB) libcfs.a
@@ -83020,7 +42253,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  
  mostlyclean-compile:
  	-rm -f *.$(OBJEXT) core *.core
-@@ -500,22 +413,6 @@
+@@ -500,22 +413,6 @@ mostlyclean-compile:
  distclean-compile:
  	-rm -f *.tab.c
  
@@ -83043,7 +42276,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs_a-debug.Po at am__quote@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs_a-user-bitops.Po at am__quote@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs_a-user-lock.Po at am__quote@
-@@ -653,358 +550,6 @@
+@@ -653,358 +550,6 @@ libcfs_a-user-bitops.obj: user-bitops.c
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs_a-user-bitops.Po' tmpdepfile='$(DEPDIR)/libcfs_a-user-bitops.TPo' @AMDEPBACKSLASH@
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libcfs_a_CPPFLAGS) $(CPPFLAGS) $(libcfs_a_CFLAGS) $(CFLAGS) -c -o libcfs_a-user-bitops.obj `if test -f 'user-bitops.c'; then $(CYGPATH_W) 'user-bitops.c'; else $(CYGPATH_W) '$(srcdir)/user-bitops.c'; fi`
@@ -83402,7 +42635,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  uninstall-info-am:
  modulenetDATA_INSTALL = $(INSTALL_DATA)
  install-modulenetDATA: $(modulenet_DATA)
-@@ -1024,24 +569,6 @@
+@@ -1024,24 +569,6 @@ uninstall-modulenetDATA:
  	  echo " rm -f $(DESTDIR)$(modulenetdir)/$$f"; \
  	  rm -f $(DESTDIR)$(modulenetdir)/$$f; \
  	done
@@ -83427,7 +42660,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  
  # This directory's subdirectories are mostly independent; you can cd
  # into them and run `make' without going through this Makefile.
-@@ -1213,10 +740,10 @@
+@@ -1213,10 +740,10 @@ distdir: $(DISTFILES)
  	done
  check-am: all-am
  check: check-recursive
@@ -83440,7 +42673,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  
  install: install-recursive
  install-exec: install-exec-recursive
-@@ -1245,8 +772,7 @@
+@@ -1245,8 +772,7 @@ maintainer-clean-generic:
  	@echo "it deletes files that may require special tools to rebuild."
  clean: clean-recursive
  
@@ -83450,7 +42683,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  
  distclean: distclean-recursive
  	-rm -rf ./$(DEPDIR)
-@@ -1262,8 +788,7 @@
+@@ -1262,8 +788,7 @@ info: info-recursive
  
  info-am:
  
@@ -83460,7 +42693,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  	@$(NORMAL_INSTALL)
  	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
  
-@@ -1292,30 +817,48 @@
+@@ -1292,30 +817,48 @@ ps: ps-recursive
  
  ps-am:
  
@@ -83488,6 +42721,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
 -	tags-recursive uninstall uninstall-am uninstall-info-am \
 -	uninstall-info-recursive uninstall-macosPROGRAMS \
 -	uninstall-modulenetDATA uninstall-plistDATA uninstall-recursive
+-
 +	clean-generic clean-noinstLIBRARIES clean-recursive ctags \
 +	ctags-recursive distclean distclean-compile distclean-generic \
 +	distclean-recursive distclean-tags distdir dvi dvi-am \
@@ -83505,7 +42739,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
 +	uninstall-info-recursive uninstall-modulenetDATA \
 +	uninstall-recursive
 +
- 
++
 +#if DARWIN
 +#macos_PROGRAMS := libcfs
 +#
@@ -83528,30 +42762,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/autoMakefile.in lustre-1.8.2/lnet/libc
  
  install-data-hook: $(install_data_hook)
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
-diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/debug.c lustre-1.8.2/lnet/libcfs/debug.c
---- orig/lustre-1.8.2/lnet/libcfs/debug.c	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/libcfs/debug.c	2010-03-03 15:57:14.807656390 +0000
-@@ -52,13 +52,13 @@
- static char debug_file_name[1024];
- 
- #ifdef __KERNEL__
--unsigned int libcfs_subsystem_debug = ~0;
-+unsigned int libcfs_subsystem_debug = 0;
- CFS_MODULE_PARM(libcfs_subsystem_debug, "i", int, 0644,
-                 "Lustre kernel debug subsystem mask");
- EXPORT_SYMBOL(libcfs_subsystem_debug);
- 
--unsigned int libcfs_debug = (D_EMERG | D_ERROR | D_WARNING | D_CONSOLE |
--                             D_NETERROR | D_HA | D_CONFIG | D_IOCTL);
-+unsigned int libcfs_debug = 0;
-+
- CFS_MODULE_PARM(libcfs_debug, "i", int, 0644,
-                 "Lustre kernel debug mask");
- EXPORT_SYMBOL(libcfs_debug);
-diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/linux/Makefile.in lustre-1.8.2/lnet/libcfs/linux/Makefile.in
---- orig/lustre-1.8.2/lnet/libcfs/linux/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/libcfs/linux/Makefile.in	2010-03-03 16:00:11.863634250 +0000
-@@ -119,12 +119,11 @@
+diff --git a/lnet/libcfs/linux/Makefile.in b/lnet/libcfs/linux/Makefile.in
+index 3afbef5..9480717 100644
+--- a/lnet/libcfs/linux/Makefile.in
++++ b/lnet/libcfs/linux/Makefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -83565,7 +42780,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/linux/Makefile.in lustre-1.8.2/lnet/li
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -240,8 +239,6 @@
+@@ -240,8 +239,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -83574,7 +42789,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/linux/Makefile.in lustre-1.8.2/lnet/li
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -255,8 +252,10 @@
+@@ -255,8 +252,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -83585,7 +42800,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/linux/Makefile.in lustre-1.8.2/lnet/li
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -264,26 +263,27 @@
+@@ -264,26 +263,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -83616,54 +42831,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/libcfs/linux/Makefile.in lustre-1.8.2/lnet/li
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.am lustre-1.8.2/lnet/lnet/autoMakefile.am
---- orig/lustre-1.8.2/lnet/lnet/autoMakefile.am	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/lnet/autoMakefile.am	2010-03-03 15:57:14.827661168 +0000
-@@ -18,23 +18,23 @@
- modulenet_DATA = lnet$(KMODEXT)
- endif # LINUX
- 
--if DARWIN
--macos_PROGRAMS := lnet
--
--lnet_SOURCES := api-errno.c api-ni.c config.c
--lnet_SOURCES += lib-me.c lib-msg.c lib-eq.c lib-md.c
--lnet_SOURCES += lib-move.c module.c lo.c router.c router_proc.c
--lnet_SOURCES += acceptor.c peer.c
--
--lnet_CFLAGS := $(EXTRA_KCFLAGS)
--lnet_LDFLAGS := $(EXTRA_KLDFLAGS)
--lnet_LDADD := $(EXTRA_KLIBS)
--
--plist_DATA := Info.plist
--
--install_data_hook := fix-kext-ownership
--
--endif # DARWIN
-+#if DARWIN
-+#macos_PROGRAMS := lnet
-+#
-+#lnet_SOURCES := api-errno.c api-ni.c config.c
-+#lnet_SOURCES += lib-me.c lib-msg.c lib-eq.c lib-md.c
-+#lnet_SOURCES += lib-move.c module.c lo.c router.c router_proc.c
-+#lnet_SOURCES += acceptor.c peer.c
-+#
-+#lnet_CFLAGS := $(EXTRA_KCFLAGS)
-+#lnet_LDFLAGS := $(EXTRA_KLDFLAGS)
-+#lnet_LDADD := $(EXTRA_KLIBS)
-+#
-+#plist_DATA := Info.plist
-+#
-+#install_data_hook := fix-kext-ownership
-+#
-+#endif # DARWIN
- 
- endif # MODULES
- 
-diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/autoMakefile.in
---- orig/lustre-1.8.2/lnet/lnet/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/lnet/autoMakefile.in	2010-03-03 16:00:11.979632853 +0000
-@@ -119,12 +119,11 @@
+diff --git a/lnet/lnet/autoMakefile.in b/lnet/lnet/autoMakefile.in
+index 7fb8f44..f3f41fe 100644
+--- a/lnet/lnet/autoMakefile.in
++++ b/lnet/lnet/autoMakefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -83677,7 +42849,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -241,8 +240,6 @@
+@@ -241,8 +240,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -83686,7 +42858,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -256,8 +253,10 @@
+@@ -256,8 +253,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -83697,7 +42869,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -265,26 +264,27 @@
+@@ -265,26 +264,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -83728,7 +42900,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-@@ -309,18 +309,6 @@
+@@ -309,18 +309,6 @@ my_sources = api-errno.c api-ni.c config.c \
  
  @LINUX_TRUE@@MODULES_TRUE at modulenet_DATA = lnet$(KMODEXT)
  
@@ -83747,7 +42919,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  EXTRA_DIST := Info.plist
  subdir = lnet/lnet
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-@@ -343,34 +331,6 @@
+@@ -343,34 +331,6 @@ am__objects_1 = liblnet_a-api-errno.$(OBJEXT) liblnet_a-api-ni.$(OBJEXT) \
  	liblnet_a-peer.$(OBJEXT)
  @LIBLUSTRE_TRUE at am_liblnet_a_OBJECTS = $(am__objects_1)
  liblnet_a_OBJECTS = $(am_liblnet_a_OBJECTS)
@@ -83782,7 +42954,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  
  DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)
  depcomp = $(SHELL) $(top_srcdir)/depcomp
-@@ -387,28 +347,16 @@
+@@ -387,28 +347,16 @@ am__depfiles_maybe = depfiles
  @AMDEP_TRUE@	./$(DEPDIR)/liblnet_a-lo.Po \
  @AMDEP_TRUE@	./$(DEPDIR)/liblnet_a-peer.Po \
  @AMDEP_TRUE@	./$(DEPDIR)/liblnet_a-router.Po \
@@ -83815,7 +42987,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  
  all: all-am
  
-@@ -430,33 +378,6 @@
+@@ -430,33 +378,6 @@ liblnet.a: $(liblnet_a_OBJECTS) $(liblnet_a_DEPENDENCIES)
  	-rm -f liblnet.a
  	$(liblnet_a_AR) liblnet.a $(liblnet_a_OBJECTS) $(liblnet_a_LIBADD)
  	$(RANLIB) liblnet.a
@@ -83849,7 +43021,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  
  mostlyclean-compile:
  	-rm -f *.$(OBJEXT) core *.core
-@@ -477,20 +398,6 @@
+@@ -477,20 +398,6 @@ distclean-compile:
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/liblnet_a-peer.Po at am__quote@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/liblnet_a-router.Po at am__quote@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/liblnet_a-router_proc.Po at am__quote@
@@ -83870,7 +43042,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  
  .c.o:
  @am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
-@@ -799,314 +706,6 @@
+@@ -799,314 +706,6 @@ liblnet_a-peer.obj: peer.c
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/liblnet_a-peer.Po' tmpdepfile='$(DEPDIR)/liblnet_a-peer.TPo' @AMDEPBACKSLASH@
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblnet_a_CPPFLAGS) $(CPPFLAGS) $(liblnet_a_CFLAGS) $(CFLAGS) -c -o liblnet_a-peer.obj `if test -f 'peer.c'; then $(CYGPATH_W) 'peer.c'; else $(CYGPATH_W) '$(srcdir)/peer.c'; fi`
@@ -84185,7 +43357,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  uninstall-info-am:
  modulenetDATA_INSTALL = $(INSTALL_DATA)
  install-modulenetDATA: $(modulenet_DATA)
-@@ -1126,24 +725,6 @@
+@@ -1126,24 +725,6 @@ uninstall-modulenetDATA:
  	  echo " rm -f $(DESTDIR)$(modulenetdir)/$$f"; \
  	  rm -f $(DESTDIR)$(modulenetdir)/$$f; \
  	done
@@ -84210,7 +43382,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  
  ETAGS = etags
  ETAGSFLAGS =
-@@ -1232,10 +813,10 @@
+@@ -1232,10 +813,10 @@ distdir: $(DISTFILES)
  	done
  check-am: all-am
  check: check-am
@@ -84223,7 +43395,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  install: install-am
  install-exec: install-exec-am
  install-data: install-data-am
-@@ -1263,8 +844,7 @@
+@@ -1263,8 +844,7 @@ maintainer-clean-generic:
  	@echo "it deletes files that may require special tools to rebuild."
  clean: clean-am
  
@@ -84233,7 +43405,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  
  distclean: distclean-am
  	-rm -rf ./$(DEPDIR)
-@@ -1280,8 +860,7 @@
+@@ -1280,8 +860,7 @@ info: info-am
  
  info-am:
  
@@ -84243,7 +43415,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  	@$(NORMAL_INSTALL)
  	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
  
-@@ -1310,23 +889,38 @@
+@@ -1310,22 +889,37 @@ ps: ps-am
  
  ps-am:
  
@@ -84269,9 +43441,10 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
  	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
 -	uninstall-am uninstall-info-am uninstall-macosPROGRAMS \
 -	uninstall-modulenetDATA uninstall-plistDATA
+-
 +	uninstall-am uninstall-info-am uninstall-modulenetDATA
- 
- 
++
++
 +#if DARWIN
 +#macos_PROGRAMS := lnet
 +#
@@ -84289,14 +43462,14 @@ diff -Nurwd orig/lustre-1.8.2/lnet/lnet/autoMakefile.in lustre-1.8.2/lnet/lnet/a
 +#install_data_hook := fix-kext-ownership
 +#
 +#endif # DARWIN
-+
+ 
  install-data-hook: $(install_data_hook)
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
-diff -Nurwd orig/lustre-1.8.2/lnet/selftest/autoMakefile.in lustre-1.8.2/lnet/selftest/autoMakefile.in
---- orig/lustre-1.8.2/lnet/selftest/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/selftest/autoMakefile.in	2010-03-03 16:00:12.091635491 +0000
-@@ -119,12 +119,11 @@
+diff --git a/lnet/selftest/autoMakefile.in b/lnet/selftest/autoMakefile.in
+index 9981714..86a0274 100644
+--- a/lnet/selftest/autoMakefile.in
++++ b/lnet/selftest/autoMakefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -84310,7 +43483,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/selftest/autoMakefile.in lustre-1.8.2/lnet/se
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -241,8 +240,6 @@
+@@ -241,8 +240,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -84319,7 +43492,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/selftest/autoMakefile.in lustre-1.8.2/lnet/se
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -256,8 +253,10 @@
+@@ -256,8 +253,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -84330,7 +43503,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/selftest/autoMakefile.in lustre-1.8.2/lnet/se
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -265,26 +264,27 @@
+@@ -265,26 +264,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -84361,10 +43534,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/selftest/autoMakefile.in lustre-1.8.2/lnet/se
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/autoMakefile.in lustre-1.8.2/lnet/ulnds/autoMakefile.in
---- orig/lustre-1.8.2/lnet/ulnds/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/ulnds/autoMakefile.in	2010-03-03 16:00:12.147635348 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lnet/ulnds/autoMakefile.in b/lnet/ulnds/autoMakefile.in
+index 44cceca..fc6db59 100644
+--- a/lnet/ulnds/autoMakefile.in
++++ b/lnet/ulnds/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -84378,7 +43552,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/autoMakefile.in lustre-1.8.2/lnet/ulnds
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -276,8 +275,6 @@
+@@ -276,8 +275,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -84387,7 +43561,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/autoMakefile.in lustre-1.8.2/lnet/ulnds
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -291,8 +288,10 @@
+@@ -291,8 +288,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -84398,7 +43572,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/autoMakefile.in lustre-1.8.2/lnet/ulnds
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -300,26 +299,27 @@
+@@ -300,26 +299,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -84429,10 +43603,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/autoMakefile.in lustre-1.8.2/lnet/ulnds
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/ptllnd/Makefile.in lustre-1.8.2/lnet/ulnds/ptllnd/Makefile.in
---- orig/lustre-1.8.2/lnet/ulnds/ptllnd/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/ulnds/ptllnd/Makefile.in	2010-03-03 16:00:12.227633716 +0000
-@@ -119,12 +119,11 @@
+diff --git a/lnet/ulnds/ptllnd/Makefile.in b/lnet/ulnds/ptllnd/Makefile.in
+index 98ed971..3c35ce9 100644
+--- a/lnet/ulnds/ptllnd/Makefile.in
++++ b/lnet/ulnds/ptllnd/Makefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -84446,7 +43621,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/ptllnd/Makefile.in lustre-1.8.2/lnet/ul
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -240,8 +239,6 @@
+@@ -240,8 +239,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -84455,7 +43630,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/ptllnd/Makefile.in lustre-1.8.2/lnet/ul
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -255,8 +252,10 @@
+@@ -255,8 +252,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -84466,7 +43641,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/ptllnd/Makefile.in lustre-1.8.2/lnet/ul
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -264,26 +263,27 @@
+@@ -264,26 +263,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -84497,10 +43672,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/ptllnd/Makefile.in lustre-1.8.2/lnet/ul
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/socklnd/Makefile.in lustre-1.8.2/lnet/ulnds/socklnd/Makefile.in
---- orig/lustre-1.8.2/lnet/ulnds/socklnd/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/ulnds/socklnd/Makefile.in	2010-03-03 16:00:12.319632637 +0000
-@@ -119,12 +119,11 @@
+diff --git a/lnet/ulnds/socklnd/Makefile.in b/lnet/ulnds/socklnd/Makefile.in
+index 4784ff9..6387b70 100644
+--- a/lnet/ulnds/socklnd/Makefile.in
++++ b/lnet/ulnds/socklnd/Makefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -84514,7 +43690,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/socklnd/Makefile.in lustre-1.8.2/lnet/u
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -240,8 +239,6 @@
+@@ -240,8 +239,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -84523,7 +43699,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/socklnd/Makefile.in lustre-1.8.2/lnet/u
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -255,8 +252,10 @@
+@@ -255,8 +252,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -84534,7 +43710,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/socklnd/Makefile.in lustre-1.8.2/lnet/u
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -264,26 +263,27 @@
+@@ -264,26 +263,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -84565,10 +43741,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/ulnds/socklnd/Makefile.in lustre-1.8.2/lnet/u
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lnet/utils/Makefile.in lustre-1.8.2/lnet/utils/Makefile.in
---- orig/lustre-1.8.2/lnet/utils/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lnet/utils/Makefile.in	2010-03-03 16:00:12.443633240 +0000
-@@ -163,12 +163,11 @@
+diff --git a/lnet/utils/Makefile.in b/lnet/utils/Makefile.in
+index e4acb23..1561575 100644
+--- a/lnet/utils/Makefile.in
++++ b/lnet/utils/Makefile.in
+@@ -163,12 +163,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -84582,7 +43759,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/utils/Makefile.in lustre-1.8.2/lnet/utils/Mak
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -284,8 +283,6 @@
+@@ -284,8 +283,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -84591,7 +43768,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/utils/Makefile.in lustre-1.8.2/lnet/utils/Mak
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -299,8 +296,10 @@
+@@ -299,8 +296,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -84602,7 +43779,7 @@ diff -Nurwd orig/lustre-1.8.2/lnet/utils/Makefile.in lustre-1.8.2/lnet/utils/Mak
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -308,26 +307,27 @@
+@@ -308,26 +307,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -84633,22 +43810,11 @@ diff -Nurwd orig/lustre-1.8.2/lnet/utils/Makefile.in lustre-1.8.2/lnet/utils/Mak
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/autoMakefile.am lustre-1.8.2/lustre/autoMakefile.am
---- orig/lustre-1.8.2/lustre/autoMakefile.am	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/autoMakefile.am	2010-03-03 15:57:14.919642480 +0000
-@@ -85,7 +85,7 @@
- BUILD_VER_H=$(top_builddir)/lustre/include/lustre/lustre_build_version.h
- 
- lustre_build_version:
--	perl $(top_builddir)/lustre/scripts/version_tag.pl $(top_srcdir) $(top_builddir) > tmpver
-+	perl $(top_srcdir)/lustre/scripts/version_tag.pl $(top_srcdir) $(top_builddir) > tmpver
- 	echo "#define LUSTRE_RELEASE @RELEASE@" >> tmpver
- 	cmp -s $(BUILD_VER_H) tmpver > tmpdiff 2> /dev/null &&		\
-                 $(RM) tmpver tmpdiff ||					\
-diff -Nurwd orig/lustre-1.8.2/lustre/autoMakefile.in lustre-1.8.2/lustre/autoMakefile.in
---- orig/lustre-1.8.2/lustre/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/autoMakefile.in	2010-03-03 16:00:12.499634694 +0000
-@@ -159,12 +159,11 @@
+diff --git a/lustre/autoMakefile.in b/lustre/autoMakefile.in
+index b837dad..9067752 100644
+--- a/lustre/autoMakefile.in
++++ b/lustre/autoMakefile.in
+@@ -159,12 +159,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -84662,7 +43828,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/autoMakefile.in lustre-1.8.2/lustre/autoMak
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -280,8 +279,6 @@
+@@ -280,8 +279,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -84671,7 +43837,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/autoMakefile.in lustre-1.8.2/lustre/autoMak
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -295,8 +292,10 @@
+@@ -295,8 +292,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -84682,7 +43848,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/autoMakefile.in lustre-1.8.2/lustre/autoMak
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -304,26 +303,27 @@
+@@ -304,26 +303,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -84713,7 +43879,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/autoMakefile.in lustre-1.8.2/lustre/autoMak
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-@@ -656,7 +656,7 @@
+@@ -656,7 +656,7 @@ sources: $(LDISKFS) lvfs-sources obdclass-sources lustre_build_version
  all-recursive: lustre_build_version
  
  lustre_build_version:
@@ -84722,10 +43888,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/autoMakefile.in lustre-1.8.2/lustre/autoMak
  	echo "#define LUSTRE_RELEASE @RELEASE@" >> tmpver
  	cmp -s $(BUILD_VER_H) tmpver > tmpdiff 2> /dev/null &&		\
                  $(RM) tmpver tmpdiff ||					\
-diff -Nurwd orig/lustre-1.8.2/lustre/autoconf/Makefile.in lustre-1.8.2/lustre/autoconf/Makefile.in
---- orig/lustre-1.8.2/lustre/autoconf/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/autoconf/Makefile.in	2010-03-03 16:00:12.551634246 +0000
-@@ -119,12 +119,11 @@
+diff --git a/lustre/autoconf/Makefile.in b/lustre/autoconf/Makefile.in
+index c234cc6..db4ad8a 100644
+--- a/lustre/autoconf/Makefile.in
++++ b/lustre/autoconf/Makefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -84739,7 +43906,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/autoconf/Makefile.in lustre-1.8.2/lustre/au
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -240,8 +239,6 @@
+@@ -240,8 +239,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -84748,7 +43915,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/autoconf/Makefile.in lustre-1.8.2/lustre/au
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -255,8 +252,10 @@
+@@ -255,8 +252,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -84759,7 +43926,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/autoconf/Makefile.in lustre-1.8.2/lustre/au
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -264,26 +263,27 @@
+@@ -264,26 +263,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -84790,21 +43957,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/autoconf/Makefile.in lustre-1.8.2/lustre/au
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/autoconf/lustre-core.m4 lustre-1.8.2/lustre/autoconf/lustre-core.m4
---- orig/lustre-1.8.2/lustre/autoconf/lustre-core.m4	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/autoconf/lustre-core.m4	2010-03-03 15:57:14.899633653 +0000
-@@ -2066,6 +2066,7 @@
- ])
- ])
- 
-+
- #
- # LC_COOKIE_FOLLOW_LINK
- #
-diff -Nurwd orig/lustre-1.8.2/lustre/contrib/Makefile.in lustre-1.8.2/lustre/contrib/Makefile.in
---- orig/lustre-1.8.2/lustre/contrib/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/contrib/Makefile.in	2010-03-03 16:00:12.599634971 +0000
-@@ -121,12 +121,11 @@
+diff --git a/lustre/contrib/Makefile.in b/lustre/contrib/Makefile.in
+index 9bbd632..8d5da81 100644
+--- a/lustre/contrib/Makefile.in
++++ b/lustre/contrib/Makefile.in
+@@ -121,12 +121,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -84818,7 +43975,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/contrib/Makefile.in lustre-1.8.2/lustre/con
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -242,8 +241,6 @@
+@@ -242,8 +241,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -84827,7 +43984,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/contrib/Makefile.in lustre-1.8.2/lustre/con
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -257,8 +254,10 @@
+@@ -257,8 +254,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -84838,7 +43995,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/contrib/Makefile.in lustre-1.8.2/lustre/con
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -266,26 +265,27 @@
+@@ -266,26 +265,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -84869,44 +44026,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/contrib/Makefile.in lustre-1.8.2/lustre/con
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/contrib/bash_completion/lctl lustre-1.8.2/lustre/contrib/bash_completion/lctl
---- orig/lustre-1.8.2/lustre/contrib/bash_completion/lctl	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/lustre/contrib/bash_completion/lctl	2010-03-03 15:57:14.847642479 +0000
-@@ -0,0 +1,13 @@
-+#-*- mode: shell-script;-*-
-+
-+have lctl &&
-+_lctl()
-+{
-+	local cur
-+	COMPREPLY=()
-+	cur=${COMP_WORDS[COMP_CWORD]}
-+	COMPREPLY=($( compgen -W '--device --threads --ignore-errors ignore-errors dump --net network net list_nids which_nid interface_list add_interface del_interface peer_list add_peer del_peer conn_list disconnect active_tc mynid add_uuid close_uuid del_uuid add_route del_route set_route fail ping newdev device cfg_device device_list dl lustre_build_version attach setup cleanup detach lov_setup lov_modify_tgts lov_getconfig record endrecord parse dump_log clear_log conf_param probe close getattr setattr create destroy test_getattr test_setattr test_brw get_stripe set_stripe unset_stripe dump_ldlm activate deactivate recover lookup notransno readonly abort_recovery mount_option del_mount_option set_timeout set_lustre_upcall add_conn del_conn local_param llog_catlist llog_info llog_print llog_check llog_cancel llog_remove debug_daemon debug_kernel dk debug_file df clear mark filter show debug_list modules panic lwt memhog help' -- $cur ) )
-+}
-+
-+complete -F _lctl lctl
-+
-diff -Nurwd orig/lustre-1.8.2/lustre/contrib/bash_completion/lfs lustre-1.8.2/lustre/contrib/bash_completion/lfs
---- orig/lustre-1.8.2/lustre/contrib/bash_completion/lfs	1970-01-01 00:00:00.000000000 +0000
-+++ lustre-1.8.2/lustre/contrib/bash_completion/lfs	2010-03-03 15:57:14.847642479 +0000
-@@ -0,0 +1,13 @@
-+#-*- mode: shell-script;-*-
-+
-+have lfs &&
-+_lfs()
-+{
-+	local cur
-+	COMPREPLY=()
-+	cur=${COMP_WORDS[COMP_CWORD]}
-+	COMPREPLY=($( compgen -W 'catinfo join osts help find getstripe setstripe quotachown quotacheck quotaon setquota quota setstripe check df' -- $cur ) )
-+}
-+
-+complete -F _lfs lfs
-+
-diff -Nurwd orig/lustre-1.8.2/lustre/doc/Makefile.in lustre-1.8.2/lustre/doc/Makefile.in
---- orig/lustre-1.8.2/lustre/doc/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/doc/Makefile.in	2010-03-03 16:00:12.663633052 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/doc/Makefile.in b/lustre/doc/Makefile.in
+index ff45f17..88fc7a7 100644
+--- a/lustre/doc/Makefile.in
++++ b/lustre/doc/Makefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -84920,7 +44044,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/doc/Makefile.in lustre-1.8.2/lustre/doc/Mak
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -276,8 +275,6 @@
+@@ -276,8 +275,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -84929,7 +44053,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/doc/Makefile.in lustre-1.8.2/lustre/doc/Mak
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -291,8 +288,10 @@
+@@ -291,8 +288,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -84940,7 +44064,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/doc/Makefile.in lustre-1.8.2/lustre/doc/Mak
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -300,26 +299,27 @@
+@@ -300,26 +299,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -84971,67 +44095,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/doc/Makefile.in lustre-1.8.2/lustre/doc/Mak
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/doc/lctl.8 lustre-1.8.2/lustre/doc/lctl.8
---- orig/lustre-1.8.2/lustre/doc/lctl.8	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/doc/lctl.8	2010-03-03 15:57:14.891633684 +0000
-@@ -36,7 +36,7 @@
- command, type 
- .B help 
- .I command
--.  Command completion is activated with the TAB key, and command history is available via the up- and down-arrow keys. 
-+Command completion is activated with the TAB key, and command history is available via the up- and down-arrow keys. 
- 
- For non-interactive use, one uses the second invocation, which runs command after connecting to the device. 
- 
-diff -Nurwd orig/lustre-1.8.2/lustre/doc/lustre.7 lustre-1.8.2/lustre/doc/lustre.7
---- orig/lustre-1.8.2/lustre/doc/lustre.7	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/doc/lustre.7	2010-03-03 15:57:14.891633684 +0000
-@@ -2,13 +2,13 @@
- .\" Copyright 2008 by Sun Microsystems, Inc.  All Rights Reserved.
- .\" This file may be copied under the terms of the GNU Public License.
- .\"
--.TH Lustre 7 "2006 Jun 15" Lustre "A high-performance cluster file system"
-+.TH Lustre 7
- .SH NAME
--Lustre
-+Lustre - a high-performance cluster file system
- .SH SYNOPSIS
- A high-performance file system designed for clusters.
- .SH DESCRIPTION
--.B Lustre®
-+.B Lustre\[rg]
- is a high-performance, massively-scalable, POSIX-compliant network file system
- designed for the world's largest high-performance compute clusters. Lustre
- is under active development from Sun Microsystems (http://www.lustre.org).
-diff -Nurwd orig/lustre-1.8.2/lustre/doc/tex2pdf lustre-1.8.2/lustre/doc/tex2pdf
---- orig/lustre-1.8.2/lustre/doc/tex2pdf	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/doc/tex2pdf	2010-03-03 15:57:14.863633966 +0000
-@@ -61,9 +61,8 @@
- my $MYHOSTNAME=hostname;
- my $MYNAME=basename $0;
- my $MYUSER=$ENV{'USER'};
--my $USER_HOME=$ENV{'HOME'};
- if (not $MYUSER) { $MYUSER = 'nobody'; }
--if (not $USER_HOME) { $USER_HOME = '/tmp'; }
-+my $USER_HOME = $ENV{'PWD'}; 
- 
- my @TMPFILES=();
- my @TMP_TEX_FILES=(); 
-@@ -1128,8 +1127,8 @@
-          &abort("Illegal value: $value");
-       }
-       &set_param_value($key, $value);
--   } elsif (defined(&type_enum_array($type))){
--      &set_enum_param($key, $value);
-+#   } elsif (defined(&type_enum_array($type))){
-+#      &set_enum_param($key, $value);
-    } else {
-       &set_param_value($key, $value);
-    }
-diff -Nurwd orig/lustre-1.8.2/lustre/include/Makefile.in lustre-1.8.2/lustre/include/Makefile.in
---- orig/lustre-1.8.2/lustre/include/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/include/Makefile.in	2010-03-03 16:00:12.715633586 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/include/Makefile.in b/lustre/include/Makefile.in
+index f8f883c..05b5c4c 100644
+--- a/lustre/include/Makefile.in
++++ b/lustre/include/Makefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -85045,7 +44113,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/include/Makefile.in lustre-1.8.2/lustre/inc
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -276,8 +275,6 @@
+@@ -276,8 +275,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -85054,7 +44122,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/include/Makefile.in lustre-1.8.2/lustre/inc
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -291,8 +288,10 @@
+@@ -291,8 +288,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -85065,7 +44133,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/include/Makefile.in lustre-1.8.2/lustre/inc
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -300,26 +299,27 @@
+@@ -300,26 +299,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -85096,21 +44164,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/include/Makefile.in lustre-1.8.2/lustre/inc
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/include/liblustre.h lustre-1.8.2/lustre/include/liblustre.h
---- orig/lustre-1.8.2/lustre/include/liblustre.h	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/include/liblustre.h	2010-03-03 15:57:14.887656712 +0000
-@@ -67,6 +67,7 @@
- #ifndef _IOWR
- # include "ioctl.h"
- #endif
-+#include <sys/quota.h>
- 
- #include <stdio.h>
- #include <sys/ioctl.h>
-diff -Nurwd orig/lustre-1.8.2/lustre/include/linux/Makefile.in lustre-1.8.2/lustre/include/linux/Makefile.in
---- orig/lustre-1.8.2/lustre/include/linux/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/include/linux/Makefile.in	2010-03-03 16:00:12.771632818 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/include/linux/Makefile.in b/lustre/include/linux/Makefile.in
+index 75d376e..5d9cb55 100644
+--- a/lustre/include/linux/Makefile.in
++++ b/lustre/include/linux/Makefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -85124,7 +44182,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/include/linux/Makefile.in lustre-1.8.2/lust
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -276,8 +275,6 @@
+@@ -276,8 +275,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -85133,7 +44191,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/include/linux/Makefile.in lustre-1.8.2/lust
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -291,8 +288,10 @@
+@@ -291,8 +288,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -85144,7 +44202,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/include/linux/Makefile.in lustre-1.8.2/lust
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -300,26 +299,27 @@
+@@ -300,26 +299,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -85175,22 +44233,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/include/linux/Makefile.in lustre-1.8.2/lust
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/include/linux/lustre_compat25.h lustre-1.8.2/lustre/include/linux/lustre_compat25.h
---- orig/lustre-1.8.2/lustre/include/linux/lustre_compat25.h	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/include/linux/lustre_compat25.h	2010-03-03 15:57:14.879657721 +0000
-@@ -106,7 +106,7 @@
- #define TRYLOCK_INODE_MUTEX(inode) (!down_trylock(&(inode)->i_sem))
- #endif /* HAVE_INODE_I_MUTEX */
- 
--#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,15)
-+#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,15)
- #define d_child d_u.d_child
- #define d_rcu d_u.d_rcu
- #endif
-diff -Nurwd orig/lustre-1.8.2/lustre/include/lustre/Makefile.in lustre-1.8.2/lustre/include/lustre/Makefile.in
---- orig/lustre-1.8.2/lustre/include/lustre/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/include/lustre/Makefile.in	2010-03-03 16:00:12.823633425 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/include/lustre/Makefile.in b/lustre/include/lustre/Makefile.in
+index 3967be7..f598370 100644
+--- a/lustre/include/lustre/Makefile.in
++++ b/lustre/include/lustre/Makefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -85204,7 +44251,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/include/lustre/Makefile.in lustre-1.8.2/lus
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -276,8 +275,6 @@
+@@ -276,8 +275,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -85213,7 +44260,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/include/lustre/Makefile.in lustre-1.8.2/lus
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -291,8 +288,10 @@
+@@ -291,8 +288,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -85224,7 +44271,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/include/lustre/Makefile.in lustre-1.8.2/lus
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -300,26 +299,27 @@
+@@ -300,26 +299,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -85255,10 +44302,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/include/lustre/Makefile.in lustre-1.8.2/lus
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/ldlm/Makefile.in lustre-1.8.2/lustre/ldlm/Makefile.in
---- orig/lustre-1.8.2/lustre/ldlm/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/ldlm/Makefile.in	2010-03-03 16:00:12.871633869 +0000
-@@ -159,12 +159,11 @@
+diff --git a/lustre/ldlm/Makefile.in b/lustre/ldlm/Makefile.in
+index ca2e283..e17c66b 100644
+--- a/lustre/ldlm/Makefile.in
++++ b/lustre/ldlm/Makefile.in
+@@ -159,12 +159,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -85272,7 +44320,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ldlm/Makefile.in lustre-1.8.2/lustre/ldlm/M
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -281,8 +280,6 @@
+@@ -281,8 +280,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -85281,7 +44329,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ldlm/Makefile.in lustre-1.8.2/lustre/ldlm/M
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -296,8 +293,10 @@
+@@ -296,8 +293,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -85292,7 +44340,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ldlm/Makefile.in lustre-1.8.2/lustre/ldlm/M
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -305,26 +304,27 @@
+@@ -305,26 +304,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -85323,22 +44371,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ldlm/Makefile.in lustre-1.8.2/lustre/ldlm/M
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/Makefile.am lustre-1.8.2/lustre/liblustre/Makefile.am
---- orig/lustre-1.8.2/lustre/liblustre/Makefile.am	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/liblustre/Makefile.am	2010-03-03 15:57:14.831634438 +0000
-@@ -1,7 +1,7 @@
- ## Liblustre excecutables & libraries Makefile
- SUBDIRS = . tests
- 
--AM_CPPFLAGS = $(HAVE_EFENCE) -I$(SYSIO)/include -D_LARGEFILE64_SOURCE=1 \
-+AM_CPPFLAGS = $(HAVE_EFENCE) -I$(top_srcdir)/libsysio/include -D_LARGEFILE64_SOURCE=1 \
-               $(LLCPPFLAGS) -I$(top_srcdir)/lnet/ulnds
- AM_CFLAGS = $(LLCFLAGS)
- 
-diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/Makefile.in lustre-1.8.2/lustre/liblustre/Makefile.in
---- orig/lustre-1.8.2/lustre/liblustre/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/liblustre/Makefile.in	2010-03-03 16:00:12.951634326 +0000
-@@ -121,12 +121,11 @@
+diff --git a/lustre/liblustre/Makefile.in b/lustre/liblustre/Makefile.in
+index 12b729a..1e2e2d8 100644
+--- a/lustre/liblustre/Makefile.in
++++ b/lustre/liblustre/Makefile.in
+@@ -121,12 +121,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -85352,7 +44389,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/Makefile.in lustre-1.8.2/lustre/l
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -242,8 +241,6 @@
+@@ -242,8 +241,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -85361,7 +44398,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/Makefile.in lustre-1.8.2/lustre/l
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -257,8 +254,10 @@
+@@ -257,8 +254,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -85372,7 +44409,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/Makefile.in lustre-1.8.2/lustre/l
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -266,26 +265,27 @@
+@@ -266,26 +265,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -85403,7 +44440,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/Makefile.in lustre-1.8.2/lustre/l
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-@@ -298,7 +298,7 @@
+@@ -298,7 +298,7 @@ target_os = @target_os@
  target_vendor = @target_vendor@
  SUBDIRS = . tests
  
@@ -85412,10 +44449,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/Makefile.in lustre-1.8.2/lustre/l
                $(LLCPPFLAGS) -I$(top_srcdir)/lnet/ulnds
  
  AM_CFLAGS = $(LLCFLAGS)
-diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/tests/Makefile.in lustre-1.8.2/lustre/liblustre/tests/Makefile.in
---- orig/lustre-1.8.2/lustre/liblustre/tests/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/liblustre/tests/Makefile.in	2010-03-03 16:00:13.063633397 +0000
-@@ -120,12 +120,11 @@
+diff --git a/lustre/liblustre/tests/Makefile.in b/lustre/liblustre/tests/Makefile.in
+index ad7e42b..7627e7a 100644
+--- a/lustre/liblustre/tests/Makefile.in
++++ b/lustre/liblustre/tests/Makefile.in
+@@ -120,12 +120,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -85429,7 +44467,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/tests/Makefile.in lustre-1.8.2/lu
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -241,8 +240,6 @@
+@@ -241,8 +240,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -85438,7 +44476,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/tests/Makefile.in lustre-1.8.2/lu
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -256,8 +253,10 @@
+@@ -256,8 +253,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -85449,7 +44487,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/tests/Makefile.in lustre-1.8.2/lu
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -265,26 +264,27 @@
+@@ -265,26 +264,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -85480,10 +44518,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/tests/Makefile.in lustre-1.8.2/lu
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/tests/mpi/Makefile.in lustre-1.8.2/lustre/liblustre/tests/mpi/Makefile.in
---- orig/lustre-1.8.2/lustre/liblustre/tests/mpi/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/liblustre/tests/mpi/Makefile.in	2010-03-03 16:00:13.131632824 +0000
-@@ -120,12 +120,11 @@
+diff --git a/lustre/liblustre/tests/mpi/Makefile.in b/lustre/liblustre/tests/mpi/Makefile.in
+index 9127d18..40ea8eb 100644
+--- a/lustre/liblustre/tests/mpi/Makefile.in
++++ b/lustre/liblustre/tests/mpi/Makefile.in
+@@ -120,12 +120,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -85497,7 +44536,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/tests/mpi/Makefile.in lustre-1.8.
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -241,8 +240,6 @@
+@@ -241,8 +240,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -85506,7 +44545,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/tests/mpi/Makefile.in lustre-1.8.
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -256,8 +253,10 @@
+@@ -256,8 +253,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -85517,7 +44556,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/tests/mpi/Makefile.in lustre-1.8.
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -265,26 +264,27 @@
+@@ -265,26 +264,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -85548,10 +44587,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/liblustre/tests/mpi/Makefile.in lustre-1.8.
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/llite/autoMakefile.in lustre-1.8.2/lustre/llite/autoMakefile.in
---- orig/lustre-1.8.2/lustre/llite/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/llite/autoMakefile.in	2010-03-03 16:00:13.179633759 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/llite/autoMakefile.in b/lustre/llite/autoMakefile.in
+index b8da44b..f82af50 100644
+--- a/lustre/llite/autoMakefile.in
++++ b/lustre/llite/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -85565,7 +44605,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/llite/autoMakefile.in lustre-1.8.2/lustre/l
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -85574,7 +44614,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/llite/autoMakefile.in lustre-1.8.2/lustre/l
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -85585,7 +44625,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/llite/autoMakefile.in lustre-1.8.2/lustre/l
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -85616,94 +44656,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/llite/autoMakefile.in lustre-1.8.2/lustre/l
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/llite/file.c lustre-1.8.2/lustre/llite/file.c
---- orig/lustre-1.8.2/lustre/llite/file.c	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/llite/file.c	2010-03-03 15:57:14.839642509 +0000
-@@ -45,6 +45,7 @@
- #include <lustre_lite.h>
- #include <linux/pagemap.h>
- #include <linux/file.h>
-+#include <linux/posix_acl.h>
- #include "llite_internal.h"
- #include <lustre/ll_fiemap.h>
- 
-@@ -276,6 +277,10 @@
-                 lov_test_and_clear_async_rc(lsm);
-         lli->lli_async_rc = 0;
- 
-+        /* Ensure that dirty pages are flushed out with the right creds */
-+        if (file->f_mode & FMODE_WRITE)
-+                filemap_fdatawrite(file->f_mapping);
-+
-         rc = ll_mdc_close(sbi->ll_mdc_exp, inode, file);
- 
-         if (OBD_FAIL_TIMEOUT_MS(OBD_FAIL_PTLRPC_DUMP_LOG, obd_fail_val))
-diff -Nurwd orig/lustre-1.8.2/lustre/llite/xattr.c lustre-1.8.2/lustre/llite/xattr.c
---- orig/lustre-1.8.2/lustre/llite/xattr.c	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/llite/xattr.c	2010-03-03 15:57:14.791661479 +0000
-@@ -38,6 +38,7 @@
- #include <linux/sched.h>
- #include <linux/mm.h>
- #include <linux/smp_lock.h>
-+#include <linux/posix_acl_xattr.h>
- 
- #define DEBUG_SUBSYSTEM S_LLITE
- 
-diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.am lustre-1.8.2/lustre/lov/autoMakefile.am
---- orig/lustre-1.8.2/lustre/lov/autoMakefile.am	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/lov/autoMakefile.am	2010-03-03 15:57:14.827661168 +0000
-@@ -46,29 +46,29 @@
- modulefs_DATA = lov$(KMODEXT)
- endif
- 
--if DARWIN
--macos_PROGRAMS := lov
-+#if DARWIN
-+#macos_PROGRAMS := lov
- 
--lov_SOURCES :=          \
--        lov_log.c       \
--	lov_pool.c	\
--        lov_obd.c       \
--        lov_pack.c      \
--        lov_request.c   \
--        lov_merge.c     \
--        lov_qos.c       \
--        lov_offset.c    \
--        lov_internal.h
-+#lov_SOURCES :=          \
-+#        lov_log.c       \
-+#	lov_pool.c	\
-+#        lov_obd.c       \
-+#        lov_pack.c      \
-+#        lov_request.c   \
-+#        lov_merge.c     \
-+#        lov_qos.c       \
-+#        lov_offset.c    \
-+#        lov_internal.h
- 
--lov_CFLAGS := $(EXTRA_KCFLAGS)
--lov_LDFLAGS := $(EXTRA_KLDFLAGS)
--lov_LDADD := $(EXTRA_KLIBS)
-+#lov_CFLAGS := $(EXTRA_KCFLAGS)
-+#lov_LDFLAGS := $(EXTRA_KLDFLAGS)
-+#lov_LDADD := $(EXTRA_KLIBS)
- 
--plist_DATA := Info.plist
-+#plist_DATA := Info.plist
- 
--install_data_hook := fix-kext-ownership
-+#install_data_hook := fix-kext-ownership
- 
--endif # DARWIN
-+#endif # DARWIN
- 
- endif # MODULES
- 
-diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov/autoMakefile.in
---- orig/lustre-1.8.2/lustre/lov/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/lov/autoMakefile.in	2010-03-03 16:00:13.287633596 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/lov/autoMakefile.in b/lustre/lov/autoMakefile.in
+index 9d6421d..d1d8941 100644
+--- a/lustre/lov/autoMakefile.in
++++ b/lustre/lov/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -85717,7 +44674,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -85726,7 +44683,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -85737,7 +44694,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -85768,7 +44725,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-@@ -338,28 +338,6 @@
+@@ -338,28 +338,6 @@ target_vendor = @target_vendor@
  @LIBLUSTRE_TRUE at liblov_a_CFLAGS = $(LLCFLAGS)
  
  @LINUX_TRUE@@MODULES_TRUE at modulefs_DATA = lov$(KMODEXT)
@@ -85797,7 +44754,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
  subdir = lustre/lov
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
-@@ -382,27 +360,6 @@
+@@ -382,27 +360,6 @@ am__liblov_a_SOURCES_DIST = lov_log.c lov_pool.c lov_obd.c lov_pack.c \
  @LIBLUSTRE_TRUE@	liblov_a-lov_merge.$(OBJEXT) \
  @LIBLUSTRE_TRUE@	liblov_a-lov_ea.$(OBJEXT)
  liblov_a_OBJECTS = $(am_liblov_a_OBJECTS)
@@ -85825,7 +44782,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
  
  DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)
  depcomp = $(SHELL) $(top_srcdir)/depcomp
-@@ -415,24 +372,16 @@
+@@ -415,24 +372,16 @@ am__depfiles_maybe = depfiles
  @AMDEP_TRUE@	./$(DEPDIR)/liblov_a-lov_pack.Po \
  @AMDEP_TRUE@	./$(DEPDIR)/liblov_a-lov_pool.Po \
  @AMDEP_TRUE@	./$(DEPDIR)/liblov_a-lov_qos.Po \
@@ -85854,7 +44811,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
  
  all: all-am
  
-@@ -454,33 +403,6 @@
+@@ -454,33 +403,6 @@ liblov.a: $(liblov_a_OBJECTS) $(liblov_a_DEPENDENCIES)
  	-rm -f liblov.a
  	$(liblov_a_AR) liblov.a $(liblov_a_OBJECTS) $(liblov_a_LIBADD)
  	$(RANLIB) liblov.a
@@ -85888,7 +44845,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
  
  mostlyclean-compile:
  	-rm -f *.$(OBJEXT) core *.core
-@@ -497,14 +419,6 @@
+@@ -497,14 +419,6 @@ distclean-compile:
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/liblov_a-lov_pool.Po at am__quote@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/liblov_a-lov_qos.Po at am__quote@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/liblov_a-lov_request.Po at am__quote@
@@ -85903,7 +44860,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
  
  .c.o:
  @am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
-@@ -725,182 +639,6 @@
+@@ -725,182 +639,6 @@ liblov_a-lov_ea.obj: lov_ea.c
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/liblov_a-lov_ea.Po' tmpdepfile='$(DEPDIR)/liblov_a-lov_ea.TPo' @AMDEPBACKSLASH@
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblov_a_CPPFLAGS) $(CPPFLAGS) $(liblov_a_CFLAGS) $(CFLAGS) -c -o liblov_a-lov_ea.obj `if test -f 'lov_ea.c'; then $(CYGPATH_W) 'lov_ea.c'; else $(CYGPATH_W) '$(srcdir)/lov_ea.c'; fi`
@@ -86086,7 +45043,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
  uninstall-info-am:
  modulefsDATA_INSTALL = $(INSTALL_DATA)
  install-modulefsDATA: $(modulefs_DATA)
-@@ -920,24 +658,6 @@
+@@ -920,24 +658,6 @@ uninstall-modulefsDATA:
  	  echo " rm -f $(DESTDIR)$(modulefsdir)/$$f"; \
  	  rm -f $(DESTDIR)$(modulefsdir)/$$f; \
  	done
@@ -86111,7 +45068,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
  
  ETAGS = etags
  ETAGSFLAGS =
-@@ -1026,10 +746,10 @@
+@@ -1026,10 +746,10 @@ distdir: $(DISTFILES)
  	done
  check-am: all-am
  check: check-am
@@ -86124,7 +45081,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
  install: install-am
  install-exec: install-exec-am
  install-data: install-data-am
-@@ -1057,8 +777,7 @@
+@@ -1057,8 +777,7 @@ maintainer-clean-generic:
  	@echo "it deletes files that may require special tools to rebuild."
  clean: clean-am
  
@@ -86134,7 +45091,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
  
  distclean: distclean-am
  	-rm -rf ./$(DEPDIR)
-@@ -1074,8 +793,7 @@
+@@ -1074,8 +793,7 @@ info: info-am
  
  info-am:
  
@@ -86144,7 +45101,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
  	@$(NORMAL_INSTALL)
  	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
  
-@@ -1104,22 +822,43 @@
+@@ -1104,22 +822,43 @@ ps: ps-am
  
  ps-am:
  
@@ -86190,59 +45147,20 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lov/autoMakefile.in lustre-1.8.2/lustre/lov
 +#lov_CFLAGS := $(EXTRA_KCFLAGS)
 +#lov_LDFLAGS := $(EXTRA_KLDFLAGS)
 +#lov_LDADD := $(EXTRA_KLIBS)
- 
++
 +#plist_DATA := Info.plist
 +
 +#install_data_hook := fix-kext-ownership
-+
+ 
 +#endif # DARWIN
  
  install-data-hook: $(install_data_hook)
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
-diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.am lustre-1.8.2/lustre/lvfs/autoMakefile.am
---- orig/lustre-1.8.2/lustre/lvfs/autoMakefile.am	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/lvfs/autoMakefile.am	2010-03-03 15:57:14.827661168 +0000
-@@ -85,21 +85,21 @@
- 
- endif # LINUX
- 
--if DARWIN
--
--macos_PROGRAMS := lvfs
--
--lvfs_SOURCES := lvfs_darwin.c
--
--lvfs_CFLAGS := $(EXTRA_KCFLAGS)
--lvfs_LDFLAGS := $(EXTRA_KLDFLAGS)
--lvfs_LDADD := $(EXTRA_KLIBS)
--
--plist_DATA := Info.plist
--
--install_data_hook := fix-kext-ownership
--
--endif # DARWIN
-+#if DARWIN
-+#
-+#macos_PROGRAMS := lvfs
-+#
-+#lvfs_SOURCES := lvfs_darwin.c
-+#
-+#lvfs_CFLAGS := $(EXTRA_KCFLAGS)
-+#lvfs_LDFLAGS := $(EXTRA_KLDFLAGS)
-+#lvfs_LDADD := $(EXTRA_KLIBS)
-+#
-+#plist_DATA := Info.plist
-+#
-+#install_data_hook := fix-kext-ownership
-+#
-+#endif # DARWIN
- 
- else # MODULES
- 
-diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lvfs/autoMakefile.in
---- orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/lvfs/autoMakefile.in	2010-03-03 16:00:13.384632658 +0000
-@@ -156,12 +156,11 @@
+diff --git a/lustre/lvfs/autoMakefile.in b/lustre/lvfs/autoMakefile.in
+index 6d63c57..45929f8 100644
+--- a/lustre/lvfs/autoMakefile.in
++++ b/lustre/lvfs/autoMakefile.in
+@@ -156,12 +156,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -86256,7 +45174,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -278,8 +277,6 @@
+@@ -278,8 +277,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -86265,7 +45183,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -293,8 +290,10 @@
+@@ -293,8 +290,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -86276,7 +45194,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -302,26 +301,27 @@
+@@ -302,26 +301,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -86307,7 +45225,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-@@ -354,18 +354,6 @@
+@@ -354,18 +354,6 @@ target_vendor = @target_vendor@
  @LINUX_TRUE@@MODULES_TRUE@	-e "s/EXT4/LDISKFS/g" -e "s/ext4/ldiskfs/g" \
  @LINUX_TRUE@@MODULES_TRUE@	-e "s/HAVE_LDISKFS_LDISKFS/HAVE_EXT4_LDISKFS/g"
  
@@ -86326,7 +45244,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  CLEANFILES = fsfilt-*.c fsfilt_ldiskfs*.c fsfilt_extN.c sources
  subdir = lustre/lvfs
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-@@ -381,36 +369,22 @@
+@@ -381,36 +369,22 @@ am__liblvfs_a_SOURCES_DIST = lvfs_userfs.c prng.c lvfs_lib.c
  @LIBLUSTRE_TRUE@	liblvfs_a-prng.$(OBJEXT) \
  @LIBLUSTRE_TRUE@	liblvfs_a-lvfs_lib.$(OBJEXT)
  liblvfs_a_OBJECTS = $(am_liblvfs_a_OBJECTS)
@@ -86367,7 +45285,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  
  all: all-am
  
-@@ -432,33 +406,6 @@
+@@ -432,33 +406,6 @@ liblvfs.a: $(liblvfs_a_OBJECTS) $(liblvfs_a_DEPENDENCIES)
  	-rm -f liblvfs.a
  	$(liblvfs_a_AR) liblvfs.a $(liblvfs_a_OBJECTS) $(liblvfs_a_LIBADD)
  	$(RANLIB) liblvfs.a
@@ -86401,7 +45319,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  
  mostlyclean-compile:
  	-rm -f *.$(OBJEXT) core *.core
-@@ -469,7 +416,6 @@
+@@ -469,7 +416,6 @@ distclean-compile:
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/liblvfs_a-lvfs_lib.Po at am__quote@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/liblvfs_a-lvfs_userfs.Po at am__quote@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/liblvfs_a-prng.Po at am__quote@
@@ -86409,7 +45327,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  
  .c.o:
  @am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
-@@ -558,28 +504,6 @@
+@@ -558,28 +504,6 @@ liblvfs_a-lvfs_lib.obj: lvfs_lib.c
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/liblvfs_a-lvfs_lib.Po' tmpdepfile='$(DEPDIR)/liblvfs_a-lvfs_lib.TPo' @AMDEPBACKSLASH@
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblvfs_a_CPPFLAGS) $(CPPFLAGS) $(liblvfs_a_CFLAGS) $(CFLAGS) -c -o liblvfs_a-lvfs_lib.obj `if test -f 'lvfs_lib.c'; then $(CYGPATH_W) 'lvfs_lib.c'; else $(CYGPATH_W) '$(srcdir)/lvfs_lib.c'; fi`
@@ -86438,7 +45356,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  uninstall-info-am:
  modulefsDATA_INSTALL = $(INSTALL_DATA)
  install-modulefsDATA: $(modulefs_DATA)
-@@ -599,24 +523,6 @@
+@@ -599,24 +523,6 @@ uninstall-modulefsDATA:
  	  echo " rm -f $(DESTDIR)$(modulefsdir)/$$f"; \
  	  rm -f $(DESTDIR)$(modulefsdir)/$$f; \
  	done
@@ -86463,7 +45381,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  
  ETAGS = etags
  ETAGSFLAGS =
-@@ -705,10 +611,10 @@
+@@ -705,10 +611,10 @@ distdir: $(DISTFILES)
  	done
  check-am: all-am
  check: check-am
@@ -86476,7 +45394,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  install: install-am
  install-exec: install-exec-am
  install-data: install-data-am
-@@ -737,8 +643,7 @@
+@@ -737,8 +643,7 @@ maintainer-clean-generic:
  	@echo "it deletes files that may require special tools to rebuild."
  clean: clean-am
  
@@ -86486,7 +45404,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  
  distclean: distclean-am
  	-rm -rf ./$(DEPDIR)
-@@ -754,8 +659,7 @@
+@@ -754,8 +659,7 @@ info: info-am
  
  info-am:
  
@@ -86496,7 +45414,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  	@$(NORMAL_INSTALL)
  	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
  
-@@ -784,21 +688,18 @@
+@@ -784,21 +688,18 @@ ps: ps-am
  
  ps-am:
  
@@ -86526,7 +45444,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  
  
  @LINUX_TRUE@@MODULES_TRUE@@SERVER_TRUE at sources: fsfilt_$(BACKINGFS).c
-@@ -817,6 +718,22 @@
+@@ -817,6 +718,22 @@ uninstall-am: uninstall-info-am uninstall-macosPROGRAMS \
  @LINUX_TRUE@@MODULES_TRUE at fsfilt_ldiskfs_quota.h: fsfilt_ext3_quota.h
  @LINUX_TRUE@@MODULES_TRUE@	sed $(strip $(ldiskfs_sed_flags)) $< > $@
  
@@ -86549,10 +45467,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/lvfs/autoMakefile.in lustre-1.8.2/lustre/lv
  @MODULES_FALSE at sources:
  
  install-data-hook: $(install_data_hook)
-diff -Nurwd orig/lustre-1.8.2/lustre/mdc/autoMakefile.in lustre-1.8.2/lustre/mdc/autoMakefile.in
---- orig/lustre-1.8.2/lustre/mdc/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/mdc/autoMakefile.in	2010-03-03 16:00:13.488633646 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/mdc/autoMakefile.in b/lustre/mdc/autoMakefile.in
+index 27934fc..b1c6df5 100644
+--- a/lustre/mdc/autoMakefile.in
++++ b/lustre/mdc/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -86566,7 +45485,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mdc/autoMakefile.in lustre-1.8.2/lustre/mdc
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -86575,7 +45494,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mdc/autoMakefile.in lustre-1.8.2/lustre/mdc
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -86586,7 +45505,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mdc/autoMakefile.in lustre-1.8.2/lustre/mdc
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -86617,32 +45536,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mdc/autoMakefile.in lustre-1.8.2/lustre/mdc
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/mdc/mdc_locks.c lustre-1.8.2/lustre/mdc/mdc_locks.c
---- orig/lustre-1.8.2/lustre/mdc/mdc_locks.c	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/mdc/mdc_locks.c	2010-03-03 15:57:14.791661479 +0000
-@@ -44,6 +44,7 @@
- # include <linux/pagemap.h>
- # include <linux/miscdevice.h>
- # include <linux/init.h>
-+# include <linux/posix_acl_xattr.h>
- #else
- # include <liblustre.h>
- #endif
-diff -Nurwd orig/lustre-1.8.2/lustre/mdc/mdc_request.c lustre-1.8.2/lustre/mdc/mdc_request.c
---- orig/lustre-1.8.2/lustre/mdc/mdc_request.c	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/mdc/mdc_request.c	2010-03-03 15:57:14.791661479 +0000
-@@ -44,6 +44,7 @@
- # include <linux/pagemap.h>
- # include <linux/miscdevice.h>
- # include <linux/init.h>
-+# include <linux/posix_acl_xattr.h>
- #else
- # include <liblustre.h>
- #endif
-diff -Nurwd orig/lustre-1.8.2/lustre/mds/autoMakefile.in lustre-1.8.2/lustre/mds/autoMakefile.in
---- orig/lustre-1.8.2/lustre/mds/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/mds/autoMakefile.in	2010-03-03 16:00:13.548633586 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/mds/autoMakefile.in b/lustre/mds/autoMakefile.in
+index 9dcdc39..f12b70c 100644
+--- a/lustre/mds/autoMakefile.in
++++ b/lustre/mds/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -86656,7 +45554,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mds/autoMakefile.in lustre-1.8.2/lustre/mds
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -86665,7 +45563,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mds/autoMakefile.in lustre-1.8.2/lustre/mds
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -86676,7 +45574,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mds/autoMakefile.in lustre-1.8.2/lustre/mds
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -86707,52 +45605,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mds/autoMakefile.in lustre-1.8.2/lustre/mds
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/mds/handler.c lustre-1.8.2/lustre/mds/handler.c
---- orig/lustre-1.8.2/lustre/mds/handler.c	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/mds/handler.c	2010-03-03 15:57:14.795654724 +0000
-@@ -52,6 +52,7 @@
- #include <linux/random.h>
- #include <linux/fs.h>
- #include <linux/jbd.h>
-+#include <linux/posix_acl_xattr.h>
- # include <linux/smp_lock.h>
- # include <linux/buffer_head.h>
- # include <linux/workqueue.h>
-@@ -1206,6 +1207,7 @@
-         struct lvfs_run_ctxt saved;
-         int rc, size[2] = { sizeof(struct ptlrpc_body), sizeof(*repbody) };
-         struct lvfs_ucred uc = {NULL,};
-+        int blksize;
-         ENTRY;
- 
-         OBD_FAIL_RETURN(OBD_FAIL_MDS_READPAGE_PACK, -ENOMEM);
-@@ -1234,17 +1236,18 @@
-         if (IS_ERR(file))
-                 GOTO(out_pop, rc = PTR_ERR(file));
- 
-+        blksize = de->d_inode->i_sb->s_blocksize;
-         /* body->size is actually the offset -eeb */
--        if ((body->size & (de->d_inode->i_sb->s_blocksize - 1)) != 0) {
-+        if ((body->size & (blksize - 1)) != 0) {
-                 CERROR("offset "LPU64" not on a block boundary of %lu\n",
--                       body->size, de->d_inode->i_sb->s_blocksize);
-+                       body->size, blksize);
-                 GOTO(out_file, rc = -EFAULT);
-         }
- 
-         /* body->nlink is actually the #bytes to read -eeb */
--        if (body->nlink & (de->d_inode->i_sb->s_blocksize - 1)) {
-+        if (body->nlink & (blksize - 1)) {
-                 CERROR("size %u is not multiple of blocksize %lu\n",
--                       body->nlink, de->d_inode->i_sb->s_blocksize);
-+                       body->nlink, blksize);
-                 GOTO(out_file, rc = -EFAULT);
-         }
- 
-diff -Nurwd orig/lustre-1.8.2/lustre/mgc/autoMakefile.in lustre-1.8.2/lustre/mgc/autoMakefile.in
---- orig/lustre-1.8.2/lustre/mgc/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/mgc/autoMakefile.in	2010-03-03 16:00:13.623632925 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/mgc/autoMakefile.in b/lustre/mgc/autoMakefile.in
+index 65dfd48..6be2110 100644
+--- a/lustre/mgc/autoMakefile.in
++++ b/lustre/mgc/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -86766,7 +45623,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mgc/autoMakefile.in lustre-1.8.2/lustre/mgc
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -86775,7 +45632,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mgc/autoMakefile.in lustre-1.8.2/lustre/mgc
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -86786,7 +45643,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mgc/autoMakefile.in lustre-1.8.2/lustre/mgc
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -86817,10 +45674,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mgc/autoMakefile.in lustre-1.8.2/lustre/mgc
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/mgs/autoMakefile.in lustre-1.8.2/lustre/mgs/autoMakefile.in
---- orig/lustre-1.8.2/lustre/mgs/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/mgs/autoMakefile.in	2010-03-03 16:00:13.675633530 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/mgs/autoMakefile.in b/lustre/mgs/autoMakefile.in
+index 07585bb..0280f18 100644
+--- a/lustre/mgs/autoMakefile.in
++++ b/lustre/mgs/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -86834,7 +45692,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mgs/autoMakefile.in lustre-1.8.2/lustre/mgs
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -86843,7 +45701,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mgs/autoMakefile.in lustre-1.8.2/lustre/mgs
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -86854,7 +45712,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mgs/autoMakefile.in lustre-1.8.2/lustre/mgs
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -86885,69 +45743,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/mgs/autoMakefile.in lustre-1.8.2/lustre/mgs
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.am lustre-1.8.2/lustre/obdclass/autoMakefile.am
---- orig/lustre-1.8.2/lustre/obdclass/autoMakefile.am	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/obdclass/autoMakefile.am	2010-03-03 15:57:14.827661168 +0000
-@@ -1,7 +1,7 @@
- SUBDIRS := linux
--if DARWIN
--SUBDIRS += darwin
--endif
-+#if DARWIN
-+#SUBDIRS += darwin
-+#endif
- DIST_SUBDIRS := $(SUBDIRS)
- 
- if LIBLUSTRE
-@@ -25,25 +25,25 @@
- noinst_DATA = llog_test$(KMODEXT)
- endif # LINUX
- 
--if DARWIN
--macos_PROGRAMS := obdclass
--
--obdclass_SOURCES := \
--        darwin/darwin-module.c darwin/darwin-sysctl.c 		\
--        class_obd.c genops.c lprocfs_status.c           	\
--        lustre_handles.c lustre_peer.c obd_config.c     	\
--        obdo.c debug.c llog_ioctl.c uuid.c                      \
--        llog_swab.c llog_obd.c llog.c llog_cat.c llog_lvfs.c
--
--obdclass_CFLAGS := $(EXTRA_KCFLAGS)
--obdclass_LDFLAGS := $(EXTRA_KLDFLAGS)
--obdclass_LDADD := $(EXTRA_KLIBS)
--
--plist_DATA := Info.plist
--
--install_data_hook := fix-kext-ownership
--
--endif # DARWIN
-+#if DARWIN
-+#macos_PROGRAMS := obdclass
-+#
-+#obdclass_SOURCES := \
-+#        darwin/darwin-module.c darwin/darwin-sysctl.c 		\
-+#        class_obd.c genops.c lprocfs_status.c           	\
-+#        lustre_handles.c lustre_peer.c obd_config.c     	\
-+#        obdo.c debug.c llog_ioctl.c uuid.c                      \
-+#        llog_swab.c llog_obd.c llog.c llog_cat.c llog_lvfs.c
-+#
-+#obdclass_CFLAGS := $(EXTRA_KCFLAGS)
-+#obdclass_LDFLAGS := $(EXTRA_KLDFLAGS)
-+#obdclass_LDADD := $(EXTRA_KLIBS)
-+#
-+#plist_DATA := Info.plist
-+#
-+#install_data_hook := fix-kext-ownership
-+#
-+#endif # DARWIN
- 
- endif # MODULES
- 
-diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustre/obdclass/autoMakefile.in
---- orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/obdclass/autoMakefile.in	2010-03-03 16:00:13.807632857 +0000
-@@ -38,7 +38,6 @@
+diff --git a/lustre/obdclass/autoMakefile.in b/lustre/obdclass/autoMakefile.in
+index 8ddb4e0..fbd6ae3 100644
+--- a/lustre/obdclass/autoMakefile.in
++++ b/lustre/obdclass/autoMakefile.in
+@@ -38,7 +38,6 @@ POST_UNINSTALL = :
  build_triplet = @build@
  host_triplet = @host@
  target_triplet = @target@
@@ -86955,7 +45755,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  ACLOCAL = @ACLOCAL@
  AC_LUSTRE_CLIENT_URN = @AC_LUSTRE_CLIENT_URN@
  AC_LUSTRE_CLI_VER_OFFSET_WARN = @AC_LUSTRE_CLI_VER_OFFSET_WARN@
-@@ -120,12 +119,11 @@
+@@ -120,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -86969,7 +45769,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -242,8 +240,6 @@
+@@ -242,8 +240,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -86978,7 +45778,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -257,8 +253,10 @@
+@@ -257,8 +253,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -86989,7 +45789,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -266,26 +264,27 @@
+@@ -266,26 +264,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -87020,7 +45820,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-@@ -296,7 +295,10 @@
+@@ -296,7 +295,10 @@ target_alias = @target_alias@
  target_cpu = @target_cpu@
  target_os = @target_os@
  target_vendor = @target_vendor@
@@ -87032,7 +45832,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  DIST_SUBDIRS := $(SUBDIRS)
  
  @LIBLUSTRE_TRUE at noinst_LIBRARIES = liblustreclass.a
-@@ -306,24 +308,6 @@
+@@ -306,24 +308,6 @@ DIST_SUBDIRS := $(SUBDIRS)
  
  @LINUX_TRUE@@MODULES_TRUE at modulefs_DATA = obdclass$(KMODEXT)
  @LINUX_TRUE@@MODULES_TRUE at noinst_DATA = llog_test$(KMODEXT)
@@ -87057,7 +45857,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  subdir = lustre/obdclass
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
-@@ -355,40 +339,6 @@
+@@ -355,40 +339,6 @@ am__liblustreclass_a_SOURCES_DIST = class_obd.c debug.c genops.c \
  @LIBLUSTRE_TRUE@	liblustreclass_a-llog_lvfs.$(OBJEXT) \
  @LIBLUSTRE_TRUE@	liblustreclass_a-llog_swab.$(OBJEXT)
  liblustreclass_a_OBJECTS = $(am_liblustreclass_a_OBJECTS)
@@ -87098,7 +45898,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  
  DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)
  depcomp = $(SHELL) $(top_srcdir)/depcomp
-@@ -408,31 +358,13 @@
+@@ -408,31 +358,13 @@ am__depfiles_maybe = depfiles
  @AMDEP_TRUE@	./$(DEPDIR)/liblustreclass_a-obd_config.Po \
  @AMDEP_TRUE@	./$(DEPDIR)/liblustreclass_a-obdo.Po \
  @AMDEP_TRUE@	./$(DEPDIR)/liblustreclass_a-statfs_pack.Po \
@@ -87133,7 +45933,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  
  
  RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
-@@ -441,7 +373,7 @@
+@@ -441,7 +373,7 @@ RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
  	installdirs-recursive install-recursive uninstall-recursive \
  	check-recursive installcheck-recursive
  DIST_COMMON = $(srcdir)/autoMakefile.in Makefile.in autoMakefile.am
@@ -87142,7 +45942,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  
  all: all-recursive
  
-@@ -463,33 +395,6 @@
+@@ -463,33 +395,6 @@ liblustreclass.a: $(liblustreclass_a_OBJECTS) $(liblustreclass_a_DEPENDENCIES)
  	-rm -f liblustreclass.a
  	$(liblustreclass_a_AR) liblustreclass.a $(liblustreclass_a_OBJECTS) $(liblustreclass_a_LIBADD)
  	$(RANLIB) liblustreclass.a
@@ -87176,7 +45976,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  
  mostlyclean-compile:
  	-rm -f *.$(OBJEXT) core *.core
-@@ -513,23 +418,6 @@
+@@ -513,23 +418,6 @@ distclean-compile:
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/liblustreclass_a-obdo.Po at am__quote@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/liblustreclass_a-statfs_pack.Po at am__quote@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/liblustreclass_a-uuid.Po at am__quote@
@@ -87200,7 +46000,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  
  .c.o:
  @am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
-@@ -904,380 +792,6 @@
+@@ -904,380 +792,6 @@ liblustreclass_a-llog_swab.obj: llog_swab.c
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/liblustreclass_a-llog_swab.Po' tmpdepfile='$(DEPDIR)/liblustreclass_a-llog_swab.TPo' @AMDEPBACKSLASH@
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(liblustreclass_a_CPPFLAGS) $(CPPFLAGS) $(liblustreclass_a_CFLAGS) $(CFLAGS) -c -o liblustreclass_a-llog_swab.obj `if test -f 'llog_swab.c'; then $(CYGPATH_W) 'llog_swab.c'; else $(CYGPATH_W) '$(srcdir)/llog_swab.c'; fi`
@@ -87581,7 +46381,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  uninstall-info-am:
  modulefsDATA_INSTALL = $(INSTALL_DATA)
  install-modulefsDATA: $(modulefs_DATA)
-@@ -1297,24 +811,6 @@
+@@ -1297,24 +811,6 @@ uninstall-modulefsDATA:
  	  echo " rm -f $(DESTDIR)$(modulefsdir)/$$f"; \
  	  rm -f $(DESTDIR)$(modulefsdir)/$$f; \
  	done
@@ -87606,7 +46406,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  
  # This directory's subdirectories are mostly independent; you can cd
  # into them and run `make' without going through this Makefile.
-@@ -1486,10 +982,10 @@
+@@ -1486,10 +982,10 @@ distdir: $(DISTFILES)
  	done
  check-am: all-am
  check: check-recursive
@@ -87619,7 +46419,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  
  install: install-recursive
  install-exec: install-exec-recursive
-@@ -1518,8 +1014,7 @@
+@@ -1518,8 +1014,7 @@ maintainer-clean-generic:
  	@echo "it deletes files that may require special tools to rebuild."
  clean: clean-recursive
  
@@ -87629,7 +46429,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  
  distclean: distclean-recursive
  	-rm -rf ./$(DEPDIR)
-@@ -1535,8 +1030,7 @@
+@@ -1535,8 +1030,7 @@ info: info-recursive
  
  info-am:
  
@@ -87639,7 +46439,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
  	@$(NORMAL_INSTALL)
  	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
  
-@@ -1565,31 +1059,49 @@
+@@ -1565,30 +1059,48 @@ ps: ps-recursive
  
  ps-am:
  
@@ -87667,6 +46467,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
 -	tags-recursive uninstall uninstall-am uninstall-info-am \
 -	uninstall-info-recursive uninstall-macosPROGRAMS \
 -	uninstall-modulefsDATA uninstall-plistDATA uninstall-recursive
+-
 +	clean-generic clean-noinstLIBRARIES clean-recursive ctags \
 +	ctags-recursive distclean distclean-compile distclean-generic \
 +	distclean-recursive distclean-tags distdir dvi dvi-am \
@@ -87683,8 +46484,8 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
 +	uninstall uninstall-am uninstall-info-am \
 +	uninstall-info-recursive uninstall-modulefsDATA \
 +	uninstall-recursive
- 
- 
++
++
 +#if DARWIN
 +#macos_PROGRAMS := obdclass
 +#
@@ -87704,14 +46505,14 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/autoMakefile.in lustre-1.8.2/lustr
 +#install_data_hook := fix-kext-ownership
 +#
 +#endif # DARWIN
-+
+ 
  install-data-hook: $(install_data_hook)
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
-diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/linux/Makefile.in lustre-1.8.2/lustre/obdclass/linux/Makefile.in
---- orig/lustre-1.8.2/lustre/obdclass/linux/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/obdclass/linux/Makefile.in	2010-03-03 16:00:13.855633512 +0000
-@@ -119,12 +119,11 @@
+diff --git a/lustre/obdclass/linux/Makefile.in b/lustre/obdclass/linux/Makefile.in
+index 2318f21..8c2d42d 100644
+--- a/lustre/obdclass/linux/Makefile.in
++++ b/lustre/obdclass/linux/Makefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -87725,7 +46526,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/linux/Makefile.in lustre-1.8.2/lus
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -240,8 +239,6 @@
+@@ -240,8 +239,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -87734,7 +46535,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/linux/Makefile.in lustre-1.8.2/lus
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -255,8 +252,10 @@
+@@ -255,8 +252,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -87745,7 +46546,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/linux/Makefile.in lustre-1.8.2/lus
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -264,26 +263,27 @@
+@@ -264,26 +263,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -87776,52 +46577,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdclass/linux/Makefile.in lustre-1.8.2/lus
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.am lustre-1.8.2/lustre/obdecho/autoMakefile.am
---- orig/lustre-1.8.2/lustre/obdecho/autoMakefile.am	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/obdecho/autoMakefile.am	2010-03-03 15:57:14.827661168 +0000
-@@ -46,22 +46,22 @@
- modulefs_DATA = obdecho$(KMODEXT)
- endif
- 
--if DARWIN
--macos_PROGRAMS := obdecho
--obdecho_SOURCES := \
--        lproc_echo.c \
--        echo.c \
--        echo_client.c
--
--obdecho_CFLAGS := $(EXTRA_KCFLAGS)
--obdecho_LDFLAGS := $(EXTRA_KLDFLAGS)
--obdecho_LDADD := $(EXTRA_KLIBS)
--
--plist_DATA := Info.plist
--
--install_data_hook := fix-kext-ownership
--
--endif # darwin
-+#if DARWIN
-+#macos_PROGRAMS := obdecho
-+#obdecho_SOURCES := \
-+#        lproc_echo.c \
-+#        echo.c \
-+#        echo_client.c
-+#
-+#obdecho_CFLAGS := $(EXTRA_KCFLAGS)
-+#obdecho_LDFLAGS := $(EXTRA_KLDFLAGS)
-+#obdecho_LDADD := $(EXTRA_KLIBS)
-+#
-+#plist_DATA := Info.plist
-+#
-+#install_data_hook := fix-kext-ownership
-+#
-+#endif # darwin
- 
- endif # MODULES
- 
-diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre/obdecho/autoMakefile.in
---- orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/obdecho/autoMakefile.in	2010-03-03 16:00:13.927633651 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/obdecho/autoMakefile.in b/lustre/obdecho/autoMakefile.in
+index b9e9352..4f143f5 100644
+--- a/lustre/obdecho/autoMakefile.in
++++ b/lustre/obdecho/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -87835,7 +46595,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -87844,7 +46604,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -87855,7 +46615,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -87886,7 +46646,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-@@ -338,21 +338,6 @@
+@@ -338,21 +338,6 @@ target_vendor = @target_vendor@
  @LIBLUSTRE_TRUE at libobdecho_a_CFLAGS = $(LLCFLAGS)
  
  @LINUX_TRUE@@MODULES_TRUE at modulefs_DATA = obdecho$(KMODEXT)
@@ -87908,7 +46668,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
  subdir = lustre/obdecho
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
-@@ -366,40 +351,20 @@
+@@ -366,40 +351,20 @@ am__libobdecho_a_SOURCES_DIST = echo_client.c
  @LIBLUSTRE_TRUE at am_libobdecho_a_OBJECTS = \
  @LIBLUSTRE_TRUE@	libobdecho_a-echo_client.$(OBJEXT)
  libobdecho_a_OBJECTS = $(am_libobdecho_a_OBJECTS)
@@ -87953,7 +46713,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
  
  all: all-am
  
-@@ -421,33 +386,6 @@
+@@ -421,33 +386,6 @@ libobdecho.a: $(libobdecho_a_OBJECTS) $(libobdecho_a_DEPENDENCIES)
  	-rm -f libobdecho.a
  	$(libobdecho_a_AR) libobdecho.a $(libobdecho_a_OBJECTS) $(libobdecho_a_LIBADD)
  	$(RANLIB) libobdecho.a
@@ -87987,7 +46747,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
  
  mostlyclean-compile:
  	-rm -f *.$(OBJEXT) core *.core
-@@ -456,9 +394,6 @@
+@@ -456,9 +394,6 @@ distclean-compile:
  	-rm -f *.tab.c
  
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libobdecho_a-echo_client.Po at am__quote@
@@ -87997,7 +46757,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
  
  .c.o:
  @am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
-@@ -503,72 +438,6 @@
+@@ -503,72 +438,6 @@ libobdecho_a-echo_client.obj: echo_client.c
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libobdecho_a-echo_client.Po' tmpdepfile='$(DEPDIR)/libobdecho_a-echo_client.TPo' @AMDEPBACKSLASH@
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libobdecho_a_CPPFLAGS) $(CPPFLAGS) $(libobdecho_a_CFLAGS) $(CFLAGS) -c -o libobdecho_a-echo_client.obj `if test -f 'echo_client.c'; then $(CYGPATH_W) 'echo_client.c'; else $(CYGPATH_W) '$(srcdir)/echo_client.c'; fi`
@@ -88070,7 +46830,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
  uninstall-info-am:
  modulefsDATA_INSTALL = $(INSTALL_DATA)
  install-modulefsDATA: $(modulefs_DATA)
-@@ -588,24 +457,6 @@
+@@ -588,24 +457,6 @@ uninstall-modulefsDATA:
  	  echo " rm -f $(DESTDIR)$(modulefsdir)/$$f"; \
  	  rm -f $(DESTDIR)$(modulefsdir)/$$f; \
  	done
@@ -88095,7 +46855,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
  
  ETAGS = etags
  ETAGSFLAGS =
-@@ -694,10 +545,10 @@
+@@ -694,10 +545,10 @@ distdir: $(DISTFILES)
  	done
  check-am: all-am
  check: check-am
@@ -88108,7 +46868,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
  install: install-am
  install-exec: install-exec-am
  install-data: install-data-am
-@@ -725,8 +576,7 @@
+@@ -725,8 +576,7 @@ maintainer-clean-generic:
  	@echo "it deletes files that may require special tools to rebuild."
  clean: clean-am
  
@@ -88118,7 +46878,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
  
  distclean: distclean-am
  	-rm -rf ./$(DEPDIR)
-@@ -742,8 +592,7 @@
+@@ -742,8 +592,7 @@ info: info-am
  
  info-am:
  
@@ -88128,7 +46888,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
  	@$(NORMAL_INSTALL)
  	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
  
-@@ -772,22 +621,36 @@
+@@ -772,23 +621,37 @@ ps: ps-am
  
  ps-am:
  
@@ -88155,7 +46915,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
 -	uninstall-am uninstall-info-am uninstall-macosPROGRAMS \
 -	uninstall-modulefsDATA uninstall-plistDATA
 +	uninstall-am uninstall-info-am uninstall-modulefsDATA
-+
+ 
  
 +#if DARWIN
 +#macos_PROGRAMS := obdecho
@@ -88173,13 +46933,15 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdecho/autoMakefile.in lustre-1.8.2/lustre
 +#install_data_hook := fix-kext-ownership
 +#
 +#endif # darwin
- 
++
  install-data-hook: $(install_data_hook)
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
-diff -Nurwd orig/lustre-1.8.2/lustre/obdfilter/autoMakefile.in lustre-1.8.2/lustre/obdfilter/autoMakefile.in
---- orig/lustre-1.8.2/lustre/obdfilter/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/obdfilter/autoMakefile.in	2010-03-03 16:00:13.979633412 +0000
-@@ -155,12 +155,11 @@
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+diff --git a/lustre/obdfilter/autoMakefile.in b/lustre/obdfilter/autoMakefile.in
+index 948e19f..34a6ece 100644
+--- a/lustre/obdfilter/autoMakefile.in
++++ b/lustre/obdfilter/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -88193,7 +46955,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdfilter/autoMakefile.in lustre-1.8.2/lust
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -88202,7 +46964,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdfilter/autoMakefile.in lustre-1.8.2/lust
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -88213,7 +46975,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdfilter/autoMakefile.in lustre-1.8.2/lust
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -88244,52 +47006,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/obdfilter/autoMakefile.in lustre-1.8.2/lust
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.am lustre-1.8.2/lustre/osc/autoMakefile.am
---- orig/lustre-1.8.2/lustre/osc/autoMakefile.am	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/osc/autoMakefile.am	2010-03-03 15:57:14.827661168 +0000
-@@ -47,22 +47,22 @@
- modulefs_DATA = osc$(KMODEXT)
- endif
- 
--if DARWIN
--macos_PROGRAMS := osc
--
--osc_SOURCES := \
--        osc_create.c \
--        osc_request.c
--
--osc_CFLAGS := $(EXTRA_KCFLAGS)
--osc_LDFLAGS := $(EXTRA_KLDFLAGS)
--osc_LDADD := $(EXTRA_KLIBS)
--
--plist_DATA := Info.plist
--
--install_data_hook := fix-kext-ownership
--
--endif # Darwin
-+#if DARWIN
-+#macos_PROGRAMS := osc
-+#
-+#osc_SOURCES := \
-+#        osc_create.c \
-+#        osc_request.c
-+#
-+#osc_CFLAGS := $(EXTRA_KCFLAGS)
-+#osc_LDFLAGS := $(EXTRA_KLDFLAGS)
-+#osc_LDADD := $(EXTRA_KLIBS)
-+#
-+#plist_DATA := Info.plist
-+#
-+#install_data_hook := fix-kext-ownership
-+#
-+#endif # Darwin
- 
- endif
- 
-diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc/autoMakefile.in
---- orig/lustre-1.8.2/lustre/osc/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/osc/autoMakefile.in	2010-03-03 16:00:14.063632838 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/osc/autoMakefile.in b/lustre/osc/autoMakefile.in
+index c53f439..d38d8a0 100644
+--- a/lustre/osc/autoMakefile.in
++++ b/lustre/osc/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -88303,7 +47024,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -88312,7 +47033,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -88323,7 +47044,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -88354,7 +47075,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-@@ -338,21 +338,6 @@
+@@ -338,21 +338,6 @@ target_vendor = @target_vendor@
  @LIBLUSTRE_TRUE at libosc_a_CFLAGS = $(LLCFLAGS)
  
  @LINUX_TRUE@@MODULES_TRUE at modulefs_DATA = osc$(KMODEXT)
@@ -88376,7 +47097,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc
  subdir = lustre/osc
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
-@@ -368,38 +353,22 @@
+@@ -368,38 +353,22 @@ am__libosc_a_SOURCES_DIST = osc_request.c osc_create.c osc_internal.h \
  @LIBLUSTRE_TRUE@	libosc_a-osc_create.$(OBJEXT) \
  @LIBLUSTRE_TRUE@	libosc_a-cache.$(OBJEXT)
  libosc_a_OBJECTS = $(am_libosc_a_OBJECTS)
@@ -88419,7 +47140,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc
  
  all: all-am
  
-@@ -421,33 +390,6 @@
+@@ -421,33 +390,6 @@ libosc.a: $(libosc_a_OBJECTS) $(libosc_a_DEPENDENCIES)
  	-rm -f libosc.a
  	$(libosc_a_AR) libosc.a $(libosc_a_OBJECTS) $(libosc_a_LIBADD)
  	$(RANLIB) libosc.a
@@ -88453,7 +47174,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc
  
  mostlyclean-compile:
  	-rm -f *.$(OBJEXT) core *.core
-@@ -458,8 +400,6 @@
+@@ -458,8 +400,6 @@ distclean-compile:
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libosc_a-cache.Po at am__quote@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libosc_a-osc_create.Po at am__quote@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libosc_a-osc_request.Po at am__quote@
@@ -88462,7 +47183,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc
  
  .c.o:
  @am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
-@@ -548,50 +488,6 @@
+@@ -548,50 +488,6 @@ libosc_a-cache.obj: cache.c
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libosc_a-cache.Po' tmpdepfile='$(DEPDIR)/libosc_a-cache.TPo' @AMDEPBACKSLASH@
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libosc_a_CPPFLAGS) $(CPPFLAGS) $(libosc_a_CFLAGS) $(CFLAGS) -c -o libosc_a-cache.obj `if test -f 'cache.c'; then $(CYGPATH_W) 'cache.c'; else $(CYGPATH_W) '$(srcdir)/cache.c'; fi`
@@ -88513,7 +47234,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc
  uninstall-info-am:
  modulefsDATA_INSTALL = $(INSTALL_DATA)
  install-modulefsDATA: $(modulefs_DATA)
-@@ -611,24 +507,6 @@
+@@ -611,24 +507,6 @@ uninstall-modulefsDATA:
  	  echo " rm -f $(DESTDIR)$(modulefsdir)/$$f"; \
  	  rm -f $(DESTDIR)$(modulefsdir)/$$f; \
  	done
@@ -88538,7 +47259,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc
  
  ETAGS = etags
  ETAGSFLAGS =
-@@ -717,10 +595,10 @@
+@@ -717,10 +595,10 @@ distdir: $(DISTFILES)
  	done
  check-am: all-am
  check: check-am
@@ -88551,7 +47272,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc
  install: install-am
  install-exec: install-exec-am
  install-data: install-data-am
-@@ -748,8 +626,7 @@
+@@ -748,8 +626,7 @@ maintainer-clean-generic:
  	@echo "it deletes files that may require special tools to rebuild."
  clean: clean-am
  
@@ -88561,7 +47282,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc
  
  distclean: distclean-am
  	-rm -rf ./$(DEPDIR)
-@@ -765,8 +642,7 @@
+@@ -765,8 +642,7 @@ info: info-am
  
  info-am:
  
@@ -88571,7 +47292,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc
  	@$(NORMAL_INSTALL)
  	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
  
-@@ -795,23 +671,37 @@
+@@ -795,23 +671,37 @@ ps: ps-am
  
  ps-am:
  
@@ -88620,10 +47341,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/osc/autoMakefile.in lustre-1.8.2/lustre/osc
  install-data-hook: $(install_data_hook)
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
  # Otherwise a system limit (for SysV at least) may be exceeded.
-diff -Nurwd orig/lustre-1.8.2/lustre/ost/autoMakefile.in lustre-1.8.2/lustre/ost/autoMakefile.in
---- orig/lustre-1.8.2/lustre/ost/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/ost/autoMakefile.in	2010-03-03 16:00:14.115633723 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/ost/autoMakefile.in b/lustre/ost/autoMakefile.in
+index a602e18..b9e31af 100644
+--- a/lustre/ost/autoMakefile.in
++++ b/lustre/ost/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -88637,7 +47359,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ost/autoMakefile.in lustre-1.8.2/lustre/ost
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -88646,7 +47368,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ost/autoMakefile.in lustre-1.8.2/lustre/ost
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -88657,7 +47379,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ost/autoMakefile.in lustre-1.8.2/lustre/ost
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -88688,86 +47410,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ost/autoMakefile.in lustre-1.8.2/lustre/ost
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.am lustre-1.8.2/lustre/ptlrpc/autoMakefile.am
---- orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.am	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/ptlrpc/autoMakefile.am	2010-03-03 15:57:14.827661168 +0000
-@@ -68,39 +68,39 @@
- modulefs_DATA = ptlrpc$(KMODEXT)
- endif #LINUX
- 
--if DARWIN
--macos_PROGRAMS := ptlrpc
--
--ptlrpc_SOURCES := \
--        ptlrpc_module.c \
--        client.c \
--        connection.c \
--        events.c \
--        import.c \
--        llog_client.c \
--        llog_net.c \
--        llog_server.c \
--        lproc_ptlrpc.c \
--        niobuf.c \
--        pack_generic.c \
--        pers.c \
--        pinger.c \
--        ptlrpcd.c \
--        recover.c \
--        recov_thread.c \
--        service.c \
--	wiretest.c \
--        $(LDLM_COMM_SOURCES)
--
--ptlrpc_CFLAGS := $(EXTRA_KCFLAGS)
--ptlrpc_LDFLAGS := $(EXTRA_KLDFLAGS)
--ptlrpc_LDADD := $(EXTRA_KLIBS)
--
--plist_DATA := Info.plist
--
--install_data_hook := fix-kext-ownership
--
--endif # DARWIN
-+#if DARWIN
-+#macos_PROGRAMS := ptlrpc
-+#
-+#ptlrpc_SOURCES := \
-+#        ptlrpc_module.c \
-+#        client.c \
-+#        connection.c \
-+#        events.c \
-+#        import.c \
-+#        llog_client.c \
-+#        llog_net.c \
-+#        llog_server.c \
-+#        lproc_ptlrpc.c \
-+#        niobuf.c \
-+#        pack_generic.c \
-+#        pers.c \
-+#        pinger.c \
-+#        ptlrpcd.c \
-+#        recover.c \
-+#        recov_thread.c \
-+#        service.c \
-+#	wiretest.c \
-+#        $(LDLM_COMM_SOURCES)
-+#
-+#ptlrpc_CFLAGS := $(EXTRA_KCFLAGS)
-+#ptlrpc_LDFLAGS := $(EXTRA_KLDFLAGS)
-+#ptlrpc_LDADD := $(EXTRA_KLIBS)
-+#
-+#plist_DATA := Info.plist
-+#
-+#install_data_hook := fix-kext-ownership
-+#
-+#endif # DARWIN
- 
- endif # MODULES
- 
-diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/ptlrpc/autoMakefile.in
---- orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/ptlrpc/autoMakefile.in	2010-03-03 16:00:14.303633047 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/ptlrpc/autoMakefile.in b/lustre/ptlrpc/autoMakefile.in
+index cb773c6..78a0411 100644
+--- a/lustre/ptlrpc/autoMakefile.in
++++ b/lustre/ptlrpc/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -88781,7 +47428,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -276,8 +275,6 @@
+@@ -276,8 +275,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -88790,7 +47437,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -291,8 +288,10 @@
+@@ -291,8 +288,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -88801,7 +47448,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -300,26 +299,27 @@
+@@ -300,26 +299,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -88832,7 +47479,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-@@ -358,38 +358,6 @@
+@@ -358,38 +358,6 @@ COMMON_SOURCES = client.c recover.c connection.c niobuf.c pack_generic.c   \
  @LIBLUSTRE_TRUE at libptlrpc_a_CFLAGS = $(LLCFLAGS)
  
  @LINUX_TRUE@@MODULES_TRUE at modulefs_DATA = ptlrpc$(KMODEXT)
@@ -88871,7 +47518,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  subdir = lustre/ptlrpc
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
-@@ -442,60 +410,6 @@
+@@ -442,60 +410,6 @@ am__objects_2 = libptlrpc_a-client.$(OBJEXT) \
  	libptlrpc_a-wiretest.$(OBJEXT) $(am__objects_1)
  @LIBLUSTRE_TRUE at am_libptlrpc_a_OBJECTS = $(am__objects_2)
  libptlrpc_a_OBJECTS = $(am_libptlrpc_a_OBJECTS)
@@ -88932,7 +47579,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  
  DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)
  depcomp = $(SHELL) $(top_srcdir)/depcomp
-@@ -529,47 +443,16 @@
+@@ -529,47 +443,16 @@ am__depfiles_maybe = depfiles
  @AMDEP_TRUE@	./$(DEPDIR)/libptlrpc_a-recov_thread.Po \
  @AMDEP_TRUE@	./$(DEPDIR)/libptlrpc_a-recover.Po \
  @AMDEP_TRUE@	./$(DEPDIR)/libptlrpc_a-service.Po \
@@ -88984,7 +47631,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  
  all: all-am
  
-@@ -591,33 +474,6 @@
+@@ -591,33 +474,6 @@ libptlrpc.a: $(libptlrpc_a_OBJECTS) $(libptlrpc_a_DEPENDENCIES)
  	-rm -f libptlrpc.a
  	$(libptlrpc_a_AR) libptlrpc.a $(libptlrpc_a_OBJECTS) $(libptlrpc_a_LIBADD)
  	$(RANLIB) libptlrpc.a
@@ -89018,7 +47665,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  
  mostlyclean-compile:
  	-rm -f *.$(OBJEXT) core *.core
-@@ -655,36 +511,6 @@
+@@ -655,36 +511,6 @@ distclean-compile:
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libptlrpc_a-recover.Po at am__quote@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libptlrpc_a-service.Po at am__quote@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libptlrpc_a-wiretest.Po at am__quote@
@@ -89055,7 +47702,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  
  .c.o:
  @am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
-@@ -1367,666 +1193,6 @@
+@@ -1367,666 +1193,6 @@ libptlrpc_a-ldlm_pool.obj: $(top_srcdir)/lustre/ldlm/ldlm_pool.c
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libptlrpc_a-ldlm_pool.Po' tmpdepfile='$(DEPDIR)/libptlrpc_a-ldlm_pool.TPo' @AMDEPBACKSLASH@
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libptlrpc_a_CPPFLAGS) $(CPPFLAGS) $(libptlrpc_a_CFLAGS) $(CFLAGS) -c -o libptlrpc_a-ldlm_pool.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_pool.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_pool.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_pool.c'; fi`
@@ -89722,7 +48369,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  uninstall-info-am:
  modulefsDATA_INSTALL = $(INSTALL_DATA)
  install-modulefsDATA: $(modulefs_DATA)
-@@ -2046,24 +1212,6 @@
+@@ -2046,24 +1212,6 @@ uninstall-modulefsDATA:
  	  echo " rm -f $(DESTDIR)$(modulefsdir)/$$f"; \
  	  rm -f $(DESTDIR)$(modulefsdir)/$$f; \
  	done
@@ -89747,7 +48394,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  
  ETAGS = etags
  ETAGSFLAGS =
-@@ -2152,10 +1300,10 @@
+@@ -2152,10 +1300,10 @@ distdir: $(DISTFILES)
  	done
  check-am: all-am
  check: check-am
@@ -89760,7 +48407,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  install: install-am
  install-exec: install-exec-am
  install-data: install-data-am
-@@ -2183,8 +1331,7 @@
+@@ -2183,8 +1331,7 @@ maintainer-clean-generic:
  	@echo "it deletes files that may require special tools to rebuild."
  clean: clean-am
  
@@ -89770,7 +48417,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  
  distclean: distclean-am
  	-rm -rf ./$(DEPDIR)
-@@ -2200,8 +1347,7 @@
+@@ -2200,8 +1347,7 @@ info: info-am
  
  info-am:
  
@@ -89780,7 +48427,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  	@$(NORMAL_INSTALL)
  	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
  
-@@ -2230,23 +1376,54 @@
+@@ -2230,23 +1376,54 @@ ps: ps-am
  
  ps-am:
  
@@ -89846,10 +48493,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/ptlrpc/autoMakefile.in lustre-1.8.2/lustre/
  install-data-hook: $(install_data_hook)
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
  # Otherwise a system limit (for SysV at least) may be exceeded.
-diff -Nurwd orig/lustre-1.8.2/lustre/quota/autoMakefile.in lustre-1.8.2/lustre/quota/autoMakefile.in
---- orig/lustre-1.8.2/lustre/quota/autoMakefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/quota/autoMakefile.in	2010-03-03 16:00:14.387632830 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/quota/autoMakefile.in b/lustre/quota/autoMakefile.in
+index b68a932..7fa0481 100644
+--- a/lustre/quota/autoMakefile.in
++++ b/lustre/quota/autoMakefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -89863,7 +48511,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/quota/autoMakefile.in lustre-1.8.2/lustre/q
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -277,8 +276,6 @@
+@@ -277,8 +276,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -89872,7 +48520,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/quota/autoMakefile.in lustre-1.8.2/lustre/q
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -292,8 +289,10 @@
+@@ -292,8 +289,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -89883,7 +48531,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/quota/autoMakefile.in lustre-1.8.2/lustre/q
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -301,26 +300,27 @@
+@@ -301,26 +300,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -89914,10 +48562,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/quota/autoMakefile.in lustre-1.8.2/lustre/q
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/scripts/Makefile.in lustre-1.8.2/lustre/scripts/Makefile.in
---- orig/lustre-1.8.2/lustre/scripts/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/scripts/Makefile.in	2010-03-03 16:00:14.447634167 +0000
-@@ -155,12 +155,11 @@
+diff --git a/lustre/scripts/Makefile.in b/lustre/scripts/Makefile.in
+index 3d3cf9f..763c28f 100644
+--- a/lustre/scripts/Makefile.in
++++ b/lustre/scripts/Makefile.in
+@@ -155,12 +155,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -89931,7 +48580,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/scripts/Makefile.in lustre-1.8.2/lustre/scr
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -276,8 +275,6 @@
+@@ -276,8 +275,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -89940,7 +48589,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/scripts/Makefile.in lustre-1.8.2/lustre/scr
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -291,8 +288,10 @@
+@@ -291,8 +288,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -89951,7 +48600,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/scripts/Makefile.in lustre-1.8.2/lustre/scr
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -300,26 +299,27 @@
+@@ -300,26 +299,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -89982,138 +48631,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/scripts/Makefile.in lustre-1.8.2/lustre/scr
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/scripts/lc_cluman.in lustre-1.8.2/lustre/scripts/lc_cluman.in
---- orig/lustre-1.8.2/lustre/scripts/lc_cluman.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/scripts/lc_cluman.in	2010-03-03 15:57:14.867633986 +0000
-@@ -38,7 +38,7 @@
- }
- 
- # Get the library of functions
--. @scriptlibdir@/lc_common
-+. /usr/share/lustre/lc_common
- 
- #****************************** Global variables ******************************#
- TMP_DIR=${CLUMGR_TMP_DIR}		# Temporary directory
-diff -Nurwd orig/lustre-1.8.2/lustre/scripts/lc_hb.in lustre-1.8.2/lustre/scripts/lc_hb.in
---- orig/lustre-1.8.2/lustre/scripts/lc_hb.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/scripts/lc_hb.in	2010-03-03 15:57:14.867633986 +0000
-@@ -34,7 +34,7 @@
- }
- 
- # Get the library of functions
--. @scriptlibdir@/lc_common
-+. /usr/share/lustre/lc_common
- 
- #****************************** Global variables ******************************#
- # Heartbeat tools
-diff -Nurwd orig/lustre-1.8.2/lustre/scripts/lc_lvm.in lustre-1.8.2/lustre/scripts/lc_lvm.in
---- orig/lustre-1.8.2/lustre/scripts/lc_lvm.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/scripts/lc_lvm.in	2010-03-03 15:57:14.867633986 +0000
-@@ -118,7 +118,7 @@
- }
- 
- # Get the library of functions
--. @scriptlibdir@/lc_common
-+. /usr/share/lustre/lc_common
- 
- #***************************** Global variables *****************************#
- # All the LVM device items in the csv file
-diff -Nurwd orig/lustre-1.8.2/lustre/scripts/lc_md.in lustre-1.8.2/lustre/scripts/lc_md.in
---- orig/lustre-1.8.2/lustre/scripts/lc_md.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/scripts/lc_md.in	2010-03-03 15:57:14.867633986 +0000
-@@ -70,7 +70,7 @@
- }
- 
- # Get the library of functions
--. @scriptlibdir@/lc_common
-+. /usr/share/lustre/lc_common
- 
- #***************************** Global variables *****************************#
- # All the MD device items in the csv file
-diff -Nurwd orig/lustre-1.8.2/lustre/scripts/lc_modprobe.in lustre-1.8.2/lustre/scripts/lc_modprobe.in
---- orig/lustre-1.8.2/lustre/scripts/lc_modprobe.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/scripts/lc_modprobe.in	2010-03-03 15:57:14.867633986 +0000
-@@ -6,7 +6,7 @@
- #################################################################################
- 
- # Get the library of functions
--. @scriptlibdir@/lc_common
-+. /usr/share/lustre/lc_common
- 
- # Check the kernel version
- KERNEL_VERSION=`uname -r`
-diff -Nurwd orig/lustre-1.8.2/lustre/scripts/lc_net.in lustre-1.8.2/lustre/scripts/lc_net.in
---- orig/lustre-1.8.2/lustre/scripts/lc_net.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/scripts/lc_net.in	2010-03-03 15:57:14.867633986 +0000
-@@ -30,7 +30,7 @@
- }
- 
- # Get the library of functions
--. @scriptlibdir@/lc_common
-+. /usr/share/lustre/lc_common
- 
- VERBOSE_OUTPUT=false
- # Get and check the positional parameters
-diff -Nurwd orig/lustre-1.8.2/lustre/scripts/lustre_config.in lustre-1.8.2/lustre/scripts/lustre_config.in
---- orig/lustre-1.8.2/lustre/scripts/lustre_config.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/scripts/lustre_config.in	2010-03-03 15:57:14.871660545 +0000
-@@ -233,7 +233,7 @@
- }
- 
- # Get the library of functions
--. @scriptlibdir@/lc_common
-+. /usr/share/lustre/lc_common
- 
- #***************************** Global variables *****************************#
- declare -a NODE_NAMES               # node names in the failover group
-diff -Nurwd orig/lustre-1.8.2/lustre/scripts/lustre_createcsv.in lustre-1.8.2/lustre/scripts/lustre_createcsv.in
---- orig/lustre-1.8.2/lustre/scripts/lustre_createcsv.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/scripts/lustre_createcsv.in	2010-03-03 15:57:14.871660545 +0000
-@@ -39,7 +39,7 @@
- }
- 
- # Get the library of functions
--. @scriptlibdir@/lc_common
-+. /usr/share/lustre/lc_common
- 
- #**************************** Global variables ****************************#
- # csv file
-diff -Nurwd orig/lustre-1.8.2/lustre/scripts/version_tag.pl lustre-1.8.2/lustre/scripts/version_tag.pl
---- orig/lustre-1.8.2/lustre/scripts/version_tag.pl	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/scripts/version_tag.pl	2010-03-03 15:57:14.919642480 +0000
-@@ -166,8 +166,9 @@
-         !$ver->open("$objdir/include/linux/version.h") &&
-         !$ver->open("$dir/include/linux/utsrelease.h") &&
-         !$ver->open("$dir/include/linux/version.h")) {
--            die "Run make dep on '$dir'\n";
--        }
-+            #die "Run make dep on '$dir'\n";
-+	    $kernver = "UNKOWN-KERNEL";
-+        } else {
- 
-     while(defined($line = <$ver>)) {
-         $line =~ /\#define UTS_RELEASE "(.*)"/;
-@@ -177,6 +178,7 @@
-         }
-     }
-     $ver->close();
-+	}
-     chomp($kernver);
-     $dir =~ s/\//\./g;
-     return $dir;
-@@ -254,6 +256,8 @@
-     if (!defined($ENV{LUSTRE_VERS}));
- 
- if ($progname eq "version_tag.pl") {
-+    chdir($cwd);
-+    chdir($ARGV[1]);
-     my $linuxdir = get_linuxdir();
-     $linuxdir =~ s/\//\./g;
-     generate_ver($tag, $mtime, $linuxdir);
-diff -Nurwd orig/lustre-1.8.2/lustre/tests/Makefile.in lustre-1.8.2/lustre/tests/Makefile.in
---- orig/lustre-1.8.2/lustre/tests/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/tests/Makefile.in	2010-03-03 16:00:14.627633224 +0000
-@@ -119,12 +119,11 @@
+diff --git a/lustre/tests/Makefile.in b/lustre/tests/Makefile.in
+index 1baf9c6..4de8082 100644
+--- a/lustre/tests/Makefile.in
++++ b/lustre/tests/Makefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -90127,7 +48649,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/tests/Makefile.in lustre-1.8.2/lustre/tests
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -240,8 +239,6 @@
+@@ -240,8 +239,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -90136,7 +48658,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/tests/Makefile.in lustre-1.8.2/lustre/tests
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -255,8 +252,10 @@
+@@ -255,8 +252,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -90147,7 +48669,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/tests/Makefile.in lustre-1.8.2/lustre/tests
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -264,26 +263,27 @@
+@@ -264,26 +263,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -90178,28 +48700,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/tests/Makefile.in lustre-1.8.2/lustre/tests
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/tests/acl/make-tree lustre-1.8.2/lustre/tests/acl/make-tree
---- orig/lustre-1.8.2/lustre/tests/acl/make-tree	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/tests/acl/make-tree	2010-03-03 15:57:14.911636435 +0000
-@@ -1,4 +1,4 @@
--#!/bin/sh
-+#!/bin/bash
- 
- # reduce LEVELS from 3 => 2 by CFS
- LEVELS=2 ;		[ -z "$1" ] || LEVELS=$1
-diff -Nurwd orig/lustre-1.8.2/lustre/tests/insanity.sh lustre-1.8.2/lustre/tests/insanity.sh
---- orig/lustre-1.8.2/lustre/tests/insanity.sh	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/tests/insanity.sh	2010-03-03 15:57:14.911636435 +0000
-@@ -1,4 +1,4 @@
--#!/bin/sh
-+#!/bin/bash
- # Test multiple failures, AKA Test 17
- 
- set -e
-diff -Nurwd orig/lustre-1.8.2/lustre/tests/mpi/Makefile.in lustre-1.8.2/lustre/tests/mpi/Makefile.in
---- orig/lustre-1.8.2/lustre/tests/mpi/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/tests/mpi/Makefile.in	2010-03-03 16:00:14.711634265 +0000
-@@ -120,12 +120,11 @@
+diff --git a/lustre/tests/mpi/Makefile.in b/lustre/tests/mpi/Makefile.in
+index 215e6e5..2fc6821 100644
+--- a/lustre/tests/mpi/Makefile.in
++++ b/lustre/tests/mpi/Makefile.in
+@@ -120,12 +120,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -90213,7 +48718,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/tests/mpi/Makefile.in lustre-1.8.2/lustre/t
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -241,8 +240,6 @@
+@@ -241,8 +240,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -90222,7 +48727,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/tests/mpi/Makefile.in lustre-1.8.2/lustre/t
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -256,8 +253,10 @@
+@@ -256,8 +253,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -90233,7 +48738,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/tests/mpi/Makefile.in lustre-1.8.2/lustre/t
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -265,26 +264,27 @@
+@@ -265,26 +264,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -90264,26 +48769,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/tests/mpi/Makefile.in lustre-1.8.2/lustre/t
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/lustre/tests/runiozone lustre-1.8.2/lustre/tests/runiozone
---- orig/lustre-1.8.2/lustre/tests/runiozone	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/tests/runiozone	2010-03-03 15:57:14.907633482 +0000
-@@ -9,9 +9,11 @@
- LOOP=0
- rm -f endiozone
- echo 0 > /proc/sys/lnet/debug
-+tmpfile=$(mktemp -t iozone.XXXXXXXXXXXX)
- while date; do
- 	LOOP=`expr $LOOP + 1`
- 	echo "Test #$LOOP"
- 	iozone $VERIFY $ODIR -r $REC -i 0 -i 1 -f $FILE -s $SIZE 2>&1 || exit $?
- 	[ -f endiozone -o $LOOP -ge $COUNT ] && rm -f endiozone && exit 0
--done | tee /tmp/iozone.log
-+done | tee $tmpfile
-+echo "You'll find the log of this iozone run at: $tmpfile"
-diff -Nurwd orig/lustre-1.8.2/lustre/utils/Makefile.in lustre-1.8.2/lustre/utils/Makefile.in
---- orig/lustre-1.8.2/lustre/utils/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/lustre/utils/Makefile.in	2010-03-03 16:00:14.879654511 +0000
-@@ -122,12 +122,11 @@
+diff --git a/lustre/utils/Makefile.in b/lustre/utils/Makefile.in
+index 91c485b..ce0065b 100644
+--- a/lustre/utils/Makefile.in
++++ b/lustre/utils/Makefile.in
+@@ -122,12 +122,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -90297,7 +48787,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/utils/Makefile.in lustre-1.8.2/lustre/utils
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -243,8 +242,6 @@
+@@ -243,8 +242,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -90306,7 +48796,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/utils/Makefile.in lustre-1.8.2/lustre/utils
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -258,8 +255,10 @@
+@@ -258,8 +255,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -90317,7 +48807,7 @@ diff -Nurwd orig/lustre-1.8.2/lustre/utils/Makefile.in lustre-1.8.2/lustre/utils
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -267,26 +266,27 @@
+@@ -267,26 +266,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -90348,10 +48838,11 @@ diff -Nurwd orig/lustre-1.8.2/lustre/utils/Makefile.in lustre-1.8.2/lustre/utils
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/snmp/Makefile.in lustre-1.8.2/snmp/Makefile.in
---- orig/lustre-1.8.2/snmp/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/snmp/Makefile.in	2010-03-03 16:00:14.967632376 +0000
-@@ -119,12 +119,11 @@
+diff --git a/snmp/Makefile.in b/snmp/Makefile.in
+index da0ee2d..1b1139c 100644
+--- a/snmp/Makefile.in
++++ b/snmp/Makefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -90365,7 +48856,7 @@ diff -Nurwd orig/lustre-1.8.2/snmp/Makefile.in lustre-1.8.2/snmp/Makefile.in
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -240,8 +239,6 @@
+@@ -240,8 +239,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -90374,7 +48865,7 @@ diff -Nurwd orig/lustre-1.8.2/snmp/Makefile.in lustre-1.8.2/snmp/Makefile.in
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -255,8 +252,10 @@
+@@ -255,8 +252,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -90385,7 +48876,7 @@ diff -Nurwd orig/lustre-1.8.2/snmp/Makefile.in lustre-1.8.2/snmp/Makefile.in
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -264,26 +263,27 @@
+@@ -264,26 +263,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@
@@ -90416,10 +48907,11 @@ diff -Nurwd orig/lustre-1.8.2/snmp/Makefile.in lustre-1.8.2/snmp/Makefile.in
  rootsbindir = @rootsbindir@
  sbindir = @sbindir@
  sharedstatedir = @sharedstatedir@
-diff -Nurwd orig/lustre-1.8.2/snmp/autoconf/Makefile.in lustre-1.8.2/snmp/autoconf/Makefile.in
---- orig/lustre-1.8.2/snmp/autoconf/Makefile.in	2010-03-03 13:43:00.000000000 +0000
-+++ lustre-1.8.2/snmp/autoconf/Makefile.in	2010-03-03 16:00:15.015633724 +0000
-@@ -119,12 +119,11 @@
+diff --git a/snmp/autoconf/Makefile.in b/snmp/autoconf/Makefile.in
+index c11749f..eda2058 100644
+--- a/snmp/autoconf/Makefile.in
++++ b/snmp/autoconf/Makefile.in
+@@ -119,12 +119,11 @@ EXEEXT = @EXEEXT@
  EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
  EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
  EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
@@ -90433,7 +48925,7 @@ diff -Nurwd orig/lustre-1.8.2/snmp/autoconf/Makefile.in lustre-1.8.2/snmp/autoco
  IIBCPPFLAGS = @IIBCPPFLAGS@
  IIBLND = @IIBLND@
  INCLUDE_RULES = @INCLUDE_RULES@
-@@ -240,8 +239,6 @@
+@@ -240,8 +239,6 @@ ZFS_SUBDIR = @ZFS_SUBDIR@
  ZLIB = @ZLIB@
  ac_configure_args = @ac_configure_args@
  ac_ct_CC = @ac_ct_CC@
@@ -90442,7 +48934,7 @@ diff -Nurwd orig/lustre-1.8.2/snmp/autoconf/Makefile.in lustre-1.8.2/snmp/autoco
  agentdir = @agentdir@
  am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
  am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-@@ -255,8 +252,10 @@
+@@ -255,8 +252,10 @@ build_cpu = @build_cpu@
  build_os = @build_os@
  build_vendor = @build_vendor@
  datadir = @datadir@
@@ -90453,7 +48945,7 @@ diff -Nurwd orig/lustre-1.8.2/snmp/autoconf/Makefile.in lustre-1.8.2/snmp/autoco
  enable_uoss = @enable_uoss@
  exec_prefix = @exec_prefix@
  host = @host@
-@@ -264,26 +263,27 @@
+@@ -264,26 +263,27 @@ host_alias = @host_alias@
  host_cpu = @host_cpu@
  host_os = @host_os@
  host_vendor = @host_vendor@

-- 
Lustre Debian Packaging 



More information about the Pkg-lustre-svn-commit mailing list