[Pkg-lustre-svn-commit] updated: [a915d75] Ugly hack to mack lustre build again on unstable in order to provide

Patrick Winnertz winnie at debian.org
Mon Aug 10 08:11:56 UTC 2009


The following commit has been merged in the lustre-1.6 branch:
commit a915d75614483f91c8408875bb0d56ac45cd218f
Author: Patrick Winnertz <winnie at debian.org>
Date:   Mon Aug 10 10:09:12 2009 +0200

    Ugly hack to mack lustre build again on unstable in order to provide
    proper packages.
    
    Signed-off-by: Patrick Winnertz <winnie at debian.org>

diff --git a/debian/patches/00list b/debian/patches/00list
index 4318389..11125b0 100644
--- a/debian/patches/00list
+++ b/debian/patches/00list
@@ -23,3 +23,4 @@ fix-lustre-manpage.dpatch
 enable-quota.dpatch
 fix-symlink-attack.dpatch
 use_bash_instead_of_sh.dpatch
+autogen-output.dpatch
diff --git a/debian/patches/autogen-output.dpatch b/debian/patches/autogen-output.dpatch
new file mode 100755
index 0000000..3954bd4
--- /dev/null
+++ b/debian/patches/autogen-output.dpatch
@@ -0,0 +1,85353 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: output of autogen.sh as it is currently broken on unstable.
+
+ at DPATCH@
+diff -Nurwd lustre-1.6.7.2.orig/aclocal.m4 lustre-1.6.7.2/aclocal.m4
+--- lustre-1.6.7.2.orig/aclocal.m4	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/aclocal.m4	2009-08-10 10:05:30.000000000 +0200
+@@ -1960,14 +1960,19 @@
+ AC_DEFUN([LC_PAGE_CHECKED],
+ [AC_MSG_CHECKING([kernel has PageChecked and SetPageChecked])
+ LB_LINUX_TRY_COMPILE([
+-        #include <linux/mm.h>
++        #include <linux/autoconf.h>
++#ifdef HAVE_LINUX_MMTYPES_H
++        #include <linux/mm_types.h>
++#endif
+         #include <linux/page-flags.h>
+ ],[
++ 	struct page *p;
++
++        /* before 2.6.26 this define*/
+         #ifndef PageChecked
+-        #error PageChecked not defined in kernel
+-        #endif
+-        #ifndef SetPageChecked
+-        #error SetPageChecked not defined in kernel
++ 	/* 2.6.26 use function instead of define for it */
++ 	SetPageChecked(p);
++ 	PageChecked(p);
+         #endif
+ ],[
+         AC_MSG_RESULT(yes)
+@@ -2086,6 +2091,9 @@
+ ])
+ ])
+ 
++# 2.6.18
++
++
+ # 2.6.23 have return type 'void' for unregister_blkdev
+ AC_DEFUN([LC_UNREGISTER_BLKDEV_RETURN_INT],
+ [AC_MSG_CHECKING([if unregister_blkdev return int])
+@@ -2103,6 +2111,25 @@
+ ])
+ 
+ # 2.6.23 change .sendfile to .splice_read
++# RHEL4 (-92 kernel) have both sendfile and .splice_read API
++AC_DEFUN([LC_KERNEL_SENDFILE],
++[AC_MSG_CHECKING([if kernel has .sendfile])
++LB_LINUX_TRY_COMPILE([
++        #include <linux/fs.h>
++],[
++        struct file_operations file;
++
++        file.sendfile = NULL;
++], [
++        AC_MSG_RESULT([yes])
++        AC_DEFINE(HAVE_KERNEL_SENDFILE, 1,
++                [kernel has .sendfile])
++],[
++        AC_MSG_RESULT([no])
++])
++])
++
++# 2.6.23 change .sendfile to .splice_read
+ AC_DEFUN([LC_KERNEL_SPLICE_READ],
+ [AC_MSG_CHECKING([if kernel has .splice_read])
+ LB_LINUX_TRY_COMPILE([
+@@ -2122,11 +2149,240 @@
+ 
+ # 2.6.23 extract nfs export related data into exportfs.h
+ AC_DEFUN([LC_HAVE_EXPORTFS_H],
+-[
+-tmpfl="$CFLAGS"
+-CFLAGS="$CFLAGS -I$LINUX_OBJ/include"
+-AC_CHECK_HEADERS([linux/exportfs.h])
+-CFLAGS="$tmpfl"
++[LB_CHECK_FILE([$LINUX/include/linux/exportfs.h], [
++        AC_DEFINE(HAVE_LINUX_EXPORTFS_H, 1,
++                [kernel has include/exportfs.h])
++],[
++        AC_MSG_RESULT([no])
++])
++])
++
++# 2.6.23 have new page fault handling API
++AC_DEFUN([LC_VM_OP_FAULT],
++[AC_MSG_CHECKING([if kernel has .fault in vm_operation_struct])
++LB_LINUX_TRY_COMPILE([
++        #include <linux/mm.h>
++],[
++        struct vm_operations_struct op;
++
++        op.fault = NULL;
++], [
++        AC_MSG_RESULT([yes])
++        AC_DEFINE(HAVE_VM_OP_FAULT, 1,
++                [if kernel has .fault in vm_operation_struct])
++],[
++        AC_MSG_RESULT([no])
++])
++])
++
++#2.6.23 has new shrinker API
++AC_DEFUN([LC_REGISTER_SHRINKER],
++[AC_MSG_CHECKING([if kernel has register_shrinker])
++LB_LINUX_TRY_COMPILE([
++        #include <linux/mm.h>
++],[
++        register_shrinker(NULL);
++], [
++        AC_MSG_RESULT([yes])
++        AC_DEFINE(HAVE_REGISTER_SHRINKER, 1,
++                [if kernel has register_shrinker])
++],[
++        AC_MSG_RESULT([no])
++])
++])
++
++# 2.6.24 has bio_endio with 2 args
++AC_DEFUN([LC_BIO_ENDIO_2ARG],
++[AC_MSG_CHECKING([if kernel has bio_endio with 2 args])
++LB_LINUX_TRY_COMPILE([
++        #include <linux/bio.h>
++],[
++        bio_endio(NULL, 0);
++], [
++        AC_MSG_RESULT([yes])
++        AC_DEFINE(HAVE_BIO_ENDIO_2ARG, 1,
++                [if kernel has bio_endio with 2 args])
++],[
++        AC_MSG_RESULT([no])
++])
++])
++
++# 2.6.24 has new members in exports struct.
++AC_DEFUN([LC_FH_TO_DENTRY],
++[AC_MSG_CHECKING([if kernel has .fh_to_dentry member in export_operations struct])
++LB_LINUX_TRY_COMPILE([
++#ifdef HAVE_LINUX_EXPORTFS_H
++        #include <linux/exportfs.h>
++#else
++        #include <linux/fs.h>
++#endif
++],[
++        struct export_operations exp;
++
++        exp.fh_to_dentry   = NULL;
++], [
++        AC_MSG_RESULT([yes])
++        AC_DEFINE(HAVE_FH_TO_DENTRY, 1,
++                [kernel has .fh_to_dentry member in export_operations struct])
++],[
++        AC_MSG_RESULT([no])
++])
++])
++
++# 2.6.24 need linux/mm_types.h included
++AC_DEFUN([LC_HAVE_MMTYPES_H],
++[LB_CHECK_FILE([$LINUX/include/linux/mm_types.h], [
++        AC_DEFINE(HAVE_LINUX_MMTYPES_H, 1,
++                [kernel has include/mm_types.h])
++],[
++        AC_MSG_RESULT([no])
++])
++])
++
++# 2.6.24 remove long aged procfs entry -> deleted member
++AC_DEFUN([LC_PROCFS_DELETED],
++[AC_MSG_CHECKING([if kernel has deleted member in procfs entry struct])
++LB_LINUX_TRY_COMPILE([
++	#include <linux/proc_fs.h>
++],[
++        struct proc_dir_entry pde;
++
++        pde.deleted   = NULL;
++], [
++        AC_MSG_RESULT([yes])
++        AC_DEFINE(HAVE_PROCFS_DELETED, 1,
++                [kernel has deleted member in procfs entry struct])
++],[
++        AC_MSG_RESULT([no])
++])
++])
++
++# 2.6.25 change define to inline
++AC_DEFUN([LC_MAPPING_CAP_WRITEBACK_DIRTY],
++[AC_MSG_CHECKING([if kernel have mapping_cap_writeback_dirty])
++LB_LINUX_TRY_COMPILE([
++        #include <linux/backing-dev.h>
++],[
++        #ifndef mapping_cap_writeback_dirty
++        mapping_cap_writeback_dirty(NULL);
++        #endif
++],[
++        AC_MSG_RESULT([yes])
++        AC_DEFINE(HAVE_MAPPING_CAP_WRITEBACK_DIRTY, 1,
++                [kernel have mapping_cap_writeback_dirty])
++],[
++        AC_MSG_RESULT([no])
++])
++])
++
++
++
++# 2.6.26 isn't export set_fs_pwd and change paramter in fs struct
++AC_DEFUN([LC_FS_STRUCT_USE_PATH],
++[AC_MSG_CHECKING([fs_struct use path structure])
++LB_LINUX_TRY_COMPILE([
++        #include <asm/atomic.h>
++        #include <linux/spinlock.h>
++        #include <linux/fs_struct.h>
++],[
++        struct path path;
++        struct fs_struct fs;
++
++        fs.pwd = path;
++], [
++        AC_MSG_RESULT([yes])
++        AC_DEFINE(HAVE_FS_STRUCT_USE_PATH, 1,
++                [fs_struct use path structure])
++],[
++        AC_MSG_RESULT([no])
++])
++])
++
++# 2.6.26 remove path_release and use path_put instead
++AC_DEFUN([LC_PATH_RELEASE],
++[AC_MSG_CHECKING([if path_release exist])
++LB_LINUX_TRY_COMPILE([
++    #include <linux/dcache.h>
++    #include <linux/namei.h>
++],[
++    path_release(NULL);
++],[
++    AC_DEFINE(HAVE_PATH_RELEASE, 1, [path_release exist])
++    AC_MSG_RESULT([yes])
++],[
++    AC_MSG_RESULT([no]) 
++])
++])
++
++#2.6.27
++AC_DEFUN([LC_INODE_PERMISION_2ARGS],
++[AC_MSG_CHECKING([inode_operations->permission have two args])
++LB_LINUX_TRY_COMPILE([
++        #include <linux/fs.h>
++],[
++        struct inode *inode;
++
++        inode->i_op->permission(NULL,0);
++],[
++        AC_DEFINE(HAVE_INODE_PERMISION_2ARGS, 1, 
++                  [inode_operations->permission have two args])
++        AC_MSG_RESULT([yes])
++],[
++        AC_MSG_RESULT([no])
++])
++])
++
++# 2.6.27 have file_remove_suid instead of remove_suid
++AC_DEFUN([LC_FILE_REMOVE_SUID],
++[AC_MSG_CHECKING([kernel have file_remove_suid])
++LB_LINUX_TRY_COMPILE([
++        #include <linux/fs.h>
++],[
++        file_remove_suid(NULL);
++],[
++        AC_DEFINE(HAVE_FILE_REMOVE_SUID, 1,
++                  [kernel have file_remove_suid])
++        AC_MSG_RESULT([yes])
++],[
++        AC_MSG_RESULT([no])
++])
++])
++
++# 2.6.27 have new page locking API
++AC_DEFUN([LC_TRYLOCKPAGE],
++[AC_MSG_CHECKING([kernel use trylock_page for page lock])
++LB_LINUX_TRY_COMPILE([
++        #include <linux/pagemap.h>
++],[
++        trylock_page(NULL);
++],[
++        AC_DEFINE(HAVE_TRYLOCK_PAGE, 1,
++                  [kernel use trylock_page for page lock])
++        AC_MSG_RESULT([yes])
++],[
++        AC_MSG_RESULT([no])
++])
++])
++
++# 2.6.27 and some older have mapping->tree_lock as spin_lock
++AC_DEFUN([LC_RW_TREE_LOCK],
++[AC_MSG_CHECKING([mapping->tree_lock is rw_lock])
++tmp_flags="$EXTRA_KCFLAGS"
++EXTRA_KCFLAGS="-Werror"
++LB_LINUX_TRY_COMPILE([
++       #include <linux/fs.h>
++],[
++       struct address_space *map = NULL;
++
++       write_lock_irq(&map->tree_lock);
++],[
++        AC_MSG_RESULT(yes)
++        AC_DEFINE(HAVE_RW_TREE_LOCK, 1,
++                [mapping->tree_lock is rw_lock])
++],[
++        AC_MSG_RESULT(no)
++])
++EXTRA_KCFLAGS="$tmp_flags"
+ ])
+ 
+ #
+@@ -2226,8 +2482,31 @@
+           LC_FS_RENAME_DOES_D_MOVE
+           # 2.6.23
+           LC_UNREGISTER_BLKDEV_RETURN_INT
++          LC_KERNEL_SENDFILE
+           LC_KERNEL_SPLICE_READ
+           LC_HAVE_EXPORTFS_H
++          LC_VM_OP_FAULT
++          LC_REGISTER_SHRINKER
++
++          #2.6.25
++          LC_MAPPING_CAP_WRITEBACK_DIRTY
++ 
++ 	  # 2.6.24
++ 	  LC_HAVE_MMTYPES_H
++          LC_BIO_ENDIO_2ARG
++          LC_FH_TO_DENTRY
++          LC_PROCFS_DELETED
++ 
++          # 2.6.26
++          LC_FS_STRUCT_USE_PATH
++          LC_RCU_LIST_SAFE
++          LC_PATH_RELEASE
++
++          # 2.6.27
++          LC_INODE_PERMISION_2ARGS
++          LC_FILE_REMOVE_SUID
++          LC_TRYLOCKPAGE
++         LC_RW_TREE_LOCK
+ ])
+ 
+ #
+@@ -2410,6 +2689,7 @@
+ ])
+ ])
+ 
++
+ #
+ # LC_COOKIE_FOLLOW_LINK
+ #
+@@ -2460,6 +2740,7 @@
+         ],[
+                 AC_MSG_RESULT([no]) 
+         ])
++
+ ],[
+         AC_MSG_RESULT([no])
+ ])
+@@ -4577,6 +4858,22 @@
+ ])
+ ])
+ 
++# 2.6.27 have second argument to sock_map_fd
++AC_DEFUN([LN_SOCK_MAP_FD_2ARG],
++[AC_MSG_CHECKING([sock_map_fd have second argument])
++LB_LINUX_TRY_COMPILE([
++	#include <linux/net.h>
++],[
++        sock_map_fd(NULL, 0);
++],[
++        AC_MSG_RESULT(yes)
++        AC_DEFINE(HAVE_SOCK_MAP_FD_2ARG, 1,
++                  [sock_map_fd have second argument])
++],[
++        AC_MSG_RESULT(NO)
++])
++])
++
+ #
+ # LN_PROG_LINUX
+ #
+@@ -4625,6 +4922,8 @@
+ LN_SCATTERLIST_SETPAGE
+ # 2.6.26
+ LN_SEM_COUNT
++# 2.6.27
++LN_SOCK_MAP_FD_2ARG
+ ])
+ 
+ #
+@@ -4890,113 +5189,6 @@
+ AC_DEFUN([LIBCFS_CONFIG_FILES], [])
+ 
+ #
+-# LB_DARWIN_CHECK_FUNCS
+-#
+-# check for functions in the darwin kernel
+-# Note that this is broken for cross compiling
+-#
+-AC_DEFUN([LB_DARWIN_CHECK_FUNCS],
+-[AC_FOREACH([AC_Func], [$1],
+-  [AH_TEMPLATE(AS_TR_CPP(HAVE_[]AC_Func),
+-               [Define to 1 if you have the `]AC_Func[' function.])])dnl
+-for ac_func in $1
+-do
+-AC_MSG_CHECKING([for $1])
+-AS_IF([AC_TRY_COMMAND(nm /mach | grep "[$1]" >/dev/null 2>/dev/null)],[
+-	AC_MSG_RESULT([yes])
+-	AC_DEFINE_UNQUOTED([AS_TR_CPP([HAVE_$ac_func])]) $2
+-],[
+-	AC_MSG_RESULT([no]) $3
+-])dnl
+-done
+-])
+-
+-#
+-# LB_DARWIN_CONDITIONALS
+-#
+-# AM_CONDITIONALs for darwin
+-#
+-AC_DEFUN([LB_DARWIN_CONDITIONALS],
+-[
+-])
+-
+-#
+-# LB_PROG_DARWIN
+-#
+-# darwin tests
+-#
+-AC_DEFUN([LB_PROG_DARWIN],
+-[kernel_framework="/System/Library/Frameworks/Kernel.framework"
+-#
+-# FIXME: there should be a better way to get these than hard coding them
+-#
+-case $target_cpu in 
+-	powerpc*)
+-		EXTRA_KCFLAGS="$EXTRA_KCFLAGS -arch ppc -mtune=G4 -mlong-branch"
+-		EXTRA_KLDFLAGS="-arch ppc"
+-		;;
+-	i?86 | x86_64)
+-		EXTRA_KCFLAGS="$EXTRA_KCFLAGS -arch i386"
+-		EXTRA_KLDFLAGS="-arch i386"
+-		;;
+-esac
+-
+-# Kernel of OS X is not 64bits(even in Tiger), but -m64 can be taken by gcc in Tiger
+-# (Tiger can support 64bits applications), so we have to eliminate -m64 while 
+-# building kextensions for and OS X.
+-CC=`echo $CC | sed -e "s/\-m64//g"`
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -x c -pipe -Wno-trigraphs -fasm-blocks -g -O0"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -Wno-four-char-constants -Wmost -O0"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -fmessage-length=0"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -I$kernel_framework/Headers"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -I$kernel_framework/Headers/bsd"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -I$kernel_framework/PrivateHeaders"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -fno-common -nostdinc -fno-builtin"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -finline -fno-keep-inline-functions"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -force_cpusubtype_ALL -fno-exceptions"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -msoft-float -static"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -DKERNEL -DKERNEL_PRIVATE"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -DDRIVER_PRIVATE -DAPPLE -DNeXT"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -D__KERNEL__ -D__DARWIN__"
+-#
+-# C flags for Panther/Tiger
+-#
+-case $target_os in
+-        darwin8*)
+-                EXTRA_KCFLAGS="$EXTRA_KCFLAGS -D__DARWIN8__"
+-	;;
+-        darwin7*)
+-                EXTRA_KCFLAGS="$EXTRA_KCFLAGS -ffix-and-continue"
+-        ;;
+-esac
+-
+-#
+-# Debugging flags. Remove!
+-#
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -O0 -DMACH_ASSERT=1"
+-EXTRA_KLDFLAGS="$EXTRA_KLDFLAGS -static -nostdlib -r"
+-EXTRA_KLIBS="-lkmodc++ -lkmod -lcc_kext"
+-KMODEXT=""
+-
+-AC_SUBST(EXTRA_KLDFLAGS)
+-AC_SUBST(EXTRA_KLIBS)
+-
+-kextdir='/System/Library/Extensions/$(firstword $(macos_PROGRAMS)).kext'
+-plistdir='$(kextdir)/Contents'
+-macosdir='$(plistdir)/MacOS'
+-
+-AC_SUBST(kextdir)
+-AC_SUBST(plistdir)
+-AC_SUBST(macosdir)
+-
+-LN_PROG_DARWIN
+-
+-LP_PROG_DARWIN
+-
+-LC_PROG_DARWIN
+-])
+-
+-#
+ # LS_CONFIGURE
+ #
+ # configure bits for lustre-snmp
+diff -Nurwd lustre-1.6.7.2.orig/autom4te.cache/output.0 lustre-1.6.7.2/autom4te.cache/output.0
+--- lustre-1.6.7.2.orig/autom4te.cache/output.0	1970-01-01 01:00:00.000000000 +0100
++++ lustre-1.6.7.2/autom4te.cache/output.0	2009-08-10 10:05:34.000000000 +0200
+@@ -0,0 +1,19413 @@
++@%:@! /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_DIR
++ZFS_DIR
++spl_src
++DMU_OSD_ENABLED_TRUE
++DMU_OSD_ENABLED_FALSE
++KDMU_TRUE
++KDMU_FALSE
++SNMP_DIST_SUBDIR
++SNMP_SUBDIR
++LDISKFS_DIR
++LDISKFS_SUBDIR
++LUSTREIOKIT_SUBDIR
++MPI_ROOT
++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
++  --enable-adaptive-timeouts 
++                          enable ptlrpc adaptive timeouts support
++  --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-mpitest=yes|no|mpich directory 
++                          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-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-o2ib=path        build o2iblnd 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-lustre-iokit=path 
++                          set path to lustre-iokit source (default is included
++                          lustre-iokit)
++  --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=6
++AC_LUSTRE_PATCH=7
++AC_LUSTRE_FIX=2
++AC_LUSTRE_VERSION_STRING=1.6.7.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-167-CLT"
++AC_LUSTRE_MGS_URN="LUSTRE-167-MGS"
++AC_LUSTRE_MDS_URN="LUSTRE-167-MDS"
++AC_LUSTRE_OSS_URN="LUSTRE-167-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.6.7.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.6.7.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\$(top_builddir)/$LIBCFS_INCLUDE_DIR -I\$(top_srcdir)/$LIBCFS_INCLUDE_DIR-I\$(top_builddir)/lnet/include -I\$(top_srcdir)/lnet/include -I\$(top_builddir)/lustre/include -I\$(top_srcdir)/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; LINUX=$with_linux
++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
++  
++cat >>confdefs.h <<_ACEOF
++@%:@define `echo "HAVE_$LINUX_OBJ/include/linux/autoconf.h" | $as_tr_cpp` 1
++_ACEOF
++
++
++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
++  
++cat >>confdefs.h <<_ACEOF
++@%:@define `echo "HAVE_$LINUX_OBJ/include/linux/version.h" | $as_tr_cpp` 1
++_ACEOF
++
++
++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 (asm doesn't point at asm-um)" >&5
++echo "${ECHO_T}no (asm doesn't point at asm-um)" >&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/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/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/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/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_MAJOR
++		#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/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"
++		{ 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 that SuSe kernel" >&5
++echo $ECHO_N "checking that 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/version.h>
++	
++int
++main (void)
++{
++
++		#ifndef SLE_VERSION_CODE
++		#error "not sles 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/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
++  
++		SUSE_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 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_OBJ $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; }
++	
++
++
++#if test $LINUX_ARCH == "powerpc64"; then
++#	AC_MSG_WARN([set compiler with -m64])
++#	CFLAGS="$CFLAGS -m64"
++#	CC="$CC -m64"
++#fi
++
++{ 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/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/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_PREEMPT" >&5
++echo $ECHO_N "checking if Linux was built with CONFIG_PREEMPT... $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_PREEMPT
++#error CONFIG_PREEMPT 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/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; }
++
++	{ { echo "$as_me:$LINENO: error: Lustre does not support kernels with preempt enabled." >&5
++echo "$as_me: error: Lustre does not support kernels with preempt enabled." >&2;}
++   { (exit 1); exit 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
++
++
++{ 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/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/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
++
++
++			
++			
++{ 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/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/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/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/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/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/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/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/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/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/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/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/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/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="$O2IBCPPFLAGS $EXTRA_LNET_INCLUDE"
++		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/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
++				egrep -v $(echo $(awk '{ print  }' $O2IBPATH/$O2IB_SYMVER) | tr ' ' '|') $PWD/$SYMVERFILE > $PWD/$SYMVERFILE.old
++				cat $PWD/$SYMVERFILE.old $O2IBPATH/$O2IB_SYMVER > $PWD/$SYMVERFILE
++			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
++
++		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/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
++
++		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/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
++
++		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/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/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/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/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 is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol show_task is 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 __u64 is long long type" >&5
++echo $ECHO_N "checking __u64 is long long type... $ECHO_C" >&6; }
++tmp_flags="$CFLAGS"
++CFLAGS="$CFLAGS -Werror"
++cat >conftest.$ac_ext <<_ACEOF
++
++	#include <linux/types.h>
++	int main(void) {
++		unsigned long long *data1;
++		__u64 *data2;
++		
++		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_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"
++
++{ 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>
++	int main(void) {
++		long *data1;
++		ssize_t *data2;
++		
++		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>
++	int main(void) {
++		unsigned long *data1;
++		size_t *data2;
++		
++		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/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
++
++# 2.6.18
++{ echo "$as_me:$LINENO: checking if Linux was built with symbol tasklist_lock is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol tasklist_lock is 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/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/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/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/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/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/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/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 <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/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/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/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
++
++
++			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
++              
++BACKINGFS="ldiskfs"
++
++if test x$with_ldiskfs = xno ; then
++	BACKINGFS="ext3"
++
++	if test x$linux25$enable_server = xyesyes ; 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
++
++	# --- Check that ext3 and ext3 xattr are enabled in the kernel
++	{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_EXT3_FS" >&5
++echo $ECHO_N "checking if Linux was built with CONFIG_EXT3_FS... $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_EXT3_FS
++#error CONFIG_EXT3_FS 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/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_EXT3_FS_MODULE" >&5
++echo $ECHO_N "checking if Linux was built with CONFIG_EXT3_FS_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_EXT3_FS_MODULE
++#error CONFIG_EXT3_FS_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/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: Lustre requires that ext3 is enabled in the kernel" >&5
++echo "$as_me: error: Lustre requires that ext3 is enabled in the kernel" >&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
++
++{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_EXT3_FS_XATTR" >&5
++echo $ECHO_N "checking if Linux was built with CONFIG_EXT3_FS_XATTR... $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_EXT3_FS_XATTR
++#error CONFIG_EXT3_FS_XATTR 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/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: Lustre requires that extended attributes for ext3 are enabled in the kernel" >&5
++echo "$as_me: WARNING: Lustre requires that extended attributes for ext3 are enabled in the kernel" >&2;}
++		{ echo "$as_me:$LINENO: WARNING: This build may fail." >&5
++echo "$as_me: WARNING: This build may fail." >&2;}
++	
++
++fi
++rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
++
++
++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
++
++
++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; }
++
++
++          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='no'
++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
++
++          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/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
++
++
++          { echo "$as_me:$LINENO: checking task p_pptr found" >&5
++echo $ECHO_N "checking task p_pptr found... $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 = p->p_pptr;
++
++  ;
++  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/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_PPTR 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
++
++          # RHEL4 patches
++          { echo "$as_me:$LINENO: checking if Linux was built with symbol truncate_complete_page is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol truncate_complete_page is 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 d_rehash_cond is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol d_rehash_cond is 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 is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol __d_rehash is 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 is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol d_move_locked is 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 is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol __d_move is 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 is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol node_to_cpumask is 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 is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol node_to_cpu_mask is 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 is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol node_2_cpu_mask is 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 struct kiobuf has a dovary field" >&5
++echo $ECHO_N "checking if struct kiobuf has a dovary 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/iobuf.h>
++
++int
++main (void)
++{
++
++	struct kiobuf iobuf;
++	iobuf.dovary = 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/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_KIOBUF_DOVARY 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 offers cond_resched" >&5
++echo $ECHO_N "checking if kernel offers cond_resched... $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)
++{
++
++	cond_resched();
++
++  ;
++  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/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_COND_RESCHED 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 zap_page_range with vma parameter" >&5
++echo $ECHO_N "checking if zap_page_range with vma parameter... $ECHO_C" >&6; }
++ZAP_PAGE_RANGE_VMA="`grep -c 'zap_page_range.*struct vm_area_struct' $LINUX/include/linux/mm.h`"
++if test "$ZAP_PAGE_RANGE_VMA" != 0 ; then
++	
++cat >>confdefs.h <<\_ACEOF
++@%:@define ZAP_PAGE_RANGE_VMA 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 kernel defines PDE" >&5
++echo $ECHO_N "checking if kernel defines PDE... $ECHO_C" >&6; }
++HAVE_PDE="`grep -c 'proc_dir_entry..PDE' $LINUX/include/linux/proc_fs.h`"
++if test "$HAVE_PDE" != 0 ; then
++	
++cat >>confdefs.h <<\_ACEOF
++@%:@define HAVE_PDE 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 kernel passes struct file to direct_IO" >&5
++echo $ECHO_N "checking if kernel passes struct file to direct_IO... $ECHO_C" >&6; }
++HAVE_DIO_FILE="`grep -c 'direct_IO.*struct file' $LINUX/include/linux/fs.h`"
++if test "$HAVE_DIO_FILE" != 0 ; then
++	
++cat >>confdefs.h <<\_ACEOF
++@%:@define HAVE_DIO_FILE 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 kernel has mm_inline.h header" >&5
++echo $ECHO_N "checking if kernel has mm_inline.h header... $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_inline.h>
++
++int
++main (void)
++{
++
++	#ifndef page_count
++	#error mm_inline.h does not define page_count
++	#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/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_MM_INLINE 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 struct inode has i_alloc_sem" >&5
++echo $ECHO_N "checking if struct inode has i_alloc_sem... $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/version.h>
++
++int
++main (void)
++{
++
++	struct inode i;
++	return (char *)&i.i_alloc_sem - (char *)&i;
++
++  ;
++  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/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_I_ALLOC_SEM 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 register_cache()" >&5
++echo $ECHO_N "checking if kernel defines register_cache()... $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 <linux/cache_def.h>
++
++int
++main (void)
++{
++
++	struct cache_definition cache;
++
++  ;
++  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/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_REGISTER_CACHE 1
++_ACEOF
++
++	{ echo "$as_me:$LINENO: checking if kernel expects return from cache shrink function" >&5
++echo $ECHO_N "checking if kernel expects return from cache shrink function... $ECHO_C" >&6; }
++	HAVE_CACHE_RETURN_INT="`grep -c 'int.*shrink' $LINUX/include/linux/cache_def.h`"
++	if test "$HAVE_CACHE_RETURN_INT" != 0 ; then
++		
++cat >>confdefs.h <<\_ACEOF
++@%:@define HAVE_CACHE_RETURN_INT 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
++
++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 grab_cache_page_nowait_gfp()" >&5
++echo $ECHO_N "checking if kernel defines grab_cache_page_nowait_gfp()... $ECHO_C" >&6; }
++HAVE_GCPN_GFP="`grep -c 'grab_cache_page_nowait_gfp' $LINUX/include/linux/pagemap.h`"
++if test "$HAVE_GCPN_GFP" != 0 ; then
++	
++cat >>confdefs.h <<\_ACEOF
++@%:@define HAVE_GRAB_CACHE_PAGE_NOWAIT_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 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>
++
++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/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: result: no, Linux kernel source needs to be patches by lustre 
++kernel patches from Lustre version 1.4.3 or above." >&5
++echo "${ECHO_T}no, Linux kernel source needs to be patches by lustre 
++kernel patches from Lustre version 1.4.3 or above." >&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 filemap_fdatawrite() is defined" >&5
++echo $ECHO_N "checking whether filemap_fdatawrite() 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/fs.h>
++
++int
++main (void)
++{
++
++	int (*foo)(struct address_space *)= filemap_fdatawrite;
++
++  ;
++  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/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_FDATAWRITE 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 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/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 if kernel offers page_mapped" >&5
++echo $ECHO_N "checking if kernel offers page_mapped... $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)
++{
++
++	page_mapped(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/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_MAPPED 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 struct file_operations has an unlocked_ioctl field" >&5
++echo $ECHO_N "checking if struct file_operations has an unlocked_ioctl 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 fops;
++        &fops.unlocked_ioctl;
++
++  ;
++  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/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_UNLOCKED_IOCTL 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/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/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/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/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/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/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 is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol __iget is 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 Linux was built with symbol set_fs_pwd is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol set_fs_pwd is exported... $ECHO_C" >&6; }
++grep -q -E '[[:space:]]set_fs_pwd[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
++rc=$?
++if test $rc -ne 0; then
++    export=0
++    for file in fs/namespace.c; do
++    	grep -q -E "EXPORT_SYMBOL.*\(set_fs_pwd\)" "$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_SET_FS_PWD 1
++_ACEOF
++
++
++    fi
++else
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
++    
++        
++cat >>confdefs.h <<\_ACEOF
++@%:@define HAVE_SET_FS_PWD 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/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/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/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/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/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/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/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 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/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: 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;}
++        { 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/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.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/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
++
++
++          # 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/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/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/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/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/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/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/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"
++
++
++          #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/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/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
++
++
++          # 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/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/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 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/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/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)
++{
++
++        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/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/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/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/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/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/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/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/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 kernel has register_shrinker" >&5
++echo $ECHO_N "checking if kernel has register_shrinker... $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)
++{
++
++        register_shrinker(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/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_REGISTER_SHRINKER 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/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/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/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/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.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/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
++
++          LC_RCU_LIST_SAFE
++          { echo "$as_me:$LINENO: checking if path_release exist" >&5
++echo $ECHO_N "checking if path_release exist... $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>
++    #include <linux/namei.h>
++
++int
++main (void)
++{
++
++    path_release(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/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_RELEASE 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
++          { 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/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/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/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/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"
++
++
++			;;
++		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
++
++
++# 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_DIR="$PWD/spl"
++		ZFS_DIR="$PWD/zfs"
++		
++		
++
++		
++
++		as_lb_File=`echo "lb_cv_file_$SPL_DIR/modules/spl/spl-generic.c" | $as_tr_sh`
++{ echo "$as_me:$LINENO: checking for $SPL_DIR/modules/spl/spl-generic.c" >&5
++echo $ECHO_N "checking for $SPL_DIR/modules/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/modules/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/zfs/lib/libzpool/dmu.c" | $as_tr_sh`
++{ echo "$as_me:$LINENO: checking for $ZFS_DIR/zfs/lib/libzpool/dmu.c" >&5
++echo $ECHO_N "checking for $ZFS_DIR/zfs/lib/libzpool/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/zfs/lib/libzpool/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
++
++{ 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; }
++		;;
++	*)
++		{ 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
++
++
++# We have to configure even if we don't build here for make dist to work
++subdirs="$subdirs ldiskfs"
++
++
++
++# Check whether --with- was given.
++if test "${with_+set}" = set; then
++  withval=$with_; 
++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"
++
++
++
++{ 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)
++		MPI_ROOT=/opt/mpich
++		LDFLAGS="$LDFLAGS -L$MPI_ROOT/ch-p4/lib -L$MPI_ROOT/ch-p4/lib64"
++		CFLAGS="$CFLAGS -I$MPI_ROOT/include"
++		;;
++         no)
++		enable_mpitests=no
++		;;
++	 [\\/$]* | ?:[\\/]* )
++		MPI_ROOT=$enableval
++		LDFLAGS="$LDFLAGS -L$with_mpi/lib"
++		CFLAGS="$CFLAGS -I$MPI_ROOT/include"
++                ;;
++         *)
++                 { { echo "$as_me:$LINENO: error: expected absolute directory name for --enable-mpitests or yes or no" >&5
++echo "$as_me: error: expected absolute directory name for --enable-mpitests or yes or no" >&2;}
++   { (exit 1); exit 1; }; }
++                 ;;
++	 esac
++	
++else
++  
++	MPI_ROOT=/opt/mpich
++        LDFLAGS="$LDFLAGS -L$MPI_ROOT/ch-p4/lib -L$MPI_ROOT/ch-p4/lib64"
++        CFLAGS="$CFLAGS -I$MPI_ROOT/include"
++	enable_mpitests=yes
++	
++
++fi
++
++
++
++if test x$enable_mpitests != xno; then
++	{ echo "$as_me:$LINENO: checking whether to mpitests can be built" >&5
++echo $ECHO_N "checking whether to mpitests can be built... $ECHO_C" >&6; }
++        as_ac_File=`echo "ac_cv_file_$MPI_ROOT/include/mpi.h" | $as_tr_sh`
++{ echo "$as_me:$LINENO: checking for $MPI_ROOT/include/mpi.h" >&5
++echo $ECHO_N "checking for $MPI_ROOT/include/mpi.h... $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 "$MPI_ROOT/include/mpi.h"; 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
++  { echo "$as_me:$LINENO: checking for MPI_Start in -lmpich" >&5
++echo $ECHO_N "checking for MPI_Start in -lmpich... $ECHO_C" >&6; }
++if test "${ac_cv_lib_mpich_MPI_Start+set}" = set; then
++  echo $ECHO_N "(cached) $ECHO_C" >&6
++else
++  ac_check_lib_save_LIBS=$LIBS
++LIBS="-lmpich  $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 MPI_Start ();
++int
++main ()
++{
++return MPI_Start ();
++  ;
++  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_mpich_MPI_Start=yes
++else
++  echo "$as_me: failed program was:" >&5
++sed 's/^/| /' conftest.$ac_ext >&5
++
++	ac_cv_lib_mpich_MPI_Start=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_mpich_MPI_Start" >&5
++echo "${ECHO_T}$ac_cv_lib_mpich_MPI_Start" >&6; }
++if test $ac_cv_lib_mpich_MPI_Start = yes; then
++  enable_mpitests=yes
++else
++  enable_mpitests=no
++fi
++
++else
++  enable_mpitests=no
++fi
++
++fi
++{ echo "$as_me:$LINENO: result: $enable_mpitests" >&5
++echo "${ECHO_T}$enable_mpitests" >&6; }
++
++
++{ 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
++
++
++
++# 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 \$(top_builddir)/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/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/ldlm/Makefile lustre/liblustre/Makefile lustre/liblustre/tests/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/scripts/version_tag.pl lustre/tests/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 "${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.6.7.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.6.7.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/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/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/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/scripts/version_tag.pl") CONFIG_FILES="$CONFIG_FILES lustre/scripts/version_tag.pl" ;;
++    "lustre/tests/Makefile") CONFIG_FILES="$CONFIG_FILES lustre/tests/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_DIR!$SPL_DIR$ac_delim
++ZFS_DIR!$ZFS_DIR$ac_delim
++spl_src!$spl_src$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
++LUSTREIOKIT_SUBDIR!$LUSTREIOKIT_SUBDIR$ac_delim
++MPI_ROOT!$MPI_ROOT$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
++DOC_FALSE!$DOC_FALSE$ac_delim
++INIT_SCRIPTS_TRUE!$INIT_SCRIPTS_TRUE$ac_delim
++INIT_SCRIPTS_FALSE!$INIT_SCRIPTS_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-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
++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` = 60; 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 lustre-1.6.7.2.orig/autom4te.cache/requests lustre-1.6.7.2/autom4te.cache/requests
+--- lustre-1.6.7.2.orig/autom4te.cache/requests	1970-01-01 01:00:00.000000000 +0100
++++ lustre-1.6.7.2/autom4te.cache/requests	2009-08-10 10:05:46.000000000 +0200
+@@ -0,0 +1,64 @@
++# This file was generated by Autom4te Wed Jan 17 19:57:31 PST 2007.
++# 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 lustre-1.6.7.2.orig/autom4te.cache/traces.0 lustre-1.6.7.2/autom4te.cache/traces.0
+--- lustre-1.6.7.2.orig/autom4te.cache/traces.0	1970-01-01 01:00:00.000000000 +0100
++++ lustre-1.6.7.2/autom4te.cache/traces.0	2009-08-10 10:05:34.000000000 +0200
+@@ -0,0 +1,2140 @@
++m4trace:aclocal.m4:5290: -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:2648: 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:5450: _AM_SET_OPTIONS is expanded from...
++aclocal.m4:5303: 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:340: LB_CONFIG_CRAY_XT3 is expanded from...
++aclocal.m4:778: 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:357: LB_CONFIG_BGL is expanded from...
++aclocal.m4:778: 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:377: LB_UOSS is expanded from...
++aclocal.m4:778: 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:401: LB_POSIX_OSD is expanded from...
++aclocal.m4:778: 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:574: LB_CONFIG_DOCS is expanded from...
++aclocal.m4:778: 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:540: LB_CONFIG_UTILS is expanded from...
++aclocal.m4:778: 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:557: LB_CONFIG_TESTS is expanded from...
++aclocal.m4:778: 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:2517: LC_CONFIG_CLIENT_SERVER is expanded from...
++aclocal.m4:778: 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:2517: LC_CONFIG_CLIENT_SERVER is expanded from...
++aclocal.m4:778: 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:3545: LN_CONFIG_CDEBUG is expanded from...
++aclocal.m4:778: 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:3545: LN_CONFIG_CDEBUG is expanded from...
++aclocal.m4:778: 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:3545: LN_CONFIG_CDEBUG is expanded from...
++aclocal.m4:778: 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:2648: LC_CONFIG_QUOTA is expanded from...
++aclocal.m4:2668: LC_QUOTA is expanded from...
++aclocal.m4:778: 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:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:3092: LB_LINUX_PATH is expanded from...
++aclocal.m4:3413: LB_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:3092: LB_LINUX_PATH is expanded from...
++aclocal.m4:3413: LB_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:3092: LB_LINUX_PATH is expanded from...
++aclocal.m4:3413: LB_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:3092: LB_LINUX_PATH is expanded from...
++aclocal.m4:3413: LB_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: LB_CONFIGURE is expanded from...
++configure.ac:20: the top level])
++m4trace:configure.ac:20: -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:110: LB_CHECK_FILES is expanded from...
++aclocal.m4:3092: LB_LINUX_PATH is expanded from...
++aclocal.m4:3413: LB_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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: -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:3587: LN_CONFIG_AFFINITY is expanded from...
++aclocal.m4:4882: LN_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:3655: LN_CONFIG_BACKOFF is expanded from...
++aclocal.m4:4882: LN_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:3682: LN_CONFIG_PANIC_DUMPLOG is expanded from...
++aclocal.m4:4882: LN_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:3774: LN_CONFIG_QUADRICS is expanded from...
++aclocal.m4:4882: LN_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:3819: LN_CONFIG_GM is expanded from...
++aclocal.m4:4882: LN_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:3819: LN_CONFIG_GM is expanded from...
++aclocal.m4:4882: LN_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:4149: LN_CONFIG_OPENIB is expanded from...
++aclocal.m4:4882: LN_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:4227: LN_CONFIG_CIB is expanded from...
++aclocal.m4:4882: LN_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:4357: LN_CONFIG_VIB is expanded from...
++aclocal.m4:4882: LN_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:4284: LN_CONFIG_IIB is expanded from...
++aclocal.m4:4882: LN_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:3997: LN_CONFIG_O2IB is expanded from...
++aclocal.m4:4882: LN_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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_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:3621: LN_CONFIG_PORTALS is expanded from...
++aclocal.m4:3701: LN_CONFIG_PTLLND is expanded from...
++aclocal.m4:4882: LN_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:3918: LN_CONFIG_MX is expanded from...
++aclocal.m4:4882: LN_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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_U64_LONG_LONG])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_U64_LONG_LONG$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_U64_LONG_LONG], [/* __u64 is long long type */
++#undef HAVE_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_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([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_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:1193: LC_CONFIG_PINGER is expanded from...
++aclocal.m4:2393: LC_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:1210: LC_CONFIG_CHECKSUM is expanded from...
++aclocal.m4:2393: LC_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:1242: LC_CONFIG_LIBLUSTRE_RECOVERY is expanded from...
++aclocal.m4:2393: LC_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:1227: LC_CONFIG_HEALTH_CHECK_WRITE is expanded from...
++aclocal.m4:2393: LC_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:2619: LC_CONFIG_LRU_RESIZE is expanded from...
++aclocal.m4:2393: LC_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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:2631: LC_CONFIG_ADAPTIVE_TIMEOUTS is expanded from...
++aclocal.m4:2393: LC_PROG_LINUX is expanded from...
++aclocal.m4:501: LB_CONFIG_MODULES is expanded from...
++aclocal.m4:778: 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: -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_TASK_PPTR])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_TASK_PPTR$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_TASK_PPTR], [/* task p_pptr found */
++#undef HAVE_TASK_PPTR])
++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_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_KIOBUF_DOVARY])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_KIOBUF_DOVARY$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_KIOBUF_DOVARY], [/* struct kiobuf has a dovary field */
++#undef HAVE_KIOBUF_DOVARY])
++m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_COND_RESCHED])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_COND_RESCHED$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_COND_RESCHED], [/* cond_resched found */
++#undef HAVE_COND_RESCHED])
++m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([ZAP_PAGE_RANGE_VMA])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^ZAP_PAGE_RANGE_VMA$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([ZAP_PAGE_RANGE_VMA], [/* zap_page_range with vma parameter */
++#undef ZAP_PAGE_RANGE_VMA])
++m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_PDE])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_PDE$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_PDE], [/* the kernel defines PDE */
++#undef HAVE_PDE])
++m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DIO_FILE])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_DIO_FILE$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_DIO_FILE], [/* the kernel passes struct file to direct_IO */
++#undef HAVE_DIO_FILE])
++m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MM_INLINE])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_MM_INLINE$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_MM_INLINE], [/* mm_inline found */
++#undef HAVE_MM_INLINE])
++m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_I_ALLOC_SEM])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_I_ALLOC_SEM$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_I_ALLOC_SEM], [/* struct inode has i_alloc_sem */
++#undef HAVE_I_ALLOC_SEM])
++m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_REGISTER_CACHE])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_REGISTER_CACHE$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_REGISTER_CACHE], [/* register_cache found */
++#undef HAVE_REGISTER_CACHE])
++m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_CACHE_RETURN_INT])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_CACHE_RETURN_INT$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_CACHE_RETURN_INT], [/* kernel expects return from shrink_cache */
++#undef HAVE_CACHE_RETURN_INT])
++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 has grab_cache_page_nowait_gfp() */
++#undef HAVE_GRAB_CACHE_PAGE_NOWAIT_GFP])
++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([HAVE_FILEMAP_FDATAWRITE])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_FILEMAP_FDATAWRITE$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_FILEMAP_FDATAWRITE], [/* filemap_fdatawrite() found */
++#undef HAVE_FILEMAP_FDATAWRITE])
++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_PAGE_MAPPED])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_PAGE_MAPPED$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_PAGE_MAPPED], [/* page_mapped found */
++#undef HAVE_PAGE_MAPPED])
++m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_UNLOCKED_IOCTL])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_UNLOCKED_IOCTL$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_UNLOCKED_IOCTL], [/* struct file_operations has an unlock ed_ioctl field */
++#undef HAVE_UNLOCKED_IOCTL])
++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_SET_FS_PWD])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SET_FS_PWD$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SET_FS_PWD], [/* set_fs_pwd is exported */
++#undef HAVE_SET_FS_PWD])
++m4trace:configure.ac:20: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SET_FS_PWD])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_SET_FS_PWD$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_SET_FS_PWD], [/* set_fs_pwd is exported */
++#undef HAVE_SET_FS_PWD])
++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_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_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_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_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_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_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_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([HAVE_REGISTER_SHRINKER])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_REGISTER_SHRINKER$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_REGISTER_SHRINKER], [/* if kernel has register_shrinker */
++#undef HAVE_REGISTER_SHRINKER])
++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_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_PATH_RELEASE])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^HAVE_PATH_RELEASE$])
++m4trace:configure.ac:20: -1- AH_OUTPUT([HAVE_PATH_RELEASE], [/* path_release exist */
++#undef HAVE_PATH_RELEASE])
++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: -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:418: LB_PATH_DMU is expanded from...
++aclocal.m4:778: 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_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- AC_SUBST([spl_src])
++m4trace:configure.ac:20: -1- AC_SUBST_TRACE([spl_src])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^spl_src$])
++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- 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:177: LB_PATH_LIBSYSIO is expanded from...
++aclocal.m4:778: 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:264: LB_PATH_LDISKFS is expanded from...
++aclocal.m4:778: 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- 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:224: LB_PATH_LUSTREIOKIT is expanded from...
++aclocal.m4:778: 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:2537: LC_CONFIG_LIBLUSTRE is expanded from...
++aclocal.m4:778: 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:2537: LC_CONFIG_LIBLUSTRE is expanded from...
++aclocal.m4:778: 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:2537: LC_CONFIG_LIBLUSTRE is expanded from...
++aclocal.m4:778: 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:2537: LC_CONFIG_LIBLUSTRE is expanded from...
++aclocal.m4:778: LB_CONFIGURE is expanded from...
++configure.ac:20: the top level])
++m4trace:configure.ac:20: -1- AC_SUBST([MPI_ROOT])
++m4trace:configure.ac:20: -1- AC_SUBST_TRACE([MPI_ROOT])
++m4trace:configure.ac:20: -1- m4_pattern_allow([^MPI_ROOT$])
++m4trace:configure.ac:20: -1- _m4_warn([cross], [cannot check for file existence when cross compiling], [../../lib/autoconf/general.m4:2491: AC_CHECK_FILE is expanded from...
++aclocal.m4:2537: LC_CONFIG_LIBLUSTRE is expanded from...
++aclocal.m4:778: 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:1193: LC_CONFIG_PINGER is expanded from...
++aclocal.m4:2537: LC_CONFIG_LIBLUSTRE is expanded from...
++aclocal.m4:778: 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:1242: LC_CONFIG_LIBLUSTRE_RECOVERY is expanded from...
++aclocal.m4:2537: LC_CONFIG_LIBLUSTRE is expanded from...
++aclocal.m4:778: 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:4952: LN_CONFIGURE is expanded from...
++aclocal.m4:778: 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:4952: LN_CONFIGURE is expanded from...
++aclocal.m4:778: 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:4952: LN_CONFIGURE is expanded from...
++aclocal.m4:778: 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:4952: LN_CONFIGURE is expanded from...
++aclocal.m4:778: 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:4952: LN_CONFIGURE is expanded from...
++aclocal.m4:778: 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:4952: LN_CONFIGURE is expanded from...
++aclocal.m4:778: 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:3502: LN_CONFIG_MAX_PAYLOAD is expanded from...
++aclocal.m4:4952: LN_CONFIGURE is expanded from...
++aclocal.m4:778: 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:3621: LN_CONFIG_PORTALS is expanded from...
++aclocal.m4:3724: LN_CONFIG_UPTLLND is expanded from...
++aclocal.m4:4952: LN_CONFIGURE is expanded from...
++aclocal.m4:778: 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:3747: LN_CONFIG_USOCKLND is expanded from...
++aclocal.m4:4952: LN_CONFIGURE is expanded from...
++aclocal.m4:778: 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:1259: LC_CONFIG_OBD_BUFFER_SIZE is expanded from...
++aclocal.m4:2799: LC_CONFIGURE is expanded from...
++aclocal.m4:778: 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:1296: LC_READLINK_SSIZE_T is expanded from...
++aclocal.m4:2799: LC_CONFIGURE is expanded from...
++aclocal.m4:778: 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:2799: LC_CONFIGURE is expanded from...
++aclocal.m4:778: 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:2799: LC_CONFIGURE is expanded from...
++aclocal.m4:778: 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:5196: LS_CONFIGURE is expanded from...
++aclocal.m4:778: 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/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/ldlm/Makefile
++lustre/liblustre/Makefile
++lustre/liblustre/tests/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/scripts/version_tag.pl
++lustre/tests/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 lustre-1.6.7.2.orig/autoMakefile.in lustre-1.6.7.2/autoMakefile.in
+--- lustre-1.6.7.2.orig/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/autoMakefile.in	2009-08-10 10:05:35.000000000 +0200
+@@ -122,12 +122,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -239,8 +238,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -254,8 +251,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -263,26 +262,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+@@ -298,7 +298,6 @@
+ 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@
+- at LDISKFS_ENABLED_TRUE@EXTRA_SOURCES := @SYMVERFILE@
+ 
+ AUTOMAKE_OPTIONS = foreign
+ 
+@@ -306,6 +305,7 @@
+ 
+ @LINUX25_FALSE@@LINUX_TRUE@@MODULES_TRUE at CLEANFILES = .depend
+ 
++#EXTRA_SOURCES := @SYMVERFILE@
+ EXTRA_DIST = @PACKAGE_TARNAME at .spec					\
+ 	build/Makefile build/autoMakefile.am.toplevel build/lbuild	\
+ 	build/linux-merge-config.awk build/linux-merge-modules.awk	\
+@@ -327,6 +327,8 @@
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = config.h
+ CONFIG_CLEAN_FILES = Makefile Rules lustre.spec \
++	lnet/include/libcfs/darwin/Makefile \
++	lnet/include/lnet/darwin/Makefile lnet/libcfs/darwin/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 \
+@@ -338,7 +340,8 @@
+ 	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/sles-2.4.target \
++	lustre/obdclass/darwin/Makefile
+ DIST_SOURCES =
+ 
+ RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
+@@ -349,8 +352,9 @@
+ DIST_COMMON = README $(srcdir)/autoMakefile.in \
+ 	$(srcdir)/build/autoMakefile.am.toplevel $(srcdir)/configure \
+ 	COPYING ChangeLog Makefile.in aclocal.m4 autoMakefile.am \
+-	compile config.guess config.h.in config.sub configure.ac \
+-	depcomp install-sh lustre.spec.in missing mkinstalldirs
++	compile config.guess config.h.in config.sub configure \
++	configure.ac depcomp install-sh lustre.spec.in missing \
++	mkinstalldirs
+ all: config.h
+ 	$(MAKE) $(AM_MAKEFLAGS) all-recursive
+ 
+@@ -394,6 +398,12 @@
+ 	cd $(top_builddir) && $(SHELL) ./config.status $@
+ lustre.spec: $(top_builddir)/config.status lustre.spec.in
+ 	cd $(top_builddir) && $(SHELL) ./config.status $@
++lnet/include/libcfs/darwin/Makefile: $(top_builddir)/config.status $(top_srcdir)/lnet/include/libcfs/darwin/Makefile.in
++	cd $(top_builddir) && $(SHELL) ./config.status $@
++lnet/include/lnet/darwin/Makefile: $(top_builddir)/config.status $(top_srcdir)/lnet/include/lnet/darwin/Makefile.in
++	cd $(top_builddir) && $(SHELL) ./config.status $@
++lnet/libcfs/darwin/Makefile: $(top_builddir)/config.status $(top_srcdir)/lnet/libcfs/darwin/Makefile.in
++	cd $(top_builddir) && $(SHELL) ./config.status $@
+ 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
+@@ -418,6 +428,8 @@
+ 	cd $(top_builddir) && $(SHELL) ./config.status $@
+ lustre/kernel_patches/targets/sles-2.4.target: $(top_builddir)/config.status $(top_srcdir)/lustre/kernel_patches/targets/sles-2.4.target.in
+ 	cd $(top_builddir) && $(SHELL) ./config.status $@
++lustre/obdclass/darwin/Makefile: $(top_builddir)/config.status $(top_srcdir)/lustre/obdclass/darwin/Makefile.in
++	cd $(top_builddir) && $(SHELL) ./config.status $@
+ uninstall-info-am:
+ 
+ # This directory's subdirectories are mostly independent; you can cd
+@@ -533,7 +545,7 @@
+ distdir: $(DISTFILES)
+ 	$(am__remove_distdir)
+ 	mkdir $(distdir)
+-	$(mkinstalldirs) $(distdir)/. $(distdir)/./build $(distdir)/build $(distdir)/build/autoconf $(distdir)/lnet $(distdir)/lnet/klnds $(distdir)/lnet/klnds/ciblnd $(distdir)/lnet/klnds/gmlnd $(distdir)/lnet/klnds/iiblnd $(distdir)/lnet/klnds/mxlnd $(distdir)/lnet/klnds/o2iblnd $(distdir)/lnet/klnds/openiblnd $(distdir)/lnet/klnds/ptllnd $(distdir)/lnet/klnds/qswlnd $(distdir)/lnet/klnds/ralnd $(distdir)/lnet/klnds/socklnd $(distdir)/lnet/klnds/viblnd $(distdir)/lnet/libcfs $(distdir)/lnet/lnet $(distdir)/lnet/selftest $(distdir)/lnet/ulnds $(distdir)/lustre $(distdir)/lustre/include $(distdir)/lustre/kernel_patches/targets $(distdir)/lustre/llite $(distdir)/lustre/lov $(distdir)/lustre/lvfs $(distdir)/lustre/mdc $(distdir)/lustre/mds $(distdir)/lustre/mgc $(distdir)/lustre/mgs $(distdir)/lustre/obdclass $(distdir)/lustre/obdecho $(distdir)/lustre/obdfilter $(distdir)/lustre/osc $(distdir)/lustre/ost $(distdir)/lustre/ptlrpc $(distdir)/lustre/quota $(distdir)/lustre/scripts
++	$(mkinstalldirs) $(distdir)/. $(distdir)/./build $(distdir)/build $(distdir)/build/autoconf $(distdir)/lnet $(distdir)/lnet/include/libcfs/darwin $(distdir)/lnet/include/lnet/darwin $(distdir)/lnet/klnds $(distdir)/lnet/klnds/ciblnd $(distdir)/lnet/klnds/gmlnd $(distdir)/lnet/klnds/iiblnd $(distdir)/lnet/klnds/mxlnd $(distdir)/lnet/klnds/o2iblnd $(distdir)/lnet/klnds/openiblnd $(distdir)/lnet/klnds/ptllnd $(distdir)/lnet/klnds/qswlnd $(distdir)/lnet/klnds/ralnd $(distdir)/lnet/klnds/socklnd $(distdir)/lnet/klnds/viblnd $(distdir)/lnet/libcfs $(distdir)/lnet/libcfs/darwin $(distdir)/lnet/lnet $(distdir)/lnet/selftest $(distdir)/lnet/ulnds $(distdir)/lustre $(distdir)/lustre/include $(distdir)/lustre/kernel_patches/targets $(distdir)/lustre/llite $(distdir)/lustre/lov $(distdir)/lustre/lvfs $(distdir)/lustre/mdc $(distdir)/lustre/mds $(distdir)/lustre/mgc $(distdir)/lustre/mgs $(distdir)/lustre/obdclass $(distdir)/lustre/obdclass/darwin $(distdir)/lustre/obdecho $(distdir)/lustre/obdfilter $(distdir)/lustre/osc $(distdir)/lustre/ost $(distdir)/lustre/ptlrpc $(distdir)/lustre/quota $(distdir)/lustre/scripts
+ 	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+ 	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+ 	list='$(DISTFILES)'; for file in $$list; do \
+diff -Nurwd lustre-1.6.7.2.orig/config.h.in lustre-1.6.7.2/config.h.in
+--- lustre-1.6.7.2.orig/config.h.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/config.h.in	2009-08-10 10:05:34.000000000 +0200
+@@ -66,6 +66,9 @@
+ /* 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
+ 
+@@ -129,6 +132,9 @@
+ /* Define to 1 if you have the <ext2fs/ext2fs.h> header file. */
+ #undef HAVE_EXT2FS_EXT2FS_H
+ 
++/* kernel has .fh_to_dentry member in export_operations struct */
++#undef HAVE_FH_TO_DENTRY
++
+ /* filemap_fdatawrite() found */
+ #undef HAVE_FILEMAP_FDATAWRITE
+ 
+@@ -144,21 +150,24 @@
+ /* use fops->readv */
+ #undef HAVE_FILE_READV
+ 
++/* kernel have file_remove_suid */
++#undef HAVE_FILE_REMOVE_SUID
++
+ /* 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
+ 
+@@ -174,6 +183,9 @@
+ /* 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
+ 
+@@ -186,6 +198,9 @@
+ /* struct inode has i_alloc_sem */
+ #undef HAVE_I_ALLOC_SEM
+ 
++/* kernel has .sendfile */
++#undef HAVE_KERNEL_SENDFILE
++
+ /* kernel has .slice_read */
+ #undef HAVE_KERNEL_SPLICE_READ
+ 
+@@ -219,9 +234,12 @@
+ /* libwrap support is requested */
+ #undef HAVE_LIBWRAP
+ 
+-/* Define to 1 if you have the <linux/exportfs.h> header file. */
++/* kernel has include/exportfs.h */
+ #undef HAVE_LINUX_EXPORTFS_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
+ 
+@@ -240,6 +258,9 @@
+ /* 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
+ 
+@@ -282,6 +303,9 @@
+ /* page_mapped found */
+ #undef HAVE_PAGE_MAPPED
+ 
++/* path_release exist */
++#undef HAVE_PATH_RELEASE
++
+ /* the kernel defines PDE */
+ #undef HAVE_PDE
+ 
+@@ -291,6 +315,9 @@
+ /* readlink returns ssize_t */
+ #undef HAVE_POSIX_1003_READLINK
+ 
++/* kernel has deleted member in procfs entry struct */
++#undef HAVE_PROCFS_DELETED
++
+ /* have quota64 */
+ #undef HAVE_QUOTA64
+ 
+@@ -303,6 +330,12 @@
+ /* register_cache found */
+ #undef HAVE_REGISTER_CACHE
+ 
++/* if kernel has register_shrinker */
++#undef HAVE_REGISTER_SHRINKER
++
++/* mapping->tree_lock is rw_lock */
++#undef HAVE_RW_TREE_LOCK
++
+ /* struct scatterlist has page member */
+ #undef HAVE_SCATTERLIST_SETPAGE
+ 
+@@ -324,6 +357,9 @@
+ /* 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
+ 
+@@ -381,6 +417,9 @@
+ /* kernel export truncate_complete_page */
+ #undef HAVE_TRUNCATE_COMPLETE_PAGE
+ 
++/* kernel use trylock_page for page lock */
++#undef HAVE_TRYLOCK_PAGE
++
+ /* __u64 is long long type */
+ #undef HAVE_U64_LONG_LONG
+ 
+@@ -405,6 +444,9 @@
+ /* if vfs_readdir need 64bit inode number */
+ #undef HAVE_VFS_READDIR_U64_INO
+ 
++/* if kernel has .fault in vm_operation_struct */
++#undef HAVE_VM_OP_FAULT
++
+ /* Kernel has xattr_acl */
+ #undef HAVE_XATTR_ACL
+ 
+@@ -474,7 +516,7 @@
+ /* enable randomly alloc failure */
+ #undef RANDOM_FAIL_ALLOC
+ 
+-/* The size of a `unsigned long long', as computed by sizeof. */
++/* The size of `unsigned long long', as computed by sizeof. */
+ #undef SIZEOF_UNSIGNED_LONG_LONG
+ 
+ /* use tunable backoff TCP */
+diff -Nurwd lustre-1.6.7.2.orig/config.h.in~ lustre-1.6.7.2/config.h.in~
+--- lustre-1.6.7.2.orig/config.h.in~	1970-01-01 01:00:00.000000000 +0100
++++ lustre-1.6.7.2/config.h.in~	2009-08-10 10:04:57.000000000 +0200
+@@ -0,0 +1,499 @@
++/* config.h.in.  Generated from configure.ac by autoheader.  */
++
++/* disable libcfs CDEBUG, CWARN */
++#undef CDEBUG_ENABLED
++
++/* disable libcfs ENTRY/EXIT */
++#undef CDEBUG_ENTRY_EXIT
++
++/* 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
++
++/* Enable DMU OSD */
++#undef DMU_OSD
++
++/* 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
++
++/* 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
++
++/* 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
++
++/* Kernel has bit_spinlock.h */
++#undef HAVE_BIT_SPINLOCK_H
++
++/* Define to 1 if you have the <blkid/blkid.h> header file. */
++#undef HAVE_BLKID_BLKID_H
++
++/* kernel expects return from shrink_cache */
++#undef HAVE_CACHE_RETURN_INT
++
++/* 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
++
++/* cond_resched found */
++#undef HAVE_COND_RESCHED
++
++/* 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
++
++/* kernel has new dev_set_rdonly */
++#undef HAVE_DEV_SET_RDONLY
++
++/* the kernel passes struct file to direct_IO */
++#undef HAVE_DIO_FILE
++
++/* after 2.6.17 dquote use mutex instead if semaphore */
++#undef HAVE_DQUOTOFF_MUTEX
++
++/* Kernel has d_add_unique */
++#undef HAVE_D_ADD_UNIQUE
++
++/* 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
++
++/* Define to 1 if you have the <endian.h> header file. */
++#undef HAVE_ENDIAN_H
++
++/* kernel exports __iget */
++#undef HAVE_EXPORT___IGET
++
++/* Define to 1 if you have the <ext2fs/ext2fs.h> header file. */
++#undef HAVE_EXT2FS_EXT2FS_H
++
++/* filemap_fdatawrite() found */
++#undef HAVE_FILEMAP_FDATAWRITE
++
++/* 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
++
++/* use fops->writev */
++#undef HAVE_FILE_WRITEV
++
++/* kernel has FS_RENAME_DOES_D_MOVE flag */
++#undef HAVE_FS_RENAME_DOES_D_MOVE
++
++/* 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 has 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
++
++/* after 2.6.15 inode have i_mutex intead of i_sem */
++#undef HAVE_INODE_I_MUTEX
++
++/* 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
++
++/* struct inode has i_alloc_sem */
++#undef HAVE_I_ALLOC_SEM
++
++/* kernel has .slice_read */
++#undef HAVE_KERNEL_SPLICE_READ
++
++/* struct kiobuf has a dovary field */
++#undef HAVE_KIOBUF_DOVARY
++
++/* 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
++
++/* __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
++
++/* Define to 1 if you have the <linux/exportfs.h> header file. */
++#undef HAVE_LINUX_EXPORTFS_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
++
++/* Define to 1 if you have the <memory.h> header file. */
++#undef HAVE_MEMORY_H
++
++/* mm_inline found */
++#undef HAVE_MM_INLINE
++
++/* 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
++
++/* 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
++
++/* page_mapped found */
++#undef HAVE_PAGE_MAPPED
++
++/* the kernel defines PDE */
++#undef HAVE_PDE
++
++/* is kernel have PG_fs_misc */
++#undef HAVE_PG_FS_MISC
++
++/* readlink returns ssize_t */
++#undef HAVE_POSIX_1003_READLINK
++
++/* have quota64 */
++#undef HAVE_QUOTA64
++
++/* Enable quota support */
++#undef HAVE_QUOTA_SUPPORT
++
++/* have RCU defined */
++#undef HAVE_RCU
++
++/* register_cache found */
++#undef HAVE_REGISTER_CACHE
++
++/* 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
++
++/* set_fs_pwd is exported */
++#undef HAVE_SET_FS_PWD
++
++/* 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
++
++/* 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
++
++/* sysctl has CTL_UNNUMBERED */
++#undef HAVE_SYSCTL_UNNUMBERED
++
++/* 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 p_pptr found */
++#undef HAVE_TASK_PPTR
++
++/* kernel export truncate_complete_page */
++#undef HAVE_TRUNCATE_COMPLETE_PAGE
++
++/* __u64 is long long type */
++#undef HAVE_U64_LONG_LONG
++
++/* 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
++
++/* struct file_operations has an unlock ed_ioctl field */
++#undef HAVE_UNLOCKED_IOCTL
++
++/* unregister_blkdev return int */
++#undef HAVE_UNREGISTER_BLKDEV_RETURN_INT
++
++/* 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
++
++/* 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
++
++/* 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
++
++/* 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
++
++/* Enable user-level OSS */
++#undef UOSS_SUPPORT
++
++/* Write when Checking Health */
++#undef USE_HEALTH_CHECK_WRITE
++
++/* Version number of package */
++#undef VERSION
++
++/* zap_page_range with vma parameter */
++#undef ZAP_PAGE_RANGE_VMA
+diff -Nurwd lustre-1.6.7.2.orig/configure lustre-1.6.7.2/configure
+--- lustre-1.6.7.2.orig/configure	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/configure	2009-08-10 10:05:46.000000000 +0200
+@@ -1,27 +1,56 @@
+ #! /bin/sh
+ # Guess values for system-dependent variables and create Makefiles.
+-# Generated by GNU Autoconf 2.59 for Lustre LUSTRE_VERSION.
++# Generated by GNU Autoconf 2.61 for Lustre LUSTRE_VERSION.
+ #
+ # Report bugs to <https://bugzilla.lustre.org/>.
+ #
+-# Copyright (C) 2003 Free Software Foundation, Inc.
++# 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 Bourne compatible
++# 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+"$@"}'='"$@"'
+-elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
+-  set -o posix
++  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
+-DUALCASE=1; export DUALCASE # for MKS sh
+ 
+ # Support unset when possible.
+ if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
+@@ -31,8 +60,43 @@
+ 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.
+-$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='+ '
+@@ -46,18 +110,19 @@
+   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.
+-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
+ 
+-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
+@@ -65,157 +130,388 @@
+ 
+ 
+ # Name of the executable.
+-as_me=`$as_basename "$0" ||
++as_me=`$as_basename -- "$0" ||
+ $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+ 	 X"$0" : 'X\(//\)$' \| \
+-	 X"$0" : 'X\(/\)$' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
++	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
+ echo X/"$0" |
+-    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
+-  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\/\(\/\).*/{ s//\1/; q; }
++    sed '/^.*\/\([^/][^/]*\)\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\/\(\/\/\)$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\/\(\/\).*/{
++	    s//\1/
++	    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=';'
++if test "x$CONFIG_SHELL" = x; then
++  if (eval ":") 2>/dev/null; then
++  as_have_required=yes
+   else
+-    PATH_SEPARATOR=:
++  as_have_required=no
+   fi
+-  rm -f conf$$.sh
++
++  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
+ 
+-  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
++if as_func_ret_success; then
++  :
++else
++  exitcode=1
++  echo as_func_ret_success failed.
++fi
+ 
+-       ;;
+-  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
++if as_func_ret_failure; then
++  exitcode=1
++  echo as_func_ret_failure succeeded.
+   fi
+-  if test ! -f "$as_myself"; then
+-    { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
+-   { (exit 1); exit 1; }; }
++
++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
+-  '')
++
++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=.
+-  for as_base in sh bash ksh sh5; do
+ 	 case $as_dir in
+ 	 /*)
+-	   if ("$as_dir/$as_base" -c '
++	   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
+-  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; }
+-	     CONFIG_SHELL=$as_dir/$as_base
+-	     export CONFIG_SHELL
+-	     exec "$CONFIG_SHELL" "$0" ${1+"$@"}
+-	   fi;;
+-	 esac
++  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
+-;;
+-  esac
++        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 before each line; the second 'sed' does the real
+-  # work.  The second script uses 'N' to pair each line-number line
+-  # with the numbered line, and appends trailing '-' during
+-  # substitution so that $LINENO is not a special case at line end.
++  # 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
+-  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
+-  sed '=' <$as_myself |
++  # 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
+-      s,$,-,
+       : loop
+-      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
++      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
+       t loop
+-      s,-$,,
+-      s,^['$as_cr_digits']*\n,,
++      s/-\n.*//
+     ' >$as_me.lineno &&
+-  chmod +x $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 sensible to this).
+-  . ./$as_me.lineno
++  # original and so on.  Autoconf is especially sensitive to this).
++  . "./$as_me.lineno"
+   # Exit status is that of the last command.
+   exit
+ }
+ 
+ 
+-case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
+-  *c*,-n*) ECHO_N= ECHO_C='
+-' ECHO_T='	' ;;
+-  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
+-  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
++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; then
++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
+-  # We could just check for DJGPP; but this test a) works b) is more generic
+-  # 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
++  # ... 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$$.file
++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=:
+@@ -224,7 +520,28 @@
+   as_mkdir_p=false
+ fi
+ 
+-as_executable_p="test -f"
++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'"
+@@ -233,39 +550,27 @@
+ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+ 
+ 
+-# IFS
+-# We need space, tab and new line, in precisely that order.
+-as_nl='
+-'
+-IFS=" 	$as_nl"
+-
+-# CDPATH.
+-$as_unset CDPATH
+ 
++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`
+ 
+-exec 6>&1
+-
+ #
+ # Initializations.
+ #
+ ac_default_prefix=/usr/local
++ac_clean_files=
+ ac_config_libobj_dir=.
++LIBOBJS=
+ cross_compiling=no
+ subdirs=
+ MFLAGS=
+ MAKEFLAGS=
+ SHELL=${CONFIG_SHELL-/bin/sh}
+ 
+-# Maximum number of lines to put in a shell here document.
+-# This variable seems obsolete.  It should probably be removed, and
+-# only ac_max_sed_lines should be used.
+-: ${ac_max_here_lines=38}
+-
+ # Identity of this package.
+ PACKAGE_NAME='Lustre'
+ PACKAGE_TARNAME='lustre'
+@@ -278,48 +583,309 @@
+ # Factoring default headers for most tests.
+ ac_includes_default="\
+ #include <stdio.h>
+-#if HAVE_SYS_TYPES_H
++#ifdef HAVE_SYS_TYPES_H
+ # include <sys/types.h>
+ #endif
+-#if HAVE_SYS_STAT_H
++#ifdef HAVE_SYS_STAT_H
+ # include <sys/stat.h>
+ #endif
+-#if STDC_HEADERS
++#ifdef STDC_HEADERS
+ # include <stdlib.h>
+ # include <stddef.h>
+ #else
+-# if HAVE_STDLIB_H
++# ifdef HAVE_STDLIB_H
+ #  include <stdlib.h>
+ # endif
+ #endif
+-#if HAVE_STRING_H
+-# if !STDC_HEADERS && HAVE_MEMORY_H
++#ifdef HAVE_STRING_H
++# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+ #  include <memory.h>
+ # endif
+ # include <string.h>
+ #endif
+-#if HAVE_STRINGS_H
++#ifdef HAVE_STRINGS_H
+ # include <strings.h>
+ #endif
+-#if HAVE_INTTYPES_H
++#ifdef HAVE_INTTYPES_H
+ # include <inttypes.h>
+-#else
+-# if HAVE_STDINT_H
+-#  include <stdint.h>
+ # endif
++#ifdef HAVE_STDINT_H
++# include <stdint.h>
+ #endif
+-#if HAVE_UNISTD_H
++#ifdef HAVE_UNISTD_H
+ # include <unistd.h>
+ #endif"
+ 
+-ac_subdirs_all="$ac_subdirs_all lustre/zfs-lustre"
+-ac_subdirs_all="$ac_subdirs_all spl"
+-ac_subdirs_all="$ac_subdirs_all zfs"
+-ac_subdirs_all="$ac_subdirs_all libsysio"
+-ac_subdirs_all="$ac_subdirs_all ldiskfs"
+-ac_subdirs_all="$ac_subdirs_all lustre-iokit"
+-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 datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS 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 ac_ct_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 docdir LUSTRE rootsbindir demodir pkgexampledir RANLIB ac_ct_RANLIB CPP 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 EXTRA_KLDFLAGS EXTRA_KLIBS kextdir plistdir macosdir DMU_SRC subdirs SPL_DIR ZFS_DIR spl_src DMU_OSD_ENABLED_TRUE DMU_OSD_ENABLED_FALSE KDMU_TRUE KDMU_FALSE SNMP_DIST_SUBDIR SNMP_SUBDIR LDISKFS_DIR LDISKFS_SUBDIR LUSTREIOKIT_SUBDIR MPI_ROOT 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 LIBOBJS LTLIBOBJS'
++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_DIR
++ZFS_DIR
++spl_src
++DMU_OSD_ENABLED_TRUE
++DMU_OSD_ENABLED_FALSE
++KDMU_TRUE
++KDMU_FALSE
++SNMP_DIST_SUBDIR
++SNMP_SUBDIR
++LDISKFS_DIR
++LDISKFS_SUBDIR
++LUSTREIOKIT_SUBDIR
++MPI_ROOT
++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
++LIBOBJS
++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=
+@@ -346,34 +912,48 @@
+ # 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'
+-datadir='${prefix}/share'
++datarootdir='${prefix}/share'
++datadir='${datarootdir}'
+ sysconfdir='${prefix}/etc'
+ sharedstatedir='${prefix}/com'
+ localstatedir='${prefix}/var'
+-libdir='${exec_prefix}/lib'
+ includedir='${prefix}/include'
+ oldincludedir='/usr/include'
+-infodir='${prefix}/info'
+-mandir='${prefix}/man'
++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"
++    eval $ac_prev=\$ac_option
+     ac_prev=
+     continue
+   fi
+ 
+-  ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
++  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_option in
++  case $ac_dashdash$ac_option in
++  --)
++    ac_dashdash=yes ;;
+ 
+   -bindir | --bindir | --bindi | --bind | --bin | --bi)
+     ac_prev=bindir ;;
+@@ -395,33 +975,45 @@
+   --config-cache | -C)
+     cache_file=config.cache ;;
+ 
+-  -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
++  -datadir | --datadir | --datadi | --datad)
+     ac_prev=datadir ;;
+-  -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
+-  | --da=*)
++  -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 &&
++    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" ;;
++    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 &&
++    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'`
+-    case $ac_option in
+-      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
+-      *) ac_optarg=yes ;;
+-    esac
+-    eval "enable_$ac_feature='$ac_optarg'" ;;
++    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- \
+@@ -448,6 +1040,12 @@
+   -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 ;;
+@@ -472,13 +1070,16 @@
+   | --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 | --local | --loca | --loc | --lo)
++  | --localstate | --localstat | --localsta | --localst | --locals)
+     ac_prev=localstatedir ;;
+   -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
+-  | --localstate=* | --localstat=* | --localsta=* | --localst=* \
+-  | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
++  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
+     localstatedir=$ac_optarg ;;
+ 
+   -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
+@@ -543,6 +1144,16 @@
+   | --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 ;;
+@@ -595,24 +1206,20 @@
+   -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 &&
++    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'`
+-    case $ac_option in
+-      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
+-      *) ac_optarg=yes ;;
+-    esac
+-    eval "with_$ac_package='$ac_optarg'" ;;
++    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 &&
++    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" ;;
++    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
++    eval with_$ac_package=no ;;
+ 
+   --x)
+     # Obsolete; use --with-x.
+@@ -643,8 +1250,7 @@
+     expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
+       { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
+    { (exit 1); exit 1; }; }
+-    ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
+-    eval "$ac_envvar='$ac_optarg'"
++    eval $ac_envvar=\$ac_optarg
+     export $ac_envvar ;;
+ 
+   *)
+@@ -664,27 +1270,19 @@
+    { (exit 1); exit 1; }; }
+ fi
+ 
+-# Be sure to have absolute paths.
+-for ac_var in exec_prefix prefix
+-do
+-  eval ac_val=$`echo $ac_var`
+-  case $ac_val in
+-    [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
+-    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
+-   { (exit 1); exit 1; }; };;
+-  esac
+-done
+-
+-# Be sure to have absolute paths.
+-for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
+-	      localstatedir libdir includedir oldincludedir infodir mandir
++# 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=$`echo $ac_var`
++  eval ac_val=\$$ac_var
+   case $ac_val in
+-    [\\/$]* | ?:[\\/]* ) ;;
+-    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
+-   { (exit 1); exit 1; }; };;
++    [\\/$]* | ?:[\\/]* )  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'
+@@ -711,74 +1309,76 @@
+ 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 its parent.
+-  ac_confdir=`(dirname "$0") 2>/dev/null ||
++  # 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 ||
++	 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; }
++    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
++  if test ! -r "$srcdir/$ac_unique_file"; then
+     srcdir=..
+   fi
+ else
+   ac_srcdir_defaulted=no
+ fi
+-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
+    { (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"
++ac_abs_confdir=`(
++	cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2
+    { (exit 1); exit 1; }; }
+-srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
+-ac_env_build_alias_set=${build_alias+set}
+-ac_env_build_alias_value=$build_alias
+-ac_cv_env_build_alias_set=${build_alias+set}
+-ac_cv_env_build_alias_value=$build_alias
+-ac_env_host_alias_set=${host_alias+set}
+-ac_env_host_alias_value=$host_alias
+-ac_cv_env_host_alias_set=${host_alias+set}
+-ac_cv_env_host_alias_value=$host_alias
+-ac_env_target_alias_set=${target_alias+set}
+-ac_env_target_alias_value=$target_alias
+-ac_cv_env_target_alias_set=${target_alias+set}
+-ac_cv_env_target_alias_value=$target_alias
+-ac_env_CC_set=${CC+set}
+-ac_env_CC_value=$CC
+-ac_cv_env_CC_set=${CC+set}
+-ac_cv_env_CC_value=$CC
+-ac_env_CFLAGS_set=${CFLAGS+set}
+-ac_env_CFLAGS_value=$CFLAGS
+-ac_cv_env_CFLAGS_set=${CFLAGS+set}
+-ac_cv_env_CFLAGS_value=$CFLAGS
+-ac_env_LDFLAGS_set=${LDFLAGS+set}
+-ac_env_LDFLAGS_value=$LDFLAGS
+-ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
+-ac_cv_env_LDFLAGS_value=$LDFLAGS
+-ac_env_CPPFLAGS_set=${CPPFLAGS+set}
+-ac_env_CPPFLAGS_value=$CPPFLAGS
+-ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
+-ac_cv_env_CPPFLAGS_value=$CPPFLAGS
+-ac_env_CPP_set=${CPP+set}
+-ac_env_CPP_value=$CPP
+-ac_cv_env_CPP_set=${CPP+set}
+-ac_cv_env_CPP_value=$CPP
++	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.
+@@ -807,9 +1407,6 @@
+   -n, --no-create         do not create output files
+       --srcdir=DIR        find the sources in DIR [configure dir or \`..']
+ 
+-_ACEOF
+-
+-  cat <<_ACEOF
+ Installation directories:
+   --prefix=PREFIX         install architecture-independent files in PREFIX
+ 			  [$ac_default_prefix]
+@@ -827,15 +1424,22 @@
+   --bindir=DIR           user executables [EPREFIX/bin]
+   --sbindir=DIR          system admin executables [EPREFIX/sbin]
+   --libexecdir=DIR       program executables [EPREFIX/libexec]
+-  --datadir=DIR          read-only architecture-independent data [PREFIX/share]
+   --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]
+-  --infodir=DIR          info documentation [PREFIX/info]
+-  --mandir=DIR           man documentation [PREFIX/man]
++  --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
+@@ -861,6 +1465,7 @@
+ 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
+@@ -875,7 +1480,6 @@
+   --disable-libcfs-cdebug disable libcfs CDEBUG, CWARN
+   --disable-libcfs-trace  disable libcfs ENTRY/EXIT
+   --disable-libcfs-assert disable libcfs LASSERT, LASSERTF
+-  --enable-quota          enable quota support
+   --disable-modules       disable building of Lustre kernel modules
+   --disable-affinity      disable process/irq affinity
+   --disable-backoff       disable socknal tunable backoff
+@@ -948,8 +1552,9 @@
+   CFLAGS      C compiler flags
+   LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
+               nonstandard directory <lib dir>
+-  CPPFLAGS    C/C++ preprocessor flags, e.g. -I<include dir> if you have
+-              headers in a nonstandard directory <include 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
+@@ -957,120 +1562,86 @@
+ 
+ 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.
+-  ac_popdir=`pwd`
+   for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
+-    test -d $ac_dir || continue
++    test -d "$ac_dir" || continue
+     ac_builddir=.
+ 
+-if test "$ac_dir" != .; then
++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=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+-else
+-  ac_dir_suffix= ac_top_builddir=
+-fi
++  # 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
+-  .)  # No --srcdir option.  We are building in place.
++  .)  # We are building in place.
+     ac_srcdir=.
+-    if test -z "$ac_top_builddir"; then
+-       ac_top_srcdir=.
+-    else
+-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+-    fi ;;
+-  [\\/]* | ?:[\\/]* )  # Absolute path.
++    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 ;;
+-  *) # Relative path.
+-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
+-esac
+-
+-# Do not use `cd foo && pwd` to compute absolute paths, because
+-# the directories may not exist.
+-case `pwd` in
+-.) ac_abs_builddir="$ac_dir";;
+-*)
+-  case "$ac_dir" in
+-  .) ac_abs_builddir=`pwd`;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
+-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_builddir=${ac_top_builddir}.;;
+-*)
+-  case ${ac_top_builddir}. in
+-  .) ac_abs_top_builddir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
+-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_srcdir=$ac_srcdir;;
+-*)
+-  case $ac_srcdir in
+-  .) ac_abs_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
+-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_srcdir=$ac_top_srcdir;;
+-*)
+-  case $ac_top_srcdir in
+-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) 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
+ 
+-    cd $ac_dir
+-    # Check for guested configure; otherwise get Cygnus style 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
+-    elif test -f $ac_srcdir/configure.ac ||
+-	   test -f $ac_srcdir/configure.in; then
+-      echo
+-      $ac_configure --help
++    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
+-    cd $ac_popdir
++    fi || ac_status=$?
++    cd "$ac_pwd" || { ac_status=$?; break; }
+   done
+ fi
+ 
+-test -n "$ac_init_help" && exit 0
++test -n "$ac_init_help" && exit $ac_status
+ if $ac_init_version; then
+   cat <<\_ACEOF
+ Lustre configure LUSTRE_VERSION
+-generated by GNU Autoconf 2.59
++generated by GNU Autoconf 2.61
+ 
+-Copyright (C) 2003 Free Software Foundation, Inc.
++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 0
++  exit
+ fi
+-exec 5>config.log
+-cat >&5 <<_ACEOF
++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.59.  Invocation command line was
++generated by GNU Autoconf 2.61.  Invocation command line was
+ 
+   $ $0 $@
+ 
+ _ACEOF
++exec 5>>config.log
+ {
+ cat <<_ASUNAME
+ ## --------- ##
+@@ -1089,7 +1660,7 @@
+ /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`
+-hostinfo               = `(hostinfo) 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`
+@@ -1103,6 +1674,7 @@
+   test -z "$as_dir" && as_dir=.
+   echo "PATH: $as_dir"
+ done
++IFS=$as_save_IFS
+ 
+ } >&5
+ 
+@@ -1124,7 +1696,6 @@
+ ac_configure_args=
+ ac_configure_args0=
+ ac_configure_args1=
+-ac_sep=
+ ac_must_keep_next=false
+ for ac_pass in 1 2
+ do
+@@ -1135,7 +1706,7 @@
+     -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
+@@ -1157,9 +1728,7 @@
+ 	  -* ) ac_must_keep_next=true ;;
+ 	esac
+       fi
+-      ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
+-      # Get rid of the leading space.
+-      ac_sep=" "
++      ac_configure_args="$ac_configure_args '$ac_arg'"
+       ;;
+     esac
+   done
+@@ -1170,8 +1739,8 @@
+ # 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: Be sure not to use single quotes in there, as some shells,
+-# such as our DU 5.0 friend, will then `close' the trap.
++# 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.
+   {
+@@ -1184,20 +1753,34 @@
+ _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 `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
+-    *ac_space=\ *)
++    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"
+-      ;;
++	"s/'\''/'\''\\\\'\'''\''/g;
++	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
++      ;; #(
+     *)
+-      sed -n \
+-	"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
++      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+       ;;
+-    esac;
+-}
++    esac |
++    sort
++)
+     echo
+ 
+     cat <<\_ASBOX
+@@ -1208,22 +1791,28 @@
+     echo
+     for ac_var in $ac_subst_vars
+     do
+-      eval ac_val=$`echo $ac_var`
+-      echo "$ac_var='"'"'$ac_val'"'"'"
++      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
+-## ------------- ##
+-## Output files. ##
+-## ------------- ##
++## ------------------- ##
++## File substitutions. ##
++## ------------------- ##
+ _ASBOX
+       echo
+       for ac_var in $ac_subst_files
+       do
+-	eval ac_val=$`echo $ac_var`
+-	echo "$ac_var='"'"'$ac_val'"'"'"
++	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
+@@ -1235,15 +1824,15 @@
+ ## ----------- ##
+ _ASBOX
+       echo
+-      sed "/^$/d" confdefs.h | sort
++      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 &&
+-  rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
++  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
+@@ -1252,9 +1841,7 @@
+ ac_signal=0
+ 
+ # confdefs.h avoids OS command line length limits that DEFS can exceed.
+-rm -rf conftest* confdefs.h
+-# AIX cpp loses on an empty file, so make sure it contains at least a newline.
+-echo >confdefs.h
++rm -f -r conftest* confdefs.h
+ 
+ # Predefined preprocessor variables.
+ 
+@@ -1285,14 +1872,17 @@
+ 
+ # 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"
++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
++  set x "$ac_default_prefix/share/config.site" \
++	"$ac_default_prefix/etc/config.site"
+ fi
+-for ac_site_file in $CONFIG_SITE; do
++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;}
+@@ -1308,8 +1898,8 @@
+     { 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;;
++      [\\/]* | ?:[\\/]* ) . "$cache_file";;
++      *)                      . "./$cache_file";;
+     esac
+   fi
+ else
+@@ -1321,12 +1911,11 @@
+ # Check that the precious variables saved in the cache have kept the same
+ # value.
+ ac_cache_corrupted=false
+-for ac_var in `(set) 2>&1 |
+-	       sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
++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"
++  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
+@@ -1351,8 +1940,7 @@
+   # 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=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
+     *) ac_arg=$ac_var=$ac_new_val ;;
+     esac
+     case " $ac_configure_args " in
+@@ -1369,12 +1957,6 @@
+    { (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
+-
+ 
+ 
+ 
+@@ -1399,6 +1981,11 @@
+ 
+ 
+ 
++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
+ 
+ 
+ 
+@@ -1469,106 +2056,164 @@
+ 
+ 
+ 
++# 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
++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
++  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
++  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;}
++  { { 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
+-ac_config_guess="$SHELL $ac_aux_dir/config.guess"
+-ac_config_sub="$SHELL $ac_aux_dir/config.sub"
+-ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
++
++# 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.
+-$ac_config_sub sun4 >/dev/null 2>&1 ||
+-  { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5
+-echo "$as_me: error: cannot run $ac_config_sub" >&2;}
++$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
++{ 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_cv_build_alias=$build_alias
+-test -z "$ac_cv_build_alias" &&
+-  ac_cv_build_alias=`$ac_config_guess`
+-test -z "$ac_cv_build_alias" &&
++  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=`$ac_config_sub $ac_cv_build_alias` ||
+-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
+-echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}
++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
++{ 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
+-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/'`
++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
++{ 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
+-  ac_cv_host_alias=$host_alias
+-test -z "$ac_cv_host_alias" &&
+-  ac_cv_host_alias=$ac_cv_build_alias
+-ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
+-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5
+-echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
++  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
++{ 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
+-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/'`
++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
++{ 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
+-  ac_cv_target_alias=$target_alias
+-test "x$ac_cv_target_alias" = "x" &&
+-  ac_cv_target_alias=$ac_cv_host_alias
+-ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
+-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5
+-echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
++  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
++{ 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
+-target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
+-target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
+-target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
++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.
+@@ -1592,8 +2237,8 @@
+ # 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
++{ 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
+@@ -1615,7 +2260,7 @@
+     # by default.
+     for ac_prog in ginstall scoinst install; do
+       for ac_exec_ext in '' $ac_executable_extensions; do
+-	if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
++	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.
+@@ -1634,21 +2279,22 @@
+     ;;
+ 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.  We don't cache a
+-    # path for INSTALL within a source directory, because that will
++    # 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 path is relative.
++    # 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
++{ 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.
+@@ -1658,8 +2304,8 @@
+ 
+ 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
++{ 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
+@@ -1701,20 +2347,20 @@
+ Check your system clock" >&2;}
+    { (exit 1); exit 1; }; }
+ fi
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ 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"
++  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"
++  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 conftest.sed
++rm -f conftest.sed
+ 
+ 
+ # expand $ac_aux_dir to an absolute path
+@@ -1734,8 +2380,8 @@
+ 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
++{ 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
+@@ -1748,54 +2394,57 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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 dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'`
+-if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
++{ 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 'ac_maketemp="$(MAKE)"'
++	@echo '@@@%%%=$(MAKE)=@@@%%%'
+ _ACEOF
+ # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
+-eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
+-if test -n "$ac_maketemp"; then
+-  eval ac_cv_prog_make_${ac_make}_set=yes
+-else
+-  eval ac_cv_prog_make_${ac_make}_set=no
+-fi
++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 \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
+-  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++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
++  { echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+   SET_MAKE="MAKE=${MAKE-make}"
+ fi
+ 
+@@ -1869,8 +2518,8 @@
+   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
++{ 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
+@@ -1883,32 +2532,34 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
++{ 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
+@@ -1921,27 +2572,41 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
+ 
+-  test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
+ 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
++  { 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
++  { 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
+@@ -1964,8 +2629,8 @@
+ 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
++{ 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
+@@ -1978,32 +2643,34 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
++{ 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
+@@ -2016,26 +2683,41 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
+@@ -2044,8 +2726,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.
+ 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
++{ 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
+@@ -2058,74 +2740,34 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
+-if test -z "$ac_cv_prog_CC"; then
+-  ac_ct_CC=$CC
+-  # 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_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.
++  { echo "$as_me:$LINENO: result: $CC" >&5
++echo "${ECHO_T}$CC" >&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=.
+-  for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+-    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
+-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: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+ 
+-  CC=$ac_ct_CC
+-else
+-  CC="$ac_cv_prog_CC"
+ 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
++{ 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
+@@ -2139,7 +2781,7 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
+@@ -2150,6 +2792,7 @@
+   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.
+@@ -2167,22 +2810,23 @@
+ fi
+ CC=$ac_cv_prog_CC
+ if test -n "$CC"; then
+-  echo "$as_me:$LINENO: result: $CC" >&5
+-echo "${ECHO_T}$CC" >&6
++  { 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
++  { 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
++  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
++{ 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
+@@ -2195,36 +2839,38 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
++  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
++{ 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
+@@ -2237,30 +2883,46 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
+ 
+@@ -2272,21 +2934,35 @@
+    { (exit 1); exit 1; }; }
+ 
+ # Provide some information about the compiler.
+-echo "$as_me:$LINENO:" \
+-     "checking for C compiler version" >&5
++echo "$as_me:$LINENO: checking for C compiler version" >&5
+ ac_compiler=`set X $ac_compile; echo $2`
+-{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
+-  (eval $ac_compiler --version </dev/null >&5) 2>&5
++{ (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); }
+-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
+-  (eval $ac_compiler -v </dev/null >&5) 2>&5
++{ (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); }
+-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
+-  (eval $ac_compiler -V </dev/null >&5) 2>&5
++{ (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); }
+@@ -2311,47 +2987,77 @@
+ # 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
++{ 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[^ ]*//'`
+-if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
+-  (eval $ac_link_default) 2>&5
++#
++# 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
+-  # Find the output, starting from the most likely.  This scheme is
+-# not robust to junk in `.', hence go to wildcards (a.*) only as a last
+-# resort.
+-
+-# Be careful to initialize this variable, since it used to be cached.
+-# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
+-ac_cv_exeext=
+-# b.out is created by i960 compilers.
+-for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
++  # 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 | *.o | *.obj )
+-	;;
+-    conftest.$ac_ext )
+-	# This is the source file.
++    *.$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" : '[^.]*\(\..*\)'`
+-	# 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
++	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
+ 
+@@ -2363,19 +3069,21 @@
+ fi
+ 
+ ac_exeext=$ac_cv_exeext
+-echo "$as_me:$LINENO: result: $ac_file" >&5
+-echo "${ECHO_T}$ac_file" >&6
+ 
+-# Check the compiler produces executables we can run.  If not, either
++# 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
++{ 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'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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
+@@ -2394,22 +3102,27 @@
+     fi
+   fi
+ fi
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ 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 the compiler produces executables we can run.  If not, either
++# 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 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 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
+@@ -2420,9 +3133,8 @@
+ 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 | *.o | *.obj ) ;;
++    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
+     *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
+-	  export ac_cv_exeext
+ 	  break;;
+     * ) break;;
+   esac
+@@ -2436,14 +3148,14 @@
+ fi
+ 
+ rm -f conftest$ac_cv_exeext
+-echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
+-echo "${ECHO_T}$ac_cv_exeext" >&6
++{ 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
++{ 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
+@@ -2463,14 +3175,20 @@
+ }
+ _ACEOF
+ rm -f conftest.o conftest.obj
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>&5
++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 `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
++  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 ) ;;
++    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;
+     *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
+        break;;
+   esac
+@@ -2488,12 +3206,12 @@
+ 
+ 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
++{ 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
++{ 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
+@@ -2516,27 +3234,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -2544,21 +3257,25 @@
+ 
+ ac_compiler_gnu=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++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
++{ 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
+-CFLAGS="-g"
+-echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
+-echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
++{ 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
+@@ -2575,38 +3292,118 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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); }; }; then
++  (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
+ 
+-ac_cv_prog_cc_g=no
++
+ fi
+-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
++
++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
+@@ -2622,12 +3419,12 @@
+     CFLAGS=
+   fi
+ fi
+-echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
+-echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
+-if test "${ac_cv_prog_cc_stdc+set}" = set; then
++{ 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_stdc=no
++  ac_cv_prog_cc_c89=no
+ ac_save_CC=$CC
+ cat >conftest.$ac_ext <<_ACEOF
+ /* confdefs.h.  */
+@@ -2661,12 +3458,17 @@
+ /* 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 -std1 is added to get
++   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 -std1.  */
++   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);};
+@@ -2681,205 +3483,57 @@
+   return 0;
+ }
+ _ACEOF
+-# Don't try gcc -ansi; that turns off useful extensions and
+-# breaks some systems' header files.
+-# AIX			-qlanglvl=ansi
+-# Ultrix and OSF/1	-std1
+-# HP-UX 10.20 and later	-Ae
+-# HP-UX older versions	-Aa -D_HPUX_SOURCE
+-# SVR4			-Xc -D__EXTENSIONS__
+-for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
++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 { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
+-  ac_cv_prog_cc_stdc=$ac_arg
+-break
++  (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 conftest.err conftest.$ac_objext
++
++rm -f core conftest.err conftest.$ac_objext
++  test "x$ac_cv_prog_cc_c89" != "xno" && break
+ done
+-rm -f conftest.$ac_ext conftest.$ac_objext
++rm -f conftest.$ac_ext
+ CC=$ac_save_CC
+ 
+ fi
+-
+-case "x$ac_cv_prog_cc_stdc" in
+-  x|xno)
+-    echo "$as_me:$LINENO: result: none needed" >&5
+-echo "${ECHO_T}none needed" >&6 ;;
++# 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; } ;;
+   *)
+-    echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
+-echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
+-    CC="$CC $ac_cv_prog_cc_stdc" ;;
++    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
+ 
+-# Some people use a C++ compiler to compile C.  Since we use `exit',
+-# in C++ we need to declare it.  In case someone uses the same compiler
+-# for both compiling C and C++ we need to have the C++ compiler decide
+-# the declaration of exit, since it's the most demanding environment.
+-cat >conftest.$ac_ext <<_ACEOF
+-#ifndef __cplusplus
+-  choke me
+-#endif
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
+-  for ac_declaration in \
+-   '' \
+-   'extern "C" void std::exit (int) throw (); using std::exit;' \
+-   'extern "C" void std::exit (int); using std::exit;' \
+-   'extern "C" void exit (int) throw ();' \
+-   'extern "C" void exit (int);' \
+-   'void exit (int);'
+-do
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_declaration
+-#include <stdlib.h>
+-int
+-main ()
+-{
+-exit (42);
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
+-  :
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-continue
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_declaration
+-int
+-main ()
+-{
+-exit (42);
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
+-  break
+-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
+-rm -f conftest*
+-if test -n "$ac_declaration"; then
+-  echo '#ifdef __cplusplus' >>confdefs.h
+-  echo $ac_declaration      >>confdefs.h
+-  echo '#endif'             >>confdefs.h
+-fi
+-
+-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'
+@@ -2897,8 +3551,8 @@
+ .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
++{ 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
+@@ -2925,15 +3579,15 @@
+ fi
+ 
+ 
+-echo "$as_me:$LINENO: result: $_am_result" >&5
+-echo "${ECHO_T}$_am_result" >&6
++{ echo "$as_me:$LINENO: result: $_am_result" >&5
++echo "${ECHO_T}$_am_result" >&6; }
+ rm -f confinc confmf
+ 
+-# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
++# Check whether --enable-dependency-tracking was given.
+ if test "${enable_dependency_tracking+set}" = set; then
+-  enableval="$enable_dependency_tracking"
++  enableval=$enable_dependency_tracking;
++fi
+ 
+-fi;
+ if test "x$enable_dependency_tracking" != xno; then
+   am_depcomp="$ac_aux_dir/depcomp"
+   AMDEPBACKSLASH='\'
+@@ -2953,8 +3607,8 @@
+ 
+ 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
++{ 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
+@@ -3036,8 +3690,8 @@
+ fi
+ 
+ fi
+-echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
+-echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
++{ 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
+ 
+ 
+@@ -3060,8 +3714,8 @@
+ 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
++{ 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=
+@@ -3095,24 +3749,22 @@
+ #endif
+ 		     Syntax error
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -3121,9 +3773,10 @@
+   # Broken: fails on valid input.
+ continue
+ fi
++
+ rm -f conftest.err conftest.$ac_ext
+ 
+-  # OK, works on sane cases.  Now check whether non-existent headers
++  # OK, works on sane cases.  Now check whether nonexistent headers
+   # can be detected and how.
+   cat >conftest.$ac_ext <<_ACEOF
+ /* confdefs.h.  */
+@@ -3133,24 +3786,22 @@
+ /* end confdefs.h.  */
+ #include <ac_nonexistent.h>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -3161,6 +3812,7 @@
+ ac_preproc_ok=:
+ break
+ fi
++
+ rm -f conftest.err conftest.$ac_ext
+ 
+ done
+@@ -3178,8 +3830,8 @@
+ else
+   ac_cv_prog_CPP=$CPP
+ fi
+-echo "$as_me:$LINENO: result: $CPP" >&5
+-echo "${ECHO_T}$CPP" >&6
++{ 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
+@@ -3202,24 +3854,22 @@
+ #endif
+ 		     Syntax error
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -3228,9 +3878,10 @@
+   # Broken: fails on valid input.
+ continue
+ fi
++
+ rm -f conftest.err conftest.$ac_ext
+ 
+-  # OK, works on sane cases.  Now check whether non-existent headers
++  # OK, works on sane cases.  Now check whether nonexistent headers
+   # can be detected and how.
+   cat >conftest.$ac_ext <<_ACEOF
+ /* confdefs.h.  */
+@@ -3240,24 +3891,22 @@
+ /* end confdefs.h.  */
+ #include <ac_nonexistent.h>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -3268,6 +3917,7 @@
+ ac_preproc_ok=:
+ break
+ fi
++
+ rm -f conftest.err conftest.$ac_ext
+ 
+ done
+@@ -3290,23 +3940,170 @@
+ ac_compiler_gnu=$ac_cv_c_compiler_gnu
+ 
+ 
+-echo "$as_me:$LINENO: checking for egrep" >&5
+-echo $ECHO_N "checking for egrep... $ECHO_C" >&6
+-if test "${ac_cv_prog_egrep+set}" = set; then
++{ 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'
++  # 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
+-echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
+-echo "${ECHO_T}$ac_cv_prog_egrep" >&6
+- EGREP=$ac_cv_prog_egrep
+ 
++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
++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
+@@ -3330,27 +4127,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3358,7 +4150,8 @@
+ 
+ ac_cv_header_stdc=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++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.
+@@ -3414,6 +4207,7 @@
+ 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))
+@@ -3433,18 +4227,27 @@
+   for (i = 0; i < 256; i++)
+     if (XOR (islower (i), ISLOWER (i))
+ 	|| toupper (i) != TOUPPER (i))
+-      exit(2);
+-  exit (0);
++      return 2;
++  return 0;
+ }
+ _ACEOF
+ rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
++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'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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
+@@ -3457,12 +4260,14 @@
+ ( exit $ac_status )
+ ac_cv_header_stdc=no
+ fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
++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
++{ 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
+@@ -3485,9 +4290,9 @@
+ 		  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 eval "test \"\${$as_ac_Header+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
+ else
+   cat >conftest.$ac_ext <<_ACEOF
+@@ -3501,27 +4306,22 @@
+ #include <$ac_header>
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3529,10 +4329,12 @@
+ 
+ eval "$as_ac_Header=no"
+ fi
+-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: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
+@@ -3575,17 +4377,17 @@
+ 
+ 
+ 
+-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 or --disable-cray_xt3 was given.
++{ 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'
++  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
++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
+@@ -3594,17 +4396,17 @@
+ 
+ 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 or --disable-bgl was given.
++{ 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'
++  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
++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
+@@ -3651,8 +4453,8 @@
+ 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
++{ 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
+@@ -3665,32 +4467,34 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
++{ 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
+@@ -3703,37 +4507,51 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
+ 
+-  test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
+ 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
++  { 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
++  { 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
++{ 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 "$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, "
+@@ -3758,14 +4576,14 @@
+ 		bad_cc
+ 		;;
+ 	*)
+-		echo "$as_me:$LINENO: result: no known problems" >&5
+-echo "${ECHO_T}no known problems" >&6
++		{ 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
++{ 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
+@@ -3776,39 +4594,35 @@
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h.  */
+ $ac_includes_default
++typedef unsigned long long ac__type_new_;
+ int
+ main ()
+ {
+-if ((unsigned long long *) 0)
++if ((ac__type_new_ *) 0)
+   return 0;
+-if (sizeof (unsigned long long))
++if (sizeof (ac__type_new_))
+   return 0;
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3816,21 +4630,21 @@
+ 
+ ac_cv_type_unsigned_long_long=no
+ fi
+-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_type_unsigned_long_long" >&5
+-echo "${ECHO_T}$ac_cv_type_unsigned_long_long" >&6
++{ echo "$as_me:$LINENO: result: $ac_cv_type_unsigned_long_long" >&5
++echo "${ECHO_T}$ac_cv_type_unsigned_long_long" >&6; }
+ 
+-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.
++{ 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
+@@ -3840,10 +4654,11 @@
+ 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) (sizeof (unsigned long long))) >= 0)];
++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)];
+ test_array [0] = 0
+ 
+   ;
+@@ -3851,27 +4666,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3881,10 +4691,11 @@
+ 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) (sizeof (unsigned long long))) <= $ac_mid)];
++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)];
+ test_array [0] = 0
+ 
+   ;
+@@ -3892,27 +4703,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3925,7 +4731,8 @@
+ 		    fi
+ 		    ac_mid=`expr 2 '*' $ac_mid + 1`
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+   done
+ else
+   echo "$as_me: failed program was:" >&5
+@@ -3938,10 +4745,11 @@
+ 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) (sizeof (unsigned long long))) < 0)];
++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)];
+ test_array [0] = 0
+ 
+   ;
+@@ -3949,27 +4757,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3979,10 +4782,11 @@
+ 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) (sizeof (unsigned long long))) >= $ac_mid)];
++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)];
+ test_array [0] = 0
+ 
+   ;
+@@ -3990,27 +4794,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -4023,7 +4822,8 @@
+ 		       fi
+ 		       ac_mid=`expr 2 '*' $ac_mid`
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+   done
+ else
+   echo "$as_me: failed program was:" >&5
+@@ -4031,9 +4831,11 @@
+ 
+ ac_lo= ac_hi=
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++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`
+@@ -4044,10 +4846,11 @@
+ 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) (sizeof (unsigned long long))) <= $ac_mid)];
++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)];
+ test_array [0] = 0
+ 
+   ;
+@@ -4055,27 +4858,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -4083,23 +4881,21 @@
+ 
+ ac_lo=`expr '(' $ac_mid ')' + 1`
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+ done
+ case $ac_lo in
+ ?*) ac_cv_sizeof_unsigned_long_long=$ac_lo;;
+-'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long long), 77
++'') 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), 77
++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
+-  if test "$cross_compiling" = yes; then
+-  { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
+-See \`config.log' for more details." >&5
+-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
+   cat >conftest.$ac_ext <<_ACEOF
+ /* confdefs.h.  */
+@@ -4108,8 +4904,9 @@
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h.  */
+ $ac_includes_default
+-long longval () { return (long) (sizeof (unsigned long long)); }
+-unsigned long ulongval () { return (long) (sizeof (unsigned long long)); }
++   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
+@@ -4118,35 +4915,44 @@
+ 
+   FILE *f = fopen ("conftest.val", "w");
+   if (! f)
+-    exit (1);
+-  if (((long) (sizeof (unsigned long long))) < 0)
++    return 1;
++  if (((long int) (sizeof (ac__type_sizeof_))) < 0)
+     {
+-      long i = longval ();
+-      if (i != ((long) (sizeof (unsigned long long))))
+-	exit (1);
++      long int i = longval ();
++      if (i != ((long int) (sizeof (ac__type_sizeof_))))
++	return 1;
+       fprintf (f, "%ld\n", i);
+     }
+   else
+     {
+-      unsigned long i = ulongval ();
+-      if (i != ((long) (sizeof (unsigned long long))))
+-	exit (1);
++      unsigned long int i = ulongval ();
++      if (i != ((long int) (sizeof (ac__type_sizeof_))))
++	return 1;
+       fprintf (f, "%lu\n", i);
+     }
+-  exit (ferror (f) || fclose (f) != 0);
++  return ferror (f) || fclose (f) != 0;
+ 
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
++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'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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
+@@ -4157,22 +4963,25 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ ( exit $ac_status )
+-{ { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long long), 77
++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), 77
++echo "$as_me: error: cannot compute sizeof (unsigned long long)
+ See \`config.log' for more details." >&2;}
+-   { (exit 1); exit 1; }; }
++   { (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
++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+ fi
+ rm -f conftest.val
+-else
+-  ac_cv_sizeof_unsigned_long_long=0
+ fi
+-fi
+-echo "$as_me:$LINENO: result: $ac_cv_sizeof_unsigned_long_long" >&5
+-echo "${ECHO_T}$ac_cv_sizeof_unsigned_long_long" >&6
++{ 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
+@@ -4207,17 +5016,17 @@
+ 
+ 
+ 
+-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 or --disable-uoss was given.
++{ 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'
++  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
++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
+@@ -4239,17 +5048,17 @@
+ 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 or --disable-posix-osd was given.
++{ 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'
++  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
++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
+@@ -4270,12 +5079,11 @@
+ 
+ 
+ 
+-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 or --disable-doc was given.
++{ 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"
+-
++  enableval=$enable_doc;
+ 		if test x$enable_doc = xyes ; then
+ 		    ENABLE_DOC=1
+ 		else
+@@ -4287,93 +5095,94 @@
+ 		ENABLE_DOC=0
+ 		enable_doc='no'
+ 
+-fi;
+-echo "$as_me:$LINENO: result: $enable_doc" >&5
+-echo "${ECHO_T}$enable_doc" >&6
++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 or --disable-utils was given.
++{ 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"
+-
++  enableval=$enable_utils;
+ else
+   enable_utils='yes'
+-fi;
+-echo "$as_me:$LINENO: result: $enable_utils" >&5
+-echo "${ECHO_T}$enable_utils" >&6
++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
++        { 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
++                { 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: 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 or --disable-tests was given.
++{ 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"
+-
++  enableval=$enable_tests;
+ else
+ 
+ 		enable_tests='yes'
+ 
+-fi;
+-echo "$as_me:$LINENO: result: $enable_tests" >&5
+-echo "${ECHO_T}$enable_tests" >&6
++fi
+ 
+-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 or --disable-server was given.
+-if test "${enable_server+set}" = set; then
+-  enableval="$enable_server"
++{ 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
++fi
+ 
+-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 or --disable-client was given.
+-if test "${enable_client+set}" = set; then
+-  enableval="$enable_client"
++{ 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
++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 or --disable-libcfs_cdebug was given.
++{ 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"
+-
++  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
++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
+@@ -4388,17 +5197,17 @@
+ 
+ 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 or --disable-libcfs_trace was given.
++{ 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"
+-
++  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
++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
+@@ -4413,17 +5222,17 @@
+ 
+ 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 or --disable-libcfs_assert was given.
++{ 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"
+-
++  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
++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
+@@ -4433,27 +5242,27 @@
+ fi
+ 
+ #check global
+-# Check whether --enable-quota or --disable-quota was given.
++# Check whether --enable-quota was given.
+ if test "${enable_quota+set}" = set; then
+-  enableval="$enable_quota"
+-
++  enableval=$enable_quota;
+ else
+   enable_quota='yes'
+-fi;
++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
++  { 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
++{ 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
++{ 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
+@@ -4464,27 +5273,22 @@
+ #include <sys/quota.h>
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -4492,13 +5296,14 @@
+ 
+ ac_header_compiler=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
++
++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
++{ 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
+@@ -4507,24 +5312,22 @@
+ /* end confdefs.h.  */
+ #include <sys/quota.h>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -4532,9 +5335,10 @@
+ 
+   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
++{ 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
+@@ -4558,25 +5362,23 @@
+ 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
++    ( cat <<\_ASBOX
+ ## ------------------------------------------- ##
+ ## Report this to https://bugzilla.lustre.org/ ##
+ ## ------------------------------------------- ##
+ _ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
++     ) | 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
++{ 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
++{ 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
+@@ -4594,12 +5396,11 @@
+ 
+ 
+ 
+-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 or --disable-modules was given.
++{ 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"
+-
++  enableval=$enable_modules;
+ else
+ 
+ 		case $target_os in
+@@ -4616,32 +5417,33 @@
+ esac
+ 
+ 
+-fi;
+-echo "$as_me:$LINENO: result: $enable_modules ($target_os)" >&5
+-echo "${ECHO_T}$enable_modules ($target_os)" >&6
++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
++			{ echo "$as_me:$LINENO: checking for Linux sources" >&5
++echo $ECHO_N "checking for Linux sources... $ECHO_C" >&6; }
+ 
+-# Check whether --with-linux or --without-linux was given.
++# Check whether --with-linux was given.
+ if test "${with_linux+set}" = set; then
+-  withval="$with_linux"
+-  LINUX=$with_linux
++  withval=$with_linux; LINUX=$with_linux
+ else
+   LINUX=/usr/src/linux
+-fi;
+-echo "$as_me:$LINENO: result: $LINUX" >&5
+-echo "${ECHO_T}$LINUX" >&6
++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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -4650,8 +5452,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -4662,33 +5465,33 @@
+ 
+ 
+ # -------- 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
++{ 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 or --without-linux-obj was given.
++# Check whether --with-linux-obj was given.
+ if test "${with_linux_obj+set}" = set; then
+-  withval="$with_linux_obj"
+-  LINUX_OBJ=$with_linux_obj
++  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
++fi
++
++{ echo "$as_me:$LINENO: result: $LINUX_OBJ" >&5
++echo "${ECHO_T}$LINUX_OBJ" >&6; }
+ 
+ 
+ # -------- check for .config --------
+ 
+-# Check whether --with-linux-config or --without-linux-config was given.
++# Check whether --with-linux-config was given.
+ if test "${with_linux_config+set}" = set; then
+-  withval="$with_linux_config"
+-  LINUX_CONFIG=$with_linux_config
++  withval=$with_linux_config; LINUX_CONFIG=$with_linux_config
+ else
+   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
+@@ -4698,13 +5501,13 @@
+   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
++{ 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
++  { 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
+@@ -4714,8 +5517,8 @@
+   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
++{ 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
+@@ -4724,17 +5527,17 @@
+ 
+ 
+ 
+-# Check whether --with-kernel-source-header or --without-kernel-source-header was given.
++# 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;
++  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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -4743,8 +5546,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -4759,9 +5563,9 @@
+ # 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -4770,8 +5574,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -4785,9 +5590,9 @@
+    { (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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -4796,8 +5601,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -4824,9 +5630,9 @@
+ 	# 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -4835,8 +5641,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -4859,30 +5666,30 @@
+ 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
++{ 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
++		{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+     	else
+-		echo "$as_me:$LINENO: result: no (asm doesn't point at asm-um)" >&5
+-echo "${ECHO_T}no (asm doesn't point at asm-um)" >&6
++		{ echo "$as_me:$LINENO: result: no (asm doesn't point at asm-um)" >&5
++echo "${ECHO_T}no (asm doesn't point at asm-um)" >&6; }
+ 	fi
+ else
+-	echo "$as_me:$LINENO: result: no (asm-um missing)" >&5
+-echo "${ECHO_T}no (asm-um missing)" >&6
++	{ 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -4891,8 +5698,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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"
+@@ -4905,16 +5713,16 @@
+ 
+ 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
++{ 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
++	{ 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.  */
+@@ -4945,8 +5753,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-			echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++			{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 
+ else
+   echo "$as_me: failed program was:" >&5
+@@ -4984,8 +5792,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-					echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++					{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ else
+   echo "$as_me: failed program was:" >&5
+@@ -5011,8 +5819,8 @@
+ 
+ 
+ # --- 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
++{ 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
+@@ -5042,16 +5850,16 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ 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: 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
+@@ -5065,8 +5873,8 @@
+ 
+ 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
++{ 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
+@@ -5118,8 +5926,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: unknown" >&5
+-echo "${ECHO_T}unknown" >&6
++	{ 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; }; }
+@@ -5128,14 +5936,14 @@
+ 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: 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
++{ echo "$as_me:$LINENO: result: $LINUXRELEASE" >&5
++echo "${ECHO_T}$LINUXRELEASE" >&6; }
+ 
+ 
+ moduledir='/lib/modules/'$LINUXRELEASE/kernel
+@@ -5148,16 +5956,16 @@
+ 
+ 
+ # ------------ RELEASE --------------------------------
+-echo "$as_me:$LINENO: checking for Lustre release" >&5
+-echo $ECHO_N "checking for Lustre release... $ECHO_C" >&6
++{ 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
++{ 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
++{ 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
+@@ -5194,22 +6002,22 @@
+   (exit $ac_status); }; }; then
+ 
+ 		RHEL_KENEL="yes"
+-		echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++		{ 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: 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 that SuSe kernel" >&5
+-echo $ECHO_N "checking that SuSe kernel... $ECHO_C" >&6
++{ echo "$as_me:$LINENO: checking that SuSe kernel" >&5
++echo $ECHO_N "checking that SuSe kernel... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -5246,30 +6054,30 @@
+   (exit $ac_status); }; }; then
+ 
+ 		SUSE_KERNEL="yes"
+-		echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++		{ 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: 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
++{ 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_OBJ $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
++  { 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;}
+@@ -5277,15 +6085,15 @@
+ 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
++{ 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: result: $SYMVERFILE" >&5
++echo "${ECHO_T}$SYMVERFILE" >&6; }
+ 
+ 
+ 
+@@ -5295,8 +6103,8 @@
+ #	CC="$CC -m64"
+ #fi
+ 
+-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
++{ 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
+@@ -5332,8 +6140,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ else
+@@ -5341,8 +6149,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ 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;}
+@@ -5353,8 +6161,8 @@
+ 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
++{ 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
+@@ -5390,8 +6198,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ else
+@@ -5399,16 +6207,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ 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_PREEMPT" >&5
+-echo $ECHO_N "checking if Linux was built with CONFIG_PREEMPT... $ECHO_C" >&6
++{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_PREEMPT" >&5
++echo $ECHO_N "checking if Linux was built with CONFIG_PREEMPT... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -5444,8 +6252,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 	{ { echo "$as_me:$LINENO: error: Lustre does not support kernels with preempt enabled." >&5
+ echo "$as_me: error: Lustre does not support kernels with preempt enabled." >&2;}
+@@ -5457,16 +6265,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ 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
++{ 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
+@@ -5502,8 +6310,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ else
+@@ -5511,8 +6319,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ 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
+@@ -5525,8 +6333,8 @@
+ 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
++{ 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
+@@ -5562,8 +6370,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ else
+@@ -5571,8 +6379,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 
+ 	{ echo "$as_me:$LINENO: WARNING: " >&5
+ echo "$as_me: WARNING: " >&2;}
+@@ -5591,8 +6399,8 @@
+ 
+ 
+ 
+-echo "$as_me:$LINENO: checking if kernel defines cpu_online()" >&5
+-echo $ECHO_N "checking if kernel defines cpu_online()... $ECHO_C" >&6
++{ 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
+@@ -5626,8 +6434,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_CPU_ONLINE 1
+@@ -5639,14 +6447,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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
++{ 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
+@@ -5680,8 +6488,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_GFP_T 1
+@@ -5693,14 +6501,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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
++{ 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
+@@ -5734,8 +6542,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_CPUMASK_T 1
+@@ -5747,25 +6555,25 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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 or --disable-affinity was given.
++# Check whether --enable-affinity was given.
+ if test "${enable_affinity+set}" = set; then
+-  enableval="$enable_affinity"
+-
++  enableval=$enable_affinity;
+ else
+   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
+-	echo "$as_me:$LINENO: result: no (by request)" >&5
+-echo "${ECHO_T}no (by request)" >&6
++	{ echo "$as_me:$LINENO: result: no (by request)" >&5
++echo "${ECHO_T}no (by request)" >&6; }
+ else
+ 	cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+@@ -5811,33 +6619,33 @@
+ #define CPU_AFFINITY 1
+ _ACEOF
+ 
+-		echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++		{ 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
++		{ 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 or --disable-backoff was given.
++{ 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"
+-
++  enableval=$enable_backoff;
+ else
+   enable_backoff='yes'
+-fi;
++fi
++
+ if test x$enable_backoff = xno ; then
+-       echo "$as_me:$LINENO: result: no (by request)" >&5
+-echo "${ECHO_T}no (by request)" >&6
++       { 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
+@@ -5846,8 +6654,8 @@
+ #define SOCKNAL_BACKOFF 1
+ _ACEOF
+ 
+-               echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++               { 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
+@@ -5856,69 +6664,69 @@
+ 
+                fi
+        else
+-               echo "$as_me:$LINENO: result: no (no kernel support)" >&5
+-echo "${ECHO_T}no (no kernel support)" >&6
++               { 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 or --disable-panic_dumplog was given.
++{ 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"
+-
++  enableval=$enable_panic_dumplog;
+ else
+   enable_panic_dumplog='no'
+-fi;
++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
++       { 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
++       { 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
++{ echo "$as_me:$LINENO: checking for QsNet sources" >&5
++echo $ECHO_N "checking for QsNet sources... $ECHO_C" >&6; }
+ 
+-# Check whether --with-qsnet or --without-qsnet was given.
++# Check whether --with-qsnet was given.
+ if test "${with_qsnet+set}" = set; then
+-  withval="$with_qsnet"
+-  QSNET=$with_qsnet
++  withval=$with_qsnet; QSNET=$with_qsnet
+ else
+   QSNET=$LINUX
+-fi;
+-echo "$as_me:$LINENO: result: $QSNET" >&5
+-echo "${ECHO_T}$QSNET" >&6
++fi
+ 
+-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
++{ 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
++	{ 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
++	{ 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
++		{ 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: 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
++		{ 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
+@@ -5954,8 +6762,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ else
+@@ -5963,11 +6771,11 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ 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
++			{ 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
+@@ -6003,8 +6811,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ else
+@@ -6012,8 +6820,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ 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;}
+@@ -6031,8 +6839,8 @@
+ 
+ 	fi
+ else
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 	QSWLND=""
+ 	QSWCPPFLAGS=""
+ fi
+@@ -6040,13 +6848,12 @@
+ 
+ 
+ 
+-echo "$as_me:$LINENO: checking whether to enable GM support" >&5
+-echo $ECHO_N "checking whether to enable GM support... $ECHO_C" >&6
++{ 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 or --without-gm was given.
++# Check whether --with-gm was given.
+ if test "${with_gm+set}" = set; then
+-  withval="$with_gm"
+-
++  withval=$with_gm;
+ 	        case $with_gm in
+                 no)    ENABLE_GM=0
+ 	               ;;
+@@ -6059,25 +6866,26 @@
+ 
+                 ENABLE_GM=0
+ 
+-fi;
++fi
+ 
+-# Check whether --with-gm-install or --without-gm-install was given.
+-if test "${with_gm_install+set}" = set; then
+-  withval="$with_gm_install"
+ 
++# 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;
++fi
++
+ if test $ENABLE_GM -eq 0; then
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++        { 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"
+@@ -6094,8 +6902,8 @@
+ 	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
++        { 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
+@@ -6136,16 +6944,16 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-		echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++		{ 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: 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; }; }
+@@ -6153,8 +6961,8 @@
+ 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
++	{ 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
+@@ -6199,15 +7007,15 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-		echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++		{ 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.
++		{ 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
+@@ -6216,7 +7024,7 @@
+ 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
++...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; }; }
+@@ -6231,15 +7039,14 @@
+ 
+ 
+ 
+-echo "$as_me:$LINENO: checking whether to enable OpenIB support" >&5
+-echo $ECHO_N "checking whether to enable OpenIB support... $ECHO_C" >&6
++{ 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 or --without-openib was given.
++# Check whether --with-openib was given.
+ if test "${with_openib+set}" = set; then
+-  withval="$with_openib"
+-
++  withval=$with_openib;
+ 		case $with_openib in
+ 		yes)    ENABLEOPENIB=2
+ 			;;
+@@ -6254,15 +7061,16 @@
+ 
+ 		ENABLEOPENIB=1
+ 
+-fi;
++fi
++
+ if test $ENABLEOPENIB -eq 0; then
+-	echo "$as_me:$LINENO: result: disabled" >&5
+-echo "${ECHO_T}disabled" >&6
++	{ 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
++	{ 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
+@@ -6279,8 +7087,8 @@
+ 	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: 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; }; };;
+@@ -6330,8 +7138,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-		echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++		{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 		OPENIBLND="openiblnd"
+ 
+ else
+@@ -6339,8 +7147,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-		echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++		{ 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
+@@ -6364,26 +7172,25 @@
+ 
+ 
+ 
+-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
++{ 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 or --without-cib was given.
++# Check whether --with-cib was given.
+ if test "${with_cib+set}" = set; then
+-  withval="$with_cib"
+-
++  withval=$with_cib;
+ 		case $with_cib in
+-		no)     echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6;;
++		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
++	                 	{ 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: 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; }; }
+@@ -6392,10 +7199,11 @@
+ 
+ else
+ 
+-		echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++		{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
++
++fi
+ 
+-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"
+@@ -6462,24 +7270,23 @@
+ 
+ 
+ 
+-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
++{ 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 or --without-vib was given.
++# Check whether --with-vib was given.
+ if test "${with_vib+set}" = set; then
+-  withval="$with_vib"
+-
++  withval=$with_vib;
+ 		case $with_vib in
+-		no)     echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6;;
++		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
++	                        { 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: 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; }; }
+@@ -6488,10 +7295,11 @@
+ 
+ else
+ 
+-		echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++		{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
++
++fi
+ 
+-fi;
+ if test -z "$VIBPATH"; then
+ 	VIBLND=""
+ else
+@@ -6573,8 +7381,8 @@
+ 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
++	{ 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
+@@ -6622,8 +7430,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 	        VIBCPPFLAGS="$VIBCPPFLAGS -DIBNAL_VOIDSTAR_SGADDR=1"
+ 
+ else
+@@ -6631,8 +7439,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	        { 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
+@@ -6642,15 +7450,14 @@
+ 
+ 
+ 
+-echo "$as_me:$LINENO: checking whether to enable Infinicon support" >&5
+-echo $ECHO_N "checking whether to enable Infinicon support... $ECHO_C" >&6
++{ 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 or --without-iib was given.
++# Check whether --with-iib was given.
+ if test "${with_iib+set}" = set; then
+-  withval="$with_iib"
+-
++  withval=$with_iib;
+ 		case $with_iib in
+ 		yes)    ENABLEIIB=2
+ 			;;
+@@ -6665,13 +7472,14 @@
+ 
+ 		ENABLEIIB=1
+ 
+-fi;
++fi
++
+ if test $ENABLEIIB -eq 0; then
+-	echo "$as_me:$LINENO: result: disabled" >&5
+-echo "${ECHO_T}disabled" >&6
++	{ 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
++	{ 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
+@@ -6731,8 +7539,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-		echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++		{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 		IIBLND="iiblnd"
+ 
+ else
+@@ -6740,8 +7548,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-		echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++		{ 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
+@@ -6765,14 +7573,13 @@
+ 
+ 
+ 
+-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
++{ 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 or --without-o2ib was given.
++# Check whether --with-o2ib was given.
+ if test "${with_o2ib+set}" = set; then
+-  withval="$with_o2ib"
+-
++  withval=$with_o2ib;
+ 		case $with_o2ib in
+ 		yes)    O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
+ 			ENABLEO2IB=2
+@@ -6789,10 +7596,11 @@
+ 		O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
+ 		ENABLEO2IB=1
+ 
+-fi;
++fi
++
+ if test $ENABLEO2IB -eq 0; then
+-	echo "$as_me:$LINENO: result: disabled" >&5
+-echo "${ECHO_T}disabled" >&6
++	{ echo "$as_me:$LINENO: result: disabled" >&5
++echo "${ECHO_T}disabled" >&6; }
+ else
+ 	o2ib_found=false
+ 
+@@ -6807,8 +7615,8 @@
+ 	done
+ 
+ 	if ! $o2ib_found; then
+-		echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++		{ 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
+@@ -6875,8 +7683,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-		        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++		        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 		        O2IBLND="o2iblnd"
+ 
+ else
+@@ -6884,8 +7692,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-		        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++		        { 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
+@@ -6965,8 +7773,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-			echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++			{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_OFED_IB_DMA_MAP 1
+@@ -6978,8 +7786,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-			echo "$as_me:$LINENO: result: NO" >&5
+-echo "${ECHO_T}NO" >&6
++			{ 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
+@@ -7023,8 +7831,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-			echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++			{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_OFED_IB_COMP_VECTOR 1
+@@ -7036,8 +7844,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-			echo "$as_me:$LINENO: result: NO" >&5
+-echo "${ECHO_T}NO" >&6
++			{ 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
+@@ -7051,8 +7859,8 @@
+ 
+ 
+ #### 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
++{ 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"
+@@ -7096,8 +7904,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 	RALND="ralnd"
+ 
+ else
+@@ -7105,8 +7913,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 	RALND=""
+ 	RACPPFLAGS=""
+ 
+@@ -7118,13 +7926,12 @@
+ 
+ 
+ if test -z "$ENABLEPORTALS"; then
+-	echo "$as_me:$LINENO: checking for portals" >&5
+-echo $ECHO_N "checking for portals... $ECHO_C" >&6
++	{ echo "$as_me:$LINENO: checking for portals" >&5
++echo $ECHO_N "checking for portals... $ECHO_C" >&6; }
+ 
+-# Check whether --with-portals or --without-portals was given.
++# Check whether --with-portals was given.
+ if test "${with_portals+set}" = set; then
+-  withval="$with_portals"
+-
++  withval=$with_portals;
+ 		case $with_portals in
+ 			no)     ENABLEPORTALS=0
+ 				;;
+@@ -7137,49 +7944,49 @@
+ 
+ 		ENABLEPORTALS=0
+ 
+-fi;
++fi
++
+ PTLLNDCPPFLAGS=""
+ if test $ENABLEPORTALS -eq 0; then
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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: 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
++        { 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
++{ 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
++	{ 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
++	{ 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
++{ 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 or --without-mx was given.
++# Check whether --with-mx was given.
+ if test "${with_mx+set}" = set; then
+-  withval="$with_mx"
+-
++  withval=$with_mx;
+                case $with_mx in
+                yes)    ENABLEMX=2
+                        ;;
+@@ -7194,15 +8001,16 @@
+ 
+                ENABLEMX=1
+ 
+-fi;
++fi
++
+ if test $ENABLEMX -eq 0; then
+-       echo "$as_me:$LINENO: result: disabled" >&5
+-echo "${ECHO_T}disabled" >&6
++       { 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
++       { 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
+@@ -7265,8 +8073,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-               echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++               { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+                MXLND="mxlnd"
+ 
+ else
+@@ -7274,8 +8082,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-               echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++               { 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
+@@ -7300,8 +8108,8 @@
+ 
+ 
+ 
+-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
++{ 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
+@@ -7336,8 +8144,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_PAGE_LIST 1
+@@ -7349,14 +8157,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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
++{ 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
+@@ -7396,22 +8204,22 @@
+ #define CONFIG_RH_2_4_20 1
+ _ACEOF
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ 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: 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 is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol show_task is exported... $ECHO_C" >&6
++{ echo "$as_me:$LINENO: checking if Linux was built with symbol show_task is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol show_task is exported... $ECHO_C" >&6; }
+ grep -q -E '[[:space:]]show_task[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
+ rc=$?
+ if test $rc -ne 0; then
+@@ -7425,13 +8233,13 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -7441,8 +8249,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -7453,8 +8261,8 @@
+ fi
+ 
+ 
+-echo "$as_me:$LINENO: checking __u64 is long long type" >&5
+-echo $ECHO_N "checking __u64 is long long type... $ECHO_C" >&6
++{ echo "$as_me:$LINENO: checking __u64 is long long type" >&5
++echo $ECHO_N "checking __u64 is long long type... $ECHO_C" >&6; }
+ tmp_flags="$CFLAGS"
+ CFLAGS="$CFLAGS -Werror"
+ cat >conftest.$ac_ext <<_ACEOF
+@@ -7470,30 +8278,25 @@
+ 
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_U64_LONG_LONG 1
+@@ -7505,15 +8308,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+ CFLAGS="$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
++{ 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
+@@ -7529,30 +8333,25 @@
+ 
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_SSIZE_T_LONG 1
+@@ -7564,15 +8363,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++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
++{ 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
+@@ -7588,30 +8388,25 @@
+ 
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_SIZE_T_LONG 1
+@@ -7623,15 +8418,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++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
++{ 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
+@@ -7666,8 +8462,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_LE_TYPES 1
+@@ -7679,15 +8475,15 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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 is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol tasklist_lock is exported... $ECHO_C" >&6
++{ echo "$as_me:$LINENO: checking if Linux was built with symbol tasklist_lock is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol tasklist_lock is exported... $ECHO_C" >&6; }
+ grep -q -E '[[:space:]]tasklist_lock[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
+ rc=$?
+ if test $rc -ne 0; then
+@@ -7701,13 +8497,13 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -7717,8 +8513,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -7730,8 +8526,8 @@
+ 
+ 
+ # 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
++{ 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
+@@ -7765,8 +8561,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_KMEM_CACHE_DESTROY_INT 1
+@@ -7778,14 +8574,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++{ 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
+@@ -7820,8 +8616,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_ATOMIC_PANIC_NOTIFIER 1
+@@ -7833,15 +8629,15 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++{ 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
+@@ -7877,8 +8673,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_3ARGS_INIT_WORK 1
+@@ -7890,15 +8686,15 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++{ 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
+@@ -7932,8 +8728,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_2ARGS_REGISTER_SYSCTL 1
+@@ -7945,14 +8741,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++{ 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
+@@ -7991,8 +8787,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_KMEM_CACHE 1
+@@ -8004,16 +8800,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++{ 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
+@@ -8047,8 +8843,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_KMEM_CACHE_CREATE_DTOR 1
+@@ -8060,15 +8856,15 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++{ 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
+@@ -8104,8 +8900,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_SYSCTL_UNNUMBERED 1
+@@ -8117,14 +8913,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: NO" >&5
+-echo "${ECHO_T}NO" >&6
++        { 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
++{ 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
+@@ -8158,8 +8954,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_SCATTERLIST_SETPAGE 1
+@@ -8171,15 +8967,15 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: NO" >&5
+-echo "${ECHO_T}NO" >&6
++        { 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
++{ 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
+@@ -8215,8 +9011,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_SEM_COUNT_ATOMIC 1
+@@ -8228,17 +9024,72 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: NO" >&5
+-echo "${ECHO_T}NO" >&6
++        { 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/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
+ 
+ 
+ 			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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -8247,8 +9098,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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"
+@@ -8283,8 +9135,8 @@
+ 	fi
+ 
+ 	# --- Check that ext3 and ext3 xattr are enabled in the kernel
+-	echo "$as_me:$LINENO: checking if Linux was built with CONFIG_EXT3_FS" >&5
+-echo $ECHO_N "checking if Linux was built with CONFIG_EXT3_FS... $ECHO_C" >&6
++	{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_EXT3_FS" >&5
++echo $ECHO_N "checking if Linux was built with CONFIG_EXT3_FS... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -8320,8 +9172,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ else
+@@ -8329,11 +9181,11 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 
+-	echo "$as_me:$LINENO: checking if Linux was built with CONFIG_EXT3_FS_MODULE" >&5
+-echo $ECHO_N "checking if Linux was built with CONFIG_EXT3_FS_MODULE... $ECHO_C" >&6
++	{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_EXT3_FS_MODULE" >&5
++echo $ECHO_N "checking if Linux was built with CONFIG_EXT3_FS_MODULE... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -8369,8 +9221,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ else
+@@ -8378,8 +9230,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 
+ 		{ { echo "$as_me:$LINENO: error: Lustre requires that ext3 is enabled in the kernel" >&5
+ echo "$as_me: error: Lustre requires that ext3 is enabled in the kernel" >&2;}
+@@ -8394,8 +9246,8 @@
+ 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_EXT3_FS_XATTR" >&5
+-echo $ECHO_N "checking if Linux was built with CONFIG_EXT3_FS_XATTR... $ECHO_C" >&6
++{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_EXT3_FS_XATTR" >&5
++echo $ECHO_N "checking if Linux was built with CONFIG_EXT3_FS_XATTR... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -8431,8 +9283,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ else
+@@ -8440,8 +9292,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 
+ 		{ echo "$as_me:$LINENO: WARNING: Lustre requires that extended attributes for ext3 are enabled in the kernel" >&5
+ echo "$as_me: WARNING: Lustre requires that extended attributes for ext3 are enabled in the kernel" >&2;}
+@@ -8479,24 +9331,24 @@
+ 
+ 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 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; }
+ 
+ 
+           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 or --disable-pinger was given.
++          { 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"
+-
++  enableval=$enable_pinger;
+ else
+   enable_pinger='yes'
+-fi;
+-echo "$as_me:$LINENO: result: $enable_pinger" >&5
+-echo "${ECHO_T}$enable_pinger" >&6
++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
+@@ -8505,17 +9357,17 @@
+ 
+ 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 or --disable-checksum was given.
++          { 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"
+-
++  enableval=$enable_checksum;
+ else
+   enable_checksum='yes'
+-fi;
+-echo "$as_me:$LINENO: result: $enable_checksum" >&5
+-echo "${ECHO_T}$enable_checksum" >&6
++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
+@@ -8524,17 +9376,17 @@
+ 
+ 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 or --disable-liblustre-recovery was given.
++          { 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"
+-
++  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
++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
+@@ -8543,17 +9395,17 @@
+ 
+ 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 or --disable-health-write was given.
++          { 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"
+-
++  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
++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
+@@ -8562,17 +9414,17 @@
+ 
+ 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 or --disable-lru_resize was given.
++          { 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"
+-
++  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
++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
+@@ -8581,17 +9433,17 @@
+ 
+ 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 or --disable-adaptive_timeouts was given.
++          { 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"
+-
++  enableval=$enable_adaptive_timeouts;
+ else
+   enable_adaptive_timeouts='no'
+-fi;
+-echo "$as_me:$LINENO: result: $enable_adaptive_timeouts" >&5
+-echo "${ECHO_T}$enable_adaptive_timeouts" >&6
++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
+@@ -8601,8 +9453,8 @@
+ 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
++    { 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
+@@ -8638,8 +9490,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 	enable_quota_module='yes'
+ 
+@@ -8654,8 +9506,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ 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
+@@ -8668,8 +9520,8 @@
+ fi
+ 
+ 
+-          echo "$as_me:$LINENO: checking task p_pptr found" >&5
+-echo $ECHO_N "checking task p_pptr found... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking task p_pptr found" >&5
++echo $ECHO_N "checking task p_pptr found... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -8705,8 +9557,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_TASK_PPTR 1
+@@ -8718,15 +9570,15 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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
+ 
+           # RHEL4 patches
+-          echo "$as_me:$LINENO: checking if Linux was built with symbol truncate_complete_page is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol truncate_complete_page is exported... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if Linux was built with symbol truncate_complete_page is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol truncate_complete_page is exported... $ECHO_C" >&6; }
+ grep -q -E '[[:space:]]truncate_complete_page[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
+ rc=$?
+ if test $rc -ne 0; then
+@@ -8740,13 +9592,13 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -8756,8 +9608,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -8768,8 +9620,8 @@
+ fi
+ 
+ 
+-          echo "$as_me:$LINENO: checking if Linux was built with symbol d_rehash_cond is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol d_rehash_cond is exported... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if Linux was built with symbol d_rehash_cond is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol d_rehash_cond is exported... $ECHO_C" >&6; }
+ grep -q -E '[[:space:]]d_rehash_cond[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
+ rc=$?
+ if test $rc -ne 0; then
+@@ -8783,13 +9635,13 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -8799,8 +9651,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -8811,8 +9663,8 @@
+ fi
+ 
+ 
+-          echo "$as_me:$LINENO: checking if Linux was built with symbol __d_rehash is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol __d_rehash is exported... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if Linux was built with symbol __d_rehash is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol __d_rehash is exported... $ECHO_C" >&6; }
+ grep -q -E '[[:space:]]__d_rehash[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
+ rc=$?
+ if test $rc -ne 0; then
+@@ -8826,13 +9678,13 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -8842,8 +9694,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -8854,8 +9706,8 @@
+ fi
+ 
+ 
+-          echo "$as_me:$LINENO: checking if Linux was built with symbol d_move_locked is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol d_move_locked is exported... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if Linux was built with symbol d_move_locked is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol d_move_locked is exported... $ECHO_C" >&6; }
+ grep -q -E '[[:space:]]d_move_locked[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
+ rc=$?
+ if test $rc -ne 0; then
+@@ -8869,13 +9721,13 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -8885,8 +9737,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -8897,8 +9749,8 @@
+ fi
+ 
+ 
+-          echo "$as_me:$LINENO: checking if Linux was built with symbol __d_move is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol __d_move is exported... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if Linux was built with symbol __d_move is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol __d_move is exported... $ECHO_C" >&6; }
+ grep -q -E '[[:space:]]__d_move[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
+ rc=$?
+ if test $rc -ne 0; then
+@@ -8912,13 +9764,13 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -8928,8 +9780,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -8940,8 +9792,8 @@
+ fi
+ 
+ 
+-          echo "$as_me:$LINENO: checking if Linux was built with symbol node_to_cpumask is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol node_to_cpumask is exported... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if Linux was built with symbol node_to_cpumask is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol node_to_cpumask is exported... $ECHO_C" >&6; }
+ grep -q -E '[[:space:]]node_to_cpumask[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
+ rc=$?
+ if test $rc -ne 0; then
+@@ -8955,12 +9807,12 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_NODE_TO_CPUMASK 1
+@@ -8968,8 +9820,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_NODE_TO_CPUMASK 1
+@@ -8977,8 +9829,8 @@
+ 
+ fi
+  # x86_64
+-          echo "$as_me:$LINENO: checking if Linux was built with symbol node_to_cpu_mask is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol node_to_cpu_mask is exported... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if Linux was built with symbol node_to_cpu_mask is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol node_to_cpu_mask is 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
+@@ -8992,12 +9844,12 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_NODE_TO_CPUMASK 1
+@@ -9005,8 +9857,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_NODE_TO_CPUMASK 1
+@@ -9014,8 +9866,8 @@
+ 
+ fi
+  # ia64
+-          echo "$as_me:$LINENO: checking if Linux was built with symbol node_2_cpu_mask is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol node_2_cpu_mask is exported... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if Linux was built with symbol node_2_cpu_mask is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol node_2_cpu_mask is 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
+@@ -9029,12 +9881,12 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_NODE_TO_CPUMASK 1
+@@ -9042,8 +9894,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_NODE_TO_CPUMASK 1
+@@ -9053,8 +9905,8 @@
+  # i386
+ 
+ 
+-          echo "$as_me:$LINENO: checking if struct kiobuf has a dovary field" >&5
+-echo $ECHO_N "checking if struct kiobuf has a dovary field... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if struct kiobuf has a dovary field" >&5
++echo $ECHO_N "checking if struct kiobuf has a dovary field... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -9089,8 +9941,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_KIOBUF_DOVARY 1
+@@ -9102,14 +9954,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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 offers cond_resched" >&5
+-echo $ECHO_N "checking if kernel offers cond_resched... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if kernel offers cond_resched" >&5
++echo $ECHO_N "checking if kernel offers cond_resched... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -9143,8 +9995,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_COND_RESCHED 1
+@@ -9156,14 +10008,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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 zap_page_range with vma parameter" >&5
+-echo $ECHO_N "checking if zap_page_range with vma parameter... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if zap_page_range with vma parameter" >&5
++echo $ECHO_N "checking if zap_page_range with vma parameter... $ECHO_C" >&6; }
+ ZAP_PAGE_RANGE_VMA="`grep -c 'zap_page_range.*struct vm_area_struct' $LINUX/include/linux/mm.h`"
+ if test "$ZAP_PAGE_RANGE_VMA" != 0 ; then
+ 
+@@ -9171,15 +10023,15 @@
+ #define ZAP_PAGE_RANGE_VMA 1
+ _ACEOF
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ 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: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ fi
+ 
+-          echo "$as_me:$LINENO: checking if kernel defines PDE" >&5
+-echo $ECHO_N "checking if kernel defines PDE... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if kernel defines PDE" >&5
++echo $ECHO_N "checking if kernel defines PDE... $ECHO_C" >&6; }
+ HAVE_PDE="`grep -c 'proc_dir_entry..PDE' $LINUX/include/linux/proc_fs.h`"
+ if test "$HAVE_PDE" != 0 ; then
+ 
+@@ -9187,15 +10039,15 @@
+ #define HAVE_PDE 1
+ _ACEOF
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ 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: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ fi
+ 
+-          echo "$as_me:$LINENO: checking if kernel passes struct file to direct_IO" >&5
+-echo $ECHO_N "checking if kernel passes struct file to direct_IO... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if kernel passes struct file to direct_IO" >&5
++echo $ECHO_N "checking if kernel passes struct file to direct_IO... $ECHO_C" >&6; }
+ HAVE_DIO_FILE="`grep -c 'direct_IO.*struct file' $LINUX/include/linux/fs.h`"
+ if test "$HAVE_DIO_FILE" != 0 ; then
+ 
+@@ -9203,15 +10055,15 @@
+ #define HAVE_DIO_FILE 1
+ _ACEOF
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ 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: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ fi
+ 
+-          echo "$as_me:$LINENO: checking if kernel has mm_inline.h header" >&5
+-echo $ECHO_N "checking if kernel has mm_inline.h header... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if kernel has mm_inline.h header" >&5
++echo $ECHO_N "checking if kernel has mm_inline.h header... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -9247,8 +10099,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_MM_INLINE 1
+@@ -9260,14 +10112,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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 inode has i_alloc_sem" >&5
+-echo $ECHO_N "checking if struct inode has i_alloc_sem... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if struct inode has i_alloc_sem" >&5
++echo $ECHO_N "checking if struct inode has i_alloc_sem... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -9303,8 +10155,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_I_ALLOC_SEM 1
+@@ -9316,14 +10168,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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 register_cache()" >&5
+-echo $ECHO_N "checking if kernel defines register_cache()... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if kernel defines register_cache()" >&5
++echo $ECHO_N "checking if kernel defines register_cache()... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -9358,15 +10210,15 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_REGISTER_CACHE 1
+ _ACEOF
+ 
+-	echo "$as_me:$LINENO: checking if kernel expects return from cache shrink function" >&5
+-echo $ECHO_N "checking if kernel expects return from cache shrink function... $ECHO_C" >&6
++	{ echo "$as_me:$LINENO: checking if kernel expects return from cache shrink function" >&5
++echo $ECHO_N "checking if kernel expects return from cache shrink function... $ECHO_C" >&6; }
+ 	HAVE_CACHE_RETURN_INT="`grep -c 'int.*shrink' $LINUX/include/linux/cache_def.h`"
+ 	if test "$HAVE_CACHE_RETURN_INT" != 0 ; then
+ 
+@@ -9374,11 +10226,11 @@
+ #define HAVE_CACHE_RETURN_INT 1
+ _ACEOF
+ 
+-		echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++		{ 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: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 	fi
+ 
+ else
+@@ -9386,14 +10238,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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 grab_cache_page_nowait_gfp()" >&5
+-echo $ECHO_N "checking if kernel defines grab_cache_page_nowait_gfp()... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if kernel defines grab_cache_page_nowait_gfp()" >&5
++echo $ECHO_N "checking if kernel defines grab_cache_page_nowait_gfp()... $ECHO_C" >&6; }
+ HAVE_GCPN_GFP="`grep -c 'grab_cache_page_nowait_gfp' $LINUX/include/linux/pagemap.h`"
+ if test "$HAVE_GCPN_GFP" != 0 ; then
+ 
+@@ -9401,15 +10253,15 @@
+ #define HAVE_GRAB_CACHE_PAGE_NOWAIT_GFP 1
+ _ACEOF
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ 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: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ fi
+ 
+-          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
++          { 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
+@@ -9445,8 +10297,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_DEV_SET_RDONLY 1
+@@ -9458,16 +10310,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no, Linux kernel source needs to be patches by lustre
++        { echo "$as_me:$LINENO: result: no, Linux kernel source needs to be patches by lustre
+ kernel patches from Lustre version 1.4.3 or above." >&5
+ echo "${ECHO_T}no, Linux kernel source needs to be patches by lustre
+-kernel patches from Lustre version 1.4.3 or above." >&6
++kernel patches from Lustre version 1.4.3 or above." >&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 filemap_fdatawrite() is defined" >&5
+-echo $ECHO_N "checking whether filemap_fdatawrite() is defined... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking whether filemap_fdatawrite() is defined" >&5
++echo $ECHO_N "checking whether filemap_fdatawrite() is defined... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -9501,8 +10353,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_FILEMAP_FDATAWRITE 1
+@@ -9514,14 +10366,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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 statfs has a f_namelen field" >&5
+-echo $ECHO_N "checking if struct statfs has a f_namelen field... $ECHO_C" >&6
++          { 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
+@@ -9556,8 +10408,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_STATFS_NAMELEN 1
+@@ -9569,14 +10421,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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 offers page_mapped" >&5
+-echo $ECHO_N "checking if kernel offers page_mapped... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if kernel offers page_mapped" >&5
++echo $ECHO_N "checking if kernel offers page_mapped... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -9610,8 +10462,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_PAGE_MAPPED 1
+@@ -9623,14 +10475,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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 an unlocked_ioctl field" >&5
+-echo $ECHO_N "checking if struct file_operations has an unlocked_ioctl field... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if struct file_operations has an unlocked_ioctl field" >&5
++echo $ECHO_N "checking if struct file_operations has an unlocked_ioctl field... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -9665,8 +10517,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_UNLOCKED_IOCTL 1
+@@ -9678,14 +10530,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++          { 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
+@@ -9720,8 +10572,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_FILEMAP_POPULATE 1
+@@ -9733,14 +10585,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++          { 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
+@@ -9774,8 +10626,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_D_ADD_UNIQUE 1
+@@ -9787,16 +10639,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -9805,12 +10657,13 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
++	{ 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
+@@ -9844,8 +10697,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-		echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++		{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_BIT_SPINLOCK_H 1
+@@ -9857,8 +10710,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-		echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++		{ 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
+@@ -9867,9 +10720,9 @@
+ 
+ 
+           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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -9878,12 +10731,13 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
++	{ 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
+@@ -9915,8 +10769,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-		echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++		{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_XATTR_ACL 1
+@@ -9928,8 +10782,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-		echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++		{ 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
+@@ -9937,8 +10791,8 @@
+ 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
++          { 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
+@@ -9974,8 +10828,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_FILE_IN_STRUCT_INTENT 1
+@@ -9987,16 +10841,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -10005,12 +10859,13 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
++        { 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
+@@ -10042,8 +10897,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-                echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++                { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_LINUX_POSIX_ACL_XATTR_H 1
+@@ -10056,8 +10911,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-                echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++                { 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
+@@ -10065,14 +10920,14 @@
+ 
+ else
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ 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 is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol __iget is exported... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if Linux was built with symbol __iget is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol __iget is exported... $ECHO_C" >&6; }
+ grep -q -E '[[:space:]]__iget[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
+ rc=$?
+ if test $rc -ne 0; then
+@@ -10086,13 +10941,13 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -10102,8 +10957,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -10114,8 +10969,8 @@
+ fi
+ 
+ 
+-          echo "$as_me:$LINENO: checking if Linux was built with symbol set_fs_pwd is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol set_fs_pwd is exported... $ECHO_C" >&6
++          { echo "$as_me:$LINENO: checking if Linux was built with symbol set_fs_pwd is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol set_fs_pwd is exported... $ECHO_C" >&6; }
+ grep -q -E '[[:space:]]set_fs_pwd[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
+ rc=$?
+ if test $rc -ne 0; then
+@@ -10129,13 +10984,13 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -10145,8 +11000,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -10157,8 +11012,8 @@
+ 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
++          { 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
+@@ -10197,22 +11052,22 @@
+ #define HAVE_MS_FLOCK_LOCK 1
+ _ACEOF
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { 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: 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
++          { 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
+@@ -10254,22 +11109,22 @@
+ #define HAVE_CAN_SLEEP_ARG 1
+ _ACEOF
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { 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: 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
++          { 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
+@@ -10309,22 +11164,22 @@
+ #define HAVE_F_OP_FLOCK 1
+ _ACEOF
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { 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: 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
++          { 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
+@@ -10359,8 +11214,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define KERNEL_SUPPORTS_QUOTA_READ 1
+@@ -10372,14 +11227,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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
++          { 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
+@@ -10422,22 +11277,22 @@
+ #define HAVE_COOKIE_FOLLOW_LINK 1
+ _ACEOF
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { 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: 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
++          { 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
+@@ -10474,11 +11329,11 @@
+ #define HAVE_RCU 1
+ _ACEOF
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { 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
++        { 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
+@@ -10518,33 +11373,34 @@
+ #define HAVE_CALL_RCU_PARAM 1
+ _ACEOF
+ 
+-                echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++                { 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: 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
++        { 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 64-bit quota limits support" >&5
+-echo $ECHO_N "checking if kernel has 64-bit quota limits support... $ECHO_C" >&6
++          { 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
+@@ -10585,8 +11441,8 @@
+ #define HAVE_QUOTA64 1
+ _ACEOF
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ else
+@@ -10600,16 +11456,16 @@
+ 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;}
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++          { 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
+@@ -10650,8 +11506,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_VFS_INTENT_PATCHES 1
+@@ -10663,16 +11519,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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.15
+-          echo "$as_me:$LINENO: checking if inode has i_mutex " >&5
+-echo $ECHO_N "checking if inode has i_mutex ... $ECHO_C" >&6
++          { 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
+@@ -10710,8 +11566,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_INODE_I_MUTEX 1
+@@ -10723,16 +11579,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++          { 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
+@@ -10770,8 +11626,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_SECURITY_PLUG 1
+@@ -10783,16 +11639,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++          { 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
+@@ -10830,8 +11686,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_DQUOTOFF_MUTEX 1
+@@ -10843,16 +11699,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++          { 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
+@@ -10886,8 +11742,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_NR_PAGECACHE 1
+@@ -10899,14 +11755,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++          { 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
+@@ -10945,22 +11801,22 @@
+ #define HAVE_STATFS_DENTRY_PARAM 1
+ _ACEOF
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { 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: 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
++          { 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
+@@ -10999,22 +11855,22 @@
+ #define HAVE_VFS_KERN_MOUNT 1
+ _ACEOF
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { 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: 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
++          { 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
+@@ -11048,8 +11904,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_INVALIDATEPAGE_RETURN_INT 1
+@@ -11061,14 +11917,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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
++          { 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
+@@ -11114,8 +11970,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_UMOUNTBEGIN_VFSMOUNT 1
+@@ -11127,8 +11983,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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
+@@ -11136,8 +11992,8 @@
+ 
+ 
+           #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
++          { 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
+@@ -11174,8 +12030,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_PG_FS_MISC 1
+@@ -11187,14 +12043,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++          { 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
+@@ -11202,18 +12058,23 @@
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h.  */
+ 
+-        #include <linux/mm.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
+-        #error PageChecked not defined in kernel
+-        #endif
+-        #ifndef SetPageChecked
+-        #error SetPageChecked not defined in kernel
++ 	/* 2.6.26 use function instead of define for it */
++ 	SetPageChecked(p);
++ 	PageChecked(p);
+         #endif
+ 
+   ;
+@@ -11234,8 +12095,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_PAGE_CHECKED 1
+@@ -11247,16 +12108,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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.19
+-          echo "$as_me:$LINENO: checking inode has i_blksize field" >&5
+-echo $ECHO_N "checking inode has i_blksize field... $ECHO_C" >&6
++          { 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
+@@ -11291,8 +12152,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_INODE_BLKSIZE 1
+@@ -11304,14 +12165,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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
++          { 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
+@@ -11355,8 +12216,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_VFS_READDIR_U64_INO 1
+@@ -11368,15 +12229,15 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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 writev in fops" >&5
+-echo $ECHO_N "checking writev in fops... $ECHO_C" >&6
++          { 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
+@@ -11411,8 +12272,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_FILE_WRITEV 1
+@@ -11424,14 +12285,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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
++          { 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
+@@ -11466,8 +12327,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_FILE_READV 1
+@@ -11479,16 +12340,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++          { 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
+@@ -11523,8 +12384,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_CANCEL_DIRTY_PAGE 1
+@@ -11536,16 +12397,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++          { 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
+@@ -11582,8 +12443,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_PAGE_CONSTANT 1
+@@ -11595,16 +12456,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6;
++        { 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
++          { 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
+@@ -11638,8 +12499,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_INVALIDATE_BDEV_2ARG 1
+@@ -11651,14 +12512,14 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++          { 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
+@@ -11692,8 +12553,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_FS_RENAME_DOES_D_MOVE 1
+@@ -11705,15 +12566,15 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++          { 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
+@@ -11747,8 +12608,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_UNREGISTER_BLKDEV_RETURN_INT 1
+@@ -11760,14 +12621,70 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
++          { 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/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
+@@ -11803,8 +12720,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-        echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_KERNEL_SPLICE_READ 1
+@@ -11816,266 +12733,760 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-        echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++        { 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
+ 
+-tmpfl="$CFLAGS"
+-CFLAGS="$CFLAGS -I$LINUX_OBJ/include"
+ 
+-for ac_header in linux/exportfs.h
+-do
+-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
++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: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++
++
++          { 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/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
+-  # 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
++  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 register_shrinker" >&5
++echo $ECHO_N "checking if kernel has register_shrinker... $ECHO_C" >&6; }
++cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+ cat confdefs.h >>conftest.$ac_ext
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h.  */
+-$ac_includes_default
+-#include <$ac_header>
++
++        #include <linux/mm.h>
++
++int
++main (void)
++{
++
++        register_shrinker(NULL);
++
++  ;
++  return 0;
++}
+ _ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++
++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/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=$?
+-  grep -v '^ *+' conftest.er1 >conftest.err
+-  rm -f conftest.er1
+-  cat conftest.err >&5
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
++  (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); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
++  (exit $ac_status); }; }; then
++
++        { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
++
++cat >>confdefs.h <<\_ACEOF
++#define HAVE_REGISTER_SHRINKER 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/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
+-  ac_header_compiler=yes
++
++        { 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
+ 
+-ac_header_compiler=no
++
++        { echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
++
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
++rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
+ 
+-# 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
++
++ 	  # 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 <$ac_header>
++
++        #include <linux/bio.h>
++
++int
++main (void)
++{
++
++        bio_endio(NULL, 0);
++
++  ;
++  return 0;
++}
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++
++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/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=$?
+-  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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
++  (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
+-    ac_cpp_err=
++  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/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
+-  ac_cpp_err=yes
++  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
+-if test -z "$ac_cpp_err"; then
+-  ac_header_preproc=yes
++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/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
+ 
+-  ac_header_preproc=no
++
++        { echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
++
+ fi
+-rm -f conftest.err conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+-echo "${ECHO_T}$ac_header_preproc" >&6
++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/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
++
+ 
+-# 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 eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo $ECHO_N "(cached) $ECHO_C" >&6
+ else
+-  eval "$as_ac_Header=\$ac_header_preproc"
++  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
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko build/conftest.c conftest.c
++
++          LC_RCU_LIST_SAFE
++          { echo "$as_me:$LINENO: checking if path_release exist" >&5
++echo $ECHO_N "checking if path_release exist... $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>
++    #include <linux/namei.h>
++
++int
++main (void)
++{
++
++    path_release(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/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_RELEASE 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
+-if test `eval echo '${'$as_ac_Header'}'` = yes; then
+-  cat >>confdefs.h <<_ACEOF
+-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
++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/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
+ 
+-done
++          { 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.  */
+ 
+-CFLAGS="$tmpfl"
++        #include <linux/fs.h>
+ 
++int
++main (void)
++{
+ 
+-			;;
+-		darwin*)
+-			kernel_framework="/System/Library/Frameworks/Kernel.framework"
+-#
+-# FIXME: there should be a better way to get these than hard coding them
+-#
+-case $target_cpu in
+-	powerpc*)
+-		EXTRA_KCFLAGS="$EXTRA_KCFLAGS -arch ppc -mtune=G4 -mlong-branch"
+-		EXTRA_KLDFLAGS="-arch ppc"
+-		;;
+-	i?86 | x86_64)
+-		EXTRA_KCFLAGS="$EXTRA_KCFLAGS -arch i386"
+-		EXTRA_KLDFLAGS="-arch i386"
+-		;;
+-esac
++        file_remove_suid(NULL);
+ 
+-# Kernel of OS X is not 64bits(even in Tiger), but -m64 can be taken by gcc in Tiger
+-# (Tiger can support 64bits applications), so we have to eliminate -m64 while
+-# building kextensions for and OS X.
+-CC=`echo $CC | sed -e "s/\-m64//g"`
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -x c -pipe -Wno-trigraphs -fasm-blocks -g -O0"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -Wno-four-char-constants -Wmost -O0"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -fmessage-length=0"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -I$kernel_framework/Headers"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -I$kernel_framework/Headers/bsd"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -I$kernel_framework/PrivateHeaders"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -fno-common -nostdinc -fno-builtin"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -finline -fno-keep-inline-functions"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -force_cpusubtype_ALL -fno-exceptions"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -msoft-float -static"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -DKERNEL -DKERNEL_PRIVATE"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -DDRIVER_PRIVATE -DAPPLE -DNeXT"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -D__KERNEL__ -D__DARWIN__"
+-#
+-# C flags for Panther/Tiger
+-#
+-case $target_os in
+-        darwin8*)
+-                EXTRA_KCFLAGS="$EXTRA_KCFLAGS -D__DARWIN8__"
+-	;;
+-        darwin7*)
+-                EXTRA_KCFLAGS="$EXTRA_KCFLAGS -ffix-and-continue"
+-        ;;
+-esac
++  ;
++  return 0;
++}
++_ACEOF
+ 
+-#
+-# Debugging flags. Remove!
+-#
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -O0 -DMACH_ASSERT=1"
+-EXTRA_KLDFLAGS="$EXTRA_KLDFLAGS -static -nostdlib -r"
+-EXTRA_KLIBS="-lkmodc++ -lkmod -lcc_kext"
+-KMODEXT=""
++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/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; }
+ 
+-kextdir='/System/Library/Extensions/$(firstword $(macos_PROGRAMS)).kext'
+-plistdir='$(kextdir)/Contents'
+-macosdir='$(plistdir)/MacOS'
++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>
+ 
+-for ac_func in get_preemption_level
+-do
+-echo "$as_me:$LINENO: checking for get_preemption_level" >&5
+-echo $ECHO_N "checking for get_preemption_level... $ECHO_C" >&6
+-if { ac_try='nm /mach | grep "get_preemption_level" >/dev/null 2>/dev/null'
++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/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 `echo "HAVE_$ac_func" | $as_tr_cpp` 1
++
++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
++
++        { echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 
+ fi
+-done
++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)
++{
+ 
+-LP_PROG_DARWIN
++       struct address_space *map = NULL;
+ 
+-LC_PROG_DARWIN
++       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/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"
+ 
++
++			;;
++		darwin*)
++			LB_PROG_DARWIN
+ 			LIBCFS_PROG_DARWIN
+ 			;;
+ 		*)
+@@ -12088,15 +13499,15 @@
+ fi
+ 
+ 
+-# Check whether --enable-dmu or --disable-dmu was given.
++# Check whether --enable-dmu was given.
+ if test "${enable_dmu+set}" = set; then
+-  enableval="$enable_dmu"
+-
++  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
++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'
+@@ -12121,8 +13532,8 @@
+ 		dmu_osd='yes'
+ 		;;
+ esac
+-echo "$as_me:$LINENO: result: $dmu_osd" >&5
+-echo "${ECHO_T}$dmu_osd" >&6
++{ 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
+@@ -12134,9 +13545,9 @@
+ 		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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -12145,8 +13556,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -12157,8 +13569,6 @@
+ 
+ fi
+ 
+-
+-
+ subdirs="$subdirs lustre/zfs-lustre"
+ 
+ 	else
+@@ -12171,9 +13581,9 @@
+ 
+ 
+ 		as_lb_File=`echo "lb_cv_file_$SPL_DIR/modules/spl/spl-generic.c" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $SPL_DIR/modules/spl/spl-generic.c" >&5
+-echo $ECHO_N "checking for $SPL_DIR/modules/spl/spl-generic.c... $ECHO_C" >&6
+-if eval "test \"\${$as_lb_File+set}\" = set"; then
++{ echo "$as_me:$LINENO: checking for $SPL_DIR/modules/spl/spl-generic.c" >&5
++echo $ECHO_N "checking for $SPL_DIR/modules/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/modules/spl/spl-generic.c"; then
+@@ -12182,8 +13592,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -12196,9 +13607,9 @@
+ 
+ 
+ 		as_lb_File=`echo "lb_cv_file_$ZFS_DIR/zfs/lib/libzpool/dmu.c" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $ZFS_DIR/zfs/lib/libzpool/dmu.c" >&5
+-echo $ECHO_N "checking for $ZFS_DIR/zfs/lib/libzpool/dmu.c... $ECHO_C" >&6
+-if eval "test \"\${$as_lb_File+set}\" = set"; then
++{ echo "$as_me:$LINENO: checking for $ZFS_DIR/zfs/lib/libzpool/dmu.c" >&5
++echo $ECHO_N "checking for $ZFS_DIR/zfs/lib/libzpool/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/zfs/lib/libzpool/dmu.c"; then
+@@ -12207,8 +13618,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -12220,13 +13632,9 @@
+ fi
+ 
+ 
+-
+-
+ subdirs="$subdirs spl"
+ 
+ 		ac_configure_args="$ac_configure_args --with-spl=$SPL_DIR"
+-
+-
+ subdirs="$subdirs zfs"
+ 
+ 	fi
+@@ -12253,10 +13661,9 @@
+ 
+ 
+ 
+-# Check whether --with-sysio or --without-sysio was given.
++# Check whether --with-sysio was given.
+ if test "${with_sysio+set}" = set; then
+-  withval="$with_sysio"
+-
++  withval=$with_sysio;
+ else
+ 
+ 		case $lb_target_os in
+@@ -12268,18 +13675,19 @@
+ 				;;
+ 		esac
+ 
+-fi;
+-echo "$as_me:$LINENO: checking location of libsysio" >&5
+-echo $ECHO_N "checking location of libsysio... $ECHO_C" >&6
++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
++		{ 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -12288,8 +13696,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -12304,16 +13713,16 @@
+ 		SYSIO="$PWD/libsysio"
+ 		;;
+ 	xno)
+-		echo "$as_me:$LINENO: result: disabled" >&5
+-echo "${ECHO_T}disabled" >&6
++		{ 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
++		{ 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -12322,8 +13731,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -12340,15 +13750,13 @@
+ 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -12357,8 +13765,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -12367,10 +13776,9 @@
+ 
+ 
+ 
+-# Check whether --with-ldiskfs or --without-ldiskfs was given.
++# Check whether --with-ldiskfs was given.
+ if test "${with_ldiskfs+set}" = set; then
+-  withval="$with_ldiskfs"
+-
++  withval=$with_ldiskfs;
+ else
+ 
+ 		if test x$linux25$enable_server = xyesyes ; then
+@@ -12379,17 +13787,18 @@
+ 			with_ldiskfs=no
+ 		fi
+ 
+-fi;
+-echo "$as_me:$LINENO: checking location of ldiskfs" >&5
+-echo $ECHO_N "checking location of ldiskfs... $ECHO_C" >&6
++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
++		{ 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -12398,8 +13807,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -12414,16 +13824,16 @@
+ 		LDISKFS_DIR="$PWD/ldiskfs"
+ 		;;
+ 	xno)
+-		echo "$as_me:$LINENO: result: disabled" >&5
+-echo "${ECHO_T}disabled" >&6
++		{ echo "$as_me:$LINENO: result: disabled" >&5
++echo "${ECHO_T}disabled" >&6; }
+ 		;;
+ 	*)
+-		echo "$as_me:$LINENO: result: $with_ldiskfs" >&5
+-echo "${ECHO_T}$with_ldiskfs" >&6
++		{ 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -12432,8 +13842,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -12461,32 +13872,30 @@
+ 
+ 
+ # We have to configure even if we don't build here for make dist to work
+-
+-
+ subdirs="$subdirs ldiskfs"
+ 
+ 
+ 
+-# Check whether --with- or --without- was given.
++# Check whether --with- was given.
+ if test "${with_+set}" = set; then
+-  withval="$with_"
+-
++  withval=$with_;
+ 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
++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
++		{ 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -12495,8 +13904,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -12511,16 +13921,16 @@
+ 		LUSTREIOKIT="$PWD/lustre-iokit"
+ 		;;
+ 	xno)
+-		echo "$as_me:$LINENO: result: disabled" >&5
+-echo "${ECHO_T}disabled" >&6
++		{ 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
++		{ 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -12529,8 +13939,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -12547,52 +13958,50 @@
+ esac
+ 
+ # We have to configure even if we don't build here for make dist to work
+-
+-
+ subdirs="$subdirs lustre-iokit"
+ 
+ 
+ 
+-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 or --disable-liblustre was given.
++{ 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"
+-
++  enableval=$enable_liblustre;
+ else
+   enable_liblustre=$with_sysio
+-fi;
+-echo "$as_me:$LINENO: result: $enable_liblustre" >&5
+-echo "${ECHO_T}$enable_liblustre" >&6
++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 or --disable-liblustre-tests was given.
++{ 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"
+-
++  enableval=$enable_liblustre_tests;
+ else
+   enable_liblustre_tests=$enable_tests
+-fi;
++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: 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 or --disable-liblustre-acl was given.
++{ 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"
+-
++  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
++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
+@@ -12604,10 +14013,9 @@
+ #
+ # --enable-mpitest
+ #
+-# Check whether --enable-mpitests or --disable-mpitests was given.
++# Check whether --enable-mpitests was given.
+ if test "${enable_mpitests+set}" = set; then
+-  enableval="$enable_mpitests"
+-
++  enableval=$enable_mpitests;
+ 	 enable_mpitests=yes
+          case $enableval in
+          yes)
+@@ -12638,16 +14046,17 @@
+ 	enable_mpitests=yes
+ 
+ 
+-fi;
++fi
++
+ 
+ 
+ if test x$enable_mpitests != xno; then
+-	echo "$as_me:$LINENO: checking whether to mpitests can be built" >&5
+-echo $ECHO_N "checking whether to mpitests can be built... $ECHO_C" >&6
++	{ echo "$as_me:$LINENO: checking whether to mpitests can be built" >&5
++echo $ECHO_N "checking whether to mpitests can be built... $ECHO_C" >&6; }
+         as_ac_File=`echo "ac_cv_file_$MPI_ROOT/include/mpi.h" | $as_tr_sh`
+-echo "$as_me:$LINENO: checking for $MPI_ROOT/include/mpi.h" >&5
+-echo $ECHO_N "checking for $MPI_ROOT/include/mpi.h... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_File+set}\" = set"; then
++{ echo "$as_me:$LINENO: checking for $MPI_ROOT/include/mpi.h" >&5
++echo $ECHO_N "checking for $MPI_ROOT/include/mpi.h... $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 &&
+@@ -12660,11 +14069,12 @@
+   eval "$as_ac_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_File'}'`" >&6
++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
+-  echo "$as_me:$LINENO: checking for MPI_Start in -lmpich" >&5
+-echo $ECHO_N "checking for MPI_Start in -lmpich... $ECHO_C" >&6
++  { echo "$as_me:$LINENO: checking for MPI_Start in -lmpich" >&5
++echo $ECHO_N "checking for MPI_Start in -lmpich... $ECHO_C" >&6; }
+ if test "${ac_cv_lib_mpich_MPI_Start+set}" = set; then
+   echo $ECHO_N "(cached) $ECHO_C" >&6
+ else
+@@ -12677,43 +14087,39 @@
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h.  */
+ 
+-/* Override any gcc2 internal prototype to avoid an error.  */
++/* 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
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+ char MPI_Start ();
+ int
+ main ()
+ {
+-MPI_Start ();
++return MPI_Start ();
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval 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
++  (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_mpich_MPI_Start=yes
+ else
+   echo "$as_me: failed program was:" >&5
+@@ -12721,12 +14127,13 @@
+ 
+ ac_cv_lib_mpich_MPI_Start=no
+ fi
+-rm -f conftest.err conftest.$ac_objext \
++
++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_mpich_MPI_Start" >&5
+-echo "${ECHO_T}$ac_cv_lib_mpich_MPI_Start" >&6
++{ echo "$as_me:$LINENO: result: $ac_cv_lib_mpich_MPI_Start" >&5
++echo "${ECHO_T}$ac_cv_lib_mpich_MPI_Start" >&6; }
+ if test $ac_cv_lib_mpich_MPI_Start = yes; then
+   enable_mpitests=yes
+ else
+@@ -12738,25 +14145,25 @@
+ fi
+ 
+ fi
+-echo "$as_me:$LINENO: result: $enable_mpitests" >&5
+-echo "${ECHO_T}$enable_mpitests" >&6
++{ echo "$as_me:$LINENO: result: $enable_mpitests" >&5
++echo "${ECHO_T}$enable_mpitests" >&6; }
+ 
+ 
+ { 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 or --disable-pinger was given.
++{ 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"
+-
++  enableval=$enable_pinger;
+ else
+   enable_pinger='yes'
+-fi;
+-echo "$as_me:$LINENO: result: $enable_pinger" >&5
+-echo "${ECHO_T}$enable_pinger" >&6
++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
+@@ -12765,17 +14172,17 @@
+ 
+ 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 or --disable-liblustre-recovery was given.
++{ 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"
+-
++  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
++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
+@@ -12795,18 +14202,19 @@
+ 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 eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
++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
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
++{ 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
+@@ -12817,27 +14225,22 @@
+ #include <$ac_header>
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -12845,13 +14248,14 @@
+ 
+ ac_header_compiler=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
++
++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
++{ 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
+@@ -12860,24 +14264,22 @@
+ /* end confdefs.h.  */
+ #include <$ac_header>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -12885,9 +14287,10 @@
+ 
+   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
++{ 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
+@@ -12911,25 +14314,24 @@
+ 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
++    ( cat <<\_ASBOX
+ ## ------------------------------------------- ##
+ ## Report this to https://bugzilla.lustre.org/ ##
+ ## ------------------------------------------- ##
+ _ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
++     ) | 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 eval "test \"\${$as_ac_Header+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
+ else
+   eval "$as_ac_Header=\$ac_header_preproc"
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
+@@ -12947,9 +14349,9 @@
+ 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 eval "test \"\${$as_ac_var+set}\" = set"; then
++{ 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
+@@ -12975,56 +14377,46 @@
+ 
+ #undef $ac_func
+ 
+-/* Override any gcc2 internal prototype to avoid an error.  */
++/* 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
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+ 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)
++#if defined __stub_$ac_func || defined __stub___$ac_func
+ choke me
+-#else
+-char (*f) () = $ac_func;
+-#endif
+-#ifdef __cplusplus
+-}
+ #endif
+ 
+ int
+ main ()
+ {
+-return f != $ac_func;
++return $ac_func ();
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval 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
++  (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
+@@ -13032,11 +14424,13 @@
+ 
+ eval "$as_ac_var=no"
+ fi
+-rm -f conftest.err conftest.$ac_objext \
++
++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
+       conftest$ac_exeext conftest.$ac_ext
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
++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
+@@ -13051,18 +14445,19 @@
+ for ac_header in linux/version.h
+ do
+ as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
++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
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
++{ 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
+@@ -13073,27 +14468,22 @@
+ #include <$ac_header>
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -13101,13 +14491,14 @@
+ 
+ ac_header_compiler=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
++
++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
++{ 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
+@@ -13116,24 +14507,22 @@
+ /* end confdefs.h.  */
+ #include <$ac_header>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -13141,9 +14530,10 @@
+ 
+   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
++{ 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
+@@ -13167,25 +14557,24 @@
+ 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
++    ( cat <<\_ASBOX
+ ## ------------------------------------------- ##
+ ## Report this to https://bugzilla.lustre.org/ ##
+ ## ------------------------------------------- ##
+ _ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
++     ) | 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 eval "test \"\${$as_ac_Header+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
+ else
+   eval "$as_ac_Header=\$ac_header_preproc"
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
+@@ -13198,8 +14587,8 @@
+ done
+ 
+ 
+-echo "$as_me:$LINENO: checking for spinlock_t" >&5
+-echo $ECHO_N "checking for spinlock_t... $ECHO_C" >&6
++{ 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
+@@ -13211,39 +14600,35 @@
+ /* end confdefs.h.  */
+ #include <linux/spinlock.h>
+ 
++typedef spinlock_t ac__type_new_;
+ int
+ main ()
+ {
+-if ((spinlock_t *) 0)
++if ((ac__type_new_ *) 0)
+   return 0;
+-if (sizeof (spinlock_t))
++if (sizeof (ac__type_new_))
+   return 0;
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -13251,10 +14636,11 @@
+ 
+ ac_cv_type_spinlock_t=no
+ fi
+-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_type_spinlock_t" >&5
+-echo "${ECHO_T}$ac_cv_type_spinlock_t" >&6
++{ 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
+@@ -13269,9 +14655,9 @@
+ 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 eval "test \"\${$as_ac_var+set}\" = set"; then
++{ 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
+@@ -13297,56 +14683,46 @@
+ 
+ #undef $ac_func
+ 
+-/* Override any gcc2 internal prototype to avoid an error.  */
++/* 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
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+ 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)
++#if defined __stub_$ac_func || defined __stub___$ac_func
+ choke me
+-#else
+-char (*f) () = $ac_func;
+-#endif
+-#ifdef __cplusplus
+-}
+ #endif
+ 
+ int
+ main ()
+ {
+-return f != $ac_func;
++return $ac_func ();
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval 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
++  (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
+@@ -13354,11 +14730,13 @@
+ 
+ eval "$as_ac_var=no"
+ fi
+-rm -f conftest.err conftest.$ac_objext \
++
++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
+       conftest$ac_exeext conftest.$ac_ext
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
++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
+@@ -13375,24 +14753,24 @@
+ #
+ # 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 or --disable-readline was given.
++{ 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"
+-
++  enableval=$enable_readline;
+ else
+   enable_readline='yes'
+-fi;
+-echo "$as_me:$LINENO: result: $enable_readline" >&5
+-echo "${ECHO_T}$enable_readline" >&6
++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
++	{ 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
+@@ -13405,43 +14783,39 @@
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h.  */
+ 
+-/* Override any gcc2 internal prototype to avoid an error.  */
++/* 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
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+ char readline ();
+ int
+ main ()
+ {
+-readline ();
++return readline ();
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval 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
++  (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
+@@ -13449,12 +14823,13 @@
+ 
+ ac_cv_lib_readline_readline=no
+ fi
+-rm -f conftest.err conftest.$ac_objext \
++
++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
++{ 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"
+@@ -13476,17 +14851,17 @@
+ 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 or --disable-efence was given.
++{ 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"
+-
++  enableval=$enable_efence;
+ else
+   enable_efence='no'
+-fi;
+-echo "$as_me:$LINENO: result: $enable_efence" >&5
+-echo "${ECHO_T}$enable_efence" >&6
++fi
++
++{ echo "$as_me:$LINENO: result: $enable_efence" >&5
++echo "${ECHO_T}$enable_efence" >&6; }
+ if test "$enable_efence" = "yes" ; then
+ 	LIBEFENCE="-lefence"
+ 
+@@ -13500,12 +14875,11 @@
+ 
+ 
+ # -------- 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 or --disable-libwrap was given.
++{ 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
++  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
+@@ -13514,9 +14888,10 @@
+ 	esac
+ else
+   enable_libwrap=no
+-fi;
+-echo "$as_me:$LINENO: result: $enable_libwrap" >&5
+-echo "${ECHO_T}$enable_libwrap" >&6
++fi
++
++{ echo "$as_me:$LINENO: result: $enable_libwrap" >&5
++echo "${ECHO_T}$enable_libwrap" >&6; }
+ if test x$enable_libwrap = xyes ; then
+ 	LIBWRAP="-lwrap"
+ 
+@@ -13530,18 +14905,18 @@
+ 
+ 
+ # -------- 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 or --disable-libpthread was given.
++{ 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"
+-
++  enableval=$enable_libpthread;
+ else
+   enable_libpthread=yes
+-fi;
++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
++	{ 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
+@@ -13554,43 +14929,39 @@
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h.  */
+ 
+-/* Override any gcc2 internal prototype to avoid an error.  */
++/* 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
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+ char pthread_create ();
+ int
+ main ()
+ {
+-pthread_create ();
++return pthread_create ();
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval 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
++  (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
+@@ -13598,12 +14969,13 @@
+ 
+ ac_cv_lib_pthread_pthread_create=no
+ fi
+-rm -f conftest.err conftest.$ac_objext \
++
++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
++{ 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
+@@ -13611,8 +14983,8 @@
+ fi
+ 
+ 	if test "$ENABLE_LIBPTHREAD" = "yes" ; then
+-		echo "$as_me:$LINENO: result: $ENABLE_LIBPTHREAD" >&5
+-echo "${ECHO_T}$ENABLE_LIBPTHREAD" >&6
++		{ echo "$as_me:$LINENO: result: $ENABLE_LIBPTHREAD" >&5
++echo "${ECHO_T}$ENABLE_LIBPTHREAD" >&6; }
+ 		PTHREAD_LIBS="-lpthread"
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -13621,13 +14993,13 @@
+ 
+ 	else
+ 		PTHREAD_LIBS=""
+-		echo "$as_me:$LINENO: result: no libpthread is found" >&5
+-echo "${ECHO_T}no libpthread is found" >&6
++		{ 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
++	{ echo "$as_me:$LINENO: result: no (disabled explicitly)" >&5
++echo "${ECHO_T}no (disabled explicitly)" >&6; }
+ 	ENABLE_LIBPTHREAD="no"
+ fi
+ 
+@@ -13635,17 +15007,17 @@
+ # ----------------------------------------
+ # some tests for catamount-like systems
+ # ----------------------------------------
+-# Check whether --enable-sysio_init or --disable-sysio_init was given.
++# Check whether --enable-sysio_init was given.
+ if test "${enable_sysio_init+set}" = set; then
+-  enableval="$enable_sysio_init"
+-
++  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
++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
+@@ -13654,17 +15026,17 @@
+ 
+ fi
+ 
+-# Check whether --enable-urandom or --disable-urandom was given.
++# Check whether --enable-urandom was given.
+ if test "${enable_urandom+set}" = set; then
+-  enableval="$enable_urandom"
+-
++  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
++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
+@@ -13675,8 +15047,8 @@
+ 
+ # -------- 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
++	{ 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
+@@ -13689,43 +15061,39 @@
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h.  */
+ 
+-/* Override any gcc2 internal prototype to avoid an error.  */
++/* 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
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+ char cap_get_proc ();
+ int
+ main ()
+ {
+-cap_get_proc ();
++return cap_get_proc ();
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval 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
++  (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
+@@ -13733,12 +15101,13 @@
+ 
+ ac_cv_lib_cap_cap_get_proc=no
+ fi
+-rm -f conftest.err conftest.$ac_objext \
++
++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
++{ 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"
+@@ -13758,25 +15127,25 @@
+ 
+ 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
++{ 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 or --without-max-payload-mb was given.
++# 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
++  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
++		{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 		LNET_MAX_PAYLOAD="LNET_MTU"
+ 
+-fi;
++fi
++
+ 
+ cat >>confdefs.h <<_ACEOF
+ #define LNET_MAX_PAYLOAD $LNET_MAX_PAYLOAD
+@@ -13785,13 +15154,12 @@
+ 
+ 
+ if test -z "$ENABLEPORTALS"; then
+-	echo "$as_me:$LINENO: checking for portals" >&5
+-echo $ECHO_N "checking for portals... $ECHO_C" >&6
++	{ echo "$as_me:$LINENO: checking for portals" >&5
++echo $ECHO_N "checking for portals... $ECHO_C" >&6; }
+ 
+-# Check whether --with-portals or --without-portals was given.
++# Check whether --with-portals was given.
+ if test "${with_portals+set}" = set; then
+-  withval="$with_portals"
+-
++  withval=$with_portals;
+ 		case $with_portals in
+ 			no)     ENABLEPORTALS=0
+ 				;;
+@@ -13804,85 +15172,86 @@
+ 
+ 		ENABLEPORTALS=0
+ 
+-fi;
++fi
++
+ PTLLNDCPPFLAGS=""
+ if test $ENABLEPORTALS -eq 0; then
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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: 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
++        { 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
++{ 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
++	{ 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
++	{ 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 or --disable-usocklnd was given.
++{ 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"
+-
++  enableval=$enable_usocklnd;
+ else
+   enable_usocklnd='yes'
+-fi;
++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
++		{ 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
++		{ 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
++	{ 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
++{ 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 or --without-obd-buffer-size was given.
++# Check whether --with-obd-buffer-size was given.
+ if test "${with_obd_buffer_size+set}" = set; then
+-  withval="$with_obd_buffer_size"
+-
++  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
++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
+@@ -13899,18 +15268,19 @@
+ 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 eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
++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
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
++{ 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
+@@ -13921,27 +15291,22 @@
+ #include <$ac_header>
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -13949,13 +15314,14 @@
+ 
+ ac_header_compiler=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
++
++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
++{ 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
+@@ -13964,24 +15330,22 @@
+ /* end confdefs.h.  */
+ #include <$ac_header>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -13989,9 +15353,10 @@
+ 
+   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
++{ 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
+@@ -14015,25 +15380,24 @@
+ 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
++    ( cat <<\_ASBOX
+ ## ------------------------------------------- ##
+ ## Report this to https://bugzilla.lustre.org/ ##
+ ## ------------------------------------------- ##
+ _ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
++     ) | 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 eval "test \"\${$as_ac_Header+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
+ else
+   eval "$as_ac_Header=\$ac_header_preproc"
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
+@@ -14052,18 +15416,19 @@
+ for ac_header in xtio.h file.h
+ do
+ as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
++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
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
++{ 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
+@@ -14074,27 +15439,22 @@
+ #include <$ac_header>
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -14102,13 +15462,14 @@
+ 
+ ac_header_compiler=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
++
++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
++{ 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
+@@ -14117,24 +15478,22 @@
+ /* end confdefs.h.  */
+ #include <$ac_header>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -14142,9 +15501,10 @@
+ 
+   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
++{ 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
+@@ -14168,25 +15528,24 @@
+ 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
++    ( cat <<\_ASBOX
+ ## ------------------------------------------- ##
+ ## Report this to https://bugzilla.lustre.org/ ##
+ ## ------------------------------------------- ##
+ _ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
++     ) | 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 eval "test \"\${$as_ac_Header+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
+ else
+   eval "$as_ac_Header=\$ac_header_preproc"
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
+@@ -14207,18 +15566,19 @@
+ 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 eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
++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
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
++{ 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
+@@ -14229,27 +15589,22 @@
+ #include <$ac_header>
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -14257,13 +15612,14 @@
+ 
+ ac_header_compiler=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
++
++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
++{ 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
+@@ -14272,24 +15628,22 @@
+ /* end confdefs.h.  */
+ #include <$ac_header>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -14297,9 +15651,10 @@
+ 
+   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
++{ 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
+@@ -14323,25 +15678,24 @@
+ 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
++    ( cat <<\_ASBOX
+ ## ------------------------------------------- ##
+ ## Report this to https://bugzilla.lustre.org/ ##
+ ## ------------------------------------------- ##
+ _ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
++     ) | 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 eval "test \"\${$as_ac_Header+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
+ else
+   eval "$as_ac_Header=\$ac_header_preproc"
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
+@@ -14361,18 +15715,19 @@
+ 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 eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
++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
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
++{ 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
+@@ -14383,27 +15738,22 @@
+ #include <$ac_header>
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -14411,13 +15761,14 @@
+ 
+ ac_header_compiler=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
++
++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
++{ 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
+@@ -14426,24 +15777,22 @@
+ /* end confdefs.h.  */
+ #include <$ac_header>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -14451,9 +15800,10 @@
+ 
+   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
++{ 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
+@@ -14477,25 +15827,24 @@
+ 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
++    ( cat <<\_ASBOX
+ ## ------------------------------------------- ##
+ ## Report this to https://bugzilla.lustre.org/ ##
+ ## ------------------------------------------- ##
+ _ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
++     ) | 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 eval "test \"\${$as_ac_Header+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
+ else
+   eval "$as_ac_Header=\$ac_header_preproc"
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
+@@ -14511,9 +15860,9 @@
+ 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 eval "test \"\${$as_ac_var+set}\" = set"; then
++{ 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
+@@ -14539,56 +15888,46 @@
+ 
+ #undef $ac_func
+ 
+-/* Override any gcc2 internal prototype to avoid an error.  */
++/* 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
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+ 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)
++#if defined __stub_$ac_func || defined __stub___$ac_func
+ choke me
+-#else
+-char (*f) () = $ac_func;
+-#endif
+-#ifdef __cplusplus
+-}
+ #endif
+ 
+ int
+ main ()
+ {
+-return f != $ac_func;
++return $ac_func ();
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval 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
++  (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
+@@ -14596,11 +15935,13 @@
+ 
+ eval "$as_ac_var=no"
+ fi
+-rm -f conftest.err conftest.$ac_objext \
++
++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
+       conftest$ac_exeext conftest.$ac_ext
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
++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
+@@ -14611,8 +15952,8 @@
+ 
+ 
+ # 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
++{ 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
+@@ -14633,30 +15974,25 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_POSIX_1003_READLINK 1
+@@ -14668,11 +16004,12 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+ 
+ 
+ # lvfs/prng.c - depends on linux/types.h from liblustre/dir.c
+@@ -14680,9 +16017,9 @@
+ 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 eval "test \"\${$as_ac_Header+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
+ else
+   cat >conftest.$ac_ext <<_ACEOF
+@@ -14699,27 +16036,22 @@
+ #include <$ac_header>
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -14727,10 +16059,12 @@
+ 
+ eval "$as_ac_Header=no"
+ fi
+-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: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
+@@ -14746,18 +16080,19 @@
+ for ac_header in ext2fs/ext2fs.h
+ do
+ as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
++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
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
++{ 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
+@@ -14768,27 +16103,22 @@
+ #include <$ac_header>
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -14796,13 +16126,14 @@
+ 
+ ac_header_compiler=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
++
++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
++{ 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
+@@ -14811,24 +16142,22 @@
+ /* end confdefs.h.  */
+ #include <$ac_header>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -14836,9 +16165,10 @@
+ 
+   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
++{ 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
+@@ -14862,25 +16192,24 @@
+ 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
++    ( cat <<\_ASBOX
+ ## ------------------------------------------- ##
+ ## Report this to https://bugzilla.lustre.org/ ##
+ ## ------------------------------------------- ##
+ _ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
++     ) | 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 eval "test \"\${$as_ac_Header+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
+ else
+   eval "$as_ac_Header=\$ac_header_preproc"
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
+@@ -14895,8 +16224,8 @@
+ 
+ # 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
++{ 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
+@@ -14909,43 +16238,39 @@
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h.  */
+ 
+-/* Override any gcc2 internal prototype to avoid an error.  */
++/* 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
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+ char adler32 ();
+ int
+ main ()
+ {
+-adler32 ();
++return adler32 ();
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval 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
++  (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
+@@ -14953,29 +16278,31 @@
+ 
+ ac_cv_lib_z_adler32=no
+ fi
+-rm -f conftest.err conftest.$ac_objext \
++
++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
++{ 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 eval "test \"\${$as_ac_Header+set}\" = set"; then
+-  echo "$as_me:$LINENO: checking for $ac_header" >&5
+-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+-if eval "test \"\${$as_ac_Header+set}\" = set"; then
++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
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
++{ 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
+@@ -14986,27 +16313,22 @@
+ #include <$ac_header>
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -15014,13 +16336,14 @@
+ 
+ ac_header_compiler=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
++
++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
++{ 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
+@@ -15029,24 +16352,22 @@
+ /* end confdefs.h.  */
+ #include <$ac_header>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -15054,9 +16375,10 @@
+ 
+   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
++{ 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
+@@ -15080,25 +16402,24 @@
+ 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
++    ( cat <<\_ASBOX
+ ## ------------------------------------------- ##
+ ## Report this to https://bugzilla.lustre.org/ ##
+ ## ------------------------------------------- ##
+ _ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
++     ) | 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 eval "test \"\${$as_ac_Header+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
+ else
+   eval "$as_ac_Header=\$ac_header_preproc"
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
+@@ -15129,11 +16450,11 @@
+ 
+ 
+ # Super safe df
+-# Check whether --enable-mindf or --disable-mindf was given.
++# Check whether --enable-mindf was given.
+ if test "${enable_mindf+set}" = set; then
+-  enableval="$enable_mindf"
++  enableval=$enable_mindf;
++fi
+ 
+-fi;
+ if test "$enable_mindf" = "yes" ;  then
+ 
+ cat >>confdefs.h <<\_ACEOF
+@@ -15142,17 +16463,17 @@
+ 
+ fi
+ 
+-# Check whether --enable-fail_alloc or --disable-fail_alloc was given.
++# Check whether --enable-fail_alloc was given.
+ if test "${enable_fail_alloc+set}" = set; then
+-  enableval="$enable_fail_alloc"
+-
++  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
++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
+@@ -15164,23 +16485,23 @@
+ 
+ 
+ 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 or --disable-snmp was given.
++	{ 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"
+-
++  enableval=$enable_snmp;
+ else
+   enable_snmp='auto'
+-fi;
+-echo "$as_me:$LINENO: result: $enable_snmp" >&5
+-echo "${ECHO_T}$enable_snmp" >&6
++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
++{ 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
+@@ -15193,25 +16514,27 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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)
+@@ -15223,17 +16546,17 @@
+ 		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
++  { 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
++{ 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
++{ 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
+@@ -15244,27 +16567,22 @@
+ #include <net-snmp/net-snmp-config.h>
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -15272,13 +16590,14 @@
+ 
+ ac_header_compiler=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+-echo "${ECHO_T}$ac_header_compiler" >&6
++
++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
++{ 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
+@@ -15287,24 +16606,22 @@
+ /* end confdefs.h.  */
+ #include <net-snmp/net-snmp-config.h>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -15312,9 +16629,10 @@
+ 
+   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
++{ 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
+@@ -15338,31 +16656,29 @@
+ 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
++    ( cat <<\_ASBOX
+ ## ------------------------------------------- ##
+ ## Report this to https://bugzilla.lustre.org/ ##
+ ## ------------------------------------------- ##
+ _ASBOX
+-    ) |
+-      sed "s/^/$as_me: WARNING:     /" >&2
++     ) | 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
++{ 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
++{ 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
++			{ 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
+@@ -15389,56 +16705,46 @@
+ 
+ #undef register_mib
+ 
+-/* Override any gcc2 internal prototype to avoid an error.  */
++/* 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
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+ 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)
++#if defined __stub_register_mib || defined __stub___register_mib
+ choke me
+-#else
+-char (*f) () = register_mib;
+-#endif
+-#ifdef __cplusplus
+-}
+ #endif
+ 
+ int
+ main ()
+ {
+-return f != register_mib;
++return register_mib ();
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval 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
++  (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
+@@ -15446,11 +16752,12 @@
+ 
+ ac_cv_func_register_mib=no
+ fi
+-rm -f conftest.err conftest.$ac_objext \
++
++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
++{ 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
+@@ -15459,8 +16766,8 @@
+ 				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
++				{ 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
+@@ -15487,56 +16794,46 @@
+ 
+ #undef register_mib
+ 
+-/* Override any gcc2 internal prototype to avoid an error.  */
++/* 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
+-/* We use char because int might match the return type of a gcc2
+-   builtin and then its argument prototype would still apply.  */
+ 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)
++#if defined __stub_register_mib || defined __stub___register_mib
+ choke me
+-#else
+-char (*f) () = register_mib;
+-#endif
+-#ifdef __cplusplus
+-}
+ #endif
+ 
+ int
+ main ()
+ {
+-return f != register_mib;
++return register_mib ();
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest$ac_exeext'
+-  { (eval 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
++  (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
+@@ -15544,11 +16841,12 @@
+ 
+ ac_cv_func_register_mib=no
+ fi
+-rm -f conftest.err conftest.$ac_objext \
++
++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
++{ 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
+@@ -15564,14 +16862,14 @@
+ 		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
++	{ 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
++		{ 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
++		{ 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;}
+@@ -15704,8 +17002,7 @@
+ fi
+ 
+ 
+-
+-
++LB_DARWIN_CONDITIONALS
+ 
+ 
+ 
+@@ -15991,39 +17288,58 @@
+ 
+ # The following way of writing the cache mishandles newlines in values,
+ # but we know of no workaround that is simple, portable, and efficient.
+-# So, don't put newlines in cache variables' values.
++# 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 `(ac_space=' '; set | grep ac_space) 2>&1` in
+-    *ac_space=\ *)
++    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 \
+-	"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
++      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+       ;;
+-    esac;
+-} |
++    esac |
++    sort
++) |
+   sed '
++     /^ac_cv_env_/b end
+      t clear
+      : clear
+      s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
+      t end
+-     /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
++     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 "updating cache $cache_file"
++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 "not updating unwritable cache $cache_file"
++    { 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
+@@ -16032,32 +17348,18 @@
+ # Let make expand exec_prefix.
+ test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
+ 
+-# 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
+-
+ DEFS=-DHAVE_CONFIG_H
+ 
+ ac_libobjs=
+ ac_ltlibobjs=
+ for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
+   # 1. Remove the extension, and $U if already installed.
+-  ac_i=`echo "$ac_i" |
+-	 sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
+-  # 2. Add them.
+-  ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
+-  ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
++  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
+ LIBOBJS=$ac_libobjs
+ 
+@@ -16361,73 +17663,26 @@
+ ## M4sh Initialization.  ##
+ ## --------------------- ##
+ 
+-# Be Bourne compatible
++# 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+"$@"}'='"$@"'
+-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
++  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
+ 
+ 
+-# 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'
+@@ -16448,14 +17703,24 @@
+   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
+ 
+-  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.
++# (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
+@@ -16465,6 +17730,7 @@
+   test -z "$as_dir" && as_dir=.
+   test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+ done
++IFS=$as_save_IFS
+ 
+        ;;
+   esac
+@@ -16474,100 +17740,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; }; }
++  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
++
++# 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
+-  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
++    ($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
+-  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; }
+-	     CONFIG_SHELL=$as_dir/$as_base
+-	     export CONFIG_SHELL
+-	     exec "$CONFIG_SHELL" "$0" ${1+"$@"}
+-	   fi;;
+-	 esac
+-       done
+-done
+-;;
+-  esac
++  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 before each line; the second 'sed' does the real
+-  # work.  The second script uses 'N' to pair each line-number line
+-  # with the numbered line, and appends trailing '-' during
+-  # substitution so that $LINENO is not a special case at line end.
++  # 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
+-  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
+-  sed '=' <$as_myself |
++  # 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
+-      s,$,-,
+       : loop
+-      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
++      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
+       t loop
+-      s,-$,,
+-      s,^['$as_cr_digits']*\n,,
++      s/-\n.*//
+     ' >$as_me.lineno &&
+-  chmod +x $as_me.lineno ||
+-    { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
+-echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
++  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 sensible to this).
+-  . ./$as_me.lineno
++  # original and so on.  Autoconf is especially sensitive to this).
++  . "./$as_me.lineno"
+   # Exit status is that of the last command.
+   exit
+ }
+ 
+ 
+-case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
+-  *c*,-n*) ECHO_N= ECHO_C='
+-' ECHO_T='	' ;;
+-  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
+-  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
++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; then
++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
+-  # We could just check for DJGPP; but this test a) works b) is more generic
+-  # 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
++  # ... 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$$.file
++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=:
+@@ -16576,7 +17903,28 @@
+   as_mkdir_p=false
+ fi
+ 
+-as_executable_p="test -f"
++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'"
+@@ -16585,31 +17933,14 @@
+ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+ 
+ 
+-# IFS
+-# We need space, tab and new line, in precisely that order.
+-as_nl='
+-'
+-IFS=" 	$as_nl"
+-
+-# CDPATH.
+-$as_unset CDPATH
+-
+ exec 6>&1
+ 
+-# Open the log real soon, to keep \$[0] and so on meaningful, and to
++# 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.  Logging --version etc. is OK.
+-exec 5>>config.log
+-{
+-  echo
+-  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
+-## Running $as_me. ##
+-_ASBOX
+-} >&5
+-cat >&5 <<_CSEOF
+-
++# values after options handling.
++ac_log="
+ This file was extended by Lustre $as_me 1.6.7.2, which was
+-generated by GNU Autoconf 2.59.  Invocation command line was
++generated by GNU Autoconf 2.61.  Invocation command line was
+ 
+   CONFIG_FILES    = $CONFIG_FILES
+   CONFIG_HEADERS  = $CONFIG_HEADERS
+@@ -16617,30 +17948,20 @@
+   CONFIG_COMMANDS = $CONFIG_COMMANDS
+   $ $0 $@
+ 
+-_CSEOF
+-echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
+-echo >&5
++on `(hostname || uname -n) 2>/dev/null | sed 1q`
++"
++
+ _ACEOF
+ 
++cat >>$CONFIG_STATUS <<_ACEOF
+ # Files that config.status was made for.
+-if test -n "$ac_config_files"; then
+-  echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
+-fi
+-
+-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_commands"; then
+-  echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
+-fi
++_ACEOF
+ 
+ cat >>$CONFIG_STATUS <<\_ACEOF
+-
+ ac_cs_usage="\
+ \`$as_me' instantiates files from templates according to the
+ current configuration.
+@@ -16648,7 +17969,7 @@
+ Usage: $0 [OPTIONS] [FILE]...
+ 
+   -h, --help       print this help, then exit
+-  -V, --version    print version number, 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
+@@ -16667,19 +17988,21 @@
+ $config_commands
+ 
+ Report bugs to <bug-autoconf at gnu.org>."
+-_ACEOF
+ 
++_ACEOF
+ cat >>$CONFIG_STATUS <<_ACEOF
+ ac_cs_version="\\
+ Lustre config.status 1.6.7.2
+-configured by $0, generated by GNU Autoconf 2.59,
+-  with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
++configured by $0, generated by GNU Autoconf 2.61,
++  with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
+ 
+-Copyright (C) 2003 Free Software Foundation, Inc.
++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."
+-srcdir=$srcdir
+-INSTALL="$INSTALL"
++
++ac_pwd='$ac_pwd'
++srcdir='$srcdir'
++INSTALL='$INSTALL'
+ _ACEOF
+ 
+ cat >>$CONFIG_STATUS <<\_ACEOF
+@@ -16690,39 +18013,24 @@
+ do
+   case $1 in
+   --*=*)
+-    ac_option=`expr "x$1" : 'x\([^=]*\)='`
+-    ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
++    ac_option=`expr "X$1" : 'X\([^=]*\)='`
++    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
+     ac_shift=:
+     ;;
+-  -*)
++  *)
+     ac_option=$1
+     ac_optarg=$2
+     ac_shift=shift
+     ;;
+-  *) # This is not an option, so the user has probably given explicit
+-     # arguments.
+-     ac_option=$1
+-     ac_need_defaults=false;;
+   esac
+ 
+   case $ac_option in
+   # Handling of the options.
+-_ACEOF
+-cat >>$CONFIG_STATUS <<\_ACEOF
+   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
+     ac_cs_recheck=: ;;
+-  --version | --vers* | -V )
+-    echo "$ac_cs_version"; exit 0 ;;
+-  --he | --h)
+-    # Conflict between --help and --header
+-    { { echo "$as_me:$LINENO: error: ambiguous option: $1
+-Try \`$0 --help' for more information." >&5
+-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 0 ;;
+-  --debug | --d* | -d )
++  --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
+@@ -16732,18 +18040,24 @@
+     $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:$LINENO: error: unrecognized option: $1
+-Try \`$0 --help' for more information." >&5
+-echo "$as_me: error: unrecognized option: $1
+-Try \`$0 --help' for more information." >&2;}
++  -*) { 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_config_targets="$ac_config_targets $1"
++     ac_need_defaults=false ;;
+ 
+   esac
+   shift
+@@ -16759,28 +18073,40 @@
+ _ACEOF
+ cat >>$CONFIG_STATUS <<_ACEOF
+ if \$ac_cs_recheck; then
+-  echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
+-  exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
++  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 section.
++# 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
+-  # Handling of arguments.
++  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" ;;
+@@ -16894,14 +18220,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" ;;
++
+   *) { { 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
+@@ -16913,508 +18239,650 @@
+ fi
+ 
+ # Have a temporary directory for convenience.  Make it in the build tree
+-# simply because there is no reason to put it here, and in addition,
++# simply because there is no reason against having it here, and in addition,
+ # creating and moving files from /tmp can sometimes cause problems.
+-# Create a temporary directory, and hook for its removal unless debugging.
++# 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 ||
+ {
+-  trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
++  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 -q "./confstatXXXXXX") 2>/dev/null` &&
++  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
+   test -n "$tmp" && test -d "$tmp"
+ }  ||
+ {
+-  tmp=./confstat$$-$RANDOM
+-  (umask 077 && mkdir $tmp)
++  tmp=./conf$$-$RANDOM
++  (umask 077 && mkdir "$tmp")
+ } ||
+ {
+    echo "$me: cannot create a temporary directory in ." >&2
+    { (exit 1); exit 1; }
+ }
+ 
+-_ACEOF
+-
+-cat >>$CONFIG_STATUS <<_ACEOF
+-
+ #
+-# CONFIG_FILES section.
++# 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
+-  # Protect against being on the right side of a sed subst in config.status.
+-  sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
+-   s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
+-s, at SHELL@,$SHELL,;t t
+-s, at PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
+-s, at PACKAGE_NAME@,$PACKAGE_NAME,;t t
+-s, at PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
+-s, at PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
+-s, at PACKAGE_STRING@,$PACKAGE_STRING,;t t
+-s, at PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
+-s, at exec_prefix@,$exec_prefix,;t t
+-s, at prefix@,$prefix,;t t
+-s, at program_transform_name@,$program_transform_name,;t t
+-s, at bindir@,$bindir,;t t
+-s, at sbindir@,$sbindir,;t t
+-s, at libexecdir@,$libexecdir,;t t
+-s, at datadir@,$datadir,;t t
+-s, at sysconfdir@,$sysconfdir,;t t
+-s, at sharedstatedir@,$sharedstatedir,;t t
+-s, at localstatedir@,$localstatedir,;t t
+-s, at libdir@,$libdir,;t t
+-s, at includedir@,$includedir,;t t
+-s, at oldincludedir@,$oldincludedir,;t t
+-s, at infodir@,$infodir,;t t
+-s, at mandir@,$mandir,;t t
+-s, at build_alias@,$build_alias,;t t
+-s, at host_alias@,$host_alias,;t t
+-s, at target_alias@,$target_alias,;t t
+-s, at DEFS@,$DEFS,;t t
+-s, at ECHO_C@,$ECHO_C,;t t
+-s, at ECHO_N@,$ECHO_N,;t t
+-s, at ECHO_T@,$ECHO_T,;t t
+-s, at LIBS@,$LIBS,;t t
+-s, at AC_LUSTRE_MAJOR@,$AC_LUSTRE_MAJOR,;t t
+-s, at AC_LUSTRE_MINOR@,$AC_LUSTRE_MINOR,;t t
+-s, at AC_LUSTRE_PATCH@,$AC_LUSTRE_PATCH,;t t
+-s, at AC_LUSTRE_FIX@,$AC_LUSTRE_FIX,;t t
+-s, at AC_LUSTRE_VERSION_STRING@,$AC_LUSTRE_VERSION_STRING,;t t
+-s, at AC_LUSTRE_VER_ALLOWED_OFFSET@,$AC_LUSTRE_VER_ALLOWED_OFFSET,;t t
+-s, at AC_LUSTRE_LIB_VER_OFFSET_WARN@,$AC_LUSTRE_LIB_VER_OFFSET_WARN,;t t
+-s, at AC_LUSTRE_CLI_VER_OFFSET_WARN@,$AC_LUSTRE_CLI_VER_OFFSET_WARN,;t t
+-s, at AC_LUSTRE_CLIENT_URN@,$AC_LUSTRE_CLIENT_URN,;t t
+-s, at AC_LUSTRE_MDS_URN@,$AC_LUSTRE_MDS_URN,;t t
+-s, at AC_LUSTRE_MGS_URN@,$AC_LUSTRE_MGS_URN,;t t
+-s, at AC_LUSTRE_OSS_URN@,$AC_LUSTRE_OSS_URN,;t t
+-s, at LDISKFS_ENABLED_TRUE@,$LDISKFS_ENABLED_TRUE,;t t
+-s, at LDISKFS_ENABLED_FALSE@,$LDISKFS_ENABLED_FALSE,;t t
+-s, at build@,$build,;t t
+-s, at build_cpu@,$build_cpu,;t t
+-s, at build_vendor@,$build_vendor,;t t
+-s, at build_os@,$build_os,;t t
+-s, at host@,$host,;t t
+-s, at host_cpu@,$host_cpu,;t t
+-s, at host_vendor@,$host_vendor,;t t
+-s, at host_os@,$host_os,;t t
+-s, at target@,$target,;t t
+-s, at target_cpu@,$target_cpu,;t t
+-s, at target_vendor@,$target_vendor,;t t
+-s, at target_os@,$target_os,;t t
+-s, at INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
+-s, at INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
+-s, at INSTALL_DATA@,$INSTALL_DATA,;t t
+-s, at CYGPATH_W@,$CYGPATH_W,;t t
+-s, at PACKAGE@,$PACKAGE,;t t
+-s, at VERSION@,$VERSION,;t t
+-s, at ACLOCAL@,$ACLOCAL,;t t
+-s, at AUTOCONF@,$AUTOCONF,;t t
+-s, at AUTOMAKE@,$AUTOMAKE,;t t
+-s, at AUTOHEADER@,$AUTOHEADER,;t t
+-s, at MAKEINFO@,$MAKEINFO,;t t
+-s, at AMTAR@,$AMTAR,;t t
+-s, at install_sh@,$install_sh,;t t
+-s, at STRIP@,$STRIP,;t t
+-s, at ac_ct_STRIP@,$ac_ct_STRIP,;t t
+-s, at INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t
+-s, at AWK@,$AWK,;t t
+-s, at SET_MAKE@,$SET_MAKE,;t t
+-s, at am__leading_dot@,$am__leading_dot,;t t
+-s, at CC@,$CC,;t t
+-s, at CFLAGS@,$CFLAGS,;t t
+-s, at LDFLAGS@,$LDFLAGS,;t t
+-s, at CPPFLAGS@,$CPPFLAGS,;t t
+-s, at ac_ct_CC@,$ac_ct_CC,;t t
+-s, at EXEEXT@,$EXEEXT,;t t
+-s, at OBJEXT@,$OBJEXT,;t t
+-s, at DEPDIR@,$DEPDIR,;t t
+-s, at am__include@,$am__include,;t t
+-s, at am__quote@,$am__quote,;t t
+-s, at AMDEP_TRUE@,$AMDEP_TRUE,;t t
+-s, at AMDEP_FALSE@,$AMDEP_FALSE,;t t
+-s, at AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t
+-s, at CCDEPMODE@,$CCDEPMODE,;t t
+-s, at am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t
+-s, at am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t
+-s, at lb_target_os@,$lb_target_os,;t t
+-s, at LIBCFS_SUBDIR@,$LIBCFS_SUBDIR,;t t
+-s, at LIBCFS_INCLUDE_DIR@,$LIBCFS_INCLUDE_DIR,;t t
+-s, at INCLUDE_RULES@,$INCLUDE_RULES,;t t
+-s, at docdir@,$docdir,;t t
+-s, at LUSTRE@,$LUSTRE,;t t
+-s, at rootsbindir@,$rootsbindir,;t t
+-s, at demodir@,$demodir,;t t
+-s, at pkgexampledir@,$pkgexampledir,;t t
+-s, at RANLIB@,$RANLIB,;t t
+-s, at ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
+-s, at CPP@,$CPP,;t t
+-s, at EGREP@,$EGREP,;t t
+-s, at LLCPPFLAGS@,$LLCPPFLAGS,;t t
+-s, at LLCFLAGS@,$LLCFLAGS,;t t
+-s, at EXTRA_KCFLAGS@,$EXTRA_KCFLAGS,;t t
+-s, at enable_uoss@,$enable_uoss,;t t
+-s, at POSIX_OSD_ENABLED_TRUE@,$POSIX_OSD_ENABLED_TRUE,;t t
+-s, at POSIX_OSD_ENABLED_FALSE@,$POSIX_OSD_ENABLED_FALSE,;t t
+-s, at ENABLE_DOC@,$ENABLE_DOC,;t t
+-s, at ENABLE_INIT_SCRIPTS@,$ENABLE_INIT_SCRIPTS,;t t
+-s, at LINUX@,$LINUX,;t t
+-s, at LINUX_OBJ@,$LINUX_OBJ,;t t
+-s, at LINUX_CONFIG@,$LINUX_CONFIG,;t t
+-s, at ARCH_UM@,$ARCH_UM,;t t
+-s, at UML_CFLAGS@,$UML_CFLAGS,;t t
+-s, at MODULE_TARGET@,$MODULE_TARGET,;t t
+-s, at linux25@,$linux25,;t t
+-s, at KMODEXT@,$KMODEXT,;t t
+-s, at LINUXRELEASE@,$LINUXRELEASE,;t t
+-s, at moduledir@,$moduledir,;t t
+-s, at modulefsdir@,$modulefsdir,;t t
+-s, at modulenetdir@,$modulenetdir,;t t
+-s, at RELEASE@,$RELEASE,;t t
+-s, at SYMVERFILE@,$SYMVERFILE,;t t
+-s, at QSWCPPFLAGS@,$QSWCPPFLAGS,;t t
+-s, at QSWLND@,$QSWLND,;t t
+-s, at GMCPPFLAGS@,$GMCPPFLAGS,;t t
+-s, at GMLIBS@,$GMLIBS,;t t
+-s, at GMLND@,$GMLND,;t t
+-s, at OPENIBCPPFLAGS@,$OPENIBCPPFLAGS,;t t
+-s, at OPENIBLND@,$OPENIBLND,;t t
+-s, at CIBCPPFLAGS@,$CIBCPPFLAGS,;t t
+-s, at CIBLND@,$CIBLND,;t t
+-s, at VIBCPPFLAGS@,$VIBCPPFLAGS,;t t
+-s, at VIBLND@,$VIBLND,;t t
+-s, at IIBCPPFLAGS@,$IIBCPPFLAGS,;t t
+-s, at IIBLND@,$IIBLND,;t t
+-s, at EXTRA_LNET_INCLUDE@,$EXTRA_LNET_INCLUDE,;t t
+-s, at O2IBCPPFLAGS@,$O2IBCPPFLAGS,;t t
+-s, at O2IBLND@,$O2IBLND,;t t
+-s, at RACPPFLAGS@,$RACPPFLAGS,;t t
+-s, at RALND@,$RALND,;t t
+-s, at PTLLNDCPPFLAGS@,$PTLLNDCPPFLAGS,;t t
+-s, at PTLLND@,$PTLLND,;t t
+-s, at MXCPPFLAGS@,$MXCPPFLAGS,;t t
+-s, at MXLIBS@,$MXLIBS,;t t
+-s, at MXLND@,$MXLND,;t t
+-s, at BACKINGFS@,$BACKINGFS,;t t
+-s, at EXTRA_KLDFLAGS@,$EXTRA_KLDFLAGS,;t t
+-s, at EXTRA_KLIBS@,$EXTRA_KLIBS,;t t
+-s, at kextdir@,$kextdir,;t t
+-s, at plistdir@,$plistdir,;t t
+-s, at macosdir@,$macosdir,;t t
+-s, at DMU_SRC@,$DMU_SRC,;t t
+-s, at subdirs@,$subdirs,;t t
+-s, at SPL_DIR@,$SPL_DIR,;t t
+-s, at ZFS_DIR@,$ZFS_DIR,;t t
+-s, at spl_src@,$spl_src,;t t
+-s, at DMU_OSD_ENABLED_TRUE@,$DMU_OSD_ENABLED_TRUE,;t t
+-s, at DMU_OSD_ENABLED_FALSE@,$DMU_OSD_ENABLED_FALSE,;t t
+-s, at KDMU_TRUE@,$KDMU_TRUE,;t t
+-s, at KDMU_FALSE@,$KDMU_FALSE,;t t
+-s, at SNMP_DIST_SUBDIR@,$SNMP_DIST_SUBDIR,;t t
+-s, at SNMP_SUBDIR@,$SNMP_SUBDIR,;t t
+-s, at LDISKFS_DIR@,$LDISKFS_DIR,;t t
+-s, at LDISKFS_SUBDIR@,$LDISKFS_SUBDIR,;t t
+-s, at LUSTREIOKIT_SUBDIR@,$LUSTREIOKIT_SUBDIR,;t t
+-s, at MPI_ROOT@,$MPI_ROOT,;t t
+-s, at LIBREADLINE@,$LIBREADLINE,;t t
+-s, at LIBEFENCE@,$LIBEFENCE,;t t
+-s, at LIBWRAP@,$LIBWRAP,;t t
+-s, at PTHREAD_LIBS@,$PTHREAD_LIBS,;t t
+-s, at ENABLE_LIBPTHREAD@,$ENABLE_LIBPTHREAD,;t t
+-s, at CAP_LIBS@,$CAP_LIBS,;t t
+-s, at UPTLLND@,$UPTLLND,;t t
+-s, at USOCKLND@,$USOCKLND,;t t
+-s, at ZLIB@,$ZLIB,;t t
+-s, at NET_SNMP_CONFIG@,$NET_SNMP_CONFIG,;t t
+-s, at NET_SNMP_CFLAGS@,$NET_SNMP_CFLAGS,;t t
+-s, at NET_SNMP_LIBS@,$NET_SNMP_LIBS,;t t
+-s, at agentdir@,$agentdir,;t t
+-s, at mibdir@,$mibdir,;t t
+-s, at MODULES_TRUE@,$MODULES_TRUE,;t t
+-s, at MODULES_FALSE@,$MODULES_FALSE,;t t
+-s, at UTILS_TRUE@,$UTILS_TRUE,;t t
+-s, at UTILS_FALSE@,$UTILS_FALSE,;t t
+-s, at TESTS_TRUE@,$TESTS_TRUE,;t t
+-s, at TESTS_FALSE@,$TESTS_FALSE,;t t
+-s, at DOC_TRUE@,$DOC_TRUE,;t t
+-s, at DOC_FALSE@,$DOC_FALSE,;t t
+-s, at INIT_SCRIPTS_TRUE@,$INIT_SCRIPTS_TRUE,;t t
+-s, at INIT_SCRIPTS_FALSE@,$INIT_SCRIPTS_FALSE,;t t
+-s, at LINUX_TRUE@,$LINUX_TRUE,;t t
+-s, at LINUX_FALSE@,$LINUX_FALSE,;t t
+-s, at DARWIN_TRUE@,$DARWIN_TRUE,;t t
+-s, at DARWIN_FALSE@,$DARWIN_FALSE,;t t
+-s, at CRAY_XT3_TRUE@,$CRAY_XT3_TRUE,;t t
+-s, at CRAY_XT3_FALSE@,$CRAY_XT3_FALSE,;t t
+-s, at SUNOS_TRUE@,$SUNOS_TRUE,;t t
+-s, at SUNOS_FALSE@,$SUNOS_FALSE,;t t
+-s, at LIBSYSIO_SUBDIR@,$LIBSYSIO_SUBDIR,;t t
+-s, at SYSIO@,$SYSIO,;t t
+-s, at LINUX25_TRUE@,$LINUX25_TRUE,;t t
+-s, at LINUX25_FALSE@,$LINUX25_FALSE,;t t
+-s, at BUILD_QSWLND_TRUE@,$BUILD_QSWLND_TRUE,;t t
+-s, at BUILD_QSWLND_FALSE@,$BUILD_QSWLND_FALSE,;t t
+-s, at BUILD_GMLND_TRUE@,$BUILD_GMLND_TRUE,;t t
+-s, at BUILD_GMLND_FALSE@,$BUILD_GMLND_FALSE,;t t
+-s, at BUILD_MXLND_TRUE@,$BUILD_MXLND_TRUE,;t t
+-s, at BUILD_MXLND_FALSE@,$BUILD_MXLND_FALSE,;t t
+-s, at BUILD_O2IBLND_TRUE@,$BUILD_O2IBLND_TRUE,;t t
+-s, at BUILD_O2IBLND_FALSE@,$BUILD_O2IBLND_FALSE,;t t
+-s, at BUILD_OPENIBLND_TRUE@,$BUILD_OPENIBLND_TRUE,;t t
+-s, at BUILD_OPENIBLND_FALSE@,$BUILD_OPENIBLND_FALSE,;t t
+-s, at BUILD_CIBLND_TRUE@,$BUILD_CIBLND_TRUE,;t t
+-s, at BUILD_CIBLND_FALSE@,$BUILD_CIBLND_FALSE,;t t
+-s, at BUILD_IIBLND_TRUE@,$BUILD_IIBLND_TRUE,;t t
+-s, at BUILD_IIBLND_FALSE@,$BUILD_IIBLND_FALSE,;t t
+-s, at BUILD_VIBLND_TRUE@,$BUILD_VIBLND_TRUE,;t t
+-s, at BUILD_VIBLND_FALSE@,$BUILD_VIBLND_FALSE,;t t
+-s, at BUILD_RALND_TRUE@,$BUILD_RALND_TRUE,;t t
+-s, at BUILD_RALND_FALSE@,$BUILD_RALND_FALSE,;t t
+-s, at BUILD_PTLLND_TRUE@,$BUILD_PTLLND_TRUE,;t t
+-s, at BUILD_PTLLND_FALSE@,$BUILD_PTLLND_FALSE,;t t
+-s, at BUILD_UPTLLND_TRUE@,$BUILD_UPTLLND_TRUE,;t t
+-s, at BUILD_UPTLLND_FALSE@,$BUILD_UPTLLND_FALSE,;t t
+-s, at BUILD_USOCKLND_TRUE@,$BUILD_USOCKLND_TRUE,;t t
+-s, at BUILD_USOCKLND_FALSE@,$BUILD_USOCKLND_FALSE,;t t
+-s, at LIBLUSTRE_TRUE@,$LIBLUSTRE_TRUE,;t t
+-s, at LIBLUSTRE_FALSE@,$LIBLUSTRE_FALSE,;t t
+-s, at USE_QUILT_TRUE@,$USE_QUILT_TRUE,;t t
+-s, at USE_QUILT_FALSE@,$USE_QUILT_FALSE,;t t
+-s, at LIBLUSTRE_TESTS_TRUE@,$LIBLUSTRE_TESTS_TRUE,;t t
+-s, at LIBLUSTRE_TESTS_FALSE@,$LIBLUSTRE_TESTS_FALSE,;t t
+-s, at MPITESTS_TRUE@,$MPITESTS_TRUE,;t t
+-s, at MPITESTS_FALSE@,$MPITESTS_FALSE,;t t
+-s, at CLIENT_TRUE@,$CLIENT_TRUE,;t t
+-s, at CLIENT_FALSE@,$CLIENT_FALSE,;t t
+-s, at SERVER_TRUE@,$SERVER_TRUE,;t t
+-s, at SERVER_FALSE@,$SERVER_FALSE,;t t
+-s, at QUOTA_TRUE@,$QUOTA_TRUE,;t t
+-s, at QUOTA_FALSE@,$QUOTA_FALSE,;t t
+-s, at BLKID_TRUE@,$BLKID_TRUE,;t t
+-s, at BLKID_FALSE@,$BLKID_FALSE,;t t
+-s, at EXT2FS_DEVEL_TRUE@,$EXT2FS_DEVEL_TRUE,;t t
+-s, at EXT2FS_DEVEL_FALSE@,$EXT2FS_DEVEL_FALSE,;t t
+-s, at LIBPTHREAD_TRUE@,$LIBPTHREAD_TRUE,;t t
+-s, at LIBPTHREAD_FALSE@,$LIBPTHREAD_FALSE,;t t
+-s, at ac_configure_args@,$ac_configure_args,;t t
+-s, at MOSTLYCLEANFILES@,$MOSTLYCLEANFILES,;t t
+-s, at LIBOBJS@,$LIBOBJS,;t t
+-s, at LTLIBOBJS@,$LTLIBOBJS,;t t
+-CEOF
++if test -n "$CONFIG_FILES"; then
+ 
+ _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.
+-  ac_max_sed_lines=48
+-  ac_sed_frag=1 # Number of current file.
+-  ac_beg=1 # First line for current file.
+-  ac_end=$ac_max_sed_lines # Line after last line for current file.
+-  ac_more_lines=:
+-  ac_sed_cmds=
+-  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
++
++
++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
+-      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
++    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"
++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_DIR!$SPL_DIR$ac_delim
++ZFS_DIR!$ZFS_DIR$ac_delim
++spl_src!$spl_src$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
++LUSTREIOKIT_SUBDIR!$LUSTREIOKIT_SUBDIR$ac_delim
++MPI_ROOT!$MPI_ROOT$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
++DOC_FALSE!$DOC_FALSE$ac_delim
++INIT_SCRIPTS_TRUE!$INIT_SCRIPTS_TRUE$ac_delim
++INIT_SCRIPTS_FALSE!$INIT_SCRIPTS_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_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
++    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`
++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
++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
++LIBOBJS!$LIBOBJS$ac_delim
++LTLIBOBJS!$LTLIBOBJS$ac_delim
++_ACEOF
++
++  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 60; 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
+-  if test -z "$ac_sed_cmds"; then
+-    ac_sed_cmds=cat
++
++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"
+ 
++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
+-for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
+-  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
+-  case $ac_file in
+-  - | *:- | *:-:* ) # input from stdin
+-	cat >$tmp/stdin
+-	ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+-  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+-  * )   ac_file_in=$ac_file.in ;;
++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
+ 
+-  # 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])
++    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 ||
++	 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; }
++    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^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"
++  { 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 test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
++    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 ||
++	 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; }
++    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 ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
+-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
++    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=.
+ 
+-if test "$ac_dir" != .; then
++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=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+-else
+-  ac_dir_suffix= ac_top_builddir=
+-fi
++  # 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
+-  .)  # No --srcdir option.  We are building in place.
++  .)  # We are building in place.
+     ac_srcdir=.
+-    if test -z "$ac_top_builddir"; then
+-       ac_top_srcdir=.
+-    else
+-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+-    fi ;;
+-  [\\/]* | ?:[\\/]* )  # Absolute path.
++    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 ;;
+-  *) # Relative path.
+-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
++    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
+ 
+-# Do not use `cd foo && pwd` to compute absolute paths, because
+-# the directories may not exist.
+-case `pwd` in
+-.) ac_abs_builddir="$ac_dir";;
+-*)
+-  case "$ac_dir" in
+-  .) ac_abs_builddir=`pwd`;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
+-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_builddir=${ac_top_builddir}.;;
+-*)
+-  case ${ac_top_builddir}. in
+-  .) ac_abs_top_builddir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
+-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_srcdir=$ac_srcdir;;
+-*)
+-  case $ac_srcdir in
+-  .) ac_abs_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
+-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_srcdir=$ac_top_srcdir;;
+-*)
+-  case $ac_top_srcdir in
+-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
+-  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
+-  esac;;
+-esac
+ 
++  case $ac_mode in
++  :F)
++  #
++  # CONFIG_FILE
++  #
+ 
+   case $INSTALL in
+   [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
+-  *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
++  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
+   esac
++_ACEOF
+ 
+-  if test x"$ac_file" != x-; then
+-    { echo "$as_me:$LINENO: creating $ac_file" >&5
+-echo "$as_me: creating $ac_file" >&6;}
+-    rm -f "$ac_file"
+-  fi
+-  # 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.  */
+-  if test x"$ac_file" = x-; then
+-    configure_input=
+-  else
+-    configure_input="$ac_file.  "
+-  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=:
+-    for f in $ac_file_in; do
+-      case $f in
+-      -) echo $tmp/stdin ;;
+-      [\\/$]*)
+-	 # Absolute (can't be DOS-style, as IFS=:)
+-	 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+-echo "$as_me: error: cannot find input file: $f" >&2;}
+-   { (exit 1); exit 1; }; }
+-	 echo "$f";;
+-      *) # Relative
+-	 if test -f "$f"; then
+-	   # Build tree
+-	   echo "$f"
+-	 elif test -f "$srcdir/$f"; then
+-	   # Source tree
+-	   echo "$srcdir/$f"
+-	 else
+-	   # /dev/null tree
+-	   { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+-echo "$as_me: error: cannot find input file: $f" >&2;}
+-   { (exit 1); exit 1; }; }
+-	 fi;;
++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
+-    done` || { (exit 1); exit 1; }
+ _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
+@@ -17422,248 +18890,130 @@
+ cat >>$CONFIG_STATUS <<\_ACEOF
+ :t
+ /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
+-s, at configure_input@,$configure_input,;t t
+-s, at srcdir@,$ac_srcdir,;t t
+-s, at abs_srcdir@,$ac_abs_srcdir,;t t
+-s, at top_srcdir@,$ac_top_srcdir,;t t
+-s, at abs_top_srcdir@,$ac_abs_top_srcdir,;t t
+-s, at builddir@,$ac_builddir,;t t
+-s, at abs_builddir@,$ac_abs_builddir,;t t
+-s, at top_builddir@,$ac_top_builddir,;t t
+-s, at abs_top_builddir@,$ac_abs_top_builddir,;t t
+-s, at INSTALL@,$ac_INSTALL,;t t
+-" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
+-  rm -f $tmp/stdin
+-  if test x"$ac_file" != x-; then
+-    mv $tmp/out $ac_file
+-  else
+-    cat $tmp/out
+-    rm -f $tmp/out
+-  fi
++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
+ 
+-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"; } &&
++  { 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 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
+-  - | *:- | *:-:* ) # input from stdin
+-	cat >$tmp/stdin
+-	ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+-  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+-  * )   ac_file_in=$ac_file.in ;;
+-  esac
+-
+-  test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
+-echo "$as_me: creating $ac_file" >&6;}
+-
+-  # First look for the input files in the build tree, otherwise in the
+-  # src tree.
+-  ac_file_inputs=`IFS=:
+-    for f in $ac_file_in; do
+-      case $f in
+-      -) echo $tmp/stdin ;;
+-      [\\/$]*)
+-	 # Absolute (can't be DOS-style, as IFS=:)
+-	 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+-echo "$as_me: error: cannot find input file: $f" >&2;}
+-   { (exit 1); exit 1; }; }
+-	 # Do quote $f, to prevent DOS paths from being IFS'd.
+-	 echo "$f";;
+-      *) # Relative
+-	 if test -f "$f"; then
+-	   # Build tree
+-	   echo "$f"
+-	 elif test -f "$srcdir/$f"; then
+-	   # Source tree
+-	   echo "$srcdir/$f"
+-	 else
+-	   # /dev/null tree
+-	   { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+-echo "$as_me: error: cannot find input file: $f" >&2;}
+-   { (exit 1); exit 1; }; }
+-	 fi;;
+-      esac
+-    done` || { (exit 1); exit 1; }
+-  # Remove the trailing spaces.
+-  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'
+-# templates, and the second `#undef' templates.
+-# And first: Protect against being on the right side of a sed subst in
+-# config.status.  Protect against being in an unquoted here document
+-# in config.status.
+-rm -f conftest.defines conftest.undefs
+-# Using a here document instead of a string reduces the quoting nightmare.
+-# Putting comments in sed scripts is not portable.
+-#
+-# `end' is used to avoid that the second main sed command (meant for
+-# 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
+-t clear
+-: clear
+-s,^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*\)\(([^)]*)\)[	 ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
+-t end
+-s,^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 ][^	 ]*\)[	 ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
+-: end
+-_ACEOF
+-# If some macros were called several times there might be several times
+-# the same #defines, which is useless.  Nevertheless, we may not want to
+-# sort them, since we want the *last* AC-DEFINE to be honored.
+-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
++	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
+ # on some systems where configure will not decide to define it.
+-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
+-echo '  if grep "^[	 ]*#[	 ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
+-echo '  # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
+-echo '  :' >>$CONFIG_STATUS
+-rm -f conftest.tail
+-while grep . conftest.defines >/dev/null
++# 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 limited-size here document to $tmp/defines.sed.
+-  echo '  cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
+-  # Speed up: don't consider the non `#define' lines.
+-  echo '/^[	 ]*#[	 ]*define/!b' >>$CONFIG_STATUS
+-  # Work around the forget-to-reset-the-flag bug.
+-  echo 't clr' >>$CONFIG_STATUS
+-  echo ': clr' >>$CONFIG_STATUS
+-  sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
++  # 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 $tmp/in >$tmp/out
+-  rm -f $tmp/in
+-  mv $tmp/out $tmp/in
+-' >>$CONFIG_STATUS
+-  sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
++    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
+-echo '  fi # grep' >>$CONFIG_STATUS
+-echo >>$CONFIG_STATUS
+-
+-# Break up conftest.undefs 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 #undef templates' >>$CONFIG_STATUS
+-rm -f conftest.tail
+-while grep . conftest.undefs >/dev/null
+-do
+-  # Write a limited-size here document to $tmp/undefs.sed.
+-  echo '  cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
+-  # Speed up: don't consider the non `#undef'
+-  echo '/^[	 ]*#[	 ]*undef/!b' >>$CONFIG_STATUS
+-  # Work around the forget-to-reset-the-flag bug.
+-  echo 't clr' >>$CONFIG_STATUS
+-  echo ': clr' >>$CONFIG_STATUS
+-  sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
+-  echo 'CEOF
+-  sed -f $tmp/undefs.sed $tmp/in >$tmp/out
+-  rm -f $tmp/in
+-  mv $tmp/out $tmp/in
+-' >>$CONFIG_STATUS
+-  sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
+-  rm -f conftest.undefs
+-  mv conftest.tail conftest.undefs
+-done
+-rm -f conftest.undefs
++rm -f conftest.defines conftest.tail
+ 
++echo "ac_result=$ac_in" >>$CONFIG_STATUS
+ cat >>$CONFIG_STATUS <<\_ACEOF
+-  # 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.  */
+-  if test x"$ac_file" = x-; then
+-    echo "/* Generated by configure.  */" >$tmp/config.h
+-  else
+-    echo "/* $ac_file.  Generated by configure.  */" >$tmp/config.h
+-  fi
+-  cat $tmp/in >>$tmp/config.h
+-  rm -f $tmp/in
+   if test x"$ac_file" != x-; then
+-    if diff $ac_file $tmp/config.h >/dev/null 2>&1; 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
+-      ac_dir=`(dirname "$ac_file") 2>/dev/null ||
+-$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'`
+-      { if $as_mkdir_p; then
+-    mkdir -p "$ac_dir"
+-  else
+-    as_dir="$ac_dir"
+-    as_dirs=
+-    while test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
+-$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'`
+-    done
+-    test ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
+-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
+-   { (exit 1); exit 1; }; }; }
+-
+       rm -f $ac_file
+-      mv $tmp/config.h $ac_file
++      mv "$tmp/config.h" $ac_file
+     fi
+   else
+-    cat $tmp/config.h
+-    rm -f $tmp/config.h
++    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
+@@ -17674,135 +19024,39 @@
+       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
+   esac
+ done
+-echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null ||
++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 ||
++	 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; }
++    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\/\)[^/].*/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\/\)$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\).*/{
++	    s//\1/
++	    q
++	  }
+   	  s/.*/./; q'`/stamp-h$_am_stamp_count
+-done
+-_ACEOF
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-
+-#
+-# CONFIG_COMMANDS section.
+-#
+-for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
+-  ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
+-  ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-  ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
+-$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+-	 X"$ac_dest" : 'X\(//\)[^/]' \| \
+-	 X"$ac_dest" : 'X\(//\)$' \| \
+-	 X"$ac_dest" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X"$ac_dest" |
+-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+-  	  /^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"
+-    as_dirs=
+-    while test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
+-$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'`
+-    done
+-    test ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
+-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
+-   { (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
+-
+-case $srcdir in
+-  .)  # No --srcdir option.  We are building in place.
+-    ac_srcdir=.
+-    if test -z "$ac_top_builddir"; then
+-       ac_top_srcdir=.
+-    else
+-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+-    fi ;;
+-  [\\/]* | ?:[\\/]* )  # Absolute path.
+-    ac_srcdir=$srcdir$ac_dir_suffix;
+-    ac_top_srcdir=$srcdir ;;
+-  *) # Relative path.
+-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
+-esac
++ ;;
+ 
+-# Do not use `cd foo && pwd` to compute absolute paths, because
+-# the directories may not exist.
+-case `pwd` in
+-.) ac_abs_builddir="$ac_dir";;
+-*)
+-  case "$ac_dir" in
+-  .) ac_abs_builddir=`pwd`;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
+-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_builddir=${ac_top_builddir}.;;
+-*)
+-  case ${ac_top_builddir}. in
+-  .) ac_abs_top_builddir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
+-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_srcdir=$ac_srcdir;;
+-*)
+-  case $ac_srcdir in
+-  .) ac_abs_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
+-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_srcdir=$ac_top_srcdir;;
+-*)
+-  case $ac_top_srcdir in
+-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
+-  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
+-  esac;;
++  :C)  { echo "$as_me:$LINENO: executing $ac_file commands" >&5
++echo "$as_me: executing $ac_file commands" >&6;}
++ ;;
+ esac
+ 
+ 
+-  { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
+-echo "$as_me: executing $ac_dest commands" >&6;}
+-  case $ac_dest in
+-    depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
++  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.
+@@ -17812,17 +19066,28 @@
+   # 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=`(dirname "$mf") 2>/dev/null ||
++    dirpart=`$as_dirname -- "$mf" ||
+ $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ 	 X"$mf" : 'X\(//\)[^/]' \| \
+ 	 X"$mf" : 'X\(//\)$' \| \
+-	 X"$mf" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
++	 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; }
++    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\/\)[^/].*/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\/\)$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\).*/{
++	    s//\1/
++	    q
++	  }
+   	  s/.*/./; q'`
+   else
+     continue
+@@ -17851,53 +19116,79 @@
+        sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
+     # Make sure the directory exists.
+     test -f "$dirpart/$file" && continue
+-    fdir=`(dirname "$file") 2>/dev/null ||
++    fdir=`$as_dirname -- "$file" ||
+ $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ 	 X"$file" : 'X\(//\)[^/]' \| \
+ 	 X"$file" : 'X\(//\)$' \| \
+-	 X"$file" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
++	 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; }
++    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^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
++    { 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 test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
++    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 ||
++	 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; }
++    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 ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5
+-echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;}
++    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
+-_ACEOF
++done # for ac_tag
+ 
+-cat >>$CONFIG_STATUS <<\_ACEOF
+ 
+ { (exit 0); exit 0; }
+ _ACEOF
+@@ -17934,7 +19225,10 @@
+   # Remove --cache-file and --srcdir arguments so they do not pile up.
+   ac_sub_configure_args=
+   ac_prev=
+-  for ac_arg in $ac_configure_args; do
++  eval "set x $ac_configure_args"
++  shift
++  for ac_arg
++  do
+     if test -n "$ac_prev"; then
+       ac_prev=
+       continue
+@@ -17957,123 +19251,123 @@
+       ac_prev=prefix ;;
+     -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
+       ;;
+-    *) ac_sub_configure_args="$ac_sub_configure_args $ac_arg" ;;
++    *)
++      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_sub_configure_args="--prefix=$prefix $ac_sub_configure_args"
++  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
++    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"
++    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 test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
++    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 ||
++	 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; }
++    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 ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
+-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
++    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=.
+ 
+-if test "$ac_dir" != .; then
++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=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+-else
+-  ac_dir_suffix= ac_top_builddir=
+-fi
++  # 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
+-  .)  # No --srcdir option.  We are building in place.
++  .)  # We are building in place.
+     ac_srcdir=.
+-    if test -z "$ac_top_builddir"; then
+-       ac_top_srcdir=.
+-    else
+-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+-    fi ;;
+-  [\\/]* | ?:[\\/]* )  # Absolute path.
++    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 ;;
+-  *) # Relative path.
+-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
+-esac
+-
+-# Do not use `cd foo && pwd` to compute absolute paths, because
+-# the directories may not exist.
+-case `pwd` in
+-.) ac_abs_builddir="$ac_dir";;
+-*)
+-  case "$ac_dir" in
+-  .) ac_abs_builddir=`pwd`;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
+-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_builddir=${ac_top_builddir}.;;
+-*)
+-  case ${ac_top_builddir}. in
+-  .) ac_abs_top_builddir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
+-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_srcdir=$ac_srcdir;;
+-*)
+-  case $ac_srcdir in
+-  .) ac_abs_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
+-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_srcdir=$ac_top_srcdir;;
+-*)
+-  case $ac_top_srcdir in
+-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) 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
+ 
+ 
+-    cd $ac_dir
++    cd "$ac_dir"
+ 
+     # Check for guested configure; otherwise get Cygnus style configure.
+-    if test -f $ac_srcdir/configure.gnu; then
+-      ac_sub_configure="$SHELL '$ac_srcdir/configure.gnu'"
+-    elif test -f $ac_srcdir/configure; then
+-      ac_sub_configure="$SHELL '$ac_srcdir/configure'"
+-    elif test -f $ac_srcdir/configure.in; then
+-      ac_sub_configure=$ac_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;}
+@@ -18085,21 +19379,21 @@
+       # Make the cache file name correct relative to the subdirectory.
+       case $cache_file in
+       [\\/]* | ?:[\\/]* ) ac_sub_cache_file=$cache_file ;;
+-      *) # Relative path.
+-	ac_sub_cache_file=$ac_top_builddir$cache_file ;;
++      *) # Relative name.
++	ac_sub_cache_file=$ac_top_build_prefix$cache_file ;;
+       esac
+ 
+-      { echo "$as_me:$LINENO: running $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&5
+-echo "$as_me: running $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&6;}
++      { 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 $ac_sub_configure $ac_sub_configure_args \
+-	   --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir ||
++      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
++    cd "$ac_popdir"
+   done
+ fi
+ 
+diff -Nurwd lustre-1.6.7.2.orig/ldiskfs/aclocal.m4 lustre-1.6.7.2/ldiskfs/aclocal.m4
+--- lustre-1.6.7.2.orig/ldiskfs/aclocal.m4	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/ldiskfs/aclocal.m4	2009-08-10 10:05:50.000000000 +0200
+@@ -2173,110 +2173,3 @@
+ fi
+ ])
+ 
+-#
+-# LB_DARWIN_CHECK_FUNCS
+-#
+-# check for functions in the darwin kernel
+-# Note that this is broken for cross compiling
+-#
+-AC_DEFUN([LB_DARWIN_CHECK_FUNCS],
+-[AC_FOREACH([AC_Func], [$1],
+-  [AH_TEMPLATE(AS_TR_CPP(HAVE_[]AC_Func),
+-               [Define to 1 if you have the `]AC_Func[' function.])])dnl
+-for ac_func in $1
+-do
+-AC_MSG_CHECKING([for $1])
+-AS_IF([AC_TRY_COMMAND(nm /mach | grep "[$1]" >/dev/null 2>/dev/null)],[
+-	AC_MSG_RESULT([yes])
+-	AC_DEFINE_UNQUOTED([AS_TR_CPP([HAVE_$ac_func])]) $2
+-],[
+-	AC_MSG_RESULT([no]) $3
+-])dnl
+-done
+-])
+-
+-#
+-# LB_DARWIN_CONDITIONALS
+-#
+-# AM_CONDITIONALs for darwin
+-#
+-AC_DEFUN([LB_DARWIN_CONDITIONALS],
+-[
+-])
+-
+-#
+-# LB_PROG_DARWIN
+-#
+-# darwin tests
+-#
+-AC_DEFUN([LB_PROG_DARWIN],
+-[kernel_framework="/System/Library/Frameworks/Kernel.framework"
+-#
+-# FIXME: there should be a better way to get these than hard coding them
+-#
+-case $target_cpu in 
+-	powerpc*)
+-		EXTRA_KCFLAGS="$EXTRA_KCFLAGS -arch ppc -mtune=G4 -mlong-branch"
+-		EXTRA_KLDFLAGS="-arch ppc"
+-		;;
+-	i?86 | x86_64)
+-		EXTRA_KCFLAGS="$EXTRA_KCFLAGS -arch i386"
+-		EXTRA_KLDFLAGS="-arch i386"
+-		;;
+-esac
+-
+-# Kernel of OS X is not 64bits(even in Tiger), but -m64 can be taken by gcc in Tiger
+-# (Tiger can support 64bits applications), so we have to eliminate -m64 while 
+-# building kextensions for and OS X.
+-CC=`echo $CC | sed -e "s/\-m64//g"`
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -x c -pipe -Wno-trigraphs -fasm-blocks -g -O0"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -Wno-four-char-constants -Wmost -O0"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -fmessage-length=0"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -I$kernel_framework/Headers"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -I$kernel_framework/Headers/bsd"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -I$kernel_framework/PrivateHeaders"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -fno-common -nostdinc -fno-builtin"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -finline -fno-keep-inline-functions"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -force_cpusubtype_ALL -fno-exceptions"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -msoft-float -static"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -DKERNEL -DKERNEL_PRIVATE"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -DDRIVER_PRIVATE -DAPPLE -DNeXT"
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -D__KERNEL__ -D__DARWIN__"
+-#
+-# C flags for Panther/Tiger
+-#
+-case $target_os in
+-        darwin8*)
+-                EXTRA_KCFLAGS="$EXTRA_KCFLAGS -D__DARWIN8__"
+-	;;
+-        darwin7*)
+-                EXTRA_KCFLAGS="$EXTRA_KCFLAGS -ffix-and-continue"
+-        ;;
+-esac
+-
+-#
+-# Debugging flags. Remove!
+-#
+-EXTRA_KCFLAGS="$EXTRA_KCFLAGS -O0 -DMACH_ASSERT=1"
+-EXTRA_KLDFLAGS="$EXTRA_KLDFLAGS -static -nostdlib -r"
+-EXTRA_KLIBS="-lkmodc++ -lkmod -lcc_kext"
+-KMODEXT=""
+-
+-AC_SUBST(EXTRA_KLDFLAGS)
+-AC_SUBST(EXTRA_KLIBS)
+-
+-kextdir='/System/Library/Extensions/$(firstword $(macos_PROGRAMS)).kext'
+-plistdir='$(kextdir)/Contents'
+-macosdir='$(plistdir)/MacOS'
+-
+-AC_SUBST(kextdir)
+-AC_SUBST(plistdir)
+-AC_SUBST(macosdir)
+-
+-LN_PROG_DARWIN
+-
+-LP_PROG_DARWIN
+-
+-LC_PROG_DARWIN
+-])
+-
+diff -Nurwd lustre-1.6.7.2.orig/ldiskfs/autom4te.cache/output.0 lustre-1.6.7.2/ldiskfs/autom4te.cache/output.0
+--- lustre-1.6.7.2.orig/ldiskfs/autom4te.cache/output.0	1970-01-01 01:00:00.000000000 +0100
++++ lustre-1.6.7.2/ldiskfs/autom4te.cache/output.0	2009-08-10 10:05:52.000000000 +0200
+@@ -0,0 +1,7567 @@
++@%:@! /bin/sh
++@%:@ Guess values for system-dependent variables and create Makefiles.
++@%:@ Generated by GNU Autoconf 2.61 for Lustre ldiskfs 3.0.7.1.
++@%:@
++@%:@ 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.7.1'
++PACKAGE_STRING='Lustre ldiskfs 3.0.7.1'
++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
++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.7.1 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.7.1:";;
++   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.
++
++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.7.1
++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.7.1, 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.7.1'
++
++
++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\$(top_builddir)/$LIBCFS_INCLUDE_DIR -I\$(top_srcdir)/$LIBCFS_INCLUDE_DIR-I\$(top_builddir)/lnet/include -I\$(top_srcdir)/lnet/include -I\$(top_builddir)/lustre/include -I\$(top_srcdir)/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; LINUX=$with_linux
++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
++  
++cat >>confdefs.h <<_ACEOF
++@%:@define `echo "HAVE_$LINUX_OBJ/include/linux/autoconf.h" | $as_tr_cpp` 1
++_ACEOF
++
++
++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
++  
++cat >>confdefs.h <<_ACEOF
++@%:@define `echo "HAVE_$LINUX_OBJ/include/linux/version.h" | $as_tr_cpp` 1
++_ACEOF
++
++
++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 (asm doesn't point at asm-um)" >&5
++echo "${ECHO_T}no (asm doesn't point at asm-um)" >&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/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/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/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/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_MAJOR
++		#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/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"
++		{ 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 that SuSe kernel" >&5
++echo $ECHO_N "checking that 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/version.h>
++	
++int
++main (void)
++{
++
++		#ifndef SLE_VERSION_CODE
++		#error "not sles 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/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
++  
++		SUSE_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 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_OBJ $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; }
++	
++
++
++#if test $LINUX_ARCH == "powerpc64"; then
++#	AC_MSG_WARN([set compiler with -m64])
++#	CFLAGS="$CFLAGS -m64"
++#	CC="$CC -m64"
++#fi
++
++{ 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/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/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_PREEMPT" >&5
++echo $ECHO_N "checking if Linux was built with CONFIG_PREEMPT... $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_PREEMPT
++#error CONFIG_PREEMPT 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/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; }
++
++	{ { echo "$as_me:$LINENO: error: Lustre does not support kernels with preempt enabled." >&5
++echo "$as_me: error: Lustre does not support kernels with preempt enabled." >&2;}
++   { (exit 1); exit 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
++
++
++{ 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/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/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
++
++
++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 \$(top_builddir)/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
++
++
++
++{ 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
++		LDISKFS_SERIES="2.6-rhel5.series"
++	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.23*) LDISKFS_SERIES="2.6.23-vanilla.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 is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol d_rehash_cond is 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 is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol __d_rehash is 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 is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol d_move_locked is 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 is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol __d_move is 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
++
++: ${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.7.1, 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.7.1
++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
++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` = 29; 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 lustre-1.6.7.2.orig/ldiskfs/autom4te.cache/requests lustre-1.6.7.2/ldiskfs/autom4te.cache/requests
+--- lustre-1.6.7.2.orig/ldiskfs/autom4te.cache/requests	1970-01-01 01:00:00.000000000 +0100
++++ lustre-1.6.7.2/ldiskfs/autom4te.cache/requests	2009-08-10 10:05:53.000000000 +0200
+@@ -0,0 +1,64 @@
++# This file was generated by Autom4te Wed Jan 17 19:57:31 PST 2007.
++# 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 lustre-1.6.7.2.orig/ldiskfs/autom4te.cache/traces.0 lustre-1.6.7.2/ldiskfs/autom4te.cache/traces.0
+--- lustre-1.6.7.2.orig/ldiskfs/autom4te.cache/traces.0	1970-01-01 01:00:00.000000000 +0100
++++ lustre-1.6.7.2/ldiskfs/autom4te.cache/traces.0	2009-08-10 10:05:52.000000000 +0200
+@@ -0,0 +1,598 @@
++m4trace:aclocal.m4:43: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
++m4trace:configure.ac:3: -1- AC_INIT([Lustre ldiskfs], [3.0.7.1], [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:1771: LB_LINUX_PATH is expanded from...
++aclocal.m4:2092: 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:1771: LB_LINUX_PATH is expanded from...
++aclocal.m4:2092: 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:1771: LB_LINUX_PATH is expanded from...
++aclocal.m4:2092: 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:1771: LB_LINUX_PATH is expanded from...
++aclocal.m4:2092: LB_PROG_LINUX is expanded from...
++configure.ac:46: the top level])
++m4trace:configure.ac:46: -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:888: LB_CHECK_FILES is expanded from...
++aclocal.m4:1771: LB_LINUX_PATH is expanded from...
++aclocal.m4:2092: 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: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:110: -1- AC_SUBST([LDISKFS_SERIES])
++m4trace:configure.ac:110: -1- AC_SUBST_TRACE([LDISKFS_SERIES])
++m4trace:configure.ac:110: -1- m4_pattern_allow([^LDISKFS_SERIES$])
++m4trace:configure.ac:112: -1- AC_SUBST([ac_configure_args])
++m4trace:configure.ac:112: -1- AC_SUBST_TRACE([ac_configure_args])
++m4trace:configure.ac:112: -1- m4_pattern_allow([^ac_configure_args$])
++m4trace:configure.ac:114: -1- AC_DEFINE_TRACE_LITERAL([HAVE_D_REHASH_COND])
++m4trace:configure.ac:114: -1- m4_pattern_allow([^HAVE_D_REHASH_COND$])
++m4trace:configure.ac:114: -1- AH_OUTPUT([HAVE_D_REHASH_COND], [/* d_rehash_cond is exported by the kernel */
++#undef HAVE_D_REHASH_COND])
++m4trace:configure.ac:114: -1- AC_DEFINE_TRACE_LITERAL([HAVE_D_REHASH_COND])
++m4trace:configure.ac:114: -1- m4_pattern_allow([^HAVE_D_REHASH_COND$])
++m4trace:configure.ac:114: -1- AH_OUTPUT([HAVE_D_REHASH_COND], [/* d_rehash_cond is exported by the kernel */
++#undef HAVE_D_REHASH_COND])
++m4trace:configure.ac:120: -1- AC_DEFINE_TRACE_LITERAL([HAVE___D_REHASH])
++m4trace:configure.ac:120: -1- m4_pattern_allow([^HAVE___D_REHASH$])
++m4trace:configure.ac:120: -1- AH_OUTPUT([HAVE___D_REHASH], [/* __d_rehash is exported by the kernel */
++#undef HAVE___D_REHASH])
++m4trace:configure.ac:120: -1- AC_DEFINE_TRACE_LITERAL([HAVE___D_REHASH])
++m4trace:configure.ac:120: -1- m4_pattern_allow([^HAVE___D_REHASH$])
++m4trace:configure.ac:120: -1- AH_OUTPUT([HAVE___D_REHASH], [/* __d_rehash is exported by the kernel */
++#undef HAVE___D_REHASH])
++m4trace:configure.ac:126: -1- AC_DEFINE_TRACE_LITERAL([HAVE_D_MOVE_LOCKED])
++m4trace:configure.ac:126: -1- m4_pattern_allow([^HAVE_D_MOVE_LOCKED$])
++m4trace:configure.ac:126: -1- AH_OUTPUT([HAVE_D_MOVE_LOCKED], [/* d_move_locked is exported by the kernel */
++#undef HAVE_D_MOVE_LOCKED])
++m4trace:configure.ac:126: -1- AC_DEFINE_TRACE_LITERAL([HAVE_D_MOVE_LOCKED])
++m4trace:configure.ac:126: -1- m4_pattern_allow([^HAVE_D_MOVE_LOCKED$])
++m4trace:configure.ac:126: -1- AH_OUTPUT([HAVE_D_MOVE_LOCKED], [/* d_move_locked is exported by the kernel */
++#undef HAVE_D_MOVE_LOCKED])
++m4trace:configure.ac:132: -1- AC_DEFINE_TRACE_LITERAL([HAVE___D_MOVE])
++m4trace:configure.ac:132: -1- m4_pattern_allow([^HAVE___D_MOVE$])
++m4trace:configure.ac:132: -1- AH_OUTPUT([HAVE___D_MOVE], [/* __d_move exported by the kernel */
++#undef HAVE___D_MOVE])
++m4trace:configure.ac:132: -1- AC_DEFINE_TRACE_LITERAL([HAVE___D_MOVE])
++m4trace:configure.ac:132: -1- m4_pattern_allow([^HAVE___D_MOVE$])
++m4trace:configure.ac:132: -1- AH_OUTPUT([HAVE___D_MOVE], [/* __d_move exported by the kernel */
++#undef HAVE___D_MOVE])
++m4trace:configure.ac:138: -1- AC_CONFIG_FILES([Makefile
++autoMakefile
++
++Rules:build/Rules.in
++lustre-ldiskfs.spec
++])
++m4trace:configure.ac:139: -1- AC_CONFIG_FILES([ldiskfs/autoMakefile ldiskfs/Makefile])
++m4trace:configure.ac:142: -1- AC_SUBST([MOSTLYCLEANFILES])
++m4trace:configure.ac:142: -1- AC_SUBST_TRACE([MOSTLYCLEANFILES])
++m4trace:configure.ac:142: -1- m4_pattern_allow([^MOSTLYCLEANFILES$])
++m4trace:configure.ac:144: -1- AC_SUBST([LIB@&t at OBJS], [$ac_libobjs])
++m4trace:configure.ac:144: -1- AC_SUBST_TRACE([LIB@&t at OBJS])
++m4trace:configure.ac:144: -1- m4_pattern_allow([^LIB@&t at OBJS$])
++m4trace:configure.ac:144: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
++m4trace:configure.ac:144: -1- AC_SUBST_TRACE([LTLIBOBJS])
++m4trace:configure.ac:144: -1- m4_pattern_allow([^LTLIBOBJS$])
++m4trace:configure.ac:144: -1- AC_SUBST_TRACE([top_builddir])
++m4trace:configure.ac:144: -1- AC_SUBST_TRACE([srcdir])
++m4trace:configure.ac:144: -1- AC_SUBST_TRACE([abs_srcdir])
++m4trace:configure.ac:144: -1- AC_SUBST_TRACE([top_srcdir])
++m4trace:configure.ac:144: -1- AC_SUBST_TRACE([abs_top_srcdir])
++m4trace:configure.ac:144: -1- AC_SUBST_TRACE([builddir])
++m4trace:configure.ac:144: -1- AC_SUBST_TRACE([abs_builddir])
++m4trace:configure.ac:144: -1- AC_SUBST_TRACE([abs_top_builddir])
++m4trace:configure.ac:144: -1- AC_SUBST_TRACE([INSTALL])
+diff -Nurwd lustre-1.6.7.2.orig/ldiskfs/autoMakefile.in lustre-1.6.7.2/ldiskfs/autoMakefile.in
+--- lustre-1.6.7.2.orig/ldiskfs/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/ldiskfs/autoMakefile.in	2009-08-10 10:05:53.000000000 +0200
+@@ -66,6 +66,7 @@
+ EGREP = @EGREP@
+ EXEEXT = @EXEEXT@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
++GREP = @GREP@
+ INCLUDE_RULES = @INCLUDE_RULES@
+ INSTALL_DATA = @INSTALL_DATA@
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
+@@ -117,8 +118,6 @@
+ VERSION = @VERSION@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+ am__include = @am__include@
+@@ -131,12 +130,16 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
++docdir = @docdir@
++dvidir = @dvidir@
+ exec_prefix = @exec_prefix@
+ host = @host@
+ host_alias = @host_alias@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+@@ -144,14 +147,17 @@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+ mandir = @mandir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+ sysconfdir = @sysconfdir@
+@@ -198,8 +204,8 @@
+ DIST_COMMON = $(srcdir)/autoMakefile.in \
+ 	$(srcdir)/build/autoMakefile.am.toplevel $(srcdir)/configure \
+ 	COPYING ChangeLog Makefile.in aclocal.m4 autoMakefile.am \
+-	config.guess config.h.in config.sub configure.ac install-sh \
+-	lustre-ldiskfs.spec.in missing mkinstalldirs
++	config.guess config.h.in config.sub configure configure.ac \
++	install-sh lustre-ldiskfs.spec.in missing mkinstalldirs
+ all: config.h
+ 	$(MAKE) $(AM_MAKEFLAGS) all-recursive
+ 
+diff -Nurwd lustre-1.6.7.2.orig/ldiskfs/config.h.in lustre-1.6.7.2/ldiskfs/config.h.in
+--- lustre-1.6.7.2.orig/ldiskfs/config.h.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/ldiskfs/config.h.in	2009-08-10 10:05:52.000000000 +0200
+@@ -69,7 +69,7 @@
+ /* Define to the version of this package. */
+ #undef PACKAGE_VERSION
+ 
+-/* The size of a `unsigned long long', as computed by sizeof. */
++/* The size of `unsigned long long', as computed by sizeof. */
+ #undef SIZEOF_UNSIGNED_LONG_LONG
+ 
+ /* Define to 1 if you have the ANSI C header files. */
+diff -Nurwd lustre-1.6.7.2.orig/ldiskfs/config.h.in~ lustre-1.6.7.2/ldiskfs/config.h.in~
+--- lustre-1.6.7.2.orig/ldiskfs/config.h.in~	1970-01-01 01:00:00.000000000 +0100
++++ lustre-1.6.7.2/ldiskfs/config.h.in~	2009-08-10 10:04:57.000000000 +0200
+@@ -0,0 +1,79 @@
++/* config.h.in.  Generated from configure.ac by autoheader.  */
++
++/* 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
++
++/* 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 lustre-1.6.7.2.orig/ldiskfs/configure lustre-1.6.7.2/ldiskfs/configure
+--- lustre-1.6.7.2.orig/ldiskfs/configure	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/ldiskfs/configure	2009-08-10 10:05:53.000000000 +0200
+@@ -1,27 +1,56 @@
+ #! /bin/sh
+ # Guess values for system-dependent variables and create Makefiles.
+-# Generated by GNU Autoconf 2.59 for Lustre ldiskfs 3.0.7.1.
++# Generated by GNU Autoconf 2.61 for Lustre ldiskfs 3.0.7.1.
+ #
+ # Report bugs to <https://bugzilla.lustre.org/>.
+ #
+-# Copyright (C) 2003 Free Software Foundation, Inc.
++# 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 Bourne compatible
++# 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+"$@"}'='"$@"'
+-elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
+-  set -o posix
++  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
+-DUALCASE=1; export DUALCASE # for MKS sh
+ 
+ # Support unset when possible.
+ if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
+@@ -31,8 +60,43 @@
+ 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.
+-$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='+ '
+@@ -46,18 +110,19 @@
+   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.
+-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
+ 
+-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
+@@ -65,157 +130,388 @@
+ 
+ 
+ # Name of the executable.
+-as_me=`$as_basename "$0" ||
++as_me=`$as_basename -- "$0" ||
+ $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+ 	 X"$0" : 'X\(//\)$' \| \
+-	 X"$0" : 'X\(/\)$' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
++	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
+ echo X/"$0" |
+-    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
+-  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\/\(\/\).*/{ s//\1/; q; }
++    sed '/^.*\/\([^/][^/]*\)\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\/\(\/\/\)$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\/\(\/\).*/{
++	    s//\1/
++	    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=';'
++if test "x$CONFIG_SHELL" = x; then
++  if (eval ":") 2>/dev/null; then
++  as_have_required=yes
+   else
+-    PATH_SEPARATOR=:
++  as_have_required=no
+   fi
+-  rm -f conf$$.sh
++
++  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
+ 
+-  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
++if as_func_ret_success; then
++  :
++else
++  exitcode=1
++  echo as_func_ret_success failed.
++fi
+ 
+-       ;;
+-  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
++if as_func_ret_failure; then
++  exitcode=1
++  echo as_func_ret_failure succeeded.
+   fi
+-  if test ! -f "$as_myself"; then
+-    { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
+-   { (exit 1); exit 1; }; }
++
++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
+-  '')
++
++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=.
+-  for as_base in sh bash ksh sh5; do
+ 	 case $as_dir in
+ 	 /*)
+-	   if ("$as_dir/$as_base" -c '
++	   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
+-  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; }
+-	     CONFIG_SHELL=$as_dir/$as_base
+-	     export CONFIG_SHELL
+-	     exec "$CONFIG_SHELL" "$0" ${1+"$@"}
+-	   fi;;
+-	 esac
++  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
+-;;
+-  esac
++        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 before each line; the second 'sed' does the real
+-  # work.  The second script uses 'N' to pair each line-number line
+-  # with the numbered line, and appends trailing '-' during
+-  # substitution so that $LINENO is not a special case at line end.
++  # 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
+-  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
+-  sed '=' <$as_myself |
++  # 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
+-      s,$,-,
+       : loop
+-      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
++      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
+       t loop
+-      s,-$,,
+-      s,^['$as_cr_digits']*\n,,
++      s/-\n.*//
+     ' >$as_me.lineno &&
+-  chmod +x $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 sensible to this).
+-  . ./$as_me.lineno
++  # original and so on.  Autoconf is especially sensitive to this).
++  . "./$as_me.lineno"
+   # Exit status is that of the last command.
+   exit
+ }
+ 
+ 
+-case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
+-  *c*,-n*) ECHO_N= ECHO_C='
+-' ECHO_T='	' ;;
+-  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
+-  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
++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; then
++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
+-  # We could just check for DJGPP; but this test a) works b) is more generic
+-  # 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
++  # ... 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$$.file
++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=:
+@@ -224,7 +520,28 @@
+   as_mkdir_p=false
+ fi
+ 
+-as_executable_p="test -f"
++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'"
+@@ -233,39 +550,27 @@
+ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+ 
+ 
+-# IFS
+-# We need space, tab and new line, in precisely that order.
+-as_nl='
+-'
+-IFS=" 	$as_nl"
+-
+-# CDPATH.
+-$as_unset CDPATH
+ 
++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`
+ 
+-exec 6>&1
+-
+ #
+ # Initializations.
+ #
+ ac_default_prefix=/usr/local
++ac_clean_files=
+ ac_config_libobj_dir=.
++LIBOBJS=
+ cross_compiling=no
+ subdirs=
+ MFLAGS=
+ MAKEFLAGS=
+ SHELL=${CONFIG_SHELL-/bin/sh}
+ 
+-# Maximum number of lines to put in a shell here document.
+-# This variable seems obsolete.  It should probably be removed, and
+-# only ac_max_sed_lines should be used.
+-: ${ac_max_here_lines=38}
+-
+ # Identity of this package.
+ PACKAGE_NAME='Lustre ldiskfs'
+ PACKAGE_TARNAME='lustre-ldiskfs'
+@@ -277,42 +582,176 @@
+ # Factoring default headers for most tests.
+ ac_includes_default="\
+ #include <stdio.h>
+-#if HAVE_SYS_TYPES_H
++#ifdef HAVE_SYS_TYPES_H
+ # include <sys/types.h>
+ #endif
+-#if HAVE_SYS_STAT_H
++#ifdef HAVE_SYS_STAT_H
+ # include <sys/stat.h>
+ #endif
+-#if STDC_HEADERS
++#ifdef STDC_HEADERS
+ # include <stdlib.h>
+ # include <stddef.h>
+ #else
+-# if HAVE_STDLIB_H
++# ifdef HAVE_STDLIB_H
+ #  include <stdlib.h>
+ # endif
+ #endif
+-#if HAVE_STRING_H
+-# if !STDC_HEADERS && HAVE_MEMORY_H
++#ifdef HAVE_STRING_H
++# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+ #  include <memory.h>
+ # endif
+ # include <string.h>
+ #endif
+-#if HAVE_STRINGS_H
++#ifdef HAVE_STRINGS_H
+ # include <strings.h>
+ #endif
+-#if HAVE_INTTYPES_H
++#ifdef HAVE_INTTYPES_H
+ # include <inttypes.h>
+-#else
+-# if HAVE_STDINT_H
+-#  include <stdint.h>
+ # endif
++#ifdef HAVE_STDINT_H
++# include <stdint.h>
+ #endif
+-#if HAVE_UNISTD_H
++#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 datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS 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 ac_ct_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 ac_ct_RANLIB CPP 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 LDISKFS_SERIES ac_configure_args MOSTLYCLEANFILES LIBOBJS LTLIBOBJS'
++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
++LDISKFS_SERIES
++ac_configure_args
++MOSTLYCLEANFILES
++LIBOBJS
++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=
+@@ -339,34 +778,48 @@
+ # 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'
+-datadir='${prefix}/share'
++datarootdir='${prefix}/share'
++datadir='${datarootdir}'
+ sysconfdir='${prefix}/etc'
+ sharedstatedir='${prefix}/com'
+ localstatedir='${prefix}/var'
+-libdir='${exec_prefix}/lib'
+ includedir='${prefix}/include'
+ oldincludedir='/usr/include'
+-infodir='${prefix}/info'
+-mandir='${prefix}/man'
++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"
++    eval $ac_prev=\$ac_option
+     ac_prev=
+     continue
+   fi
+ 
+-  ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
++  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_option in
++  case $ac_dashdash$ac_option in
++  --)
++    ac_dashdash=yes ;;
+ 
+   -bindir | --bindir | --bindi | --bind | --bin | --bi)
+     ac_prev=bindir ;;
+@@ -388,33 +841,45 @@
+   --config-cache | -C)
+     cache_file=config.cache ;;
+ 
+-  -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
++  -datadir | --datadir | --datadi | --datad)
+     ac_prev=datadir ;;
+-  -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
+-  | --da=*)
++  -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 &&
++    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" ;;
++    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 &&
++    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'`
+-    case $ac_option in
+-      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
+-      *) ac_optarg=yes ;;
+-    esac
+-    eval "enable_$ac_feature='$ac_optarg'" ;;
++    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- \
+@@ -441,6 +906,12 @@
+   -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 ;;
+@@ -465,13 +936,16 @@
+   | --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 | --local | --loca | --loc | --lo)
++  | --localstate | --localstat | --localsta | --localst | --locals)
+     ac_prev=localstatedir ;;
+   -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
+-  | --localstate=* | --localstat=* | --localsta=* | --localst=* \
+-  | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
++  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
+     localstatedir=$ac_optarg ;;
+ 
+   -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
+@@ -536,6 +1010,16 @@
+   | --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 ;;
+@@ -588,24 +1072,20 @@
+   -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 &&
++    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'`
+-    case $ac_option in
+-      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
+-      *) ac_optarg=yes ;;
+-    esac
+-    eval "with_$ac_package='$ac_optarg'" ;;
++    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 &&
++    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" ;;
++    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
++    eval with_$ac_package=no ;;
+ 
+   --x)
+     # Obsolete; use --with-x.
+@@ -636,8 +1116,7 @@
+     expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
+       { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
+    { (exit 1); exit 1; }; }
+-    ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
+-    eval "$ac_envvar='$ac_optarg'"
++    eval $ac_envvar=\$ac_optarg
+     export $ac_envvar ;;
+ 
+   *)
+@@ -657,27 +1136,19 @@
+    { (exit 1); exit 1; }; }
+ fi
+ 
+-# Be sure to have absolute paths.
+-for ac_var in exec_prefix prefix
+-do
+-  eval ac_val=$`echo $ac_var`
+-  case $ac_val in
+-    [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
+-    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
+-   { (exit 1); exit 1; }; };;
+-  esac
+-done
+-
+-# Be sure to have absolute paths.
+-for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
+-	      localstatedir libdir includedir oldincludedir infodir mandir
++# 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=$`echo $ac_var`
++  eval ac_val=\$$ac_var
+   case $ac_val in
+-    [\\/$]* | ?:[\\/]* ) ;;
+-    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
+-   { (exit 1); exit 1; }; };;
++    [\\/$]* | ?:[\\/]* )  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'
+@@ -704,74 +1175,76 @@
+ 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 its parent.
+-  ac_confdir=`(dirname "$0") 2>/dev/null ||
++  # 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 ||
++	 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; }
++    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
++  if test ! -r "$srcdir/$ac_unique_file"; then
+     srcdir=..
+   fi
+ else
+   ac_srcdir_defaulted=no
+ fi
+-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
+    { (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"
++ac_abs_confdir=`(
++	cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2
+    { (exit 1); exit 1; }; }
+-srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
+-ac_env_build_alias_set=${build_alias+set}
+-ac_env_build_alias_value=$build_alias
+-ac_cv_env_build_alias_set=${build_alias+set}
+-ac_cv_env_build_alias_value=$build_alias
+-ac_env_host_alias_set=${host_alias+set}
+-ac_env_host_alias_value=$host_alias
+-ac_cv_env_host_alias_set=${host_alias+set}
+-ac_cv_env_host_alias_value=$host_alias
+-ac_env_target_alias_set=${target_alias+set}
+-ac_env_target_alias_value=$target_alias
+-ac_cv_env_target_alias_set=${target_alias+set}
+-ac_cv_env_target_alias_value=$target_alias
+-ac_env_CC_set=${CC+set}
+-ac_env_CC_value=$CC
+-ac_cv_env_CC_set=${CC+set}
+-ac_cv_env_CC_value=$CC
+-ac_env_CFLAGS_set=${CFLAGS+set}
+-ac_env_CFLAGS_value=$CFLAGS
+-ac_cv_env_CFLAGS_set=${CFLAGS+set}
+-ac_cv_env_CFLAGS_value=$CFLAGS
+-ac_env_LDFLAGS_set=${LDFLAGS+set}
+-ac_env_LDFLAGS_value=$LDFLAGS
+-ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
+-ac_cv_env_LDFLAGS_value=$LDFLAGS
+-ac_env_CPPFLAGS_set=${CPPFLAGS+set}
+-ac_env_CPPFLAGS_value=$CPPFLAGS
+-ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
+-ac_cv_env_CPPFLAGS_value=$CPPFLAGS
+-ac_env_CPP_set=${CPP+set}
+-ac_env_CPP_value=$CPP
+-ac_cv_env_CPP_set=${CPP+set}
+-ac_cv_env_CPP_value=$CPP
++	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.
+@@ -800,9 +1273,6 @@
+   -n, --no-create         do not create output files
+       --srcdir=DIR        find the sources in DIR [configure dir or \`..']
+ 
+-_ACEOF
+-
+-  cat <<_ACEOF
+ Installation directories:
+   --prefix=PREFIX         install architecture-independent files in PREFIX
+ 			  [$ac_default_prefix]
+@@ -820,15 +1290,22 @@
+   --bindir=DIR           user executables [EPREFIX/bin]
+   --sbindir=DIR          system admin executables [EPREFIX/sbin]
+   --libexecdir=DIR       program executables [EPREFIX/libexec]
+-  --datadir=DIR          read-only architecture-independent data [PREFIX/share]
+   --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]
+-  --infodir=DIR          info documentation [PREFIX/info]
+-  --mandir=DIR           man documentation [PREFIX/man]
++  --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
+@@ -875,8 +1352,9 @@
+   CFLAGS      C compiler flags
+   LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
+               nonstandard directory <lib dir>
+-  CPPFLAGS    C/C++ preprocessor flags, e.g. -I<include dir> if you have
+-              headers in a nonstandard directory <include 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
+@@ -884,120 +1362,86 @@
+ 
+ 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.
+-  ac_popdir=`pwd`
+   for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
+-    test -d $ac_dir || continue
++    test -d "$ac_dir" || continue
+     ac_builddir=.
+ 
+-if test "$ac_dir" != .; then
++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=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+-else
+-  ac_dir_suffix= ac_top_builddir=
+-fi
++  # 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
+-  .)  # No --srcdir option.  We are building in place.
++  .)  # We are building in place.
+     ac_srcdir=.
+-    if test -z "$ac_top_builddir"; then
+-       ac_top_srcdir=.
+-    else
+-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+-    fi ;;
+-  [\\/]* | ?:[\\/]* )  # Absolute path.
++    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 ;;
+-  *) # Relative path.
+-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
+-esac
+-
+-# Do not use `cd foo && pwd` to compute absolute paths, because
+-# the directories may not exist.
+-case `pwd` in
+-.) ac_abs_builddir="$ac_dir";;
+-*)
+-  case "$ac_dir" in
+-  .) ac_abs_builddir=`pwd`;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
+-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_builddir=${ac_top_builddir}.;;
+-*)
+-  case ${ac_top_builddir}. in
+-  .) ac_abs_top_builddir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
+-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_srcdir=$ac_srcdir;;
+-*)
+-  case $ac_srcdir in
+-  .) ac_abs_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
+-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_srcdir=$ac_top_srcdir;;
+-*)
+-  case $ac_top_srcdir in
+-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) 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
+ 
+-    cd $ac_dir
+-    # Check for guested configure; otherwise get Cygnus style 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
+-    elif test -f $ac_srcdir/configure.ac ||
+-	   test -f $ac_srcdir/configure.in; then
+-      echo
+-      $ac_configure --help
++    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
+-    cd $ac_popdir
++    fi || ac_status=$?
++    cd "$ac_pwd" || { ac_status=$?; break; }
+   done
+ fi
+ 
+-test -n "$ac_init_help" && exit 0
++test -n "$ac_init_help" && exit $ac_status
+ if $ac_init_version; then
+   cat <<\_ACEOF
+ Lustre ldiskfs configure 3.0.7.1
+-generated by GNU Autoconf 2.59
++generated by GNU Autoconf 2.61
+ 
+-Copyright (C) 2003 Free Software Foundation, Inc.
++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 0
++  exit
+ fi
+-exec 5>config.log
+-cat >&5 <<_ACEOF
++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.7.1, which was
+-generated by GNU Autoconf 2.59.  Invocation command line was
++generated by GNU Autoconf 2.61.  Invocation command line was
+ 
+   $ $0 $@
+ 
+ _ACEOF
++exec 5>>config.log
+ {
+ cat <<_ASUNAME
+ ## --------- ##
+@@ -1016,7 +1460,7 @@
+ /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`
+-hostinfo               = `(hostinfo) 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`
+@@ -1030,6 +1474,7 @@
+   test -z "$as_dir" && as_dir=.
+   echo "PATH: $as_dir"
+ done
++IFS=$as_save_IFS
+ 
+ } >&5
+ 
+@@ -1051,7 +1496,6 @@
+ ac_configure_args=
+ ac_configure_args0=
+ ac_configure_args1=
+-ac_sep=
+ ac_must_keep_next=false
+ for ac_pass in 1 2
+ do
+@@ -1062,7 +1506,7 @@
+     -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
+@@ -1084,9 +1528,7 @@
+ 	  -* ) ac_must_keep_next=true ;;
+ 	esac
+       fi
+-      ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
+-      # Get rid of the leading space.
+-      ac_sep=" "
++      ac_configure_args="$ac_configure_args '$ac_arg'"
+       ;;
+     esac
+   done
+@@ -1097,8 +1539,8 @@
+ # 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: Be sure not to use single quotes in there, as some shells,
+-# such as our DU 5.0 friend, will then `close' the trap.
++# 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.
+   {
+@@ -1111,20 +1553,34 @@
+ _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 `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
+-    *ac_space=\ *)
++    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"
+-      ;;
++	"s/'\''/'\''\\\\'\'''\''/g;
++	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
++      ;; #(
+     *)
+-      sed -n \
+-	"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
++      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+       ;;
+-    esac;
+-}
++    esac |
++    sort
++)
+     echo
+ 
+     cat <<\_ASBOX
+@@ -1135,22 +1591,28 @@
+     echo
+     for ac_var in $ac_subst_vars
+     do
+-      eval ac_val=$`echo $ac_var`
+-      echo "$ac_var='"'"'$ac_val'"'"'"
++      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
+-## ------------- ##
+-## Output files. ##
+-## ------------- ##
++## ------------------- ##
++## File substitutions. ##
++## ------------------- ##
+ _ASBOX
+       echo
+       for ac_var in $ac_subst_files
+       do
+-	eval ac_val=$`echo $ac_var`
+-	echo "$ac_var='"'"'$ac_val'"'"'"
++	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
+@@ -1162,15 +1624,15 @@
+ ## ----------- ##
+ _ASBOX
+       echo
+-      sed "/^$/d" confdefs.h | sort
++      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 &&
+-  rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
++  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
+@@ -1179,9 +1641,7 @@
+ ac_signal=0
+ 
+ # confdefs.h avoids OS command line length limits that DEFS can exceed.
+-rm -rf conftest* confdefs.h
+-# AIX cpp loses on an empty file, so make sure it contains at least a newline.
+-echo >confdefs.h
++rm -f -r conftest* confdefs.h
+ 
+ # Predefined preprocessor variables.
+ 
+@@ -1212,14 +1672,17 @@
+ 
+ # 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"
++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
++  set x "$ac_default_prefix/share/config.site" \
++	"$ac_default_prefix/etc/config.site"
+ fi
+-for ac_site_file in $CONFIG_SITE; do
++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;}
+@@ -1235,8 +1698,8 @@
+     { 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;;
++      [\\/]* | ?:[\\/]* ) . "$cache_file";;
++      *)                      . "./$cache_file";;
+     esac
+   fi
+ else
+@@ -1248,12 +1711,11 @@
+ # Check that the precious variables saved in the cache have kept the same
+ # value.
+ ac_cache_corrupted=false
+-for ac_var in `(set) 2>&1 |
+-	       sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
++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"
++  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
+@@ -1278,8 +1740,7 @@
+   # 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=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
+     *) ac_arg=$ac_var=$ac_new_val ;;
+     esac
+     case " $ac_configure_args " in
+@@ -1296,12 +1757,6 @@
+    { (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
+-
+ 
+ 
+ 
+@@ -1326,111 +1781,166 @@
+ 
+ 
+ 
++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
++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
++  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
++  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;}
++  { { 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
+-ac_config_guess="$SHELL $ac_aux_dir/config.guess"
+-ac_config_sub="$SHELL $ac_aux_dir/config.sub"
+-ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
++
++# 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.
+-$ac_config_sub sun4 >/dev/null 2>&1 ||
+-  { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5
+-echo "$as_me: error: cannot run $ac_config_sub" >&2;}
++$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
++{ 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_cv_build_alias=$build_alias
+-test -z "$ac_cv_build_alias" &&
+-  ac_cv_build_alias=`$ac_config_guess`
+-test -z "$ac_cv_build_alias" &&
++  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=`$ac_config_sub $ac_cv_build_alias` ||
+-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
+-echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}
++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
++{ 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
+-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/'`
++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
++{ 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
+-  ac_cv_host_alias=$host_alias
+-test -z "$ac_cv_host_alias" &&
+-  ac_cv_host_alias=$ac_cv_build_alias
+-ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
+-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5
+-echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
++  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
++{ 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
+-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/'`
++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
++{ 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
+-  ac_cv_target_alias=$target_alias
+-test "x$ac_cv_target_alias" = "x" &&
+-  ac_cv_target_alias=$ac_cv_host_alias
+-ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
+-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5
+-echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
++  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
++{ 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
+-target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
+-target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
+-target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
++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.
+@@ -1454,8 +1964,8 @@
+ # 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
++{ 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
+@@ -1477,7 +1987,7 @@
+     # by default.
+     for ac_prog in ginstall scoinst install; do
+       for ac_exec_ext in '' $ac_executable_extensions; do
+-	if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
++	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.
+@@ -1496,21 +2006,22 @@
+     ;;
+ 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.  We don't cache a
+-    # path for INSTALL within a source directory, because that will
++    # 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 path is relative.
++    # 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
++{ 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.
+@@ -1520,8 +2031,8 @@
+ 
+ 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
++{ 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
+@@ -1563,20 +2074,20 @@
+ Check your system clock" >&2;}
+    { (exit 1); exit 1; }; }
+ fi
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ 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"
++  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"
++  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 conftest.sed
++rm -f conftest.sed
+ 
+ 
+ # expand $ac_aux_dir to an absolute path
+@@ -1596,8 +2107,8 @@
+ 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
++{ 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
+@@ -1610,54 +2121,57 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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 dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'`
+-if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
++{ 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 'ac_maketemp="$(MAKE)"'
++	@echo '@@@%%%=$(MAKE)=@@@%%%'
+ _ACEOF
+ # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
+-eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
+-if test -n "$ac_maketemp"; then
+-  eval ac_cv_prog_make_${ac_make}_set=yes
+-else
+-  eval ac_cv_prog_make_${ac_make}_set=no
+-fi
++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 \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
+-  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++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
++  { echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+   SET_MAKE="MAKE=${MAKE-make}"
+ fi
+ 
+@@ -1731,8 +2245,8 @@
+   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
++{ 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
+@@ -1745,32 +2259,34 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
++{ 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
+@@ -1783,27 +2299,41 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
+ 
+-  test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
+ 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
++  { 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
++  { 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
+@@ -1825,8 +2355,8 @@
+ 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
++{ 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
+@@ -1839,32 +2369,34 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
++{ 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
+@@ -1877,26 +2409,41 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
+@@ -1905,8 +2452,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.
+ 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
++{ 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
+@@ -1919,74 +2466,34 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
+-if test -z "$ac_cv_prog_CC"; then
+-  ac_ct_CC=$CC
+-  # 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_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.
++  { echo "$as_me:$LINENO: result: $CC" >&5
++echo "${ECHO_T}$CC" >&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=.
+-  for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+-    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
+-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: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+ 
+-  CC=$ac_ct_CC
+-else
+-  CC="$ac_cv_prog_CC"
+ 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
++{ 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
+@@ -2000,7 +2507,7 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
+@@ -2011,6 +2518,7 @@
+   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.
+@@ -2028,22 +2536,23 @@
+ fi
+ CC=$ac_cv_prog_CC
+ if test -n "$CC"; then
+-  echo "$as_me:$LINENO: result: $CC" >&5
+-echo "${ECHO_T}$CC" >&6
++  { 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
++  { 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
++  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
++{ 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
+@@ -2056,36 +2565,38 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
++  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
++{ 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
+@@ -2098,30 +2609,46 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
+ 
+@@ -2133,21 +2660,35 @@
+    { (exit 1); exit 1; }; }
+ 
+ # Provide some information about the compiler.
+-echo "$as_me:$LINENO:" \
+-     "checking for C compiler version" >&5
++echo "$as_me:$LINENO: checking for C compiler version" >&5
+ ac_compiler=`set X $ac_compile; echo $2`
+-{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
+-  (eval $ac_compiler --version </dev/null >&5) 2>&5
++{ (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); }
+-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
+-  (eval $ac_compiler -v </dev/null >&5) 2>&5
++{ (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); }
+-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
+-  (eval $ac_compiler -V </dev/null >&5) 2>&5
++{ (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); }
+@@ -2172,47 +2713,77 @@
+ # 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
++{ 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[^ ]*//'`
+-if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
+-  (eval $ac_link_default) 2>&5
++#
++# 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
+-  # Find the output, starting from the most likely.  This scheme is
+-# not robust to junk in `.', hence go to wildcards (a.*) only as a last
+-# resort.
+-
+-# Be careful to initialize this variable, since it used to be cached.
+-# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
+-ac_cv_exeext=
+-# b.out is created by i960 compilers.
+-for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
++  # 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 | *.o | *.obj )
+-	;;
+-    conftest.$ac_ext )
+-	# This is the source file.
++    *.$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" : '[^.]*\(\..*\)'`
+-	# 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
++	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
+ 
+@@ -2224,19 +2795,21 @@
+ fi
+ 
+ ac_exeext=$ac_cv_exeext
+-echo "$as_me:$LINENO: result: $ac_file" >&5
+-echo "${ECHO_T}$ac_file" >&6
+ 
+-# Check the compiler produces executables we can run.  If not, either
++# 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
++{ 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'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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
+@@ -2255,22 +2828,27 @@
+     fi
+   fi
+ fi
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ 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 the compiler produces executables we can run.  If not, either
++# 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 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 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
+@@ -2281,9 +2859,8 @@
+ 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 | *.o | *.obj ) ;;
++    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
+     *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
+-	  export ac_cv_exeext
+ 	  break;;
+     * ) break;;
+   esac
+@@ -2297,14 +2874,14 @@
+ fi
+ 
+ rm -f conftest$ac_cv_exeext
+-echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
+-echo "${ECHO_T}$ac_cv_exeext" >&6
++{ 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
++{ 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
+@@ -2324,14 +2901,20 @@
+ }
+ _ACEOF
+ rm -f conftest.o conftest.obj
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>&5
++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 `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
++  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 ) ;;
++    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;
+     *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
+        break;;
+   esac
+@@ -2349,12 +2932,12 @@
+ 
+ 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
++{ 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
++{ 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
+@@ -2377,27 +2960,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -2405,21 +2983,25 @@
+ 
+ ac_compiler_gnu=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++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
++{ 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
+-CFLAGS="-g"
+-echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
+-echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
++{ 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
+@@ -2436,38 +3018,118 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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); }; }; then
++  (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
+ 
+-ac_cv_prog_cc_g=no
++
+ fi
+-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
++
++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
+@@ -2483,12 +3145,12 @@
+     CFLAGS=
+   fi
+ fi
+-echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
+-echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
+-if test "${ac_cv_prog_cc_stdc+set}" = set; then
++{ 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_stdc=no
++  ac_cv_prog_cc_c89=no
+ ac_save_CC=$CC
+ cat >conftest.$ac_ext <<_ACEOF
+ /* confdefs.h.  */
+@@ -2522,12 +3184,17 @@
+ /* 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 -std1 is added to get
++   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 -std1.  */
++   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);};
+@@ -2542,205 +3209,57 @@
+   return 0;
+ }
+ _ACEOF
+-# Don't try gcc -ansi; that turns off useful extensions and
+-# breaks some systems' header files.
+-# AIX			-qlanglvl=ansi
+-# Ultrix and OSF/1	-std1
+-# HP-UX 10.20 and later	-Ae
+-# HP-UX older versions	-Aa -D_HPUX_SOURCE
+-# SVR4			-Xc -D__EXTENSIONS__
+-for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
++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 { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
+-  ac_cv_prog_cc_stdc=$ac_arg
+-break
++  (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 conftest.err conftest.$ac_objext
++
++rm -f core conftest.err conftest.$ac_objext
++  test "x$ac_cv_prog_cc_c89" != "xno" && break
+ done
+-rm -f conftest.$ac_ext conftest.$ac_objext
++rm -f conftest.$ac_ext
+ CC=$ac_save_CC
+ 
+ fi
+-
+-case "x$ac_cv_prog_cc_stdc" in
+-  x|xno)
+-    echo "$as_me:$LINENO: result: none needed" >&5
+-echo "${ECHO_T}none needed" >&6 ;;
++# 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; } ;;
+   *)
+-    echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
+-echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
+-    CC="$CC $ac_cv_prog_cc_stdc" ;;
++    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
+ 
+-# Some people use a C++ compiler to compile C.  Since we use `exit',
+-# in C++ we need to declare it.  In case someone uses the same compiler
+-# for both compiling C and C++ we need to have the C++ compiler decide
+-# the declaration of exit, since it's the most demanding environment.
+-cat >conftest.$ac_ext <<_ACEOF
+-#ifndef __cplusplus
+-  choke me
+-#endif
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
+-  for ac_declaration in \
+-   '' \
+-   'extern "C" void std::exit (int) throw (); using std::exit;' \
+-   'extern "C" void std::exit (int); using std::exit;' \
+-   'extern "C" void exit (int) throw ();' \
+-   'extern "C" void exit (int);' \
+-   'void exit (int);'
+-do
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_declaration
+-#include <stdlib.h>
+-int
+-main ()
+-{
+-exit (42);
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
+-  :
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-continue
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_declaration
+-int
+-main ()
+-{
+-exit (42);
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
+-  break
+-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
+-rm -f conftest*
+-if test -n "$ac_declaration"; then
+-  echo '#ifdef __cplusplus' >>confdefs.h
+-  echo $ac_declaration      >>confdefs.h
+-  echo '#endif'             >>confdefs.h
+-fi
+ 
+-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'
+@@ -2758,8 +3277,8 @@
+ .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
++{ 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
+@@ -2786,15 +3305,15 @@
+ fi
+ 
+ 
+-echo "$as_me:$LINENO: result: $_am_result" >&5
+-echo "${ECHO_T}$_am_result" >&6
++{ echo "$as_me:$LINENO: result: $_am_result" >&5
++echo "${ECHO_T}$_am_result" >&6; }
+ rm -f confinc confmf
+ 
+-# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
++# Check whether --enable-dependency-tracking was given.
+ if test "${enable_dependency_tracking+set}" = set; then
+-  enableval="$enable_dependency_tracking"
++  enableval=$enable_dependency_tracking;
++fi
+ 
+-fi;
+ if test "x$enable_dependency_tracking" != xno; then
+   am_depcomp="$ac_aux_dir/depcomp"
+   AMDEPBACKSLASH='\'
+@@ -2814,8 +3333,8 @@
+ 
+ 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
++{ 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
+@@ -2897,8 +3416,8 @@
+ fi
+ 
+ fi
+-echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
+-echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
++{ 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
+ 
+ 
+@@ -2936,8 +3455,8 @@
+ 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
++{ 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=
+@@ -2971,24 +3490,22 @@
+ #endif
+ 		     Syntax error
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -2997,9 +3514,10 @@
+   # Broken: fails on valid input.
+ continue
+ fi
++
+ rm -f conftest.err conftest.$ac_ext
+ 
+-  # OK, works on sane cases.  Now check whether non-existent headers
++  # OK, works on sane cases.  Now check whether nonexistent headers
+   # can be detected and how.
+   cat >conftest.$ac_ext <<_ACEOF
+ /* confdefs.h.  */
+@@ -3009,24 +3527,22 @@
+ /* end confdefs.h.  */
+ #include <ac_nonexistent.h>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -3037,6 +3553,7 @@
+ ac_preproc_ok=:
+ break
+ fi
++
+ rm -f conftest.err conftest.$ac_ext
+ 
+ done
+@@ -3054,8 +3571,8 @@
+ else
+   ac_cv_prog_CPP=$CPP
+ fi
+-echo "$as_me:$LINENO: result: $CPP" >&5
+-echo "${ECHO_T}$CPP" >&6
++{ 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
+@@ -3078,24 +3595,22 @@
+ #endif
+ 		     Syntax error
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -3104,9 +3619,10 @@
+   # Broken: fails on valid input.
+ continue
+ fi
++
+ rm -f conftest.err conftest.$ac_ext
+ 
+-  # OK, works on sane cases.  Now check whether non-existent headers
++  # OK, works on sane cases.  Now check whether nonexistent headers
+   # can be detected and how.
+   cat >conftest.$ac_ext <<_ACEOF
+ /* confdefs.h.  */
+@@ -3116,24 +3632,22 @@
+ /* end confdefs.h.  */
+ #include <ac_nonexistent.h>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -3144,6 +3658,7 @@
+ ac_preproc_ok=:
+ break
+ fi
++
+ rm -f conftest.err conftest.$ac_ext
+ 
+ done
+@@ -3166,23 +3681,170 @@
+ ac_compiler_gnu=$ac_cv_c_compiler_gnu
+ 
+ 
+-echo "$as_me:$LINENO: checking for egrep" >&5
+-echo $ECHO_N "checking for egrep... $ECHO_C" >&6
+-if test "${ac_cv_prog_egrep+set}" = set; then
++{ 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'
++  # 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
+-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: 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
++
++
++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
+@@ -3206,27 +3868,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3234,7 +3891,8 @@
+ 
+ ac_cv_header_stdc=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++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.
+@@ -3290,6 +3948,7 @@
+ 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))
+@@ -3309,18 +3968,27 @@
+   for (i = 0; i < 256; i++)
+     if (XOR (islower (i), ISLOWER (i))
+ 	|| toupper (i) != TOUPPER (i))
+-      exit(2);
+-  exit (0);
++      return 2;
++  return 0;
+ }
+ _ACEOF
+ rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
++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'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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
+@@ -3333,12 +4001,14 @@
+ ( exit $ac_status )
+ ac_cv_header_stdc=no
+ fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
++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
++{ 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
+@@ -3361,9 +4031,9 @@
+ 		  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 eval "test \"\${$as_ac_Header+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
+ else
+   cat >conftest.$ac_ext <<_ACEOF
+@@ -3377,27 +4047,22 @@
+ #include <$ac_header>
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3405,10 +4070,12 @@
+ 
+ eval "$as_ac_Header=no"
+ fi
+-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: `eval echo '${'$as_ac_Header'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
++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
+@@ -3422,8 +4089,8 @@
+ 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
++{ 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
+@@ -3436,32 +4103,34 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
++{ 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
+@@ -3474,37 +4143,51 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
+ 
+-  test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
+ 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
++  { 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
++  { 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
++{ 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 "$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, "
+@@ -3529,14 +4212,14 @@
+ 		bad_cc
+ 		;;
+ 	*)
+-		echo "$as_me:$LINENO: result: no known problems" >&5
+-echo "${ECHO_T}no known problems" >&6
++		{ 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
++{ 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
+@@ -3547,39 +4230,35 @@
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h.  */
+ $ac_includes_default
++typedef unsigned long long ac__type_new_;
+ int
+ main ()
+ {
+-if ((unsigned long long *) 0)
++if ((ac__type_new_ *) 0)
+   return 0;
+-if (sizeof (unsigned long long))
++if (sizeof (ac__type_new_))
+   return 0;
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3587,21 +4266,21 @@
+ 
+ ac_cv_type_unsigned_long_long=no
+ fi
+-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_type_unsigned_long_long" >&5
+-echo "${ECHO_T}$ac_cv_type_unsigned_long_long" >&6
++{ echo "$as_me:$LINENO: result: $ac_cv_type_unsigned_long_long" >&5
++echo "${ECHO_T}$ac_cv_type_unsigned_long_long" >&6; }
+ 
+-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.
++{ 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
+@@ -3611,10 +4290,11 @@
+ 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) (sizeof (unsigned long long))) >= 0)];
++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= 0)];
+ test_array [0] = 0
+ 
+   ;
+@@ -3622,27 +4302,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3652,10 +4327,11 @@
+ 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) (sizeof (unsigned long long))) <= $ac_mid)];
++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)];
+ test_array [0] = 0
+ 
+   ;
+@@ -3663,27 +4339,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3696,7 +4367,8 @@
+ 		    fi
+ 		    ac_mid=`expr 2 '*' $ac_mid + 1`
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+   done
+ else
+   echo "$as_me: failed program was:" >&5
+@@ -3709,10 +4381,11 @@
+ 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) (sizeof (unsigned long long))) < 0)];
++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) < 0)];
+ test_array [0] = 0
+ 
+   ;
+@@ -3720,27 +4393,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3750,10 +4418,11 @@
+ 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) (sizeof (unsigned long long))) >= $ac_mid)];
++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) >= $ac_mid)];
+ test_array [0] = 0
+ 
+   ;
+@@ -3761,27 +4430,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3794,7 +4458,8 @@
+ 		       fi
+ 		       ac_mid=`expr 2 '*' $ac_mid`
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+   done
+ else
+   echo "$as_me: failed program was:" >&5
+@@ -3802,9 +4467,11 @@
+ 
+ ac_lo= ac_hi=
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++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`
+@@ -3815,10 +4482,11 @@
+ 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) (sizeof (unsigned long long))) <= $ac_mid)];
++static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) <= $ac_mid)];
+ test_array [0] = 0
+ 
+   ;
+@@ -3826,27 +4494,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3854,23 +4517,21 @@
+ 
+ ac_lo=`expr '(' $ac_mid ')' + 1`
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+ done
+ case $ac_lo in
+ ?*) ac_cv_sizeof_unsigned_long_long=$ac_lo;;
+-'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long long), 77
++'') 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), 77
++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
+-  if test "$cross_compiling" = yes; then
+-  { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
+-See \`config.log' for more details." >&5
+-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
+   cat >conftest.$ac_ext <<_ACEOF
+ /* confdefs.h.  */
+@@ -3879,8 +4540,9 @@
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h.  */
+ $ac_includes_default
+-long longval () { return (long) (sizeof (unsigned long long)); }
+-unsigned long ulongval () { return (long) (sizeof (unsigned long long)); }
++   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
+@@ -3889,35 +4551,44 @@
+ 
+   FILE *f = fopen ("conftest.val", "w");
+   if (! f)
+-    exit (1);
+-  if (((long) (sizeof (unsigned long long))) < 0)
++    return 1;
++  if (((long int) (sizeof (ac__type_sizeof_))) < 0)
+     {
+-      long i = longval ();
+-      if (i != ((long) (sizeof (unsigned long long))))
+-	exit (1);
++      long int i = longval ();
++      if (i != ((long int) (sizeof (ac__type_sizeof_))))
++	return 1;
+       fprintf (f, "%ld\n", i);
+     }
+   else
+     {
+-      unsigned long i = ulongval ();
+-      if (i != ((long) (sizeof (unsigned long long))))
+-	exit (1);
++      unsigned long int i = ulongval ();
++      if (i != ((long int) (sizeof (ac__type_sizeof_))))
++	return 1;
+       fprintf (f, "%lu\n", i);
+     }
+-  exit (ferror (f) || fclose (f) != 0);
++  return ferror (f) || fclose (f) != 0;
+ 
+   ;
+   return 0;
+ }
+ _ACEOF
+ rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
++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'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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
+@@ -3928,22 +4599,25 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ ( exit $ac_status )
+-{ { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long long), 77
++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), 77
++echo "$as_me: error: cannot compute sizeof (unsigned long long)
+ See \`config.log' for more details." >&2;}
+-   { (exit 1); exit 1; }; }
++   { (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
++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+ fi
+ rm -f conftest.val
+-else
+-  ac_cv_sizeof_unsigned_long_long=0
+-fi
+ fi
+-echo "$as_me:$LINENO: result: $ac_cv_sizeof_unsigned_long_long" >&5
+-echo "${ECHO_T}$ac_cv_sizeof_unsigned_long_long" >&6
++{ 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
+@@ -3987,12 +4661,11 @@
+ 
+ 
+ 
+-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 or --disable-modules was given.
++{ 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"
+-
++  enableval=$enable_modules;
+ else
+   case $target_os in
+ 	linux* | darwin*)
+@@ -4003,30 +4676,31 @@
+ 		;;
+ esac
+ 
+-fi;
+-echo "$as_me:$LINENO: result: $enable_modules" >&5
+-echo "${ECHO_T}$enable_modules" >&6
++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
++	{ echo "$as_me:$LINENO: checking for Linux sources" >&5
++echo $ECHO_N "checking for Linux sources... $ECHO_C" >&6; }
+ 
+-# Check whether --with-linux or --without-linux was given.
++# Check whether --with-linux was given.
+ if test "${with_linux+set}" = set; then
+-  withval="$with_linux"
+-  LINUX=$with_linux
++  withval=$with_linux; LINUX=$with_linux
+ else
+   LINUX=/usr/src/linux
+-fi;
+-echo "$as_me:$LINENO: result: $LINUX" >&5
+-echo "${ECHO_T}$LINUX" >&6
++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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -4035,8 +4709,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -4047,33 +4722,33 @@
+ 
+ 
+ # -------- 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
++{ 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 or --without-linux-obj was given.
++# Check whether --with-linux-obj was given.
+ if test "${with_linux_obj+set}" = set; then
+-  withval="$with_linux_obj"
+-  LINUX_OBJ=$with_linux_obj
++  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
++fi
++
++{ echo "$as_me:$LINENO: result: $LINUX_OBJ" >&5
++echo "${ECHO_T}$LINUX_OBJ" >&6; }
+ 
+ 
+ # -------- check for .config --------
+ 
+-# Check whether --with-linux-config or --without-linux-config was given.
++# Check whether --with-linux-config was given.
+ if test "${with_linux_config+set}" = set; then
+-  withval="$with_linux_config"
+-  LINUX_CONFIG=$with_linux_config
++  withval=$with_linux_config; LINUX_CONFIG=$with_linux_config
+ else
+   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
+@@ -4083,13 +4758,13 @@
+   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
++{ 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
++  { 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
+@@ -4099,8 +4774,8 @@
+   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
++{ 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
+@@ -4109,17 +4784,17 @@
+ 
+ 
+ 
+-# Check whether --with-kernel-source-header or --without-kernel-source-header was given.
++# 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;
++  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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -4128,8 +4803,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -4144,9 +4820,9 @@
+ # 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -4155,8 +4831,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -4170,9 +4847,9 @@
+    { (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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -4181,8 +4858,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -4209,9 +4887,9 @@
+ 	# 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -4220,8 +4898,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -4244,30 +4923,30 @@
+ 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
++{ 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
++		{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+     	else
+-		echo "$as_me:$LINENO: result: no (asm doesn't point at asm-um)" >&5
+-echo "${ECHO_T}no (asm doesn't point at asm-um)" >&6
++		{ echo "$as_me:$LINENO: result: no (asm doesn't point at asm-um)" >&5
++echo "${ECHO_T}no (asm doesn't point at asm-um)" >&6; }
+ 	fi
+ else
+-	echo "$as_me:$LINENO: result: no (asm-um missing)" >&5
+-echo "${ECHO_T}no (asm-um missing)" >&6
++	{ 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -4276,8 +4955,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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"
+@@ -4290,16 +4970,16 @@
+ 
+ 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
++{ 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
++	{ 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.  */
+@@ -4330,8 +5010,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-			echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++			{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 
+ else
+   echo "$as_me: failed program was:" >&5
+@@ -4369,8 +5049,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-					echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++					{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ else
+   echo "$as_me: failed program was:" >&5
+@@ -4396,8 +5076,8 @@
+ 
+ 
+ # --- 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
++{ 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
+@@ -4427,16 +5107,16 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-	echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++	{ 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: 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
+@@ -4450,8 +5130,8 @@
+ 
+ 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
++{ 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
+@@ -4503,8 +5183,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: unknown" >&5
+-echo "${ECHO_T}unknown" >&6
++	{ 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; }; }
+@@ -4513,14 +5193,14 @@
+ 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: 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
++{ echo "$as_me:$LINENO: result: $LINUXRELEASE" >&5
++echo "${ECHO_T}$LINUXRELEASE" >&6; }
+ 
+ 
+ moduledir='/lib/modules/'$LINUXRELEASE/kernel
+@@ -4533,16 +5213,16 @@
+ 
+ 
+ # ------------ RELEASE --------------------------------
+-echo "$as_me:$LINENO: checking for Lustre release" >&5
+-echo $ECHO_N "checking for Lustre release... $ECHO_C" >&6
++{ 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
++{ 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
++{ 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
+@@ -4579,22 +5259,22 @@
+   (exit $ac_status); }; }; then
+ 
+ 		RHEL_KENEL="yes"
+-		echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++		{ 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: 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 that SuSe kernel" >&5
+-echo $ECHO_N "checking that SuSe kernel... $ECHO_C" >&6
++{ echo "$as_me:$LINENO: checking that SuSe kernel" >&5
++echo $ECHO_N "checking that SuSe kernel... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -4631,30 +5311,30 @@
+   (exit $ac_status); }; }; then
+ 
+ 		SUSE_KERNEL="yes"
+-		echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++		{ 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: 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
++{ 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_OBJ $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
++  { 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;}
+@@ -4662,15 +5342,15 @@
+ 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
++{ 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: result: $SYMVERFILE" >&5
++echo "${ECHO_T}$SYMVERFILE" >&6; }
+ 
+ 
+ 
+@@ -4680,8 +5360,8 @@
+ #	CC="$CC -m64"
+ #fi
+ 
+-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
++{ 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
+@@ -4717,8 +5397,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ else
+@@ -4726,8 +5406,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ 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;}
+@@ -4738,8 +5418,8 @@
+ 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
++{ 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
+@@ -4775,8 +5455,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ else
+@@ -4784,16 +5464,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ 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_PREEMPT" >&5
+-echo $ECHO_N "checking if Linux was built with CONFIG_PREEMPT... $ECHO_C" >&6
++{ echo "$as_me:$LINENO: checking if Linux was built with CONFIG_PREEMPT" >&5
++echo $ECHO_N "checking if Linux was built with CONFIG_PREEMPT... $ECHO_C" >&6; }
+ cat >conftest.c <<_ACEOF
+ /* confdefs.h.  */
+ _ACEOF
+@@ -4829,8 +5509,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 	{ { echo "$as_me:$LINENO: error: Lustre does not support kernels with preempt enabled." >&5
+ echo "$as_me: error: Lustre does not support kernels with preempt enabled." >&2;}
+@@ -4842,16 +5522,16 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ 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
++{ 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
+@@ -4887,8 +5567,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ else
+@@ -4896,8 +5576,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ 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
+@@ -4910,8 +5590,8 @@
+ 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
++{ 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
+@@ -4947,8 +5627,8 @@
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
+   (exit $ac_status); }; }; then
+ 
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ 
+ else
+@@ -4956,8 +5636,8 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 
+ 	{ echo "$as_me:$LINENO: WARNING: " >&5
+ echo "$as_me: WARNING: " >&2;}
+@@ -4978,9 +5658,9 @@
+ 
+ # 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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -4989,15 +5669,16 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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 eval "test \"\${$as_lb_File+set}\" = set"; then
++{ 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
+@@ -5006,8 +5687,9 @@
+   eval "$as_lb_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_lb_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_lb_File'}'`" >&6
++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
+@@ -5023,11 +5705,11 @@
+ 
+ 
+ # 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
++{ 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
++	{ 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;}
+@@ -5035,15 +5717,15 @@
+ 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
++{ 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
++	{ 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
++	{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 	MODPOST_ARGS=""
+ fi
+ 
+@@ -5103,22 +5785,22 @@
+ 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 or --disable-quilt was given.
++{ 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"
+-
++  enableval=$enable_quilt;
+ else
+   enable_quilt='yes'
+-fi;
+-echo "$as_me:$LINENO: result: $enable_quilt" >&5
+-echo "${ECHO_T}$enable_quilt" >&6
++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
++{ 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
+@@ -5133,36 +5815,37 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
++{ 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
+@@ -5177,28 +5860,29 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ fi
+ 
++
+ fi
+ 
+ if test x$enable_ldiskfs$PATCH$QUILT = xyesnono ; then
+@@ -5241,8 +5925,8 @@
+ 
+ 
+ 
+-echo "$as_me:$LINENO: checking which ldiskfs series to use" >&5
+-echo $ECHO_N "checking which ldiskfs series to use... $ECHO_C" >&6
++{ 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" ;;
+@@ -5254,22 +5938,26 @@
+ 2.6.18*)
+ 	if test x$RHEL_KENEL = xyes; then
+ 		LDISKFS_SERIES="2.6-rhel5.series"
++	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.23*) LDISKFS_SERIES="2.6.23-vanilla.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: result: $LDISKFS_SERIES" >&5
++echo "${ECHO_T}$LDISKFS_SERIES" >&6; }
+ 
+ 
+ 
+ 
+-echo "$as_me:$LINENO: checking if Linux was built with symbol d_rehash_cond is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol d_rehash_cond is exported... $ECHO_C" >&6
++{ echo "$as_me:$LINENO: checking if Linux was built with symbol d_rehash_cond is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol d_rehash_cond is exported... $ECHO_C" >&6; }
+ grep -q -E '[[:space:]]d_rehash_cond[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
+ rc=$?
+ if test $rc -ne 0; then
+@@ -5283,12 +5971,12 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_D_REHASH_COND 1
+@@ -5296,8 +5984,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_D_REHASH_COND 1
+@@ -5306,8 +5994,8 @@
+ fi
+ 
+ 
+-echo "$as_me:$LINENO: checking if Linux was built with symbol __d_rehash is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol __d_rehash is exported... $ECHO_C" >&6
++{ echo "$as_me:$LINENO: checking if Linux was built with symbol __d_rehash is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol __d_rehash is exported... $ECHO_C" >&6; }
+ grep -q -E '[[:space:]]__d_rehash[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
+ rc=$?
+ if test $rc -ne 0; then
+@@ -5321,12 +6009,12 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE___D_REHASH 1
+@@ -5334,8 +6022,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE___D_REHASH 1
+@@ -5344,8 +6032,8 @@
+ fi
+ 
+ 
+-echo "$as_me:$LINENO: checking if Linux was built with symbol d_move_locked is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol d_move_locked is exported... $ECHO_C" >&6
++{ echo "$as_me:$LINENO: checking if Linux was built with symbol d_move_locked is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol d_move_locked is exported... $ECHO_C" >&6; }
+ grep -q -E '[[:space:]]d_move_locked[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
+ rc=$?
+ if test $rc -ne 0; then
+@@ -5359,12 +6047,12 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_D_MOVE_LOCKED 1
+@@ -5372,8 +6060,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_D_MOVE_LOCKED 1
+@@ -5382,8 +6070,8 @@
+ fi
+ 
+ 
+-echo "$as_me:$LINENO: checking if Linux was built with symbol __d_move is exported" >&5
+-echo $ECHO_N "checking if Linux was built with symbol __d_move is exported... $ECHO_C" >&6
++{ echo "$as_me:$LINENO: checking if Linux was built with symbol __d_move is exported" >&5
++echo $ECHO_N "checking if Linux was built with symbol __d_move is exported... $ECHO_C" >&6; }
+ grep -q -E '[[:space:]]__d_move[[:space:]]' $LINUX/$SYMVERFILE 2>/dev/null
+ rc=$?
+ if test $rc -ne 0; then
+@@ -5397,12 +6085,12 @@
+ 	fi
+     done
+     if test $export -eq 0; then
+-    	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++    	{ 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
++    	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE___D_MOVE 1
+@@ -5410,8 +6098,8 @@
+ 
+     fi
+ else
+-    echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++    { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE___D_MOVE 1
+@@ -5448,39 +6136,58 @@
+ 
+ # The following way of writing the cache mishandles newlines in values,
+ # but we know of no workaround that is simple, portable, and efficient.
+-# So, don't put newlines in cache variables' values.
++# 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 `(ac_space=' '; set | grep ac_space) 2>&1` in
+-    *ac_space=\ *)
++    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 \
+-	"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
++      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+       ;;
+-    esac;
+-} |
++    esac |
++    sort
++) |
+   sed '
++     /^ac_cv_env_/b end
+      t clear
+      : clear
+      s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
+      t end
+-     /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
++     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 "updating cache $cache_file"
++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 "not updating unwritable cache $cache_file"
++    { 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
+@@ -5489,32 +6196,18 @@
+ # Let make expand exec_prefix.
+ test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
+ 
+-# 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
+-
+ DEFS=-DHAVE_CONFIG_H
+ 
+ ac_libobjs=
+ ac_ltlibobjs=
+ for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
+   # 1. Remove the extension, and $U if already installed.
+-  ac_i=`echo "$ac_i" |
+-	 sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
+-  # 2. Add them.
+-  ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
+-  ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
++  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
+ LIBOBJS=$ac_libobjs
+ 
+@@ -5594,73 +6287,26 @@
+ ## M4sh Initialization.  ##
+ ## --------------------- ##
+ 
+-# Be Bourne compatible
++# 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+"$@"}'='"$@"'
+-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
++  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
+ 
+ 
+-# 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'
+@@ -5681,14 +6327,24 @@
+   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
++
+ 
+-  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.
++# (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
+@@ -5698,6 +6354,7 @@
+   test -z "$as_dir" && as_dir=.
+   test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+ done
++IFS=$as_save_IFS
+ 
+        ;;
+   esac
+@@ -5707,100 +6364,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; }; }
++  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
++
++# 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
+-  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
++    ($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
+-  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; }
+-	     CONFIG_SHELL=$as_dir/$as_base
+-	     export CONFIG_SHELL
+-	     exec "$CONFIG_SHELL" "$0" ${1+"$@"}
+-	   fi;;
+-	 esac
+-       done
+-done
+-;;
+-  esac
++  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 before each line; the second 'sed' does the real
+-  # work.  The second script uses 'N' to pair each line-number line
+-  # with the numbered line, and appends trailing '-' during
+-  # substitution so that $LINENO is not a special case at line end.
++  # 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
+-  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
+-  sed '=' <$as_myself |
++  # 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
+-      s,$,-,
+       : loop
+-      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
++      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
+       t loop
+-      s,-$,,
+-      s,^['$as_cr_digits']*\n,,
++      s/-\n.*//
+     ' >$as_me.lineno &&
+-  chmod +x $as_me.lineno ||
+-    { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
+-echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
++  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 sensible to this).
+-  . ./$as_me.lineno
++  # original and so on.  Autoconf is especially sensitive to this).
++  . "./$as_me.lineno"
+   # Exit status is that of the last command.
+   exit
+ }
+ 
+ 
+-case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
+-  *c*,-n*) ECHO_N= ECHO_C='
+-' ECHO_T='	' ;;
+-  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
+-  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
++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; then
++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
+-  # We could just check for DJGPP; but this test a) works b) is more generic
+-  # 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
++  # ... 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$$.file
++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=:
+@@ -5809,7 +6527,28 @@
+   as_mkdir_p=false
+ fi
+ 
+-as_executable_p="test -f"
++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'"
+@@ -5818,31 +6557,14 @@
+ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+ 
+ 
+-# IFS
+-# We need space, tab and new line, in precisely that order.
+-as_nl='
+-'
+-IFS=" 	$as_nl"
+-
+-# CDPATH.
+-$as_unset CDPATH
+-
+ exec 6>&1
+ 
+-# Open the log real soon, to keep \$[0] and so on meaningful, and to
++# 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.  Logging --version etc. is OK.
+-exec 5>>config.log
+-{
+-  echo
+-  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
+-## Running $as_me. ##
+-_ASBOX
+-} >&5
+-cat >&5 <<_CSEOF
+-
++# values after options handling.
++ac_log="
+ This file was extended by Lustre ldiskfs $as_me 3.0.7.1, which was
+-generated by GNU Autoconf 2.59.  Invocation command line was
++generated by GNU Autoconf 2.61.  Invocation command line was
+ 
+   CONFIG_FILES    = $CONFIG_FILES
+   CONFIG_HEADERS  = $CONFIG_HEADERS
+@@ -5850,30 +6572,20 @@
+   CONFIG_COMMANDS = $CONFIG_COMMANDS
+   $ $0 $@
+ 
+-_CSEOF
+-echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
+-echo >&5
++on `(hostname || uname -n) 2>/dev/null | sed 1q`
++"
++
+ _ACEOF
+ 
++cat >>$CONFIG_STATUS <<_ACEOF
+ # Files that config.status was made for.
+-if test -n "$ac_config_files"; then
+-  echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
+-fi
+-
+-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_commands"; then
+-  echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
+-fi
++_ACEOF
+ 
+ cat >>$CONFIG_STATUS <<\_ACEOF
+-
+ ac_cs_usage="\
+ \`$as_me' instantiates files from templates according to the
+ current configuration.
+@@ -5881,7 +6593,7 @@
+ Usage: $0 [OPTIONS] [FILE]...
+ 
+   -h, --help       print this help, then exit
+-  -V, --version    print version number, 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
+@@ -5900,19 +6612,21 @@
+ $config_commands
+ 
+ Report bugs to <bug-autoconf at gnu.org>."
+-_ACEOF
+ 
++_ACEOF
+ cat >>$CONFIG_STATUS <<_ACEOF
+ ac_cs_version="\\
+ Lustre ldiskfs config.status 3.0.7.1
+-configured by $0, generated by GNU Autoconf 2.59,
+-  with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
++configured by $0, generated by GNU Autoconf 2.61,
++  with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
+ 
+-Copyright (C) 2003 Free Software Foundation, Inc.
++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."
+-srcdir=$srcdir
+-INSTALL="$INSTALL"
++
++ac_pwd='$ac_pwd'
++srcdir='$srcdir'
++INSTALL='$INSTALL'
+ _ACEOF
+ 
+ cat >>$CONFIG_STATUS <<\_ACEOF
+@@ -5923,39 +6637,24 @@
+ do
+   case $1 in
+   --*=*)
+-    ac_option=`expr "x$1" : 'x\([^=]*\)='`
+-    ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
++    ac_option=`expr "X$1" : 'X\([^=]*\)='`
++    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
+     ac_shift=:
+     ;;
+-  -*)
++  *)
+     ac_option=$1
+     ac_optarg=$2
+     ac_shift=shift
+     ;;
+-  *) # This is not an option, so the user has probably given explicit
+-     # arguments.
+-     ac_option=$1
+-     ac_need_defaults=false;;
+   esac
+ 
+   case $ac_option in
+   # Handling of the options.
+-_ACEOF
+-cat >>$CONFIG_STATUS <<\_ACEOF
+   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
+     ac_cs_recheck=: ;;
+-  --version | --vers* | -V )
+-    echo "$ac_cs_version"; exit 0 ;;
+-  --he | --h)
+-    # Conflict between --help and --header
+-    { { echo "$as_me:$LINENO: error: ambiguous option: $1
+-Try \`$0 --help' for more information." >&5
+-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 0 ;;
+-  --debug | --d* | -d )
++  --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
+@@ -5965,18 +6664,24 @@
+     $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:$LINENO: error: unrecognized option: $1
+-Try \`$0 --help' for more information." >&5
+-echo "$as_me: error: unrecognized option: $1
+-Try \`$0 --help' for more information." >&2;}
++  -*) { 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_config_targets="$ac_config_targets $1"
++     ac_need_defaults=false ;;
+ 
+   esac
+   shift
+@@ -5992,42 +6697,54 @@
+ _ACEOF
+ cat >>$CONFIG_STATUS <<_ACEOF
+ if \$ac_cs_recheck; then
+-  echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
+-  exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
++  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 section.
++# 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
+-  # Handling of arguments.
++  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" ;;
++
+   *) { { 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
+@@ -6039,374 +6756,481 @@
+ fi
+ 
+ # Have a temporary directory for convenience.  Make it in the build tree
+-# simply because there is no reason to put it here, and in addition,
++# simply because there is no reason against having it here, and in addition,
+ # creating and moving files from /tmp can sometimes cause problems.
+-# Create a temporary directory, and hook for its removal unless debugging.
++# 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 ||
+ {
+-  trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
++  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 -q "./confstatXXXXXX") 2>/dev/null` &&
++  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
+   test -n "$tmp" && test -d "$tmp"
+ }  ||
+ {
+-  tmp=./confstat$$-$RANDOM
+-  (umask 077 && mkdir $tmp)
++  tmp=./conf$$-$RANDOM
++  (umask 077 && mkdir "$tmp")
+ } ||
+ {
+    echo "$me: cannot create a temporary directory in ." >&2
+    { (exit 1); exit 1; }
+ }
+ 
+-_ACEOF
+-
+-cat >>$CONFIG_STATUS <<_ACEOF
+-
+ #
+-# CONFIG_FILES section.
++# 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
+-  # Protect against being on the right side of a sed subst in config.status.
+-  sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
+-   s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
+-s, at SHELL@,$SHELL,;t t
+-s, at PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
+-s, at PACKAGE_NAME@,$PACKAGE_NAME,;t t
+-s, at PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
+-s, at PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
+-s, at PACKAGE_STRING@,$PACKAGE_STRING,;t t
+-s, at PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
+-s, at exec_prefix@,$exec_prefix,;t t
+-s, at prefix@,$prefix,;t t
+-s, at program_transform_name@,$program_transform_name,;t t
+-s, at bindir@,$bindir,;t t
+-s, at sbindir@,$sbindir,;t t
+-s, at libexecdir@,$libexecdir,;t t
+-s, at datadir@,$datadir,;t t
+-s, at sysconfdir@,$sysconfdir,;t t
+-s, at sharedstatedir@,$sharedstatedir,;t t
+-s, at localstatedir@,$localstatedir,;t t
+-s, at libdir@,$libdir,;t t
+-s, at includedir@,$includedir,;t t
+-s, at oldincludedir@,$oldincludedir,;t t
+-s, at infodir@,$infodir,;t t
+-s, at mandir@,$mandir,;t t
+-s, at build_alias@,$build_alias,;t t
+-s, at host_alias@,$host_alias,;t t
+-s, at target_alias@,$target_alias,;t t
+-s, at DEFS@,$DEFS,;t t
+-s, at ECHO_C@,$ECHO_C,;t t
+-s, at ECHO_N@,$ECHO_N,;t t
+-s, at ECHO_T@,$ECHO_T,;t t
+-s, at LIBS@,$LIBS,;t t
+-s, at build@,$build,;t t
+-s, at build_cpu@,$build_cpu,;t t
+-s, at build_vendor@,$build_vendor,;t t
+-s, at build_os@,$build_os,;t t
+-s, at host@,$host,;t t
+-s, at host_cpu@,$host_cpu,;t t
+-s, at host_vendor@,$host_vendor,;t t
+-s, at host_os@,$host_os,;t t
+-s, at target@,$target,;t t
+-s, at target_cpu@,$target_cpu,;t t
+-s, at target_vendor@,$target_vendor,;t t
+-s, at target_os@,$target_os,;t t
+-s, at INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
+-s, at INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
+-s, at INSTALL_DATA@,$INSTALL_DATA,;t t
+-s, at CYGPATH_W@,$CYGPATH_W,;t t
+-s, at PACKAGE@,$PACKAGE,;t t
+-s, at VERSION@,$VERSION,;t t
+-s, at ACLOCAL@,$ACLOCAL,;t t
+-s, at AUTOCONF@,$AUTOCONF,;t t
+-s, at AUTOMAKE@,$AUTOMAKE,;t t
+-s, at AUTOHEADER@,$AUTOHEADER,;t t
+-s, at MAKEINFO@,$MAKEINFO,;t t
+-s, at AMTAR@,$AMTAR,;t t
+-s, at install_sh@,$install_sh,;t t
+-s, at STRIP@,$STRIP,;t t
+-s, at ac_ct_STRIP@,$ac_ct_STRIP,;t t
+-s, at INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t
+-s, at AWK@,$AWK,;t t
+-s, at SET_MAKE@,$SET_MAKE,;t t
+-s, at am__leading_dot@,$am__leading_dot,;t t
+-s, at CC@,$CC,;t t
+-s, at CFLAGS@,$CFLAGS,;t t
+-s, at LDFLAGS@,$LDFLAGS,;t t
+-s, at CPPFLAGS@,$CPPFLAGS,;t t
+-s, at ac_ct_CC@,$ac_ct_CC,;t t
+-s, at EXEEXT@,$EXEEXT,;t t
+-s, at OBJEXT@,$OBJEXT,;t t
+-s, at DEPDIR@,$DEPDIR,;t t
+-s, at am__include@,$am__include,;t t
+-s, at am__quote@,$am__quote,;t t
+-s, at AMDEP_TRUE@,$AMDEP_TRUE,;t t
+-s, at AMDEP_FALSE@,$AMDEP_FALSE,;t t
+-s, at AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t
+-s, at CCDEPMODE@,$CCDEPMODE,;t t
+-s, at am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t
+-s, at am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t
+-s, at lb_target_os@,$lb_target_os,;t t
+-s, at INCLUDE_RULES@,$INCLUDE_RULES,;t t
+-s, at RANLIB@,$RANLIB,;t t
+-s, at ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
+-s, at CPP@,$CPP,;t t
+-s, at EGREP@,$EGREP,;t t
+-s, at LLCPPFLAGS@,$LLCPPFLAGS,;t t
+-s, at LLCFLAGS@,$LLCFLAGS,;t t
+-s, at EXTRA_KCFLAGS@,$EXTRA_KCFLAGS,;t t
+-s, at LINUX@,$LINUX,;t t
+-s, at LINUX_OBJ@,$LINUX_OBJ,;t t
+-s, at LINUX_CONFIG@,$LINUX_CONFIG,;t t
+-s, at ARCH_UM@,$ARCH_UM,;t t
+-s, at UML_CFLAGS@,$UML_CFLAGS,;t t
+-s, at MODULE_TARGET@,$MODULE_TARGET,;t t
+-s, at linux25@,$linux25,;t t
+-s, at KMODEXT@,$KMODEXT,;t t
+-s, at LINUXRELEASE@,$LINUXRELEASE,;t t
+-s, at moduledir@,$moduledir,;t t
+-s, at modulefsdir@,$modulefsdir,;t t
+-s, at modulenetdir@,$modulenetdir,;t t
+-s, at RELEASE@,$RELEASE,;t t
+-s, at SYMVERFILE@,$SYMVERFILE,;t t
+-s, at MODPOST@,$MODPOST,;t t
+-s, at MODPOST_ARGS@,$MODPOST_ARGS,;t t
+-s, at MODULES_TRUE@,$MODULES_TRUE,;t t
+-s, at MODULES_FALSE@,$MODULES_FALSE,;t t
+-s, at LINUX_TRUE@,$LINUX_TRUE,;t t
+-s, at LINUX_FALSE@,$LINUX_FALSE,;t t
+-s, at DARWIN_TRUE@,$DARWIN_TRUE,;t t
+-s, at DARWIN_FALSE@,$DARWIN_FALSE,;t t
+-s, at LINUX25_TRUE@,$LINUX25_TRUE,;t t
+-s, at LINUX25_FALSE@,$LINUX25_FALSE,;t t
+-s, at LDISKFSDIR@,$LDISKFSDIR,;t t
+-s, at PATCH@,$PATCH,;t t
+-s, at QUILT@,$QUILT,;t t
+-s, at USE_QUILT_TRUE@,$USE_QUILT_TRUE,;t t
+-s, at USE_QUILT_FALSE@,$USE_QUILT_FALSE,;t t
+-s, at LDISKFS_SERIES@,$LDISKFS_SERIES,;t t
+-s, at ac_configure_args@,$ac_configure_args,;t t
+-s, at MOSTLYCLEANFILES@,$MOSTLYCLEANFILES,;t t
+-s, at LIBOBJS@,$LIBOBJS,;t t
+-s, at LTLIBOBJS@,$LTLIBOBJS,;t t
+-CEOF
++if test -n "$CONFIG_FILES"; then
+ 
+ _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.
+-  ac_max_sed_lines=48
+-  ac_sed_frag=1 # Number of current file.
+-  ac_beg=1 # First line for current file.
+-  ac_end=$ac_max_sed_lines # Line after last line for current file.
+-  ac_more_lines=:
+-  ac_sed_cmds=
+-  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
++
++
++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
+-      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
++    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"
++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`
++
++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
++LDISKFS_SERIES!$LDISKFS_SERIES$ac_delim
++ac_configure_args!$ac_configure_args$ac_delim
++MOSTLYCLEANFILES!$MOSTLYCLEANFILES$ac_delim
++LIBOBJS!$LIBOBJS$ac_delim
++LTLIBOBJS!$LTLIBOBJS$ac_delim
++_ACEOF
++
++  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 29; 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
+-  if test -z "$ac_sed_cmds"; then
+-    ac_sed_cmds=cat
++
++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"
+ 
++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
+-for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
+-  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
+-  case $ac_file in
+-  - | *:- | *:-:* ) # input from stdin
+-	cat >$tmp/stdin
+-	ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+-  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+-  * )   ac_file_in=$ac_file.in ;;
++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
+ 
+-  # 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])
++    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 ||
++	 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; }
++    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^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"
++  { 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 test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
++    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 ||
++	 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; }
++    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 ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
+-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
++    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=.
+ 
+-if test "$ac_dir" != .; then
++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=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+-else
+-  ac_dir_suffix= ac_top_builddir=
+-fi
++  # 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
+-  .)  # No --srcdir option.  We are building in place.
++  .)  # We are building in place.
+     ac_srcdir=.
+-    if test -z "$ac_top_builddir"; then
+-       ac_top_srcdir=.
+-    else
+-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+-    fi ;;
+-  [\\/]* | ?:[\\/]* )  # Absolute path.
++    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 ;;
+-  *) # Relative path.
+-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
++    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
+ 
+-# Do not use `cd foo && pwd` to compute absolute paths, because
+-# the directories may not exist.
+-case `pwd` in
+-.) ac_abs_builddir="$ac_dir";;
+-*)
+-  case "$ac_dir" in
+-  .) ac_abs_builddir=`pwd`;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
+-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_builddir=${ac_top_builddir}.;;
+-*)
+-  case ${ac_top_builddir}. in
+-  .) ac_abs_top_builddir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
+-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_srcdir=$ac_srcdir;;
+-*)
+-  case $ac_srcdir in
+-  .) ac_abs_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
+-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_srcdir=$ac_top_srcdir;;
+-*)
+-  case $ac_top_srcdir in
+-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
+-  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
+-  esac;;
+-esac
+ 
++  case $ac_mode in
++  :F)
++  #
++  # CONFIG_FILE
++  #
+ 
+   case $INSTALL in
+   [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
+-  *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
++  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
+   esac
++_ACEOF
+ 
+-  if test x"$ac_file" != x-; then
+-    { echo "$as_me:$LINENO: creating $ac_file" >&5
+-echo "$as_me: creating $ac_file" >&6;}
+-    rm -f "$ac_file"
+-  fi
+-  # 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.  */
+-  if test x"$ac_file" = x-; then
+-    configure_input=
+-  else
+-    configure_input="$ac_file.  "
+-  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=:
+-    for f in $ac_file_in; do
+-      case $f in
+-      -) echo $tmp/stdin ;;
+-      [\\/$]*)
+-	 # Absolute (can't be DOS-style, as IFS=:)
+-	 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+-echo "$as_me: error: cannot find input file: $f" >&2;}
+-   { (exit 1); exit 1; }; }
+-	 echo "$f";;
+-      *) # Relative
+-	 if test -f "$f"; then
+-	   # Build tree
+-	   echo "$f"
+-	 elif test -f "$srcdir/$f"; then
+-	   # Source tree
+-	   echo "$srcdir/$f"
+-	 else
+-	   # /dev/null tree
+-	   { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+-echo "$as_me: error: cannot find input file: $f" >&2;}
+-   { (exit 1); exit 1; }; }
+-	 fi;;
++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
+-    done` || { (exit 1); exit 1; }
+ _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
+@@ -6414,248 +7238,130 @@
+ cat >>$CONFIG_STATUS <<\_ACEOF
+ :t
+ /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
+-s, at configure_input@,$configure_input,;t t
+-s, at srcdir@,$ac_srcdir,;t t
+-s, at abs_srcdir@,$ac_abs_srcdir,;t t
+-s, at top_srcdir@,$ac_top_srcdir,;t t
+-s, at abs_top_srcdir@,$ac_abs_top_srcdir,;t t
+-s, at builddir@,$ac_builddir,;t t
+-s, at abs_builddir@,$ac_abs_builddir,;t t
+-s, at top_builddir@,$ac_top_builddir,;t t
+-s, at abs_top_builddir@,$ac_abs_top_builddir,;t t
+-s, at INSTALL@,$ac_INSTALL,;t t
+-" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
+-  rm -f $tmp/stdin
+-  if test x"$ac_file" != x-; then
+-    mv $tmp/out $ac_file
+-  else
+-    cat $tmp/out
+-    rm -f $tmp/out
+-  fi
++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
+ 
+-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"; } &&
++  { 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 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
+-  - | *:- | *:-:* ) # input from stdin
+-	cat >$tmp/stdin
+-	ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+-  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+-  * )   ac_file_in=$ac_file.in ;;
+-  esac
+-
+-  test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
+-echo "$as_me: creating $ac_file" >&6;}
+-
+-  # First look for the input files in the build tree, otherwise in the
+-  # src tree.
+-  ac_file_inputs=`IFS=:
+-    for f in $ac_file_in; do
+-      case $f in
+-      -) echo $tmp/stdin ;;
+-      [\\/$]*)
+-	 # Absolute (can't be DOS-style, as IFS=:)
+-	 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+-echo "$as_me: error: cannot find input file: $f" >&2;}
+-   { (exit 1); exit 1; }; }
+-	 # Do quote $f, to prevent DOS paths from being IFS'd.
+-	 echo "$f";;
+-      *) # Relative
+-	 if test -f "$f"; then
+-	   # Build tree
+-	   echo "$f"
+-	 elif test -f "$srcdir/$f"; then
+-	   # Source tree
+-	   echo "$srcdir/$f"
+-	 else
+-	   # /dev/null tree
+-	   { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+-echo "$as_me: error: cannot find input file: $f" >&2;}
+-   { (exit 1); exit 1; }; }
+-	 fi;;
+-      esac
+-    done` || { (exit 1); exit 1; }
+-  # Remove the trailing spaces.
+-  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'
+-# templates, and the second `#undef' templates.
+-# And first: Protect against being on the right side of a sed subst in
+-# config.status.  Protect against being in an unquoted here document
+-# in config.status.
+-rm -f conftest.defines conftest.undefs
+-# Using a here document instead of a string reduces the quoting nightmare.
+-# Putting comments in sed scripts is not portable.
+-#
+-# `end' is used to avoid that the second main sed command (meant for
+-# 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
+-t clear
+-: clear
+-s,^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*\)\(([^)]*)\)[	 ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
+-t end
+-s,^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 ][^	 ]*\)[	 ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
+-: end
+-_ACEOF
+-# If some macros were called several times there might be several times
+-# the same #defines, which is useless.  Nevertheless, we may not want to
+-# sort them, since we want the *last* AC-DEFINE to be honored.
+-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
++	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
+ # on some systems where configure will not decide to define it.
+-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
+-echo '  if grep "^[	 ]*#[	 ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
+-echo '  # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
+-echo '  :' >>$CONFIG_STATUS
+-rm -f conftest.tail
+-while grep . conftest.defines >/dev/null
++# 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 limited-size here document to $tmp/defines.sed.
+-  echo '  cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
+-  # Speed up: don't consider the non `#define' lines.
+-  echo '/^[	 ]*#[	 ]*define/!b' >>$CONFIG_STATUS
+-  # Work around the forget-to-reset-the-flag bug.
+-  echo 't clr' >>$CONFIG_STATUS
+-  echo ': clr' >>$CONFIG_STATUS
+-  sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
++  # 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 $tmp/in >$tmp/out
+-  rm -f $tmp/in
+-  mv $tmp/out $tmp/in
+-' >>$CONFIG_STATUS
+-  sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
++    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
+-echo '  fi # grep' >>$CONFIG_STATUS
+-echo >>$CONFIG_STATUS
+-
+-# Break up conftest.undefs 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 #undef templates' >>$CONFIG_STATUS
+-rm -f conftest.tail
+-while grep . conftest.undefs >/dev/null
+-do
+-  # Write a limited-size here document to $tmp/undefs.sed.
+-  echo '  cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
+-  # Speed up: don't consider the non `#undef'
+-  echo '/^[	 ]*#[	 ]*undef/!b' >>$CONFIG_STATUS
+-  # Work around the forget-to-reset-the-flag bug.
+-  echo 't clr' >>$CONFIG_STATUS
+-  echo ': clr' >>$CONFIG_STATUS
+-  sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
+-  echo 'CEOF
+-  sed -f $tmp/undefs.sed $tmp/in >$tmp/out
+-  rm -f $tmp/in
+-  mv $tmp/out $tmp/in
+-' >>$CONFIG_STATUS
+-  sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
+-  rm -f conftest.undefs
+-  mv conftest.tail conftest.undefs
+-done
+-rm -f conftest.undefs
++rm -f conftest.defines conftest.tail
+ 
++echo "ac_result=$ac_in" >>$CONFIG_STATUS
+ cat >>$CONFIG_STATUS <<\_ACEOF
+-  # 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.  */
+-  if test x"$ac_file" = x-; then
+-    echo "/* Generated by configure.  */" >$tmp/config.h
+-  else
+-    echo "/* $ac_file.  Generated by configure.  */" >$tmp/config.h
+-  fi
+-  cat $tmp/in >>$tmp/config.h
+-  rm -f $tmp/in
+   if test x"$ac_file" != x-; then
+-    if diff $ac_file $tmp/config.h >/dev/null 2>&1; 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
+-      ac_dir=`(dirname "$ac_file") 2>/dev/null ||
+-$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'`
+-      { if $as_mkdir_p; then
+-    mkdir -p "$ac_dir"
+-  else
+-    as_dir="$ac_dir"
+-    as_dirs=
+-    while test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
+-$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'`
+-    done
+-    test ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
+-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
+-   { (exit 1); exit 1; }; }; }
+-
+       rm -f $ac_file
+-      mv $tmp/config.h $ac_file
++      mv "$tmp/config.h" $ac_file
+     fi
+   else
+-    cat $tmp/config.h
+-    rm -f $tmp/config.h
++    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
+@@ -6666,135 +7372,39 @@
+       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
+   esac
+ done
+-echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null ||
++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 ||
++	 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; }
++    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\/\)[^/].*/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\/\)$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\).*/{
++	    s//\1/
++	    q
++	  }
+   	  s/.*/./; q'`/stamp-h$_am_stamp_count
+-done
+-_ACEOF
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-
+-#
+-# CONFIG_COMMANDS section.
+-#
+-for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
+-  ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
+-  ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-  ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
+-$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+-	 X"$ac_dest" : 'X\(//\)[^/]' \| \
+-	 X"$ac_dest" : 'X\(//\)$' \| \
+-	 X"$ac_dest" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X"$ac_dest" |
+-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+-  	  /^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"
+-    as_dirs=
+-    while test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
+-$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'`
+-    done
+-    test ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
+-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
+-   { (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
+-
+-case $srcdir in
+-  .)  # No --srcdir option.  We are building in place.
+-    ac_srcdir=.
+-    if test -z "$ac_top_builddir"; then
+-       ac_top_srcdir=.
+-    else
+-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+-    fi ;;
+-  [\\/]* | ?:[\\/]* )  # Absolute path.
+-    ac_srcdir=$srcdir$ac_dir_suffix;
+-    ac_top_srcdir=$srcdir ;;
+-  *) # Relative path.
+-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
+-esac
++ ;;
+ 
+-# Do not use `cd foo && pwd` to compute absolute paths, because
+-# the directories may not exist.
+-case `pwd` in
+-.) ac_abs_builddir="$ac_dir";;
+-*)
+-  case "$ac_dir" in
+-  .) ac_abs_builddir=`pwd`;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
+-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_builddir=${ac_top_builddir}.;;
+-*)
+-  case ${ac_top_builddir}. in
+-  .) ac_abs_top_builddir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
+-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_srcdir=$ac_srcdir;;
+-*)
+-  case $ac_srcdir in
+-  .) ac_abs_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
+-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_srcdir=$ac_top_srcdir;;
+-*)
+-  case $ac_top_srcdir in
+-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
+-  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
+-  esac;;
++  :C)  { echo "$as_me:$LINENO: executing $ac_file commands" >&5
++echo "$as_me: executing $ac_file commands" >&6;}
++ ;;
+ esac
+ 
+ 
+-  { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
+-echo "$as_me: executing $ac_dest commands" >&6;}
+-  case $ac_dest in
+-    depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
++  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.
+@@ -6804,17 +7414,28 @@
+   # 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=`(dirname "$mf") 2>/dev/null ||
++    dirpart=`$as_dirname -- "$mf" ||
+ $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ 	 X"$mf" : 'X\(//\)[^/]' \| \
+ 	 X"$mf" : 'X\(//\)$' \| \
+-	 X"$mf" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
++	 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; }
++    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\/\)[^/].*/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\/\)$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\).*/{
++	    s//\1/
++	    q
++	  }
+   	  s/.*/./; q'`
+   else
+     continue
+@@ -6843,53 +7464,79 @@
+        sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
+     # Make sure the directory exists.
+     test -f "$dirpart/$file" && continue
+-    fdir=`(dirname "$file") 2>/dev/null ||
++    fdir=`$as_dirname -- "$file" ||
+ $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ 	 X"$file" : 'X\(//\)[^/]' \| \
+ 	 X"$file" : 'X\(//\)$' \| \
+-	 X"$file" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
++	 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; }
++    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^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
++    { 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 test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
++    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 ||
++	 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; }
++    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 ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5
+-echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;}
++    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
+-_ACEOF
++done # for ac_tag
+ 
+-cat >>$CONFIG_STATUS <<\_ACEOF
+ 
+ { (exit 0); exit 0; }
+ _ACEOF
+diff -Nurwd lustre-1.6.7.2.orig/ldiskfs/ldiskfs/autoMakefile.in lustre-1.6.7.2/ldiskfs/ldiskfs/autoMakefile.in
+--- lustre-1.6.7.2.orig/ldiskfs/ldiskfs/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/ldiskfs/ldiskfs/autoMakefile.in	2009-08-10 10:05:53.000000000 +0200
+@@ -63,6 +63,7 @@
+ EGREP = @EGREP@
+ EXEEXT = @EXEEXT@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
++GREP = @GREP@
+ INCLUDE_RULES = @INCLUDE_RULES@
+ INSTALL_DATA = @INSTALL_DATA@
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
+@@ -115,8 +116,6 @@
+ VERSION = @VERSION@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+ am__include = @am__include@
+@@ -129,12 +128,16 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
++docdir = @docdir@
++dvidir = @dvidir@
+ exec_prefix = @exec_prefix@
+ host = @host@
+ host_alias = @host_alias@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+@@ -142,14 +145,17 @@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+ mandir = @mandir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+ sysconfdir = @sysconfdir@
+diff -Nurwd lustre-1.6.7.2.orig/libsysio/aclocal.m4 lustre-1.6.7.2/libsysio/aclocal.m4
+--- lustre-1.6.7.2.orig/libsysio/aclocal.m4	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/libsysio/aclocal.m4	2009-08-10 10:05:46.000000000 +0200
+@@ -1,7 +1,7 @@
+-# generated automatically by aclocal 1.9.6 -*- Autoconf -*-
++# generated automatically by aclocal 1.7.9 -*- Autoconf -*-
+ 
+-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
+-# 2005  Free Software Foundation, Inc.
++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002
++# 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.
+@@ -11,32 +11,332 @@
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ # PARTICULAR PURPOSE.
+ 
+-# Copyright (C) 2002, 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.
++# Do all the work for Automake.                            -*- Autoconf -*-
++
++# 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.
++
++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
++# Free Software Foundation, Inc.
++
++# 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 program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
++# 02111-1307, USA.
++
++# serial 10
++
++AC_PREREQ([2.54])
++
++# Autoconf 2.50 wants to disallow AM_ names.  We explicitly allow
++# the ones we care about.
++m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
++
++# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
++# AM_INIT_AUTOMAKE([OPTIONS])
++# -----------------------------------------------
++# The call with PACKAGE and VERSION arguments is the old style
++# call (pre autoconf-2.50), which is being phased out.  PACKAGE
++# and VERSION should now be passed to AC_INIT and removed from
++# the call to AM_INIT_AUTOMAKE.
++# We support both call styles for the transition.  After
++# the next Automake release, Autoconf can make the AC_INIT
++# arguments mandatory, and then we can depend on a new Autoconf
++# release and drop the old call support.
++AC_DEFUN([AM_INIT_AUTOMAKE],
++[AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
++ AC_REQUIRE([AC_PROG_INSTALL])dnl
++# test to see if srcdir already configured
++if test "`cd $srcdir && pwd`" != "`pwd`" &&
++   test -f $srcdir/config.status; then
++  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
++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
++AC_SUBST([CYGPATH_W])
++
++# Define the identity of the package.
++dnl Distinguish between old-style and new-style calls.
++m4_ifval([$2],
++[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
++ AC_SUBST([PACKAGE], [$1])dnl
++ AC_SUBST([VERSION], [$2])],
++[_AM_SET_OPTIONS([$1])dnl
++ AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
++ AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
++
++_AM_IF_OPTION([no-define],,
++[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
++ AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
++
++# Some tools Automake needs.
++AC_REQUIRE([AM_SANITY_CHECK])dnl
++AC_REQUIRE([AC_ARG_PROGRAM])dnl
++AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
++AM_MISSING_PROG(AUTOCONF, autoconf)
++AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
++AM_MISSING_PROG(AUTOHEADER, autoheader)
++AM_MISSING_PROG(MAKEINFO, makeinfo)
++AM_MISSING_PROG(AMTAR, tar)
++AM_PROG_INSTALL_SH
++AM_PROG_INSTALL_STRIP
++# We need awk for the "check" target.  The system "awk" is bad on
++# some platforms.
++AC_REQUIRE([AC_PROG_AWK])dnl
++AC_REQUIRE([AC_PROG_MAKE_SET])dnl
++AC_REQUIRE([AM_SET_LEADING_DOT])dnl
++
++_AM_IF_OPTION([no-dependencies],,
++[AC_PROVIDE_IFELSE([AC_PROG_CC],
++                  [_AM_DEPENDENCIES(CC)],
++                  [define([AC_PROG_CC],
++                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
++AC_PROVIDE_IFELSE([AC_PROG_CXX],
++                  [_AM_DEPENDENCIES(CXX)],
++                  [define([AC_PROG_CXX],
++                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
++])
++])
++
++
++# 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.
++
++# 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.
++AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
++[# Compute $1's index in $config_headers.
++_am_stamp_count=1
++for _am_header in $config_headers :; do
++  case $_am_header in
++    $1 | $1:* )
++      break ;;
++    * )
++      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
++  esac
++done
++echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
++
++# Copyright 2002  Free Software Foundation, Inc.
++
++# 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 program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ 
+ # AM_AUTOMAKE_VERSION(VERSION)
+ # ----------------------------
+ # Automake X.Y traces this macro to ensure aclocal.m4 has been
+ # generated from the m4 files accompanying Automake X.Y.
+-AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"])
++AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="1.7"])
+ 
+ # AM_SET_CURRENT_AUTOMAKE_VERSION
+ # -------------------------------
+ # Call AM_AUTOMAKE_VERSION so it can be traced.
+ # This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
+ 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.
++
++# 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 program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
++# 02111-1307, USA.
++
++# serial 2
++
++# _AM_MANGLE_OPTION(NAME)
++# -----------------------
++AC_DEFUN([_AM_MANGLE_OPTION],
++[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
++
++# _AM_SET_OPTION(NAME)
++# ------------------------------
++# 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_SET_OPTIONS(OPTIONS)
++# ----------------------------------
++# OPTIONS is a space-separated list of Automake options.
++AC_DEFUN([_AM_SET_OPTIONS],
++[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
++
++# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
++# -------------------------------------------
++# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
++AC_DEFUN([_AM_IF_OPTION],
++[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
+ 
+-# 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.
++# Check to make sure that the build environment is sane.
++#
++
++# Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc.
++
++# 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 program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++
++# You should have received a copy of the GNU General Public License
++# 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
++
++# AM_SANITY_CHECK
++# ---------------
++AC_DEFUN([AM_SANITY_CHECK],
++[AC_MSG_CHECKING([whether build environment is sane])
++# 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".
++      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
++alias in your environment])
++   fi
++
++   test "$[2]" = conftest.file
++   )
++then
++   # Ok.
++   :
++else
++   AC_MSG_ERROR([newly created file is older than distributed files!
++Check your system clock])
++fi
++AC_MSG_RESULT(yes)])
++
++#  -*- Autoconf -*-
++
++
++# Copyright 1997, 1999, 2000, 2001 Free Software Foundation, Inc.
++
++# 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 program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++
++# You should have received a copy of the GNU General Public License
++# 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
++
++# AM_MISSING_PROG(NAME, PROGRAM)
++# ------------------------------
++AC_DEFUN([AM_MISSING_PROG],
++[AC_REQUIRE([AM_MISSING_HAS_RUN])
++$1=${$1-"${am_missing_run}$2"}
++AC_SUBST($1)])
++
++
++# AM_MISSING_HAS_RUN
++# ------------------
++# Define MISSING if not defined so far and test if it supports --run.
++# If it does, set am_missing_run to use it, otherwise, to nothing.
++AC_DEFUN([AM_MISSING_HAS_RUN],
++[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
++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=
++  AC_MSG_WARN([`missing' script is too old or missing])
++fi
++])
++
++# AM_AUX_DIR_EXPAND
++
++# Copyright 2001 Free Software Foundation, Inc.
++
++# 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 program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
++# 02111-1307, USA.
+ 
+ # 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 @@
+ # absolute PATH.  The drawback is that using absolute paths prevent a
+ # configured tree to be moved without reconfiguration.
+ 
+-AC_DEFUN([AM_AUX_DIR_EXPAND],
+-[dnl Rely on autoconf to set up CDPATH properly.
+-AC_PREREQ([2.50])dnl
++# Rely on autoconf to set up CDPATH properly.
++AC_PREREQ([2.50])
++
++AC_DEFUN([AM_AUX_DIR_EXPAND], [
+ # expand $ac_aux_dir to an absolute path
+ am_aux_dir=`cd $ac_aux_dir && pwd`
+ ])
+ 
+-# AM_CONDITIONAL                                            -*- Autoconf -*-
++# AM_PROG_INSTALL_SH
++# ------------------
++# Define $install_sh.
+ 
+-# Copyright (C) 1997, 2000, 2001, 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 2001 Free Software Foundation, Inc.
+ 
+-# serial 7
++# 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_CONDITIONAL(NAME, SHELL-CONDITION)
+-# -------------------------------------
+-# Define a conditional.
+-AC_DEFUN([AM_CONDITIONAL],
+-[AC_PREREQ(2.52)dnl
+- ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
+-	[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
+-AC_SUBST([$1_TRUE])
+-AC_SUBST([$1_FALSE])
+-if $2; then
+-  $1_TRUE=
+-  $1_FALSE='#'
++# This program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
++# 02111-1307, USA.
++
++AC_DEFUN([AM_PROG_INSTALL_SH],
++[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
++install_sh=${install_sh-"$am_aux_dir/install-sh"}
++AC_SUBST(install_sh)])
++
++# AM_PROG_INSTALL_STRIP
++
++# Copyright 2001 Free Software Foundation, Inc.
++
++# 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 program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
++# 02111-1307, USA.
++
++# One issue with vendor `install' (even GNU) is that you can't
++# specify the program used to strip binaries.  This is especially
++# annoying in cross-compiling environments, where the build's strip
++# is unlikely to handle the host's binaries.
++# Fortunately install-sh will honor a STRIPPROG variable, so we
++# always use install-sh in `make install-strip', and initialize
++# STRIPPROG with the value of the STRIP variable (set by the user).
++AC_DEFUN([AM_PROG_INSTALL_STRIP],
++[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
++# 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.
++dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
++if test "$cross_compiling" != no; then
++  AC_CHECK_TOOL([STRIP], [strip], :)
++fi
++INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
++AC_SUBST([INSTALL_STRIP_PROGRAM])])
++
++#                                                          -*- Autoconf -*-
++# Copyright (C) 2003  Free Software Foundation, Inc.
++
++# 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 program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
++# 02111-1307, USA.
++
++# serial 1
++
++# Check whether the underlying file-system supports filenames
++# with a leading dot.  For instance MS-DOS doesn't.
++AC_DEFUN([AM_SET_LEADING_DOT],
++[rm -rf .tst 2>/dev/null
++mkdir .tst 2>/dev/null
++if test -d .tst; then
++  am__leading_dot=.
+ else
+-  $1_TRUE='#'
+-  $1_FALSE=
++  am__leading_dot=_
+ fi
+-AC_CONFIG_COMMANDS_PRE(
+-[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
+-  AC_MSG_ERROR([[conditional "$1" was never defined.
+-Usually this means the macro was only invoked conditionally.]])
+-fi])])
++rmdir .tst 2>/dev/null
++AC_SUBST([am__leading_dot])])
+ 
++# serial 5						-*- Autoconf -*-
+ 
+-# Copyright (C) 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) 1999, 2000, 2001, 2002, 2003  Free Software Foundation, Inc.
++
++# 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 program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
++# 02111-1307, USA.
+ 
+-# serial 8
+ 
+ # 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 @@
+ # CC etc. in the Makefile, will ask for an AC_PROG_CC use...
+ 
+ 
++
+ # _AM_DEPENDENCIES(NAME)
+ # ----------------------
+ # See how the compiler implements dependency checking.
+@@ -191,9 +568,7 @@
+     : > sub/conftest.c
+     for i in 1 2 3 4 5 6; do
+       echo '#include "conftst'$i'.h"' >> sub/conftest.c
+-      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
+-      # Solaris 8's {/usr,}/bin/sh.
+-      touch sub/conftst$i.h
++      : > sub/conftst$i.h
+     done
+     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
+ 
+@@ -221,14 +596,9 @@
+        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
+-      # or remarks (even with -Werror).  So we grep stderr for any message
+-      # that says an option was ignored or not supported.
+-      # When given -MP, icc 7.0 and 7.1 complain thusly:
+-      #   icc: Command line warning: ignoring option '-M'; no argument required
+-      # The diagnosis changed in icc 8.0:
+-      #   icc: Command line remark: option '-MP' not supported
+-      if (grep 'ignoring option' conftest.err ||
+-          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
++      # (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_$1_dependencies_compiler_type=$depmode
+         break
+       fi
+@@ -262,8 +632,8 @@
+ # ------------
+ AC_DEFUN([AM_DEP_TRACK],
+ [AC_ARG_ENABLE(dependency-tracking,
+-[  --disable-dependency-tracking  speeds up one-time build
+-  --enable-dependency-tracking   do not reject slow dependency extractors])
++[  --disable-dependency-tracking Speeds up one-time builds
++  --enable-dependency-tracking  Do not reject slow dependency extractors])
+ if test "x$enable_dependency_tracking" != xno; then
+   am_depcomp="$ac_aux_dir/depcomp"
+   AMDEPBACKSLASH='\'
+@@ -274,14 +644,24 @@
+ 
+ # Generate code to set up dependency tracking.              -*- Autoconf -*-
+ 
+-# Copyright (C) 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 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)
++# any later version.
++
++# This program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
++# 02111-1307, USA.
++
++#serial 2
+ 
+ # _AM_OUTPUT_DEPENDENCY_COMMANDS
+ # ------------------------------
+@@ -300,21 +680,27 @@
+   else
+     continue
+   fi
+-  # Extract the definition of DEPDIR, am__include, and am__quote
+-  # from the Makefile without running `make'.
+-  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
++  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
+-  am__include=`sed -n 's/^am__include = //p' < "$mf"`
+-  test -z "am__include" && continue
+-  am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
+   # When using ansi2knr, U may be empty or an underscore; expand it
+-  U=`sed -n 's/^U = //p' < "$mf"`
+-  # Find all dependency output files, they are included files with
+-  # $(DEPDIR) in their names.  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 "
+-    s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
++  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
+@@ -340,165 +726,27 @@
+      [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
+ ])
+ 
+-# Do all the work for Automake.                             -*- 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.
+-
+-# serial 12
+-
+-# 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.
+-
+-# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
+-# AM_INIT_AUTOMAKE([OPTIONS])
+-# -----------------------------------------------
+-# The call with PACKAGE and VERSION arguments is the old style
+-# call (pre autoconf-2.50), which is being phased out.  PACKAGE
+-# and VERSION should now be passed to AC_INIT and removed from
+-# the call to AM_INIT_AUTOMAKE.
+-# We support both call styles for the transition.  After
+-# the next Automake release, Autoconf can make the AC_INIT
+-# arguments mandatory, and then we can depend on a new Autoconf
+-# release and drop the old call support.
+-AC_DEFUN([AM_INIT_AUTOMAKE],
+-[AC_PREREQ([2.58])dnl
+-dnl Autoconf wants to disallow AM_ names.  We explicitly allow
+-dnl the ones we care about.
+-m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
+-AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
+-AC_REQUIRE([AC_PROG_INSTALL])dnl
+-# test to see if srcdir already configured
+-if test "`cd $srcdir && pwd`" != "`pwd`" &&
+-   test -f $srcdir/config.status; then
+-  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
+-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
+-AC_SUBST([CYGPATH_W])
+-
+-# Define the identity of the package.
+-dnl Distinguish between old-style and new-style calls.
+-m4_ifval([$2],
+-[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
+- AC_SUBST([PACKAGE], [$1])dnl
+- AC_SUBST([VERSION], [$2])],
+-[_AM_SET_OPTIONS([$1])dnl
+- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
+- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
+-
+-_AM_IF_OPTION([no-define],,
+-[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
+- AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
+-
+-# Some tools Automake needs.
+-AC_REQUIRE([AM_SANITY_CHECK])dnl
+-AC_REQUIRE([AC_ARG_PROGRAM])dnl
+-AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
+-AM_MISSING_PROG(AUTOCONF, autoconf)
+-AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
+-AM_MISSING_PROG(AUTOHEADER, autoheader)
+-AM_MISSING_PROG(MAKEINFO, makeinfo)
+-AM_PROG_INSTALL_SH
+-AM_PROG_INSTALL_STRIP
+-AC_REQUIRE([AM_PROG_MKDIR_P])dnl
+-# We need awk for the "check" target.  The system "awk" is bad on
+-# some platforms.
+-AC_REQUIRE([AC_PROG_AWK])dnl
+-AC_REQUIRE([AC_PROG_MAKE_SET])dnl
+-AC_REQUIRE([AM_SET_LEADING_DOT])dnl
+-_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
+-              [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
+-	      		     [_AM_PROG_TAR([v7])])])
+-_AM_IF_OPTION([no-dependencies],,
+-[AC_PROVIDE_IFELSE([AC_PROG_CC],
+-                  [_AM_DEPENDENCIES(CC)],
+-                  [define([AC_PROG_CC],
+-                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
+-AC_PROVIDE_IFELSE([AC_PROG_CXX],
+-                  [_AM_DEPENDENCIES(CXX)],
+-                  [define([AC_PROG_CXX],
+-                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
+-])
+-])
+-
+-
+-# 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.
+-AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
+-[# Compute $1's index in $config_headers.
+-_am_stamp_count=1
+-for _am_header in $config_headers :; do
+-  case $_am_header in
+-    $1 | $1:* )
+-      break ;;
+-    * )
+-      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
+-  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.
+-AC_DEFUN([AM_PROG_INSTALL_SH],
+-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+-install_sh=${install_sh-"$am_aux_dir/install-sh"}
+-AC_SUBST(install_sh)])
++# This program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
+ 
+-# Copyright (C) 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.
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
++# 02111-1307, USA.
+ 
+ # serial 2
+ 
+-# Check whether the underlying file-system supports filenames
+-# with a leading dot.  For instance MS-DOS doesn't.
+-AC_DEFUN([AM_SET_LEADING_DOT],
+-[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
+-AC_SUBST([am__leading_dot])])
+-
+-# Check to see how 'make' treats includes.	            -*- Autoconf -*-
+-
+-# Copyright (C) 2001, 2002, 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.
+-
+-# serial 3
+-
+ # AM_MAKE_INCLUDE()
+ # -----------------
+ # Check to see how make treats includes.
+@@ -541,17 +789,73 @@
+ rm -f confinc confmf
+ ])
+ 
+-# Copyright (C) 1999, 2000, 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.
++# AM_CONDITIONAL                                              -*- Autoconf -*-
+ 
+-# serial 3
++# Copyright 1997, 2000, 2001 Free Software Foundation, Inc.
++
++# 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 program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
++# 02111-1307, USA.
++
++# serial 5
++
++AC_PREREQ(2.52)
++
++# AM_CONDITIONAL(NAME, SHELL-CONDITION)
++# -------------------------------------
++# Define a conditional.
++AC_DEFUN([AM_CONDITIONAL],
++[ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
++        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
++AC_SUBST([$1_TRUE])
++AC_SUBST([$1_FALSE])
++if $2; then
++  $1_TRUE=
++  $1_FALSE='#'
++else
++  $1_TRUE='#'
++  $1_FALSE=
++fi
++AC_CONFIG_COMMANDS_PRE(
++[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
++  AC_MSG_ERROR([conditional "$1" was never defined.
++Usually this means the macro was only invoked conditionally.])
++fi])])
++
++# serial 2
+ 
+ # AM_PROG_CC_C_O
+ # --------------
+ # Like AC_PROG_CC_C_O, but changed for automake.
++
++# Copyright 1999, 2000, 2001 Free Software Foundation, Inc.
++
++# 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 program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++# GNU General Public License for more details.
++
++# You should have received a copy of the GNU General Public License
++# along with this program; if not, write to the Free Software
++# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
++# 02111-1307, USA.
++
+ 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 @@
+ fi
+ ])
+ 
+-# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
+-
+-# Copyright (C) 1997, 1999, 2000, 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.
+-
+-# serial 4
+-
+-# AM_MISSING_PROG(NAME, PROGRAM)
+-# ------------------------------
+-AC_DEFUN([AM_MISSING_PROG],
+-[AC_REQUIRE([AM_MISSING_HAS_RUN])
+-$1=${$1-"${am_missing_run}$2"}
+-AC_SUBST($1)])
+-
+-
+-# AM_MISSING_HAS_RUN
+-# ------------------
+-# Define MISSING if not defined so far and test if it supports --run.
+-# If it does, set am_missing_run to use it, otherwise, to nothing.
+-AC_DEFUN([AM_MISSING_HAS_RUN],
+-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+-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=
+-  AC_MSG_WARN([`missing' script is too old or missing])
+-fi
+-])
+-
+-# Copyright (C) 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.
+-
+-# AM_PROG_MKDIR_P
+-# ---------------
+-# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise.
+-#
+-# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
+-# created by `make install' are always world readable, even if the
+-# installer happens to have an overly restrictive umask (e.g. 077).
+-# This was a mistake.  There are at least two reasons why we must not
+-# use `-m 0755':
+-#   - it causes special bits like SGID to be ignored,
+-#   - it may be too restrictive (some setups expect 775 directories).
+-#
+-# Do not use -m 0755 and let people choose whatever they expect by
+-# setting umask.
+-#
+-# We cannot accept any implementation of `mkdir' that recognizes `-p'.
+-# Some implementations (such as Solaris 8's) are not thread-safe: if a
+-# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c'
+-# concurrently, both version can detect that a/ is missing, but only
+-# one can create it and the other will error out.  Consequently we
+-# restrict ourselves to GNU make (using the --version option ensures
+-# this.)
+-AC_DEFUN([AM_PROG_MKDIR_P],
+-[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
+-  # We used to keeping the `.' as first argument, in order to
+-  # allow $(mkdir_p) to be used without argument.  As in
+-  #   $(mkdir_p) $(somedir)
+-  # where $(somedir) is conditionally defined.  However this is wrong
+-  # for two reasons:
+-  #  1. if the package is installed by a user who cannot write `.'
+-  #     make install will fail,
+-  #  2. the above comment should most certainly read
+-  #     $(mkdir_p) $(DESTDIR)$(somedir)
+-  #     so it does not work when $(somedir) is undefined and
+-  #     $(DESTDIR) is not.
+-  #  To support the latter case, we have to write
+-  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
+-  #  so the `.' trick is pointless.
+-  mkdir_p='mkdir -p --'
+-else
+-  # On NextStep and OpenStep, the `mkdir' command does not
+-  # recognize any option.  It will interpret all options as
+-  # directories to create, and then abort because `.' already
+-  # exists.
+-  for d in ./-p ./--version;
+-  do
+-    test -d $d && rmdir $d
+-  done
+-  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
+-  if test -f "$ac_aux_dir/mkinstalldirs"; then
+-    mkdir_p='$(mkinstalldirs)'
+-  else
+-    mkdir_p='$(install_sh) -d'
+-  fi
+-fi
+-AC_SUBST([mkdir_p])])
+-
+-# Helper functions for option handling.                     -*- Autoconf -*-
+-
+-# Copyright (C) 2001, 2002, 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.
+-
+-# serial 3
+-
+-# _AM_MANGLE_OPTION(NAME)
+-# -----------------------
+-AC_DEFUN([_AM_MANGLE_OPTION],
+-[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
+-
+-# _AM_SET_OPTION(NAME)
+-# ------------------------------
+-# 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_SET_OPTIONS(OPTIONS)
+-# ----------------------------------
+-# OPTIONS is a space-separated list of Automake options.
+-AC_DEFUN([_AM_SET_OPTIONS],
+-[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
+-
+-# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
+-# -------------------------------------------
+-# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
+-AC_DEFUN([_AM_IF_OPTION],
+-[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
+-
+-# Check to make sure that the build environment is sane.    -*- Autoconf -*-
+-
+-# Copyright (C) 1996, 1997, 2000, 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.
+-
+-# serial 4
+-
+-# AM_SANITY_CHECK
+-# ---------------
+-AC_DEFUN([AM_SANITY_CHECK],
+-[AC_MSG_CHECKING([whether build environment is sane])
+-# 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".
+-      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
+-alias in your environment])
+-   fi
+-
+-   test "$[2]" = conftest.file
+-   )
+-then
+-   # Ok.
+-   :
+-else
+-   AC_MSG_ERROR([newly created file is older than distributed files!
+-Check your system clock])
+-fi
+-AC_MSG_RESULT(yes)])
+-
+-# 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.
+-
+-# AM_PROG_INSTALL_STRIP
+-# ---------------------
+-# One issue with vendor `install' (even GNU) is that you can't
+-# specify the program used to strip binaries.  This is especially
+-# annoying in cross-compiling environments, where the build's strip
+-# is unlikely to handle the host's binaries.
+-# Fortunately install-sh will honor a STRIPPROG variable, so we
+-# always use install-sh in `make install-strip', and initialize
+-# STRIPPROG with the value of the STRIP variable (set by the user).
+-AC_DEFUN([AM_PROG_INSTALL_STRIP],
+-[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
+-# 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.
+-dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
+-if test "$cross_compiling" != no; then
+-  AC_CHECK_TOOL([STRIP], [strip], :)
+-fi
+-INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
+-AC_SUBST([INSTALL_STRIP_PROGRAM])])
+-
+-# Check how to create a tarball.                            -*- Autoconf -*-
+-
+-# Copyright (C) 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.
+-
+-# serial 2
+-
+-# _AM_PROG_TAR(FORMAT)
+-# --------------------
+-# Check how to create a tarball in format FORMAT.
+-# FORMAT should be one of `v7', `ustar', or `pax'.
+-#
+-# Substitute a variable $(am__tar) that is a command
+-# writing to stdout a FORMAT-tarball containing the directory
+-# $tardir.
+-#     tardir=directory && $(am__tar) > result.tar
+-#
+-# Substitute a variable $(am__untar) that extract such
+-# a tarball read from stdin.
+-#     $(am__untar) < result.tar
+-AC_DEFUN([_AM_PROG_TAR],
+-[# Always define AMTAR for backward compatibility.
+-AM_MISSING_PROG([AMTAR], [tar])
+-m4_if([$1], [v7],
+-     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
+-     [m4_case([$1], [ustar],, [pax],,
+-              [m4_fatal([Unknown tar format])])
+-AC_MSG_CHECKING([how to create a $1 tar archive])
+-# Loop over all known methods to create a tar archive until one works.
+-_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
+-_am_tools=${am_cv_prog_tar_$1-$_am_tools}
+-# Do not fold the above two line into one, because Tru64 sh and
+-# Solaris sh will not grok spaces in the rhs of `-'.
+-for _am_tool in $_am_tools
+-do
+-  case $_am_tool in
+-  gnutar)
+-    for _am_tar in tar gnutar gtar;
+-    do
+-      AM_RUN_LOG([$_am_tar --version]) && break
+-    done
+-    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
+-    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
+-    am__untar="$_am_tar -xf -"
+-    ;;
+-  plaintar)
+-    # Must skip GNU tar: if it does not support --format= it doesn't create
+-    # ustar tarball either.
+-    (tar --version) >/dev/null 2>&1 && continue
+-    am__tar='tar chf - "$$tardir"'
+-    am__tar_='tar chf - "$tardir"'
+-    am__untar='tar xf -'
+-    ;;
+-  pax)
+-    am__tar='pax -L -x $1 -w "$$tardir"'
+-    am__tar_='pax -L -x $1 -w "$tardir"'
+-    am__untar='pax -r'
+-    ;;
+-  cpio)
+-    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
+-    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
+-    am__untar='cpio -i -H $1 -d'
+-    ;;
+-  none)
+-    am__tar=false
+-    am__tar_=false
+-    am__untar=false
+-    ;;
+-  esac
+-
+-  # If the value was cached, stop now.  We just wanted to have am__tar
+-  # and am__untar set.
+-  test -n "${am_cv_prog_tar_$1}" && break
+-
+-  # tar/untar a dummy directory, and stop if the command works
+-  rm -rf conftest.dir
+-  mkdir conftest.dir
+-  echo GrepMe > conftest.dir/file
+-  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
+-  rm -rf conftest.dir
+-  if test -s conftest.tar; then
+-    AM_RUN_LOG([$am__untar <conftest.tar])
+-    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
+-  fi
+-done
+-rm -rf conftest.dir
+-
+-AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
+-AC_MSG_RESULT([$am_cv_prog_tar_$1])])
+-AC_SUBST([am__tar])
+-AC_SUBST([am__untar])
+-]) # _AM_PROG_TAR
+-
+diff -Nurwd lustre-1.6.7.2.orig/libsysio/autom4te.cache/output.0 lustre-1.6.7.2/libsysio/autom4te.cache/output.0
+--- lustre-1.6.7.2.orig/libsysio/autom4te.cache/output.0	1970-01-01 01:00:00.000000000 +0100
++++ lustre-1.6.7.2/libsysio/autom4te.cache/output.0	2009-08-10 10:05:48.000000000 +0200
+@@ -0,0 +1,6701 @@
++@%:@! /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 whether .text pseudo-op must be used" >&5
++echo $ECHO_N "checking whether .text pseudo-op must be used... $ECHO_C" >&6; }
++if test "${sysio_asm_dot_text+set}" = set; then
++  echo $ECHO_N "(cached) $ECHO_C" >&6
++else
++  cat > conftest.s <<EOF
++	.text
++EOF
++	sysio_asm_dot_text=
++	if ${CC-cc} $CFLAGS -c conftest.s 2>/dev/null; then
++		sysio_asm_dot_text=.text
++	fi
++	rm -f conftest*
++fi
++
++if test -z "$sysio_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 "${sysio_asm_global_directive+set}" = set; then
++  echo $ECHO_N "(cached) $ECHO_C" >&6
++else
++  sysio_asm_global_directive=UNKNOWN
++for ac_globl in .globl .global .EXPORT; do
++	cat > conftest.s <<EOF
++		${sysio_asm_dot_text}
++		${ac_globl} foo
++foo:
++EOF
++	if ${CC-cc} $CFLAGS -c conftest.s 2>/dev/null; then
++	sysio_asm_global_directive=${ac_globl}
++	fi
++	rm -f conftest*
++	test $sysio_asm_global_directive != UNKNOWN && break
++done
++fi
++{ echo "$as_me:$LINENO: result: $sysio_asm_global_directive" >&5
++echo "${ECHO_T}$sysio_asm_global_directive" >&6; }
++if test $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, ${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 "${sysio_asm_set_directive+set}" = set; then
++  echo $ECHO_N "(cached) $ECHO_C" >&6
++else
++  cat > conftest.s<<EOF
++${sysio_asm_dot_text}
++foo:
++.set bar, foo
++${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
++		sysio_asm_set_directive=yes
++	else
++		sysio_asm_set_directive=no
++	fi
++	rm -f conftest*
++fi
++{ echo "$as_me:$LINENO: result: $sysio_asm_set_directive" >&5
++echo "${ECHO_T}$sysio_asm_set_directive" >&6; }
++#if test $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 "${sysio_asm_weak_directive+set}" = set; then
++  echo $ECHO_N "(cached) $ECHO_C" >&6
++else
++  cat > conftest.s <<EOF
++${sysio_dot_text}
++foo:
++.weak foo
++EOF
++	if ${CC-cc} $CFLAGS -c conftest.s 2>/dev/null; then
++		sysio_asm_weak_directive=yes
++	else
++		sysio_asm_weak_directive=no
++	fi
++	rm -f conftest*
++fi
++{ echo "$as_me:$LINENO: result: $sysio_asm_weak_directive" >&5
++echo "${ECHO_T}$sysio_asm_weak_directive" >&6; }
++
++if test $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 "${sysio_asm_weakext_directive+set}" = set; then
++  echo $ECHO_N "(cached) $ECHO_C" >&6
++else
++  cat > conftest.s <<EOF
++${sysio_dot_text}
++${sysio_asm_global_directive} foo
++foo:
++.weakext bar foo
++.weakext baz
++${sysio_asm_global_directive} baz
++baz:
++EOF
++		if ${CC-cc} $CFLAGS -c conftest.s 2>/dev/null; then
++			sysio_asm_weakext_directive=yes
++		else
++			sysio_asm_weakext_directive=no
++		fi
++		rm -f conftest*
++fi
++{ echo "$as_me:$LINENO: result: $sysio_asm_weakext_directive" >&5
++echo "${ECHO_T}$sysio_asm_weakext_directive" >&6; }
++fi # no .weak
++
++if test x$sysio_asm_weak_directive = xyes; then
++	cat >>confdefs.h <<\_ACEOF
++@%:@define HAVE_ASM_WEAK_DIRECTIVE 1
++_ACEOF
++
++fi
++if test x$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 lustre-1.6.7.2.orig/libsysio/autom4te.cache/requests lustre-1.6.7.2/libsysio/autom4te.cache/requests
+--- lustre-1.6.7.2.orig/libsysio/autom4te.cache/requests	1970-01-01 01:00:00.000000000 +0100
++++ lustre-1.6.7.2/libsysio/autom4te.cache/requests	2009-08-10 10:05:50.000000000 +0200
+@@ -0,0 +1,64 @@
++# This file was generated by Autom4te Wed Jan 17 19:57:31 PST 2007.
++# 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 lustre-1.6.7.2.orig/libsysio/autom4te.cache/traces.0 lustre-1.6.7.2/libsysio/autom4te.cache/traces.0
+--- lustre-1.6.7.2.orig/libsysio/autom4te.cache/traces.0	1970-01-01 01:00:00.000000000 +0100
++++ lustre-1.6.7.2/libsysio/autom4te.cache/traces.0	2009-08-10 10:05:48.000000000 +0200
+@@ -0,0 +1,595 @@
++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:400: -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:400: the top level])
++m4trace:configure.in:400: -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:400: the top level])
++m4trace:configure.in:460: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASM_WEAK_DIRECTIVE])
++m4trace:configure.in:460: -1- m4_pattern_allow([^HAVE_ASM_WEAK_DIRECTIVE$])
++m4trace:configure.in:463: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASM_WEAKEXT_DIRECTIVE])
++m4trace:configure.in:463: -1- m4_pattern_allow([^HAVE_ASM_WEAKEXT_DIRECTIVE$])
++m4trace:configure.in:466: -1- AC_CONFIG_FILES([Makefile
++	tests/Makefile])
++m4trace:configure.in:466: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
++You should run autoupdate.], [])
++m4trace:configure.in:466: -1- AC_SUBST([LIB@&t at OBJS], [$ac_libobjs])
++m4trace:configure.in:466: -1- AC_SUBST_TRACE([LIB@&t at OBJS])
++m4trace:configure.in:466: -1- m4_pattern_allow([^LIB@&t at OBJS$])
++m4trace:configure.in:466: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
++m4trace:configure.in:466: -1- AC_SUBST_TRACE([LTLIBOBJS])
++m4trace:configure.in:466: -1- m4_pattern_allow([^LTLIBOBJS$])
++m4trace:configure.in:466: -1- AC_SUBST_TRACE([top_builddir])
++m4trace:configure.in:466: -1- AC_SUBST_TRACE([srcdir])
++m4trace:configure.in:466: -1- AC_SUBST_TRACE([abs_srcdir])
++m4trace:configure.in:466: -1- AC_SUBST_TRACE([top_srcdir])
++m4trace:configure.in:466: -1- AC_SUBST_TRACE([abs_top_srcdir])
++m4trace:configure.in:466: -1- AC_SUBST_TRACE([builddir])
++m4trace:configure.in:466: -1- AC_SUBST_TRACE([abs_builddir])
++m4trace:configure.in:466: -1- AC_SUBST_TRACE([abs_top_builddir])
++m4trace:configure.in:466: -1- AC_SUBST_TRACE([INSTALL])
+diff -Nurwd lustre-1.6.7.2.orig/libsysio/configure lustre-1.6.7.2/libsysio/configure
+--- lustre-1.6.7.2.orig/libsysio/configure	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/libsysio/configure	2009-08-10 10:05:50.000000000 +0200
+@@ -1,25 +1,54 @@
+ #! /bin/sh
+ # Guess values for system-dependent variables and create Makefiles.
+-# Generated by GNU Autoconf 2.59 for libsysio 1.2.
++# Generated by GNU Autoconf 2.61 for libsysio 1.2.
+ #
+-# Copyright (C) 2003 Free Software Foundation, Inc.
++# 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 Bourne compatible
++# 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+"$@"}'='"$@"'
+-elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
+-  set -o posix
++  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
+-DUALCASE=1; export DUALCASE # for MKS sh
+ 
+ # Support unset when possible.
+ if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
+@@ -29,8 +58,43 @@
+ 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.
+-$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='+ '
+@@ -44,18 +108,19 @@
+   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.
+-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
+ 
+-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
+@@ -63,157 +128,388 @@
+ 
+ 
+ # Name of the executable.
+-as_me=`$as_basename "$0" ||
++as_me=`$as_basename -- "$0" ||
+ $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+ 	 X"$0" : 'X\(//\)$' \| \
+-	 X"$0" : 'X\(/\)$' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
++	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
+ echo X/"$0" |
+-    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
+-  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
+-  	  /^X\/\(\/\).*/{ s//\1/; q; }
++    sed '/^.*\/\([^/][^/]*\)\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\/\(\/\/\)$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\/\(\/\).*/{
++	    s//\1/
++	    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=';'
++if test "x$CONFIG_SHELL" = x; then
++  if (eval ":") 2>/dev/null; then
++  as_have_required=yes
+   else
+-    PATH_SEPARATOR=:
++  as_have_required=no
+   fi
+-  rm -f conf$$.sh
++
++  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
+ 
+-  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
++if as_func_ret_success; then
++  :
++else
++  exitcode=1
++  echo as_func_ret_success failed.
++fi
+ 
+-       ;;
+-  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
++if as_func_ret_failure; then
++  exitcode=1
++  echo as_func_ret_failure succeeded.
+   fi
+-  if test ! -f "$as_myself"; then
+-    { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
+-   { (exit 1); exit 1; }; }
++
++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
+-  '')
++
++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=.
+-  for as_base in sh bash ksh sh5; do
+ 	 case $as_dir in
+ 	 /*)
+-	   if ("$as_dir/$as_base" -c '
++	   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
+-  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; }
+-	     CONFIG_SHELL=$as_dir/$as_base
+-	     export CONFIG_SHELL
+-	     exec "$CONFIG_SHELL" "$0" ${1+"$@"}
+-	   fi;;
+-	 esac
++  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
+-;;
+-  esac
++        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 before each line; the second 'sed' does the real
+-  # work.  The second script uses 'N' to pair each line-number line
+-  # with the numbered line, and appends trailing '-' during
+-  # substitution so that $LINENO is not a special case at line end.
++  # 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
+-  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
+-  sed '=' <$as_myself |
++  # 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
+-      s,$,-,
+       : loop
+-      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
++      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
+       t loop
+-      s,-$,,
+-      s,^['$as_cr_digits']*\n,,
++      s/-\n.*//
+     ' >$as_me.lineno &&
+-  chmod +x $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 sensible to this).
+-  . ./$as_me.lineno
++  # original and so on.  Autoconf is especially sensitive to this).
++  . "./$as_me.lineno"
+   # Exit status is that of the last command.
+   exit
+ }
+ 
+ 
+-case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
+-  *c*,-n*) ECHO_N= ECHO_C='
+-' ECHO_T='	' ;;
+-  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
+-  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
++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; then
++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
+-  # We could just check for DJGPP; but this test a) works b) is more generic
+-  # 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
++  # ... 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$$.file
++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=:
+@@ -222,7 +518,28 @@
+   as_mkdir_p=false
+ fi
+ 
+-as_executable_p="test -f"
++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'"
+@@ -231,39 +548,27 @@
+ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+ 
+ 
+-# IFS
+-# We need space, tab and new line, in precisely that order.
+-as_nl='
+-'
+-IFS=" 	$as_nl"
+-
+-# CDPATH.
+-$as_unset CDPATH
+ 
++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`
+ 
+-exec 6>&1
+-
+ #
+ # Initializations.
+ #
+ ac_default_prefix=/usr/local
++ac_clean_files=
+ ac_config_libobj_dir=.
++LIBOBJS=
+ cross_compiling=no
+ subdirs=
+ MFLAGS=
+ MAKEFLAGS=
+ SHELL=${CONFIG_SHELL-/bin/sh}
+ 
+-# Maximum number of lines to put in a shell here document.
+-# This variable seems obsolete.  It should probably be removed, and
+-# only ac_max_sed_lines should be used.
+-: ${ac_max_here_lines=38}
+-
+ # Identity of this package.
+ PACKAGE_NAME='libsysio'
+ PACKAGE_TARNAME='libsysio'
+@@ -271,8 +576,130 @@
+ 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 datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS 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 install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar 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 ac_ct_RANLIB CPP 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 LIBOBJS LTLIBOBJS'
++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
++LIBOBJS
++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=
+@@ -299,34 +726,48 @@
+ # 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'
+-datadir='${prefix}/share'
++datarootdir='${prefix}/share'
++datadir='${datarootdir}'
+ sysconfdir='${prefix}/etc'
+ sharedstatedir='${prefix}/com'
+ localstatedir='${prefix}/var'
+-libdir='${exec_prefix}/lib'
+ includedir='${prefix}/include'
+ oldincludedir='/usr/include'
+-infodir='${prefix}/info'
+-mandir='${prefix}/man'
++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"
++    eval $ac_prev=\$ac_option
+     ac_prev=
+     continue
+   fi
+ 
+-  ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
++  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_option in
++  case $ac_dashdash$ac_option in
++  --)
++    ac_dashdash=yes ;;
+ 
+   -bindir | --bindir | --bindi | --bind | --bin | --bi)
+     ac_prev=bindir ;;
+@@ -348,33 +789,45 @@
+   --config-cache | -C)
+     cache_file=config.cache ;;
+ 
+-  -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
++  -datadir | --datadir | --datadi | --datad)
+     ac_prev=datadir ;;
+-  -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
+-  | --da=*)
++  -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 &&
++    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" ;;
++    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 &&
++    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'`
+-    case $ac_option in
+-      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
+-      *) ac_optarg=yes ;;
+-    esac
+-    eval "enable_$ac_feature='$ac_optarg'" ;;
++    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- \
+@@ -401,6 +854,12 @@
+   -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 ;;
+@@ -425,13 +884,16 @@
+   | --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 | --local | --loca | --loc | --lo)
++  | --localstate | --localstat | --localsta | --localst | --locals)
+     ac_prev=localstatedir ;;
+   -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
+-  | --localstate=* | --localstat=* | --localsta=* | --localst=* \
+-  | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
++  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
+     localstatedir=$ac_optarg ;;
+ 
+   -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
+@@ -496,6 +958,16 @@
+   | --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 ;;
+@@ -548,24 +1020,20 @@
+   -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 &&
++    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'`
+-    case $ac_option in
+-      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
+-      *) ac_optarg=yes ;;
+-    esac
+-    eval "with_$ac_package='$ac_optarg'" ;;
++    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 &&
++    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" ;;
++    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
++    eval with_$ac_package=no ;;
+ 
+   --x)
+     # Obsolete; use --with-x.
+@@ -596,8 +1064,7 @@
+     expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
+       { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
+    { (exit 1); exit 1; }; }
+-    ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
+-    eval "$ac_envvar='$ac_optarg'"
++    eval $ac_envvar=\$ac_optarg
+     export $ac_envvar ;;
+ 
+   *)
+@@ -617,27 +1084,19 @@
+    { (exit 1); exit 1; }; }
+ fi
+ 
+-# Be sure to have absolute paths.
+-for ac_var in exec_prefix prefix
+-do
+-  eval ac_val=$`echo $ac_var`
+-  case $ac_val in
+-    [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
+-    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
+-   { (exit 1); exit 1; }; };;
+-  esac
+-done
+-
+-# Be sure to have absolute paths.
+-for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
+-	      localstatedir libdir includedir oldincludedir infodir mandir
++# 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=$`echo $ac_var`
++  eval ac_val=\$$ac_var
+   case $ac_val in
+-    [\\/$]* | ?:[\\/]* ) ;;
+-    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
+-   { (exit 1); exit 1; }; };;
++    [\\/$]* | ?:[\\/]* )  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'
+@@ -664,74 +1123,76 @@
+ 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 its parent.
+-  ac_confdir=`(dirname "$0") 2>/dev/null ||
++  # 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 ||
++	 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; }
++    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
++  if test ! -r "$srcdir/$ac_unique_file"; then
+     srcdir=..
+   fi
+ else
+   ac_srcdir_defaulted=no
+ fi
+-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
+    { (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"
++ac_abs_confdir=`(
++	cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2
+    { (exit 1); exit 1; }; }
+-srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
+-ac_env_build_alias_set=${build_alias+set}
+-ac_env_build_alias_value=$build_alias
+-ac_cv_env_build_alias_set=${build_alias+set}
+-ac_cv_env_build_alias_value=$build_alias
+-ac_env_host_alias_set=${host_alias+set}
+-ac_env_host_alias_value=$host_alias
+-ac_cv_env_host_alias_set=${host_alias+set}
+-ac_cv_env_host_alias_value=$host_alias
+-ac_env_target_alias_set=${target_alias+set}
+-ac_env_target_alias_value=$target_alias
+-ac_cv_env_target_alias_set=${target_alias+set}
+-ac_cv_env_target_alias_value=$target_alias
+-ac_env_CC_set=${CC+set}
+-ac_env_CC_value=$CC
+-ac_cv_env_CC_set=${CC+set}
+-ac_cv_env_CC_value=$CC
+-ac_env_CFLAGS_set=${CFLAGS+set}
+-ac_env_CFLAGS_value=$CFLAGS
+-ac_cv_env_CFLAGS_set=${CFLAGS+set}
+-ac_cv_env_CFLAGS_value=$CFLAGS
+-ac_env_LDFLAGS_set=${LDFLAGS+set}
+-ac_env_LDFLAGS_value=$LDFLAGS
+-ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
+-ac_cv_env_LDFLAGS_value=$LDFLAGS
+-ac_env_CPPFLAGS_set=${CPPFLAGS+set}
+-ac_env_CPPFLAGS_value=$CPPFLAGS
+-ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
+-ac_cv_env_CPPFLAGS_value=$CPPFLAGS
+-ac_env_CPP_set=${CPP+set}
+-ac_env_CPP_value=$CPP
+-ac_cv_env_CPP_set=${CPP+set}
+-ac_cv_env_CPP_value=$CPP
++	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.
+@@ -760,9 +1221,6 @@
+   -n, --no-create         do not create output files
+       --srcdir=DIR        find the sources in DIR [configure dir or \`..']
+ 
+-_ACEOF
+-
+-  cat <<_ACEOF
+ Installation directories:
+   --prefix=PREFIX         install architecture-independent files in PREFIX
+ 			  [$ac_default_prefix]
+@@ -780,15 +1238,22 @@
+   --bindir=DIR           user executables [EPREFIX/bin]
+   --sbindir=DIR          system admin executables [EPREFIX/sbin]
+   --libexecdir=DIR       program executables [EPREFIX/libexec]
+-  --datadir=DIR          read-only architecture-independent data [PREFIX/share]
+   --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]
+-  --infodir=DIR          info documentation [PREFIX/info]
+-  --mandir=DIR           man documentation [PREFIX/man]
++  --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
+@@ -814,8 +1279,8 @@
+ 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 build
+-  --enable-dependency-tracking   do not reject slow dependency extractors
++  --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]
+@@ -847,128 +1312,95 @@
+   CFLAGS      C compiler flags
+   LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
+               nonstandard directory <lib dir>
+-  CPPFLAGS    C/C++ preprocessor flags, e.g. -I<include dir> if you have
+-              headers in a nonstandard directory <include 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.
+-  ac_popdir=`pwd`
+   for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
+-    test -d $ac_dir || continue
++    test -d "$ac_dir" || continue
+     ac_builddir=.
+ 
+-if test "$ac_dir" != .; then
++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=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+-else
+-  ac_dir_suffix= ac_top_builddir=
+-fi
++  # 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
+-  .)  # No --srcdir option.  We are building in place.
++  .)  # We are building in place.
+     ac_srcdir=.
+-    if test -z "$ac_top_builddir"; then
+-       ac_top_srcdir=.
+-    else
+-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+-    fi ;;
+-  [\\/]* | ?:[\\/]* )  # Absolute path.
++    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 ;;
+-  *) # Relative path.
+-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
+-esac
+-
+-# Do not use `cd foo && pwd` to compute absolute paths, because
+-# the directories may not exist.
+-case `pwd` in
+-.) ac_abs_builddir="$ac_dir";;
+-*)
+-  case "$ac_dir" in
+-  .) ac_abs_builddir=`pwd`;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
+-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_builddir=${ac_top_builddir}.;;
+-*)
+-  case ${ac_top_builddir}. in
+-  .) ac_abs_top_builddir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
+-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_srcdir=$ac_srcdir;;
+-*)
+-  case $ac_srcdir in
+-  .) ac_abs_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
+-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_srcdir=$ac_top_srcdir;;
+-*)
+-  case $ac_top_srcdir in
+-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) 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
+ 
+-    cd $ac_dir
+-    # Check for guested configure; otherwise get Cygnus style 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
+-    elif test -f $ac_srcdir/configure.ac ||
+-	   test -f $ac_srcdir/configure.in; then
+-      echo
+-      $ac_configure --help
++    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
+-    cd $ac_popdir
++    fi || ac_status=$?
++    cd "$ac_pwd" || { ac_status=$?; break; }
+   done
+ fi
+ 
+-test -n "$ac_init_help" && exit 0
++test -n "$ac_init_help" && exit $ac_status
+ if $ac_init_version; then
+   cat <<\_ACEOF
+ libsysio configure 1.2
+-generated by GNU Autoconf 2.59
++generated by GNU Autoconf 2.61
+ 
+-Copyright (C) 2003 Free Software Foundation, Inc.
++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 0
++  exit
+ fi
+-exec 5>config.log
+-cat >&5 <<_ACEOF
++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.59.  Invocation command line was
++generated by GNU Autoconf 2.61.  Invocation command line was
+ 
+   $ $0 $@
+ 
+ _ACEOF
++exec 5>>config.log
+ {
+ cat <<_ASUNAME
+ ## --------- ##
+@@ -987,7 +1419,7 @@
+ /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`
+-hostinfo               = `(hostinfo) 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`
+@@ -1001,6 +1433,7 @@
+   test -z "$as_dir" && as_dir=.
+   echo "PATH: $as_dir"
+ done
++IFS=$as_save_IFS
+ 
+ } >&5
+ 
+@@ -1022,7 +1455,6 @@
+ ac_configure_args=
+ ac_configure_args0=
+ ac_configure_args1=
+-ac_sep=
+ ac_must_keep_next=false
+ for ac_pass in 1 2
+ do
+@@ -1033,7 +1465,7 @@
+     -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
+@@ -1055,9 +1487,7 @@
+ 	  -* ) ac_must_keep_next=true ;;
+ 	esac
+       fi
+-      ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
+-      # Get rid of the leading space.
+-      ac_sep=" "
++      ac_configure_args="$ac_configure_args '$ac_arg'"
+       ;;
+     esac
+   done
+@@ -1068,8 +1498,8 @@
+ # 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: Be sure not to use single quotes in there, as some shells,
+-# such as our DU 5.0 friend, will then `close' the trap.
++# 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.
+   {
+@@ -1082,20 +1512,34 @@
+ _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 `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
+-    *ac_space=\ *)
++    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"
+-      ;;
++	"s/'\''/'\''\\\\'\'''\''/g;
++	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
++      ;; #(
+     *)
+-      sed -n \
+-	"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
++      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+       ;;
+-    esac;
+-}
++    esac |
++    sort
++)
+     echo
+ 
+     cat <<\_ASBOX
+@@ -1106,22 +1550,28 @@
+     echo
+     for ac_var in $ac_subst_vars
+     do
+-      eval ac_val=$`echo $ac_var`
+-      echo "$ac_var='"'"'$ac_val'"'"'"
++      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
+-## ------------- ##
+-## Output files. ##
+-## ------------- ##
++## ------------------- ##
++## File substitutions. ##
++## ------------------- ##
+ _ASBOX
+       echo
+       for ac_var in $ac_subst_files
+       do
+-	eval ac_val=$`echo $ac_var`
+-	echo "$ac_var='"'"'$ac_val'"'"'"
++	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
+@@ -1133,15 +1583,15 @@
+ ## ----------- ##
+ _ASBOX
+       echo
+-      sed "/^$/d" confdefs.h | sort
++      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 &&
+-  rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
++  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
+@@ -1150,9 +1600,7 @@
+ ac_signal=0
+ 
+ # confdefs.h avoids OS command line length limits that DEFS can exceed.
+-rm -rf conftest* confdefs.h
+-# AIX cpp loses on an empty file, so make sure it contains at least a newline.
+-echo >confdefs.h
++rm -f -r conftest* confdefs.h
+ 
+ # Predefined preprocessor variables.
+ 
+@@ -1183,14 +1631,17 @@
+ 
+ # 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"
++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
++  set x "$ac_default_prefix/share/config.site" \
++	"$ac_default_prefix/etc/config.site"
+ fi
+-for ac_site_file in $CONFIG_SITE; do
++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;}
+@@ -1206,8 +1657,8 @@
+     { 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;;
++      [\\/]* | ?:[\\/]* ) . "$cache_file";;
++      *)                      . "./$cache_file";;
+     esac
+   fi
+ else
+@@ -1219,12 +1670,11 @@
+ # Check that the precious variables saved in the cache have kept the same
+ # value.
+ ac_cache_corrupted=false
+-for ac_var in `(set) 2>&1 |
+-	       sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
++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"
++  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
+@@ -1249,8 +1699,7 @@
+   # 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=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
+     *) ac_arg=$ac_var=$ac_new_val ;;
+     esac
+     case " $ac_configure_args " in
+@@ -1267,12 +1716,6 @@
+    { (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
+-
+ 
+ 
+ 
+@@ -1297,108 +1740,163 @@
+ 
+ 
+ 
++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
++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
++  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
++  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;}
++  { { 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
+-ac_config_guess="$SHELL $ac_aux_dir/config.guess"
+-ac_config_sub="$SHELL $ac_aux_dir/config.sub"
+-ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
++
++# 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.
+-$ac_config_sub sun4 >/dev/null 2>&1 ||
+-  { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5
+-echo "$as_me: error: cannot run $ac_config_sub" >&2;}
++$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
++{ 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_cv_build_alias=$build_alias
+-test -z "$ac_cv_build_alias" &&
+-  ac_cv_build_alias=`$ac_config_guess`
+-test -z "$ac_cv_build_alias" &&
++  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=`$ac_config_sub $ac_cv_build_alias` ||
+-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
+-echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}
++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
++{ 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
+-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/'`
++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
++{ 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
+-  ac_cv_host_alias=$host_alias
+-test -z "$ac_cv_host_alias" &&
+-  ac_cv_host_alias=$ac_cv_build_alias
+-ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
+-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5
+-echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
++  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
++{ 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
+-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/'`
++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
++{ 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
+-  ac_cv_target_alias=$target_alias
+-test "x$ac_cv_target_alias" = "x" &&
+-  ac_cv_target_alias=$ac_cv_host_alias
+-ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
+-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5
+-echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
++  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
++{ 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
+-target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
+-target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
+-target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
++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.
+@@ -1419,7 +1917,7 @@
+ 	;;
+ esac
+ 
+-am__api_version="1.9"
++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:
+@@ -1433,8 +1931,8 @@
+ # 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
++{ 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
+@@ -1456,7 +1954,7 @@
+     # by default.
+     for ac_prog in ginstall scoinst install; do
+       for ac_exec_ext in '' $ac_executable_extensions; do
+-	if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
++	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.
+@@ -1475,21 +1973,22 @@
+     ;;
+ 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.  We don't cache a
+-    # path for INSTALL within a source directory, because that will
++    # 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 path is relative.
++    # 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
++{ 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.
+@@ -1499,8 +1998,8 @@
+ 
+ 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
++{ 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
+@@ -1542,20 +2041,21 @@
+ Check your system clock" >&2;}
+    { (exit 1); exit 1; }; }
+ fi
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ 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"
++  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"
++  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 conftest.sed
++rm -f conftest.sed
++
+ 
+ # expand $ac_aux_dir to an absolute path
+ am_aux_dir=`cd $ac_aux_dir && pwd`
+@@ -1570,45 +2070,12 @@
+ echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
+ fi
+ 
+-if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
+-  # We used to keeping the `.' as first argument, in order to
+-  # allow $(mkdir_p) to be used without argument.  As in
+-  #   $(mkdir_p) $(somedir)
+-  # where $(somedir) is conditionally defined.  However this is wrong
+-  # for two reasons:
+-  #  1. if the package is installed by a user who cannot write `.'
+-  #     make install will fail,
+-  #  2. the above comment should most certainly read
+-  #     $(mkdir_p) $(DESTDIR)$(somedir)
+-  #     so it does not work when $(somedir) is undefined and
+-  #     $(DESTDIR) is not.
+-  #  To support the latter case, we have to write
+-  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
+-  #  so the `.' trick is pointless.
+-  mkdir_p='mkdir -p --'
+-else
+-  # On NextStep and OpenStep, the `mkdir' command does not
+-  # recognize any option.  It will interpret all options as
+-  # directories to create, and then abort because `.' already
+-  # exists.
+-  for d in ./-p ./--version;
+-  do
+-    test -d $d && rmdir $d
+-  done
+-  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
+-  if test -f "$ac_aux_dir/mkinstalldirs"; then
+-    mkdir_p='$(mkinstalldirs)'
+-  else
+-    mkdir_p='$(install_sh) -d'
+-  fi
+-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
++{ 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
+@@ -1621,54 +2088,57 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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 dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'`
+-if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
++{ 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 'ac_maketemp="$(MAKE)"'
++	@echo '@@@%%%=$(MAKE)=@@@%%%'
+ _ACEOF
+ # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
+-eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
+-if test -n "$ac_maketemp"; then
+-  eval ac_cv_prog_make_${ac_make}_set=yes
+-else
+-  eval ac_cv_prog_make_${ac_make}_set=no
+-fi
++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 \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
+-  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++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
++  { echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+   SET_MAKE="MAKE=${MAKE-make}"
+ fi
+ 
+@@ -1729,6 +2199,9 @@
+ 
+ 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
+@@ -1739,8 +2212,8 @@
+   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
++{ 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
+@@ -1753,32 +2226,34 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
++{ 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
+@@ -1791,27 +2266,41 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
+ 
+-  test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
+ 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
++  { 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
++  { 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
+@@ -1821,13 +2310,6 @@
+ 
+ # We need awk for the "check" target.  The system "awk" is bad on
+ # some platforms.
+-# Always define AMTAR for backward compatibility.
+-
+-AMTAR=${AMTAR-"${am_missing_run}tar"}
+-
+-am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
+-
+-
+ 
+ 
+ 
+@@ -1839,8 +2321,8 @@
+ 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
++{ 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
+@@ -1853,32 +2335,34 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
++{ 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
+@@ -1891,26 +2375,41 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
+@@ -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.
+ 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
++{ 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
+@@ -1933,74 +2432,34 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
+-if test -z "$ac_cv_prog_CC"; then
+-  ac_ct_CC=$CC
+-  # 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_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.
++  { echo "$as_me:$LINENO: result: $CC" >&5
++echo "${ECHO_T}$CC" >&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=.
+-  for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+-    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
+-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: no" >&5
+-echo "${ECHO_T}no" >&6
+-fi
+ 
+-  CC=$ac_ct_CC
+-else
+-  CC="$ac_cv_prog_CC"
+ 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
++{ 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
+@@ -2014,7 +2473,7 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
+@@ -2025,6 +2484,7 @@
+   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.
+@@ -2042,22 +2502,23 @@
+ fi
+ CC=$ac_cv_prog_CC
+ if test -n "$CC"; then
+-  echo "$as_me:$LINENO: result: $CC" >&5
+-echo "${ECHO_T}$CC" >&6
++  { 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
++  { 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
++  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
++{ 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
+@@ -2070,36 +2531,38 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
++  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
++{ 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
+@@ -2112,30 +2575,46 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
+ 
+@@ -2147,21 +2626,35 @@
+    { (exit 1); exit 1; }; }
+ 
+ # Provide some information about the compiler.
+-echo "$as_me:$LINENO:" \
+-     "checking for C compiler version" >&5
++echo "$as_me:$LINENO: checking for C compiler version" >&5
+ ac_compiler=`set X $ac_compile; echo $2`
+-{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
+-  (eval $ac_compiler --version </dev/null >&5) 2>&5
++{ (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); }
+-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
+-  (eval $ac_compiler -v </dev/null >&5) 2>&5
++{ (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); }
+-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
+-  (eval $ac_compiler -V </dev/null >&5) 2>&5
++{ (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); }
+@@ -2186,47 +2679,77 @@
+ # 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
++{ 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[^ ]*//'`
+-if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
+-  (eval $ac_link_default) 2>&5
++#
++# 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
+-  # Find the output, starting from the most likely.  This scheme is
+-# not robust to junk in `.', hence go to wildcards (a.*) only as a last
+-# resort.
+-
+-# Be careful to initialize this variable, since it used to be cached.
+-# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
+-ac_cv_exeext=
+-# b.out is created by i960 compilers.
+-for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
++  # 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 | *.o | *.obj )
+-	;;
+-    conftest.$ac_ext )
+-	# This is the source file.
++    *.$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" : '[^.]*\(\..*\)'`
+-	# 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
++	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
+ 
+@@ -2238,19 +2761,21 @@
+ fi
+ 
+ ac_exeext=$ac_cv_exeext
+-echo "$as_me:$LINENO: result: $ac_file" >&5
+-echo "${ECHO_T}$ac_file" >&6
+ 
+-# Check the compiler produces executables we can run.  If not, either
++# 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
++{ 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'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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
+@@ -2269,22 +2794,27 @@
+     fi
+   fi
+ fi
+-echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++{ 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 the compiler produces executables we can run.  If not, either
++# 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 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 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
+@@ -2295,9 +2825,8 @@
+ 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 | *.o | *.obj ) ;;
++    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
+     *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
+-	  export ac_cv_exeext
+ 	  break;;
+     * ) break;;
+   esac
+@@ -2311,14 +2840,14 @@
+ fi
+ 
+ rm -f conftest$ac_cv_exeext
+-echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
+-echo "${ECHO_T}$ac_cv_exeext" >&6
++{ 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
++{ 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
+@@ -2338,14 +2867,20 @@
+ }
+ _ACEOF
+ rm -f conftest.o conftest.obj
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>&5
++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 `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
++  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 ) ;;
++    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;
+     *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
+        break;;
+   esac
+@@ -2363,12 +2898,12 @@
+ 
+ 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
++{ 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
++{ 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
+@@ -2391,27 +2926,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -2419,21 +2949,25 @@
+ 
+ ac_compiler_gnu=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++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
++{ 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
+-CFLAGS="-g"
+-echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
+-echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
++{ 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
+@@ -2450,38 +2984,118 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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); }; }; then
++  (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
+ 
+-ac_cv_prog_cc_g=no
++
+ fi
+-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
++
++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
+@@ -2497,12 +3111,12 @@
+     CFLAGS=
+   fi
+ fi
+-echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
+-echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
+-if test "${ac_cv_prog_cc_stdc+set}" = set; then
++{ 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_stdc=no
++  ac_cv_prog_cc_c89=no
+ ac_save_CC=$CC
+ cat >conftest.$ac_ext <<_ACEOF
+ /* confdefs.h.  */
+@@ -2536,12 +3150,17 @@
+ /* 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 -std1 is added to get
++   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 -std1.  */
++   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);};
+@@ -2556,205 +3175,57 @@
+   return 0;
+ }
+ _ACEOF
+-# Don't try gcc -ansi; that turns off useful extensions and
+-# breaks some systems' header files.
+-# AIX			-qlanglvl=ansi
+-# Ultrix and OSF/1	-std1
+-# HP-UX 10.20 and later	-Ae
+-# HP-UX older versions	-Aa -D_HPUX_SOURCE
+-# SVR4			-Xc -D__EXTENSIONS__
+-for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
++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 { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
+-  ac_cv_prog_cc_stdc=$ac_arg
+-break
++  (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 conftest.err conftest.$ac_objext
++
++rm -f core conftest.err conftest.$ac_objext
++  test "x$ac_cv_prog_cc_c89" != "xno" && break
+ done
+-rm -f conftest.$ac_ext conftest.$ac_objext
++rm -f conftest.$ac_ext
+ CC=$ac_save_CC
+ 
+ fi
+-
+-case "x$ac_cv_prog_cc_stdc" in
+-  x|xno)
+-    echo "$as_me:$LINENO: result: none needed" >&5
+-echo "${ECHO_T}none needed" >&6 ;;
++# 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; } ;;
+   *)
+-    echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
+-echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
+-    CC="$CC $ac_cv_prog_cc_stdc" ;;
++    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
+ 
+-# Some people use a C++ compiler to compile C.  Since we use `exit',
+-# in C++ we need to declare it.  In case someone uses the same compiler
+-# for both compiling C and C++ we need to have the C++ compiler decide
+-# the declaration of exit, since it's the most demanding environment.
+-cat >conftest.$ac_ext <<_ACEOF
+-#ifndef __cplusplus
+-  choke me
+-#endif
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
+-  for ac_declaration in \
+-   '' \
+-   'extern "C" void std::exit (int) throw (); using std::exit;' \
+-   'extern "C" void std::exit (int); using std::exit;' \
+-   'extern "C" void exit (int) throw ();' \
+-   'extern "C" void exit (int);' \
+-   'void exit (int);'
+-do
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_declaration
+-#include <stdlib.h>
+-int
+-main ()
+-{
+-exit (42);
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
+-  :
+-else
+-  echo "$as_me: failed program was:" >&5
+-sed 's/^/| /' conftest.$ac_ext >&5
+-
+-continue
+-fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-  cat >conftest.$ac_ext <<_ACEOF
+-/* confdefs.h.  */
+-_ACEOF
+-cat confdefs.h >>conftest.$ac_ext
+-cat >>conftest.$ac_ext <<_ACEOF
+-/* end confdefs.h.  */
+-$ac_declaration
+-int
+-main ()
+-{
+-exit (42);
+-  ;
+-  return 0;
+-}
+-_ACEOF
+-rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
+-  break
+-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
+-rm -f conftest*
+-if test -n "$ac_declaration"; then
+-  echo '#ifdef __cplusplus' >>confdefs.h
+-  echo $ac_declaration      >>confdefs.h
+-  echo '#endif'             >>confdefs.h
+-fi
+-
+-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'
+@@ -2772,8 +3243,8 @@
+ .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
++{ 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
+@@ -2800,15 +3271,15 @@
+ fi
+ 
+ 
+-echo "$as_me:$LINENO: result: $_am_result" >&5
+-echo "${ECHO_T}$_am_result" >&6
++{ echo "$as_me:$LINENO: result: $_am_result" >&5
++echo "${ECHO_T}$_am_result" >&6; }
+ rm -f confinc confmf
+ 
+-# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
++# Check whether --enable-dependency-tracking was given.
+ if test "${enable_dependency_tracking+set}" = set; then
+-  enableval="$enable_dependency_tracking"
++  enableval=$enable_dependency_tracking;
++fi
+ 
+-fi;
+ if test "x$enable_dependency_tracking" != xno; then
+   am_depcomp="$ac_aux_dir/depcomp"
+   AMDEPBACKSLASH='\'
+@@ -2828,8 +3299,8 @@
+ 
+ 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
++{ 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
+@@ -2867,9 +3338,7 @@
+     : > sub/conftest.c
+     for i in 1 2 3 4 5 6; do
+       echo '#include "conftst'$i'.h"' >> sub/conftest.c
+-      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
+-      # Solaris 8's {/usr,}/bin/sh.
+-      touch sub/conftst$i.h
++      : > sub/conftst$i.h
+     done
+     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
+ 
+@@ -2897,14 +3366,9 @@
+        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
+-      # or remarks (even with -Werror).  So we grep stderr for any message
+-      # that says an option was ignored or not supported.
+-      # When given -MP, icc 7.0 and 7.1 complain thusly:
+-      #   icc: Command line warning: ignoring option '-M'; no argument required
+-      # The diagnosis changed in icc 8.0:
+-      #   icc: Command line remark: option '-MP' not supported
+-      if (grep 'ignoring option' conftest.err ||
+-          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
++      # (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
+@@ -2918,8 +3382,8 @@
+ fi
+ 
+ fi
+-echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
+-echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
++{ 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
+ 
+ 
+@@ -2936,15 +3400,15 @@
+ 
+ 
+ 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
++  { 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
++  { 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 eval "test \"\${ac_cv_prog_cc_${ac_cc}_c_o+set}\" = set"; then
++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
+@@ -2965,14 +3429,23 @@
+ # 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 conftest.$ac_objext >&5'
+-if { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
++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 conftest.$ac_objext && { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
++   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); };
+@@ -2981,19 +3454,32 @@
+   if test "x$CC" != xcc; then
+     # Test first that cc exists at all.
+     if { ac_try='cc -c conftest.$ac_ext >&5'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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 conftest.$ac_objext >&5'
+-      if { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
++      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 conftest.$ac_objext && { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
++	 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); };
+@@ -3009,15 +3495,15 @@
+ else
+   eval ac_cv_prog_cc_${ac_cc}_c_o=no
+ fi
+-rm -f conftest*
++rm -f core conftest*
+ 
+ fi
+-if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = yes"; then
+-  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++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
++  { echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define NO_MINUS_C_MINUS_O 1
+@@ -3042,8 +3528,8 @@
+ 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
++{ 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
+@@ -3056,32 +3542,34 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
++  { 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
++  { 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
++{ 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
+@@ -3094,57 +3582,72 @@
+   IFS=$as_save_IFS
+   test -z "$as_dir" && as_dir=.
+   for ac_exec_ext in '' $ac_executable_extensions; do
+-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
++  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
+ 
+-  test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
+ 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
++  { 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
++  { 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 dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'`
+-if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
++{ 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 'ac_maketemp="$(MAKE)"'
++	@echo '@@@%%%=$(MAKE)=@@@%%%'
+ _ACEOF
+ # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
+-eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
+-if test -n "$ac_maketemp"; then
+-  eval ac_cv_prog_make_${ac_make}_set=yes
+-else
+-  eval ac_cv_prog_make_${ac_make}_set=no
+-fi
++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 \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
+-  echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
++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
++  { echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+   SET_MAKE="MAKE=${MAKE-make}"
+ fi
+ 
+@@ -3154,8 +3657,8 @@
+ 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
++{ 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=
+@@ -3189,24 +3692,22 @@
+ #endif
+ 		     Syntax error
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -3215,9 +3716,10 @@
+   # Broken: fails on valid input.
+ continue
+ fi
++
+ rm -f conftest.err conftest.$ac_ext
+ 
+-  # OK, works on sane cases.  Now check whether non-existent headers
++  # OK, works on sane cases.  Now check whether nonexistent headers
+   # can be detected and how.
+   cat >conftest.$ac_ext <<_ACEOF
+ /* confdefs.h.  */
+@@ -3227,24 +3729,22 @@
+ /* end confdefs.h.  */
+ #include <ac_nonexistent.h>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -3255,6 +3755,7 @@
+ ac_preproc_ok=:
+ break
+ fi
++
+ rm -f conftest.err conftest.$ac_ext
+ 
+ done
+@@ -3272,8 +3773,8 @@
+ else
+   ac_cv_prog_CPP=$CPP
+ fi
+-echo "$as_me:$LINENO: result: $CPP" >&5
+-echo "${ECHO_T}$CPP" >&6
++{ 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
+@@ -3296,24 +3797,22 @@
+ #endif
+ 		     Syntax error
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -3322,9 +3821,10 @@
+   # Broken: fails on valid input.
+ continue
+ fi
++
+ rm -f conftest.err conftest.$ac_ext
+ 
+-  # OK, works on sane cases.  Now check whether non-existent headers
++  # OK, works on sane cases.  Now check whether nonexistent headers
+   # can be detected and how.
+   cat >conftest.$ac_ext <<_ACEOF
+ /* confdefs.h.  */
+@@ -3334,24 +3834,22 @@
+ /* end confdefs.h.  */
+ #include <ac_nonexistent.h>
+ _ACEOF
+-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
++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; then
+-  if test -s conftest.err; then
+-    ac_cpp_err=$ac_c_preproc_warn_flag
+-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
+-  else
+-    ac_cpp_err=
+-  fi
+-else
+-  ac_cpp_err=yes
+-fi
+-if test -z "$ac_cpp_err"; then
++  (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
+@@ -3362,6 +3860,7 @@
+ ac_preproc_ok=:
+ break
+ fi
++
+ rm -f conftest.err conftest.$ac_ext
+ 
+ done
+@@ -3384,23 +3883,170 @@
+ ac_compiler_gnu=$ac_cv_c_compiler_gnu
+ 
+ 
+-echo "$as_me:$LINENO: checking for egrep" >&5
+-echo $ECHO_N "checking for egrep... $ECHO_C" >&6
+-if test "${ac_cv_prog_egrep+set}" = set; then
++{ 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'
++  # 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
+-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: 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
++
++
++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
+@@ -3424,27 +4070,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3452,7 +4093,8 @@
+ 
+ ac_cv_header_stdc=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++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.
+@@ -3508,6 +4150,7 @@
+ 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))
+@@ -3527,18 +4170,27 @@
+   for (i = 0; i < 256; i++)
+     if (XOR (islower (i), ISLOWER (i))
+ 	|| toupper (i) != TOUPPER (i))
+-      exit(2);
+-  exit (0);
++      return 2;
++  return 0;
+ }
+ _ACEOF
+ rm -f conftest$ac_exeext
+-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+-  (eval $ac_link) 2>&5
++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'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&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
+@@ -3551,12 +4203,14 @@
+ ( exit $ac_status )
+ ac_cv_header_stdc=no
+ fi
+-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
++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
++{ 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
+@@ -3565,8 +4219,8 @@
+ 
+ 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
++{ 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
+@@ -3579,42 +4233,52 @@
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ 
+-#if defined(S_ISBLK) && defined(S_IFDIR)
+-# if S_ISBLK (S_IFDIR)
+-You lose.
+-# endif
++#if defined S_ISBLK && defined S_IFDIR
++extern char c1[S_ISBLK (S_IFDIR) ? -1 : 1];
+ #endif
+ 
+-#if defined(S_ISBLK) && defined(S_IFCHR)
+-# if S_ISBLK (S_IFCHR)
+-You lose.
+-# 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)
+-# if S_ISLNK (S_IFREG)
+-You lose.
+-# 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)
+-# if S_ISSOCK (S_IFREG)
+-You lose.
+-# endif
++#if defined S_ISSOCK && defined S_IFREG
++extern char c4[S_ISSOCK (S_IFREG) ? -1 : 1];
+ #endif
+ 
+ _ACEOF
+-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+-  $EGREP "You lose" >/dev/null 2>&1; then
+-  ac_cv_header_stat_broken=yes
+-else
++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 conftest*
+ 
++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
++{ 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
+@@ -3623,8 +4287,8 @@
+ 
+ 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
++{ 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
+@@ -3648,27 +4312,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -3676,10 +4335,11 @@
+ 
+ ac_cv_header_time=no
+ fi
+-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_header_time" >&5
+-echo "${ECHO_T}$ac_cv_header_time" >&6
++{ 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
+@@ -3697,10 +4357,9 @@
+ 
+ have_lib_dir=yes;
+ 
+-# Check whether --with-lib-dir or --without-lib-dir was given.
++# Check whether --with-lib-dir was given.
+ if test "${with_lib_dir+set}" = set; then
+-  withval="$with_lib_dir"
+-       case "${withval}" in
++  withval=$with_lib_dir;      case "${withval}" in
+          "yes"|"no"|"") have_lib_dir=no ;;
+          *) LIBBUILD_DIR=${withval};
+             test -d ${LIBBUILD_DIR} || mkdir ${LIBBUILD_DIR} ||
+@@ -3709,7 +4368,8 @@
+ else
+    LIBBUILD_DIR=`pwd`/lib;
+     test -d ${LIBBUILD_DIR} || mkdir ${LIBBUILD_DIR} || have_lib_dir=no;
+-fi;
++fi
++
+ if test x${have_lib_dir} = xyes; then
+   echo "Using sysio library directory ${LIBBUILD_DIR}"
+ else
+@@ -3720,10 +4380,9 @@
+ 
+ 
+ 
+-# Check whether --with-native_driver or --without-native_driver was given.
++# Check whether --with-native_driver was given.
+ if test "${with_native_driver+set}" = set; then
+-  withval="$with_native_driver"
+-  	case "${withval}" in
++  withval=$with_native_driver; 	case "${withval}" in
+ 	 yes) ;;
+ 	 no) ;;
+ 	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-native-driver" >&5
+@@ -3732,7 +4391,8 @@
+ 	esac;
+ else
+   with_native_driver=yes;
+-fi;
++fi
++
+ 
+ 
+ if test x$with_native_driver = xyes; then
+@@ -3745,10 +4405,9 @@
+ 
+ 
+ 
+-# Check whether --with-incore-driver or --without-incore-driver was given.
++# Check whether --with-incore-driver was given.
+ if test "${with_incore_driver+set}" = set; then
+-  withval="$with_incore_driver"
+-   	case "${withval}" in
++  withval=$with_incore_driver;  	case "${withval}" in
+ 	 yes) ;;
+ 	 no) ;;
+ 	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-incore-driver" >&5
+@@ -3757,7 +4416,8 @@
+ 	esac
+ else
+   with_incore_driver=yes
+-fi;
++fi
++
+ 
+ 
+ if test x$with_incore_driver = xyes; then
+@@ -3770,10 +4430,9 @@
+ 
+ 
+ 
+-# Check whether --with-tests or --without-tests was given.
++# Check whether --with-tests was given.
+ if test "${with_tests+set}" = set; then
+-  withval="$with_tests"
+-  	case "${withval}" in
++  withval=$with_tests; 	case "${withval}" in
+ 	 yes) ;;
+ 	 no) ;;
+ 	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-tests" >&5
+@@ -3782,7 +4441,8 @@
+ 	esac
+ else
+   with_tests=yes
+-fi;
++fi
++
+ 
+ 
+ if test x$with_tests = xyes; then
+@@ -3795,22 +4455,21 @@
+ 
+ 
+ 
+-# Check whether --with-automount or --without-automount was given.
++# Check whether --with-automount was given.
+ if test "${with_automount+set}" = set; then
+-  withval="$with_automount"
+-  	if test x${withval} = xyes; 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;
++fi
+ 
+ 
+ 
+-# Check whether --with-stdfd-dev or --without-stdfd-dev was given.
++
++# Check whether --with-stdfd-dev was given.
+ if test "${with_stdfd_dev+set}" = set; then
+-  withval="$with_stdfd_dev"
+-  	case "${withval}" in
++  withval=$with_stdfd_dev; 	case "${withval}" in
+ 	 yes) ;;
+ 	 no) ;;
+ 	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-stdfd-dev" >&5
+@@ -3819,7 +4478,8 @@
+ 	esac
+ else
+   with_stdfd_dev=yes
+-fi;
++fi
++
+ 
+ 
+ if test x$with_stdfd_dev = xyes; then
+@@ -3832,10 +4492,9 @@
+ 
+ 
+ 
+-# Check whether --with-zero-sum-memory or --without-zero-sum-memory was given.
++# 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
++  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
+@@ -3844,14 +4503,14 @@
+ 	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"
+-  	case "${withval}" in
++  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
+@@ -3860,14 +4519,14 @@
+ 	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"
+-  	case "${withval}" in
++  withval=$with_tracing; 	case "${withval}" in
+ 	 yes) TRACING=-DSYSIO_TRACING=1 ;;
+ 	 no) ;;
+ 	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-tracing" >&5
+@@ -3876,14 +4535,14 @@
+ 	esac
+ else
+   TRACING=-DSYSIO_TRACING=1
+-fi;
++fi
+ 
+ 
+ 
+-# Check whether --with-cplant_yod or --without-cplant_yod was given.
++
++# Check whether --with-cplant_yod was given.
+ if test "${with_cplant_yod+set}" = set; then
+-  withval="$with_cplant_yod"
+-  	case "${withval}" in
++  withval=$with_cplant_yod; 	case "${withval}" in
+ 	yes) if test x${with_stdfd_dev} != xyes; then
+ 		with_stdfd_dev=yes
+ 
+@@ -3904,7 +4563,8 @@
+ 	esac
+ else
+   with_cplant_yod=no
+-fi;
++fi
++
+ 
+ 
+ if test x$with_cplant_yod = xyes; then
+@@ -3917,10 +4577,9 @@
+ 
+ 
+ 
+-# Check whether --with-cplant_tests or --without-cplant_tests was given.
++# Check whether --with-cplant_tests was given.
+ if test "${with_cplant_tests+set}" = set; then
+-  withval="$with_cplant_tests"
+-  	case "${withval}" in
++  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; }; };;
+@@ -3929,9 +4588,9 @@
+ 	   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 eval "test \"\${$as_ac_File+set}\" = set"; then
++{ 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 &&
+@@ -3944,8 +4603,9 @@
+   eval "$as_ac_File=no"
+ fi
+ fi
+-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_File'}'`" >&5
+-echo "${ECHO_T}`eval echo '${'$as_ac_File'}'`" >&6
++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
+@@ -3969,7 +4629,8 @@
+ 	esac
+ else
+   with_cplant_tests=no
+-fi;
++fi
++
+ 
+ 
+ if test x$with_cplant_tests != xno; then
+@@ -3982,10 +4643,9 @@
+ 
+ 
+ 
+-# Check whether --with-sockets or --without-sockets was given.
++# Check whether --with-sockets was given.
+ if test "${with_sockets+set}" = set; then
+-  withval="$with_sockets"
+-  	case "${withval}" in
++  withval=$with_sockets; 	case "${withval}" in
+ 	 yes) ;;
+ 	 no) ;;
+ 	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-sockets" >&5
+@@ -3994,7 +4654,8 @@
+ 	esac
+ else
+   with_sockets=no
+-fi;
++fi
++
+ 
+ 
+ if test x$with_sockets = xyes; then
+@@ -4007,10 +4668,9 @@
+ 
+ 
+ 
+-# Check whether --with-lustre-hack or --without-lustre-hack was given.
++# Check whether --with-lustre-hack was given.
+ if test "${with_lustre_hack+set}" = set; then
+-  withval="$with_lustre_hack"
+-  	case "${withval}" in
++  withval=$with_lustre_hack; 	case "${withval}" in
+ 	 yes) ;;
+ 	 no) ;;
+ 	 *) { { echo "$as_me:$LINENO: error: bad value ${withval} for --with-lustre-hack" >&5
+@@ -4019,7 +4679,8 @@
+ 	esac
+ else
+   with_lustre_hack=no
+-fi;
++fi
++
+ 
+ 
+ if test x$with_lustre_hack = xyes; then
+@@ -4038,15 +4699,15 @@
+ fi
+ 
+ 
+-# Check whether --with-alternate-symbols or --without-alternate-symbols was given.
++# Check whether --with-alternate-symbols was given.
+ if test "${with_alternate_symbols+set}" = set; then
+-  withval="$with_alternate_symbols"
+-  	case "${withval}" in
++  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;
++fi
++
+ 
+ 
+ # We keep the original values in `$config_*' and never modify them, so we
+@@ -4121,8 +4782,8 @@
+ 	;;
+ esac
+ 
+-echo "$as_me:$LINENO: checking for symlink support" >&5
+-echo $ECHO_N "checking for symlink support... $ECHO_C" >&6
++{ 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
+@@ -4146,27 +4807,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -4175,13 +4831,14 @@
+ symlink_support="no"
+ 
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $symlink_support" >&5
+-echo "${ECHO_T}$symlink_support" >&6
++
++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
++	{ 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
+@@ -4202,27 +4859,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -4231,9 +4883,10 @@
+ readlink_returns_int="no"
+ 
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-	echo "$as_me:$LINENO: result: $readlink_returns_int" >&5
+-echo "${ECHO_T}$readlink_returns_int" >&6
++
++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
+@@ -4243,8 +4896,8 @@
+ 	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
++{ 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
+@@ -4265,30 +4918,25 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
++	{ echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
+ 
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_POSIX_1003_READLINK 1
+@@ -4300,16 +4948,17 @@
+ sed 's/^/| /' conftest.$ac_ext >&5
+ 
+ 
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
+ 
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++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
++{ 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
+@@ -4330,27 +4979,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -4358,7 +5002,8 @@
+ 
+ sysio_largefile64_source_required=maybe
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
++
++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.  */
+@@ -4381,27 +5026,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -4409,10 +5049,11 @@
+ 
+ sysio_largefile64_source_required=no
+ fi
+-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: $sysio_largefile64_source_required" >&5
+-echo "${ECHO_T}$sysio_largefile64_source_required" >&6
++{ 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
+@@ -4422,8 +5063,8 @@
+ 
+ # Alpha linux defines
+ #
+-echo "$as_me:$LINENO: checking for alpha linux" >&5
+-echo $ECHO_N "checking for alpha linux... $ECHO_C" >&6
++{ 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
+@@ -4433,8 +5074,8 @@
+ _ACEOF
+ 
+ fi
+-echo "$as_me:$LINENO: result: $alpha_linux_env" >&5
+-echo "${ECHO_T}$alpha_linux_env" >&6
++{ echo "$as_me:$LINENO: result: $alpha_linux_env" >&5
++echo "${ECHO_T}$alpha_linux_env" >&6; }
+ 
+ 
+ if test x$alpha_linux_env = xyes; then
+@@ -4448,8 +5089,8 @@
+ 
+ # Check for __st_ino
+ #
+-echo "$as_me:$LINENO: checking for __st_ino" >&5
+-echo $ECHO_N "checking for __st_ino... $ECHO_C" >&6
++{ 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
+@@ -4468,27 +5109,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -4496,9 +5132,10 @@
+ 
+ have__st_ino=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $have__st_ino" >&5
+-echo "${ECHO_T}$have__st_ino" >&6
++
++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
+@@ -4508,8 +5145,8 @@
+ 
+ # Check for st_gen
+ #
+-echo "$as_me:$LINENO: checking for st_gen" >&5
+-echo $ECHO_N "checking for st_gen... $ECHO_C" >&6
++{ 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
+@@ -4528,27 +5165,22 @@
+ }
+ _ACEOF
+ rm -f conftest.$ac_objext
+-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+-  (eval $ac_compile) 2>conftest.er1
++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); } &&
+-	 { ac_try='test -z "$ac_c_werror_flag"
+-			 || test ! -s conftest.err'
+-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+-  (eval $ac_try) 2>&5
+-  ac_status=$?
+-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+-  (exit $ac_status); }; } &&
+-	 { ac_try='test -s conftest.$ac_objext'
+-  { (eval 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
++  (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
+@@ -4556,9 +5188,10 @@
+ 
+ have_st_gen=no
+ fi
+-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+-echo "$as_me:$LINENO: result: $have_st_gen" >&5
+-echo "${ECHO_T}$have_st_gen" >&6
++
++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
+@@ -4566,8 +5199,8 @@
+ 
+ fi
+ 
+-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
++{ 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 "${sysio_asm_dot_text+set}" = set; then
+   echo $ECHO_N "(cached) $ECHO_C" >&6
+ else
+@@ -4582,15 +5215,15 @@
+ fi
+ 
+ if test -z "$sysio_dot_text"; then
+-	echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
++	{ 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
++	{ 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
++{ 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 "${sysio_asm_global_directive+set}" = set; then
+   echo $ECHO_N "(cached) $ECHO_C" >&6
+ else
+@@ -4608,8 +5241,8 @@
+ 	test $sysio_asm_global_directive != UNKNOWN && break
+ done
+ fi
+-echo "$as_me:$LINENO: result: $sysio_asm_global_directive" >&5
+-echo "${ECHO_T}$sysio_asm_global_directive" >&6
++{ echo "$as_me:$LINENO: result: $sysio_asm_global_directive" >&5
++echo "${ECHO_T}$sysio_asm_global_directive" >&6; }
+ if test $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;}
+@@ -4618,8 +5251,8 @@
+ #	AC_DEFINE_UNQUOTED(ASM_GLOBAL_DIRECTIVE, ${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
++{ echo "$as_me:$LINENO: checking for .set assembler directive" >&5
++echo $ECHO_N "checking for .set assembler directive... $ECHO_C" >&6; }
+ if test "${sysio_asm_set_directive+set}" = set; then
+   echo $ECHO_N "(cached) $ECHO_C" >&6
+ else
+@@ -4643,14 +5276,14 @@
+ 	fi
+ 	rm -f conftest*
+ fi
+-echo "$as_me:$LINENO: result: $sysio_asm_set_directive" >&5
+-echo "${ECHO_T}$sysio_asm_set_directive" >&6
++{ echo "$as_me:$LINENO: result: $sysio_asm_set_directive" >&5
++echo "${ECHO_T}$sysio_asm_set_directive" >&6; }
+ #if test $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
++{ echo "$as_me:$LINENO: checking for assembler .weak directive" >&5
++echo $ECHO_N "checking for assembler .weak directive... $ECHO_C" >&6; }
+ if test "${sysio_asm_weak_directive+set}" = set; then
+   echo $ECHO_N "(cached) $ECHO_C" >&6
+ else
+@@ -4666,12 +5299,12 @@
+ 	fi
+ 	rm -f conftest*
+ fi
+-echo "$as_me:$LINENO: result: $sysio_asm_weak_directive" >&5
+-echo "${ECHO_T}$sysio_asm_weak_directive" >&6
++{ echo "$as_me:$LINENO: result: $sysio_asm_weak_directive" >&5
++echo "${ECHO_T}$sysio_asm_weak_directive" >&6; }
+ 
+ if test $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
++	{ echo "$as_me:$LINENO: checking for assembler .weakext directive" >&5
++echo $ECHO_N "checking for assembler .weakext directive... $ECHO_C" >&6; }
+ if test "${sysio_asm_weakext_directive+set}" = set; then
+   echo $ECHO_N "(cached) $ECHO_C" >&6
+ else
+@@ -4691,8 +5324,8 @@
+ 		fi
+ 		rm -f conftest*
+ fi
+-echo "$as_me:$LINENO: result: $sysio_asm_weakext_directive" >&5
+-echo "${ECHO_T}$sysio_asm_weakext_directive" >&6
++{ echo "$as_me:$LINENO: result: $sysio_asm_weakext_directive" >&5
++echo "${ECHO_T}$sysio_asm_weakext_directive" >&6; }
+ fi # no .weak
+ 
+ if test x$sysio_asm_weak_directive = xyes; then
+@@ -4709,6 +5342,7 @@
+ 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
+@@ -4727,39 +5361,58 @@
+ 
+ # The following way of writing the cache mishandles newlines in values,
+ # but we know of no workaround that is simple, portable, and efficient.
+-# So, don't put newlines in cache variables' values.
++# 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 `(ac_space=' '; set | grep ac_space) 2>&1` in
+-    *ac_space=\ *)
++    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 \
+-	"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
++      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+       ;;
+-    esac;
+-} |
++    esac |
++    sort
++) |
+   sed '
++     /^ac_cv_env_/b end
+      t clear
+      : clear
+      s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
+      t end
+-     /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
++     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 "updating cache $cache_file"
++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 "not updating unwritable cache $cache_file"
++    { 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
+@@ -4768,63 +5421,48 @@
+ # Let make expand exec_prefix.
+ test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
+ 
+-# 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
+-
+ # 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 we branch to the quote section.  Otherwise,
++# take arguments), then branch to the quote section.  Otherwise,
+ # look for a macro that doesn't take arguments.
+-cat >confdef2opt.sed <<\_ACEOF
++ac_script='
+ t clear
+ : clear
+-s,^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*([^)]*)\)[	 ]*\(.*\),-D\1=\2,g
++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
+-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
+-_ACEOF
+-# We use echo to avoid assuming a particular line-breaking character.
+-# The extra dot is to prevent the shell from consuming trailing
+-# line-breaks from the sub-command output.  A line-break within
+-# single-quotes doesn't work because, if this script is created in a
+-# platform that uses two characters for line-breaks (e.g., DOS), tr
+-# would break.
+-ac_LF_and_DOT=`echo; echo .`
+-DEFS=`sed -n -f confdef2opt.sed confdefs.h | tr "$ac_LF_and_DOT" ' .'`
+-rm -f confdef2opt.sed
++}
++'
++DEFS=`sed -n "$ac_script" confdefs.h`
+ 
+ 
+ ac_libobjs=
+ ac_ltlibobjs=
+ for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
+   # 1. Remove the extension, and $U if already installed.
+-  ac_i=`echo "$ac_i" |
+-	 sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
+-  # 2. Add them.
+-  ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
+-  ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
++  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
+ LIBOBJS=$ac_libobjs
+ 
+@@ -4946,73 +5584,26 @@
+ ## M4sh Initialization.  ##
+ ## --------------------- ##
+ 
+-# Be Bourne compatible
++# 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+"$@"}'='"$@"'
+-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
++  setopt NO_GLOB_SUBST
+ else
+-  as_unset=false
+-fi
+-
+-
+-# Work around bugs in pre-3.0 UWIN ksh.
+-$as_unset ENV MAIL MAILPATH
+-PS1='$ '
+-PS2='> '
+-PS4='+ '
++  case `(set -o) 2>/dev/null` in
++  *posix*) set -o posix ;;
++esac
+ 
+-# 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
+-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'`
+-
+-
+-# 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'
+@@ -5033,14 +5624,24 @@
+   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
+ 
+-  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.
++# (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
+@@ -5050,6 +5651,7 @@
+   test -z "$as_dir" && as_dir=.
+   test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+ done
++IFS=$as_save_IFS
+ 
+        ;;
+   esac
+@@ -5059,100 +5661,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; }; }
++  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
++
++# 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
+-  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
++    ($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
+-  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; }
+-	     CONFIG_SHELL=$as_dir/$as_base
+-	     export CONFIG_SHELL
+-	     exec "$CONFIG_SHELL" "$0" ${1+"$@"}
+-	   fi;;
+-	 esac
+-       done
+-done
+-;;
+-  esac
++  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 before each line; the second 'sed' does the real
+-  # work.  The second script uses 'N' to pair each line-number line
+-  # with the numbered line, and appends trailing '-' during
+-  # substitution so that $LINENO is not a special case at line end.
++  # 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
+-  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
+-  sed '=' <$as_myself |
++  # 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
+-      s,$,-,
+       : loop
+-      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
++      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
+       t loop
+-      s,-$,,
+-      s,^['$as_cr_digits']*\n,,
++      s/-\n.*//
+     ' >$as_me.lineno &&
+-  chmod +x $as_me.lineno ||
+-    { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
+-echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
++  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 sensible to this).
+-  . ./$as_me.lineno
++  # original and so on.  Autoconf is especially sensitive to this).
++  . "./$as_me.lineno"
+   # Exit status is that of the last command.
+   exit
+ }
+ 
+ 
+-case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
+-  *c*,-n*) ECHO_N= ECHO_C='
+-' ECHO_T='	' ;;
+-  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
+-  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
++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; then
++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
+-  # We could just check for DJGPP; but this test a) works b) is more generic
+-  # 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
++  # ... 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$$.file
++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=:
+@@ -5161,7 +5824,28 @@
+   as_mkdir_p=false
+ fi
+ 
+-as_executable_p="test -f"
++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'"
+@@ -5170,31 +5854,14 @@
+ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+ 
+ 
+-# IFS
+-# We need space, tab and new line, in precisely that order.
+-as_nl='
+-'
+-IFS=" 	$as_nl"
+-
+-# CDPATH.
+-$as_unset CDPATH
+-
+ exec 6>&1
+ 
+-# Open the log real soon, to keep \$[0] and so on meaningful, and to
++# 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.  Logging --version etc. is OK.
+-exec 5>>config.log
+-{
+-  echo
+-  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
+-## Running $as_me. ##
+-_ASBOX
+-} >&5
+-cat >&5 <<_CSEOF
+-
++# values after options handling.
++ac_log="
+ This file was extended by libsysio $as_me 1.2, which was
+-generated by GNU Autoconf 2.59.  Invocation command line was
++generated by GNU Autoconf 2.61.  Invocation command line was
+ 
+   CONFIG_FILES    = $CONFIG_FILES
+   CONFIG_HEADERS  = $CONFIG_HEADERS
+@@ -5202,30 +5869,19 @@
+   CONFIG_COMMANDS = $CONFIG_COMMANDS
+   $ $0 $@
+ 
+-_CSEOF
+-echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
+-echo >&5
++on `(hostname || uname -n) 2>/dev/null | sed 1q`
++"
++
+ _ACEOF
+ 
++cat >>$CONFIG_STATUS <<_ACEOF
+ # Files that config.status was made for.
+-if test -n "$ac_config_files"; then
+-  echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
+-fi
+-
+-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_commands"; then
+-  echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
+-fi
++_ACEOF
+ 
+ cat >>$CONFIG_STATUS <<\_ACEOF
+-
+ ac_cs_usage="\
+ \`$as_me' instantiates files from templates according to the
+ current configuration.
+@@ -5233,7 +5889,7 @@
+ Usage: $0 [OPTIONS] [FILE]...
+ 
+   -h, --help       print this help, then exit
+-  -V, --version    print version number, 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
+@@ -5247,19 +5903,21 @@
+ $config_commands
+ 
+ Report bugs to <bug-autoconf at gnu.org>."
+-_ACEOF
+ 
++_ACEOF
+ cat >>$CONFIG_STATUS <<_ACEOF
+ ac_cs_version="\\
+ libsysio config.status 1.2
+-configured by $0, generated by GNU Autoconf 2.59,
+-  with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
++configured by $0, generated by GNU Autoconf 2.61,
++  with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
+ 
+-Copyright (C) 2003 Free Software Foundation, Inc.
++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."
+-srcdir=$srcdir
+-INSTALL="$INSTALL"
++
++ac_pwd='$ac_pwd'
++srcdir='$srcdir'
++INSTALL='$INSTALL'
+ _ACEOF
+ 
+ cat >>$CONFIG_STATUS <<\_ACEOF
+@@ -5270,60 +5928,42 @@
+ do
+   case $1 in
+   --*=*)
+-    ac_option=`expr "x$1" : 'x\([^=]*\)='`
+-    ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
++    ac_option=`expr "X$1" : 'X\([^=]*\)='`
++    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
+     ac_shift=:
+     ;;
+-  -*)
++  *)
+     ac_option=$1
+     ac_optarg=$2
+     ac_shift=shift
+     ;;
+-  *) # This is not an option, so the user has probably given explicit
+-     # arguments.
+-     ac_option=$1
+-     ac_need_defaults=false;;
+   esac
+ 
+   case $ac_option in
+   # Handling of the options.
+-_ACEOF
+-cat >>$CONFIG_STATUS <<\_ACEOF
+   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
+     ac_cs_recheck=: ;;
+-  --version | --vers* | -V )
+-    echo "$ac_cs_version"; exit 0 ;;
+-  --he | --h)
+-    # Conflict between --help and --header
+-    { { echo "$as_me:$LINENO: error: ambiguous option: $1
+-Try \`$0 --help' for more information." >&5
+-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 0 ;;
+-  --debug | --d* | -d )
++  --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 |  --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:$LINENO: error: unrecognized option: $1
+-Try \`$0 --help' for more information." >&5
+-echo "$as_me: error: unrecognized option: $1
+-Try \`$0 --help' for more information." >&2;}
++  -*) { 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_config_targets="$ac_config_targets $1"
++     ac_need_defaults=false ;;
+ 
+   esac
+   shift
+@@ -5339,37 +5979,49 @@
+ _ACEOF
+ cat >>$CONFIG_STATUS <<_ACEOF
+ if \$ac_cs_recheck; then
+-  echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
+-  exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
++  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 section.
++# 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
+-  # Handling of arguments.
++  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" ;;
++
+   *) { { 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
+@@ -5380,364 +6032,468 @@
+ fi
+ 
+ # Have a temporary directory for convenience.  Make it in the build tree
+-# simply because there is no reason to put it here, and in addition,
++# simply because there is no reason against having it here, and in addition,
+ # creating and moving files from /tmp can sometimes cause problems.
+-# Create a temporary directory, and hook for its removal unless debugging.
++# 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 ||
+ {
+-  trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
++  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 -q "./confstatXXXXXX") 2>/dev/null` &&
++  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
+   test -n "$tmp" && test -d "$tmp"
+ }  ||
+ {
+-  tmp=./confstat$$-$RANDOM
+-  (umask 077 && mkdir $tmp)
++  tmp=./conf$$-$RANDOM
++  (umask 077 && mkdir "$tmp")
+ } ||
+ {
+    echo "$me: cannot create a temporary directory in ." >&2
+    { (exit 1); exit 1; }
+ }
+ 
+-_ACEOF
+-
+-cat >>$CONFIG_STATUS <<_ACEOF
+-
+ #
+-# CONFIG_FILES section.
++# 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
+-  # Protect against being on the right side of a sed subst in config.status.
+-  sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
+-   s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
+-s, at SHELL@,$SHELL,;t t
+-s, at PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
+-s, at PACKAGE_NAME@,$PACKAGE_NAME,;t t
+-s, at PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
+-s, at PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
+-s, at PACKAGE_STRING@,$PACKAGE_STRING,;t t
+-s, at PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
+-s, at exec_prefix@,$exec_prefix,;t t
+-s, at prefix@,$prefix,;t t
+-s, at program_transform_name@,$program_transform_name,;t t
+-s, at bindir@,$bindir,;t t
+-s, at sbindir@,$sbindir,;t t
+-s, at libexecdir@,$libexecdir,;t t
+-s, at datadir@,$datadir,;t t
+-s, at sysconfdir@,$sysconfdir,;t t
+-s, at sharedstatedir@,$sharedstatedir,;t t
+-s, at localstatedir@,$localstatedir,;t t
+-s, at libdir@,$libdir,;t t
+-s, at includedir@,$includedir,;t t
+-s, at oldincludedir@,$oldincludedir,;t t
+-s, at infodir@,$infodir,;t t
+-s, at mandir@,$mandir,;t t
+-s, at build_alias@,$build_alias,;t t
+-s, at host_alias@,$host_alias,;t t
+-s, at target_alias@,$target_alias,;t t
+-s, at DEFS@,$DEFS,;t t
+-s, at ECHO_C@,$ECHO_C,;t t
+-s, at ECHO_N@,$ECHO_N,;t t
+-s, at ECHO_T@,$ECHO_T,;t t
+-s, at LIBS@,$LIBS,;t t
+-s, at build@,$build,;t t
+-s, at build_cpu@,$build_cpu,;t t
+-s, at build_vendor@,$build_vendor,;t t
+-s, at build_os@,$build_os,;t t
+-s, at host@,$host,;t t
+-s, at host_cpu@,$host_cpu,;t t
+-s, at host_vendor@,$host_vendor,;t t
+-s, at host_os@,$host_os,;t t
+-s, at target@,$target,;t t
+-s, at target_cpu@,$target_cpu,;t t
+-s, at target_vendor@,$target_vendor,;t t
+-s, at target_os@,$target_os,;t t
+-s, at INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
+-s, at INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
+-s, at INSTALL_DATA@,$INSTALL_DATA,;t t
+-s, at CYGPATH_W@,$CYGPATH_W,;t t
+-s, at PACKAGE@,$PACKAGE,;t t
+-s, at VERSION@,$VERSION,;t t
+-s, at ACLOCAL@,$ACLOCAL,;t t
+-s, at AUTOCONF@,$AUTOCONF,;t t
+-s, at AUTOMAKE@,$AUTOMAKE,;t t
+-s, at AUTOHEADER@,$AUTOHEADER,;t t
+-s, at MAKEINFO@,$MAKEINFO,;t t
+-s, at install_sh@,$install_sh,;t t
+-s, at STRIP@,$STRIP,;t t
+-s, at ac_ct_STRIP@,$ac_ct_STRIP,;t t
+-s, at INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t
+-s, at mkdir_p@,$mkdir_p,;t t
+-s, at AWK@,$AWK,;t t
+-s, at SET_MAKE@,$SET_MAKE,;t t
+-s, at am__leading_dot@,$am__leading_dot,;t t
+-s, at AMTAR@,$AMTAR,;t t
+-s, at am__tar@,$am__tar,;t t
+-s, at am__untar@,$am__untar,;t t
+-s, at CC@,$CC,;t t
+-s, at CFLAGS@,$CFLAGS,;t t
+-s, at LDFLAGS@,$LDFLAGS,;t t
+-s, at CPPFLAGS@,$CPPFLAGS,;t t
+-s, at ac_ct_CC@,$ac_ct_CC,;t t
+-s, at EXEEXT@,$EXEEXT,;t t
+-s, at OBJEXT@,$OBJEXT,;t t
+-s, at DEPDIR@,$DEPDIR,;t t
+-s, at am__include@,$am__include,;t t
+-s, at am__quote@,$am__quote,;t t
+-s, at AMDEP_TRUE@,$AMDEP_TRUE,;t t
+-s, at AMDEP_FALSE@,$AMDEP_FALSE,;t t
+-s, at AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t
+-s, at CCDEPMODE@,$CCDEPMODE,;t t
+-s, at am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t
+-s, at am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t
+-s, at RANLIB@,$RANLIB,;t t
+-s, at ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
+-s, at CPP@,$CPP,;t t
+-s, at EGREP@,$EGREP,;t t
+-s, at LIBBUILD_DIR@,$LIBBUILD_DIR,;t t
+-s, at WITH_NATIVE_DRIVER_TRUE@,$WITH_NATIVE_DRIVER_TRUE,;t t
+-s, at WITH_NATIVE_DRIVER_FALSE@,$WITH_NATIVE_DRIVER_FALSE,;t t
+-s, at WITH_INCORE_DRIVER_TRUE@,$WITH_INCORE_DRIVER_TRUE,;t t
+-s, at WITH_INCORE_DRIVER_FALSE@,$WITH_INCORE_DRIVER_FALSE,;t t
+-s, at WITH_TESTS_TRUE@,$WITH_TESTS_TRUE,;t t
+-s, at WITH_TESTS_FALSE@,$WITH_TESTS_FALSE,;t t
+-s, at AUTOMOUNT@,$AUTOMOUNT,;t t
+-s, at WITH_STDFD_DEV_TRUE@,$WITH_STDFD_DEV_TRUE,;t t
+-s, at WITH_STDFD_DEV_FALSE@,$WITH_STDFD_DEV_FALSE,;t t
+-s, at ZERO_SUM_MEMORY@,$ZERO_SUM_MEMORY,;t t
+-s, at DEFER_INIT_CWD@,$DEFER_INIT_CWD,;t t
+-s, at TRACING@,$TRACING,;t t
+-s, at WITH_CPLANT_YOD_TRUE@,$WITH_CPLANT_YOD_TRUE,;t t
+-s, at WITH_CPLANT_YOD_FALSE@,$WITH_CPLANT_YOD_FALSE,;t t
+-s, at WITH_CPLANT_TESTS_TRUE@,$WITH_CPLANT_TESTS_TRUE,;t t
+-s, at WITH_CPLANT_TESTS_FALSE@,$WITH_CPLANT_TESTS_FALSE,;t t
+-s, at WITH_SOCKETS_DRIVER_TRUE@,$WITH_SOCKETS_DRIVER_TRUE,;t t
+-s, at WITH_SOCKETS_DRIVER_FALSE@,$WITH_SOCKETS_DRIVER_FALSE,;t t
+-s, at WITH_LUSTRE_HACK_TRUE@,$WITH_LUSTRE_HACK_TRUE,;t t
+-s, at WITH_LUSTRE_HACK_FALSE@,$WITH_LUSTRE_HACK_FALSE,;t t
+-s, at SYSIO_LABEL_NAMES@,$SYSIO_LABEL_NAMES,;t t
+-s, at TEST_ALPHA_ARG_TRUE@,$TEST_ALPHA_ARG_TRUE,;t t
+-s, at TEST_ALPHA_ARG_FALSE@,$TEST_ALPHA_ARG_FALSE,;t t
+-s, at LIBOBJS@,$LIBOBJS,;t t
+-s, at LTLIBOBJS@,$LTLIBOBJS,;t t
+-CEOF
++if test -n "$CONFIG_FILES"; then
+ 
+ _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.
+-  ac_max_sed_lines=48
+-  ac_sed_frag=1 # Number of current file.
+-  ac_beg=1 # First line for current file.
+-  ac_end=$ac_max_sed_lines # Line after last line for current file.
+-  ac_more_lines=:
+-  ac_sed_cmds=
+-  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
++
++
++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
+-      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
++    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"
++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`
++
++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
++LIBOBJS!$LIBOBJS$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
+-  if test -z "$ac_sed_cmds"; then
+-    ac_sed_cmds=cat
++
++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"
+ 
++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
+-for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
+-  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
+-  case $ac_file in
+-  - | *:- | *:-:* ) # input from stdin
+-	cat >$tmp/stdin
+-	ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+-  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+-  * )   ac_file_in=$ac_file.in ;;
++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
+ 
+-  # 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])
++    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 ||
++	 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; }
++    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^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"
++  { 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 test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
++    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 ||
++	 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; }
++    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 ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
+-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
++    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=.
+ 
+-if test "$ac_dir" != .; then
++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=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+-else
+-  ac_dir_suffix= ac_top_builddir=
+-fi
++  # 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
+-  .)  # No --srcdir option.  We are building in place.
++  .)  # We are building in place.
+     ac_srcdir=.
+-    if test -z "$ac_top_builddir"; then
+-       ac_top_srcdir=.
+-    else
+-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+-    fi ;;
+-  [\\/]* | ?:[\\/]* )  # Absolute path.
++    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 ;;
+-  *) # Relative path.
+-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
++    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
+ 
+-# Do not use `cd foo && pwd` to compute absolute paths, because
+-# the directories may not exist.
+-case `pwd` in
+-.) ac_abs_builddir="$ac_dir";;
+-*)
+-  case "$ac_dir" in
+-  .) ac_abs_builddir=`pwd`;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
+-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_builddir=${ac_top_builddir}.;;
+-*)
+-  case ${ac_top_builddir}. in
+-  .) ac_abs_top_builddir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
+-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_srcdir=$ac_srcdir;;
+-*)
+-  case $ac_srcdir in
+-  .) ac_abs_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
+-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_srcdir=$ac_top_srcdir;;
+-*)
+-  case $ac_top_srcdir in
+-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
+-  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
+-  esac;;
+-esac
+ 
++  case $ac_mode in
++  :F)
++  #
++  # CONFIG_FILE
++  #
+ 
+   case $INSTALL in
+   [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
+-  *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
++  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
+   esac
++_ACEOF
+ 
+-  if test x"$ac_file" != x-; then
+-    { echo "$as_me:$LINENO: creating $ac_file" >&5
+-echo "$as_me: creating $ac_file" >&6;}
+-    rm -f "$ac_file"
+-  fi
+-  # 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.  */
+-  if test x"$ac_file" = x-; then
+-    configure_input=
+-  else
+-    configure_input="$ac_file.  "
+-  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=:
+-    for f in $ac_file_in; do
+-      case $f in
+-      -) echo $tmp/stdin ;;
+-      [\\/$]*)
+-	 # Absolute (can't be DOS-style, as IFS=:)
+-	 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+-echo "$as_me: error: cannot find input file: $f" >&2;}
+-   { (exit 1); exit 1; }; }
+-	 echo "$f";;
+-      *) # Relative
+-	 if test -f "$f"; then
+-	   # Build tree
+-	   echo "$f"
+-	 elif test -f "$srcdir/$f"; then
+-	   # Source tree
+-	   echo "$srcdir/$f"
+-	 else
+-	   # /dev/null tree
+-	   { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+-echo "$as_me: error: cannot find input file: $f" >&2;}
+-   { (exit 1); exit 1; }; }
+-	 fi;;
++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
+-    done` || { (exit 1); exit 1; }
+ _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
+@@ -5745,142 +6501,43 @@
+ cat >>$CONFIG_STATUS <<\_ACEOF
+ :t
+ /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
+-s, at configure_input@,$configure_input,;t t
+-s, at srcdir@,$ac_srcdir,;t t
+-s, at abs_srcdir@,$ac_abs_srcdir,;t t
+-s, at top_srcdir@,$ac_top_srcdir,;t t
+-s, at abs_top_srcdir@,$ac_abs_top_srcdir,;t t
+-s, at builddir@,$ac_builddir,;t t
+-s, at abs_builddir@,$ac_abs_builddir,;t t
+-s, at top_builddir@,$ac_top_builddir,;t t
+-s, at abs_top_builddir@,$ac_abs_top_builddir,;t t
+-s, at INSTALL@,$ac_INSTALL,;t t
+-" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
+-  rm -f $tmp/stdin
+-  if test x"$ac_file" != x-; then
+-    mv $tmp/out $ac_file
+-  else
+-    cat $tmp/out
+-    rm -f $tmp/out
+-  fi
+-
+-done
+-_ACEOF
+-cat >>$CONFIG_STATUS <<\_ACEOF
+-
+-#
+-# CONFIG_COMMANDS section.
+-#
+-for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
+-  ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
+-  ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
+-  ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
+-$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+-	 X"$ac_dest" : 'X\(//\)[^/]' \| \
+-	 X"$ac_dest" : 'X\(//\)$' \| \
+-	 X"$ac_dest" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
+-echo X"$ac_dest" |
+-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+-  	  /^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"
+-    as_dirs=
+-    while test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
+-$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'`
+-    done
+-    test ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
+-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
+-   { (exit 1); exit 1; }; }; }
+-
+-  ac_builddir=.
++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
+ 
+-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"; } &&
++  { 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;}
+ 
+-case $srcdir in
+-  .)  # No --srcdir option.  We are building in place.
+-    ac_srcdir=.
+-    if test -z "$ac_top_builddir"; then
+-       ac_top_srcdir=.
+-    else
+-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+-    fi ;;
+-  [\\/]* | ?:[\\/]* )  # Absolute path.
+-    ac_srcdir=$srcdir$ac_dir_suffix;
+-    ac_top_srcdir=$srcdir ;;
+-  *) # 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
++ ;;
+ 
+-# Do not use `cd foo && pwd` to compute absolute paths, because
+-# the directories may not exist.
+-case `pwd` in
+-.) ac_abs_builddir="$ac_dir";;
+-*)
+-  case "$ac_dir" in
+-  .) ac_abs_builddir=`pwd`;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
+-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_builddir=${ac_top_builddir}.;;
+-*)
+-  case ${ac_top_builddir}. in
+-  .) ac_abs_top_builddir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
+-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_srcdir=$ac_srcdir;;
+-*)
+-  case $ac_srcdir in
+-  .) ac_abs_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
+-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
+-  esac;;
+-esac
+-case $ac_abs_builddir in
+-.) ac_abs_top_srcdir=$ac_top_srcdir;;
+-*)
+-  case $ac_top_srcdir in
+-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
+-  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
+-  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
+-  esac;;
++
++  :C)  { echo "$as_me:$LINENO: executing $ac_file commands" >&5
++echo "$as_me: executing $ac_file commands" >&6;}
++ ;;
+ esac
+ 
+ 
+-  { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
+-echo "$as_me: executing $ac_dest commands" >&6;}
+-  case $ac_dest in
+-    depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
++  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.
+@@ -5890,86 +6547,129 @@
+   # 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=`(dirname "$mf") 2>/dev/null ||
++    dirpart=`$as_dirname -- "$mf" ||
+ $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ 	 X"$mf" : 'X\(//\)[^/]' \| \
+ 	 X"$mf" : 'X\(//\)$' \| \
+-	 X"$mf" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
++	 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; }
++    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\/\)[^/].*/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\/\)$/{
++	    s//\1/
++	    q
++	  }
++	  /^X\(\/\).*/{
++	    s//\1/
++	    q
++	  }
+   	  s/.*/./; q'`
+   else
+     continue
+   fi
+-  # Extract the definition of DEPDIR, am__include, and am__quote
+-  # from the Makefile without running `make'.
+-  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
++  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
+-  am__include=`sed -n 's/^am__include = //p' < "$mf"`
+-  test -z "am__include" && continue
+-  am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
+   # When using ansi2knr, U may be empty or an underscore; expand it
+-  U=`sed -n 's/^U = //p' < "$mf"`
+-  # Find all dependency output files, they are included files with
+-  # $(DEPDIR) in their names.  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 "
+-    s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
++  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=`(dirname "$file") 2>/dev/null ||
++    fdir=`$as_dirname -- "$file" ||
+ $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ 	 X"$file" : 'X\(//\)[^/]' \| \
+ 	 X"$file" : 'X\(//\)$' \| \
+-	 X"$file" : 'X\(/\)' \| \
+-	 .     : '\(.\)' 2>/dev/null ||
++	 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; }
++    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
++	    s//\1/
++	    q
++	  }
++	  /^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
++    { 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 test ! -d "$as_dir"; do
+-      as_dirs="$as_dir $as_dirs"
+-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
++    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 ||
++	 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; }
++    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 ! -n "$as_dirs" || mkdir $as_dirs
+-  fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5
+-echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;}
++    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
+-_ACEOF
++done # for ac_tag
+ 
+-cat >>$CONFIG_STATUS <<\_ACEOF
+ 
+ { (exit 0); exit 0; }
+ _ACEOF
+diff -Nurwd lustre-1.6.7.2.orig/libsysio/Makefile.in lustre-1.6.7.2/libsysio/Makefile.in
+--- lustre-1.6.7.2.orig/libsysio/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/libsysio/Makefile.in	2009-08-10 10:05:48.000000000 +0200
+@@ -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.
+ # @configure_input@
+ 
+-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005  Free Software Foundation, Inc.
++# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
++# Free Software Foundation, Inc.
+ # 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 @@
+ pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
+ top_builddir = .
++
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ INSTALL = @INSTALL@
+ install_sh_DATA = $(install_sh) -c -m 644
+@@ -42,107 +43,6 @@
+ build_triplet = @build@
+ host_triplet = @host@
+ target_triplet = @target@
+-DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
+-	$(srcdir)/Makefile.in $(top_srcdir)/Rules.make \
+-	$(top_srcdir)/configure $(top_srcdir)/dev/stdfd/module.mk \
+-	$(top_srcdir)/drivers/incore/module.mk \
+-	$(top_srcdir)/drivers/native/module.mk \
+-	$(top_srcdir)/drivers/sockets/module.mk \
+-	$(top_srcdir)/drivers/yod/module.mk \
+-	$(top_srcdir)/include/module.mk $(top_srcdir)/src/module.mk \
+-	$(top_srcdir)/tests/module.mk AUTHORS COPYING ChangeLog \
+-	INSTALL NEWS compile config.guess config.sub depcomp \
+-	install-sh missing mkinstalldirs
+-subdir = .
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-am__aclocal_m4_deps = $(top_srcdir)/configure.in
+-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+-	$(ACLOCAL_M4)
+-am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
+- configure.lineno configure.status.lineno
+-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+-CONFIG_CLEAN_FILES =
+-am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+-am__vpath_adj = case $$p in \
+-    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+-    *) f=$$p;; \
+-  esac;
+-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
+-am__installdirs = "$(DESTDIR)$(libdir)"
+-libLIBRARIES_INSTALL = $(INSTALL_DATA)
+-LIBRARIES = $(lib_LIBRARIES)
+-AR = ar
+-ARFLAGS = cru
+-__LIBBUILD_DIR__libsysio_a_AR = $(AR) $(ARFLAGS)
+-__LIBBUILD_DIR__libsysio_a_LIBADD =
+-am____LIBBUILD_DIR__libsysio_a_SOURCES_DIST = 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 src/getdirentries.c src/init.c \
+-	src/inode.c src/ioctl.c src/ioctx.c src/iowait.c src/link.c \
+-	src/lseek.c src/mkdir.c src/mknod.c src/mount.c src/namei.c \
+-	src/open.c src/rw.c src/reconcile.c src/rename.c src/rmdir.c \
+-	src/stat64.c src/stat.c src/stddir.c src/readdir.c \
+-	src/readdir64.c src/symlink.c src/readlink.c src/truncate.c \
+-	src/unlink.c src/utime.c src/file.c src/file_hack.c \
+-	src/stdlib.c dev/stdfd/stdfd.c drivers/incore/fs_incore.c \
+-	drivers/sockets/sockets.c drivers/native/fs_native.c \
+-	drivers/yod/fs_yod.c
+-am__dirstamp = $(am__leading_dot)dirstamp
+- at WITH_LUSTRE_HACK_FALSE@am__objects_1 = src/file.$(OBJEXT)
+- at WITH_LUSTRE_HACK_TRUE@am__objects_1 = src/file_hack.$(OBJEXT)
+- at WITH_LUSTRE_HACK_TRUE@am__objects_2 = src/stdlib.$(OBJEXT)
+-am__objects_3 = src/access.$(OBJEXT) src/chdir.$(OBJEXT) \
+-	src/chmod.$(OBJEXT) src/chown.$(OBJEXT) src/dev.$(OBJEXT) \
+-	src/dup.$(OBJEXT) src/fcntl.$(OBJEXT) src/fs.$(OBJEXT) \
+-	src/fsync.$(OBJEXT) src/getdirentries.$(OBJEXT) \
+-	src/init.$(OBJEXT) src/inode.$(OBJEXT) src/ioctl.$(OBJEXT) \
+-	src/ioctx.$(OBJEXT) src/iowait.$(OBJEXT) src/link.$(OBJEXT) \
+-	src/lseek.$(OBJEXT) src/mkdir.$(OBJEXT) src/mknod.$(OBJEXT) \
+-	src/mount.$(OBJEXT) src/namei.$(OBJEXT) src/open.$(OBJEXT) \
+-	src/rw.$(OBJEXT) src/reconcile.$(OBJEXT) src/rename.$(OBJEXT) \
+-	src/rmdir.$(OBJEXT) src/stat64.$(OBJEXT) src/stat.$(OBJEXT) \
+-	src/stddir.$(OBJEXT) src/readdir.$(OBJEXT) \
+-	src/readdir64.$(OBJEXT) src/symlink.$(OBJEXT) \
+-	src/readlink.$(OBJEXT) src/truncate.$(OBJEXT) \
+-	src/unlink.$(OBJEXT) src/utime.$(OBJEXT) $(am__objects_1) \
+-	$(am__objects_2)
+-am__objects_4 = dev/stdfd/stdfd.$(OBJEXT)
+- at WITH_STDFD_DEV_TRUE@am__objects_5 = $(am__objects_4)
+-am__objects_6 = drivers/incore/fs_incore.$(OBJEXT)
+- at WITH_INCORE_DRIVER_TRUE@am__objects_7 = $(am__objects_6)
+-am__objects_8 = drivers/sockets/sockets.$(OBJEXT)
+- at WITH_SOCKETS_DRIVER_TRUE@am__objects_9 = $(am__objects_8)
+-am__objects_10 = drivers/native/fs_native.$(OBJEXT)
+- at WITH_NATIVE_DRIVER_TRUE@am__objects_11 = $(am__objects_10)
+- at WITH_CPLANT_YOD_TRUE@am__objects_12 = drivers/yod/fs_yod.$(OBJEXT)
+- at WITH_CPLANT_YOD_TRUE@am__objects_13 = $(am__objects_12)
+-am___LIBBUILD_DIR__libsysio_a_OBJECTS = $(am__objects_3) \
+-	$(am__objects_5) $(am__objects_7) $(am__objects_9) \
+-	$(am__objects_11) $(am__objects_13)
+-__LIBBUILD_DIR__libsysio_a_OBJECTS =  \
+-	$(am___LIBBUILD_DIR__libsysio_a_OBJECTS)
+-DEFAULT_INCLUDES = -I. -I$(srcdir)
+-depcomp = $(SHELL) $(top_srcdir)/depcomp
+-am__depfiles_maybe = depfiles
+-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+-	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-CCLD = $(CC)
+-LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-SOURCES = $(__LIBBUILD_DIR__libsysio_a_SOURCES)
+-DIST_SOURCES = $(am____LIBBUILD_DIR__libsysio_a_SOURCES_DIST)
+-ETAGS = etags
+-CTAGS = ctags
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+-distdir = $(PACKAGE)-$(VERSION)
+-top_distdir = $(distdir)
+-am__remove_distdir = \
+-  { test ! -d $(distdir) \
+-    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
+-         && rm -fr $(distdir); }; }
+-DIST_ARCHIVES = $(distdir).tar.gz
+-GZIP_ENV = --best
+-distuninstallcheck_listfiles = find . -type f -print
+-distcleancheck_listfiles = find . -type f -print
+ ACLOCAL = @ACLOCAL@
+ AMDEP_FALSE = @AMDEP_FALSE@
+ AMDEP_TRUE = @AMDEP_TRUE@
+@@ -166,6 +66,7 @@
+ ECHO_T = @ECHO_T@
+ EGREP = @EGREP@
+ EXEEXT = @EXEEXT@
++GREP = @GREP@
+ INSTALL_DATA = @INSTALL_DATA@
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
+@@ -211,15 +112,11 @@
+ WITH_TESTS_TRUE = @WITH_TESTS_TRUE@
+ ZERO_SUM_MEMORY = @ZERO_SUM_MEMORY@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+-am__tar = @am__tar@
+-am__untar = @am__untar@
+ bindir = @bindir@
+ build = @build@
+ build_alias = @build_alias@
+@@ -227,23 +124,29 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
++docdir = @docdir@
++dvidir = @dvidir@
+ exec_prefix = @exec_prefix@
+ host = @host@
+ host_alias = @host_alias@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+ mandir = @mandir@
+-mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+ sysconfdir = @sysconfdir@
+@@ -253,12 +156,16 @@
+ target_os = @target_os@
+ target_vendor = @target_vendor@
+ AUTOMAKE_OPTIONS = 1.6
+- at WITH_TESTS_FALSE@TESTDIR = 
++
+ @WITH_TESTS_TRUE at TESTDIR = tests
+- at WITH_LUSTRE_HACK_FALSE@FILE_SUPPORT = src/file.c
++ at WITH_TESTS_FALSE@TESTDIR = 
++
+ @WITH_LUSTRE_HACK_TRUE at FILE_SUPPORT = src/file_hack.c
+- at WITH_LUSTRE_HACK_FALSE@LUSTRE_SRCDIR_SRCS = 
++ at WITH_LUSTRE_HACK_FALSE@FILE_SUPPORT = src/file.c
++
+ @WITH_LUSTRE_HACK_TRUE at LUSTRE_SRCDIR_SRCS = src/stdlib.c
++ at WITH_LUSTRE_HACK_FALSE@LUSTRE_SRCDIR_SRCS = 
++
+ 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 @@
+ 	src/truncate.c src/unlink.c src/utime.c \
+ 	$(FILE_SUPPORT) $(LUSTRE_SRCDIR_SRCS)
+ 
++
+ 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 @@
+ 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
++
+ lib_LIBRARIES = ${LIBBUILD_DIR}/libsysio.a
+ @WITH_STDFD_DEV_FALSE at OPTIONAL_STDFD_SRCS = 
++
+ @WITH_STDFD_DEV_TRUE at OPTIONAL_STDFD_SRCS = $(STDFD_SRCS)
+ @WITH_INCORE_DRIVER_FALSE at OPTIONAL_INCORE_SRCS = 
++
+ @WITH_INCORE_DRIVER_TRUE at OPTIONAL_INCORE_SRCS = $(INCORE_SRCS)
+- at WITH_NATIVE_DRIVER_FALSE@OPTIONAL_NATIVE_SRCS = 
++
+ @WITH_NATIVE_DRIVER_TRUE at OPTIONAL_NATIVE_SRCS = $(NATIVE_SRCS)
++ at WITH_NATIVE_DRIVER_FALSE@OPTIONAL_NATIVE_SRCS = 
+ @WITH_SOCKETS_DRIVER_FALSE at OPTIONAL_SOCKETS_SRCS = 
++
+ @WITH_SOCKETS_DRIVER_TRUE at OPTIONAL_SOCKETS_SRCS = $(SOCKETS_SRCS)
+ @WITH_CPLANT_YOD_FALSE at OPTIONAL_YOD_SRCS = 
++
+ @WITH_CPLANT_YOD_TRUE at OPTIONAL_YOD_SRCS = $(YOD_SRCS)
+ 
+ # it would be better that let configure script check this
+ @WITH_LUSTRE_HACK_TRUE at OPTIONAL_LUSTRE_CFLAGS = -fPIC
++
+ AM_CFLAGS = $(OPTIONAL_LUSTRE_CFLAGS)
++
+ __LIBBUILD_DIR__libsysio_a_SOURCES = \
+ 	$(SRCDIR_SRCS) \
+ 	$(OPTIONAL_STDFD_SRCS) \
+@@ -324,90 +240,188 @@
+ @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 = 
++
+ @WITH_SOCKETS_DRIVER_TRUE at SOCKETS_CPPFLAGS = -DWITH_SOCKETS=1
++
+ DEV_CPPFLAGS = $(STDFD_DEV_CPPFLAGS)
+-AM_CPPFLAGS = $(TRACING) $(AUTOMOUNT) $(ZERO_SUM_MEMORY) \
+-	$(DEV_CPPFLAGS) $(SOCKETS_CPPFLAGS) $(DEFER_INIT_CWD) \
+-	$(SYSIO_LABEL_NAMES) -I$(top_srcdir)/include \
++
++AM_CPPFLAGS = \
++	$(TRACING) \
++	$(AUTOMOUNT) $(ZERO_SUM_MEMORY) $(DEV_CPPFLAGS) $(SOCKETS_CPPFLAGS) \
++	$(DEFER_INIT_CWD) $(SYSIO_LABEL_NAMES) -I$(top_srcdir)/include \
+ 	${YOD_DRIVER_FLAGS}
++
+ EXTRA_DIST = Rules.make misc/init-env.sh $(TESTS_EXTRA) $(SRCDIR_EXTRA) \
+ 	$(INCLUDE_EXTRA) $(STDFD_EXTRA) $(INCORE_EXTRA) \
+ 	$(SOCKETS_EXTRA) $(NATIVE_EXTRA) $(YOD_EXTRA)
+ 
++subdir = .
++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
++CONFIG_CLEAN_FILES =
++LIBRARIES = $(lib_LIBRARIES)
++
++__LIBBUILD_DIR__libsysio_a_AR = $(AR) cru
++__LIBBUILD_DIR__libsysio_a_LIBADD =
++am____LIBBUILD_DIR__libsysio_a_SOURCES_DIST = 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 src/getdirentries.c src/init.c src/inode.c \
++	src/ioctl.c src/ioctx.c src/iowait.c src/link.c src/lseek.c \
++	src/mkdir.c src/mknod.c src/mount.c src/namei.c src/open.c \
++	src/rw.c src/reconcile.c src/rename.c src/rmdir.c src/stat64.c \
++	src/stat.c src/stddir.c src/readdir.c src/readdir64.c \
++	src/symlink.c src/readlink.c src/truncate.c src/unlink.c \
++	src/utime.c src/file_hack.c src/file.c src/stdlib.c \
++	dev/stdfd/stdfd.c drivers/incore/fs_incore.c \
++	drivers/sockets/sockets.c drivers/native/fs_native.c \
++	drivers/yod/fs_yod.c
++am__dirstamp = $(am__leading_dot)dirstamp
++ at WITH_LUSTRE_HACK_TRUE@am__objects_1 = src/file_hack.$(OBJEXT)
++ at WITH_LUSTRE_HACK_FALSE@am__objects_1 = src/file.$(OBJEXT)
++ at WITH_LUSTRE_HACK_TRUE@am__objects_2 = src/stdlib.$(OBJEXT)
++ at WITH_LUSTRE_HACK_FALSE@am__objects_2 =
++am__objects_3 = src/access.$(OBJEXT) src/chdir.$(OBJEXT) \
++	src/chmod.$(OBJEXT) src/chown.$(OBJEXT) src/dev.$(OBJEXT) \
++	src/dup.$(OBJEXT) src/fcntl.$(OBJEXT) src/fs.$(OBJEXT) \
++	src/fsync.$(OBJEXT) src/getdirentries.$(OBJEXT) \
++	src/init.$(OBJEXT) src/inode.$(OBJEXT) src/ioctl.$(OBJEXT) \
++	src/ioctx.$(OBJEXT) src/iowait.$(OBJEXT) src/link.$(OBJEXT) \
++	src/lseek.$(OBJEXT) src/mkdir.$(OBJEXT) src/mknod.$(OBJEXT) \
++	src/mount.$(OBJEXT) src/namei.$(OBJEXT) src/open.$(OBJEXT) \
++	src/rw.$(OBJEXT) src/reconcile.$(OBJEXT) src/rename.$(OBJEXT) \
++	src/rmdir.$(OBJEXT) src/stat64.$(OBJEXT) src/stat.$(OBJEXT) \
++	src/stddir.$(OBJEXT) src/readdir.$(OBJEXT) \
++	src/readdir64.$(OBJEXT) src/symlink.$(OBJEXT) \
++	src/readlink.$(OBJEXT) src/truncate.$(OBJEXT) \
++	src/unlink.$(OBJEXT) src/utime.$(OBJEXT) $(am__objects_1) \
++	$(am__objects_2)
++am__objects_4 = dev/stdfd/stdfd.$(OBJEXT)
++ at WITH_STDFD_DEV_TRUE@am__objects_5 = $(am__objects_4)
++ at WITH_STDFD_DEV_FALSE@am__objects_5 =
++am__objects_6 = drivers/incore/fs_incore.$(OBJEXT)
++ at WITH_INCORE_DRIVER_TRUE@am__objects_7 = $(am__objects_6)
++ at WITH_INCORE_DRIVER_FALSE@am__objects_7 =
++am__objects_8 = drivers/sockets/sockets.$(OBJEXT)
++ at WITH_SOCKETS_DRIVER_TRUE@am__objects_9 = $(am__objects_8)
++ at WITH_SOCKETS_DRIVER_FALSE@am__objects_9 =
++am__objects_10 = drivers/native/fs_native.$(OBJEXT)
++ at WITH_NATIVE_DRIVER_TRUE@am__objects_11 = $(am__objects_10)
++ at WITH_NATIVE_DRIVER_FALSE@am__objects_11 =
++ at WITH_CPLANT_YOD_TRUE@am__objects_12 = drivers/yod/fs_yod.$(OBJEXT)
++ at WITH_CPLANT_YOD_FALSE@am__objects_12 =
++ at WITH_CPLANT_YOD_TRUE@am__objects_13 = $(am__objects_12)
++ at WITH_CPLANT_YOD_FALSE@am__objects_13 =
++am___LIBBUILD_DIR__libsysio_a_OBJECTS = $(am__objects_3) \
++	$(am__objects_5) $(am__objects_7) $(am__objects_9) \
++	$(am__objects_11) $(am__objects_13)
++__LIBBUILD_DIR__libsysio_a_OBJECTS = \
++	$(am___LIBBUILD_DIR__libsysio_a_OBJECTS)
++
++DEFAULT_INCLUDES =  -I. -I$(srcdir)
++depcomp = $(SHELL) $(top_srcdir)/depcomp
++am__depfiles_maybe = depfiles
++ at AMDEP_TRUE@DEP_FILES = dev/stdfd/$(DEPDIR)/stdfd.Po \
++ at AMDEP_TRUE@	drivers/incore/$(DEPDIR)/fs_incore.Po \
++ at AMDEP_TRUE@	drivers/native/$(DEPDIR)/fs_native.Po \
++ at AMDEP_TRUE@	drivers/sockets/$(DEPDIR)/sockets.Po \
++ at AMDEP_TRUE@	drivers/yod/$(DEPDIR)/fs_yod.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/access.Po src/$(DEPDIR)/chdir.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/chmod.Po src/$(DEPDIR)/chown.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/dev.Po src/$(DEPDIR)/dup.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/fcntl.Po src/$(DEPDIR)/file.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/file_hack.Po src/$(DEPDIR)/fs.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/fsync.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/getdirentries.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/init.Po src/$(DEPDIR)/inode.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/ioctl.Po src/$(DEPDIR)/ioctx.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/iowait.Po src/$(DEPDIR)/link.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/lseek.Po src/$(DEPDIR)/mkdir.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/mknod.Po src/$(DEPDIR)/mount.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/namei.Po src/$(DEPDIR)/open.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/readdir.Po src/$(DEPDIR)/readdir64.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/readlink.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/reconcile.Po src/$(DEPDIR)/rename.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/rmdir.Po src/$(DEPDIR)/rw.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/stat.Po src/$(DEPDIR)/stat64.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/stddir.Po src/$(DEPDIR)/stdlib.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/symlink.Po src/$(DEPDIR)/truncate.Po \
++ at AMDEP_TRUE@	src/$(DEPDIR)/unlink.Po src/$(DEPDIR)/utime.Po
++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
++	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
++CCLD = $(CC)
++LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
++DIST_SOURCES = $(am____LIBBUILD_DIR__libsysio_a_SOURCES_DIST)
++DIST_COMMON = README $(srcdir)/Makefile.in $(srcdir)/configure \
++	$(top_srcdir)/Rules.make $(top_srcdir)/dev/stdfd/module.mk \
++	$(top_srcdir)/drivers/incore/module.mk \
++	$(top_srcdir)/drivers/native/module.mk \
++	$(top_srcdir)/drivers/sockets/module.mk \
++	$(top_srcdir)/drivers/yod/module.mk \
++	$(top_srcdir)/include/module.mk $(top_srcdir)/src/module.mk \
++	$(top_srcdir)/tests/module.mk AUTHORS COPYING ChangeLog INSTALL \
++	Makefile.am NEWS aclocal.m4 compile config.guess config.sub \
++	configure configure.in depcomp install-sh missing mkinstalldirs
++SOURCES = $(__LIBBUILD_DIR__libsysio_a_SOURCES)
++
+ all: all-am
+ 
+ .SUFFIXES:
+ .SUFFIXES: .c .o .obj
+-am--refresh:
+-	@:
+-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(top_srcdir)/src/module.mk $(top_srcdir)/include/module.mk $(top_srcdir)/tests/module.mk $(top_srcdir)/dev/stdfd/module.mk $(top_srcdir)/drivers/incore/module.mk $(top_srcdir)/drivers/native/module.mk $(top_srcdir)/drivers/yod/module.mk $(top_srcdir)/drivers/sockets/module.mk $(top_srcdir)/Rules.make $(am__configure_deps)
+-	@for dep in $?; do \
+-	  case '$(am__configure_deps)' in \
+-	    *$$dep*) \
+-	      echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \
+-	      cd $(srcdir) && $(AUTOMAKE) --gnu  \
+-		&& exit 0; \
+-	      exit 1;; \
+-	  esac; \
+-	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  Makefile'; \
++
++am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
++ configure.lineno
++$(srcdir)/Makefile.in:  Makefile.am $(top_srcdir)/src/module.mk $(top_srcdir)/include/module.mk $(top_srcdir)/tests/module.mk $(top_srcdir)/dev/stdfd/module.mk $(top_srcdir)/drivers/incore/module.mk $(top_srcdir)/drivers/native/module.mk $(top_srcdir)/drivers/yod/module.mk $(top_srcdir)/drivers/sockets/module.mk $(top_srcdir)/Rules.make $(top_srcdir)/configure.in $(ACLOCAL_M4)
+ 	cd $(top_srcdir) && \
+ 	  $(AUTOMAKE) --gnu  Makefile
+-.PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+-	@case '$?' in \
+-	  *config.status*) \
+-	    echo ' $(SHELL) ./config.status'; \
+-	    $(SHELL) ./config.status;; \
+-	  *) \
+-	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
+-	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
+-	esac;
++	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)
++$(srcdir)/configure:  $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
+ 	cd $(srcdir) && $(AUTOCONF)
+-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
++
++$(ACLOCAL_M4):  configure.in 
+ 	cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
++
++AR = ar
++libLIBRARIES_INSTALL = $(INSTALL_DATA)
+ install-libLIBRARIES: $(lib_LIBRARIES)
+ 	@$(NORMAL_INSTALL)
+-	test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
++	$(mkinstalldirs) $(DESTDIR)$(libdir)
+ 	@list='$(lib_LIBRARIES)'; for p in $$list; do \
+ 	  if test -f $$p; then \
+-	    f=$(am__strip_dir) \
+-	    echo " $(libLIBRARIES_INSTALL) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
+-	    $(libLIBRARIES_INSTALL) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
++	    f="`echo $$p | sed -e 's|^.*/||'`"; \
++	    echo " $(libLIBRARIES_INSTALL) $$p $(DESTDIR)$(libdir)/$$f"; \
++	    $(libLIBRARIES_INSTALL) $$p $(DESTDIR)$(libdir)/$$f; \
+ 	  else :; fi; \
+ 	done
+ 	@$(POST_INSTALL)
+ 	@list='$(lib_LIBRARIES)'; for p in $$list; do \
+ 	  if test -f $$p; then \
+-	    p=$(am__strip_dir) \
+-	    echo " $(RANLIB) '$(DESTDIR)$(libdir)/$$p'"; \
+-	    $(RANLIB) "$(DESTDIR)$(libdir)/$$p"; \
++	    p="`echo $$p | sed -e 's|^.*/||'`"; \
++	    echo " $(RANLIB) $(DESTDIR)$(libdir)/$$p"; \
++	    $(RANLIB) $(DESTDIR)$(libdir)/$$p; \
+ 	  else :; fi; \
+ 	done
+ 
+ uninstall-libLIBRARIES:
+ 	@$(NORMAL_UNINSTALL)
+ 	@list='$(lib_LIBRARIES)'; for p in $$list; do \
+-	  p=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(libdir)/$$p'"; \
+-	  rm -f "$(DESTDIR)$(libdir)/$$p"; \
++	  p="`echo $$p | sed -e 's|^.*/||'`"; \
++	  echo " rm -f $(DESTDIR)$(libdir)/$$p"; \
++	  rm -f $(DESTDIR)$(libdir)/$$p; \
+ 	done
+ 
+ clean-libLIBRARIES:
+ 	-test -z "$(lib_LIBRARIES)" || rm -f $(lib_LIBRARIES)
+ src/$(am__dirstamp):
+-	@$(mkdir_p) src
++	@$(mkinstalldirs) src
+ 	@: > src/$(am__dirstamp)
+ src/$(DEPDIR)/$(am__dirstamp):
+-	@$(mkdir_p) src/$(DEPDIR)
++	@$(mkinstalldirs) src/$(DEPDIR)
+ 	@: > src/$(DEPDIR)/$(am__dirstamp)
+-src/access.$(OBJEXT): src/$(am__dirstamp) \
+-	src/$(DEPDIR)/$(am__dirstamp)
++src/access.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
+ 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 @@
+ 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)
+-src/iowait.$(OBJEXT): src/$(am__dirstamp) \
+-	src/$(DEPDIR)/$(am__dirstamp)
++src/iowait.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
+ 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 @@
+ src/rw.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
+ src/reconcile.$(OBJEXT): src/$(am__dirstamp) \
+ 	src/$(DEPDIR)/$(am__dirstamp)
+-src/rename.$(OBJEXT): src/$(am__dirstamp) \
+-	src/$(DEPDIR)/$(am__dirstamp)
++src/rename.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
+ src/rmdir.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
+-src/stat64.$(OBJEXT): src/$(am__dirstamp) \
+-	src/$(DEPDIR)/$(am__dirstamp)
++src/stat64.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
+ src/stat.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
+-src/stddir.$(OBJEXT): src/$(am__dirstamp) \
+-	src/$(DEPDIR)/$(am__dirstamp)
+-src/readdir.$(OBJEXT): src/$(am__dirstamp) \
+-	src/$(DEPDIR)/$(am__dirstamp)
++src/stddir.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
++src/readdir.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
+ src/readdir64.$(OBJEXT): src/$(am__dirstamp) \
+ 	src/$(DEPDIR)/$(am__dirstamp)
+-src/symlink.$(OBJEXT): src/$(am__dirstamp) \
+-	src/$(DEPDIR)/$(am__dirstamp)
++src/symlink.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
+ src/readlink.$(OBJEXT): src/$(am__dirstamp) \
+ 	src/$(DEPDIR)/$(am__dirstamp)
+ src/truncate.$(OBJEXT): src/$(am__dirstamp) \
+ 	src/$(DEPDIR)/$(am__dirstamp)
+-src/unlink.$(OBJEXT): src/$(am__dirstamp) \
+-	src/$(DEPDIR)/$(am__dirstamp)
++src/unlink.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
+ src/utime.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
+-src/file.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
+ src/file_hack.$(OBJEXT): src/$(am__dirstamp) \
+ 	src/$(DEPDIR)/$(am__dirstamp)
+-src/stdlib.$(OBJEXT): src/$(am__dirstamp) \
+-	src/$(DEPDIR)/$(am__dirstamp)
++src/file.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
++src/stdlib.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
+ dev/stdfd/$(am__dirstamp):
+-	@$(mkdir_p) dev/stdfd
++	@$(mkinstalldirs) dev/stdfd
+ 	@: > dev/stdfd/$(am__dirstamp)
+ dev/stdfd/$(DEPDIR)/$(am__dirstamp):
+-	@$(mkdir_p) dev/stdfd/$(DEPDIR)
++	@$(mkinstalldirs) dev/stdfd/$(DEPDIR)
+ 	@: > dev/stdfd/$(DEPDIR)/$(am__dirstamp)
+ dev/stdfd/stdfd.$(OBJEXT): dev/stdfd/$(am__dirstamp) \
+ 	dev/stdfd/$(DEPDIR)/$(am__dirstamp)
+ drivers/incore/$(am__dirstamp):
+-	@$(mkdir_p) drivers/incore
++	@$(mkinstalldirs) drivers/incore
+ 	@: > drivers/incore/$(am__dirstamp)
+ drivers/incore/$(DEPDIR)/$(am__dirstamp):
+-	@$(mkdir_p) drivers/incore/$(DEPDIR)
++	@$(mkinstalldirs) drivers/incore/$(DEPDIR)
+ 	@: > drivers/incore/$(DEPDIR)/$(am__dirstamp)
+ drivers/incore/fs_incore.$(OBJEXT): drivers/incore/$(am__dirstamp) \
+ 	drivers/incore/$(DEPDIR)/$(am__dirstamp)
+ drivers/sockets/$(am__dirstamp):
+-	@$(mkdir_p) drivers/sockets
++	@$(mkinstalldirs) drivers/sockets
+ 	@: > drivers/sockets/$(am__dirstamp)
+ drivers/sockets/$(DEPDIR)/$(am__dirstamp):
+-	@$(mkdir_p) drivers/sockets/$(DEPDIR)
++	@$(mkinstalldirs) drivers/sockets/$(DEPDIR)
+ 	@: > drivers/sockets/$(DEPDIR)/$(am__dirstamp)
+ drivers/sockets/sockets.$(OBJEXT): drivers/sockets/$(am__dirstamp) \
+ 	drivers/sockets/$(DEPDIR)/$(am__dirstamp)
+ drivers/native/$(am__dirstamp):
+-	@$(mkdir_p) drivers/native
++	@$(mkinstalldirs) drivers/native
+ 	@: > drivers/native/$(am__dirstamp)
+ drivers/native/$(DEPDIR)/$(am__dirstamp):
+-	@$(mkdir_p) drivers/native/$(DEPDIR)
++	@$(mkinstalldirs) drivers/native/$(DEPDIR)
+ 	@: > drivers/native/$(DEPDIR)/$(am__dirstamp)
+ drivers/native/fs_native.$(OBJEXT): drivers/native/$(am__dirstamp) \
+ 	drivers/native/$(DEPDIR)/$(am__dirstamp)
+ drivers/yod/$(am__dirstamp):
+-	@$(mkdir_p) drivers/yod
++	@$(mkinstalldirs) drivers/yod
+ 	@: > drivers/yod/$(am__dirstamp)
+ drivers/yod/$(DEPDIR)/$(am__dirstamp):
+-	@$(mkdir_p) drivers/yod/$(DEPDIR)
++	@$(mkinstalldirs) drivers/yod/$(DEPDIR)
+ 	@: > drivers/yod/$(DEPDIR)/$(am__dirstamp)
+ drivers/yod/fs_yod.$(OBJEXT): drivers/yod/$(am__dirstamp) \
+ 	drivers/yod/$(DEPDIR)/$(am__dirstamp)
+ ${LIBBUILD_DIR}/$(am__dirstamp):
+-	@$(mkdir_p) ${LIBBUILD_DIR}
++	@$(mkinstalldirs) ${LIBBUILD_DIR}
+ 	@: > ${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 @@
+ 	$(RANLIB) ${LIBBUILD_DIR}/libsysio.a
+ 
+ mostlyclean-compile:
+-	-rm -f *.$(OBJEXT)
++	-rm -f *.$(OBJEXT) core *.core
+ 	-rm -f dev/stdfd/stdfd.$(OBJEXT)
+ 	-rm -f drivers/incore/fs_incore.$(OBJEXT)
+ 	-rm -f drivers/native/fs_native.$(OBJEXT)
+@@ -604,22 +610,1004 @@
+ @AMDEP_TRUE@@am__include@ @am__quote at src/$(DEPDIR)/utime.Po at am__quote@
+ 
+ .c.o:
+- at am__fastdepCC_TRUE@	depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`; \
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$$depbase.Tpo" -c -o $@ $<; \
+- at am__fastdepCC_TRUE@	then mv -f "$$depbase.Tpo" "$$depbase.Po"; else rm -f "$$depbase.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c -o $@ $<
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(COMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
+ 
+ .c.obj:
+- at am__fastdepCC_TRUE@	depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`; \
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$$depbase.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
+- at am__fastdepCC_TRUE@	then mv -f "$$depbase.Tpo" "$$depbase.Po"; else rm -f "$$depbase.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(COMPILE) -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`
++
++src/access.o: src/access.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/access.o -MD -MP -MF "src/$(DEPDIR)/access.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/access.o `test -f 'src/access.c' || echo '$(srcdir)/'`src/access.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/access.Tpo" "src/$(DEPDIR)/access.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/access.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/access.c' object='src/access.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/access.Po' tmpdepfile='src/$(DEPDIR)/access.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/access.o `test -f 'src/access.c' || echo '$(srcdir)/'`src/access.c
++
++src/access.obj: src/access.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/access.obj -MD -MP -MF "src/$(DEPDIR)/access.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/access.obj `if test -f 'src/access.c'; then $(CYGPATH_W) 'src/access.c'; else $(CYGPATH_W) '$(srcdir)/src/access.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/access.Tpo" "src/$(DEPDIR)/access.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/access.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/access.c' object='src/access.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/access.Po' tmpdepfile='src/$(DEPDIR)/access.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/access.obj `if test -f 'src/access.c'; then $(CYGPATH_W) 'src/access.c'; else $(CYGPATH_W) '$(srcdir)/src/access.c'; fi`
++
++src/chdir.o: src/chdir.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/chdir.o -MD -MP -MF "src/$(DEPDIR)/chdir.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/chdir.o `test -f 'src/chdir.c' || echo '$(srcdir)/'`src/chdir.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/chdir.Tpo" "src/$(DEPDIR)/chdir.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/chdir.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/chdir.c' object='src/chdir.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/chdir.Po' tmpdepfile='src/$(DEPDIR)/chdir.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/chdir.o `test -f 'src/chdir.c' || echo '$(srcdir)/'`src/chdir.c
++
++src/chdir.obj: src/chdir.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/chdir.obj -MD -MP -MF "src/$(DEPDIR)/chdir.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/chdir.obj `if test -f 'src/chdir.c'; then $(CYGPATH_W) 'src/chdir.c'; else $(CYGPATH_W) '$(srcdir)/src/chdir.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/chdir.Tpo" "src/$(DEPDIR)/chdir.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/chdir.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/chdir.c' object='src/chdir.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/chdir.Po' tmpdepfile='src/$(DEPDIR)/chdir.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/chdir.obj `if test -f 'src/chdir.c'; then $(CYGPATH_W) 'src/chdir.c'; else $(CYGPATH_W) '$(srcdir)/src/chdir.c'; fi`
++
++src/chmod.o: src/chmod.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/chmod.o -MD -MP -MF "src/$(DEPDIR)/chmod.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/chmod.o `test -f 'src/chmod.c' || echo '$(srcdir)/'`src/chmod.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/chmod.Tpo" "src/$(DEPDIR)/chmod.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/chmod.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/chmod.c' object='src/chmod.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/chmod.Po' tmpdepfile='src/$(DEPDIR)/chmod.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/chmod.o `test -f 'src/chmod.c' || echo '$(srcdir)/'`src/chmod.c
++
++src/chmod.obj: src/chmod.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/chmod.obj -MD -MP -MF "src/$(DEPDIR)/chmod.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/chmod.obj `if test -f 'src/chmod.c'; then $(CYGPATH_W) 'src/chmod.c'; else $(CYGPATH_W) '$(srcdir)/src/chmod.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/chmod.Tpo" "src/$(DEPDIR)/chmod.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/chmod.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/chmod.c' object='src/chmod.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/chmod.Po' tmpdepfile='src/$(DEPDIR)/chmod.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/chmod.obj `if test -f 'src/chmod.c'; then $(CYGPATH_W) 'src/chmod.c'; else $(CYGPATH_W) '$(srcdir)/src/chmod.c'; fi`
++
++src/chown.o: src/chown.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/chown.o -MD -MP -MF "src/$(DEPDIR)/chown.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/chown.o `test -f 'src/chown.c' || echo '$(srcdir)/'`src/chown.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/chown.Tpo" "src/$(DEPDIR)/chown.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/chown.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/chown.c' object='src/chown.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/chown.Po' tmpdepfile='src/$(DEPDIR)/chown.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/chown.o `test -f 'src/chown.c' || echo '$(srcdir)/'`src/chown.c
++
++src/chown.obj: src/chown.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/chown.obj -MD -MP -MF "src/$(DEPDIR)/chown.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/chown.obj `if test -f 'src/chown.c'; then $(CYGPATH_W) 'src/chown.c'; else $(CYGPATH_W) '$(srcdir)/src/chown.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/chown.Tpo" "src/$(DEPDIR)/chown.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/chown.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/chown.c' object='src/chown.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/chown.Po' tmpdepfile='src/$(DEPDIR)/chown.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/chown.obj `if test -f 'src/chown.c'; then $(CYGPATH_W) 'src/chown.c'; else $(CYGPATH_W) '$(srcdir)/src/chown.c'; fi`
++
++src/dev.o: src/dev.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/dev.o -MD -MP -MF "src/$(DEPDIR)/dev.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/dev.o `test -f 'src/dev.c' || echo '$(srcdir)/'`src/dev.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/dev.Tpo" "src/$(DEPDIR)/dev.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/dev.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/dev.c' object='src/dev.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/dev.Po' tmpdepfile='src/$(DEPDIR)/dev.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/dev.o `test -f 'src/dev.c' || echo '$(srcdir)/'`src/dev.c
++
++src/dev.obj: src/dev.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/dev.obj -MD -MP -MF "src/$(DEPDIR)/dev.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/dev.obj `if test -f 'src/dev.c'; then $(CYGPATH_W) 'src/dev.c'; else $(CYGPATH_W) '$(srcdir)/src/dev.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/dev.Tpo" "src/$(DEPDIR)/dev.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/dev.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/dev.c' object='src/dev.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/dev.Po' tmpdepfile='src/$(DEPDIR)/dev.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/dev.obj `if test -f 'src/dev.c'; then $(CYGPATH_W) 'src/dev.c'; else $(CYGPATH_W) '$(srcdir)/src/dev.c'; fi`
++
++src/dup.o: src/dup.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/dup.o -MD -MP -MF "src/$(DEPDIR)/dup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/dup.o `test -f 'src/dup.c' || echo '$(srcdir)/'`src/dup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/dup.Tpo" "src/$(DEPDIR)/dup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/dup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/dup.c' object='src/dup.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/dup.Po' tmpdepfile='src/$(DEPDIR)/dup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/dup.o `test -f 'src/dup.c' || echo '$(srcdir)/'`src/dup.c
++
++src/dup.obj: src/dup.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/dup.obj -MD -MP -MF "src/$(DEPDIR)/dup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/dup.obj `if test -f 'src/dup.c'; then $(CYGPATH_W) 'src/dup.c'; else $(CYGPATH_W) '$(srcdir)/src/dup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/dup.Tpo" "src/$(DEPDIR)/dup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/dup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/dup.c' object='src/dup.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/dup.Po' tmpdepfile='src/$(DEPDIR)/dup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/dup.obj `if test -f 'src/dup.c'; then $(CYGPATH_W) 'src/dup.c'; else $(CYGPATH_W) '$(srcdir)/src/dup.c'; fi`
++
++src/fcntl.o: src/fcntl.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/fcntl.o -MD -MP -MF "src/$(DEPDIR)/fcntl.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/fcntl.o `test -f 'src/fcntl.c' || echo '$(srcdir)/'`src/fcntl.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/fcntl.Tpo" "src/$(DEPDIR)/fcntl.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/fcntl.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/fcntl.c' object='src/fcntl.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/fcntl.Po' tmpdepfile='src/$(DEPDIR)/fcntl.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/fcntl.o `test -f 'src/fcntl.c' || echo '$(srcdir)/'`src/fcntl.c
++
++src/fcntl.obj: src/fcntl.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/fcntl.obj -MD -MP -MF "src/$(DEPDIR)/fcntl.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/fcntl.obj `if test -f 'src/fcntl.c'; then $(CYGPATH_W) 'src/fcntl.c'; else $(CYGPATH_W) '$(srcdir)/src/fcntl.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/fcntl.Tpo" "src/$(DEPDIR)/fcntl.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/fcntl.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/fcntl.c' object='src/fcntl.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/fcntl.Po' tmpdepfile='src/$(DEPDIR)/fcntl.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/fcntl.obj `if test -f 'src/fcntl.c'; then $(CYGPATH_W) 'src/fcntl.c'; else $(CYGPATH_W) '$(srcdir)/src/fcntl.c'; fi`
++
++src/fs.o: src/fs.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/fs.o -MD -MP -MF "src/$(DEPDIR)/fs.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/fs.o `test -f 'src/fs.c' || echo '$(srcdir)/'`src/fs.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/fs.Tpo" "src/$(DEPDIR)/fs.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/fs.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/fs.c' object='src/fs.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/fs.Po' tmpdepfile='src/$(DEPDIR)/fs.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/fs.o `test -f 'src/fs.c' || echo '$(srcdir)/'`src/fs.c
++
++src/fs.obj: src/fs.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/fs.obj -MD -MP -MF "src/$(DEPDIR)/fs.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/fs.obj `if test -f 'src/fs.c'; then $(CYGPATH_W) 'src/fs.c'; else $(CYGPATH_W) '$(srcdir)/src/fs.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/fs.Tpo" "src/$(DEPDIR)/fs.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/fs.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/fs.c' object='src/fs.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/fs.Po' tmpdepfile='src/$(DEPDIR)/fs.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/fs.obj `if test -f 'src/fs.c'; then $(CYGPATH_W) 'src/fs.c'; else $(CYGPATH_W) '$(srcdir)/src/fs.c'; fi`
++
++src/fsync.o: src/fsync.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/fsync.o -MD -MP -MF "src/$(DEPDIR)/fsync.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/fsync.o `test -f 'src/fsync.c' || echo '$(srcdir)/'`src/fsync.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/fsync.Tpo" "src/$(DEPDIR)/fsync.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/fsync.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/fsync.c' object='src/fsync.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/fsync.Po' tmpdepfile='src/$(DEPDIR)/fsync.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/fsync.o `test -f 'src/fsync.c' || echo '$(srcdir)/'`src/fsync.c
++
++src/fsync.obj: src/fsync.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/fsync.obj -MD -MP -MF "src/$(DEPDIR)/fsync.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/fsync.obj `if test -f 'src/fsync.c'; then $(CYGPATH_W) 'src/fsync.c'; else $(CYGPATH_W) '$(srcdir)/src/fsync.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/fsync.Tpo" "src/$(DEPDIR)/fsync.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/fsync.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/fsync.c' object='src/fsync.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/fsync.Po' tmpdepfile='src/$(DEPDIR)/fsync.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/fsync.obj `if test -f 'src/fsync.c'; then $(CYGPATH_W) 'src/fsync.c'; else $(CYGPATH_W) '$(srcdir)/src/fsync.c'; fi`
++
++src/getdirentries.o: src/getdirentries.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/getdirentries.o -MD -MP -MF "src/$(DEPDIR)/getdirentries.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/getdirentries.o `test -f 'src/getdirentries.c' || echo '$(srcdir)/'`src/getdirentries.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/getdirentries.Tpo" "src/$(DEPDIR)/getdirentries.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/getdirentries.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/getdirentries.c' object='src/getdirentries.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/getdirentries.Po' tmpdepfile='src/$(DEPDIR)/getdirentries.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/getdirentries.o `test -f 'src/getdirentries.c' || echo '$(srcdir)/'`src/getdirentries.c
++
++src/getdirentries.obj: src/getdirentries.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/getdirentries.obj -MD -MP -MF "src/$(DEPDIR)/getdirentries.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/getdirentries.obj `if test -f 'src/getdirentries.c'; then $(CYGPATH_W) 'src/getdirentries.c'; else $(CYGPATH_W) '$(srcdir)/src/getdirentries.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/getdirentries.Tpo" "src/$(DEPDIR)/getdirentries.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/getdirentries.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/getdirentries.c' object='src/getdirentries.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/getdirentries.Po' tmpdepfile='src/$(DEPDIR)/getdirentries.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/getdirentries.obj `if test -f 'src/getdirentries.c'; then $(CYGPATH_W) 'src/getdirentries.c'; else $(CYGPATH_W) '$(srcdir)/src/getdirentries.c'; fi`
++
++src/init.o: src/init.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/init.o -MD -MP -MF "src/$(DEPDIR)/init.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/init.o `test -f 'src/init.c' || echo '$(srcdir)/'`src/init.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/init.Tpo" "src/$(DEPDIR)/init.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/init.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/init.c' object='src/init.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/init.Po' tmpdepfile='src/$(DEPDIR)/init.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/init.o `test -f 'src/init.c' || echo '$(srcdir)/'`src/init.c
++
++src/init.obj: src/init.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/init.obj -MD -MP -MF "src/$(DEPDIR)/init.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/init.obj `if test -f 'src/init.c'; then $(CYGPATH_W) 'src/init.c'; else $(CYGPATH_W) '$(srcdir)/src/init.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/init.Tpo" "src/$(DEPDIR)/init.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/init.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/init.c' object='src/init.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/init.Po' tmpdepfile='src/$(DEPDIR)/init.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/init.obj `if test -f 'src/init.c'; then $(CYGPATH_W) 'src/init.c'; else $(CYGPATH_W) '$(srcdir)/src/init.c'; fi`
++
++src/inode.o: src/inode.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/inode.o -MD -MP -MF "src/$(DEPDIR)/inode.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/inode.o `test -f 'src/inode.c' || echo '$(srcdir)/'`src/inode.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/inode.Tpo" "src/$(DEPDIR)/inode.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/inode.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/inode.c' object='src/inode.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/inode.Po' tmpdepfile='src/$(DEPDIR)/inode.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/inode.o `test -f 'src/inode.c' || echo '$(srcdir)/'`src/inode.c
++
++src/inode.obj: src/inode.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/inode.obj -MD -MP -MF "src/$(DEPDIR)/inode.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/inode.obj `if test -f 'src/inode.c'; then $(CYGPATH_W) 'src/inode.c'; else $(CYGPATH_W) '$(srcdir)/src/inode.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/inode.Tpo" "src/$(DEPDIR)/inode.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/inode.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/inode.c' object='src/inode.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/inode.Po' tmpdepfile='src/$(DEPDIR)/inode.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/inode.obj `if test -f 'src/inode.c'; then $(CYGPATH_W) 'src/inode.c'; else $(CYGPATH_W) '$(srcdir)/src/inode.c'; fi`
++
++src/ioctl.o: src/ioctl.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/ioctl.o -MD -MP -MF "src/$(DEPDIR)/ioctl.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/ioctl.o `test -f 'src/ioctl.c' || echo '$(srcdir)/'`src/ioctl.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/ioctl.Tpo" "src/$(DEPDIR)/ioctl.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/ioctl.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/ioctl.c' object='src/ioctl.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/ioctl.Po' tmpdepfile='src/$(DEPDIR)/ioctl.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/ioctl.o `test -f 'src/ioctl.c' || echo '$(srcdir)/'`src/ioctl.c
++
++src/ioctl.obj: src/ioctl.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/ioctl.obj -MD -MP -MF "src/$(DEPDIR)/ioctl.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/ioctl.obj `if test -f 'src/ioctl.c'; then $(CYGPATH_W) 'src/ioctl.c'; else $(CYGPATH_W) '$(srcdir)/src/ioctl.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/ioctl.Tpo" "src/$(DEPDIR)/ioctl.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/ioctl.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/ioctl.c' object='src/ioctl.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/ioctl.Po' tmpdepfile='src/$(DEPDIR)/ioctl.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/ioctl.obj `if test -f 'src/ioctl.c'; then $(CYGPATH_W) 'src/ioctl.c'; else $(CYGPATH_W) '$(srcdir)/src/ioctl.c'; fi`
++
++src/ioctx.o: src/ioctx.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/ioctx.o -MD -MP -MF "src/$(DEPDIR)/ioctx.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/ioctx.o `test -f 'src/ioctx.c' || echo '$(srcdir)/'`src/ioctx.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/ioctx.Tpo" "src/$(DEPDIR)/ioctx.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/ioctx.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/ioctx.c' object='src/ioctx.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/ioctx.Po' tmpdepfile='src/$(DEPDIR)/ioctx.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/ioctx.o `test -f 'src/ioctx.c' || echo '$(srcdir)/'`src/ioctx.c
++
++src/ioctx.obj: src/ioctx.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/ioctx.obj -MD -MP -MF "src/$(DEPDIR)/ioctx.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/ioctx.obj `if test -f 'src/ioctx.c'; then $(CYGPATH_W) 'src/ioctx.c'; else $(CYGPATH_W) '$(srcdir)/src/ioctx.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/ioctx.Tpo" "src/$(DEPDIR)/ioctx.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/ioctx.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/ioctx.c' object='src/ioctx.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/ioctx.Po' tmpdepfile='src/$(DEPDIR)/ioctx.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/ioctx.obj `if test -f 'src/ioctx.c'; then $(CYGPATH_W) 'src/ioctx.c'; else $(CYGPATH_W) '$(srcdir)/src/ioctx.c'; fi`
++
++src/iowait.o: src/iowait.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/iowait.o -MD -MP -MF "src/$(DEPDIR)/iowait.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/iowait.o `test -f 'src/iowait.c' || echo '$(srcdir)/'`src/iowait.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/iowait.Tpo" "src/$(DEPDIR)/iowait.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/iowait.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/iowait.c' object='src/iowait.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/iowait.Po' tmpdepfile='src/$(DEPDIR)/iowait.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/iowait.o `test -f 'src/iowait.c' || echo '$(srcdir)/'`src/iowait.c
++
++src/iowait.obj: src/iowait.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/iowait.obj -MD -MP -MF "src/$(DEPDIR)/iowait.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/iowait.obj `if test -f 'src/iowait.c'; then $(CYGPATH_W) 'src/iowait.c'; else $(CYGPATH_W) '$(srcdir)/src/iowait.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/iowait.Tpo" "src/$(DEPDIR)/iowait.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/iowait.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/iowait.c' object='src/iowait.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/iowait.Po' tmpdepfile='src/$(DEPDIR)/iowait.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/iowait.obj `if test -f 'src/iowait.c'; then $(CYGPATH_W) 'src/iowait.c'; else $(CYGPATH_W) '$(srcdir)/src/iowait.c'; fi`
++
++src/link.o: src/link.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/link.o -MD -MP -MF "src/$(DEPDIR)/link.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/link.o `test -f 'src/link.c' || echo '$(srcdir)/'`src/link.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/link.Tpo" "src/$(DEPDIR)/link.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/link.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/link.c' object='src/link.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/link.Po' tmpdepfile='src/$(DEPDIR)/link.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/link.o `test -f 'src/link.c' || echo '$(srcdir)/'`src/link.c
++
++src/link.obj: src/link.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/link.obj -MD -MP -MF "src/$(DEPDIR)/link.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/link.obj `if test -f 'src/link.c'; then $(CYGPATH_W) 'src/link.c'; else $(CYGPATH_W) '$(srcdir)/src/link.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/link.Tpo" "src/$(DEPDIR)/link.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/link.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/link.c' object='src/link.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/link.Po' tmpdepfile='src/$(DEPDIR)/link.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/link.obj `if test -f 'src/link.c'; then $(CYGPATH_W) 'src/link.c'; else $(CYGPATH_W) '$(srcdir)/src/link.c'; fi`
++
++src/lseek.o: src/lseek.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/lseek.o -MD -MP -MF "src/$(DEPDIR)/lseek.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/lseek.o `test -f 'src/lseek.c' || echo '$(srcdir)/'`src/lseek.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/lseek.Tpo" "src/$(DEPDIR)/lseek.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/lseek.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/lseek.c' object='src/lseek.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/lseek.Po' tmpdepfile='src/$(DEPDIR)/lseek.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/lseek.o `test -f 'src/lseek.c' || echo '$(srcdir)/'`src/lseek.c
++
++src/lseek.obj: src/lseek.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/lseek.obj -MD -MP -MF "src/$(DEPDIR)/lseek.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/lseek.obj `if test -f 'src/lseek.c'; then $(CYGPATH_W) 'src/lseek.c'; else $(CYGPATH_W) '$(srcdir)/src/lseek.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/lseek.Tpo" "src/$(DEPDIR)/lseek.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/lseek.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/lseek.c' object='src/lseek.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/lseek.Po' tmpdepfile='src/$(DEPDIR)/lseek.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/lseek.obj `if test -f 'src/lseek.c'; then $(CYGPATH_W) 'src/lseek.c'; else $(CYGPATH_W) '$(srcdir)/src/lseek.c'; fi`
++
++src/mkdir.o: src/mkdir.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/mkdir.o -MD -MP -MF "src/$(DEPDIR)/mkdir.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/mkdir.o `test -f 'src/mkdir.c' || echo '$(srcdir)/'`src/mkdir.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/mkdir.Tpo" "src/$(DEPDIR)/mkdir.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/mkdir.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/mkdir.c' object='src/mkdir.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/mkdir.Po' tmpdepfile='src/$(DEPDIR)/mkdir.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/mkdir.o `test -f 'src/mkdir.c' || echo '$(srcdir)/'`src/mkdir.c
++
++src/mkdir.obj: src/mkdir.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/mkdir.obj -MD -MP -MF "src/$(DEPDIR)/mkdir.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/mkdir.obj `if test -f 'src/mkdir.c'; then $(CYGPATH_W) 'src/mkdir.c'; else $(CYGPATH_W) '$(srcdir)/src/mkdir.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/mkdir.Tpo" "src/$(DEPDIR)/mkdir.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/mkdir.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/mkdir.c' object='src/mkdir.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/mkdir.Po' tmpdepfile='src/$(DEPDIR)/mkdir.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/mkdir.obj `if test -f 'src/mkdir.c'; then $(CYGPATH_W) 'src/mkdir.c'; else $(CYGPATH_W) '$(srcdir)/src/mkdir.c'; fi`
++
++src/mknod.o: src/mknod.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/mknod.o -MD -MP -MF "src/$(DEPDIR)/mknod.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/mknod.o `test -f 'src/mknod.c' || echo '$(srcdir)/'`src/mknod.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/mknod.Tpo" "src/$(DEPDIR)/mknod.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/mknod.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/mknod.c' object='src/mknod.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/mknod.Po' tmpdepfile='src/$(DEPDIR)/mknod.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/mknod.o `test -f 'src/mknod.c' || echo '$(srcdir)/'`src/mknod.c
++
++src/mknod.obj: src/mknod.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/mknod.obj -MD -MP -MF "src/$(DEPDIR)/mknod.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/mknod.obj `if test -f 'src/mknod.c'; then $(CYGPATH_W) 'src/mknod.c'; else $(CYGPATH_W) '$(srcdir)/src/mknod.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/mknod.Tpo" "src/$(DEPDIR)/mknod.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/mknod.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/mknod.c' object='src/mknod.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/mknod.Po' tmpdepfile='src/$(DEPDIR)/mknod.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/mknod.obj `if test -f 'src/mknod.c'; then $(CYGPATH_W) 'src/mknod.c'; else $(CYGPATH_W) '$(srcdir)/src/mknod.c'; fi`
++
++src/mount.o: src/mount.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/mount.o -MD -MP -MF "src/$(DEPDIR)/mount.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/mount.o `test -f 'src/mount.c' || echo '$(srcdir)/'`src/mount.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/mount.Tpo" "src/$(DEPDIR)/mount.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/mount.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/mount.c' object='src/mount.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/mount.Po' tmpdepfile='src/$(DEPDIR)/mount.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/mount.o `test -f 'src/mount.c' || echo '$(srcdir)/'`src/mount.c
++
++src/mount.obj: src/mount.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/mount.obj -MD -MP -MF "src/$(DEPDIR)/mount.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/mount.obj `if test -f 'src/mount.c'; then $(CYGPATH_W) 'src/mount.c'; else $(CYGPATH_W) '$(srcdir)/src/mount.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/mount.Tpo" "src/$(DEPDIR)/mount.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/mount.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/mount.c' object='src/mount.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/mount.Po' tmpdepfile='src/$(DEPDIR)/mount.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/mount.obj `if test -f 'src/mount.c'; then $(CYGPATH_W) 'src/mount.c'; else $(CYGPATH_W) '$(srcdir)/src/mount.c'; fi`
++
++src/namei.o: src/namei.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/namei.o -MD -MP -MF "src/$(DEPDIR)/namei.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/namei.o `test -f 'src/namei.c' || echo '$(srcdir)/'`src/namei.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/namei.Tpo" "src/$(DEPDIR)/namei.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/namei.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/namei.c' object='src/namei.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/namei.Po' tmpdepfile='src/$(DEPDIR)/namei.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/namei.o `test -f 'src/namei.c' || echo '$(srcdir)/'`src/namei.c
++
++src/namei.obj: src/namei.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/namei.obj -MD -MP -MF "src/$(DEPDIR)/namei.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/namei.obj `if test -f 'src/namei.c'; then $(CYGPATH_W) 'src/namei.c'; else $(CYGPATH_W) '$(srcdir)/src/namei.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/namei.Tpo" "src/$(DEPDIR)/namei.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/namei.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/namei.c' object='src/namei.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/namei.Po' tmpdepfile='src/$(DEPDIR)/namei.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/namei.obj `if test -f 'src/namei.c'; then $(CYGPATH_W) 'src/namei.c'; else $(CYGPATH_W) '$(srcdir)/src/namei.c'; fi`
++
++src/open.o: src/open.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/open.o -MD -MP -MF "src/$(DEPDIR)/open.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/open.o `test -f 'src/open.c' || echo '$(srcdir)/'`src/open.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/open.Tpo" "src/$(DEPDIR)/open.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/open.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/open.c' object='src/open.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/open.Po' tmpdepfile='src/$(DEPDIR)/open.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/open.o `test -f 'src/open.c' || echo '$(srcdir)/'`src/open.c
++
++src/open.obj: src/open.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/open.obj -MD -MP -MF "src/$(DEPDIR)/open.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/open.obj `if test -f 'src/open.c'; then $(CYGPATH_W) 'src/open.c'; else $(CYGPATH_W) '$(srcdir)/src/open.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/open.Tpo" "src/$(DEPDIR)/open.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/open.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/open.c' object='src/open.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/open.Po' tmpdepfile='src/$(DEPDIR)/open.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/open.obj `if test -f 'src/open.c'; then $(CYGPATH_W) 'src/open.c'; else $(CYGPATH_W) '$(srcdir)/src/open.c'; fi`
++
++src/rw.o: src/rw.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/rw.o -MD -MP -MF "src/$(DEPDIR)/rw.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/rw.o `test -f 'src/rw.c' || echo '$(srcdir)/'`src/rw.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/rw.Tpo" "src/$(DEPDIR)/rw.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/rw.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/rw.c' object='src/rw.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/rw.Po' tmpdepfile='src/$(DEPDIR)/rw.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/rw.o `test -f 'src/rw.c' || echo '$(srcdir)/'`src/rw.c
++
++src/rw.obj: src/rw.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/rw.obj -MD -MP -MF "src/$(DEPDIR)/rw.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/rw.obj `if test -f 'src/rw.c'; then $(CYGPATH_W) 'src/rw.c'; else $(CYGPATH_W) '$(srcdir)/src/rw.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/rw.Tpo" "src/$(DEPDIR)/rw.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/rw.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/rw.c' object='src/rw.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/rw.Po' tmpdepfile='src/$(DEPDIR)/rw.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/rw.obj `if test -f 'src/rw.c'; then $(CYGPATH_W) 'src/rw.c'; else $(CYGPATH_W) '$(srcdir)/src/rw.c'; fi`
++
++src/reconcile.o: src/reconcile.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/reconcile.o -MD -MP -MF "src/$(DEPDIR)/reconcile.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/reconcile.o `test -f 'src/reconcile.c' || echo '$(srcdir)/'`src/reconcile.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/reconcile.Tpo" "src/$(DEPDIR)/reconcile.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/reconcile.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/reconcile.c' object='src/reconcile.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/reconcile.Po' tmpdepfile='src/$(DEPDIR)/reconcile.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/reconcile.o `test -f 'src/reconcile.c' || echo '$(srcdir)/'`src/reconcile.c
++
++src/reconcile.obj: src/reconcile.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/reconcile.obj -MD -MP -MF "src/$(DEPDIR)/reconcile.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/reconcile.obj `if test -f 'src/reconcile.c'; then $(CYGPATH_W) 'src/reconcile.c'; else $(CYGPATH_W) '$(srcdir)/src/reconcile.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/reconcile.Tpo" "src/$(DEPDIR)/reconcile.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/reconcile.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/reconcile.c' object='src/reconcile.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/reconcile.Po' tmpdepfile='src/$(DEPDIR)/reconcile.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/reconcile.obj `if test -f 'src/reconcile.c'; then $(CYGPATH_W) 'src/reconcile.c'; else $(CYGPATH_W) '$(srcdir)/src/reconcile.c'; fi`
++
++src/rename.o: src/rename.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/rename.o -MD -MP -MF "src/$(DEPDIR)/rename.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/rename.o `test -f 'src/rename.c' || echo '$(srcdir)/'`src/rename.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/rename.Tpo" "src/$(DEPDIR)/rename.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/rename.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/rename.c' object='src/rename.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/rename.Po' tmpdepfile='src/$(DEPDIR)/rename.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/rename.o `test -f 'src/rename.c' || echo '$(srcdir)/'`src/rename.c
++
++src/rename.obj: src/rename.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/rename.obj -MD -MP -MF "src/$(DEPDIR)/rename.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/rename.obj `if test -f 'src/rename.c'; then $(CYGPATH_W) 'src/rename.c'; else $(CYGPATH_W) '$(srcdir)/src/rename.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/rename.Tpo" "src/$(DEPDIR)/rename.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/rename.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/rename.c' object='src/rename.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/rename.Po' tmpdepfile='src/$(DEPDIR)/rename.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/rename.obj `if test -f 'src/rename.c'; then $(CYGPATH_W) 'src/rename.c'; else $(CYGPATH_W) '$(srcdir)/src/rename.c'; fi`
++
++src/rmdir.o: src/rmdir.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/rmdir.o -MD -MP -MF "src/$(DEPDIR)/rmdir.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/rmdir.o `test -f 'src/rmdir.c' || echo '$(srcdir)/'`src/rmdir.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/rmdir.Tpo" "src/$(DEPDIR)/rmdir.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/rmdir.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/rmdir.c' object='src/rmdir.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/rmdir.Po' tmpdepfile='src/$(DEPDIR)/rmdir.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/rmdir.o `test -f 'src/rmdir.c' || echo '$(srcdir)/'`src/rmdir.c
++
++src/rmdir.obj: src/rmdir.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/rmdir.obj -MD -MP -MF "src/$(DEPDIR)/rmdir.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/rmdir.obj `if test -f 'src/rmdir.c'; then $(CYGPATH_W) 'src/rmdir.c'; else $(CYGPATH_W) '$(srcdir)/src/rmdir.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/rmdir.Tpo" "src/$(DEPDIR)/rmdir.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/rmdir.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/rmdir.c' object='src/rmdir.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/rmdir.Po' tmpdepfile='src/$(DEPDIR)/rmdir.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/rmdir.obj `if test -f 'src/rmdir.c'; then $(CYGPATH_W) 'src/rmdir.c'; else $(CYGPATH_W) '$(srcdir)/src/rmdir.c'; fi`
++
++src/stat64.o: src/stat64.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/stat64.o -MD -MP -MF "src/$(DEPDIR)/stat64.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/stat64.o `test -f 'src/stat64.c' || echo '$(srcdir)/'`src/stat64.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/stat64.Tpo" "src/$(DEPDIR)/stat64.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/stat64.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/stat64.c' object='src/stat64.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/stat64.Po' tmpdepfile='src/$(DEPDIR)/stat64.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/stat64.o `test -f 'src/stat64.c' || echo '$(srcdir)/'`src/stat64.c
++
++src/stat64.obj: src/stat64.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/stat64.obj -MD -MP -MF "src/$(DEPDIR)/stat64.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/stat64.obj `if test -f 'src/stat64.c'; then $(CYGPATH_W) 'src/stat64.c'; else $(CYGPATH_W) '$(srcdir)/src/stat64.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/stat64.Tpo" "src/$(DEPDIR)/stat64.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/stat64.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/stat64.c' object='src/stat64.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/stat64.Po' tmpdepfile='src/$(DEPDIR)/stat64.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/stat64.obj `if test -f 'src/stat64.c'; then $(CYGPATH_W) 'src/stat64.c'; else $(CYGPATH_W) '$(srcdir)/src/stat64.c'; fi`
++
++src/stat.o: src/stat.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/stat.o -MD -MP -MF "src/$(DEPDIR)/stat.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/stat.o `test -f 'src/stat.c' || echo '$(srcdir)/'`src/stat.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/stat.Tpo" "src/$(DEPDIR)/stat.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/stat.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/stat.c' object='src/stat.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/stat.Po' tmpdepfile='src/$(DEPDIR)/stat.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/stat.o `test -f 'src/stat.c' || echo '$(srcdir)/'`src/stat.c
++
++src/stat.obj: src/stat.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/stat.obj -MD -MP -MF "src/$(DEPDIR)/stat.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/stat.obj `if test -f 'src/stat.c'; then $(CYGPATH_W) 'src/stat.c'; else $(CYGPATH_W) '$(srcdir)/src/stat.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/stat.Tpo" "src/$(DEPDIR)/stat.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/stat.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/stat.c' object='src/stat.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/stat.Po' tmpdepfile='src/$(DEPDIR)/stat.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/stat.obj `if test -f 'src/stat.c'; then $(CYGPATH_W) 'src/stat.c'; else $(CYGPATH_W) '$(srcdir)/src/stat.c'; fi`
++
++src/stddir.o: src/stddir.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/stddir.o -MD -MP -MF "src/$(DEPDIR)/stddir.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/stddir.o `test -f 'src/stddir.c' || echo '$(srcdir)/'`src/stddir.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/stddir.Tpo" "src/$(DEPDIR)/stddir.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/stddir.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/stddir.c' object='src/stddir.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/stddir.Po' tmpdepfile='src/$(DEPDIR)/stddir.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/stddir.o `test -f 'src/stddir.c' || echo '$(srcdir)/'`src/stddir.c
++
++src/stddir.obj: src/stddir.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/stddir.obj -MD -MP -MF "src/$(DEPDIR)/stddir.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/stddir.obj `if test -f 'src/stddir.c'; then $(CYGPATH_W) 'src/stddir.c'; else $(CYGPATH_W) '$(srcdir)/src/stddir.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/stddir.Tpo" "src/$(DEPDIR)/stddir.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/stddir.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/stddir.c' object='src/stddir.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/stddir.Po' tmpdepfile='src/$(DEPDIR)/stddir.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/stddir.obj `if test -f 'src/stddir.c'; then $(CYGPATH_W) 'src/stddir.c'; else $(CYGPATH_W) '$(srcdir)/src/stddir.c'; fi`
++
++src/readdir.o: src/readdir.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/readdir.o -MD -MP -MF "src/$(DEPDIR)/readdir.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/readdir.o `test -f 'src/readdir.c' || echo '$(srcdir)/'`src/readdir.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/readdir.Tpo" "src/$(DEPDIR)/readdir.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/readdir.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/readdir.c' object='src/readdir.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/readdir.Po' tmpdepfile='src/$(DEPDIR)/readdir.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/readdir.o `test -f 'src/readdir.c' || echo '$(srcdir)/'`src/readdir.c
++
++src/readdir.obj: src/readdir.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/readdir.obj -MD -MP -MF "src/$(DEPDIR)/readdir.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/readdir.obj `if test -f 'src/readdir.c'; then $(CYGPATH_W) 'src/readdir.c'; else $(CYGPATH_W) '$(srcdir)/src/readdir.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/readdir.Tpo" "src/$(DEPDIR)/readdir.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/readdir.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/readdir.c' object='src/readdir.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/readdir.Po' tmpdepfile='src/$(DEPDIR)/readdir.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/readdir.obj `if test -f 'src/readdir.c'; then $(CYGPATH_W) 'src/readdir.c'; else $(CYGPATH_W) '$(srcdir)/src/readdir.c'; fi`
++
++src/readdir64.o: src/readdir64.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/readdir64.o -MD -MP -MF "src/$(DEPDIR)/readdir64.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/readdir64.o `test -f 'src/readdir64.c' || echo '$(srcdir)/'`src/readdir64.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/readdir64.Tpo" "src/$(DEPDIR)/readdir64.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/readdir64.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/readdir64.c' object='src/readdir64.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/readdir64.Po' tmpdepfile='src/$(DEPDIR)/readdir64.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/readdir64.o `test -f 'src/readdir64.c' || echo '$(srcdir)/'`src/readdir64.c
++
++src/readdir64.obj: src/readdir64.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/readdir64.obj -MD -MP -MF "src/$(DEPDIR)/readdir64.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/readdir64.obj `if test -f 'src/readdir64.c'; then $(CYGPATH_W) 'src/readdir64.c'; else $(CYGPATH_W) '$(srcdir)/src/readdir64.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/readdir64.Tpo" "src/$(DEPDIR)/readdir64.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/readdir64.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/readdir64.c' object='src/readdir64.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/readdir64.Po' tmpdepfile='src/$(DEPDIR)/readdir64.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/readdir64.obj `if test -f 'src/readdir64.c'; then $(CYGPATH_W) 'src/readdir64.c'; else $(CYGPATH_W) '$(srcdir)/src/readdir64.c'; fi`
++
++src/symlink.o: src/symlink.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/symlink.o -MD -MP -MF "src/$(DEPDIR)/symlink.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/symlink.o `test -f 'src/symlink.c' || echo '$(srcdir)/'`src/symlink.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/symlink.Tpo" "src/$(DEPDIR)/symlink.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/symlink.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/symlink.c' object='src/symlink.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/symlink.Po' tmpdepfile='src/$(DEPDIR)/symlink.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/symlink.o `test -f 'src/symlink.c' || echo '$(srcdir)/'`src/symlink.c
++
++src/symlink.obj: src/symlink.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/symlink.obj -MD -MP -MF "src/$(DEPDIR)/symlink.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/symlink.obj `if test -f 'src/symlink.c'; then $(CYGPATH_W) 'src/symlink.c'; else $(CYGPATH_W) '$(srcdir)/src/symlink.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/symlink.Tpo" "src/$(DEPDIR)/symlink.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/symlink.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/symlink.c' object='src/symlink.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/symlink.Po' tmpdepfile='src/$(DEPDIR)/symlink.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/symlink.obj `if test -f 'src/symlink.c'; then $(CYGPATH_W) 'src/symlink.c'; else $(CYGPATH_W) '$(srcdir)/src/symlink.c'; fi`
++
++src/readlink.o: src/readlink.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/readlink.o -MD -MP -MF "src/$(DEPDIR)/readlink.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/readlink.o `test -f 'src/readlink.c' || echo '$(srcdir)/'`src/readlink.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/readlink.Tpo" "src/$(DEPDIR)/readlink.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/readlink.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/readlink.c' object='src/readlink.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/readlink.Po' tmpdepfile='src/$(DEPDIR)/readlink.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/readlink.o `test -f 'src/readlink.c' || echo '$(srcdir)/'`src/readlink.c
++
++src/readlink.obj: src/readlink.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/readlink.obj -MD -MP -MF "src/$(DEPDIR)/readlink.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/readlink.obj `if test -f 'src/readlink.c'; then $(CYGPATH_W) 'src/readlink.c'; else $(CYGPATH_W) '$(srcdir)/src/readlink.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/readlink.Tpo" "src/$(DEPDIR)/readlink.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/readlink.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/readlink.c' object='src/readlink.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/readlink.Po' tmpdepfile='src/$(DEPDIR)/readlink.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/readlink.obj `if test -f 'src/readlink.c'; then $(CYGPATH_W) 'src/readlink.c'; else $(CYGPATH_W) '$(srcdir)/src/readlink.c'; fi`
++
++src/truncate.o: src/truncate.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/truncate.o -MD -MP -MF "src/$(DEPDIR)/truncate.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/truncate.o `test -f 'src/truncate.c' || echo '$(srcdir)/'`src/truncate.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/truncate.Tpo" "src/$(DEPDIR)/truncate.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/truncate.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/truncate.c' object='src/truncate.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/truncate.Po' tmpdepfile='src/$(DEPDIR)/truncate.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/truncate.o `test -f 'src/truncate.c' || echo '$(srcdir)/'`src/truncate.c
++
++src/truncate.obj: src/truncate.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/truncate.obj -MD -MP -MF "src/$(DEPDIR)/truncate.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/truncate.obj `if test -f 'src/truncate.c'; then $(CYGPATH_W) 'src/truncate.c'; else $(CYGPATH_W) '$(srcdir)/src/truncate.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/truncate.Tpo" "src/$(DEPDIR)/truncate.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/truncate.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/truncate.c' object='src/truncate.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/truncate.Po' tmpdepfile='src/$(DEPDIR)/truncate.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/truncate.obj `if test -f 'src/truncate.c'; then $(CYGPATH_W) 'src/truncate.c'; else $(CYGPATH_W) '$(srcdir)/src/truncate.c'; fi`
++
++src/unlink.o: src/unlink.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/unlink.o -MD -MP -MF "src/$(DEPDIR)/unlink.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/unlink.o `test -f 'src/unlink.c' || echo '$(srcdir)/'`src/unlink.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/unlink.Tpo" "src/$(DEPDIR)/unlink.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/unlink.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/unlink.c' object='src/unlink.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/unlink.Po' tmpdepfile='src/$(DEPDIR)/unlink.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/unlink.o `test -f 'src/unlink.c' || echo '$(srcdir)/'`src/unlink.c
++
++src/unlink.obj: src/unlink.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/unlink.obj -MD -MP -MF "src/$(DEPDIR)/unlink.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/unlink.obj `if test -f 'src/unlink.c'; then $(CYGPATH_W) 'src/unlink.c'; else $(CYGPATH_W) '$(srcdir)/src/unlink.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/unlink.Tpo" "src/$(DEPDIR)/unlink.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/unlink.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/unlink.c' object='src/unlink.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/unlink.Po' tmpdepfile='src/$(DEPDIR)/unlink.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/unlink.obj `if test -f 'src/unlink.c'; then $(CYGPATH_W) 'src/unlink.c'; else $(CYGPATH_W) '$(srcdir)/src/unlink.c'; fi`
++
++src/utime.o: src/utime.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/utime.o -MD -MP -MF "src/$(DEPDIR)/utime.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/utime.o `test -f 'src/utime.c' || echo '$(srcdir)/'`src/utime.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/utime.Tpo" "src/$(DEPDIR)/utime.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/utime.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/utime.c' object='src/utime.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/utime.Po' tmpdepfile='src/$(DEPDIR)/utime.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/utime.o `test -f 'src/utime.c' || echo '$(srcdir)/'`src/utime.c
++
++src/utime.obj: src/utime.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/utime.obj -MD -MP -MF "src/$(DEPDIR)/utime.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/utime.obj `if test -f 'src/utime.c'; then $(CYGPATH_W) 'src/utime.c'; else $(CYGPATH_W) '$(srcdir)/src/utime.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/utime.Tpo" "src/$(DEPDIR)/utime.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/utime.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/utime.c' object='src/utime.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/utime.Po' tmpdepfile='src/$(DEPDIR)/utime.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/utime.obj `if test -f 'src/utime.c'; then $(CYGPATH_W) 'src/utime.c'; else $(CYGPATH_W) '$(srcdir)/src/utime.c'; fi`
++
++src/file_hack.o: src/file_hack.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/file_hack.o -MD -MP -MF "src/$(DEPDIR)/file_hack.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/file_hack.o `test -f 'src/file_hack.c' || echo '$(srcdir)/'`src/file_hack.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/file_hack.Tpo" "src/$(DEPDIR)/file_hack.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/file_hack.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/file_hack.c' object='src/file_hack.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/file_hack.Po' tmpdepfile='src/$(DEPDIR)/file_hack.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/file_hack.o `test -f 'src/file_hack.c' || echo '$(srcdir)/'`src/file_hack.c
++
++src/file_hack.obj: src/file_hack.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/file_hack.obj -MD -MP -MF "src/$(DEPDIR)/file_hack.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/file_hack.obj `if test -f 'src/file_hack.c'; then $(CYGPATH_W) 'src/file_hack.c'; else $(CYGPATH_W) '$(srcdir)/src/file_hack.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/file_hack.Tpo" "src/$(DEPDIR)/file_hack.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/file_hack.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/file_hack.c' object='src/file_hack.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/file_hack.Po' tmpdepfile='src/$(DEPDIR)/file_hack.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/file_hack.obj `if test -f 'src/file_hack.c'; then $(CYGPATH_W) 'src/file_hack.c'; else $(CYGPATH_W) '$(srcdir)/src/file_hack.c'; fi`
++
++src/file.o: src/file.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/file.o -MD -MP -MF "src/$(DEPDIR)/file.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/file.o `test -f 'src/file.c' || echo '$(srcdir)/'`src/file.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/file.Tpo" "src/$(DEPDIR)/file.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/file.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/file.c' object='src/file.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/file.Po' tmpdepfile='src/$(DEPDIR)/file.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/file.o `test -f 'src/file.c' || echo '$(srcdir)/'`src/file.c
++
++src/file.obj: src/file.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/file.obj -MD -MP -MF "src/$(DEPDIR)/file.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/file.obj `if test -f 'src/file.c'; then $(CYGPATH_W) 'src/file.c'; else $(CYGPATH_W) '$(srcdir)/src/file.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/file.Tpo" "src/$(DEPDIR)/file.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/file.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/file.c' object='src/file.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/file.Po' tmpdepfile='src/$(DEPDIR)/file.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/file.obj `if test -f 'src/file.c'; then $(CYGPATH_W) 'src/file.c'; else $(CYGPATH_W) '$(srcdir)/src/file.c'; fi`
++
++src/stdlib.o: src/stdlib.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/stdlib.o -MD -MP -MF "src/$(DEPDIR)/stdlib.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/stdlib.o `test -f 'src/stdlib.c' || echo '$(srcdir)/'`src/stdlib.c; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/stdlib.Tpo" "src/$(DEPDIR)/stdlib.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/stdlib.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/stdlib.c' object='src/stdlib.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/stdlib.Po' tmpdepfile='src/$(DEPDIR)/stdlib.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/stdlib.o `test -f 'src/stdlib.c' || echo '$(srcdir)/'`src/stdlib.c
++
++src/stdlib.obj: src/stdlib.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/stdlib.obj -MD -MP -MF "src/$(DEPDIR)/stdlib.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o src/stdlib.obj `if test -f 'src/stdlib.c'; then $(CYGPATH_W) 'src/stdlib.c'; else $(CYGPATH_W) '$(srcdir)/src/stdlib.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "src/$(DEPDIR)/stdlib.Tpo" "src/$(DEPDIR)/stdlib.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "src/$(DEPDIR)/stdlib.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='src/stdlib.c' object='src/stdlib.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='src/$(DEPDIR)/stdlib.Po' tmpdepfile='src/$(DEPDIR)/stdlib.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/stdlib.obj `if test -f 'src/stdlib.c'; then $(CYGPATH_W) 'src/stdlib.c'; else $(CYGPATH_W) '$(srcdir)/src/stdlib.c'; fi`
++
++dev/stdfd/stdfd.o: dev/stdfd/stdfd.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dev/stdfd/stdfd.o -MD -MP -MF "dev/stdfd/$(DEPDIR)/stdfd.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o dev/stdfd/stdfd.o `test -f 'dev/stdfd/stdfd.c' || echo '$(srcdir)/'`dev/stdfd/stdfd.c; \
++ at am__fastdepCC_TRUE@	then mv -f "dev/stdfd/$(DEPDIR)/stdfd.Tpo" "dev/stdfd/$(DEPDIR)/stdfd.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "dev/stdfd/$(DEPDIR)/stdfd.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='dev/stdfd/stdfd.c' object='dev/stdfd/stdfd.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='dev/stdfd/$(DEPDIR)/stdfd.Po' tmpdepfile='dev/stdfd/$(DEPDIR)/stdfd.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dev/stdfd/stdfd.o `test -f 'dev/stdfd/stdfd.c' || echo '$(srcdir)/'`dev/stdfd/stdfd.c
++
++dev/stdfd/stdfd.obj: dev/stdfd/stdfd.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dev/stdfd/stdfd.obj -MD -MP -MF "dev/stdfd/$(DEPDIR)/stdfd.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o dev/stdfd/stdfd.obj `if test -f 'dev/stdfd/stdfd.c'; then $(CYGPATH_W) 'dev/stdfd/stdfd.c'; else $(CYGPATH_W) '$(srcdir)/dev/stdfd/stdfd.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "dev/stdfd/$(DEPDIR)/stdfd.Tpo" "dev/stdfd/$(DEPDIR)/stdfd.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "dev/stdfd/$(DEPDIR)/stdfd.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='dev/stdfd/stdfd.c' object='dev/stdfd/stdfd.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='dev/stdfd/$(DEPDIR)/stdfd.Po' tmpdepfile='dev/stdfd/$(DEPDIR)/stdfd.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dev/stdfd/stdfd.obj `if test -f 'dev/stdfd/stdfd.c'; then $(CYGPATH_W) 'dev/stdfd/stdfd.c'; else $(CYGPATH_W) '$(srcdir)/dev/stdfd/stdfd.c'; fi`
++
++drivers/incore/fs_incore.o: drivers/incore/fs_incore.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT drivers/incore/fs_incore.o -MD -MP -MF "drivers/incore/$(DEPDIR)/fs_incore.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o drivers/incore/fs_incore.o `test -f 'drivers/incore/fs_incore.c' || echo '$(srcdir)/'`drivers/incore/fs_incore.c; \
++ at am__fastdepCC_TRUE@	then mv -f "drivers/incore/$(DEPDIR)/fs_incore.Tpo" "drivers/incore/$(DEPDIR)/fs_incore.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "drivers/incore/$(DEPDIR)/fs_incore.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drivers/incore/fs_incore.c' object='drivers/incore/fs_incore.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='drivers/incore/$(DEPDIR)/fs_incore.Po' tmpdepfile='drivers/incore/$(DEPDIR)/fs_incore.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o drivers/incore/fs_incore.o `test -f 'drivers/incore/fs_incore.c' || echo '$(srcdir)/'`drivers/incore/fs_incore.c
++
++drivers/incore/fs_incore.obj: drivers/incore/fs_incore.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT drivers/incore/fs_incore.obj -MD -MP -MF "drivers/incore/$(DEPDIR)/fs_incore.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o drivers/incore/fs_incore.obj `if test -f 'drivers/incore/fs_incore.c'; then $(CYGPATH_W) 'drivers/incore/fs_incore.c'; else $(CYGPATH_W) '$(srcdir)/drivers/incore/fs_incore.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "drivers/incore/$(DEPDIR)/fs_incore.Tpo" "drivers/incore/$(DEPDIR)/fs_incore.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "drivers/incore/$(DEPDIR)/fs_incore.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drivers/incore/fs_incore.c' object='drivers/incore/fs_incore.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='drivers/incore/$(DEPDIR)/fs_incore.Po' tmpdepfile='drivers/incore/$(DEPDIR)/fs_incore.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o drivers/incore/fs_incore.obj `if test -f 'drivers/incore/fs_incore.c'; then $(CYGPATH_W) 'drivers/incore/fs_incore.c'; else $(CYGPATH_W) '$(srcdir)/drivers/incore/fs_incore.c'; fi`
++
++drivers/sockets/sockets.o: drivers/sockets/sockets.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT drivers/sockets/sockets.o -MD -MP -MF "drivers/sockets/$(DEPDIR)/sockets.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o drivers/sockets/sockets.o `test -f 'drivers/sockets/sockets.c' || echo '$(srcdir)/'`drivers/sockets/sockets.c; \
++ at am__fastdepCC_TRUE@	then mv -f "drivers/sockets/$(DEPDIR)/sockets.Tpo" "drivers/sockets/$(DEPDIR)/sockets.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "drivers/sockets/$(DEPDIR)/sockets.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drivers/sockets/sockets.c' object='drivers/sockets/sockets.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='drivers/sockets/$(DEPDIR)/sockets.Po' tmpdepfile='drivers/sockets/$(DEPDIR)/sockets.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o drivers/sockets/sockets.o `test -f 'drivers/sockets/sockets.c' || echo '$(srcdir)/'`drivers/sockets/sockets.c
++
++drivers/sockets/sockets.obj: drivers/sockets/sockets.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT drivers/sockets/sockets.obj -MD -MP -MF "drivers/sockets/$(DEPDIR)/sockets.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o drivers/sockets/sockets.obj `if test -f 'drivers/sockets/sockets.c'; then $(CYGPATH_W) 'drivers/sockets/sockets.c'; else $(CYGPATH_W) '$(srcdir)/drivers/sockets/sockets.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "drivers/sockets/$(DEPDIR)/sockets.Tpo" "drivers/sockets/$(DEPDIR)/sockets.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "drivers/sockets/$(DEPDIR)/sockets.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drivers/sockets/sockets.c' object='drivers/sockets/sockets.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='drivers/sockets/$(DEPDIR)/sockets.Po' tmpdepfile='drivers/sockets/$(DEPDIR)/sockets.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o drivers/sockets/sockets.obj `if test -f 'drivers/sockets/sockets.c'; then $(CYGPATH_W) 'drivers/sockets/sockets.c'; else $(CYGPATH_W) '$(srcdir)/drivers/sockets/sockets.c'; fi`
++
++drivers/native/fs_native.o: drivers/native/fs_native.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT drivers/native/fs_native.o -MD -MP -MF "drivers/native/$(DEPDIR)/fs_native.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o drivers/native/fs_native.o `test -f 'drivers/native/fs_native.c' || echo '$(srcdir)/'`drivers/native/fs_native.c; \
++ at am__fastdepCC_TRUE@	then mv -f "drivers/native/$(DEPDIR)/fs_native.Tpo" "drivers/native/$(DEPDIR)/fs_native.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "drivers/native/$(DEPDIR)/fs_native.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drivers/native/fs_native.c' object='drivers/native/fs_native.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='drivers/native/$(DEPDIR)/fs_native.Po' tmpdepfile='drivers/native/$(DEPDIR)/fs_native.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o drivers/native/fs_native.o `test -f 'drivers/native/fs_native.c' || echo '$(srcdir)/'`drivers/native/fs_native.c
++
++drivers/native/fs_native.obj: drivers/native/fs_native.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT drivers/native/fs_native.obj -MD -MP -MF "drivers/native/$(DEPDIR)/fs_native.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o drivers/native/fs_native.obj `if test -f 'drivers/native/fs_native.c'; then $(CYGPATH_W) 'drivers/native/fs_native.c'; else $(CYGPATH_W) '$(srcdir)/drivers/native/fs_native.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "drivers/native/$(DEPDIR)/fs_native.Tpo" "drivers/native/$(DEPDIR)/fs_native.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "drivers/native/$(DEPDIR)/fs_native.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drivers/native/fs_native.c' object='drivers/native/fs_native.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='drivers/native/$(DEPDIR)/fs_native.Po' tmpdepfile='drivers/native/$(DEPDIR)/fs_native.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o drivers/native/fs_native.obj `if test -f 'drivers/native/fs_native.c'; then $(CYGPATH_W) 'drivers/native/fs_native.c'; else $(CYGPATH_W) '$(srcdir)/drivers/native/fs_native.c'; fi`
++
++drivers/yod/fs_yod.o: drivers/yod/fs_yod.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT drivers/yod/fs_yod.o -MD -MP -MF "drivers/yod/$(DEPDIR)/fs_yod.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o drivers/yod/fs_yod.o `test -f 'drivers/yod/fs_yod.c' || echo '$(srcdir)/'`drivers/yod/fs_yod.c; \
++ at am__fastdepCC_TRUE@	then mv -f "drivers/yod/$(DEPDIR)/fs_yod.Tpo" "drivers/yod/$(DEPDIR)/fs_yod.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "drivers/yod/$(DEPDIR)/fs_yod.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drivers/yod/fs_yod.c' object='drivers/yod/fs_yod.o' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='drivers/yod/$(DEPDIR)/fs_yod.Po' tmpdepfile='drivers/yod/$(DEPDIR)/fs_yod.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o drivers/yod/fs_yod.o `test -f 'drivers/yod/fs_yod.c' || echo '$(srcdir)/'`drivers/yod/fs_yod.c
++
++drivers/yod/fs_yod.obj: drivers/yod/fs_yod.c
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT drivers/yod/fs_yod.obj -MD -MP -MF "drivers/yod/$(DEPDIR)/fs_yod.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o drivers/yod/fs_yod.obj `if test -f 'drivers/yod/fs_yod.c'; then $(CYGPATH_W) 'drivers/yod/fs_yod.c'; else $(CYGPATH_W) '$(srcdir)/drivers/yod/fs_yod.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "drivers/yod/$(DEPDIR)/fs_yod.Tpo" "drivers/yod/$(DEPDIR)/fs_yod.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "drivers/yod/$(DEPDIR)/fs_yod.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drivers/yod/fs_yod.c' object='drivers/yod/fs_yod.obj' libtool=no @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='drivers/yod/$(DEPDIR)/fs_yod.Po' tmpdepfile='drivers/yod/$(DEPDIR)/fs_yod.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o drivers/yod/fs_yod.obj `if test -f 'drivers/yod/fs_yod.c'; then $(CYGPATH_W) 'drivers/yod/fs_yod.c'; else $(CYGPATH_W) '$(srcdir)/drivers/yod/fs_yod.c'; fi`
+ uninstall-info-am:
+ 
++ETAGS = etags
++ETAGSFLAGS =
++
++CTAGS = ctags
++CTAGSFLAGS =
++
++tags: TAGS
++
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+ 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+@@ -628,7 +1616,6 @@
+ 	  $(AWK) '    { files[$$0] = 1; } \
+ 	       END { for (i in files) print i; }'`; \
+ 	mkid -fID $$unique
+-tags: TAGS
+ 
+ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+@@ -640,11 +1627,10 @@
+ 	  done | \
+ 	  $(AWK) '    { files[$$0] = 1; } \
+ 	       END { for (i in files) print i; }'`; \
+-	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
+-	  test -n "$$unique" || unique=$$empty_fix; \
+-	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	    $$tags $$unique; \
+-	fi
++	test -z "$(ETAGS_ARGS)$$tags$$unique" \
++	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	     $$tags $$unique
++
+ ctags: CTAGS
+ CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+@@ -667,11 +1653,24 @@
+ 
+ distclean-tags:
+ 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
++
++top_distdir = .
++distdir = $(PACKAGE)-$(VERSION)
++
++am__remove_distdir = \
++  { test ! -d $(distdir) \
++    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
++         && rm -fr $(distdir); }; }
++
++GZIP_ENV = --best
++distuninstallcheck_listfiles = find . -type f -print
++distcleancheck_listfiles = find . -type f -print
+ 
+ distdir: $(DISTFILES)
+ 	$(am__remove_distdir)
+ 	mkdir $(distdir)
+-	$(mkdir_p) $(distdir)/dev/stdfd $(distdir)/drivers/incore $(distdir)/drivers/native $(distdir)/drivers/sockets $(distdir)/drivers/yod $(distdir)/include $(distdir)/misc $(distdir)/src $(distdir)/tests
++	$(mkinstalldirs) $(distdir)/./dev/stdfd $(distdir)/./drivers/incore $(distdir)/./drivers/native $(distdir)/./drivers/sockets $(distdir)/./drivers/yod $(distdir)/./include $(distdir)/./src $(distdir)/./tests $(distdir)/dev/stdfd $(distdir)/drivers/incore $(distdir)/drivers/native $(distdir)/drivers/sockets $(distdir)/drivers/yod $(distdir)/include $(distdir)/misc $(distdir)/src $(distdir)/tests
+ 	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+ 	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+ 	list='$(DISTFILES)'; for file in $$list; do \
+@@ -683,7 +1682,7 @@
+ 	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+ 	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+ 	    dir="/$$dir"; \
+-	    $(mkdir_p) "$(distdir)$$dir"; \
++	    $(mkinstalldirs) "$(distdir)$$dir"; \
+ 	  else \
+ 	    dir=''; \
+ 	  fi; \
+@@ -704,46 +1703,19 @@
+ 	  ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
+ 	|| chmod -R a+r $(distdir)
+ dist-gzip: distdir
+-	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
+-	$(am__remove_distdir)
+-
+-dist-bzip2: distdir
+-	tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
+-	$(am__remove_distdir)
+-
+-dist-tarZ: distdir
+-	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
+-	$(am__remove_distdir)
+-
+-dist-shar: distdir
+-	shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
+-	$(am__remove_distdir)
+-
+-dist-zip: distdir
+-	-rm -f $(distdir).zip
+-	zip -rq $(distdir).zip $(distdir)
++	$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
+ 	$(am__remove_distdir)
+ 
+ dist dist-all: distdir
+-	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
++	$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
+ 	$(am__remove_distdir)
+ 
+ # This target untars the dist file and tries a VPATH configuration.  Then
+ # it guarantees that the distribution is self-contained by making another
+ # tarfile.
+ distcheck: dist
+-	case '$(DIST_ARCHIVES)' in \
+-	*.tar.gz*) \
+-	  GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
+-	*.tar.bz2*) \
+-	  bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
+-	*.tar.Z*) \
+-	  uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
+-	*.shar.gz*) \
+-	  GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
+-	*.zip*) \
+-	  unzip $(distdir).zip ;;\
+-	esac
++	$(am__remove_distdir)
++	GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf -
+ 	chmod -R a-w $(distdir); chmod a+w $(distdir)
+ 	mkdir $(distdir)/_build
+ 	mkdir $(distdir)/_inst
+@@ -763,20 +1735,19 @@
+ 	        distuninstallcheck \
+ 	  && chmod -R a-w "$$dc_install_base" \
+ 	  && ({ \
+-	       (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
++	       (cd ../.. && $(mkinstalldirs) "$$dc_destdir") \
+ 	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
+ 	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
+ 	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
+ 	            distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
+ 	      } || { rm -rf "$$dc_destdir"; exit 1; }) \
+ 	  && rm -rf "$$dc_destdir" \
+-	  && $(MAKE) $(AM_MAKEFLAGS) dist \
+-	  && rm -rf $(DIST_ARCHIVES) \
++	  && $(MAKE) $(AM_MAKEFLAGS) dist-gzip \
++	  && rm -f $(distdir).tar.gz \
+ 	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
+ 	$(am__remove_distdir)
+-	@(echo "$(distdir) archives ready for distribution: "; \
+-	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
+-	  sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}'
++	@echo "$(distdir).tar.gz is ready for distribution" | \
++	  sed 'h;s/./=/g;p;x;p;x'
+ distuninstallcheck:
+ 	@cd $(distuninstallcheck_dir) \
+ 	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
+@@ -798,10 +1769,9 @@
+ check-am: all-am
+ check: check-am
+ all-am: Makefile $(LIBRARIES)
++
+ installdirs:
+-	for dir in "$(DESTDIR)$(libdir)"; do \
+-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
+-	done
++	$(mkinstalldirs) $(DESTDIR)$(libdir)
+ install: install-am
+ install-exec: install-exec-am
+ install-data: install-data-am
+@@ -821,24 +1791,26 @@
+ clean-generic:
+ 
+ distclean-generic:
+-	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+-	-rm -f ${LIBBUILD_DIR}/$(am__dirstamp)
+-	-rm -f dev/stdfd/$(DEPDIR)/$(am__dirstamp)
++	-rm -f $(CONFIG_CLEAN_FILES)
+ 	-rm -f dev/stdfd/$(am__dirstamp)
+-	-rm -f drivers/incore/$(DEPDIR)/$(am__dirstamp)
+-	-rm -f drivers/incore/$(am__dirstamp)
+ 	-rm -f drivers/native/$(DEPDIR)/$(am__dirstamp)
++	-rm -f drivers/yod/$(am__dirstamp)
++	-rm -f drivers/yod/$(DEPDIR)/$(am__dirstamp)
+ 	-rm -f drivers/native/$(am__dirstamp)
+-	-rm -f drivers/sockets/$(DEPDIR)/$(am__dirstamp)
++	-rm -f src/$(am__dirstamp)
++	-rm -f dev/stdfd/$(DEPDIR)/$(am__dirstamp)
++	-rm -f drivers/incore/$(am__dirstamp)
+ 	-rm -f drivers/sockets/$(am__dirstamp)
+-	-rm -f drivers/yod/$(DEPDIR)/$(am__dirstamp)
+-	-rm -f drivers/yod/$(am__dirstamp)
++	-rm -f drivers/sockets/$(DEPDIR)/$(am__dirstamp)
++	-rm -f drivers/incore/$(DEPDIR)/$(am__dirstamp)
++	-rm -f ${LIBBUILD_DIR}/$(am__dirstamp)
+ 	-rm -f src/$(DEPDIR)/$(am__dirstamp)
+-	-rm -f src/$(am__dirstamp)
+ 
+ maintainer-clean-generic:
+ 	@echo "This command is intended for maintainers to use"
+ 	@echo "it deletes files that may require special tools to rebuild."
++clean: clean-am
++
+ clean-am: clean-generic clean-libLIBRARIES mostlyclean-am
+ 
+ distclean: distclean-am
+@@ -852,8 +1824,6 @@
+ 
+ dvi-am:
+ 
+-html: html-am
+-
+ info: info-am
+ 
+ info-am:
+@@ -889,15 +1859,14 @@
+ 
+ uninstall-am: uninstall-info-am uninstall-libLIBRARIES
+ 
+-.PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \
+-	clean-generic clean-libLIBRARIES ctags dist dist-all \
+-	dist-bzip2 dist-gzip dist-shar dist-tarZ dist-zip distcheck \
++.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
++	clean-libLIBRARIES ctags dist dist-all dist-gzip distcheck \
+ 	distclean distclean-compile distclean-generic distclean-tags \
+-	distcleancheck distdir distuninstallcheck dvi dvi-am html \
+-	html-am info info-am install install-am install-data \
+-	install-data-am install-exec install-exec-am install-info \
+-	install-info-am install-libLIBRARIES install-man install-strip \
+-	installcheck installcheck-am installdirs maintainer-clean \
++	distcleancheck distdir distuninstallcheck dvi dvi-am info \
++	info-am install install-am install-data install-data-am \
++	install-exec install-exec-am install-info install-info-am \
++	install-libLIBRARIES install-man install-strip installcheck \
++	installcheck-am installdirs maintainer-clean \
+ 	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 lustre-1.6.7.2.orig/libsysio/tests/Makefile.in lustre-1.6.7.2/libsysio/tests/Makefile.in
+--- lustre-1.6.7.2.orig/libsysio/tests/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/libsysio/tests/Makefile.in	2009-08-10 10:05:49.000000000 +0200
+@@ -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.
+ # @configure_input@
+ 
+-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005  Free Software Foundation, Inc.
++# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
++# Free Software Foundation, Inc.
+ # 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.
+@@ -14,7 +14,6 @@
+ 
+ @SET_MAKE@
+ 
+-
+ srcdir = @srcdir@
+ top_srcdir = @top_srcdir@
+ VPATH = @srcdir@
+@@ -22,6 +21,7 @@
+ pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
+ top_builddir = ..
++
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ INSTALL = @INSTALL@
+ install_sh_DATA = $(install_sh) -c -m 644
+@@ -38,161 +38,6 @@
+ build_triplet = @build@
+ host_triplet = @host@
+ target_triplet = @target@
+-noinst_PROGRAMS = test_copy$(EXEEXT) test_stats$(EXEEXT) \
+-	test_path$(EXEEXT) test_list$(EXEEXT) test_getcwd$(EXEEXT) \
+-	test_link$(EXEEXT) test_unlink$(EXEEXT) test_symlink$(EXEEXT) \
+-	test_rename$(EXEEXT) test_regions$(EXEEXT) \
+-	test_stddir$(EXEEXT) test_fcntl_lock$(EXEEXT) \
+-	test_mknod$(EXEEXT) test_mkdir$(EXEEXT) test_chown$(EXEEXT)
+-DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
+-	$(top_srcdir)/Rules.make
+-subdir = tests
+-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+-am__aclocal_m4_deps = $(top_srcdir)/configure.in
+-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+-	$(ACLOCAL_M4)
+-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+-CONFIG_CLEAN_FILES =
+-am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+-am__vpath_adj = case $$p in \
+-    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+-    *) f=$$p;; \
+-  esac;
+-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
+-am__installdirs = "$(DESTDIR)$(libdir)"
+-libLIBRARIES_INSTALL = $(INSTALL_DATA)
+-LIBRARIES = $(lib_LIBRARIES)
+-AR = ar
+-ARFLAGS = cru
+-libruntime_a_AR = $(AR) $(ARFLAGS)
+-libruntime_a_LIBADD =
+-am_libruntime_a_OBJECTS = sysio-run-start.$(OBJEXT) startup.$(OBJEXT) \
+-	drv_init_all.$(OBJEXT) drv_data.$(OBJEXT)
+-libruntime_a_OBJECTS = $(am_libruntime_a_OBJECTS)
+-PROGRAMS = $(noinst_PROGRAMS)
+-am__objects_1 = test_chown-startup.$(OBJEXT) \
+-	test_chown-drv_init_all.$(OBJEXT) \
+-	test_chown-drv_data.$(OBJEXT)
+-am_test_chown_OBJECTS = test_chown-test_chown.$(OBJEXT) \
+-	$(am__objects_1)
+-test_chown_OBJECTS = $(am_test_chown_OBJECTS)
+-test_chown_LDADD = $(LDADD)
+-am__objects_2 = test_copy-startup.$(OBJEXT) \
+-	test_copy-drv_init_all.$(OBJEXT) test_copy-drv_data.$(OBJEXT)
+-am_test_copy_OBJECTS = test_copy-test_copy.$(OBJEXT) $(am__objects_2)
+-test_copy_OBJECTS = $(am_test_copy_OBJECTS)
+-test_copy_LDADD = $(LDADD)
+-am__objects_3 = test_fcntl_lock-startup.$(OBJEXT) \
+-	test_fcntl_lock-drv_init_all.$(OBJEXT) \
+-	test_fcntl_lock-drv_data.$(OBJEXT)
+-am_test_fcntl_lock_OBJECTS =  \
+-	test_fcntl_lock-test_fcntl_lock.$(OBJEXT) $(am__objects_3)
+-test_fcntl_lock_OBJECTS = $(am_test_fcntl_lock_OBJECTS)
+-test_fcntl_lock_LDADD = $(LDADD)
+-am__objects_4 = test_getcwd-startup.$(OBJEXT) \
+-	test_getcwd-drv_init_all.$(OBJEXT) \
+-	test_getcwd-drv_data.$(OBJEXT)
+-am_test_getcwd_OBJECTS = test_getcwd-test_getcwd.$(OBJEXT) \
+-	$(am__objects_4)
+-test_getcwd_OBJECTS = $(am_test_getcwd_OBJECTS)
+-test_getcwd_LDADD = $(LDADD)
+-am__objects_5 = test_link-startup.$(OBJEXT) \
+-	test_link-drv_init_all.$(OBJEXT) test_link-drv_data.$(OBJEXT)
+-am_test_link_OBJECTS = test_link-test_link.$(OBJEXT) $(am__objects_5)
+-test_link_OBJECTS = $(am_test_link_OBJECTS)
+-test_link_LDADD = $(LDADD)
+-am__objects_6 = test_list-startup.$(OBJEXT) \
+-	test_list-drv_init_all.$(OBJEXT) test_list-drv_data.$(OBJEXT)
+-am_test_list_OBJECTS = test_list-test_list.$(OBJEXT) $(am__objects_6)
+-test_list_OBJECTS = $(am_test_list_OBJECTS)
+-test_list_LDADD = $(LDADD)
+-am__objects_7 = test_mkdir-startup.$(OBJEXT) \
+-	test_mkdir-drv_init_all.$(OBJEXT) \
+-	test_mkdir-drv_data.$(OBJEXT)
+-am_test_mkdir_OBJECTS = test_mkdir-test_mkdir.$(OBJEXT) \
+-	$(am__objects_7)
+-test_mkdir_OBJECTS = $(am_test_mkdir_OBJECTS)
+-test_mkdir_LDADD = $(LDADD)
+-am__objects_8 = test_mknod-startup.$(OBJEXT) \
+-	test_mknod-drv_init_all.$(OBJEXT) \
+-	test_mknod-drv_data.$(OBJEXT)
+-am_test_mknod_OBJECTS = test_mknod-test_mknod.$(OBJEXT) \
+-	$(am__objects_8)
+-test_mknod_OBJECTS = $(am_test_mknod_OBJECTS)
+-test_mknod_LDADD = $(LDADD)
+-am__objects_9 = test_path-startup.$(OBJEXT) \
+-	test_path-drv_init_all.$(OBJEXT) test_path-drv_data.$(OBJEXT)
+-am_test_path_OBJECTS = test_path-test_path.$(OBJEXT) $(am__objects_9)
+-test_path_OBJECTS = $(am_test_path_OBJECTS)
+-test_path_LDADD = $(LDADD)
+-am__objects_10 = test_regions-startup.$(OBJEXT) \
+-	test_regions-drv_init_all.$(OBJEXT) \
+-	test_regions-drv_data.$(OBJEXT)
+-am_test_regions_OBJECTS = test_regions-test_regions.$(OBJEXT) \
+-	$(am__objects_10)
+-test_regions_OBJECTS = $(am_test_regions_OBJECTS)
+-test_regions_LDADD = $(LDADD)
+-am__objects_11 = test_rename-startup.$(OBJEXT) \
+-	test_rename-drv_init_all.$(OBJEXT) \
+-	test_rename-drv_data.$(OBJEXT)
+-am_test_rename_OBJECTS = test_rename-test_rename.$(OBJEXT) \
+-	$(am__objects_11)
+-test_rename_OBJECTS = $(am_test_rename_OBJECTS)
+-test_rename_LDADD = $(LDADD)
+-am__objects_12 = test_stats-startup.$(OBJEXT) \
+-	test_stats-drv_init_all.$(OBJEXT) \
+-	test_stats-drv_data.$(OBJEXT)
+-am_test_stats_OBJECTS = test_stats-test_stats.$(OBJEXT) \
+-	$(am__objects_12)
+-test_stats_OBJECTS = $(am_test_stats_OBJECTS)
+-test_stats_LDADD = $(LDADD)
+-am__objects_13 = test_stddir-startup.$(OBJEXT) \
+-	test_stddir-drv_init_all.$(OBJEXT) \
+-	test_stddir-drv_data.$(OBJEXT)
+-am_test_stddir_OBJECTS = test_stddir-test_stddir.$(OBJEXT) \
+-	$(am__objects_13)
+-test_stddir_OBJECTS = $(am_test_stddir_OBJECTS)
+-test_stddir_LDADD = $(LDADD)
+-am__objects_14 = test_symlink-startup.$(OBJEXT) \
+-	test_symlink-drv_init_all.$(OBJEXT) \
+-	test_symlink-drv_data.$(OBJEXT)
+-am_test_symlink_OBJECTS = test_symlink-test_symlink.$(OBJEXT) \
+-	$(am__objects_14)
+-test_symlink_OBJECTS = $(am_test_symlink_OBJECTS)
+-test_symlink_LDADD = $(LDADD)
+-am__objects_15 = test_unlink-startup.$(OBJEXT) \
+-	test_unlink-drv_init_all.$(OBJEXT) \
+-	test_unlink-drv_data.$(OBJEXT)
+-am_test_unlink_OBJECTS = test_unlink-test_unlink.$(OBJEXT) \
+-	$(am__objects_15)
+-test_unlink_OBJECTS = $(am_test_unlink_OBJECTS)
+-test_unlink_LDADD = $(LDADD)
+-DEFAULT_INCLUDES = -I. -I$(srcdir)
+-depcomp = $(SHELL) $(top_srcdir)/depcomp
+-am__depfiles_maybe = depfiles
+-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+-	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-CCLD = $(CC)
+-LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-SOURCES = $(libruntime_a_SOURCES) $(test_chown_SOURCES) \
+-	$(test_copy_SOURCES) $(test_fcntl_lock_SOURCES) \
+-	$(test_getcwd_SOURCES) $(test_link_SOURCES) \
+-	$(test_list_SOURCES) $(test_mkdir_SOURCES) \
+-	$(test_mknod_SOURCES) $(test_path_SOURCES) \
+-	$(test_regions_SOURCES) $(test_rename_SOURCES) \
+-	$(test_stats_SOURCES) $(test_stddir_SOURCES) \
+-	$(test_symlink_SOURCES) $(test_unlink_SOURCES)
+-DIST_SOURCES = $(libruntime_a_SOURCES) $(test_chown_SOURCES) \
+-	$(test_copy_SOURCES) $(test_fcntl_lock_SOURCES) \
+-	$(test_getcwd_SOURCES) $(test_link_SOURCES) \
+-	$(test_list_SOURCES) $(test_mkdir_SOURCES) \
+-	$(test_mknod_SOURCES) $(test_path_SOURCES) \
+-	$(test_regions_SOURCES) $(test_rename_SOURCES) \
+-	$(test_stats_SOURCES) $(test_stddir_SOURCES) \
+-	$(test_symlink_SOURCES) $(test_unlink_SOURCES)
+-ETAGS = etags
+-CTAGS = ctags
+-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ ACLOCAL = @ACLOCAL@
+ AMDEP_FALSE = @AMDEP_FALSE@
+ AMDEP_TRUE = @AMDEP_TRUE@
+@@ -216,6 +61,7 @@
+ ECHO_T = @ECHO_T@
+ EGREP = @EGREP@
+ EXEEXT = @EXEEXT@
++GREP = @GREP@
+ INSTALL_DATA = @INSTALL_DATA@
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
+@@ -223,6 +69,7 @@
+ LDFLAGS = @LDFLAGS@
+ LIBBUILD_DIR = @LIBBUILD_DIR@
+ LIBOBJS = @LIBOBJS@
++
+ LIBS = $(LIBBUILD_DIR)/libsysio.a
+ LTLIBOBJS = @LTLIBOBJS@
+ MAKEINFO = @MAKEINFO@
+@@ -261,15 +108,11 @@
+ WITH_TESTS_TRUE = @WITH_TESTS_TRUE@
+ ZERO_SUM_MEMORY = @ZERO_SUM_MEMORY@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+-am__tar = @am__tar@
+-am__untar = @am__untar@
+ bindir = @bindir@
+ build = @build@
+ build_alias = @build_alias@
+@@ -277,23 +120,29 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
++docdir = @docdir@
++dvidir = @dvidir@
+ exec_prefix = @exec_prefix@
+ host = @host@
+ host_alias = @host_alias@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+ mandir = @mandir@
+-mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+ sysconfdir = @sysconfdir@
+@@ -302,145 +151,365 @@
+ target_cpu = @target_cpu@
+ target_os = @target_os@
+ target_vendor = @target_vendor@
++noinst_PROGRAMS = test_copy test_stats test_path test_list \
++	test_getcwd test_link test_unlink test_symlink test_rename \
++	test_regions test_stddir test_fcntl_lock test_mknod test_mkdir \
++	test_chown
++
++
+ CLEANFILES = drv_data.c
+- at WITH_NATIVE_DRIVER_FALSE@NATIVE_DRIVER_NAME = 
++
+ @WITH_NATIVE_DRIVER_TRUE at NATIVE_DRIVER_NAME = native
+- at WITH_NATIVE_DRIVER_FALSE@NATIVE_DRIVER_CFLAGS = 
++ at WITH_NATIVE_DRIVER_FALSE@NATIVE_DRIVER_NAME = 
+ @WITH_NATIVE_DRIVER_TRUE at NATIVE_DRIVER_CFLAGS = -I$(top_srcdir)/drivers/native
++ at WITH_NATIVE_DRIVER_FALSE@NATIVE_DRIVER_CFLAGS = 
+ @WITH_INCORE_DRIVER_FALSE at INCORE_DRIVER_NAME = 
++
+ @WITH_INCORE_DRIVER_TRUE at INCORE_DRIVER_NAME = incore
+ @WITH_INCORE_DRIVER_FALSE at INCORE_DRIVER_CFLAGS = 
+ @WITH_INCORE_DRIVER_TRUE at INCORE_DRIVER_CFLAGS = -I$(top_srcdir)/drivers/incore
+ @WITH_CPLANT_YOD_FALSE at YOD_DRIVER_NAME = 
++
+ @WITH_CPLANT_YOD_TRUE at YOD_DRIVER_NAME = yod
+ @WITH_CPLANT_YOD_FALSE at YOD_DRIVER_CFLAGS = 
+ @WITH_CPLANT_YOD_TRUE at YOD_DRIVER_CFLAGS = -DCPLANT_YOD
++
+ DRIVERS = $(NATIVE_DRIVER_NAME) $(INCORE_DRIVER_NAME) $(YOD_DRIVER_NAME) \
+ 	$(STFD_DEV_NAME)
+ 
++
+ CMNSRC = startup.c drv_init_all.c drv_data.c
++
+ BUILT_SOURCES = drv_data.c
++
+ CFL = $(AM_CFLAGS) $(AM_CPPFLAGS) \
+ 	$(NATIVE_DRIVER_CFLAGS) $(INCORE_DRIVER_CFLAGS) \
+ 	$(STDFD_DEV_CFLAGS) $(YOD_DRIVER_CFLAGS)
+ 
++
+ test_copy_SOURCES = test_copy.c $(CMNSRC)
+ test_copy_CFLAGS = $(CFL)
+ test_copy_DEPENDENCIES = $(LIBS)
++
+ test_stats_SOURCES = test_stats.c $(CMNSRC)
+ test_stats_CFLAGS = $(CFL)
+ test_stats_DEPENDENCIES = $(LIBS)
++
+ test_path_SOURCES = test_path.c $(CMNSRC)
+ test_path_CFLAGS = $(CFL)
+ test_path_DEPENDENCIES = $(LIBS)
++
+ test_list_SOURCES = test_list.c $(CMNSRC)
+ test_list_CFLAGS = $(CFL)
+ test_list_DEPENDENCIES = $(LIBS)
++
+ test_getcwd_SOURCES = test_getcwd.c $(CMNSRC)
+ test_getcwd_CFLAGS = $(CFL)
+ test_getcwd_DEPENDENCIES = $(LIBS)
++
+ test_link_SOURCES = test_link.c $(CMNSRC)
+ test_link_CFLAGS = $(CFL)
+ test_link_DEPENDENCIES = $(LIBS)
++
+ test_unlink_SOURCES = test_unlink.c $(CMNSRC)
+ test_unlink_CFLAGS = $(CFL)
+ test_unlink_DEPENDENCIES = $(LIBS)
++
+ test_symlink_SOURCES = test_symlink.c $(CMNSRC)
+ test_symlink_CFLAGS = $(CFL)
+ test_symlink_DEPENDENCIES = $(LIBS)
++
+ test_rename_SOURCES = test_rename.c $(CMNSRC)
+ test_rename_CFLAGS = $(CFL)
+ test_rename_DEPENDENCIES = $(LIBS)
++
+ test_regions_SOURCES = test_regions.c $(CMNSRC)
+ test_regions_CFLAGS = $(CFL)
+ test_regions_DEPENDENCIES = $(LIBS)
++
+ test_stddir_SOURCES = test_stddir.c $(CMNSRC)
+ test_stddir_CFLAGS = $(CFL)
+ test_stddir_DEPENDENCIES = $(LIBS)
++
+ test_fcntl_lock_SOURCES = test_fcntl_lock.c $(CMNSRC)
+ test_fcntl_lock_CFLAGS = $(CFL)
+ test_fcntl_lock_DEPENDENCIES = $(LIBS)
++
+ test_mknod_SOURCES = test_mknod.c $(CMNSRC)
+ test_mknod_CFLAGS = $(CFL)
+ test_mknod_DEPENDENCIES = $(LIBS)
++
+ test_mkdir_SOURCES = test_mkdir.c $(CMNSRC)
+ test_mkdir_CFLAGS = $(CFL)
+ test_mkdir_DEPENDENCIES = $(LIBS)
++
+ test_chown_SOURCES = test_chown.c $(CMNSRC)
+ test_chown_CFLAGS = $(CFL)
+ test_chown_DEPENDENCIES = $(LIBS)
++
+ lib_LIBRARIES = libruntime.a
++
+ libruntime_a_SOURCES = sysio-run-start.c startup.c drv_init_all.c drv_data.c
++
+ AM_CFLAGS = -L$(LIBBUILD_DIR)
+ @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 = 
++
+ @WITH_SOCKETS_DRIVER_TRUE at SOCKETS_CPPFLAGS = -DWITH_SOCKETS=1
++
+ DEV_CPPFLAGS = $(STDFD_DEV_CPPFLAGS)
++
+ AM_CPPFLAGS = \
+ 	$(TRACING) \
+ 	$(AUTOMOUNT) $(ZERO_SUM_MEMORY) $(DEV_CPPFLAGS) $(SOCKETS_CPPFLAGS) \
+ 	$(DEFER_INIT_CWD) $(SYSIO_LABEL_NAMES) -I$(top_srcdir)/include 
+ 
++subdir = tests
++ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
++mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
++CONFIG_CLEAN_FILES =
++LIBRARIES = $(lib_LIBRARIES)
++
++libruntime_a_AR = $(AR) cru
++libruntime_a_LIBADD =
++am_libruntime_a_OBJECTS = sysio-run-start.$(OBJEXT) startup.$(OBJEXT) \
++	drv_init_all.$(OBJEXT) drv_data.$(OBJEXT)
++libruntime_a_OBJECTS = $(am_libruntime_a_OBJECTS)
++noinst_PROGRAMS = test_copy$(EXEEXT) test_stats$(EXEEXT) \
++	test_path$(EXEEXT) test_list$(EXEEXT) test_getcwd$(EXEEXT) \
++	test_link$(EXEEXT) test_unlink$(EXEEXT) test_symlink$(EXEEXT) \
++	test_rename$(EXEEXT) test_regions$(EXEEXT) test_stddir$(EXEEXT) \
++	test_fcntl_lock$(EXEEXT) test_mknod$(EXEEXT) \
++	test_mkdir$(EXEEXT) test_chown$(EXEEXT)
++PROGRAMS = $(noinst_PROGRAMS)
++
++am__objects_1 = test_chown-startup.$(OBJEXT) \
++	test_chown-drv_init_all.$(OBJEXT) test_chown-drv_data.$(OBJEXT)
++am_test_chown_OBJECTS = test_chown-test_chown.$(OBJEXT) $(am__objects_1)
++test_chown_OBJECTS = $(am_test_chown_OBJECTS)
++test_chown_LDADD = $(LDADD)
++test_chown_LDFLAGS =
++am__objects_2 = test_copy-startup.$(OBJEXT) \
++	test_copy-drv_init_all.$(OBJEXT) test_copy-drv_data.$(OBJEXT)
++am_test_copy_OBJECTS = test_copy-test_copy.$(OBJEXT) $(am__objects_2)
++test_copy_OBJECTS = $(am_test_copy_OBJECTS)
++test_copy_LDADD = $(LDADD)
++test_copy_LDFLAGS =
++am__objects_3 = test_fcntl_lock-startup.$(OBJEXT) \
++	test_fcntl_lock-drv_init_all.$(OBJEXT) \
++	test_fcntl_lock-drv_data.$(OBJEXT)
++am_test_fcntl_lock_OBJECTS = test_fcntl_lock-test_fcntl_lock.$(OBJEXT) \
++	$(am__objects_3)
++test_fcntl_lock_OBJECTS = $(am_test_fcntl_lock_OBJECTS)
++test_fcntl_lock_LDADD = $(LDADD)
++test_fcntl_lock_LDFLAGS =
++am__objects_4 = test_getcwd-startup.$(OBJEXT) \
++	test_getcwd-drv_init_all.$(OBJEXT) \
++	test_getcwd-drv_data.$(OBJEXT)
++am_test_getcwd_OBJECTS = test_getcwd-test_getcwd.$(OBJEXT) \
++	$(am__objects_4)
++test_getcwd_OBJECTS = $(am_test_getcwd_OBJECTS)
++test_getcwd_LDADD = $(LDADD)
++test_getcwd_LDFLAGS =
++am__objects_5 = test_link-startup.$(OBJEXT) \
++	test_link-drv_init_all.$(OBJEXT) test_link-drv_data.$(OBJEXT)
++am_test_link_OBJECTS = test_link-test_link.$(OBJEXT) $(am__objects_5)
++test_link_OBJECTS = $(am_test_link_OBJECTS)
++test_link_LDADD = $(LDADD)
++test_link_LDFLAGS =
++am__objects_6 = test_list-startup.$(OBJEXT) \
++	test_list-drv_init_all.$(OBJEXT) test_list-drv_data.$(OBJEXT)
++am_test_list_OBJECTS = test_list-test_list.$(OBJEXT) $(am__objects_6)
++test_list_OBJECTS = $(am_test_list_OBJECTS)
++test_list_LDADD = $(LDADD)
++test_list_LDFLAGS =
++am__objects_7 = test_mkdir-startup.$(OBJEXT) \
++	test_mkdir-drv_init_all.$(OBJEXT) test_mkdir-drv_data.$(OBJEXT)
++am_test_mkdir_OBJECTS = test_mkdir-test_mkdir.$(OBJEXT) $(am__objects_7)
++test_mkdir_OBJECTS = $(am_test_mkdir_OBJECTS)
++test_mkdir_LDADD = $(LDADD)
++test_mkdir_LDFLAGS =
++am__objects_8 = test_mknod-startup.$(OBJEXT) \
++	test_mknod-drv_init_all.$(OBJEXT) test_mknod-drv_data.$(OBJEXT)
++am_test_mknod_OBJECTS = test_mknod-test_mknod.$(OBJEXT) $(am__objects_8)
++test_mknod_OBJECTS = $(am_test_mknod_OBJECTS)
++test_mknod_LDADD = $(LDADD)
++test_mknod_LDFLAGS =
++am__objects_9 = test_path-startup.$(OBJEXT) \
++	test_path-drv_init_all.$(OBJEXT) test_path-drv_data.$(OBJEXT)
++am_test_path_OBJECTS = test_path-test_path.$(OBJEXT) $(am__objects_9)
++test_path_OBJECTS = $(am_test_path_OBJECTS)
++test_path_LDADD = $(LDADD)
++test_path_LDFLAGS =
++am__objects_10 = test_regions-startup.$(OBJEXT) \
++	test_regions-drv_init_all.$(OBJEXT) \
++	test_regions-drv_data.$(OBJEXT)
++am_test_regions_OBJECTS = test_regions-test_regions.$(OBJEXT) \
++	$(am__objects_10)
++test_regions_OBJECTS = $(am_test_regions_OBJECTS)
++test_regions_LDADD = $(LDADD)
++test_regions_LDFLAGS =
++am__objects_11 = test_rename-startup.$(OBJEXT) \
++	test_rename-drv_init_all.$(OBJEXT) \
++	test_rename-drv_data.$(OBJEXT)
++am_test_rename_OBJECTS = test_rename-test_rename.$(OBJEXT) \
++	$(am__objects_11)
++test_rename_OBJECTS = $(am_test_rename_OBJECTS)
++test_rename_LDADD = $(LDADD)
++test_rename_LDFLAGS =
++am__objects_12 = test_stats-startup.$(OBJEXT) \
++	test_stats-drv_init_all.$(OBJEXT) test_stats-drv_data.$(OBJEXT)
++am_test_stats_OBJECTS = test_stats-test_stats.$(OBJEXT) \
++	$(am__objects_12)
++test_stats_OBJECTS = $(am_test_stats_OBJECTS)
++test_stats_LDADD = $(LDADD)
++test_stats_LDFLAGS =
++am__objects_13 = test_stddir-startup.$(OBJEXT) \
++	test_stddir-drv_init_all.$(OBJEXT) \
++	test_stddir-drv_data.$(OBJEXT)
++am_test_stddir_OBJECTS = test_stddir-test_stddir.$(OBJEXT) \
++	$(am__objects_13)
++test_stddir_OBJECTS = $(am_test_stddir_OBJECTS)
++test_stddir_LDADD = $(LDADD)
++test_stddir_LDFLAGS =
++am__objects_14 = test_symlink-startup.$(OBJEXT) \
++	test_symlink-drv_init_all.$(OBJEXT) \
++	test_symlink-drv_data.$(OBJEXT)
++am_test_symlink_OBJECTS = test_symlink-test_symlink.$(OBJEXT) \
++	$(am__objects_14)
++test_symlink_OBJECTS = $(am_test_symlink_OBJECTS)
++test_symlink_LDADD = $(LDADD)
++test_symlink_LDFLAGS =
++am__objects_15 = test_unlink-startup.$(OBJEXT) \
++	test_unlink-drv_init_all.$(OBJEXT) \
++	test_unlink-drv_data.$(OBJEXT)
++am_test_unlink_OBJECTS = test_unlink-test_unlink.$(OBJEXT) \
++	$(am__objects_15)
++test_unlink_OBJECTS = $(am_test_unlink_OBJECTS)
++test_unlink_LDADD = $(LDADD)
++test_unlink_LDFLAGS =
++
++DEFAULT_INCLUDES =  -I. -I$(srcdir)
++depcomp = $(SHELL) $(top_srcdir)/depcomp
++am__depfiles_maybe = depfiles
++ at AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/drv_init_all.Po ./$(DEPDIR)/startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/sysio-run-start.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_chown-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_chown-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_chown-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_chown-test_chown.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_copy-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_copy-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_copy-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_copy-test_copy.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_fcntl_lock-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_fcntl_lock-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_fcntl_lock-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_getcwd-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_getcwd-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_getcwd-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_getcwd-test_getcwd.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_link-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_link-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_link-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_link-test_link.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_list-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_list-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_list-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_list-test_list.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_mkdir-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_mkdir-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_mkdir-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_mkdir-test_mkdir.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_mknod-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_mknod-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_mknod-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_mknod-test_mknod.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_path-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_path-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_path-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_path-test_path.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_regions-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_regions-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_regions-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_regions-test_regions.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_rename-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_rename-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_rename-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_rename-test_rename.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_stats-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_stats-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_stats-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_stats-test_stats.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_stddir-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_stddir-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_stddir-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_stddir-test_stddir.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_symlink-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_symlink-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_symlink-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_symlink-test_symlink.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_unlink-drv_data.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_unlink-drv_init_all.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_unlink-startup.Po \
++ at AMDEP_TRUE@	./$(DEPDIR)/test_unlink-test_unlink.Po
++COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
++	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
++CCLD = $(CC)
++LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
++DIST_SOURCES = $(libruntime_a_SOURCES) $(test_chown_SOURCES) \
++	$(test_copy_SOURCES) $(test_fcntl_lock_SOURCES) \
++	$(test_getcwd_SOURCES) $(test_link_SOURCES) \
++	$(test_list_SOURCES) $(test_mkdir_SOURCES) \
++	$(test_mknod_SOURCES) $(test_path_SOURCES) \
++	$(test_regions_SOURCES) $(test_rename_SOURCES) \
++	$(test_stats_SOURCES) $(test_stddir_SOURCES) \
++	$(test_symlink_SOURCES) $(test_unlink_SOURCES)
++DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/Rules.make \
++	Makefile.am
++SOURCES = $(libruntime_a_SOURCES) $(test_chown_SOURCES) $(test_copy_SOURCES) $(test_fcntl_lock_SOURCES) $(test_getcwd_SOURCES) $(test_link_SOURCES) $(test_list_SOURCES) $(test_mkdir_SOURCES) $(test_mknod_SOURCES) $(test_path_SOURCES) $(test_regions_SOURCES) $(test_rename_SOURCES) $(test_stats_SOURCES) $(test_stddir_SOURCES) $(test_symlink_SOURCES) $(test_unlink_SOURCES)
++
+ all: $(BUILT_SOURCES)
+ 	$(MAKE) $(AM_MAKEFLAGS) all-am
+ 
+ .SUFFIXES:
+ .SUFFIXES: .c .o .obj
+-$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(top_srcdir)/Rules.make $(am__configure_deps)
+-	@for dep in $?; do \
+-	  case '$(am__configure_deps)' in \
+-	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
+-	      exit 1;; \
+-	  esac; \
+-	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  tests/Makefile'; \
++$(srcdir)/Makefile.in:  Makefile.am $(top_srcdir)/Rules.make $(top_srcdir)/configure.in $(ACLOCAL_M4)
+ 	cd $(top_srcdir) && \
+ 	  $(AUTOMAKE) --gnu  tests/Makefile
+-.PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+-	@case '$?' in \
+-	  *config.status*) \
+-	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
+-	  *) \
+-	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
+-	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+-	esac;
+-
+-$(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
++AR = ar
++libLIBRARIES_INSTALL = $(INSTALL_DATA)
+ install-libLIBRARIES: $(lib_LIBRARIES)
+ 	@$(NORMAL_INSTALL)
+-	test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
++	$(mkinstalldirs) $(DESTDIR)$(libdir)
+ 	@list='$(lib_LIBRARIES)'; for p in $$list; do \
+ 	  if test -f $$p; then \
+-	    f=$(am__strip_dir) \
+-	    echo " $(libLIBRARIES_INSTALL) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
+-	    $(libLIBRARIES_INSTALL) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
++	    f="`echo $$p | sed -e 's|^.*/||'`"; \
++	    echo " $(libLIBRARIES_INSTALL) $$p $(DESTDIR)$(libdir)/$$f"; \
++	    $(libLIBRARIES_INSTALL) $$p $(DESTDIR)$(libdir)/$$f; \
+ 	  else :; fi; \
+ 	done
+ 	@$(POST_INSTALL)
+ 	@list='$(lib_LIBRARIES)'; for p in $$list; do \
+ 	  if test -f $$p; then \
+-	    p=$(am__strip_dir) \
+-	    echo " $(RANLIB) '$(DESTDIR)$(libdir)/$$p'"; \
+-	    $(RANLIB) "$(DESTDIR)$(libdir)/$$p"; \
++	    p="`echo $$p | sed -e 's|^.*/||'`"; \
++	    echo " $(RANLIB) $(DESTDIR)$(libdir)/$$p"; \
++	    $(RANLIB) $(DESTDIR)$(libdir)/$$p; \
+ 	  else :; fi; \
+ 	done
+ 
+ uninstall-libLIBRARIES:
+ 	@$(NORMAL_UNINSTALL)
+ 	@list='$(lib_LIBRARIES)'; for p in $$list; do \
+-	  p=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(libdir)/$$p'"; \
+-	  rm -f "$(DESTDIR)$(libdir)/$$p"; \
++	  p="`echo $$p | sed -e 's|^.*/||'`"; \
++	  echo " rm -f $(DESTDIR)$(libdir)/$$p"; \
++	  rm -f $(DESTDIR)$(libdir)/$$p; \
+ 	done
+ 
+ clean-libLIBRARIES:
+@@ -499,7 +568,7 @@
+ 	$(LINK) $(test_unlink_LDFLAGS) $(test_unlink_OBJECTS) $(test_unlink_LDADD) $(LIBS)
+ 
+ mostlyclean-compile:
+-	-rm -f *.$(OBJEXT)
++	-rm -f *.$(OBJEXT) core *.core
+ 
+ distclean-compile:
+ 	-rm -f *.tab.c
+@@ -570,862 +639,1356 @@
+ @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/test_unlink-test_unlink.Po at am__quote@
+ 
+ .c.o:
+- at am__fastdepCC_TRUE@	depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`; \
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$$depbase.Tpo" -c -o $@ $<; \
+- at am__fastdepCC_TRUE@	then mv -f "$$depbase.Tpo" "$$depbase.Po"; else rm -f "$$depbase.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c -o $@ $<
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(COMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
+ 
+ .c.obj:
+- at am__fastdepCC_TRUE@	depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`; \
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$$depbase.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
+- at am__fastdepCC_TRUE@	then mv -f "$$depbase.Tpo" "$$depbase.Po"; else rm -f "$$depbase.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at am__fastdepCC_FALSE@	$(COMPILE) -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`
+ 
+ test_chown-test_chown.o: test_chown.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-test_chown.o -MD -MP -MF "$(DEPDIR)/test_chown-test_chown.Tpo" -c -o test_chown-test_chown.o `test -f 'test_chown.c' || echo '$(srcdir)/'`test_chown.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-test_chown.Tpo" "$(DEPDIR)/test_chown-test_chown.Po"; else rm -f "$(DEPDIR)/test_chown-test_chown.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-test_chown.o -MD -MP -MF "$(DEPDIR)/test_chown-test_chown.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_chown-test_chown.o `test -f 'test_chown.c' || echo '$(srcdir)/'`test_chown.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-test_chown.Tpo" "$(DEPDIR)/test_chown-test_chown.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_chown-test_chown.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_chown.c' object='test_chown-test_chown.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_chown-test_chown.Po' tmpdepfile='$(DEPDIR)/test_chown-test_chown.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -c -o test_chown-test_chown.o `test -f 'test_chown.c' || echo '$(srcdir)/'`test_chown.c
+ 
+ test_chown-test_chown.obj: test_chown.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-test_chown.obj -MD -MP -MF "$(DEPDIR)/test_chown-test_chown.Tpo" -c -o test_chown-test_chown.obj `if test -f 'test_chown.c'; then $(CYGPATH_W) 'test_chown.c'; else $(CYGPATH_W) '$(srcdir)/test_chown.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-test_chown.Tpo" "$(DEPDIR)/test_chown-test_chown.Po"; else rm -f "$(DEPDIR)/test_chown-test_chown.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-test_chown.obj -MD -MP -MF "$(DEPDIR)/test_chown-test_chown.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_chown-test_chown.obj `if test -f 'test_chown.c'; then $(CYGPATH_W) 'test_chown.c'; else $(CYGPATH_W) '$(srcdir)/test_chown.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-test_chown.Tpo" "$(DEPDIR)/test_chown-test_chown.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_chown-test_chown.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_chown.c' object='test_chown-test_chown.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_chown-test_chown.Po' tmpdepfile='$(DEPDIR)/test_chown-test_chown.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -c -o test_chown-test_chown.obj `if test -f 'test_chown.c'; then $(CYGPATH_W) 'test_chown.c'; else $(CYGPATH_W) '$(srcdir)/test_chown.c'; fi`
+ 
+ test_chown-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-startup.o -MD -MP -MF "$(DEPDIR)/test_chown-startup.Tpo" -c -o test_chown-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-startup.Tpo" "$(DEPDIR)/test_chown-startup.Po"; else rm -f "$(DEPDIR)/test_chown-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-startup.o -MD -MP -MF "$(DEPDIR)/test_chown-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_chown-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-startup.Tpo" "$(DEPDIR)/test_chown-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_chown-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_chown-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_chown-startup.Po' tmpdepfile='$(DEPDIR)/test_chown-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -c -o test_chown-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_chown-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-startup.obj -MD -MP -MF "$(DEPDIR)/test_chown-startup.Tpo" -c -o test_chown-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-startup.Tpo" "$(DEPDIR)/test_chown-startup.Po"; else rm -f "$(DEPDIR)/test_chown-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-startup.obj -MD -MP -MF "$(DEPDIR)/test_chown-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_chown-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-startup.Tpo" "$(DEPDIR)/test_chown-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_chown-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_chown-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_chown-startup.Po' tmpdepfile='$(DEPDIR)/test_chown-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -c -o test_chown-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_chown-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_chown-drv_init_all.Tpo" -c -o test_chown-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-drv_init_all.Tpo" "$(DEPDIR)/test_chown-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_chown-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_chown-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_chown-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-drv_init_all.Tpo" "$(DEPDIR)/test_chown-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_chown-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_chown-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_chown-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_chown-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -c -o test_chown-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_chown-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_chown-drv_init_all.Tpo" -c -o test_chown-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-drv_init_all.Tpo" "$(DEPDIR)/test_chown-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_chown-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_chown-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_chown-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-drv_init_all.Tpo" "$(DEPDIR)/test_chown-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_chown-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_chown-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_chown-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_chown-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -c -o test_chown-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_chown-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-drv_data.o -MD -MP -MF "$(DEPDIR)/test_chown-drv_data.Tpo" -c -o test_chown-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-drv_data.Tpo" "$(DEPDIR)/test_chown-drv_data.Po"; else rm -f "$(DEPDIR)/test_chown-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-drv_data.o -MD -MP -MF "$(DEPDIR)/test_chown-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_chown-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-drv_data.Tpo" "$(DEPDIR)/test_chown-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_chown-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_chown-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_chown-drv_data.Po' tmpdepfile='$(DEPDIR)/test_chown-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -c -o test_chown-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_chown-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_chown-drv_data.Tpo" -c -o test_chown-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-drv_data.Tpo" "$(DEPDIR)/test_chown-drv_data.Po"; else rm -f "$(DEPDIR)/test_chown-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -MT test_chown-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_chown-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_chown-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_chown-drv_data.Tpo" "$(DEPDIR)/test_chown-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_chown-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_chown-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_chown-drv_data.Po' tmpdepfile='$(DEPDIR)/test_chown-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_chown_CFLAGS) $(CFLAGS) -c -o test_chown-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ 
+ test_copy-test_copy.o: test_copy.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-test_copy.o -MD -MP -MF "$(DEPDIR)/test_copy-test_copy.Tpo" -c -o test_copy-test_copy.o `test -f 'test_copy.c' || echo '$(srcdir)/'`test_copy.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-test_copy.Tpo" "$(DEPDIR)/test_copy-test_copy.Po"; else rm -f "$(DEPDIR)/test_copy-test_copy.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-test_copy.o -MD -MP -MF "$(DEPDIR)/test_copy-test_copy.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_copy-test_copy.o `test -f 'test_copy.c' || echo '$(srcdir)/'`test_copy.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-test_copy.Tpo" "$(DEPDIR)/test_copy-test_copy.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_copy-test_copy.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_copy.c' object='test_copy-test_copy.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_copy-test_copy.Po' tmpdepfile='$(DEPDIR)/test_copy-test_copy.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -c -o test_copy-test_copy.o `test -f 'test_copy.c' || echo '$(srcdir)/'`test_copy.c
+ 
+ test_copy-test_copy.obj: test_copy.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-test_copy.obj -MD -MP -MF "$(DEPDIR)/test_copy-test_copy.Tpo" -c -o test_copy-test_copy.obj `if test -f 'test_copy.c'; then $(CYGPATH_W) 'test_copy.c'; else $(CYGPATH_W) '$(srcdir)/test_copy.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-test_copy.Tpo" "$(DEPDIR)/test_copy-test_copy.Po"; else rm -f "$(DEPDIR)/test_copy-test_copy.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-test_copy.obj -MD -MP -MF "$(DEPDIR)/test_copy-test_copy.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_copy-test_copy.obj `if test -f 'test_copy.c'; then $(CYGPATH_W) 'test_copy.c'; else $(CYGPATH_W) '$(srcdir)/test_copy.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-test_copy.Tpo" "$(DEPDIR)/test_copy-test_copy.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_copy-test_copy.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_copy.c' object='test_copy-test_copy.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_copy-test_copy.Po' tmpdepfile='$(DEPDIR)/test_copy-test_copy.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -c -o test_copy-test_copy.obj `if test -f 'test_copy.c'; then $(CYGPATH_W) 'test_copy.c'; else $(CYGPATH_W) '$(srcdir)/test_copy.c'; fi`
+ 
+ test_copy-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-startup.o -MD -MP -MF "$(DEPDIR)/test_copy-startup.Tpo" -c -o test_copy-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-startup.Tpo" "$(DEPDIR)/test_copy-startup.Po"; else rm -f "$(DEPDIR)/test_copy-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-startup.o -MD -MP -MF "$(DEPDIR)/test_copy-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_copy-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-startup.Tpo" "$(DEPDIR)/test_copy-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_copy-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_copy-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_copy-startup.Po' tmpdepfile='$(DEPDIR)/test_copy-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -c -o test_copy-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_copy-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-startup.obj -MD -MP -MF "$(DEPDIR)/test_copy-startup.Tpo" -c -o test_copy-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-startup.Tpo" "$(DEPDIR)/test_copy-startup.Po"; else rm -f "$(DEPDIR)/test_copy-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-startup.obj -MD -MP -MF "$(DEPDIR)/test_copy-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_copy-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-startup.Tpo" "$(DEPDIR)/test_copy-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_copy-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_copy-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_copy-startup.Po' tmpdepfile='$(DEPDIR)/test_copy-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -c -o test_copy-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_copy-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_copy-drv_init_all.Tpo" -c -o test_copy-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-drv_init_all.Tpo" "$(DEPDIR)/test_copy-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_copy-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_copy-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_copy-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-drv_init_all.Tpo" "$(DEPDIR)/test_copy-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_copy-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_copy-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_copy-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_copy-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -c -o test_copy-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_copy-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_copy-drv_init_all.Tpo" -c -o test_copy-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-drv_init_all.Tpo" "$(DEPDIR)/test_copy-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_copy-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_copy-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_copy-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-drv_init_all.Tpo" "$(DEPDIR)/test_copy-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_copy-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_copy-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_copy-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_copy-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -c -o test_copy-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_copy-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-drv_data.o -MD -MP -MF "$(DEPDIR)/test_copy-drv_data.Tpo" -c -o test_copy-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-drv_data.Tpo" "$(DEPDIR)/test_copy-drv_data.Po"; else rm -f "$(DEPDIR)/test_copy-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-drv_data.o -MD -MP -MF "$(DEPDIR)/test_copy-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_copy-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-drv_data.Tpo" "$(DEPDIR)/test_copy-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_copy-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_copy-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_copy-drv_data.Po' tmpdepfile='$(DEPDIR)/test_copy-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -c -o test_copy-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_copy-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_copy-drv_data.Tpo" -c -o test_copy-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-drv_data.Tpo" "$(DEPDIR)/test_copy-drv_data.Po"; else rm -f "$(DEPDIR)/test_copy-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -MT test_copy-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_copy-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_copy-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_copy-drv_data.Tpo" "$(DEPDIR)/test_copy-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_copy-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_copy-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_copy-drv_data.Po' tmpdepfile='$(DEPDIR)/test_copy-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_copy_CFLAGS) $(CFLAGS) -c -o test_copy-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ 
+ test_fcntl_lock-test_fcntl_lock.o: test_fcntl_lock.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-test_fcntl_lock.o -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Tpo" -c -o test_fcntl_lock-test_fcntl_lock.o `test -f 'test_fcntl_lock.c' || echo '$(srcdir)/'`test_fcntl_lock.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Tpo" "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Po"; else rm -f "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-test_fcntl_lock.o -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_fcntl_lock-test_fcntl_lock.o `test -f 'test_fcntl_lock.c' || echo '$(srcdir)/'`test_fcntl_lock.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Tpo" "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_fcntl_lock.c' object='test_fcntl_lock-test_fcntl_lock.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Po' tmpdepfile='$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -c -o test_fcntl_lock-test_fcntl_lock.o `test -f 'test_fcntl_lock.c' || echo '$(srcdir)/'`test_fcntl_lock.c
+ 
+ test_fcntl_lock-test_fcntl_lock.obj: test_fcntl_lock.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-test_fcntl_lock.obj -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Tpo" -c -o test_fcntl_lock-test_fcntl_lock.obj `if test -f 'test_fcntl_lock.c'; then $(CYGPATH_W) 'test_fcntl_lock.c'; else $(CYGPATH_W) '$(srcdir)/test_fcntl_lock.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Tpo" "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Po"; else rm -f "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-test_fcntl_lock.obj -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_fcntl_lock-test_fcntl_lock.obj `if test -f 'test_fcntl_lock.c'; then $(CYGPATH_W) 'test_fcntl_lock.c'; else $(CYGPATH_W) '$(srcdir)/test_fcntl_lock.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Tpo" "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_fcntl_lock.c' object='test_fcntl_lock-test_fcntl_lock.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.Po' tmpdepfile='$(DEPDIR)/test_fcntl_lock-test_fcntl_lock.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -c -o test_fcntl_lock-test_fcntl_lock.obj `if test -f 'test_fcntl_lock.c'; then $(CYGPATH_W) 'test_fcntl_lock.c'; else $(CYGPATH_W) '$(srcdir)/test_fcntl_lock.c'; fi`
+ 
+ test_fcntl_lock-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-startup.o -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-startup.Tpo" -c -o test_fcntl_lock-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-startup.Tpo" "$(DEPDIR)/test_fcntl_lock-startup.Po"; else rm -f "$(DEPDIR)/test_fcntl_lock-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-startup.o -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_fcntl_lock-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-startup.Tpo" "$(DEPDIR)/test_fcntl_lock-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_fcntl_lock-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_fcntl_lock-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_fcntl_lock-startup.Po' tmpdepfile='$(DEPDIR)/test_fcntl_lock-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -c -o test_fcntl_lock-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_fcntl_lock-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-startup.obj -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-startup.Tpo" -c -o test_fcntl_lock-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-startup.Tpo" "$(DEPDIR)/test_fcntl_lock-startup.Po"; else rm -f "$(DEPDIR)/test_fcntl_lock-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-startup.obj -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_fcntl_lock-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-startup.Tpo" "$(DEPDIR)/test_fcntl_lock-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_fcntl_lock-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_fcntl_lock-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_fcntl_lock-startup.Po' tmpdepfile='$(DEPDIR)/test_fcntl_lock-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -c -o test_fcntl_lock-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_fcntl_lock-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-drv_init_all.Tpo" -c -o test_fcntl_lock-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-drv_init_all.Tpo" "$(DEPDIR)/test_fcntl_lock-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_fcntl_lock-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_fcntl_lock-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-drv_init_all.Tpo" "$(DEPDIR)/test_fcntl_lock-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_fcntl_lock-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_fcntl_lock-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_fcntl_lock-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_fcntl_lock-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -c -o test_fcntl_lock-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_fcntl_lock-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-drv_init_all.Tpo" -c -o test_fcntl_lock-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-drv_init_all.Tpo" "$(DEPDIR)/test_fcntl_lock-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_fcntl_lock-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_fcntl_lock-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-drv_init_all.Tpo" "$(DEPDIR)/test_fcntl_lock-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_fcntl_lock-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_fcntl_lock-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_fcntl_lock-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_fcntl_lock-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -c -o test_fcntl_lock-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_fcntl_lock-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-drv_data.o -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-drv_data.Tpo" -c -o test_fcntl_lock-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-drv_data.Tpo" "$(DEPDIR)/test_fcntl_lock-drv_data.Po"; else rm -f "$(DEPDIR)/test_fcntl_lock-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-drv_data.o -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_fcntl_lock-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-drv_data.Tpo" "$(DEPDIR)/test_fcntl_lock-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_fcntl_lock-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_fcntl_lock-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_fcntl_lock-drv_data.Po' tmpdepfile='$(DEPDIR)/test_fcntl_lock-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -c -o test_fcntl_lock-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_fcntl_lock-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-drv_data.Tpo" -c -o test_fcntl_lock-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-drv_data.Tpo" "$(DEPDIR)/test_fcntl_lock-drv_data.Po"; else rm -f "$(DEPDIR)/test_fcntl_lock-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -MT test_fcntl_lock-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_fcntl_lock-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_fcntl_lock-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_fcntl_lock-drv_data.Tpo" "$(DEPDIR)/test_fcntl_lock-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_fcntl_lock-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_fcntl_lock-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_fcntl_lock-drv_data.Po' tmpdepfile='$(DEPDIR)/test_fcntl_lock-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_fcntl_lock_CFLAGS) $(CFLAGS) -c -o test_fcntl_lock-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ 
+ test_getcwd-test_getcwd.o: test_getcwd.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-test_getcwd.o -MD -MP -MF "$(DEPDIR)/test_getcwd-test_getcwd.Tpo" -c -o test_getcwd-test_getcwd.o `test -f 'test_getcwd.c' || echo '$(srcdir)/'`test_getcwd.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-test_getcwd.Tpo" "$(DEPDIR)/test_getcwd-test_getcwd.Po"; else rm -f "$(DEPDIR)/test_getcwd-test_getcwd.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-test_getcwd.o -MD -MP -MF "$(DEPDIR)/test_getcwd-test_getcwd.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_getcwd-test_getcwd.o `test -f 'test_getcwd.c' || echo '$(srcdir)/'`test_getcwd.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-test_getcwd.Tpo" "$(DEPDIR)/test_getcwd-test_getcwd.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_getcwd-test_getcwd.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_getcwd.c' object='test_getcwd-test_getcwd.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_getcwd-test_getcwd.Po' tmpdepfile='$(DEPDIR)/test_getcwd-test_getcwd.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -c -o test_getcwd-test_getcwd.o `test -f 'test_getcwd.c' || echo '$(srcdir)/'`test_getcwd.c
+ 
+ test_getcwd-test_getcwd.obj: test_getcwd.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-test_getcwd.obj -MD -MP -MF "$(DEPDIR)/test_getcwd-test_getcwd.Tpo" -c -o test_getcwd-test_getcwd.obj `if test -f 'test_getcwd.c'; then $(CYGPATH_W) 'test_getcwd.c'; else $(CYGPATH_W) '$(srcdir)/test_getcwd.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-test_getcwd.Tpo" "$(DEPDIR)/test_getcwd-test_getcwd.Po"; else rm -f "$(DEPDIR)/test_getcwd-test_getcwd.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-test_getcwd.obj -MD -MP -MF "$(DEPDIR)/test_getcwd-test_getcwd.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_getcwd-test_getcwd.obj `if test -f 'test_getcwd.c'; then $(CYGPATH_W) 'test_getcwd.c'; else $(CYGPATH_W) '$(srcdir)/test_getcwd.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-test_getcwd.Tpo" "$(DEPDIR)/test_getcwd-test_getcwd.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_getcwd-test_getcwd.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_getcwd.c' object='test_getcwd-test_getcwd.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_getcwd-test_getcwd.Po' tmpdepfile='$(DEPDIR)/test_getcwd-test_getcwd.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -c -o test_getcwd-test_getcwd.obj `if test -f 'test_getcwd.c'; then $(CYGPATH_W) 'test_getcwd.c'; else $(CYGPATH_W) '$(srcdir)/test_getcwd.c'; fi`
+ 
+ test_getcwd-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-startup.o -MD -MP -MF "$(DEPDIR)/test_getcwd-startup.Tpo" -c -o test_getcwd-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-startup.Tpo" "$(DEPDIR)/test_getcwd-startup.Po"; else rm -f "$(DEPDIR)/test_getcwd-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-startup.o -MD -MP -MF "$(DEPDIR)/test_getcwd-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_getcwd-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-startup.Tpo" "$(DEPDIR)/test_getcwd-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_getcwd-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_getcwd-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_getcwd-startup.Po' tmpdepfile='$(DEPDIR)/test_getcwd-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -c -o test_getcwd-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_getcwd-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-startup.obj -MD -MP -MF "$(DEPDIR)/test_getcwd-startup.Tpo" -c -o test_getcwd-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-startup.Tpo" "$(DEPDIR)/test_getcwd-startup.Po"; else rm -f "$(DEPDIR)/test_getcwd-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-startup.obj -MD -MP -MF "$(DEPDIR)/test_getcwd-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_getcwd-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-startup.Tpo" "$(DEPDIR)/test_getcwd-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_getcwd-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_getcwd-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_getcwd-startup.Po' tmpdepfile='$(DEPDIR)/test_getcwd-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -c -o test_getcwd-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_getcwd-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_getcwd-drv_init_all.Tpo" -c -o test_getcwd-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-drv_init_all.Tpo" "$(DEPDIR)/test_getcwd-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_getcwd-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_getcwd-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_getcwd-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-drv_init_all.Tpo" "$(DEPDIR)/test_getcwd-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_getcwd-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_getcwd-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_getcwd-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_getcwd-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -c -o test_getcwd-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_getcwd-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_getcwd-drv_init_all.Tpo" -c -o test_getcwd-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-drv_init_all.Tpo" "$(DEPDIR)/test_getcwd-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_getcwd-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_getcwd-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_getcwd-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-drv_init_all.Tpo" "$(DEPDIR)/test_getcwd-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_getcwd-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_getcwd-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_getcwd-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_getcwd-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -c -o test_getcwd-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_getcwd-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-drv_data.o -MD -MP -MF "$(DEPDIR)/test_getcwd-drv_data.Tpo" -c -o test_getcwd-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-drv_data.Tpo" "$(DEPDIR)/test_getcwd-drv_data.Po"; else rm -f "$(DEPDIR)/test_getcwd-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-drv_data.o -MD -MP -MF "$(DEPDIR)/test_getcwd-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_getcwd-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-drv_data.Tpo" "$(DEPDIR)/test_getcwd-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_getcwd-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_getcwd-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_getcwd-drv_data.Po' tmpdepfile='$(DEPDIR)/test_getcwd-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -c -o test_getcwd-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_getcwd-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_getcwd-drv_data.Tpo" -c -o test_getcwd-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-drv_data.Tpo" "$(DEPDIR)/test_getcwd-drv_data.Po"; else rm -f "$(DEPDIR)/test_getcwd-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -MT test_getcwd-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_getcwd-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_getcwd-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_getcwd-drv_data.Tpo" "$(DEPDIR)/test_getcwd-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_getcwd-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_getcwd-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_getcwd-drv_data.Po' tmpdepfile='$(DEPDIR)/test_getcwd-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_getcwd_CFLAGS) $(CFLAGS) -c -o test_getcwd-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ 
+ test_link-test_link.o: test_link.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-test_link.o -MD -MP -MF "$(DEPDIR)/test_link-test_link.Tpo" -c -o test_link-test_link.o `test -f 'test_link.c' || echo '$(srcdir)/'`test_link.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-test_link.Tpo" "$(DEPDIR)/test_link-test_link.Po"; else rm -f "$(DEPDIR)/test_link-test_link.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-test_link.o -MD -MP -MF "$(DEPDIR)/test_link-test_link.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_link-test_link.o `test -f 'test_link.c' || echo '$(srcdir)/'`test_link.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-test_link.Tpo" "$(DEPDIR)/test_link-test_link.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_link-test_link.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_link.c' object='test_link-test_link.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_link-test_link.Po' tmpdepfile='$(DEPDIR)/test_link-test_link.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -c -o test_link-test_link.o `test -f 'test_link.c' || echo '$(srcdir)/'`test_link.c
+ 
+ test_link-test_link.obj: test_link.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-test_link.obj -MD -MP -MF "$(DEPDIR)/test_link-test_link.Tpo" -c -o test_link-test_link.obj `if test -f 'test_link.c'; then $(CYGPATH_W) 'test_link.c'; else $(CYGPATH_W) '$(srcdir)/test_link.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-test_link.Tpo" "$(DEPDIR)/test_link-test_link.Po"; else rm -f "$(DEPDIR)/test_link-test_link.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-test_link.obj -MD -MP -MF "$(DEPDIR)/test_link-test_link.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_link-test_link.obj `if test -f 'test_link.c'; then $(CYGPATH_W) 'test_link.c'; else $(CYGPATH_W) '$(srcdir)/test_link.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-test_link.Tpo" "$(DEPDIR)/test_link-test_link.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_link-test_link.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_link.c' object='test_link-test_link.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_link-test_link.Po' tmpdepfile='$(DEPDIR)/test_link-test_link.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -c -o test_link-test_link.obj `if test -f 'test_link.c'; then $(CYGPATH_W) 'test_link.c'; else $(CYGPATH_W) '$(srcdir)/test_link.c'; fi`
+ 
+ test_link-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-startup.o -MD -MP -MF "$(DEPDIR)/test_link-startup.Tpo" -c -o test_link-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-startup.Tpo" "$(DEPDIR)/test_link-startup.Po"; else rm -f "$(DEPDIR)/test_link-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-startup.o -MD -MP -MF "$(DEPDIR)/test_link-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_link-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-startup.Tpo" "$(DEPDIR)/test_link-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_link-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_link-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_link-startup.Po' tmpdepfile='$(DEPDIR)/test_link-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -c -o test_link-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_link-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-startup.obj -MD -MP -MF "$(DEPDIR)/test_link-startup.Tpo" -c -o test_link-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-startup.Tpo" "$(DEPDIR)/test_link-startup.Po"; else rm -f "$(DEPDIR)/test_link-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-startup.obj -MD -MP -MF "$(DEPDIR)/test_link-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_link-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-startup.Tpo" "$(DEPDIR)/test_link-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_link-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_link-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_link-startup.Po' tmpdepfile='$(DEPDIR)/test_link-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -c -o test_link-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_link-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_link-drv_init_all.Tpo" -c -o test_link-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-drv_init_all.Tpo" "$(DEPDIR)/test_link-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_link-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_link-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_link-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-drv_init_all.Tpo" "$(DEPDIR)/test_link-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_link-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_link-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_link-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_link-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -c -o test_link-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_link-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_link-drv_init_all.Tpo" -c -o test_link-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-drv_init_all.Tpo" "$(DEPDIR)/test_link-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_link-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_link-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_link-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-drv_init_all.Tpo" "$(DEPDIR)/test_link-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_link-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_link-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_link-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_link-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -c -o test_link-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_link-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-drv_data.o -MD -MP -MF "$(DEPDIR)/test_link-drv_data.Tpo" -c -o test_link-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-drv_data.Tpo" "$(DEPDIR)/test_link-drv_data.Po"; else rm -f "$(DEPDIR)/test_link-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-drv_data.o -MD -MP -MF "$(DEPDIR)/test_link-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_link-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-drv_data.Tpo" "$(DEPDIR)/test_link-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_link-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_link-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_link-drv_data.Po' tmpdepfile='$(DEPDIR)/test_link-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -c -o test_link-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_link-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_link-drv_data.Tpo" -c -o test_link-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-drv_data.Tpo" "$(DEPDIR)/test_link-drv_data.Po"; else rm -f "$(DEPDIR)/test_link-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -MT test_link-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_link-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_link-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_link-drv_data.Tpo" "$(DEPDIR)/test_link-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_link-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_link-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_link-drv_data.Po' tmpdepfile='$(DEPDIR)/test_link-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_link_CFLAGS) $(CFLAGS) -c -o test_link-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ 
+ test_list-test_list.o: test_list.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-test_list.o -MD -MP -MF "$(DEPDIR)/test_list-test_list.Tpo" -c -o test_list-test_list.o `test -f 'test_list.c' || echo '$(srcdir)/'`test_list.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-test_list.Tpo" "$(DEPDIR)/test_list-test_list.Po"; else rm -f "$(DEPDIR)/test_list-test_list.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-test_list.o -MD -MP -MF "$(DEPDIR)/test_list-test_list.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_list-test_list.o `test -f 'test_list.c' || echo '$(srcdir)/'`test_list.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-test_list.Tpo" "$(DEPDIR)/test_list-test_list.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_list-test_list.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_list.c' object='test_list-test_list.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_list-test_list.Po' tmpdepfile='$(DEPDIR)/test_list-test_list.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -c -o test_list-test_list.o `test -f 'test_list.c' || echo '$(srcdir)/'`test_list.c
+ 
+ test_list-test_list.obj: test_list.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-test_list.obj -MD -MP -MF "$(DEPDIR)/test_list-test_list.Tpo" -c -o test_list-test_list.obj `if test -f 'test_list.c'; then $(CYGPATH_W) 'test_list.c'; else $(CYGPATH_W) '$(srcdir)/test_list.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-test_list.Tpo" "$(DEPDIR)/test_list-test_list.Po"; else rm -f "$(DEPDIR)/test_list-test_list.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-test_list.obj -MD -MP -MF "$(DEPDIR)/test_list-test_list.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_list-test_list.obj `if test -f 'test_list.c'; then $(CYGPATH_W) 'test_list.c'; else $(CYGPATH_W) '$(srcdir)/test_list.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-test_list.Tpo" "$(DEPDIR)/test_list-test_list.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_list-test_list.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_list.c' object='test_list-test_list.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_list-test_list.Po' tmpdepfile='$(DEPDIR)/test_list-test_list.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -c -o test_list-test_list.obj `if test -f 'test_list.c'; then $(CYGPATH_W) 'test_list.c'; else $(CYGPATH_W) '$(srcdir)/test_list.c'; fi`
+ 
+ test_list-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-startup.o -MD -MP -MF "$(DEPDIR)/test_list-startup.Tpo" -c -o test_list-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-startup.Tpo" "$(DEPDIR)/test_list-startup.Po"; else rm -f "$(DEPDIR)/test_list-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-startup.o -MD -MP -MF "$(DEPDIR)/test_list-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_list-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-startup.Tpo" "$(DEPDIR)/test_list-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_list-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_list-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_list-startup.Po' tmpdepfile='$(DEPDIR)/test_list-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -c -o test_list-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_list-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-startup.obj -MD -MP -MF "$(DEPDIR)/test_list-startup.Tpo" -c -o test_list-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-startup.Tpo" "$(DEPDIR)/test_list-startup.Po"; else rm -f "$(DEPDIR)/test_list-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-startup.obj -MD -MP -MF "$(DEPDIR)/test_list-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_list-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-startup.Tpo" "$(DEPDIR)/test_list-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_list-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_list-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_list-startup.Po' tmpdepfile='$(DEPDIR)/test_list-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -c -o test_list-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_list-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_list-drv_init_all.Tpo" -c -o test_list-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-drv_init_all.Tpo" "$(DEPDIR)/test_list-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_list-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_list-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_list-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-drv_init_all.Tpo" "$(DEPDIR)/test_list-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_list-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_list-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_list-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_list-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -c -o test_list-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_list-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_list-drv_init_all.Tpo" -c -o test_list-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-drv_init_all.Tpo" "$(DEPDIR)/test_list-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_list-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_list-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_list-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-drv_init_all.Tpo" "$(DEPDIR)/test_list-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_list-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_list-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_list-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_list-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -c -o test_list-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_list-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-drv_data.o -MD -MP -MF "$(DEPDIR)/test_list-drv_data.Tpo" -c -o test_list-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-drv_data.Tpo" "$(DEPDIR)/test_list-drv_data.Po"; else rm -f "$(DEPDIR)/test_list-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-drv_data.o -MD -MP -MF "$(DEPDIR)/test_list-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_list-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-drv_data.Tpo" "$(DEPDIR)/test_list-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_list-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_list-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_list-drv_data.Po' tmpdepfile='$(DEPDIR)/test_list-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -c -o test_list-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_list-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_list-drv_data.Tpo" -c -o test_list-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-drv_data.Tpo" "$(DEPDIR)/test_list-drv_data.Po"; else rm -f "$(DEPDIR)/test_list-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -MT test_list-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_list-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_list-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_list-drv_data.Tpo" "$(DEPDIR)/test_list-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_list-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_list-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_list-drv_data.Po' tmpdepfile='$(DEPDIR)/test_list-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_list_CFLAGS) $(CFLAGS) -c -o test_list-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ 
+ test_mkdir-test_mkdir.o: test_mkdir.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-test_mkdir.o -MD -MP -MF "$(DEPDIR)/test_mkdir-test_mkdir.Tpo" -c -o test_mkdir-test_mkdir.o `test -f 'test_mkdir.c' || echo '$(srcdir)/'`test_mkdir.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-test_mkdir.Tpo" "$(DEPDIR)/test_mkdir-test_mkdir.Po"; else rm -f "$(DEPDIR)/test_mkdir-test_mkdir.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-test_mkdir.o -MD -MP -MF "$(DEPDIR)/test_mkdir-test_mkdir.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mkdir-test_mkdir.o `test -f 'test_mkdir.c' || echo '$(srcdir)/'`test_mkdir.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-test_mkdir.Tpo" "$(DEPDIR)/test_mkdir-test_mkdir.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mkdir-test_mkdir.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_mkdir.c' object='test_mkdir-test_mkdir.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mkdir-test_mkdir.Po' tmpdepfile='$(DEPDIR)/test_mkdir-test_mkdir.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -c -o test_mkdir-test_mkdir.o `test -f 'test_mkdir.c' || echo '$(srcdir)/'`test_mkdir.c
+ 
+ test_mkdir-test_mkdir.obj: test_mkdir.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-test_mkdir.obj -MD -MP -MF "$(DEPDIR)/test_mkdir-test_mkdir.Tpo" -c -o test_mkdir-test_mkdir.obj `if test -f 'test_mkdir.c'; then $(CYGPATH_W) 'test_mkdir.c'; else $(CYGPATH_W) '$(srcdir)/test_mkdir.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-test_mkdir.Tpo" "$(DEPDIR)/test_mkdir-test_mkdir.Po"; else rm -f "$(DEPDIR)/test_mkdir-test_mkdir.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-test_mkdir.obj -MD -MP -MF "$(DEPDIR)/test_mkdir-test_mkdir.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mkdir-test_mkdir.obj `if test -f 'test_mkdir.c'; then $(CYGPATH_W) 'test_mkdir.c'; else $(CYGPATH_W) '$(srcdir)/test_mkdir.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-test_mkdir.Tpo" "$(DEPDIR)/test_mkdir-test_mkdir.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mkdir-test_mkdir.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_mkdir.c' object='test_mkdir-test_mkdir.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mkdir-test_mkdir.Po' tmpdepfile='$(DEPDIR)/test_mkdir-test_mkdir.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -c -o test_mkdir-test_mkdir.obj `if test -f 'test_mkdir.c'; then $(CYGPATH_W) 'test_mkdir.c'; else $(CYGPATH_W) '$(srcdir)/test_mkdir.c'; fi`
+ 
+ test_mkdir-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-startup.o -MD -MP -MF "$(DEPDIR)/test_mkdir-startup.Tpo" -c -o test_mkdir-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-startup.Tpo" "$(DEPDIR)/test_mkdir-startup.Po"; else rm -f "$(DEPDIR)/test_mkdir-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-startup.o -MD -MP -MF "$(DEPDIR)/test_mkdir-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mkdir-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-startup.Tpo" "$(DEPDIR)/test_mkdir-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mkdir-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_mkdir-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mkdir-startup.Po' tmpdepfile='$(DEPDIR)/test_mkdir-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -c -o test_mkdir-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_mkdir-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-startup.obj -MD -MP -MF "$(DEPDIR)/test_mkdir-startup.Tpo" -c -o test_mkdir-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-startup.Tpo" "$(DEPDIR)/test_mkdir-startup.Po"; else rm -f "$(DEPDIR)/test_mkdir-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-startup.obj -MD -MP -MF "$(DEPDIR)/test_mkdir-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mkdir-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-startup.Tpo" "$(DEPDIR)/test_mkdir-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mkdir-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_mkdir-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mkdir-startup.Po' tmpdepfile='$(DEPDIR)/test_mkdir-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -c -o test_mkdir-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_mkdir-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_mkdir-drv_init_all.Tpo" -c -o test_mkdir-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-drv_init_all.Tpo" "$(DEPDIR)/test_mkdir-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_mkdir-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_mkdir-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mkdir-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-drv_init_all.Tpo" "$(DEPDIR)/test_mkdir-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mkdir-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_mkdir-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mkdir-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_mkdir-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -c -o test_mkdir-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_mkdir-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_mkdir-drv_init_all.Tpo" -c -o test_mkdir-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-drv_init_all.Tpo" "$(DEPDIR)/test_mkdir-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_mkdir-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_mkdir-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mkdir-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-drv_init_all.Tpo" "$(DEPDIR)/test_mkdir-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mkdir-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_mkdir-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mkdir-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_mkdir-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -c -o test_mkdir-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_mkdir-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-drv_data.o -MD -MP -MF "$(DEPDIR)/test_mkdir-drv_data.Tpo" -c -o test_mkdir-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-drv_data.Tpo" "$(DEPDIR)/test_mkdir-drv_data.Po"; else rm -f "$(DEPDIR)/test_mkdir-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-drv_data.o -MD -MP -MF "$(DEPDIR)/test_mkdir-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mkdir-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-drv_data.Tpo" "$(DEPDIR)/test_mkdir-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mkdir-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_mkdir-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mkdir-drv_data.Po' tmpdepfile='$(DEPDIR)/test_mkdir-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -c -o test_mkdir-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_mkdir-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_mkdir-drv_data.Tpo" -c -o test_mkdir-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-drv_data.Tpo" "$(DEPDIR)/test_mkdir-drv_data.Po"; else rm -f "$(DEPDIR)/test_mkdir-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -MT test_mkdir-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_mkdir-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mkdir-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mkdir-drv_data.Tpo" "$(DEPDIR)/test_mkdir-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mkdir-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_mkdir-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mkdir-drv_data.Po' tmpdepfile='$(DEPDIR)/test_mkdir-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mkdir_CFLAGS) $(CFLAGS) -c -o test_mkdir-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ 
+ test_mknod-test_mknod.o: test_mknod.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-test_mknod.o -MD -MP -MF "$(DEPDIR)/test_mknod-test_mknod.Tpo" -c -o test_mknod-test_mknod.o `test -f 'test_mknod.c' || echo '$(srcdir)/'`test_mknod.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-test_mknod.Tpo" "$(DEPDIR)/test_mknod-test_mknod.Po"; else rm -f "$(DEPDIR)/test_mknod-test_mknod.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-test_mknod.o -MD -MP -MF "$(DEPDIR)/test_mknod-test_mknod.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mknod-test_mknod.o `test -f 'test_mknod.c' || echo '$(srcdir)/'`test_mknod.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-test_mknod.Tpo" "$(DEPDIR)/test_mknod-test_mknod.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mknod-test_mknod.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_mknod.c' object='test_mknod-test_mknod.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mknod-test_mknod.Po' tmpdepfile='$(DEPDIR)/test_mknod-test_mknod.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -c -o test_mknod-test_mknod.o `test -f 'test_mknod.c' || echo '$(srcdir)/'`test_mknod.c
+ 
+ test_mknod-test_mknod.obj: test_mknod.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-test_mknod.obj -MD -MP -MF "$(DEPDIR)/test_mknod-test_mknod.Tpo" -c -o test_mknod-test_mknod.obj `if test -f 'test_mknod.c'; then $(CYGPATH_W) 'test_mknod.c'; else $(CYGPATH_W) '$(srcdir)/test_mknod.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-test_mknod.Tpo" "$(DEPDIR)/test_mknod-test_mknod.Po"; else rm -f "$(DEPDIR)/test_mknod-test_mknod.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-test_mknod.obj -MD -MP -MF "$(DEPDIR)/test_mknod-test_mknod.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mknod-test_mknod.obj `if test -f 'test_mknod.c'; then $(CYGPATH_W) 'test_mknod.c'; else $(CYGPATH_W) '$(srcdir)/test_mknod.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-test_mknod.Tpo" "$(DEPDIR)/test_mknod-test_mknod.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mknod-test_mknod.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_mknod.c' object='test_mknod-test_mknod.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mknod-test_mknod.Po' tmpdepfile='$(DEPDIR)/test_mknod-test_mknod.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -c -o test_mknod-test_mknod.obj `if test -f 'test_mknod.c'; then $(CYGPATH_W) 'test_mknod.c'; else $(CYGPATH_W) '$(srcdir)/test_mknod.c'; fi`
+ 
+ test_mknod-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-startup.o -MD -MP -MF "$(DEPDIR)/test_mknod-startup.Tpo" -c -o test_mknod-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-startup.Tpo" "$(DEPDIR)/test_mknod-startup.Po"; else rm -f "$(DEPDIR)/test_mknod-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-startup.o -MD -MP -MF "$(DEPDIR)/test_mknod-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mknod-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-startup.Tpo" "$(DEPDIR)/test_mknod-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mknod-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_mknod-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mknod-startup.Po' tmpdepfile='$(DEPDIR)/test_mknod-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -c -o test_mknod-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_mknod-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-startup.obj -MD -MP -MF "$(DEPDIR)/test_mknod-startup.Tpo" -c -o test_mknod-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-startup.Tpo" "$(DEPDIR)/test_mknod-startup.Po"; else rm -f "$(DEPDIR)/test_mknod-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-startup.obj -MD -MP -MF "$(DEPDIR)/test_mknod-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mknod-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-startup.Tpo" "$(DEPDIR)/test_mknod-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mknod-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_mknod-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mknod-startup.Po' tmpdepfile='$(DEPDIR)/test_mknod-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -c -o test_mknod-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_mknod-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_mknod-drv_init_all.Tpo" -c -o test_mknod-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-drv_init_all.Tpo" "$(DEPDIR)/test_mknod-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_mknod-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_mknod-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mknod-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-drv_init_all.Tpo" "$(DEPDIR)/test_mknod-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mknod-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_mknod-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mknod-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_mknod-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -c -o test_mknod-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_mknod-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_mknod-drv_init_all.Tpo" -c -o test_mknod-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-drv_init_all.Tpo" "$(DEPDIR)/test_mknod-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_mknod-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_mknod-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mknod-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-drv_init_all.Tpo" "$(DEPDIR)/test_mknod-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mknod-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_mknod-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mknod-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_mknod-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -c -o test_mknod-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_mknod-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-drv_data.o -MD -MP -MF "$(DEPDIR)/test_mknod-drv_data.Tpo" -c -o test_mknod-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-drv_data.Tpo" "$(DEPDIR)/test_mknod-drv_data.Po"; else rm -f "$(DEPDIR)/test_mknod-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-drv_data.o -MD -MP -MF "$(DEPDIR)/test_mknod-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mknod-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-drv_data.Tpo" "$(DEPDIR)/test_mknod-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mknod-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_mknod-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mknod-drv_data.Po' tmpdepfile='$(DEPDIR)/test_mknod-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -c -o test_mknod-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_mknod-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_mknod-drv_data.Tpo" -c -o test_mknod-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-drv_data.Tpo" "$(DEPDIR)/test_mknod-drv_data.Po"; else rm -f "$(DEPDIR)/test_mknod-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -MT test_mknod-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_mknod-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_mknod-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_mknod-drv_data.Tpo" "$(DEPDIR)/test_mknod-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_mknod-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_mknod-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_mknod-drv_data.Po' tmpdepfile='$(DEPDIR)/test_mknod-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mknod_CFLAGS) $(CFLAGS) -c -o test_mknod-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ 
+ test_path-test_path.o: test_path.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-test_path.o -MD -MP -MF "$(DEPDIR)/test_path-test_path.Tpo" -c -o test_path-test_path.o `test -f 'test_path.c' || echo '$(srcdir)/'`test_path.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-test_path.Tpo" "$(DEPDIR)/test_path-test_path.Po"; else rm -f "$(DEPDIR)/test_path-test_path.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-test_path.o -MD -MP -MF "$(DEPDIR)/test_path-test_path.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_path-test_path.o `test -f 'test_path.c' || echo '$(srcdir)/'`test_path.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-test_path.Tpo" "$(DEPDIR)/test_path-test_path.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_path-test_path.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_path.c' object='test_path-test_path.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_path-test_path.Po' tmpdepfile='$(DEPDIR)/test_path-test_path.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -c -o test_path-test_path.o `test -f 'test_path.c' || echo '$(srcdir)/'`test_path.c
+ 
+ test_path-test_path.obj: test_path.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-test_path.obj -MD -MP -MF "$(DEPDIR)/test_path-test_path.Tpo" -c -o test_path-test_path.obj `if test -f 'test_path.c'; then $(CYGPATH_W) 'test_path.c'; else $(CYGPATH_W) '$(srcdir)/test_path.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-test_path.Tpo" "$(DEPDIR)/test_path-test_path.Po"; else rm -f "$(DEPDIR)/test_path-test_path.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-test_path.obj -MD -MP -MF "$(DEPDIR)/test_path-test_path.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_path-test_path.obj `if test -f 'test_path.c'; then $(CYGPATH_W) 'test_path.c'; else $(CYGPATH_W) '$(srcdir)/test_path.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-test_path.Tpo" "$(DEPDIR)/test_path-test_path.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_path-test_path.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_path.c' object='test_path-test_path.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_path-test_path.Po' tmpdepfile='$(DEPDIR)/test_path-test_path.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -c -o test_path-test_path.obj `if test -f 'test_path.c'; then $(CYGPATH_W) 'test_path.c'; else $(CYGPATH_W) '$(srcdir)/test_path.c'; fi`
+ 
+ test_path-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-startup.o -MD -MP -MF "$(DEPDIR)/test_path-startup.Tpo" -c -o test_path-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-startup.Tpo" "$(DEPDIR)/test_path-startup.Po"; else rm -f "$(DEPDIR)/test_path-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-startup.o -MD -MP -MF "$(DEPDIR)/test_path-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_path-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-startup.Tpo" "$(DEPDIR)/test_path-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_path-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_path-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_path-startup.Po' tmpdepfile='$(DEPDIR)/test_path-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -c -o test_path-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_path-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-startup.obj -MD -MP -MF "$(DEPDIR)/test_path-startup.Tpo" -c -o test_path-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-startup.Tpo" "$(DEPDIR)/test_path-startup.Po"; else rm -f "$(DEPDIR)/test_path-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-startup.obj -MD -MP -MF "$(DEPDIR)/test_path-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_path-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-startup.Tpo" "$(DEPDIR)/test_path-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_path-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_path-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_path-startup.Po' tmpdepfile='$(DEPDIR)/test_path-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -c -o test_path-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_path-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_path-drv_init_all.Tpo" -c -o test_path-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-drv_init_all.Tpo" "$(DEPDIR)/test_path-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_path-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_path-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_path-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-drv_init_all.Tpo" "$(DEPDIR)/test_path-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_path-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_path-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_path-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_path-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -c -o test_path-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_path-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_path-drv_init_all.Tpo" -c -o test_path-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-drv_init_all.Tpo" "$(DEPDIR)/test_path-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_path-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_path-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_path-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-drv_init_all.Tpo" "$(DEPDIR)/test_path-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_path-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_path-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_path-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_path-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -c -o test_path-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_path-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-drv_data.o -MD -MP -MF "$(DEPDIR)/test_path-drv_data.Tpo" -c -o test_path-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-drv_data.Tpo" "$(DEPDIR)/test_path-drv_data.Po"; else rm -f "$(DEPDIR)/test_path-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-drv_data.o -MD -MP -MF "$(DEPDIR)/test_path-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_path-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-drv_data.Tpo" "$(DEPDIR)/test_path-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_path-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_path-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_path-drv_data.Po' tmpdepfile='$(DEPDIR)/test_path-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -c -o test_path-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_path-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_path-drv_data.Tpo" -c -o test_path-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-drv_data.Tpo" "$(DEPDIR)/test_path-drv_data.Po"; else rm -f "$(DEPDIR)/test_path-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -MT test_path-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_path-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_path-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_path-drv_data.Tpo" "$(DEPDIR)/test_path-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_path-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_path-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_path-drv_data.Po' tmpdepfile='$(DEPDIR)/test_path-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_path_CFLAGS) $(CFLAGS) -c -o test_path-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ 
+ test_regions-test_regions.o: test_regions.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-test_regions.o -MD -MP -MF "$(DEPDIR)/test_regions-test_regions.Tpo" -c -o test_regions-test_regions.o `test -f 'test_regions.c' || echo '$(srcdir)/'`test_regions.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-test_regions.Tpo" "$(DEPDIR)/test_regions-test_regions.Po"; else rm -f "$(DEPDIR)/test_regions-test_regions.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-test_regions.o -MD -MP -MF "$(DEPDIR)/test_regions-test_regions.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_regions-test_regions.o `test -f 'test_regions.c' || echo '$(srcdir)/'`test_regions.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-test_regions.Tpo" "$(DEPDIR)/test_regions-test_regions.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_regions-test_regions.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_regions.c' object='test_regions-test_regions.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_regions-test_regions.Po' tmpdepfile='$(DEPDIR)/test_regions-test_regions.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -c -o test_regions-test_regions.o `test -f 'test_regions.c' || echo '$(srcdir)/'`test_regions.c
+ 
+ test_regions-test_regions.obj: test_regions.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-test_regions.obj -MD -MP -MF "$(DEPDIR)/test_regions-test_regions.Tpo" -c -o test_regions-test_regions.obj `if test -f 'test_regions.c'; then $(CYGPATH_W) 'test_regions.c'; else $(CYGPATH_W) '$(srcdir)/test_regions.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-test_regions.Tpo" "$(DEPDIR)/test_regions-test_regions.Po"; else rm -f "$(DEPDIR)/test_regions-test_regions.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-test_regions.obj -MD -MP -MF "$(DEPDIR)/test_regions-test_regions.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_regions-test_regions.obj `if test -f 'test_regions.c'; then $(CYGPATH_W) 'test_regions.c'; else $(CYGPATH_W) '$(srcdir)/test_regions.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-test_regions.Tpo" "$(DEPDIR)/test_regions-test_regions.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_regions-test_regions.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_regions.c' object='test_regions-test_regions.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_regions-test_regions.Po' tmpdepfile='$(DEPDIR)/test_regions-test_regions.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -c -o test_regions-test_regions.obj `if test -f 'test_regions.c'; then $(CYGPATH_W) 'test_regions.c'; else $(CYGPATH_W) '$(srcdir)/test_regions.c'; fi`
+ 
+ test_regions-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-startup.o -MD -MP -MF "$(DEPDIR)/test_regions-startup.Tpo" -c -o test_regions-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-startup.Tpo" "$(DEPDIR)/test_regions-startup.Po"; else rm -f "$(DEPDIR)/test_regions-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-startup.o -MD -MP -MF "$(DEPDIR)/test_regions-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_regions-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-startup.Tpo" "$(DEPDIR)/test_regions-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_regions-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_regions-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_regions-startup.Po' tmpdepfile='$(DEPDIR)/test_regions-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -c -o test_regions-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_regions-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-startup.obj -MD -MP -MF "$(DEPDIR)/test_regions-startup.Tpo" -c -o test_regions-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-startup.Tpo" "$(DEPDIR)/test_regions-startup.Po"; else rm -f "$(DEPDIR)/test_regions-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-startup.obj -MD -MP -MF "$(DEPDIR)/test_regions-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_regions-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-startup.Tpo" "$(DEPDIR)/test_regions-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_regions-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_regions-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_regions-startup.Po' tmpdepfile='$(DEPDIR)/test_regions-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -c -o test_regions-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_regions-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_regions-drv_init_all.Tpo" -c -o test_regions-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-drv_init_all.Tpo" "$(DEPDIR)/test_regions-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_regions-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_regions-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_regions-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-drv_init_all.Tpo" "$(DEPDIR)/test_regions-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_regions-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_regions-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_regions-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_regions-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -c -o test_regions-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_regions-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_regions-drv_init_all.Tpo" -c -o test_regions-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-drv_init_all.Tpo" "$(DEPDIR)/test_regions-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_regions-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_regions-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_regions-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-drv_init_all.Tpo" "$(DEPDIR)/test_regions-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_regions-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_regions-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_regions-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_regions-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -c -o test_regions-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_regions-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-drv_data.o -MD -MP -MF "$(DEPDIR)/test_regions-drv_data.Tpo" -c -o test_regions-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-drv_data.Tpo" "$(DEPDIR)/test_regions-drv_data.Po"; else rm -f "$(DEPDIR)/test_regions-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-drv_data.o -MD -MP -MF "$(DEPDIR)/test_regions-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_regions-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-drv_data.Tpo" "$(DEPDIR)/test_regions-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_regions-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_regions-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_regions-drv_data.Po' tmpdepfile='$(DEPDIR)/test_regions-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -c -o test_regions-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_regions-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_regions-drv_data.Tpo" -c -o test_regions-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-drv_data.Tpo" "$(DEPDIR)/test_regions-drv_data.Po"; else rm -f "$(DEPDIR)/test_regions-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -MT test_regions-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_regions-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_regions-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_regions-drv_data.Tpo" "$(DEPDIR)/test_regions-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_regions-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_regions-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_regions-drv_data.Po' tmpdepfile='$(DEPDIR)/test_regions-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_regions_CFLAGS) $(CFLAGS) -c -o test_regions-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ 
+ test_rename-test_rename.o: test_rename.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-test_rename.o -MD -MP -MF "$(DEPDIR)/test_rename-test_rename.Tpo" -c -o test_rename-test_rename.o `test -f 'test_rename.c' || echo '$(srcdir)/'`test_rename.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-test_rename.Tpo" "$(DEPDIR)/test_rename-test_rename.Po"; else rm -f "$(DEPDIR)/test_rename-test_rename.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-test_rename.o -MD -MP -MF "$(DEPDIR)/test_rename-test_rename.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_rename-test_rename.o `test -f 'test_rename.c' || echo '$(srcdir)/'`test_rename.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-test_rename.Tpo" "$(DEPDIR)/test_rename-test_rename.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_rename-test_rename.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_rename.c' object='test_rename-test_rename.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_rename-test_rename.Po' tmpdepfile='$(DEPDIR)/test_rename-test_rename.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -c -o test_rename-test_rename.o `test -f 'test_rename.c' || echo '$(srcdir)/'`test_rename.c
+ 
+ test_rename-test_rename.obj: test_rename.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-test_rename.obj -MD -MP -MF "$(DEPDIR)/test_rename-test_rename.Tpo" -c -o test_rename-test_rename.obj `if test -f 'test_rename.c'; then $(CYGPATH_W) 'test_rename.c'; else $(CYGPATH_W) '$(srcdir)/test_rename.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-test_rename.Tpo" "$(DEPDIR)/test_rename-test_rename.Po"; else rm -f "$(DEPDIR)/test_rename-test_rename.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-test_rename.obj -MD -MP -MF "$(DEPDIR)/test_rename-test_rename.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_rename-test_rename.obj `if test -f 'test_rename.c'; then $(CYGPATH_W) 'test_rename.c'; else $(CYGPATH_W) '$(srcdir)/test_rename.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-test_rename.Tpo" "$(DEPDIR)/test_rename-test_rename.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_rename-test_rename.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_rename.c' object='test_rename-test_rename.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_rename-test_rename.Po' tmpdepfile='$(DEPDIR)/test_rename-test_rename.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -c -o test_rename-test_rename.obj `if test -f 'test_rename.c'; then $(CYGPATH_W) 'test_rename.c'; else $(CYGPATH_W) '$(srcdir)/test_rename.c'; fi`
+ 
+ test_rename-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-startup.o -MD -MP -MF "$(DEPDIR)/test_rename-startup.Tpo" -c -o test_rename-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-startup.Tpo" "$(DEPDIR)/test_rename-startup.Po"; else rm -f "$(DEPDIR)/test_rename-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-startup.o -MD -MP -MF "$(DEPDIR)/test_rename-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_rename-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-startup.Tpo" "$(DEPDIR)/test_rename-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_rename-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_rename-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_rename-startup.Po' tmpdepfile='$(DEPDIR)/test_rename-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -c -o test_rename-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_rename-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-startup.obj -MD -MP -MF "$(DEPDIR)/test_rename-startup.Tpo" -c -o test_rename-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-startup.Tpo" "$(DEPDIR)/test_rename-startup.Po"; else rm -f "$(DEPDIR)/test_rename-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-startup.obj -MD -MP -MF "$(DEPDIR)/test_rename-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_rename-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-startup.Tpo" "$(DEPDIR)/test_rename-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_rename-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_rename-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_rename-startup.Po' tmpdepfile='$(DEPDIR)/test_rename-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -c -o test_rename-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_rename-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_rename-drv_init_all.Tpo" -c -o test_rename-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-drv_init_all.Tpo" "$(DEPDIR)/test_rename-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_rename-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_rename-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_rename-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-drv_init_all.Tpo" "$(DEPDIR)/test_rename-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_rename-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_rename-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_rename-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_rename-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -c -o test_rename-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_rename-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_rename-drv_init_all.Tpo" -c -o test_rename-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-drv_init_all.Tpo" "$(DEPDIR)/test_rename-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_rename-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_rename-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_rename-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-drv_init_all.Tpo" "$(DEPDIR)/test_rename-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_rename-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_rename-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_rename-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_rename-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -c -o test_rename-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_rename-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-drv_data.o -MD -MP -MF "$(DEPDIR)/test_rename-drv_data.Tpo" -c -o test_rename-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-drv_data.Tpo" "$(DEPDIR)/test_rename-drv_data.Po"; else rm -f "$(DEPDIR)/test_rename-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-drv_data.o -MD -MP -MF "$(DEPDIR)/test_rename-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_rename-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-drv_data.Tpo" "$(DEPDIR)/test_rename-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_rename-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_rename-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_rename-drv_data.Po' tmpdepfile='$(DEPDIR)/test_rename-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -c -o test_rename-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_rename-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_rename-drv_data.Tpo" -c -o test_rename-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-drv_data.Tpo" "$(DEPDIR)/test_rename-drv_data.Po"; else rm -f "$(DEPDIR)/test_rename-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -MT test_rename-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_rename-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_rename-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_rename-drv_data.Tpo" "$(DEPDIR)/test_rename-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_rename-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_rename-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_rename-drv_data.Po' tmpdepfile='$(DEPDIR)/test_rename-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_rename_CFLAGS) $(CFLAGS) -c -o test_rename-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ 
+ test_stats-test_stats.o: test_stats.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-test_stats.o -MD -MP -MF "$(DEPDIR)/test_stats-test_stats.Tpo" -c -o test_stats-test_stats.o `test -f 'test_stats.c' || echo '$(srcdir)/'`test_stats.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-test_stats.Tpo" "$(DEPDIR)/test_stats-test_stats.Po"; else rm -f "$(DEPDIR)/test_stats-test_stats.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-test_stats.o -MD -MP -MF "$(DEPDIR)/test_stats-test_stats.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stats-test_stats.o `test -f 'test_stats.c' || echo '$(srcdir)/'`test_stats.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-test_stats.Tpo" "$(DEPDIR)/test_stats-test_stats.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stats-test_stats.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_stats.c' object='test_stats-test_stats.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stats-test_stats.Po' tmpdepfile='$(DEPDIR)/test_stats-test_stats.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -c -o test_stats-test_stats.o `test -f 'test_stats.c' || echo '$(srcdir)/'`test_stats.c
+ 
+ test_stats-test_stats.obj: test_stats.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-test_stats.obj -MD -MP -MF "$(DEPDIR)/test_stats-test_stats.Tpo" -c -o test_stats-test_stats.obj `if test -f 'test_stats.c'; then $(CYGPATH_W) 'test_stats.c'; else $(CYGPATH_W) '$(srcdir)/test_stats.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-test_stats.Tpo" "$(DEPDIR)/test_stats-test_stats.Po"; else rm -f "$(DEPDIR)/test_stats-test_stats.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-test_stats.obj -MD -MP -MF "$(DEPDIR)/test_stats-test_stats.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stats-test_stats.obj `if test -f 'test_stats.c'; then $(CYGPATH_W) 'test_stats.c'; else $(CYGPATH_W) '$(srcdir)/test_stats.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-test_stats.Tpo" "$(DEPDIR)/test_stats-test_stats.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stats-test_stats.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_stats.c' object='test_stats-test_stats.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stats-test_stats.Po' tmpdepfile='$(DEPDIR)/test_stats-test_stats.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -c -o test_stats-test_stats.obj `if test -f 'test_stats.c'; then $(CYGPATH_W) 'test_stats.c'; else $(CYGPATH_W) '$(srcdir)/test_stats.c'; fi`
+ 
+ test_stats-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-startup.o -MD -MP -MF "$(DEPDIR)/test_stats-startup.Tpo" -c -o test_stats-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-startup.Tpo" "$(DEPDIR)/test_stats-startup.Po"; else rm -f "$(DEPDIR)/test_stats-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-startup.o -MD -MP -MF "$(DEPDIR)/test_stats-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stats-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-startup.Tpo" "$(DEPDIR)/test_stats-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stats-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_stats-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stats-startup.Po' tmpdepfile='$(DEPDIR)/test_stats-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -c -o test_stats-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_stats-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-startup.obj -MD -MP -MF "$(DEPDIR)/test_stats-startup.Tpo" -c -o test_stats-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-startup.Tpo" "$(DEPDIR)/test_stats-startup.Po"; else rm -f "$(DEPDIR)/test_stats-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-startup.obj -MD -MP -MF "$(DEPDIR)/test_stats-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stats-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-startup.Tpo" "$(DEPDIR)/test_stats-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stats-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_stats-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stats-startup.Po' tmpdepfile='$(DEPDIR)/test_stats-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -c -o test_stats-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_stats-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_stats-drv_init_all.Tpo" -c -o test_stats-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-drv_init_all.Tpo" "$(DEPDIR)/test_stats-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_stats-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_stats-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stats-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-drv_init_all.Tpo" "$(DEPDIR)/test_stats-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stats-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_stats-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stats-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_stats-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -c -o test_stats-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_stats-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_stats-drv_init_all.Tpo" -c -o test_stats-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-drv_init_all.Tpo" "$(DEPDIR)/test_stats-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_stats-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_stats-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stats-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-drv_init_all.Tpo" "$(DEPDIR)/test_stats-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stats-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_stats-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stats-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_stats-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -c -o test_stats-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_stats-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-drv_data.o -MD -MP -MF "$(DEPDIR)/test_stats-drv_data.Tpo" -c -o test_stats-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-drv_data.Tpo" "$(DEPDIR)/test_stats-drv_data.Po"; else rm -f "$(DEPDIR)/test_stats-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-drv_data.o -MD -MP -MF "$(DEPDIR)/test_stats-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stats-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-drv_data.Tpo" "$(DEPDIR)/test_stats-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stats-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_stats-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stats-drv_data.Po' tmpdepfile='$(DEPDIR)/test_stats-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -c -o test_stats-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_stats-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_stats-drv_data.Tpo" -c -o test_stats-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-drv_data.Tpo" "$(DEPDIR)/test_stats-drv_data.Po"; else rm -f "$(DEPDIR)/test_stats-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -MT test_stats-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_stats-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stats-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stats-drv_data.Tpo" "$(DEPDIR)/test_stats-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stats-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_stats-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stats-drv_data.Po' tmpdepfile='$(DEPDIR)/test_stats-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stats_CFLAGS) $(CFLAGS) -c -o test_stats-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ 
+ test_stddir-test_stddir.o: test_stddir.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-test_stddir.o -MD -MP -MF "$(DEPDIR)/test_stddir-test_stddir.Tpo" -c -o test_stddir-test_stddir.o `test -f 'test_stddir.c' || echo '$(srcdir)/'`test_stddir.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-test_stddir.Tpo" "$(DEPDIR)/test_stddir-test_stddir.Po"; else rm -f "$(DEPDIR)/test_stddir-test_stddir.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-test_stddir.o -MD -MP -MF "$(DEPDIR)/test_stddir-test_stddir.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stddir-test_stddir.o `test -f 'test_stddir.c' || echo '$(srcdir)/'`test_stddir.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-test_stddir.Tpo" "$(DEPDIR)/test_stddir-test_stddir.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stddir-test_stddir.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_stddir.c' object='test_stddir-test_stddir.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stddir-test_stddir.Po' tmpdepfile='$(DEPDIR)/test_stddir-test_stddir.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -c -o test_stddir-test_stddir.o `test -f 'test_stddir.c' || echo '$(srcdir)/'`test_stddir.c
+ 
+ test_stddir-test_stddir.obj: test_stddir.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-test_stddir.obj -MD -MP -MF "$(DEPDIR)/test_stddir-test_stddir.Tpo" -c -o test_stddir-test_stddir.obj `if test -f 'test_stddir.c'; then $(CYGPATH_W) 'test_stddir.c'; else $(CYGPATH_W) '$(srcdir)/test_stddir.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-test_stddir.Tpo" "$(DEPDIR)/test_stddir-test_stddir.Po"; else rm -f "$(DEPDIR)/test_stddir-test_stddir.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-test_stddir.obj -MD -MP -MF "$(DEPDIR)/test_stddir-test_stddir.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stddir-test_stddir.obj `if test -f 'test_stddir.c'; then $(CYGPATH_W) 'test_stddir.c'; else $(CYGPATH_W) '$(srcdir)/test_stddir.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-test_stddir.Tpo" "$(DEPDIR)/test_stddir-test_stddir.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stddir-test_stddir.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_stddir.c' object='test_stddir-test_stddir.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stddir-test_stddir.Po' tmpdepfile='$(DEPDIR)/test_stddir-test_stddir.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -c -o test_stddir-test_stddir.obj `if test -f 'test_stddir.c'; then $(CYGPATH_W) 'test_stddir.c'; else $(CYGPATH_W) '$(srcdir)/test_stddir.c'; fi`
+ 
+ test_stddir-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-startup.o -MD -MP -MF "$(DEPDIR)/test_stddir-startup.Tpo" -c -o test_stddir-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-startup.Tpo" "$(DEPDIR)/test_stddir-startup.Po"; else rm -f "$(DEPDIR)/test_stddir-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-startup.o -MD -MP -MF "$(DEPDIR)/test_stddir-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stddir-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-startup.Tpo" "$(DEPDIR)/test_stddir-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stddir-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_stddir-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stddir-startup.Po' tmpdepfile='$(DEPDIR)/test_stddir-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -c -o test_stddir-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_stddir-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-startup.obj -MD -MP -MF "$(DEPDIR)/test_stddir-startup.Tpo" -c -o test_stddir-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-startup.Tpo" "$(DEPDIR)/test_stddir-startup.Po"; else rm -f "$(DEPDIR)/test_stddir-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-startup.obj -MD -MP -MF "$(DEPDIR)/test_stddir-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stddir-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-startup.Tpo" "$(DEPDIR)/test_stddir-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stddir-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_stddir-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stddir-startup.Po' tmpdepfile='$(DEPDIR)/test_stddir-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -c -o test_stddir-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_stddir-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_stddir-drv_init_all.Tpo" -c -o test_stddir-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-drv_init_all.Tpo" "$(DEPDIR)/test_stddir-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_stddir-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_stddir-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stddir-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-drv_init_all.Tpo" "$(DEPDIR)/test_stddir-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stddir-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_stddir-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stddir-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_stddir-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -c -o test_stddir-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_stddir-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_stddir-drv_init_all.Tpo" -c -o test_stddir-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-drv_init_all.Tpo" "$(DEPDIR)/test_stddir-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_stddir-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_stddir-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stddir-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-drv_init_all.Tpo" "$(DEPDIR)/test_stddir-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stddir-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_stddir-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stddir-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_stddir-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -c -o test_stddir-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_stddir-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-drv_data.o -MD -MP -MF "$(DEPDIR)/test_stddir-drv_data.Tpo" -c -o test_stddir-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-drv_data.Tpo" "$(DEPDIR)/test_stddir-drv_data.Po"; else rm -f "$(DEPDIR)/test_stddir-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-drv_data.o -MD -MP -MF "$(DEPDIR)/test_stddir-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stddir-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-drv_data.Tpo" "$(DEPDIR)/test_stddir-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stddir-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_stddir-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stddir-drv_data.Po' tmpdepfile='$(DEPDIR)/test_stddir-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -c -o test_stddir-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_stddir-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_stddir-drv_data.Tpo" -c -o test_stddir-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-drv_data.Tpo" "$(DEPDIR)/test_stddir-drv_data.Po"; else rm -f "$(DEPDIR)/test_stddir-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -MT test_stddir-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_stddir-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_stddir-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_stddir-drv_data.Tpo" "$(DEPDIR)/test_stddir-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_stddir-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_stddir-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_stddir-drv_data.Po' tmpdepfile='$(DEPDIR)/test_stddir-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_stddir_CFLAGS) $(CFLAGS) -c -o test_stddir-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ 
+ test_symlink-test_symlink.o: test_symlink.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-test_symlink.o -MD -MP -MF "$(DEPDIR)/test_symlink-test_symlink.Tpo" -c -o test_symlink-test_symlink.o `test -f 'test_symlink.c' || echo '$(srcdir)/'`test_symlink.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-test_symlink.Tpo" "$(DEPDIR)/test_symlink-test_symlink.Po"; else rm -f "$(DEPDIR)/test_symlink-test_symlink.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-test_symlink.o -MD -MP -MF "$(DEPDIR)/test_symlink-test_symlink.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_symlink-test_symlink.o `test -f 'test_symlink.c' || echo '$(srcdir)/'`test_symlink.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-test_symlink.Tpo" "$(DEPDIR)/test_symlink-test_symlink.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_symlink-test_symlink.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_symlink.c' object='test_symlink-test_symlink.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_symlink-test_symlink.Po' tmpdepfile='$(DEPDIR)/test_symlink-test_symlink.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -c -o test_symlink-test_symlink.o `test -f 'test_symlink.c' || echo '$(srcdir)/'`test_symlink.c
+ 
+ test_symlink-test_symlink.obj: test_symlink.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-test_symlink.obj -MD -MP -MF "$(DEPDIR)/test_symlink-test_symlink.Tpo" -c -o test_symlink-test_symlink.obj `if test -f 'test_symlink.c'; then $(CYGPATH_W) 'test_symlink.c'; else $(CYGPATH_W) '$(srcdir)/test_symlink.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-test_symlink.Tpo" "$(DEPDIR)/test_symlink-test_symlink.Po"; else rm -f "$(DEPDIR)/test_symlink-test_symlink.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-test_symlink.obj -MD -MP -MF "$(DEPDIR)/test_symlink-test_symlink.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_symlink-test_symlink.obj `if test -f 'test_symlink.c'; then $(CYGPATH_W) 'test_symlink.c'; else $(CYGPATH_W) '$(srcdir)/test_symlink.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-test_symlink.Tpo" "$(DEPDIR)/test_symlink-test_symlink.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_symlink-test_symlink.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_symlink.c' object='test_symlink-test_symlink.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_symlink-test_symlink.Po' tmpdepfile='$(DEPDIR)/test_symlink-test_symlink.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -c -o test_symlink-test_symlink.obj `if test -f 'test_symlink.c'; then $(CYGPATH_W) 'test_symlink.c'; else $(CYGPATH_W) '$(srcdir)/test_symlink.c'; fi`
+ 
+ test_symlink-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-startup.o -MD -MP -MF "$(DEPDIR)/test_symlink-startup.Tpo" -c -o test_symlink-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-startup.Tpo" "$(DEPDIR)/test_symlink-startup.Po"; else rm -f "$(DEPDIR)/test_symlink-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-startup.o -MD -MP -MF "$(DEPDIR)/test_symlink-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_symlink-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-startup.Tpo" "$(DEPDIR)/test_symlink-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_symlink-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_symlink-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_symlink-startup.Po' tmpdepfile='$(DEPDIR)/test_symlink-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -c -o test_symlink-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_symlink-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-startup.obj -MD -MP -MF "$(DEPDIR)/test_symlink-startup.Tpo" -c -o test_symlink-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-startup.Tpo" "$(DEPDIR)/test_symlink-startup.Po"; else rm -f "$(DEPDIR)/test_symlink-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-startup.obj -MD -MP -MF "$(DEPDIR)/test_symlink-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_symlink-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-startup.Tpo" "$(DEPDIR)/test_symlink-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_symlink-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_symlink-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_symlink-startup.Po' tmpdepfile='$(DEPDIR)/test_symlink-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -c -o test_symlink-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_symlink-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_symlink-drv_init_all.Tpo" -c -o test_symlink-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-drv_init_all.Tpo" "$(DEPDIR)/test_symlink-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_symlink-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_symlink-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_symlink-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-drv_init_all.Tpo" "$(DEPDIR)/test_symlink-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_symlink-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_symlink-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_symlink-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_symlink-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -c -o test_symlink-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_symlink-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_symlink-drv_init_all.Tpo" -c -o test_symlink-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-drv_init_all.Tpo" "$(DEPDIR)/test_symlink-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_symlink-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_symlink-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_symlink-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-drv_init_all.Tpo" "$(DEPDIR)/test_symlink-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_symlink-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_symlink-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_symlink-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_symlink-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -c -o test_symlink-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_symlink-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-drv_data.o -MD -MP -MF "$(DEPDIR)/test_symlink-drv_data.Tpo" -c -o test_symlink-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-drv_data.Tpo" "$(DEPDIR)/test_symlink-drv_data.Po"; else rm -f "$(DEPDIR)/test_symlink-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-drv_data.o -MD -MP -MF "$(DEPDIR)/test_symlink-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_symlink-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-drv_data.Tpo" "$(DEPDIR)/test_symlink-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_symlink-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_symlink-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_symlink-drv_data.Po' tmpdepfile='$(DEPDIR)/test_symlink-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -c -o test_symlink-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_symlink-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_symlink-drv_data.Tpo" -c -o test_symlink-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-drv_data.Tpo" "$(DEPDIR)/test_symlink-drv_data.Po"; else rm -f "$(DEPDIR)/test_symlink-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -MT test_symlink-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_symlink-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_symlink-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_symlink-drv_data.Tpo" "$(DEPDIR)/test_symlink-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_symlink-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_symlink-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_symlink-drv_data.Po' tmpdepfile='$(DEPDIR)/test_symlink-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_symlink_CFLAGS) $(CFLAGS) -c -o test_symlink-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ 
+ test_unlink-test_unlink.o: test_unlink.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-test_unlink.o -MD -MP -MF "$(DEPDIR)/test_unlink-test_unlink.Tpo" -c -o test_unlink-test_unlink.o `test -f 'test_unlink.c' || echo '$(srcdir)/'`test_unlink.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-test_unlink.Tpo" "$(DEPDIR)/test_unlink-test_unlink.Po"; else rm -f "$(DEPDIR)/test_unlink-test_unlink.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-test_unlink.o -MD -MP -MF "$(DEPDIR)/test_unlink-test_unlink.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_unlink-test_unlink.o `test -f 'test_unlink.c' || echo '$(srcdir)/'`test_unlink.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-test_unlink.Tpo" "$(DEPDIR)/test_unlink-test_unlink.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_unlink-test_unlink.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_unlink.c' object='test_unlink-test_unlink.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_unlink-test_unlink.Po' tmpdepfile='$(DEPDIR)/test_unlink-test_unlink.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -c -o test_unlink-test_unlink.o `test -f 'test_unlink.c' || echo '$(srcdir)/'`test_unlink.c
+ 
+ test_unlink-test_unlink.obj: test_unlink.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-test_unlink.obj -MD -MP -MF "$(DEPDIR)/test_unlink-test_unlink.Tpo" -c -o test_unlink-test_unlink.obj `if test -f 'test_unlink.c'; then $(CYGPATH_W) 'test_unlink.c'; else $(CYGPATH_W) '$(srcdir)/test_unlink.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-test_unlink.Tpo" "$(DEPDIR)/test_unlink-test_unlink.Po"; else rm -f "$(DEPDIR)/test_unlink-test_unlink.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-test_unlink.obj -MD -MP -MF "$(DEPDIR)/test_unlink-test_unlink.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_unlink-test_unlink.obj `if test -f 'test_unlink.c'; then $(CYGPATH_W) 'test_unlink.c'; else $(CYGPATH_W) '$(srcdir)/test_unlink.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-test_unlink.Tpo" "$(DEPDIR)/test_unlink-test_unlink.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_unlink-test_unlink.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='test_unlink.c' object='test_unlink-test_unlink.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_unlink-test_unlink.Po' tmpdepfile='$(DEPDIR)/test_unlink-test_unlink.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -c -o test_unlink-test_unlink.obj `if test -f 'test_unlink.c'; then $(CYGPATH_W) 'test_unlink.c'; else $(CYGPATH_W) '$(srcdir)/test_unlink.c'; fi`
+ 
+ test_unlink-startup.o: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-startup.o -MD -MP -MF "$(DEPDIR)/test_unlink-startup.Tpo" -c -o test_unlink-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-startup.Tpo" "$(DEPDIR)/test_unlink-startup.Po"; else rm -f "$(DEPDIR)/test_unlink-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-startup.o -MD -MP -MF "$(DEPDIR)/test_unlink-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_unlink-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-startup.Tpo" "$(DEPDIR)/test_unlink-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_unlink-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_unlink-startup.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_unlink-startup.Po' tmpdepfile='$(DEPDIR)/test_unlink-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -c -o test_unlink-startup.o `test -f 'startup.c' || echo '$(srcdir)/'`startup.c
+ 
+ test_unlink-startup.obj: startup.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-startup.obj -MD -MP -MF "$(DEPDIR)/test_unlink-startup.Tpo" -c -o test_unlink-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-startup.Tpo" "$(DEPDIR)/test_unlink-startup.Po"; else rm -f "$(DEPDIR)/test_unlink-startup.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-startup.obj -MD -MP -MF "$(DEPDIR)/test_unlink-startup.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_unlink-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-startup.Tpo" "$(DEPDIR)/test_unlink-startup.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_unlink-startup.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='startup.c' object='test_unlink-startup.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_unlink-startup.Po' tmpdepfile='$(DEPDIR)/test_unlink-startup.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -c -o test_unlink-startup.obj `if test -f 'startup.c'; then $(CYGPATH_W) 'startup.c'; else $(CYGPATH_W) '$(srcdir)/startup.c'; fi`
+ 
+ test_unlink-drv_init_all.o: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_unlink-drv_init_all.Tpo" -c -o test_unlink-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-drv_init_all.Tpo" "$(DEPDIR)/test_unlink-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_unlink-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-drv_init_all.o -MD -MP -MF "$(DEPDIR)/test_unlink-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_unlink-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-drv_init_all.Tpo" "$(DEPDIR)/test_unlink-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_unlink-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_unlink-drv_init_all.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_unlink-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_unlink-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -c -o test_unlink-drv_init_all.o `test -f 'drv_init_all.c' || echo '$(srcdir)/'`drv_init_all.c
+ 
+ test_unlink-drv_init_all.obj: drv_init_all.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_unlink-drv_init_all.Tpo" -c -o test_unlink-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-drv_init_all.Tpo" "$(DEPDIR)/test_unlink-drv_init_all.Po"; else rm -f "$(DEPDIR)/test_unlink-drv_init_all.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-drv_init_all.obj -MD -MP -MF "$(DEPDIR)/test_unlink-drv_init_all.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_unlink-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-drv_init_all.Tpo" "$(DEPDIR)/test_unlink-drv_init_all.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_unlink-drv_init_all.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_init_all.c' object='test_unlink-drv_init_all.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_unlink-drv_init_all.Po' tmpdepfile='$(DEPDIR)/test_unlink-drv_init_all.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -c -o test_unlink-drv_init_all.obj `if test -f 'drv_init_all.c'; then $(CYGPATH_W) 'drv_init_all.c'; else $(CYGPATH_W) '$(srcdir)/drv_init_all.c'; fi`
+ 
+ test_unlink-drv_data.o: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-drv_data.o -MD -MP -MF "$(DEPDIR)/test_unlink-drv_data.Tpo" -c -o test_unlink-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-drv_data.Tpo" "$(DEPDIR)/test_unlink-drv_data.Po"; else rm -f "$(DEPDIR)/test_unlink-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-drv_data.o -MD -MP -MF "$(DEPDIR)/test_unlink-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_unlink-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-drv_data.Tpo" "$(DEPDIR)/test_unlink-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_unlink-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_unlink-drv_data.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_unlink-drv_data.Po' tmpdepfile='$(DEPDIR)/test_unlink-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -c -o test_unlink-drv_data.o `test -f 'drv_data.c' || echo '$(srcdir)/'`drv_data.c
+ 
+ test_unlink-drv_data.obj: drv_data.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_unlink-drv_data.Tpo" -c -o test_unlink-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-drv_data.Tpo" "$(DEPDIR)/test_unlink-drv_data.Po"; else rm -f "$(DEPDIR)/test_unlink-drv_data.Tpo"; exit 1; fi
++ at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -MT test_unlink-drv_data.obj -MD -MP -MF "$(DEPDIR)/test_unlink-drv_data.Tpo" \
++ at am__fastdepCC_TRUE@	  -c -o test_unlink-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`; \
++ at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test_unlink-drv_data.Tpo" "$(DEPDIR)/test_unlink-drv_data.Po"; \
++ at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/test_unlink-drv_data.Tpo"; exit 1; \
++ at am__fastdepCC_TRUE@	fi
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='drv_data.c' object='test_unlink-drv_data.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/test_unlink-drv_data.Po' tmpdepfile='$(DEPDIR)/test_unlink-drv_data.TPo' @AMDEPBACKSLASH@
++ at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_unlink_CFLAGS) $(CFLAGS) -c -o test_unlink-drv_data.obj `if test -f 'drv_data.c'; then $(CYGPATH_W) 'drv_data.c'; else $(CYGPATH_W) '$(srcdir)/drv_data.c'; fi`
+ uninstall-info-am:
+ 
++ETAGS = etags
++ETAGSFLAGS =
++
++CTAGS = ctags
++CTAGSFLAGS =
++
++tags: TAGS
++
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+ 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+@@ -1434,7 +1997,6 @@
+ 	  $(AWK) '    { files[$$0] = 1; } \
+ 	       END { for (i in files) print i; }'`; \
+ 	mkid -fID $$unique
+-tags: TAGS
+ 
+ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+@@ -1446,11 +2008,10 @@
+ 	  done | \
+ 	  $(AWK) '    { files[$$0] = 1; } \
+ 	       END { for (i in files) print i; }'`; \
+-	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
+-	  test -n "$$unique" || unique=$$empty_fix; \
+-	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	    $$tags $$unique; \
+-	fi
++	test -z "$(ETAGS_ARGS)$$tags$$unique" \
++	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	     $$tags $$unique
++
+ ctags: CTAGS
+ CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+@@ -1473,9 +2034,13 @@
+ 
+ distclean-tags:
+ 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
++DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
++
++top_distdir = ..
++distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+ 
+ distdir: $(DISTFILES)
+-	$(mkdir_p) $(distdir)/..
++	$(mkinstalldirs) $(distdir)/..
+ 	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+ 	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
+ 	list='$(DISTFILES)'; for file in $$list; do \
+@@ -1487,7 +2052,7 @@
+ 	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+ 	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+ 	    dir="/$$dir"; \
+-	    $(mkdir_p) "$(distdir)$$dir"; \
++	    $(mkinstalldirs) "$(distdir)$$dir"; \
+ 	  else \
+ 	    dir=''; \
+ 	  fi; \
+@@ -1506,10 +2071,9 @@
+ check: $(BUILT_SOURCES)
+ 	$(MAKE) $(AM_MAKEFLAGS) check-am
+ all-am: Makefile $(LIBRARIES) $(PROGRAMS)
++
+ installdirs:
+-	for dir in "$(DESTDIR)$(libdir)"; do \
+-	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
+-	done
++	$(mkinstalldirs) $(DESTDIR)$(libdir)
+ install: $(BUILT_SOURCES)
+ 	$(MAKE) $(AM_MAKEFLAGS) install-am
+ install-exec: install-exec-am
+@@ -1531,7 +2095,7 @@
+ 	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
+ 
+ distclean-generic:
+-	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-rm -f $(CONFIG_CLEAN_FILES)
+ 
+ maintainer-clean-generic:
+ 	@echo "This command is intended for maintainers to use"
+@@ -1552,8 +2116,6 @@
+ 
+ dvi-am:
+ 
+-html: html-am
+-
+ info: info-am
+ 
+ info-am:
+@@ -1590,14 +2152,13 @@
+ .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 \
+-	dvi-am html html-am info info-am install install-am \
+-	install-data install-data-am install-exec install-exec-am \
+-	install-info install-info-am install-libLIBRARIES install-man \
+-	install-strip installcheck installcheck-am installdirs \
+-	maintainer-clean maintainer-clean-generic mostlyclean \
+-	mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \
+-	tags uninstall uninstall-am uninstall-info-am \
+-	uninstall-libLIBRARIES
++	dvi-am info info-am install install-am install-data \
++	install-data-am install-exec install-exec-am install-info \
++	install-info-am install-libLIBRARIES install-man install-strip \
++	installcheck installcheck-am installdirs maintainer-clean \
++	maintainer-clean-generic mostlyclean mostlyclean-compile \
++	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
++	uninstall-am uninstall-info-am uninstall-libLIBRARIES
+ 
+ 
+ drv_data.c: $(CONFIG_DEPENDENCIES) $(top_srcdir)/tests/gendrvdata.sh
+diff -Nurwd lustre-1.6.7.2.orig/lnet/autoconf/Makefile.in lustre-1.6.7.2/lnet/autoconf/Makefile.in
+--- lustre-1.6.7.2.orig/lnet/autoconf/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/autoconf/Makefile.in	2009-08-10 10:05:35.000000000 +0200
+@@ -119,12 +119,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -236,8 +235,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -251,8 +248,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -260,26 +259,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/autoMakefile.in lustre-1.6.7.2/lnet/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/autoMakefile.in	2009-08-10 10:05:35.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -272,8 +271,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -287,8 +284,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -296,26 +295,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/doc/Makefile.in lustre-1.6.7.2/lnet/doc/Makefile.in
+--- lustre-1.6.7.2.orig/lnet/doc/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/doc/Makefile.in	2009-08-10 10:05:36.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -272,8 +271,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -287,8 +284,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -296,26 +295,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/include/libcfs/linux/Makefile.in lustre-1.6.7.2/lnet/include/libcfs/linux/Makefile.in
+--- lustre-1.6.7.2.orig/lnet/include/libcfs/linux/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/include/libcfs/linux/Makefile.in	2009-08-10 10:05:36.000000000 +0200
+@@ -119,12 +119,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -236,8 +235,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -251,8 +248,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -260,26 +259,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/include/libcfs/Makefile.in lustre-1.6.7.2/lnet/include/libcfs/Makefile.in
+--- lustre-1.6.7.2.orig/lnet/include/libcfs/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/include/libcfs/Makefile.in	2009-08-10 10:05:36.000000000 +0200
+@@ -38,7 +38,6 @@
+ build_triplet = @build@
+ host_triplet = @host@
+ target_triplet = @target@
+- at DARWIN_TRUE@am__append_1 = darwin
+ 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 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -237,8 +235,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -252,8 +248,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -261,26 +259,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+@@ -292,7 +291,10 @@
+ target_cpu = @target_cpu@
+ target_os = @target_os@
+ target_vendor = @target_vendor@
+-SUBDIRS = linux $(am__append_1)
++SUBDIRS := linux
++#if DARWIN
++#SUBDIRS += darwin
++#endif
+ DIST_SUBDIRS := $(SUBDIRS)
+ 
+ EXTRA_DIST := curproc.h kp30.h libcfs.h list.h lltrace.h \
+diff -Nurwd lustre-1.6.7.2.orig/lnet/include/lnet/linux/Makefile.in lustre-1.6.7.2/lnet/include/lnet/linux/Makefile.in
+--- lustre-1.6.7.2.orig/lnet/include/lnet/linux/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/include/lnet/linux/Makefile.in	2009-08-10 10:05:36.000000000 +0200
+@@ -119,12 +119,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -236,8 +235,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -251,8 +248,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -260,26 +259,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/include/lnet/Makefile.in lustre-1.6.7.2/lnet/include/lnet/Makefile.in
+--- lustre-1.6.7.2.orig/lnet/include/lnet/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/include/lnet/Makefile.in	2009-08-10 10:05:36.000000000 +0200
+@@ -38,7 +38,6 @@
+ build_triplet = @build@
+ host_triplet = @host@
+ target_triplet = @target@
+- at DARWIN_TRUE@am__append_1 = darwin
+ 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 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -237,8 +235,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -252,8 +248,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -261,26 +259,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+@@ -294,7 +293,10 @@
+ target_vendor = @target_vendor@
+ lnetdir = $(includedir)/lnet
+ 
+-SUBDIRS = linux $(am__append_1)
++SUBDIRS := linux
++#if DARWIN
++#SUBDIRS += darwin
++#endif
+ DIST_SUBDIRS := $(SUBDIRS)
+ 
+ EXTRA_DIST = api.h api-support.h \
+diff -Nurwd lustre-1.6.7.2.orig/lnet/include/Makefile.in lustre-1.6.7.2/lnet/include/Makefile.in
+--- lustre-1.6.7.2.orig/lnet/include/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/include/Makefile.in	2009-08-10 10:05:36.000000000 +0200
+@@ -119,12 +119,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -236,8 +235,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -251,8 +248,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -260,26 +259,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/klnds/autoMakefile.in lustre-1.6.7.2/lnet/klnds/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/klnds/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/klnds/autoMakefile.in	2009-08-10 10:05:36.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -272,8 +271,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -287,8 +284,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -296,26 +295,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/klnds/ciblnd/autoMakefile.in lustre-1.6.7.2/lnet/klnds/ciblnd/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/klnds/ciblnd/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/klnds/ciblnd/autoMakefile.in	2009-08-10 10:05:36.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/klnds/gmlnd/autoMakefile.in lustre-1.6.7.2/lnet/klnds/gmlnd/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/klnds/gmlnd/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/klnds/gmlnd/autoMakefile.in	2009-08-10 10:05:36.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/klnds/iiblnd/autoMakefile.in lustre-1.6.7.2/lnet/klnds/iiblnd/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/klnds/iiblnd/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/klnds/iiblnd/autoMakefile.in	2009-08-10 10:05:37.000000000 +0200
+@@ -154,12 +154,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -272,8 +271,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -287,8 +284,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -296,26 +295,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/klnds/mxlnd/autoMakefile.in lustre-1.6.7.2/lnet/klnds/mxlnd/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/klnds/mxlnd/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/klnds/mxlnd/autoMakefile.in	2009-08-10 10:05:37.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/klnds/o2iblnd/autoMakefile.in lustre-1.6.7.2/lnet/klnds/o2iblnd/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/klnds/o2iblnd/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/klnds/o2iblnd/autoMakefile.in	2009-08-10 10:05:37.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/klnds/openiblnd/autoMakefile.in lustre-1.6.7.2/lnet/klnds/openiblnd/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/klnds/openiblnd/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/klnds/openiblnd/autoMakefile.in	2009-08-10 10:05:37.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/klnds/ptllnd/autoMakefile.in lustre-1.6.7.2/lnet/klnds/ptllnd/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/klnds/ptllnd/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/klnds/ptllnd/autoMakefile.in	2009-08-10 10:05:37.000000000 +0200
+@@ -119,12 +119,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -237,8 +236,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -252,8 +249,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -261,26 +260,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/klnds/qswlnd/autoMakefile.in lustre-1.6.7.2/lnet/klnds/qswlnd/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/klnds/qswlnd/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/klnds/qswlnd/autoMakefile.in	2009-08-10 10:05:37.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/klnds/ralnd/autoMakefile.in lustre-1.6.7.2/lnet/klnds/ralnd/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/klnds/ralnd/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/klnds/ralnd/autoMakefile.in	2009-08-10 10:05:37.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/klnds/socklnd/autoMakefile.in lustre-1.6.7.2/lnet/klnds/socklnd/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/klnds/socklnd/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/klnds/socklnd/autoMakefile.in	2009-08-10 10:05:37.000000000 +0200
+@@ -38,7 +38,6 @@
+ build_triplet = @build@
+ host_triplet = @host@
+ target_triplet = @target@
+- at DARWIN_TRUE@am__append_1 = socklnd_lib-darwin.c socklnd_lib-darwin.h
+ 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 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -238,8 +236,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -253,8 +249,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -262,26 +260,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+@@ -296,57 +295,18 @@
+ 
+ @LINUX_TRUE@@MODULES_TRUE at modulenet_DATA := ksocklnd$(KMODEXT)
+ 
+-DIST_SOURCES = $(ksocklnd-objs:%.o=%.c) socklnd_lib-linux.h socklnd.h $(am__append_1)
+-
+- at DARWIN_TRUE@macos_PROGRAMS := ksocklnd
+-
+- at DARWIN_TRUE@nodist_ksocklnd_SOURCES := socklnd.c socklnd_cb.c socklnd_modparams.c socklnd_lib-darwin.c
+-
+- at DARWIN_TRUE@ksocklnd_CFLAGS := $(EXTRA_KCFLAGS)
+- at DARWIN_TRUE@ksocklnd_LDFLAGS := $(EXTRA_KLDFLAGS)
+- at DARWIN_TRUE@ksocklnd_LDADD := $(EXTRA_KLIBS)
+-
+- at DARWIN_TRUE@plist_DATA := Info.plist
+- at DARWIN_TRUE@install_data_hook := fix-kext-ownership
+-
+-EXTRA_DIST := $(plist_DATA)
++DIST_SOURCES := $(ksocklnd-objs:%.o=%.c) socklnd_lib-linux.h socklnd.h
+ subdir = lnet/klnds/socklnd
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES = Makefile
+- at DARWIN_TRUE@macos_PROGRAMS = ksocklnd$(EXEEXT)
+- at DARWIN_FALSE@macos_PROGRAMS =
+-PROGRAMS = $(macos_PROGRAMS)
+-
+- at DARWIN_TRUE@nodist_ksocklnd_OBJECTS = ksocklnd-socklnd.$(OBJEXT) \
+- at DARWIN_TRUE@	ksocklnd-socklnd_cb.$(OBJEXT) \
+- at DARWIN_TRUE@	ksocklnd-socklnd_modparams.$(OBJEXT) \
+- at DARWIN_TRUE@	ksocklnd-socklnd_lib-darwin.$(OBJEXT)
+-ksocklnd_OBJECTS = $(nodist_ksocklnd_OBJECTS)
+- at DARWIN_TRUE@ksocklnd_DEPENDENCIES =
+- at DARWIN_FALSE@ksocklnd_DEPENDENCIES =
+-
+-DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)
+-depcomp = $(SHELL) $(top_srcdir)/depcomp
+-am__depfiles_maybe = depfiles
+- at AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/ksocklnd-socklnd.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ksocklnd-socklnd_cb.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ksocklnd-socklnd_lib-darwin.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ksocklnd-socklnd_modparams.Po
+-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+-	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-CCLD = $(CC)
+-LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DATA = $(modulenet_DATA) $(plist_DATA)
++DATA = $(modulenet_DATA)
+ 
+ DIST_COMMON = $(srcdir)/autoMakefile.in Makefile.in autoMakefile.am
+-SOURCES = $(nodist_ksocklnd_SOURCES)
+-
+ all: all-am
+ 
+ .SUFFIXES:
+-.SUFFIXES: .c .o .obj
+ $(srcdir)/autoMakefile.in:  autoMakefile.am  $(top_srcdir)/configure.ac $(ACLOCAL_M4)
+ 	cd $(top_srcdir) && \
+ 	  $(AUTOMAKE) --gnu  lnet/klnds/socklnd/autoMakefile
+@@ -354,154 +314,6 @@
+ 	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
+ Makefile: $(top_builddir)/config.status Makefile.in
+ 	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
+-macosPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+-install-macosPROGRAMS: $(macos_PROGRAMS)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f"; \
+-	   $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f || exit 1; \
+-	  else :; fi; \
+-	done
+-
+-uninstall-macosPROGRAMS:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f $(DESTDIR)$(macosdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(macosdir)/$$f; \
+-	done
+-
+-clean-macosPROGRAMS:
+-	-test -z "$(macos_PROGRAMS)" || rm -f $(macos_PROGRAMS)
+-ksocklnd$(EXEEXT): $(ksocklnd_OBJECTS) $(ksocklnd_DEPENDENCIES) 
+-	@rm -f ksocklnd$(EXEEXT)
+-	$(LINK) $(ksocklnd_LDFLAGS) $(ksocklnd_OBJECTS) $(ksocklnd_LDADD) $(LIBS)
+-
+-mostlyclean-compile:
+-	-rm -f *.$(OBJEXT) core *.core
+-
+-distclean-compile:
+-	-rm -f *.tab.c
+-
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ksocklnd-socklnd.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ksocklnd-socklnd_cb.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ksocklnd-socklnd_lib-darwin.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ksocklnd-socklnd_modparams.Po at am__quote@
+-
+-.c.o:
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$<
+-
+-.c.obj:
+- at am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`
+-
+-ksocklnd-socklnd.o: socklnd.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -MT ksocklnd-socklnd.o -MD -MP -MF "$(DEPDIR)/ksocklnd-socklnd.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ksocklnd-socklnd.o `test -f 'socklnd.c' || echo '$(srcdir)/'`socklnd.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ksocklnd-socklnd.Tpo" "$(DEPDIR)/ksocklnd-socklnd.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ksocklnd-socklnd.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='socklnd.c' object='ksocklnd-socklnd.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ksocklnd-socklnd.Po' tmpdepfile='$(DEPDIR)/ksocklnd-socklnd.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -c -o ksocklnd-socklnd.o `test -f 'socklnd.c' || echo '$(srcdir)/'`socklnd.c
+-
+-ksocklnd-socklnd.obj: socklnd.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -MT ksocklnd-socklnd.obj -MD -MP -MF "$(DEPDIR)/ksocklnd-socklnd.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ksocklnd-socklnd.obj `if test -f 'socklnd.c'; then $(CYGPATH_W) 'socklnd.c'; else $(CYGPATH_W) '$(srcdir)/socklnd.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ksocklnd-socklnd.Tpo" "$(DEPDIR)/ksocklnd-socklnd.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ksocklnd-socklnd.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='socklnd.c' object='ksocklnd-socklnd.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ksocklnd-socklnd.Po' tmpdepfile='$(DEPDIR)/ksocklnd-socklnd.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -c -o ksocklnd-socklnd.obj `if test -f 'socklnd.c'; then $(CYGPATH_W) 'socklnd.c'; else $(CYGPATH_W) '$(srcdir)/socklnd.c'; fi`
+-
+-ksocklnd-socklnd_cb.o: socklnd_cb.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -MT ksocklnd-socklnd_cb.o -MD -MP -MF "$(DEPDIR)/ksocklnd-socklnd_cb.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ksocklnd-socklnd_cb.o `test -f 'socklnd_cb.c' || echo '$(srcdir)/'`socklnd_cb.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ksocklnd-socklnd_cb.Tpo" "$(DEPDIR)/ksocklnd-socklnd_cb.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ksocklnd-socklnd_cb.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='socklnd_cb.c' object='ksocklnd-socklnd_cb.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ksocklnd-socklnd_cb.Po' tmpdepfile='$(DEPDIR)/ksocklnd-socklnd_cb.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -c -o ksocklnd-socklnd_cb.o `test -f 'socklnd_cb.c' || echo '$(srcdir)/'`socklnd_cb.c
+-
+-ksocklnd-socklnd_cb.obj: socklnd_cb.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -MT ksocklnd-socklnd_cb.obj -MD -MP -MF "$(DEPDIR)/ksocklnd-socklnd_cb.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ksocklnd-socklnd_cb.obj `if test -f 'socklnd_cb.c'; then $(CYGPATH_W) 'socklnd_cb.c'; else $(CYGPATH_W) '$(srcdir)/socklnd_cb.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ksocklnd-socklnd_cb.Tpo" "$(DEPDIR)/ksocklnd-socklnd_cb.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ksocklnd-socklnd_cb.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='socklnd_cb.c' object='ksocklnd-socklnd_cb.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ksocklnd-socklnd_cb.Po' tmpdepfile='$(DEPDIR)/ksocklnd-socklnd_cb.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -c -o ksocklnd-socklnd_cb.obj `if test -f 'socklnd_cb.c'; then $(CYGPATH_W) 'socklnd_cb.c'; else $(CYGPATH_W) '$(srcdir)/socklnd_cb.c'; fi`
+-
+-ksocklnd-socklnd_modparams.o: socklnd_modparams.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -MT ksocklnd-socklnd_modparams.o -MD -MP -MF "$(DEPDIR)/ksocklnd-socklnd_modparams.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ksocklnd-socklnd_modparams.o `test -f 'socklnd_modparams.c' || echo '$(srcdir)/'`socklnd_modparams.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ksocklnd-socklnd_modparams.Tpo" "$(DEPDIR)/ksocklnd-socklnd_modparams.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ksocklnd-socklnd_modparams.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='socklnd_modparams.c' object='ksocklnd-socklnd_modparams.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ksocklnd-socklnd_modparams.Po' tmpdepfile='$(DEPDIR)/ksocklnd-socklnd_modparams.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -c -o ksocklnd-socklnd_modparams.o `test -f 'socklnd_modparams.c' || echo '$(srcdir)/'`socklnd_modparams.c
+-
+-ksocklnd-socklnd_modparams.obj: socklnd_modparams.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -MT ksocklnd-socklnd_modparams.obj -MD -MP -MF "$(DEPDIR)/ksocklnd-socklnd_modparams.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ksocklnd-socklnd_modparams.obj `if test -f 'socklnd_modparams.c'; then $(CYGPATH_W) 'socklnd_modparams.c'; else $(CYGPATH_W) '$(srcdir)/socklnd_modparams.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ksocklnd-socklnd_modparams.Tpo" "$(DEPDIR)/ksocklnd-socklnd_modparams.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ksocklnd-socklnd_modparams.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='socklnd_modparams.c' object='ksocklnd-socklnd_modparams.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ksocklnd-socklnd_modparams.Po' tmpdepfile='$(DEPDIR)/ksocklnd-socklnd_modparams.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -c -o ksocklnd-socklnd_modparams.obj `if test -f 'socklnd_modparams.c'; then $(CYGPATH_W) 'socklnd_modparams.c'; else $(CYGPATH_W) '$(srcdir)/socklnd_modparams.c'; fi`
+-
+-ksocklnd-socklnd_lib-darwin.o: socklnd_lib-darwin.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -MT ksocklnd-socklnd_lib-darwin.o -MD -MP -MF "$(DEPDIR)/ksocklnd-socklnd_lib-darwin.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ksocklnd-socklnd_lib-darwin.o `test -f 'socklnd_lib-darwin.c' || echo '$(srcdir)/'`socklnd_lib-darwin.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ksocklnd-socklnd_lib-darwin.Tpo" "$(DEPDIR)/ksocklnd-socklnd_lib-darwin.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ksocklnd-socklnd_lib-darwin.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='socklnd_lib-darwin.c' object='ksocklnd-socklnd_lib-darwin.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ksocklnd-socklnd_lib-darwin.Po' tmpdepfile='$(DEPDIR)/ksocklnd-socklnd_lib-darwin.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -c -o ksocklnd-socklnd_lib-darwin.o `test -f 'socklnd_lib-darwin.c' || echo '$(srcdir)/'`socklnd_lib-darwin.c
+-
+-ksocklnd-socklnd_lib-darwin.obj: socklnd_lib-darwin.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -MT ksocklnd-socklnd_lib-darwin.obj -MD -MP -MF "$(DEPDIR)/ksocklnd-socklnd_lib-darwin.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ksocklnd-socklnd_lib-darwin.obj `if test -f 'socklnd_lib-darwin.c'; then $(CYGPATH_W) 'socklnd_lib-darwin.c'; else $(CYGPATH_W) '$(srcdir)/socklnd_lib-darwin.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ksocklnd-socklnd_lib-darwin.Tpo" "$(DEPDIR)/ksocklnd-socklnd_lib-darwin.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ksocklnd-socklnd_lib-darwin.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='socklnd_lib-darwin.c' object='ksocklnd-socklnd_lib-darwin.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ksocklnd-socklnd_lib-darwin.Po' tmpdepfile='$(DEPDIR)/ksocklnd-socklnd_lib-darwin.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ksocklnd_CFLAGS) $(CFLAGS) -c -o ksocklnd-socklnd_lib-darwin.obj `if test -f 'socklnd_lib-darwin.c'; then $(CYGPATH_W) 'socklnd_lib-darwin.c'; else $(CYGPATH_W) '$(srcdir)/socklnd_lib-darwin.c'; fi`
+ uninstall-info-am:
+ modulenetDATA_INSTALL = $(INSTALL_DATA)
+ install-modulenetDATA: $(modulenet_DATA)
+@@ -521,78 +333,12 @@
+ 	  echo " rm -f $(DESTDIR)$(modulenetdir)/$$f"; \
+ 	  rm -f $(DESTDIR)$(modulenetdir)/$$f; \
+ 	done
+-plistDATA_INSTALL = $(INSTALL_DATA)
+-install-plistDATA: $(plist_DATA)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(plistdir)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f"; \
+-	  $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f; \
+-	done
+-
+-uninstall-plistDATA:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " rm -f $(DESTDIR)$(plistdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(plistdir)/$$f; \
+-	done
+-
+-ETAGS = etags
+-ETAGSFLAGS =
+-
+-CTAGS = ctags
+-CTAGSFLAGS =
+-
+ tags: TAGS
+-
+-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+-	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	mkid -fID $$unique
+-
+-TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(ETAGS_ARGS)$$tags$$unique" \
+-	  || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	     $$tags $$unique
++TAGS:
+ 
+ ctags: CTAGS
+-CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+-		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+-	unique=`for i in $$list; do \
+-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+-	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
+-	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
+-
+-GTAGS:
+-	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
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ 
+ top_distdir = ../../..
+@@ -627,10 +373,10 @@
+ 	done
+ check-am: all-am
+ check: check-am
+-all-am: autoMakefile $(PROGRAMS) $(DATA)
++all-am: autoMakefile $(DATA)
+ 
+ installdirs:
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir) $(DESTDIR)$(modulenetdir) $(DESTDIR)$(plistdir)
++	$(mkinstalldirs) $(DESTDIR)$(modulenetdir)
+ install: install-am
+ install-exec: install-exec-am
+ install-data: install-data-am
+@@ -658,13 +404,11 @@
+ 	@echo "it deletes files that may require special tools to rebuild."
+ clean: clean-am
+ 
+-clean-am: clean-generic clean-macosPROGRAMS mostlyclean-am
++clean-am: clean-generic mostlyclean-am
+ 
+ distclean: distclean-am
+-	-rm -rf ./$(DEPDIR)
+ 	-rm -f Makefile
+-distclean-am: clean-am distclean-compile distclean-generic \
+-	distclean-tags
++distclean-am: clean-am distclean-generic
+ 
+ dvi: dvi-am
+ 
+@@ -674,8 +418,7 @@
+ 
+ info-am:
+ 
+-install-data-am: install-macosPROGRAMS install-modulenetDATA \
+-	install-plistDATA
++install-data-am: install-modulenetDATA
+ 	@$(NORMAL_INSTALL)
+ 	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
+ 
+@@ -688,13 +431,12 @@
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-am
+-	-rm -rf ./$(DEPDIR)
+ 	-rm -f Makefile
+ maintainer-clean-am: distclean-am maintainer-clean-generic
+ 
+ mostlyclean: mostlyclean-am
+ 
+-mostlyclean-am: mostlyclean-compile mostlyclean-generic
++mostlyclean-am: mostlyclean-generic
+ 
+ pdf: pdf-am
+ 
+@@ -704,21 +446,35 @@
+ 
+ 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 \
+-	info-am install install-am install-data install-data-am \
+-	install-exec install-exec-am install-info install-info-am \
+-	install-macosPROGRAMS install-man install-modulenetDATA \
+-	install-plistDATA install-strip installcheck installcheck-am \
+-	installdirs maintainer-clean maintainer-clean-generic \
+-	mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \
+-	ps ps-am tags uninstall uninstall-am uninstall-info-am \
+-	uninstall-macosPROGRAMS uninstall-modulenetDATA \
+-	uninstall-plistDATA
++.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 \
++	install-exec-am install-info install-info-am install-man \
++	install-modulenetDATA install-strip installcheck \
++	installcheck-am installdirs maintainer-clean \
++	maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
++	pdf-am ps ps-am uninstall uninstall-am uninstall-info-am \
++	uninstall-modulenetDATA
++
++
++#if DARWIN
++#
++#  macos_PROGRAMS := ksocklnd
++#
++#  nodist_ksocklnd_SOURCES := socklnd.c socklnd_cb.c socklnd_modparams.c socklnd_lib-darwin.c
++#  DIST_SOURCES += socklnd_lib-darwin.c socklnd_lib-darwin.h
++#
++#  ksocklnd_CFLAGS := $(EXTRA_KCFLAGS)
++#  ksocklnd_LDFLAGS := $(EXTRA_KLDFLAGS)
++#  ksocklnd_LDADD := $(EXTRA_KLIBS)
++#
++#  plist_DATA := Info.plist
++#  install_data_hook := fix-kext-ownership
++#
++#  EXTRA_DIST := $(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 lustre-1.6.7.2.orig/lnet/klnds/viblnd/autoMakefile.in lustre-1.6.7.2/lnet/klnds/viblnd/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/klnds/viblnd/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/klnds/viblnd/autoMakefile.in	2009-08-10 10:05:38.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/libcfs/autoMakefile.in lustre-1.6.7.2/lnet/libcfs/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/libcfs/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/libcfs/autoMakefile.in	2009-08-10 10:05:38.000000000 +0200
+@@ -74,7 +74,6 @@
+ build_triplet = @build@
+ host_triplet = @host@
+ target_triplet = @target@
+- at DARWIN_TRUE@am__append_1 = darwin
+ 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 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -274,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -289,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -298,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+@@ -330,7 +329,10 @@
+ target_os = @target_os@
+ target_vendor = @target_vendor@
+ 
+-SUBDIRS = linux $(am__append_1)
++SUBDIRS := linux
++#if DARWIN
++#SUBDIRS += darwin
++#endif
+ DIST_SUBDIRS := $(SUBDIRS)
+ 
+ @LIBLUSTRE_TRUE at noinst_LIBRARIES = libcfs.a
+@@ -340,24 +342,6 @@
+ 
+ @LINUX_TRUE@@MODULES_TRUE at modulenet_DATA := libcfs$(KMODEXT)
+ 
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS := libcfs
+-
+- at DARWIN_TRUE@@MODULES_TRUE at nodist_libcfs_SOURCES := darwin/darwin-sync.c darwin/darwin-mem.c	\
+- at DARWIN_TRUE@@MODULES_TRUE@	darwin/darwin-prim.c darwin/darwin-fs.c darwin/darwin-curproc.c	\
+- at DARWIN_TRUE@@MODULES_TRUE@	darwin/darwin-tcpip.c darwin/darwin-utils.c 			\
+- at DARWIN_TRUE@@MODULES_TRUE@	darwin/darwin-debug.c darwin/darwin-proc.c 			\
+- at DARWIN_TRUE@@MODULES_TRUE@	darwin/darwin-tracefile.c darwin/darwin-module.c 		\
+- at DARWIN_TRUE@@MODULES_TRUE@	debug.c module.c tracefile.c nidstrings.c watchdog.c
+-
+-
+- at DARWIN_TRUE@@MODULES_TRUE at libcfs_CFLAGS := $(EXTRA_KCFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at libcfs_LDFLAGS := $(EXTRA_KLDFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at libcfs_LDADD := $(EXTRA_KLIBS)
+-
+- at DARWIN_TRUE@@MODULES_TRUE at plist_DATA := Info.plist
+-
+- at DARWIN_TRUE@@MODULES_TRUE at install_data_hook := fix-kext-ownership
+-
+ EXTRA_DIST := Info.plist
+ DIST_SOURCES := $(libcfs-all-objs:%.o=%.c) tracefile.h user-prim.c \
+                                            user-lock.c user-tcpip.c user-bitops.c
+@@ -379,55 +363,11 @@
+ @LIBLUSTRE_TRUE@	libcfs_a-user-tcpip.$(OBJEXT) \
+ @LIBLUSTRE_TRUE@	libcfs_a-user-bitops.$(OBJEXT)
+ libcfs_a_OBJECTS = $(am_libcfs_a_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at macos_PROGRAMS =
+- at DARWIN_FALSE@@MODULES_FALSE at macos_PROGRAMS =
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS = libcfs$(EXEEXT)
+- at DARWIN_TRUE@@MODULES_FALSE at macos_PROGRAMS =
+-PROGRAMS = $(macos_PROGRAMS)
+-
+- at DARWIN_TRUE@@MODULES_TRUE at nodist_libcfs_OBJECTS = \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-darwin-sync.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-darwin-mem.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-darwin-prim.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-darwin-fs.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-darwin-curproc.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-darwin-tcpip.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-darwin-utils.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-darwin-debug.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-darwin-proc.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-darwin-tracefile.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-darwin-module.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-debug.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-module.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-tracefile.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-nidstrings.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	libcfs-watchdog.$(OBJEXT)
+-libcfs_OBJECTS = $(nodist_libcfs_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at libcfs_DEPENDENCIES =
+- at DARWIN_FALSE@@MODULES_FALSE at libcfs_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_TRUE at libcfs_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_FALSE at libcfs_DEPENDENCIES =
+ 
+ DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+ am__depfiles_maybe = depfiles
+- at AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/libcfs-darwin-curproc.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-darwin-debug.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-darwin-fs.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-darwin-mem.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-darwin-module.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-darwin-prim.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-darwin-proc.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-darwin-sync.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-darwin-tcpip.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-darwin-tracefile.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-darwin-utils.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-debug.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-module.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-nidstrings.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-tracefile.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs-watchdog.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libcfs_a-debug.Po \
++ at AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/libcfs_a-debug.Po \
+ @AMDEP_TRUE@	./$(DEPDIR)/libcfs_a-user-bitops.Po \
+ @AMDEP_TRUE@	./$(DEPDIR)/libcfs_a-user-lock.Po \
+ @AMDEP_TRUE@	./$(DEPDIR)/libcfs_a-user-prim.Po \
+@@ -436,7 +376,7 @@
+ 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+ CCLD = $(CC)
+ LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DATA = $(modulenet_DATA) $(plist_DATA)
++DATA = $(modulenet_DATA)
+ 
+ 
+ RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
+@@ -445,7 +385,7 @@
+ 	installdirs-recursive install-recursive uninstall-recursive \
+ 	check-recursive installcheck-recursive
+ DIST_COMMON = $(srcdir)/autoMakefile.in Makefile.in autoMakefile.am
+-SOURCES = $(libcfs_a_SOURCES) $(nodist_libcfs_SOURCES)
++SOURCES = $(libcfs_a_SOURCES)
+ 
+ all: all-recursive
+ 
+@@ -467,33 +407,6 @@
+ 	-rm -f libcfs.a
+ 	$(libcfs_a_AR) libcfs.a $(libcfs_a_OBJECTS) $(libcfs_a_LIBADD)
+ 	$(RANLIB) libcfs.a
+-macosPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+-install-macosPROGRAMS: $(macos_PROGRAMS)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f"; \
+-	   $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f || exit 1; \
+-	  else :; fi; \
+-	done
+-
+-uninstall-macosPROGRAMS:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f $(DESTDIR)$(macosdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(macosdir)/$$f; \
+-	done
+-
+-clean-macosPROGRAMS:
+-	-test -z "$(macos_PROGRAMS)" || rm -f $(macos_PROGRAMS)
+-libcfs$(EXEEXT): $(libcfs_OBJECTS) $(libcfs_DEPENDENCIES) 
+-	@rm -f libcfs$(EXEEXT)
+-	$(LINK) $(libcfs_LDFLAGS) $(libcfs_OBJECTS) $(libcfs_LDADD) $(LIBS)
+ 
+ mostlyclean-compile:
+ 	-rm -f *.$(OBJEXT) core *.core
+@@ -501,22 +414,6 @@
+ distclean-compile:
+ 	-rm -f *.tab.c
+ 
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-darwin-curproc.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-darwin-debug.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-darwin-fs.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-darwin-mem.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-darwin-module.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-darwin-prim.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-darwin-proc.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-darwin-sync.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-darwin-tcpip.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-darwin-tracefile.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-darwin-utils.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-debug.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-module.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-nidstrings.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-tracefile.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libcfs-watchdog.Po at am__quote@
+ @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@
+@@ -654,358 +551,6 @@
+ @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`
+-
+-libcfs-darwin-sync.o: darwin/darwin-sync.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-sync.o -MD -MP -MF "$(DEPDIR)/libcfs-darwin-sync.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-sync.o `test -f 'darwin/darwin-sync.c' || echo '$(srcdir)/'`darwin/darwin-sync.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-sync.Tpo" "$(DEPDIR)/libcfs-darwin-sync.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-sync.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-sync.c' object='libcfs-darwin-sync.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-sync.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-sync.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-sync.o `test -f 'darwin/darwin-sync.c' || echo '$(srcdir)/'`darwin/darwin-sync.c
+-
+-libcfs-darwin-sync.obj: darwin/darwin-sync.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-sync.obj -MD -MP -MF "$(DEPDIR)/libcfs-darwin-sync.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-sync.obj `if test -f 'darwin/darwin-sync.c'; then $(CYGPATH_W) 'darwin/darwin-sync.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-sync.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-sync.Tpo" "$(DEPDIR)/libcfs-darwin-sync.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-sync.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-sync.c' object='libcfs-darwin-sync.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-sync.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-sync.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-sync.obj `if test -f 'darwin/darwin-sync.c'; then $(CYGPATH_W) 'darwin/darwin-sync.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-sync.c'; fi`
+-
+-libcfs-darwin-mem.o: darwin/darwin-mem.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-mem.o -MD -MP -MF "$(DEPDIR)/libcfs-darwin-mem.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-mem.o `test -f 'darwin/darwin-mem.c' || echo '$(srcdir)/'`darwin/darwin-mem.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-mem.Tpo" "$(DEPDIR)/libcfs-darwin-mem.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-mem.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-mem.c' object='libcfs-darwin-mem.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-mem.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-mem.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-mem.o `test -f 'darwin/darwin-mem.c' || echo '$(srcdir)/'`darwin/darwin-mem.c
+-
+-libcfs-darwin-mem.obj: darwin/darwin-mem.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-mem.obj -MD -MP -MF "$(DEPDIR)/libcfs-darwin-mem.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-mem.obj `if test -f 'darwin/darwin-mem.c'; then $(CYGPATH_W) 'darwin/darwin-mem.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-mem.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-mem.Tpo" "$(DEPDIR)/libcfs-darwin-mem.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-mem.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-mem.c' object='libcfs-darwin-mem.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-mem.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-mem.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-mem.obj `if test -f 'darwin/darwin-mem.c'; then $(CYGPATH_W) 'darwin/darwin-mem.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-mem.c'; fi`
+-
+-libcfs-darwin-prim.o: darwin/darwin-prim.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-prim.o -MD -MP -MF "$(DEPDIR)/libcfs-darwin-prim.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-prim.o `test -f 'darwin/darwin-prim.c' || echo '$(srcdir)/'`darwin/darwin-prim.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-prim.Tpo" "$(DEPDIR)/libcfs-darwin-prim.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-prim.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-prim.c' object='libcfs-darwin-prim.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-prim.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-prim.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-prim.o `test -f 'darwin/darwin-prim.c' || echo '$(srcdir)/'`darwin/darwin-prim.c
+-
+-libcfs-darwin-prim.obj: darwin/darwin-prim.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-prim.obj -MD -MP -MF "$(DEPDIR)/libcfs-darwin-prim.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-prim.obj `if test -f 'darwin/darwin-prim.c'; then $(CYGPATH_W) 'darwin/darwin-prim.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-prim.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-prim.Tpo" "$(DEPDIR)/libcfs-darwin-prim.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-prim.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-prim.c' object='libcfs-darwin-prim.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-prim.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-prim.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-prim.obj `if test -f 'darwin/darwin-prim.c'; then $(CYGPATH_W) 'darwin/darwin-prim.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-prim.c'; fi`
+-
+-libcfs-darwin-fs.o: darwin/darwin-fs.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-fs.o -MD -MP -MF "$(DEPDIR)/libcfs-darwin-fs.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-fs.o `test -f 'darwin/darwin-fs.c' || echo '$(srcdir)/'`darwin/darwin-fs.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-fs.Tpo" "$(DEPDIR)/libcfs-darwin-fs.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-fs.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-fs.c' object='libcfs-darwin-fs.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-fs.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-fs.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-fs.o `test -f 'darwin/darwin-fs.c' || echo '$(srcdir)/'`darwin/darwin-fs.c
+-
+-libcfs-darwin-fs.obj: darwin/darwin-fs.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-fs.obj -MD -MP -MF "$(DEPDIR)/libcfs-darwin-fs.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-fs.obj `if test -f 'darwin/darwin-fs.c'; then $(CYGPATH_W) 'darwin/darwin-fs.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-fs.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-fs.Tpo" "$(DEPDIR)/libcfs-darwin-fs.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-fs.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-fs.c' object='libcfs-darwin-fs.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-fs.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-fs.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-fs.obj `if test -f 'darwin/darwin-fs.c'; then $(CYGPATH_W) 'darwin/darwin-fs.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-fs.c'; fi`
+-
+-libcfs-darwin-curproc.o: darwin/darwin-curproc.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-curproc.o -MD -MP -MF "$(DEPDIR)/libcfs-darwin-curproc.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-curproc.o `test -f 'darwin/darwin-curproc.c' || echo '$(srcdir)/'`darwin/darwin-curproc.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-curproc.Tpo" "$(DEPDIR)/libcfs-darwin-curproc.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-curproc.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-curproc.c' object='libcfs-darwin-curproc.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-curproc.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-curproc.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-curproc.o `test -f 'darwin/darwin-curproc.c' || echo '$(srcdir)/'`darwin/darwin-curproc.c
+-
+-libcfs-darwin-curproc.obj: darwin/darwin-curproc.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-curproc.obj -MD -MP -MF "$(DEPDIR)/libcfs-darwin-curproc.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-curproc.obj `if test -f 'darwin/darwin-curproc.c'; then $(CYGPATH_W) 'darwin/darwin-curproc.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-curproc.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-curproc.Tpo" "$(DEPDIR)/libcfs-darwin-curproc.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-curproc.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-curproc.c' object='libcfs-darwin-curproc.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-curproc.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-curproc.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-curproc.obj `if test -f 'darwin/darwin-curproc.c'; then $(CYGPATH_W) 'darwin/darwin-curproc.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-curproc.c'; fi`
+-
+-libcfs-darwin-tcpip.o: darwin/darwin-tcpip.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-tcpip.o -MD -MP -MF "$(DEPDIR)/libcfs-darwin-tcpip.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-tcpip.o `test -f 'darwin/darwin-tcpip.c' || echo '$(srcdir)/'`darwin/darwin-tcpip.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-tcpip.Tpo" "$(DEPDIR)/libcfs-darwin-tcpip.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-tcpip.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-tcpip.c' object='libcfs-darwin-tcpip.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-tcpip.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-tcpip.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-tcpip.o `test -f 'darwin/darwin-tcpip.c' || echo '$(srcdir)/'`darwin/darwin-tcpip.c
+-
+-libcfs-darwin-tcpip.obj: darwin/darwin-tcpip.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-tcpip.obj -MD -MP -MF "$(DEPDIR)/libcfs-darwin-tcpip.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-tcpip.obj `if test -f 'darwin/darwin-tcpip.c'; then $(CYGPATH_W) 'darwin/darwin-tcpip.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-tcpip.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-tcpip.Tpo" "$(DEPDIR)/libcfs-darwin-tcpip.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-tcpip.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-tcpip.c' object='libcfs-darwin-tcpip.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-tcpip.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-tcpip.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-tcpip.obj `if test -f 'darwin/darwin-tcpip.c'; then $(CYGPATH_W) 'darwin/darwin-tcpip.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-tcpip.c'; fi`
+-
+-libcfs-darwin-utils.o: darwin/darwin-utils.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-utils.o -MD -MP -MF "$(DEPDIR)/libcfs-darwin-utils.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-utils.o `test -f 'darwin/darwin-utils.c' || echo '$(srcdir)/'`darwin/darwin-utils.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-utils.Tpo" "$(DEPDIR)/libcfs-darwin-utils.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-utils.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-utils.c' object='libcfs-darwin-utils.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-utils.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-utils.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-utils.o `test -f 'darwin/darwin-utils.c' || echo '$(srcdir)/'`darwin/darwin-utils.c
+-
+-libcfs-darwin-utils.obj: darwin/darwin-utils.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-utils.obj -MD -MP -MF "$(DEPDIR)/libcfs-darwin-utils.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-utils.obj `if test -f 'darwin/darwin-utils.c'; then $(CYGPATH_W) 'darwin/darwin-utils.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-utils.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-utils.Tpo" "$(DEPDIR)/libcfs-darwin-utils.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-utils.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-utils.c' object='libcfs-darwin-utils.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-utils.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-utils.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-utils.obj `if test -f 'darwin/darwin-utils.c'; then $(CYGPATH_W) 'darwin/darwin-utils.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-utils.c'; fi`
+-
+-libcfs-darwin-debug.o: darwin/darwin-debug.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-debug.o -MD -MP -MF "$(DEPDIR)/libcfs-darwin-debug.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-debug.o `test -f 'darwin/darwin-debug.c' || echo '$(srcdir)/'`darwin/darwin-debug.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-debug.Tpo" "$(DEPDIR)/libcfs-darwin-debug.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-debug.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-debug.c' object='libcfs-darwin-debug.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-debug.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-debug.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-debug.o `test -f 'darwin/darwin-debug.c' || echo '$(srcdir)/'`darwin/darwin-debug.c
+-
+-libcfs-darwin-debug.obj: darwin/darwin-debug.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-debug.obj -MD -MP -MF "$(DEPDIR)/libcfs-darwin-debug.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-debug.obj `if test -f 'darwin/darwin-debug.c'; then $(CYGPATH_W) 'darwin/darwin-debug.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-debug.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-debug.Tpo" "$(DEPDIR)/libcfs-darwin-debug.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-debug.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-debug.c' object='libcfs-darwin-debug.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-debug.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-debug.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-debug.obj `if test -f 'darwin/darwin-debug.c'; then $(CYGPATH_W) 'darwin/darwin-debug.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-debug.c'; fi`
+-
+-libcfs-darwin-proc.o: darwin/darwin-proc.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-proc.o -MD -MP -MF "$(DEPDIR)/libcfs-darwin-proc.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-proc.o `test -f 'darwin/darwin-proc.c' || echo '$(srcdir)/'`darwin/darwin-proc.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-proc.Tpo" "$(DEPDIR)/libcfs-darwin-proc.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-proc.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-proc.c' object='libcfs-darwin-proc.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-proc.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-proc.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-proc.o `test -f 'darwin/darwin-proc.c' || echo '$(srcdir)/'`darwin/darwin-proc.c
+-
+-libcfs-darwin-proc.obj: darwin/darwin-proc.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-proc.obj -MD -MP -MF "$(DEPDIR)/libcfs-darwin-proc.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-proc.obj `if test -f 'darwin/darwin-proc.c'; then $(CYGPATH_W) 'darwin/darwin-proc.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-proc.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-proc.Tpo" "$(DEPDIR)/libcfs-darwin-proc.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-proc.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-proc.c' object='libcfs-darwin-proc.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-proc.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-proc.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-proc.obj `if test -f 'darwin/darwin-proc.c'; then $(CYGPATH_W) 'darwin/darwin-proc.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-proc.c'; fi`
+-
+-libcfs-darwin-tracefile.o: darwin/darwin-tracefile.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-tracefile.o -MD -MP -MF "$(DEPDIR)/libcfs-darwin-tracefile.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-tracefile.o `test -f 'darwin/darwin-tracefile.c' || echo '$(srcdir)/'`darwin/darwin-tracefile.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-tracefile.Tpo" "$(DEPDIR)/libcfs-darwin-tracefile.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-tracefile.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-tracefile.c' object='libcfs-darwin-tracefile.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-tracefile.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-tracefile.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-tracefile.o `test -f 'darwin/darwin-tracefile.c' || echo '$(srcdir)/'`darwin/darwin-tracefile.c
+-
+-libcfs-darwin-tracefile.obj: darwin/darwin-tracefile.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-tracefile.obj -MD -MP -MF "$(DEPDIR)/libcfs-darwin-tracefile.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-tracefile.obj `if test -f 'darwin/darwin-tracefile.c'; then $(CYGPATH_W) 'darwin/darwin-tracefile.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-tracefile.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-tracefile.Tpo" "$(DEPDIR)/libcfs-darwin-tracefile.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-tracefile.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-tracefile.c' object='libcfs-darwin-tracefile.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-tracefile.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-tracefile.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-tracefile.obj `if test -f 'darwin/darwin-tracefile.c'; then $(CYGPATH_W) 'darwin/darwin-tracefile.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-tracefile.c'; fi`
+-
+-libcfs-darwin-module.o: darwin/darwin-module.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-module.o -MD -MP -MF "$(DEPDIR)/libcfs-darwin-module.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-module.o `test -f 'darwin/darwin-module.c' || echo '$(srcdir)/'`darwin/darwin-module.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-module.Tpo" "$(DEPDIR)/libcfs-darwin-module.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-module.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-module.c' object='libcfs-darwin-module.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-module.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-module.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-module.o `test -f 'darwin/darwin-module.c' || echo '$(srcdir)/'`darwin/darwin-module.c
+-
+-libcfs-darwin-module.obj: darwin/darwin-module.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-darwin-module.obj -MD -MP -MF "$(DEPDIR)/libcfs-darwin-module.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-darwin-module.obj `if test -f 'darwin/darwin-module.c'; then $(CYGPATH_W) 'darwin/darwin-module.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-module.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-darwin-module.Tpo" "$(DEPDIR)/libcfs-darwin-module.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-darwin-module.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-module.c' object='libcfs-darwin-module.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-darwin-module.Po' tmpdepfile='$(DEPDIR)/libcfs-darwin-module.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-darwin-module.obj `if test -f 'darwin/darwin-module.c'; then $(CYGPATH_W) 'darwin/darwin-module.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-module.c'; fi`
+-
+-libcfs-debug.o: debug.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-debug.o -MD -MP -MF "$(DEPDIR)/libcfs-debug.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-debug.o `test -f 'debug.c' || echo '$(srcdir)/'`debug.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-debug.Tpo" "$(DEPDIR)/libcfs-debug.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-debug.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='debug.c' object='libcfs-debug.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-debug.Po' tmpdepfile='$(DEPDIR)/libcfs-debug.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-debug.o `test -f 'debug.c' || echo '$(srcdir)/'`debug.c
+-
+-libcfs-debug.obj: debug.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-debug.obj -MD -MP -MF "$(DEPDIR)/libcfs-debug.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-debug.obj `if test -f 'debug.c'; then $(CYGPATH_W) 'debug.c'; else $(CYGPATH_W) '$(srcdir)/debug.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-debug.Tpo" "$(DEPDIR)/libcfs-debug.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-debug.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='debug.c' object='libcfs-debug.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-debug.Po' tmpdepfile='$(DEPDIR)/libcfs-debug.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-debug.obj `if test -f 'debug.c'; then $(CYGPATH_W) 'debug.c'; else $(CYGPATH_W) '$(srcdir)/debug.c'; fi`
+-
+-libcfs-module.o: module.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-module.o -MD -MP -MF "$(DEPDIR)/libcfs-module.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-module.o `test -f 'module.c' || echo '$(srcdir)/'`module.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-module.Tpo" "$(DEPDIR)/libcfs-module.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-module.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='module.c' object='libcfs-module.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-module.Po' tmpdepfile='$(DEPDIR)/libcfs-module.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-module.o `test -f 'module.c' || echo '$(srcdir)/'`module.c
+-
+-libcfs-module.obj: module.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-module.obj -MD -MP -MF "$(DEPDIR)/libcfs-module.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-module.obj `if test -f 'module.c'; then $(CYGPATH_W) 'module.c'; else $(CYGPATH_W) '$(srcdir)/module.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-module.Tpo" "$(DEPDIR)/libcfs-module.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-module.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='module.c' object='libcfs-module.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-module.Po' tmpdepfile='$(DEPDIR)/libcfs-module.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-module.obj `if test -f 'module.c'; then $(CYGPATH_W) 'module.c'; else $(CYGPATH_W) '$(srcdir)/module.c'; fi`
+-
+-libcfs-tracefile.o: tracefile.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-tracefile.o -MD -MP -MF "$(DEPDIR)/libcfs-tracefile.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-tracefile.o `test -f 'tracefile.c' || echo '$(srcdir)/'`tracefile.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-tracefile.Tpo" "$(DEPDIR)/libcfs-tracefile.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-tracefile.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='tracefile.c' object='libcfs-tracefile.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-tracefile.Po' tmpdepfile='$(DEPDIR)/libcfs-tracefile.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-tracefile.o `test -f 'tracefile.c' || echo '$(srcdir)/'`tracefile.c
+-
+-libcfs-tracefile.obj: tracefile.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-tracefile.obj -MD -MP -MF "$(DEPDIR)/libcfs-tracefile.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-tracefile.obj `if test -f 'tracefile.c'; then $(CYGPATH_W) 'tracefile.c'; else $(CYGPATH_W) '$(srcdir)/tracefile.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-tracefile.Tpo" "$(DEPDIR)/libcfs-tracefile.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-tracefile.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='tracefile.c' object='libcfs-tracefile.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-tracefile.Po' tmpdepfile='$(DEPDIR)/libcfs-tracefile.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-tracefile.obj `if test -f 'tracefile.c'; then $(CYGPATH_W) 'tracefile.c'; else $(CYGPATH_W) '$(srcdir)/tracefile.c'; fi`
+-
+-libcfs-nidstrings.o: nidstrings.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-nidstrings.o -MD -MP -MF "$(DEPDIR)/libcfs-nidstrings.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-nidstrings.o `test -f 'nidstrings.c' || echo '$(srcdir)/'`nidstrings.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-nidstrings.Tpo" "$(DEPDIR)/libcfs-nidstrings.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-nidstrings.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='nidstrings.c' object='libcfs-nidstrings.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-nidstrings.Po' tmpdepfile='$(DEPDIR)/libcfs-nidstrings.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-nidstrings.o `test -f 'nidstrings.c' || echo '$(srcdir)/'`nidstrings.c
+-
+-libcfs-nidstrings.obj: nidstrings.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-nidstrings.obj -MD -MP -MF "$(DEPDIR)/libcfs-nidstrings.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-nidstrings.obj `if test -f 'nidstrings.c'; then $(CYGPATH_W) 'nidstrings.c'; else $(CYGPATH_W) '$(srcdir)/nidstrings.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-nidstrings.Tpo" "$(DEPDIR)/libcfs-nidstrings.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-nidstrings.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='nidstrings.c' object='libcfs-nidstrings.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-nidstrings.Po' tmpdepfile='$(DEPDIR)/libcfs-nidstrings.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-nidstrings.obj `if test -f 'nidstrings.c'; then $(CYGPATH_W) 'nidstrings.c'; else $(CYGPATH_W) '$(srcdir)/nidstrings.c'; fi`
+-
+-libcfs-watchdog.o: watchdog.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-watchdog.o -MD -MP -MF "$(DEPDIR)/libcfs-watchdog.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-watchdog.o `test -f 'watchdog.c' || echo '$(srcdir)/'`watchdog.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-watchdog.Tpo" "$(DEPDIR)/libcfs-watchdog.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-watchdog.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='watchdog.c' object='libcfs-watchdog.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-watchdog.Po' tmpdepfile='$(DEPDIR)/libcfs-watchdog.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-watchdog.o `test -f 'watchdog.c' || echo '$(srcdir)/'`watchdog.c
+-
+-libcfs-watchdog.obj: watchdog.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -MT libcfs-watchdog.obj -MD -MP -MF "$(DEPDIR)/libcfs-watchdog.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o libcfs-watchdog.obj `if test -f 'watchdog.c'; then $(CYGPATH_W) 'watchdog.c'; else $(CYGPATH_W) '$(srcdir)/watchdog.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libcfs-watchdog.Tpo" "$(DEPDIR)/libcfs-watchdog.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/libcfs-watchdog.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='watchdog.c' object='libcfs-watchdog.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/libcfs-watchdog.Po' tmpdepfile='$(DEPDIR)/libcfs-watchdog.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcfs_CFLAGS) $(CFLAGS) -c -o libcfs-watchdog.obj `if test -f 'watchdog.c'; then $(CYGPATH_W) 'watchdog.c'; else $(CYGPATH_W) '$(srcdir)/watchdog.c'; fi`
+ uninstall-info-am:
+ modulenetDATA_INSTALL = $(INSTALL_DATA)
+ install-modulenetDATA: $(modulenet_DATA)
+@@ -1025,24 +570,6 @@
+ 	  echo " rm -f $(DESTDIR)$(modulenetdir)/$$f"; \
+ 	  rm -f $(DESTDIR)$(modulenetdir)/$$f; \
+ 	done
+-plistDATA_INSTALL = $(INSTALL_DATA)
+-install-plistDATA: $(plist_DATA)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(plistdir)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f"; \
+-	  $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f; \
+-	done
+-
+-uninstall-plistDATA:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " rm -f $(DESTDIR)$(plistdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(plistdir)/$$f; \
+-	done
+ 
+ # This directory's subdirectories are mostly independent; you can cd
+ # into them and run `make' without going through this Makefile.
+@@ -1214,10 +741,10 @@
+ 	done
+ check-am: all-am
+ check: check-recursive
+-all-am: autoMakefile $(LIBRARIES) $(PROGRAMS) $(DATA)
++all-am: autoMakefile $(LIBRARIES) $(DATA)
+ installdirs: installdirs-recursive
+ installdirs-am:
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir) $(DESTDIR)$(modulenetdir) $(DESTDIR)$(plistdir)
++	$(mkinstalldirs) $(DESTDIR)$(modulenetdir)
+ 
+ install: install-recursive
+ install-exec: install-exec-recursive
+@@ -1246,8 +773,7 @@
+ 	@echo "it deletes files that may require special tools to rebuild."
+ clean: clean-recursive
+ 
+-clean-am: clean-generic clean-macosPROGRAMS clean-noinstLIBRARIES \
+-	mostlyclean-am
++clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
+ 
+ distclean: distclean-recursive
+ 	-rm -rf ./$(DEPDIR)
+@@ -1263,8 +789,7 @@
+ 
+ info-am:
+ 
+-install-data-am: install-macosPROGRAMS install-modulenetDATA \
+-	install-plistDATA
++install-data-am: install-modulenetDATA
+ 	@$(NORMAL_INSTALL)
+ 	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
+ 
+@@ -1293,30 +818,48 @@
+ 
+ ps-am:
+ 
+-uninstall-am: uninstall-info-am uninstall-macosPROGRAMS \
+-	uninstall-modulenetDATA uninstall-plistDATA
++uninstall-am: uninstall-info-am uninstall-modulenetDATA
+ 
+ uninstall-info: uninstall-info-recursive
+ 
+ .PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \
+-	clean-generic clean-macosPROGRAMS clean-noinstLIBRARIES \
+-	clean-recursive ctags ctags-recursive distclean \
+-	distclean-compile distclean-generic distclean-recursive \
+-	distclean-tags distdir dvi dvi-am dvi-recursive info info-am \
+-	info-recursive install install-am install-data install-data-am \
+-	install-data-recursive install-exec install-exec-am \
+-	install-exec-recursive install-info install-info-am \
+-	install-info-recursive install-macosPROGRAMS install-man \
+-	install-modulenetDATA install-plistDATA install-recursive \
+-	install-strip installcheck installcheck-am installdirs \
+-	installdirs-am installdirs-recursive maintainer-clean \
+-	maintainer-clean-generic maintainer-clean-recursive mostlyclean \
+-	mostlyclean-compile mostlyclean-generic mostlyclean-recursive \
+-	pdf pdf-am pdf-recursive ps ps-am ps-recursive tags \
+-	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 \
++	dvi-recursive info info-am info-recursive install install-am \
++	install-data install-data-am install-data-recursive \
++	install-exec install-exec-am install-exec-recursive \
++	install-info install-info-am install-info-recursive install-man \
++	install-modulenetDATA install-recursive install-strip \
++	installcheck installcheck-am installdirs installdirs-am \
++	installdirs-recursive maintainer-clean maintainer-clean-generic \
++	maintainer-clean-recursive mostlyclean mostlyclean-compile \
++	mostlyclean-generic mostlyclean-recursive pdf pdf-am \
++	pdf-recursive ps ps-am ps-recursive tags tags-recursive \
++	uninstall uninstall-am uninstall-info-am \
++	uninstall-info-recursive uninstall-modulenetDATA \
++	uninstall-recursive
++
+ 
++#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
+ 
+ install-data-hook: $(install_data_hook)
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+diff -Nurwd lustre-1.6.7.2.orig/lnet/libcfs/linux/Makefile.in lustre-1.6.7.2/lnet/libcfs/linux/Makefile.in
+--- lustre-1.6.7.2.orig/lnet/libcfs/linux/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/libcfs/linux/Makefile.in	2009-08-10 10:05:38.000000000 +0200
+@@ -119,12 +119,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -236,8 +235,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -251,8 +248,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -260,26 +259,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/lnet/autoMakefile.in lustre-1.6.7.2/lnet/lnet/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/lnet/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/lnet/autoMakefile.in	2009-08-10 10:05:38.000000000 +0200
+@@ -119,12 +119,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -237,8 +236,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -252,8 +249,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -261,26 +260,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+@@ -306,18 +306,6 @@
+ 
+ @LINUX_TRUE@@MODULES_TRUE at modulenet_DATA = lnet$(KMODEXT)
+ 
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS := lnet
+-
+- at DARWIN_TRUE@@MODULES_TRUE at lnet_SOURCES = api-errno.c api-ni.c config.c lib-me.c lib-msg.c lib-eq.c lib-md.c lib-move.c module.c lo.c router.c router_proc.c acceptor.c peer.c
+-
+- at DARWIN_TRUE@@MODULES_TRUE at lnet_CFLAGS := $(EXTRA_KCFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at lnet_LDFLAGS := $(EXTRA_KLDFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at lnet_LDADD := $(EXTRA_KLIBS)
+-
+- at DARWIN_TRUE@@MODULES_TRUE at plist_DATA := Info.plist
+-
+- at DARWIN_TRUE@@MODULES_TRUE at install_data_hook := fix-kext-ownership
+-
+ EXTRA_DIST := Info.plist
+ DIST_SOURCES = $(lnet-objs:%.o=%.c)
+ subdir = lnet/lnet
+@@ -341,34 +329,6 @@
+ 	liblnet_a-peer.$(OBJEXT)
+ @LIBLUSTRE_TRUE at am_liblnet_a_OBJECTS = $(am__objects_1)
+ liblnet_a_OBJECTS = $(am_liblnet_a_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at macos_PROGRAMS =
+- at DARWIN_FALSE@@MODULES_FALSE at macos_PROGRAMS =
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS = lnet$(EXEEXT)
+- at DARWIN_TRUE@@MODULES_FALSE at macos_PROGRAMS =
+-PROGRAMS = $(macos_PROGRAMS)
+-
+-am__lnet_SOURCES_DIST = api-errno.c api-ni.c config.c lib-me.c lib-msg.c \
+-	lib-eq.c lib-md.c lib-move.c module.c lo.c router.c \
+-	router_proc.c acceptor.c peer.c
+- at DARWIN_TRUE@@MODULES_TRUE at am_lnet_OBJECTS = lnet-api-errno.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lnet-api-ni.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lnet-config.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lnet-lib-me.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lnet-lib-msg.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lnet-lib-eq.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lnet-lib-md.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lnet-lib-move.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lnet-module.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lnet-lo.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lnet-router.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lnet-router_proc.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lnet-acceptor.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lnet-peer.$(OBJEXT)
+-lnet_OBJECTS = $(am_lnet_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at lnet_DEPENDENCIES =
+- at DARWIN_FALSE@@MODULES_FALSE at lnet_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_TRUE at lnet_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_FALSE at lnet_DEPENDENCIES =
+ 
+ DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+@@ -385,27 +345,15 @@
+ @AMDEP_TRUE@	./$(DEPDIR)/liblnet_a-lo.Po \
+ @AMDEP_TRUE@	./$(DEPDIR)/liblnet_a-peer.Po \
+ @AMDEP_TRUE@	./$(DEPDIR)/liblnet_a-router.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/liblnet_a-router_proc.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lnet-acceptor.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lnet-api-errno.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lnet-api-ni.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lnet-config.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lnet-lib-eq.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lnet-lib-md.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lnet-lib-me.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lnet-lib-move.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lnet-lib-msg.Po ./$(DEPDIR)/lnet-lo.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lnet-module.Po ./$(DEPDIR)/lnet-peer.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lnet-router.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lnet-router_proc.Po
++ at AMDEP_TRUE@	./$(DEPDIR)/liblnet_a-router_proc.Po
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+ CCLD = $(CC)
+ LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DATA = $(modulenet_DATA) $(plist_DATA)
++DATA = $(modulenet_DATA)
+ 
+ DIST_COMMON = $(srcdir)/autoMakefile.in Makefile.in autoMakefile.am
+-SOURCES = $(liblnet_a_SOURCES) $(lnet_SOURCES)
++SOURCES = $(liblnet_a_SOURCES)
+ 
+ all: all-am
+ 
+@@ -427,33 +375,6 @@
+ 	-rm -f liblnet.a
+ 	$(liblnet_a_AR) liblnet.a $(liblnet_a_OBJECTS) $(liblnet_a_LIBADD)
+ 	$(RANLIB) liblnet.a
+-macosPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+-install-macosPROGRAMS: $(macos_PROGRAMS)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f"; \
+-	   $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f || exit 1; \
+-	  else :; fi; \
+-	done
+-
+-uninstall-macosPROGRAMS:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f $(DESTDIR)$(macosdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(macosdir)/$$f; \
+-	done
+-
+-clean-macosPROGRAMS:
+-	-test -z "$(macos_PROGRAMS)" || rm -f $(macos_PROGRAMS)
+-lnet$(EXEEXT): $(lnet_OBJECTS) $(lnet_DEPENDENCIES) 
+-	@rm -f lnet$(EXEEXT)
+-	$(LINK) $(lnet_LDFLAGS) $(lnet_OBJECTS) $(lnet_LDADD) $(LIBS)
+ 
+ mostlyclean-compile:
+ 	-rm -f *.$(OBJEXT) core *.core
+@@ -474,20 +395,6 @@
+ @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@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lnet-acceptor.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lnet-api-errno.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lnet-api-ni.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lnet-config.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lnet-lib-eq.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lnet-lib-md.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lnet-lib-me.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lnet-lib-move.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lnet-lib-msg.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lnet-lo.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lnet-module.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lnet-peer.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lnet-router.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lnet-router_proc.Po at am__quote@
+ 
+ .c.o:
+ @am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+@@ -796,314 +703,6 @@
+ @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`
+-
+-lnet-api-errno.o: api-errno.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-api-errno.o -MD -MP -MF "$(DEPDIR)/lnet-api-errno.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-api-errno.o `test -f 'api-errno.c' || echo '$(srcdir)/'`api-errno.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-api-errno.Tpo" "$(DEPDIR)/lnet-api-errno.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-api-errno.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='api-errno.c' object='lnet-api-errno.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-api-errno.Po' tmpdepfile='$(DEPDIR)/lnet-api-errno.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-api-errno.o `test -f 'api-errno.c' || echo '$(srcdir)/'`api-errno.c
+-
+-lnet-api-errno.obj: api-errno.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-api-errno.obj -MD -MP -MF "$(DEPDIR)/lnet-api-errno.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-api-errno.obj `if test -f 'api-errno.c'; then $(CYGPATH_W) 'api-errno.c'; else $(CYGPATH_W) '$(srcdir)/api-errno.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-api-errno.Tpo" "$(DEPDIR)/lnet-api-errno.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-api-errno.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='api-errno.c' object='lnet-api-errno.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-api-errno.Po' tmpdepfile='$(DEPDIR)/lnet-api-errno.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-api-errno.obj `if test -f 'api-errno.c'; then $(CYGPATH_W) 'api-errno.c'; else $(CYGPATH_W) '$(srcdir)/api-errno.c'; fi`
+-
+-lnet-api-ni.o: api-ni.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-api-ni.o -MD -MP -MF "$(DEPDIR)/lnet-api-ni.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-api-ni.o `test -f 'api-ni.c' || echo '$(srcdir)/'`api-ni.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-api-ni.Tpo" "$(DEPDIR)/lnet-api-ni.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-api-ni.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='api-ni.c' object='lnet-api-ni.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-api-ni.Po' tmpdepfile='$(DEPDIR)/lnet-api-ni.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-api-ni.o `test -f 'api-ni.c' || echo '$(srcdir)/'`api-ni.c
+-
+-lnet-api-ni.obj: api-ni.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-api-ni.obj -MD -MP -MF "$(DEPDIR)/lnet-api-ni.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-api-ni.obj `if test -f 'api-ni.c'; then $(CYGPATH_W) 'api-ni.c'; else $(CYGPATH_W) '$(srcdir)/api-ni.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-api-ni.Tpo" "$(DEPDIR)/lnet-api-ni.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-api-ni.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='api-ni.c' object='lnet-api-ni.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-api-ni.Po' tmpdepfile='$(DEPDIR)/lnet-api-ni.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-api-ni.obj `if test -f 'api-ni.c'; then $(CYGPATH_W) 'api-ni.c'; else $(CYGPATH_W) '$(srcdir)/api-ni.c'; fi`
+-
+-lnet-config.o: config.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-config.o -MD -MP -MF "$(DEPDIR)/lnet-config.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-config.o `test -f 'config.c' || echo '$(srcdir)/'`config.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-config.Tpo" "$(DEPDIR)/lnet-config.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-config.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='config.c' object='lnet-config.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-config.Po' tmpdepfile='$(DEPDIR)/lnet-config.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-config.o `test -f 'config.c' || echo '$(srcdir)/'`config.c
+-
+-lnet-config.obj: config.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-config.obj -MD -MP -MF "$(DEPDIR)/lnet-config.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-config.obj `if test -f 'config.c'; then $(CYGPATH_W) 'config.c'; else $(CYGPATH_W) '$(srcdir)/config.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-config.Tpo" "$(DEPDIR)/lnet-config.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-config.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='config.c' object='lnet-config.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-config.Po' tmpdepfile='$(DEPDIR)/lnet-config.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-config.obj `if test -f 'config.c'; then $(CYGPATH_W) 'config.c'; else $(CYGPATH_W) '$(srcdir)/config.c'; fi`
+-
+-lnet-lib-me.o: lib-me.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-lib-me.o -MD -MP -MF "$(DEPDIR)/lnet-lib-me.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-lib-me.o `test -f 'lib-me.c' || echo '$(srcdir)/'`lib-me.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-lib-me.Tpo" "$(DEPDIR)/lnet-lib-me.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-lib-me.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lib-me.c' object='lnet-lib-me.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-lib-me.Po' tmpdepfile='$(DEPDIR)/lnet-lib-me.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-lib-me.o `test -f 'lib-me.c' || echo '$(srcdir)/'`lib-me.c
+-
+-lnet-lib-me.obj: lib-me.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-lib-me.obj -MD -MP -MF "$(DEPDIR)/lnet-lib-me.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-lib-me.obj `if test -f 'lib-me.c'; then $(CYGPATH_W) 'lib-me.c'; else $(CYGPATH_W) '$(srcdir)/lib-me.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-lib-me.Tpo" "$(DEPDIR)/lnet-lib-me.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-lib-me.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lib-me.c' object='lnet-lib-me.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-lib-me.Po' tmpdepfile='$(DEPDIR)/lnet-lib-me.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-lib-me.obj `if test -f 'lib-me.c'; then $(CYGPATH_W) 'lib-me.c'; else $(CYGPATH_W) '$(srcdir)/lib-me.c'; fi`
+-
+-lnet-lib-msg.o: lib-msg.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-lib-msg.o -MD -MP -MF "$(DEPDIR)/lnet-lib-msg.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-lib-msg.o `test -f 'lib-msg.c' || echo '$(srcdir)/'`lib-msg.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-lib-msg.Tpo" "$(DEPDIR)/lnet-lib-msg.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-lib-msg.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lib-msg.c' object='lnet-lib-msg.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-lib-msg.Po' tmpdepfile='$(DEPDIR)/lnet-lib-msg.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-lib-msg.o `test -f 'lib-msg.c' || echo '$(srcdir)/'`lib-msg.c
+-
+-lnet-lib-msg.obj: lib-msg.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-lib-msg.obj -MD -MP -MF "$(DEPDIR)/lnet-lib-msg.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-lib-msg.obj `if test -f 'lib-msg.c'; then $(CYGPATH_W) 'lib-msg.c'; else $(CYGPATH_W) '$(srcdir)/lib-msg.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-lib-msg.Tpo" "$(DEPDIR)/lnet-lib-msg.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-lib-msg.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lib-msg.c' object='lnet-lib-msg.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-lib-msg.Po' tmpdepfile='$(DEPDIR)/lnet-lib-msg.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-lib-msg.obj `if test -f 'lib-msg.c'; then $(CYGPATH_W) 'lib-msg.c'; else $(CYGPATH_W) '$(srcdir)/lib-msg.c'; fi`
+-
+-lnet-lib-eq.o: lib-eq.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-lib-eq.o -MD -MP -MF "$(DEPDIR)/lnet-lib-eq.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-lib-eq.o `test -f 'lib-eq.c' || echo '$(srcdir)/'`lib-eq.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-lib-eq.Tpo" "$(DEPDIR)/lnet-lib-eq.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-lib-eq.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lib-eq.c' object='lnet-lib-eq.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-lib-eq.Po' tmpdepfile='$(DEPDIR)/lnet-lib-eq.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-lib-eq.o `test -f 'lib-eq.c' || echo '$(srcdir)/'`lib-eq.c
+-
+-lnet-lib-eq.obj: lib-eq.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-lib-eq.obj -MD -MP -MF "$(DEPDIR)/lnet-lib-eq.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-lib-eq.obj `if test -f 'lib-eq.c'; then $(CYGPATH_W) 'lib-eq.c'; else $(CYGPATH_W) '$(srcdir)/lib-eq.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-lib-eq.Tpo" "$(DEPDIR)/lnet-lib-eq.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-lib-eq.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lib-eq.c' object='lnet-lib-eq.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-lib-eq.Po' tmpdepfile='$(DEPDIR)/lnet-lib-eq.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-lib-eq.obj `if test -f 'lib-eq.c'; then $(CYGPATH_W) 'lib-eq.c'; else $(CYGPATH_W) '$(srcdir)/lib-eq.c'; fi`
+-
+-lnet-lib-md.o: lib-md.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-lib-md.o -MD -MP -MF "$(DEPDIR)/lnet-lib-md.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-lib-md.o `test -f 'lib-md.c' || echo '$(srcdir)/'`lib-md.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-lib-md.Tpo" "$(DEPDIR)/lnet-lib-md.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-lib-md.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lib-md.c' object='lnet-lib-md.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-lib-md.Po' tmpdepfile='$(DEPDIR)/lnet-lib-md.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-lib-md.o `test -f 'lib-md.c' || echo '$(srcdir)/'`lib-md.c
+-
+-lnet-lib-md.obj: lib-md.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-lib-md.obj -MD -MP -MF "$(DEPDIR)/lnet-lib-md.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-lib-md.obj `if test -f 'lib-md.c'; then $(CYGPATH_W) 'lib-md.c'; else $(CYGPATH_W) '$(srcdir)/lib-md.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-lib-md.Tpo" "$(DEPDIR)/lnet-lib-md.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-lib-md.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lib-md.c' object='lnet-lib-md.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-lib-md.Po' tmpdepfile='$(DEPDIR)/lnet-lib-md.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-lib-md.obj `if test -f 'lib-md.c'; then $(CYGPATH_W) 'lib-md.c'; else $(CYGPATH_W) '$(srcdir)/lib-md.c'; fi`
+-
+-lnet-lib-move.o: lib-move.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-lib-move.o -MD -MP -MF "$(DEPDIR)/lnet-lib-move.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-lib-move.o `test -f 'lib-move.c' || echo '$(srcdir)/'`lib-move.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-lib-move.Tpo" "$(DEPDIR)/lnet-lib-move.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-lib-move.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lib-move.c' object='lnet-lib-move.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-lib-move.Po' tmpdepfile='$(DEPDIR)/lnet-lib-move.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-lib-move.o `test -f 'lib-move.c' || echo '$(srcdir)/'`lib-move.c
+-
+-lnet-lib-move.obj: lib-move.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-lib-move.obj -MD -MP -MF "$(DEPDIR)/lnet-lib-move.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-lib-move.obj `if test -f 'lib-move.c'; then $(CYGPATH_W) 'lib-move.c'; else $(CYGPATH_W) '$(srcdir)/lib-move.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-lib-move.Tpo" "$(DEPDIR)/lnet-lib-move.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-lib-move.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lib-move.c' object='lnet-lib-move.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-lib-move.Po' tmpdepfile='$(DEPDIR)/lnet-lib-move.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-lib-move.obj `if test -f 'lib-move.c'; then $(CYGPATH_W) 'lib-move.c'; else $(CYGPATH_W) '$(srcdir)/lib-move.c'; fi`
+-
+-lnet-module.o: module.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-module.o -MD -MP -MF "$(DEPDIR)/lnet-module.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-module.o `test -f 'module.c' || echo '$(srcdir)/'`module.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-module.Tpo" "$(DEPDIR)/lnet-module.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-module.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='module.c' object='lnet-module.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-module.Po' tmpdepfile='$(DEPDIR)/lnet-module.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-module.o `test -f 'module.c' || echo '$(srcdir)/'`module.c
+-
+-lnet-module.obj: module.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-module.obj -MD -MP -MF "$(DEPDIR)/lnet-module.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-module.obj `if test -f 'module.c'; then $(CYGPATH_W) 'module.c'; else $(CYGPATH_W) '$(srcdir)/module.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-module.Tpo" "$(DEPDIR)/lnet-module.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-module.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='module.c' object='lnet-module.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-module.Po' tmpdepfile='$(DEPDIR)/lnet-module.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-module.obj `if test -f 'module.c'; then $(CYGPATH_W) 'module.c'; else $(CYGPATH_W) '$(srcdir)/module.c'; fi`
+-
+-lnet-lo.o: lo.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-lo.o -MD -MP -MF "$(DEPDIR)/lnet-lo.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-lo.o `test -f 'lo.c' || echo '$(srcdir)/'`lo.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-lo.Tpo" "$(DEPDIR)/lnet-lo.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-lo.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lo.c' object='lnet-lo.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-lo.Po' tmpdepfile='$(DEPDIR)/lnet-lo.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-lo.o `test -f 'lo.c' || echo '$(srcdir)/'`lo.c
+-
+-lnet-lo.obj: lo.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-lo.obj -MD -MP -MF "$(DEPDIR)/lnet-lo.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-lo.obj `if test -f 'lo.c'; then $(CYGPATH_W) 'lo.c'; else $(CYGPATH_W) '$(srcdir)/lo.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-lo.Tpo" "$(DEPDIR)/lnet-lo.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-lo.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lo.c' object='lnet-lo.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-lo.Po' tmpdepfile='$(DEPDIR)/lnet-lo.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-lo.obj `if test -f 'lo.c'; then $(CYGPATH_W) 'lo.c'; else $(CYGPATH_W) '$(srcdir)/lo.c'; fi`
+-
+-lnet-router.o: router.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-router.o -MD -MP -MF "$(DEPDIR)/lnet-router.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-router.o `test -f 'router.c' || echo '$(srcdir)/'`router.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-router.Tpo" "$(DEPDIR)/lnet-router.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-router.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='router.c' object='lnet-router.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-router.Po' tmpdepfile='$(DEPDIR)/lnet-router.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-router.o `test -f 'router.c' || echo '$(srcdir)/'`router.c
+-
+-lnet-router.obj: router.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-router.obj -MD -MP -MF "$(DEPDIR)/lnet-router.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-router.obj `if test -f 'router.c'; then $(CYGPATH_W) 'router.c'; else $(CYGPATH_W) '$(srcdir)/router.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-router.Tpo" "$(DEPDIR)/lnet-router.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-router.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='router.c' object='lnet-router.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-router.Po' tmpdepfile='$(DEPDIR)/lnet-router.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-router.obj `if test -f 'router.c'; then $(CYGPATH_W) 'router.c'; else $(CYGPATH_W) '$(srcdir)/router.c'; fi`
+-
+-lnet-router_proc.o: router_proc.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-router_proc.o -MD -MP -MF "$(DEPDIR)/lnet-router_proc.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-router_proc.o `test -f 'router_proc.c' || echo '$(srcdir)/'`router_proc.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-router_proc.Tpo" "$(DEPDIR)/lnet-router_proc.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-router_proc.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='router_proc.c' object='lnet-router_proc.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-router_proc.Po' tmpdepfile='$(DEPDIR)/lnet-router_proc.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-router_proc.o `test -f 'router_proc.c' || echo '$(srcdir)/'`router_proc.c
+-
+-lnet-router_proc.obj: router_proc.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-router_proc.obj -MD -MP -MF "$(DEPDIR)/lnet-router_proc.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-router_proc.obj `if test -f 'router_proc.c'; then $(CYGPATH_W) 'router_proc.c'; else $(CYGPATH_W) '$(srcdir)/router_proc.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-router_proc.Tpo" "$(DEPDIR)/lnet-router_proc.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-router_proc.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='router_proc.c' object='lnet-router_proc.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-router_proc.Po' tmpdepfile='$(DEPDIR)/lnet-router_proc.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-router_proc.obj `if test -f 'router_proc.c'; then $(CYGPATH_W) 'router_proc.c'; else $(CYGPATH_W) '$(srcdir)/router_proc.c'; fi`
+-
+-lnet-acceptor.o: acceptor.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-acceptor.o -MD -MP -MF "$(DEPDIR)/lnet-acceptor.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-acceptor.o `test -f 'acceptor.c' || echo '$(srcdir)/'`acceptor.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-acceptor.Tpo" "$(DEPDIR)/lnet-acceptor.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-acceptor.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='acceptor.c' object='lnet-acceptor.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-acceptor.Po' tmpdepfile='$(DEPDIR)/lnet-acceptor.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-acceptor.o `test -f 'acceptor.c' || echo '$(srcdir)/'`acceptor.c
+-
+-lnet-acceptor.obj: acceptor.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-acceptor.obj -MD -MP -MF "$(DEPDIR)/lnet-acceptor.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-acceptor.obj `if test -f 'acceptor.c'; then $(CYGPATH_W) 'acceptor.c'; else $(CYGPATH_W) '$(srcdir)/acceptor.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-acceptor.Tpo" "$(DEPDIR)/lnet-acceptor.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-acceptor.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='acceptor.c' object='lnet-acceptor.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-acceptor.Po' tmpdepfile='$(DEPDIR)/lnet-acceptor.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-acceptor.obj `if test -f 'acceptor.c'; then $(CYGPATH_W) 'acceptor.c'; else $(CYGPATH_W) '$(srcdir)/acceptor.c'; fi`
+-
+-lnet-peer.o: peer.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-peer.o -MD -MP -MF "$(DEPDIR)/lnet-peer.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-peer.o `test -f 'peer.c' || echo '$(srcdir)/'`peer.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-peer.Tpo" "$(DEPDIR)/lnet-peer.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-peer.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='peer.c' object='lnet-peer.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-peer.Po' tmpdepfile='$(DEPDIR)/lnet-peer.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-peer.o `test -f 'peer.c' || echo '$(srcdir)/'`peer.c
+-
+-lnet-peer.obj: peer.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -MT lnet-peer.obj -MD -MP -MF "$(DEPDIR)/lnet-peer.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lnet-peer.obj `if test -f 'peer.c'; then $(CYGPATH_W) 'peer.c'; else $(CYGPATH_W) '$(srcdir)/peer.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lnet-peer.Tpo" "$(DEPDIR)/lnet-peer.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lnet-peer.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='peer.c' object='lnet-peer.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lnet-peer.Po' tmpdepfile='$(DEPDIR)/lnet-peer.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lnet_CFLAGS) $(CFLAGS) -c -o lnet-peer.obj `if test -f 'peer.c'; then $(CYGPATH_W) 'peer.c'; else $(CYGPATH_W) '$(srcdir)/peer.c'; fi`
+ uninstall-info-am:
+ modulenetDATA_INSTALL = $(INSTALL_DATA)
+ install-modulenetDATA: $(modulenet_DATA)
+@@ -1123,24 +722,6 @@
+ 	  echo " rm -f $(DESTDIR)$(modulenetdir)/$$f"; \
+ 	  rm -f $(DESTDIR)$(modulenetdir)/$$f; \
+ 	done
+-plistDATA_INSTALL = $(INSTALL_DATA)
+-install-plistDATA: $(plist_DATA)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(plistdir)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f"; \
+-	  $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f; \
+-	done
+-
+-uninstall-plistDATA:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " rm -f $(DESTDIR)$(plistdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(plistdir)/$$f; \
+-	done
+ 
+ ETAGS = etags
+ ETAGSFLAGS =
+@@ -1229,10 +810,10 @@
+ 	done
+ check-am: all-am
+ check: check-am
+-all-am: autoMakefile $(LIBRARIES) $(PROGRAMS) $(DATA)
++all-am: autoMakefile $(LIBRARIES) $(DATA)
+ 
+ installdirs:
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir) $(DESTDIR)$(modulenetdir) $(DESTDIR)$(plistdir)
++	$(mkinstalldirs) $(DESTDIR)$(modulenetdir)
+ install: install-am
+ install-exec: install-exec-am
+ install-data: install-data-am
+@@ -1260,8 +841,7 @@
+ 	@echo "it deletes files that may require special tools to rebuild."
+ clean: clean-am
+ 
+-clean-am: clean-generic clean-macosPROGRAMS clean-noinstLIBRARIES \
+-	mostlyclean-am
++clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
+ 
+ distclean: distclean-am
+ 	-rm -rf ./$(DEPDIR)
+@@ -1277,8 +857,7 @@
+ 
+ info-am:
+ 
+-install-data-am: install-macosPROGRAMS install-modulenetDATA \
+-	install-plistDATA
++install-data-am: install-modulenetDATA
+ 	@$(NORMAL_INSTALL)
+ 	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
+ 
+@@ -1307,23 +886,38 @@
+ 
+ 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 clean-noinstLIBRARIES ctags distclean \
+-	distclean-compile distclean-generic distclean-tags distdir dvi \
+-	dvi-am info info-am install install-am install-data \
+-	install-data-am install-exec install-exec-am install-info \
+-	install-info-am install-macosPROGRAMS install-man \
+-	install-modulenetDATA install-plistDATA install-strip \
+-	installcheck installcheck-am installdirs maintainer-clean \
++	clean-noinstLIBRARIES ctags distclean distclean-compile \
++	distclean-generic distclean-tags distdir dvi dvi-am info \
++	info-am install install-am install-data install-data-am \
++	install-exec install-exec-am install-info install-info-am \
++	install-man install-modulenetDATA install-strip installcheck \
++	installcheck-am installdirs maintainer-clean \
+ 	maintainer-clean-generic mostlyclean mostlyclean-compile \
+ 	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
++#
++#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
++
+ 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 lustre-1.6.7.2.orig/lnet/selftest/autoMakefile.in lustre-1.6.7.2/lnet/selftest/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/selftest/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/selftest/autoMakefile.in	2009-08-10 10:05:38.000000000 +0200
+@@ -119,12 +119,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -237,8 +236,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -252,8 +249,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -261,26 +260,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/ulnds/autoMakefile.in lustre-1.6.7.2/lnet/ulnds/autoMakefile.in
+--- lustre-1.6.7.2.orig/lnet/ulnds/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/ulnds/autoMakefile.in	2009-08-10 10:05:38.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -272,8 +271,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -287,8 +284,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -296,26 +295,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/ulnds/ptllnd/Makefile.in lustre-1.6.7.2/lnet/ulnds/ptllnd/Makefile.in
+--- lustre-1.6.7.2.orig/lnet/ulnds/ptllnd/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/ulnds/ptllnd/Makefile.in	2009-08-10 10:05:39.000000000 +0200
+@@ -119,12 +119,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -236,8 +235,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -251,8 +248,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -260,26 +259,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/ulnds/socklnd/Makefile.in lustre-1.6.7.2/lnet/ulnds/socklnd/Makefile.in
+--- lustre-1.6.7.2.orig/lnet/ulnds/socklnd/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/ulnds/socklnd/Makefile.in	2009-08-10 10:05:39.000000000 +0200
+@@ -119,12 +119,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -236,8 +235,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -251,8 +248,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -260,26 +259,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lnet/utils/Makefile.in lustre-1.6.7.2/lnet/utils/Makefile.in
+--- lustre-1.6.7.2.orig/lnet/utils/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lnet/utils/Makefile.in	2009-08-10 10:05:39.000000000 +0200
+@@ -163,12 +163,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -280,8 +279,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -295,8 +292,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -304,26 +303,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/autoconf/Makefile.in lustre-1.6.7.2/lustre/autoconf/Makefile.in
+--- lustre-1.6.7.2.orig/lustre/autoconf/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/autoconf/Makefile.in	2009-08-10 10:05:39.000000000 +0200
+@@ -119,12 +119,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -236,8 +235,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -251,8 +248,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -260,26 +259,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/autoMakefile.in lustre-1.6.7.2/lustre/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/autoMakefile.in	2009-08-10 10:05:39.000000000 +0200
+@@ -159,12 +159,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -276,8 +275,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -291,8 +288,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -300,26 +299,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/contrib/Makefile.in lustre-1.6.7.2/lustre/contrib/Makefile.in
+--- lustre-1.6.7.2.orig/lustre/contrib/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/contrib/Makefile.in	2009-08-10 10:05:40.000000000 +0200
+@@ -121,12 +121,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -238,8 +237,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -253,8 +250,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -262,26 +261,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/doc/Makefile.in lustre-1.6.7.2/lustre/doc/Makefile.in
+--- lustre-1.6.7.2.orig/lustre/doc/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/doc/Makefile.in	2009-08-10 10:05:40.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -272,8 +271,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -287,8 +284,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -296,26 +295,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/include/linux/Makefile.in lustre-1.6.7.2/lustre/include/linux/Makefile.in
+--- lustre-1.6.7.2.orig/lustre/include/linux/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/include/linux/Makefile.in	2009-08-10 10:05:40.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -272,8 +271,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -287,8 +284,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -296,26 +295,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/include/lustre/Makefile.in lustre-1.6.7.2/lustre/include/lustre/Makefile.in
+--- lustre-1.6.7.2.orig/lustre/include/lustre/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/include/lustre/Makefile.in	2009-08-10 10:05:40.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -272,8 +271,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -287,8 +284,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -296,26 +295,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/include/Makefile.in lustre-1.6.7.2/lustre/include/Makefile.in
+--- lustre-1.6.7.2.orig/lustre/include/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/include/Makefile.in	2009-08-10 10:05:40.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -272,8 +271,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -287,8 +284,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -296,26 +295,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/ldlm/Makefile.in lustre-1.6.7.2/lustre/ldlm/Makefile.in
+--- lustre-1.6.7.2.orig/lustre/ldlm/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/ldlm/Makefile.in	2009-08-10 10:05:40.000000000 +0200
+@@ -159,12 +159,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -277,8 +276,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -292,8 +289,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -301,26 +300,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/liblustre/Makefile.in lustre-1.6.7.2/lustre/liblustre/Makefile.in
+--- lustre-1.6.7.2.orig/lustre/liblustre/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/liblustre/Makefile.in	2009-08-10 10:05:40.000000000 +0200
+@@ -121,12 +121,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -238,8 +237,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -253,8 +250,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -262,26 +261,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+@@ -295,7 +295,7 @@
+ target_vendor = @target_vendor@
+ 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 lustre-1.6.7.2.orig/lustre/liblustre/tests/Makefile.in lustre-1.6.7.2/lustre/liblustre/tests/Makefile.in
+--- lustre-1.6.7.2.orig/lustre/liblustre/tests/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/liblustre/tests/Makefile.in	2009-08-10 10:05:41.000000000 +0200
+@@ -121,12 +121,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -238,8 +237,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -253,8 +250,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -262,26 +261,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/llite/autoMakefile.in lustre-1.6.7.2/lustre/llite/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/llite/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/llite/autoMakefile.in	2009-08-10 10:05:41.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -272,8 +271,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -287,8 +284,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -296,26 +295,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/lov/autoMakefile.in lustre-1.6.7.2/lustre/lov/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/lov/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/lov/autoMakefile.in	2009-08-10 10:05:41.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -272,8 +271,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -287,8 +284,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -296,26 +295,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+@@ -335,27 +335,6 @@
+ 
+ @LINUX_TRUE@@MODULES_TRUE at modulefs_DATA = lov$(KMODEXT)
+ 
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS := lov
+-
+- at DARWIN_TRUE@@MODULES_TRUE at lov_SOURCES := \
+- at DARWIN_TRUE@@MODULES_TRUE@        lov_log.c       \
+- at DARWIN_TRUE@@MODULES_TRUE@        lov_obd.c       \
+- at DARWIN_TRUE@@MODULES_TRUE@        lov_pack.c      \
+- at DARWIN_TRUE@@MODULES_TRUE@        lov_request.c   \
+- at DARWIN_TRUE@@MODULES_TRUE@        lov_merge.c     \
+- at DARWIN_TRUE@@MODULES_TRUE@        lov_qos.c       \
+- at DARWIN_TRUE@@MODULES_TRUE@        lov_offset.c    \
+- at DARWIN_TRUE@@MODULES_TRUE@        lov_internal.h
+-
+-
+- at DARWIN_TRUE@@MODULES_TRUE at lov_CFLAGS := $(EXTRA_KCFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at lov_LDFLAGS := $(EXTRA_KLDFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at lov_LDADD := $(EXTRA_KLIBS)
+-
+- at DARWIN_TRUE@@MODULES_TRUE at plist_DATA := Info.plist
+-
+- at DARWIN_TRUE@@MODULES_TRUE at install_data_hook := fix-kext-ownership
+-
+ DIST_SOURCES = $(lov-objs:.o=.c) lov_internal.h
+ subdir = lustre/lov
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+@@ -377,26 +356,6 @@
+ @LIBLUSTRE_TRUE@	liblov_a-lov_merge.$(OBJEXT) \
+ @LIBLUSTRE_TRUE@	liblov_a-lov_ea.$(OBJEXT)
+ liblov_a_OBJECTS = $(am_liblov_a_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at macos_PROGRAMS =
+- at DARWIN_FALSE@@MODULES_FALSE at macos_PROGRAMS =
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS = lov$(EXEEXT)
+- at DARWIN_TRUE@@MODULES_FALSE at macos_PROGRAMS =
+-PROGRAMS = $(macos_PROGRAMS)
+-
+-am__lov_SOURCES_DIST = lov_log.c lov_obd.c lov_pack.c lov_request.c \
+-	lov_merge.c lov_qos.c lov_offset.c lov_internal.h
+- at DARWIN_TRUE@@MODULES_TRUE at am_lov_OBJECTS = lov-lov_log.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lov-lov_obd.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lov-lov_pack.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lov-lov_request.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lov-lov_merge.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lov-lov_qos.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	lov-lov_offset.$(OBJEXT)
+-lov_OBJECTS = $(am_lov_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at lov_DEPENDENCIES =
+- at DARWIN_FALSE@@MODULES_FALSE at lov_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_TRUE at lov_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_FALSE at lov_DEPENDENCIES =
+ 
+ DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+@@ -408,22 +367,15 @@
+ @AMDEP_TRUE@	./$(DEPDIR)/liblov_a-lov_offset.Po \
+ @AMDEP_TRUE@	./$(DEPDIR)/liblov_a-lov_pack.Po \
+ @AMDEP_TRUE@	./$(DEPDIR)/liblov_a-lov_qos.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/liblov_a-lov_request.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lov-lov_log.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lov-lov_merge.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lov-lov_obd.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lov-lov_offset.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lov-lov_pack.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lov-lov_qos.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lov-lov_request.Po
++ at AMDEP_TRUE@	./$(DEPDIR)/liblov_a-lov_request.Po
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+ CCLD = $(CC)
+ LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DATA = $(modulefs_DATA) $(plist_DATA)
++DATA = $(modulefs_DATA)
+ 
+ DIST_COMMON = $(srcdir)/autoMakefile.in Makefile.in autoMakefile.am
+-SOURCES = $(liblov_a_SOURCES) $(lov_SOURCES)
++SOURCES = $(liblov_a_SOURCES)
+ 
+ all: all-am
+ 
+@@ -445,33 +397,6 @@
+ 	-rm -f liblov.a
+ 	$(liblov_a_AR) liblov.a $(liblov_a_OBJECTS) $(liblov_a_LIBADD)
+ 	$(RANLIB) liblov.a
+-macosPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+-install-macosPROGRAMS: $(macos_PROGRAMS)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f"; \
+-	   $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f || exit 1; \
+-	  else :; fi; \
+-	done
+-
+-uninstall-macosPROGRAMS:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f $(DESTDIR)$(macosdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(macosdir)/$$f; \
+-	done
+-
+-clean-macosPROGRAMS:
+-	-test -z "$(macos_PROGRAMS)" || rm -f $(macos_PROGRAMS)
+-lov$(EXEEXT): $(lov_OBJECTS) $(lov_DEPENDENCIES) 
+-	@rm -f lov$(EXEEXT)
+-	$(LINK) $(lov_LDFLAGS) $(lov_OBJECTS) $(lov_LDADD) $(LIBS)
+ 
+ mostlyclean-compile:
+ 	-rm -f *.$(OBJEXT) core *.core
+@@ -487,13 +412,6 @@
+ @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/liblov_a-lov_pack.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@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lov-lov_log.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lov-lov_merge.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lov-lov_obd.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lov-lov_offset.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lov-lov_pack.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lov-lov_qos.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lov-lov_request.Po at am__quote@
+ 
+ .c.o:
+ @am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+@@ -692,160 +610,6 @@
+ @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`
+-
+-lov-lov_log.o: lov_log.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -MT lov-lov_log.o -MD -MP -MF "$(DEPDIR)/lov-lov_log.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lov-lov_log.o `test -f 'lov_log.c' || echo '$(srcdir)/'`lov_log.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lov-lov_log.Tpo" "$(DEPDIR)/lov-lov_log.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lov-lov_log.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lov_log.c' object='lov-lov_log.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lov-lov_log.Po' tmpdepfile='$(DEPDIR)/lov-lov_log.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -c -o lov-lov_log.o `test -f 'lov_log.c' || echo '$(srcdir)/'`lov_log.c
+-
+-lov-lov_log.obj: lov_log.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -MT lov-lov_log.obj -MD -MP -MF "$(DEPDIR)/lov-lov_log.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lov-lov_log.obj `if test -f 'lov_log.c'; then $(CYGPATH_W) 'lov_log.c'; else $(CYGPATH_W) '$(srcdir)/lov_log.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lov-lov_log.Tpo" "$(DEPDIR)/lov-lov_log.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lov-lov_log.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lov_log.c' object='lov-lov_log.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lov-lov_log.Po' tmpdepfile='$(DEPDIR)/lov-lov_log.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -c -o lov-lov_log.obj `if test -f 'lov_log.c'; then $(CYGPATH_W) 'lov_log.c'; else $(CYGPATH_W) '$(srcdir)/lov_log.c'; fi`
+-
+-lov-lov_obd.o: lov_obd.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -MT lov-lov_obd.o -MD -MP -MF "$(DEPDIR)/lov-lov_obd.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lov-lov_obd.o `test -f 'lov_obd.c' || echo '$(srcdir)/'`lov_obd.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lov-lov_obd.Tpo" "$(DEPDIR)/lov-lov_obd.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lov-lov_obd.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lov_obd.c' object='lov-lov_obd.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lov-lov_obd.Po' tmpdepfile='$(DEPDIR)/lov-lov_obd.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -c -o lov-lov_obd.o `test -f 'lov_obd.c' || echo '$(srcdir)/'`lov_obd.c
+-
+-lov-lov_obd.obj: lov_obd.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -MT lov-lov_obd.obj -MD -MP -MF "$(DEPDIR)/lov-lov_obd.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lov-lov_obd.obj `if test -f 'lov_obd.c'; then $(CYGPATH_W) 'lov_obd.c'; else $(CYGPATH_W) '$(srcdir)/lov_obd.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lov-lov_obd.Tpo" "$(DEPDIR)/lov-lov_obd.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lov-lov_obd.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lov_obd.c' object='lov-lov_obd.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lov-lov_obd.Po' tmpdepfile='$(DEPDIR)/lov-lov_obd.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -c -o lov-lov_obd.obj `if test -f 'lov_obd.c'; then $(CYGPATH_W) 'lov_obd.c'; else $(CYGPATH_W) '$(srcdir)/lov_obd.c'; fi`
+-
+-lov-lov_pack.o: lov_pack.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -MT lov-lov_pack.o -MD -MP -MF "$(DEPDIR)/lov-lov_pack.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lov-lov_pack.o `test -f 'lov_pack.c' || echo '$(srcdir)/'`lov_pack.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lov-lov_pack.Tpo" "$(DEPDIR)/lov-lov_pack.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lov-lov_pack.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lov_pack.c' object='lov-lov_pack.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lov-lov_pack.Po' tmpdepfile='$(DEPDIR)/lov-lov_pack.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -c -o lov-lov_pack.o `test -f 'lov_pack.c' || echo '$(srcdir)/'`lov_pack.c
+-
+-lov-lov_pack.obj: lov_pack.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -MT lov-lov_pack.obj -MD -MP -MF "$(DEPDIR)/lov-lov_pack.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lov-lov_pack.obj `if test -f 'lov_pack.c'; then $(CYGPATH_W) 'lov_pack.c'; else $(CYGPATH_W) '$(srcdir)/lov_pack.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lov-lov_pack.Tpo" "$(DEPDIR)/lov-lov_pack.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lov-lov_pack.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lov_pack.c' object='lov-lov_pack.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lov-lov_pack.Po' tmpdepfile='$(DEPDIR)/lov-lov_pack.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -c -o lov-lov_pack.obj `if test -f 'lov_pack.c'; then $(CYGPATH_W) 'lov_pack.c'; else $(CYGPATH_W) '$(srcdir)/lov_pack.c'; fi`
+-
+-lov-lov_request.o: lov_request.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -MT lov-lov_request.o -MD -MP -MF "$(DEPDIR)/lov-lov_request.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lov-lov_request.o `test -f 'lov_request.c' || echo '$(srcdir)/'`lov_request.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lov-lov_request.Tpo" "$(DEPDIR)/lov-lov_request.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lov-lov_request.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lov_request.c' object='lov-lov_request.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lov-lov_request.Po' tmpdepfile='$(DEPDIR)/lov-lov_request.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -c -o lov-lov_request.o `test -f 'lov_request.c' || echo '$(srcdir)/'`lov_request.c
+-
+-lov-lov_request.obj: lov_request.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -MT lov-lov_request.obj -MD -MP -MF "$(DEPDIR)/lov-lov_request.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lov-lov_request.obj `if test -f 'lov_request.c'; then $(CYGPATH_W) 'lov_request.c'; else $(CYGPATH_W) '$(srcdir)/lov_request.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lov-lov_request.Tpo" "$(DEPDIR)/lov-lov_request.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lov-lov_request.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lov_request.c' object='lov-lov_request.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lov-lov_request.Po' tmpdepfile='$(DEPDIR)/lov-lov_request.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -c -o lov-lov_request.obj `if test -f 'lov_request.c'; then $(CYGPATH_W) 'lov_request.c'; else $(CYGPATH_W) '$(srcdir)/lov_request.c'; fi`
+-
+-lov-lov_merge.o: lov_merge.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -MT lov-lov_merge.o -MD -MP -MF "$(DEPDIR)/lov-lov_merge.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lov-lov_merge.o `test -f 'lov_merge.c' || echo '$(srcdir)/'`lov_merge.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lov-lov_merge.Tpo" "$(DEPDIR)/lov-lov_merge.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lov-lov_merge.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lov_merge.c' object='lov-lov_merge.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lov-lov_merge.Po' tmpdepfile='$(DEPDIR)/lov-lov_merge.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -c -o lov-lov_merge.o `test -f 'lov_merge.c' || echo '$(srcdir)/'`lov_merge.c
+-
+-lov-lov_merge.obj: lov_merge.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -MT lov-lov_merge.obj -MD -MP -MF "$(DEPDIR)/lov-lov_merge.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lov-lov_merge.obj `if test -f 'lov_merge.c'; then $(CYGPATH_W) 'lov_merge.c'; else $(CYGPATH_W) '$(srcdir)/lov_merge.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lov-lov_merge.Tpo" "$(DEPDIR)/lov-lov_merge.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lov-lov_merge.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lov_merge.c' object='lov-lov_merge.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lov-lov_merge.Po' tmpdepfile='$(DEPDIR)/lov-lov_merge.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -c -o lov-lov_merge.obj `if test -f 'lov_merge.c'; then $(CYGPATH_W) 'lov_merge.c'; else $(CYGPATH_W) '$(srcdir)/lov_merge.c'; fi`
+-
+-lov-lov_qos.o: lov_qos.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -MT lov-lov_qos.o -MD -MP -MF "$(DEPDIR)/lov-lov_qos.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lov-lov_qos.o `test -f 'lov_qos.c' || echo '$(srcdir)/'`lov_qos.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lov-lov_qos.Tpo" "$(DEPDIR)/lov-lov_qos.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lov-lov_qos.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lov_qos.c' object='lov-lov_qos.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lov-lov_qos.Po' tmpdepfile='$(DEPDIR)/lov-lov_qos.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -c -o lov-lov_qos.o `test -f 'lov_qos.c' || echo '$(srcdir)/'`lov_qos.c
+-
+-lov-lov_qos.obj: lov_qos.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -MT lov-lov_qos.obj -MD -MP -MF "$(DEPDIR)/lov-lov_qos.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lov-lov_qos.obj `if test -f 'lov_qos.c'; then $(CYGPATH_W) 'lov_qos.c'; else $(CYGPATH_W) '$(srcdir)/lov_qos.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lov-lov_qos.Tpo" "$(DEPDIR)/lov-lov_qos.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lov-lov_qos.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lov_qos.c' object='lov-lov_qos.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lov-lov_qos.Po' tmpdepfile='$(DEPDIR)/lov-lov_qos.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -c -o lov-lov_qos.obj `if test -f 'lov_qos.c'; then $(CYGPATH_W) 'lov_qos.c'; else $(CYGPATH_W) '$(srcdir)/lov_qos.c'; fi`
+-
+-lov-lov_offset.o: lov_offset.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -MT lov-lov_offset.o -MD -MP -MF "$(DEPDIR)/lov-lov_offset.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lov-lov_offset.o `test -f 'lov_offset.c' || echo '$(srcdir)/'`lov_offset.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lov-lov_offset.Tpo" "$(DEPDIR)/lov-lov_offset.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lov-lov_offset.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lov_offset.c' object='lov-lov_offset.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lov-lov_offset.Po' tmpdepfile='$(DEPDIR)/lov-lov_offset.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -c -o lov-lov_offset.o `test -f 'lov_offset.c' || echo '$(srcdir)/'`lov_offset.c
+-
+-lov-lov_offset.obj: lov_offset.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -MT lov-lov_offset.obj -MD -MP -MF "$(DEPDIR)/lov-lov_offset.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lov-lov_offset.obj `if test -f 'lov_offset.c'; then $(CYGPATH_W) 'lov_offset.c'; else $(CYGPATH_W) '$(srcdir)/lov_offset.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lov-lov_offset.Tpo" "$(DEPDIR)/lov-lov_offset.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lov-lov_offset.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lov_offset.c' object='lov-lov_offset.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lov-lov_offset.Po' tmpdepfile='$(DEPDIR)/lov-lov_offset.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lov_CFLAGS) $(CFLAGS) -c -o lov-lov_offset.obj `if test -f 'lov_offset.c'; then $(CYGPATH_W) 'lov_offset.c'; else $(CYGPATH_W) '$(srcdir)/lov_offset.c'; fi`
+ uninstall-info-am:
+ modulefsDATA_INSTALL = $(INSTALL_DATA)
+ install-modulefsDATA: $(modulefs_DATA)
+@@ -865,24 +629,6 @@
+ 	  echo " rm -f $(DESTDIR)$(modulefsdir)/$$f"; \
+ 	  rm -f $(DESTDIR)$(modulefsdir)/$$f; \
+ 	done
+-plistDATA_INSTALL = $(INSTALL_DATA)
+-install-plistDATA: $(plist_DATA)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(plistdir)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f"; \
+-	  $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f; \
+-	done
+-
+-uninstall-plistDATA:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " rm -f $(DESTDIR)$(plistdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(plistdir)/$$f; \
+-	done
+ 
+ ETAGS = etags
+ ETAGSFLAGS =
+@@ -971,10 +717,10 @@
+ 	done
+ check-am: all-am
+ check: check-am
+-all-am: autoMakefile $(LIBRARIES) $(PROGRAMS) $(DATA)
++all-am: autoMakefile $(LIBRARIES) $(DATA)
+ 
+ installdirs:
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir) $(DESTDIR)$(modulefsdir) $(DESTDIR)$(plistdir)
++	$(mkinstalldirs) $(DESTDIR)$(modulefsdir)
+ install: install-am
+ install-exec: install-exec-am
+ install-data: install-data-am
+@@ -1002,8 +748,7 @@
+ 	@echo "it deletes files that may require special tools to rebuild."
+ clean: clean-am
+ 
+-clean-am: clean-generic clean-macosPROGRAMS clean-noinstLIBRARIES \
+-	mostlyclean-am
++clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
+ 
+ distclean: distclean-am
+ 	-rm -rf ./$(DEPDIR)
+@@ -1019,8 +764,7 @@
+ 
+ info-am:
+ 
+-install-data-am: install-macosPROGRAMS install-modulefsDATA \
+-	install-plistDATA
++install-data-am: install-modulefsDATA
+ 	@$(NORMAL_INSTALL)
+ 	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
+ 
+@@ -1049,22 +793,42 @@
+ 
+ ps-am:
+ 
+-uninstall-am: uninstall-info-am uninstall-macosPROGRAMS \
+-	uninstall-modulefsDATA uninstall-plistDATA
++uninstall-am: uninstall-info-am uninstall-modulefsDATA
+ 
+ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+-	clean-macosPROGRAMS clean-noinstLIBRARIES ctags distclean \
+-	distclean-compile distclean-generic distclean-tags distdir dvi \
+-	dvi-am info info-am install install-am install-data \
+-	install-data-am install-exec install-exec-am install-info \
+-	install-info-am install-macosPROGRAMS install-man \
+-	install-modulefsDATA install-plistDATA install-strip \
+-	installcheck installcheck-am installdirs maintainer-clean \
++	clean-noinstLIBRARIES ctags distclean distclean-compile \
++	distclean-generic distclean-tags distdir dvi dvi-am info \
++	info-am install install-am install-data install-data-am \
++	install-exec install-exec-am install-info install-info-am \
++	install-man install-modulefsDATA install-strip installcheck \
++	installcheck-am installdirs maintainer-clean \
+ 	maintainer-clean-generic mostlyclean mostlyclean-compile \
+ 	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
+-	uninstall-am uninstall-info-am uninstall-macosPROGRAMS \
+-	uninstall-modulefsDATA uninstall-plistDATA
++	uninstall-am uninstall-info-am uninstall-modulefsDATA
++
+ 
++#if DARWIN
++#macos_PROGRAMS := lov
++#
++#lov_SOURCES :=          \
++#        lov_log.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)
++#
++#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 lustre-1.6.7.2.orig/lustre/lvfs/autoMakefile.in lustre-1.6.7.2/lustre/lvfs/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/lvfs/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/lvfs/autoMakefile.in	2009-08-10 10:05:41.000000000 +0200
+@@ -156,12 +156,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -274,8 +273,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -289,8 +286,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -298,26 +297,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+@@ -350,18 +350,6 @@
+ @LINUX_TRUE@@MODULES_TRUE@	-e "s/EXT3/LDISKFS/g" -e "s/ext3/ldiskfs/g"
+ 
+ 
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS := lvfs
+-
+- at DARWIN_TRUE@@MODULES_TRUE at lvfs_SOURCES := lvfs_darwin.c
+-
+- at DARWIN_TRUE@@MODULES_TRUE at lvfs_CFLAGS := $(EXTRA_KCFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at lvfs_LDFLAGS := $(EXTRA_KLDFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at lvfs_LDADD := $(EXTRA_KLIBS)
+-
+- at DARWIN_TRUE@@MODULES_TRUE at plist_DATA := Info.plist
+-
+- at DARWIN_TRUE@@MODULES_TRUE at install_data_hook := fix-kext-ownership
+-
+ DIST_SOURCES = fsfilt.c fsfilt_ext3.c fsfilt_reiserfs.c lvfs_common.c \
+ 	lvfs_internal.h lvfs_linux.c lvfs_userfs.c \
+ 	upcall_cache.c prng.c lvfs_lib.c\
+@@ -384,35 +372,21 @@
+ @LIBLUSTRE_TRUE@	liblvfs_a-prng.$(OBJEXT) \
+ @LIBLUSTRE_TRUE@	liblvfs_a-lvfs_lib.$(OBJEXT)
+ liblvfs_a_OBJECTS = $(am_liblvfs_a_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at macos_PROGRAMS =
+- at DARWIN_FALSE@@MODULES_FALSE at macos_PROGRAMS =
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS = lvfs$(EXEEXT)
+- at DARWIN_TRUE@@MODULES_FALSE at macos_PROGRAMS =
+-PROGRAMS = $(macos_PROGRAMS)
+-
+-am__lvfs_SOURCES_DIST = lvfs_darwin.c
+- at DARWIN_TRUE@@MODULES_TRUE at am_lvfs_OBJECTS = lvfs-lvfs_darwin.$(OBJEXT)
+-lvfs_OBJECTS = $(am_lvfs_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at lvfs_DEPENDENCIES =
+- at DARWIN_FALSE@@MODULES_FALSE at lvfs_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_TRUE at lvfs_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_FALSE at lvfs_DEPENDENCIES =
+ 
+ DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+ am__depfiles_maybe = depfiles
+ @AMDEP_TRUE at DEP_FILES = ./$(DEPDIR)/liblvfs_a-lvfs_lib.Po \
+ @AMDEP_TRUE@	./$(DEPDIR)/liblvfs_a-lvfs_userfs.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/liblvfs_a-prng.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/lvfs-lvfs_darwin.Po
++ at AMDEP_TRUE@	./$(DEPDIR)/liblvfs_a-prng.Po
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+ CCLD = $(CC)
+ LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DATA = $(modulefs_DATA) $(plist_DATA)
++DATA = $(modulefs_DATA)
+ 
+ DIST_COMMON = $(srcdir)/autoMakefile.in Makefile.in autoMakefile.am
+-SOURCES = $(liblvfs_a_SOURCES) $(lvfs_SOURCES)
++SOURCES = $(liblvfs_a_SOURCES)
+ 
+ all: all-am
+ 
+@@ -434,33 +408,6 @@
+ 	-rm -f liblvfs.a
+ 	$(liblvfs_a_AR) liblvfs.a $(liblvfs_a_OBJECTS) $(liblvfs_a_LIBADD)
+ 	$(RANLIB) liblvfs.a
+-macosPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+-install-macosPROGRAMS: $(macos_PROGRAMS)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f"; \
+-	   $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f || exit 1; \
+-	  else :; fi; \
+-	done
+-
+-uninstall-macosPROGRAMS:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f $(DESTDIR)$(macosdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(macosdir)/$$f; \
+-	done
+-
+-clean-macosPROGRAMS:
+-	-test -z "$(macos_PROGRAMS)" || rm -f $(macos_PROGRAMS)
+-lvfs$(EXEEXT): $(lvfs_OBJECTS) $(lvfs_DEPENDENCIES) 
+-	@rm -f lvfs$(EXEEXT)
+-	$(LINK) $(lvfs_LDFLAGS) $(lvfs_OBJECTS) $(lvfs_LDADD) $(LIBS)
+ 
+ mostlyclean-compile:
+ 	-rm -f *.$(OBJEXT) core *.core
+@@ -471,7 +418,6 @@
+ @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@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/lvfs-lvfs_darwin.Po at am__quote@
+ 
+ .c.o:
+ @am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+@@ -560,28 +506,6 @@
+ @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`
+-
+-lvfs-lvfs_darwin.o: lvfs_darwin.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lvfs_CFLAGS) $(CFLAGS) -MT lvfs-lvfs_darwin.o -MD -MP -MF "$(DEPDIR)/lvfs-lvfs_darwin.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lvfs-lvfs_darwin.o `test -f 'lvfs_darwin.c' || echo '$(srcdir)/'`lvfs_darwin.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lvfs-lvfs_darwin.Tpo" "$(DEPDIR)/lvfs-lvfs_darwin.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lvfs-lvfs_darwin.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lvfs_darwin.c' object='lvfs-lvfs_darwin.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lvfs-lvfs_darwin.Po' tmpdepfile='$(DEPDIR)/lvfs-lvfs_darwin.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lvfs_CFLAGS) $(CFLAGS) -c -o lvfs-lvfs_darwin.o `test -f 'lvfs_darwin.c' || echo '$(srcdir)/'`lvfs_darwin.c
+-
+-lvfs-lvfs_darwin.obj: lvfs_darwin.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lvfs_CFLAGS) $(CFLAGS) -MT lvfs-lvfs_darwin.obj -MD -MP -MF "$(DEPDIR)/lvfs-lvfs_darwin.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o lvfs-lvfs_darwin.obj `if test -f 'lvfs_darwin.c'; then $(CYGPATH_W) 'lvfs_darwin.c'; else $(CYGPATH_W) '$(srcdir)/lvfs_darwin.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/lvfs-lvfs_darwin.Tpo" "$(DEPDIR)/lvfs-lvfs_darwin.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/lvfs-lvfs_darwin.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lvfs_darwin.c' object='lvfs-lvfs_darwin.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/lvfs-lvfs_darwin.Po' tmpdepfile='$(DEPDIR)/lvfs-lvfs_darwin.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lvfs_CFLAGS) $(CFLAGS) -c -o lvfs-lvfs_darwin.obj `if test -f 'lvfs_darwin.c'; then $(CYGPATH_W) 'lvfs_darwin.c'; else $(CYGPATH_W) '$(srcdir)/lvfs_darwin.c'; fi`
+ uninstall-info-am:
+ modulefsDATA_INSTALL = $(INSTALL_DATA)
+ install-modulefsDATA: $(modulefs_DATA)
+@@ -601,24 +525,6 @@
+ 	  echo " rm -f $(DESTDIR)$(modulefsdir)/$$f"; \
+ 	  rm -f $(DESTDIR)$(modulefsdir)/$$f; \
+ 	done
+-plistDATA_INSTALL = $(INSTALL_DATA)
+-install-plistDATA: $(plist_DATA)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(plistdir)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f"; \
+-	  $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f; \
+-	done
+-
+-uninstall-plistDATA:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " rm -f $(DESTDIR)$(plistdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(plistdir)/$$f; \
+-	done
+ 
+ ETAGS = etags
+ ETAGSFLAGS =
+@@ -707,10 +613,10 @@
+ 	done
+ check-am: all-am
+ check: check-am
+-all-am: autoMakefile $(LIBRARIES) $(PROGRAMS) $(DATA)
++all-am: autoMakefile $(LIBRARIES) $(DATA)
+ 
+ installdirs:
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir) $(DESTDIR)$(modulefsdir) $(DESTDIR)$(plistdir)
++	$(mkinstalldirs) $(DESTDIR)$(modulefsdir)
+ install: install-am
+ install-exec: install-exec-am
+ install-data: install-data-am
+@@ -739,8 +645,7 @@
+ 	@echo "it deletes files that may require special tools to rebuild."
+ clean: clean-am
+ 
+-clean-am: clean-generic clean-macosPROGRAMS clean-noinstLIBRARIES \
+-	mostlyclean-am
++clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
+ 
+ distclean: distclean-am
+ 	-rm -rf ./$(DEPDIR)
+@@ -756,8 +661,7 @@
+ 
+ info-am:
+ 
+-install-data-am: install-macosPROGRAMS install-modulefsDATA \
+-	install-plistDATA
++install-data-am: install-modulefsDATA
+ 	@$(NORMAL_INSTALL)
+ 	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
+ 
+@@ -786,21 +690,18 @@
+ 
+ ps-am:
+ 
+-uninstall-am: uninstall-info-am uninstall-macosPROGRAMS \
+-	uninstall-modulefsDATA uninstall-plistDATA
++uninstall-am: uninstall-info-am uninstall-modulefsDATA
+ 
+ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+-	clean-macosPROGRAMS clean-noinstLIBRARIES ctags distclean \
+-	distclean-compile distclean-generic distclean-tags distdir dvi \
+-	dvi-am info info-am install install-am install-data \
+-	install-data-am install-exec install-exec-am install-info \
+-	install-info-am install-macosPROGRAMS install-man \
+-	install-modulefsDATA install-plistDATA install-strip \
+-	installcheck installcheck-am installdirs maintainer-clean \
++	clean-noinstLIBRARIES ctags distclean distclean-compile \
++	distclean-generic distclean-tags distdir dvi dvi-am info \
++	info-am install install-am install-data install-data-am \
++	install-exec install-exec-am install-info install-info-am \
++	install-man install-modulefsDATA install-strip installcheck \
++	installcheck-am installdirs maintainer-clean \
+ 	maintainer-clean-generic mostlyclean mostlyclean-compile \
+ 	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
+-	uninstall-am uninstall-info-am uninstall-macosPROGRAMS \
+-	uninstall-modulefsDATA uninstall-plistDATA
++	uninstall-am uninstall-info-am uninstall-modulefsDATA
+ 
+ 
+ @LINUX_TRUE@@MODULES_TRUE@@SERVER_TRUE at sources: fsfilt_$(BACKINGFS).c
+@@ -816,6 +717,22 @@
+ @LINUX_TRUE@@MODULES_TRUE at fsfilt_ldiskfs_quota.h: fsfilt_ext3_quota.h
+ @LINUX_TRUE@@MODULES_TRUE@	sed $(strip $(ldiskfs_sed_flags)) $< > $@
+ 
++#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
++
+ @MODULES_FALSE at sources:
+ 
+ install-data-hook: $(install_data_hook)
+diff -Nurwd lustre-1.6.7.2.orig/lustre/mdc/autoMakefile.in lustre-1.6.7.2/lustre/mdc/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/mdc/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/mdc/autoMakefile.in	2009-08-10 10:05:41.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -272,8 +271,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -287,8 +284,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -296,26 +295,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/mds/autoMakefile.in lustre-1.6.7.2/lustre/mds/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/mds/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/mds/autoMakefile.in	2009-08-10 10:05:42.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/mgc/autoMakefile.in lustre-1.6.7.2/lustre/mgc/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/mgc/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/mgc/autoMakefile.in	2009-08-10 10:05:42.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/mgs/autoMakefile.in lustre-1.6.7.2/lustre/mgs/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/mgs/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/mgs/autoMakefile.in	2009-08-10 10:05:42.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/obdclass/autoMakefile.in lustre-1.6.7.2/lustre/obdclass/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/obdclass/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/obdclass/autoMakefile.in	2009-08-10 10:05:42.000000000 +0200
+@@ -38,7 +38,6 @@
+ build_triplet = @build@
+ host_triplet = @host@
+ target_triplet = @target@
+- at DARWIN_TRUE@am__append_1 = darwin
+ 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 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -238,8 +236,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -253,8 +249,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -262,26 +260,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+@@ -293,7 +292,10 @@
+ target_cpu = @target_cpu@
+ target_os = @target_os@
+ target_vendor = @target_vendor@
+-SUBDIRS = linux $(am__append_1)
++SUBDIRS := linux
++#if DARWIN
++#SUBDIRS += darwin
++#endif
+ DIST_SUBDIRS := $(SUBDIRS)
+ 
+ @LIBLUSTRE_TRUE at noinst_LIBRARIES = liblustreclass.a
+@@ -303,24 +305,6 @@
+ 
+ @LINUX_TRUE@@MODULES_TRUE at modulefs_DATA = obdclass$(KMODEXT)
+ @LINUX_TRUE@@MODULES_TRUE at noinst_DATA = llog_test$(KMODEXT)
+-
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS := obdclass
+-
+- at DARWIN_TRUE@@MODULES_TRUE at obdclass_SOURCES := \
+- at DARWIN_TRUE@@MODULES_TRUE@        darwin/darwin-module.c darwin/darwin-sysctl.c 		\
+- at DARWIN_TRUE@@MODULES_TRUE@        class_obd.c genops.c lprocfs_status.c           	\
+- at DARWIN_TRUE@@MODULES_TRUE@        lustre_handles.c lustre_peer.c obd_config.c     	\
+- at DARWIN_TRUE@@MODULES_TRUE@        obdo.c debug.c llog_ioctl.c uuid.c                      \
+- at DARWIN_TRUE@@MODULES_TRUE@        llog_swab.c llog_obd.c llog.c llog_cat.c llog_lvfs.c
+-
+-
+- at DARWIN_TRUE@@MODULES_TRUE at obdclass_CFLAGS := $(EXTRA_KCFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at obdclass_LDFLAGS := $(EXTRA_KLDFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at obdclass_LDADD := $(EXTRA_KLIBS)
+-
+- at DARWIN_TRUE@@MODULES_TRUE at plist_DATA := Info.plist
+-
+- at DARWIN_TRUE@@MODULES_TRUE at install_data_hook := fix-kext-ownership
+ DIST_SOURCES = $(filter-out llog-test.c,$(obdclass-all-objs:.o=.c)) $(llog-test-objs:.o=.c) llog_test.c llog_internal.h
+ subdir = lustre/obdclass
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+@@ -353,40 +337,6 @@
+ @LIBLUSTRE_TRUE@	liblustreclass_a-llog_lvfs.$(OBJEXT) \
+ @LIBLUSTRE_TRUE@	liblustreclass_a-llog_swab.$(OBJEXT)
+ liblustreclass_a_OBJECTS = $(am_liblustreclass_a_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at macos_PROGRAMS =
+- at DARWIN_FALSE@@MODULES_FALSE at macos_PROGRAMS =
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS = obdclass$(EXEEXT)
+- at DARWIN_TRUE@@MODULES_FALSE at macos_PROGRAMS =
+-PROGRAMS = $(macos_PROGRAMS)
+-
+-am__obdclass_SOURCES_DIST = 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
+- at DARWIN_TRUE@@MODULES_TRUE at am_obdclass_OBJECTS = \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-darwin-module.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-darwin-sysctl.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-class_obd.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-genops.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-lprocfs_status.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-lustre_handles.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-lustre_peer.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-obd_config.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-obdo.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-debug.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-llog_ioctl.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-uuid.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-llog_swab.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-llog_obd.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-llog.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-llog_cat.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdclass-llog_lvfs.$(OBJEXT)
+-obdclass_OBJECTS = $(am_obdclass_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at obdclass_DEPENDENCIES =
+- at DARWIN_FALSE@@MODULES_FALSE at obdclass_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_TRUE at obdclass_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_FALSE at obdclass_DEPENDENCIES =
+ 
+ DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+@@ -406,29 +356,12 @@
+ @AMDEP_TRUE@	./$(DEPDIR)/liblustreclass_a-obd_config.Po \
+ @AMDEP_TRUE@	./$(DEPDIR)/liblustreclass_a-obdo.Po \
+ @AMDEP_TRUE@	./$(DEPDIR)/liblustreclass_a-statfs_pack.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/liblustreclass_a-uuid.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-class_obd.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-darwin-module.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-darwin-sysctl.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-debug.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-genops.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-llog.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-llog_cat.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-llog_ioctl.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-llog_lvfs.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-llog_obd.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-llog_swab.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-lprocfs_status.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-lustre_handles.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-lustre_peer.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-obd_config.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-obdo.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdclass-uuid.Po
++ at AMDEP_TRUE@	./$(DEPDIR)/liblustreclass_a-uuid.Po
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+ CCLD = $(CC)
+ LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DATA = $(modulefs_DATA) $(noinst_DATA) $(plist_DATA)
++DATA = $(modulefs_DATA) $(noinst_DATA)
+ 
+ 
+ RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
+@@ -437,7 +370,7 @@
+ 	installdirs-recursive install-recursive uninstall-recursive \
+ 	check-recursive installcheck-recursive
+ DIST_COMMON = $(srcdir)/autoMakefile.in Makefile.in autoMakefile.am
+-SOURCES = $(liblustreclass_a_SOURCES) $(obdclass_SOURCES)
++SOURCES = $(liblustreclass_a_SOURCES)
+ 
+ all: all-recursive
+ 
+@@ -459,33 +392,6 @@
+ 	-rm -f liblustreclass.a
+ 	$(liblustreclass_a_AR) liblustreclass.a $(liblustreclass_a_OBJECTS) $(liblustreclass_a_LIBADD)
+ 	$(RANLIB) liblustreclass.a
+-macosPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+-install-macosPROGRAMS: $(macos_PROGRAMS)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f"; \
+-	   $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f || exit 1; \
+-	  else :; fi; \
+-	done
+-
+-uninstall-macosPROGRAMS:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f $(DESTDIR)$(macosdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(macosdir)/$$f; \
+-	done
+-
+-clean-macosPROGRAMS:
+-	-test -z "$(macos_PROGRAMS)" || rm -f $(macos_PROGRAMS)
+-obdclass$(EXEEXT): $(obdclass_OBJECTS) $(obdclass_DEPENDENCIES) 
+-	@rm -f obdclass$(EXEEXT)
+-	$(LINK) $(obdclass_LDFLAGS) $(obdclass_OBJECTS) $(obdclass_LDADD) $(LIBS)
+ 
+ mostlyclean-compile:
+ 	-rm -f *.$(OBJEXT) core *.core
+@@ -509,23 +415,6 @@
+ @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@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-class_obd.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-darwin-module.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-darwin-sysctl.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-debug.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-genops.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-llog.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-llog_cat.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-llog_ioctl.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-llog_lvfs.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-llog_obd.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-llog_swab.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-lprocfs_status.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-lustre_handles.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-lustre_peer.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-obd_config.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-obdo.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdclass-uuid.Po at am__quote@
+ 
+ .c.o:
+ @am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+@@ -900,380 +789,6 @@
+ @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`
+-
+-obdclass-darwin-module.o: darwin/darwin-module.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-darwin-module.o -MD -MP -MF "$(DEPDIR)/obdclass-darwin-module.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-darwin-module.o `test -f 'darwin/darwin-module.c' || echo '$(srcdir)/'`darwin/darwin-module.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-darwin-module.Tpo" "$(DEPDIR)/obdclass-darwin-module.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-darwin-module.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-module.c' object='obdclass-darwin-module.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-darwin-module.Po' tmpdepfile='$(DEPDIR)/obdclass-darwin-module.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-darwin-module.o `test -f 'darwin/darwin-module.c' || echo '$(srcdir)/'`darwin/darwin-module.c
+-
+-obdclass-darwin-module.obj: darwin/darwin-module.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-darwin-module.obj -MD -MP -MF "$(DEPDIR)/obdclass-darwin-module.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-darwin-module.obj `if test -f 'darwin/darwin-module.c'; then $(CYGPATH_W) 'darwin/darwin-module.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-module.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-darwin-module.Tpo" "$(DEPDIR)/obdclass-darwin-module.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-darwin-module.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-module.c' object='obdclass-darwin-module.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-darwin-module.Po' tmpdepfile='$(DEPDIR)/obdclass-darwin-module.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-darwin-module.obj `if test -f 'darwin/darwin-module.c'; then $(CYGPATH_W) 'darwin/darwin-module.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-module.c'; fi`
+-
+-obdclass-darwin-sysctl.o: darwin/darwin-sysctl.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-darwin-sysctl.o -MD -MP -MF "$(DEPDIR)/obdclass-darwin-sysctl.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-darwin-sysctl.o `test -f 'darwin/darwin-sysctl.c' || echo '$(srcdir)/'`darwin/darwin-sysctl.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-darwin-sysctl.Tpo" "$(DEPDIR)/obdclass-darwin-sysctl.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-darwin-sysctl.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-sysctl.c' object='obdclass-darwin-sysctl.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-darwin-sysctl.Po' tmpdepfile='$(DEPDIR)/obdclass-darwin-sysctl.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-darwin-sysctl.o `test -f 'darwin/darwin-sysctl.c' || echo '$(srcdir)/'`darwin/darwin-sysctl.c
+-
+-obdclass-darwin-sysctl.obj: darwin/darwin-sysctl.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-darwin-sysctl.obj -MD -MP -MF "$(DEPDIR)/obdclass-darwin-sysctl.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-darwin-sysctl.obj `if test -f 'darwin/darwin-sysctl.c'; then $(CYGPATH_W) 'darwin/darwin-sysctl.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-sysctl.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-darwin-sysctl.Tpo" "$(DEPDIR)/obdclass-darwin-sysctl.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-darwin-sysctl.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='darwin/darwin-sysctl.c' object='obdclass-darwin-sysctl.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-darwin-sysctl.Po' tmpdepfile='$(DEPDIR)/obdclass-darwin-sysctl.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-darwin-sysctl.obj `if test -f 'darwin/darwin-sysctl.c'; then $(CYGPATH_W) 'darwin/darwin-sysctl.c'; else $(CYGPATH_W) '$(srcdir)/darwin/darwin-sysctl.c'; fi`
+-
+-obdclass-class_obd.o: class_obd.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-class_obd.o -MD -MP -MF "$(DEPDIR)/obdclass-class_obd.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-class_obd.o `test -f 'class_obd.c' || echo '$(srcdir)/'`class_obd.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-class_obd.Tpo" "$(DEPDIR)/obdclass-class_obd.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-class_obd.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='class_obd.c' object='obdclass-class_obd.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-class_obd.Po' tmpdepfile='$(DEPDIR)/obdclass-class_obd.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-class_obd.o `test -f 'class_obd.c' || echo '$(srcdir)/'`class_obd.c
+-
+-obdclass-class_obd.obj: class_obd.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-class_obd.obj -MD -MP -MF "$(DEPDIR)/obdclass-class_obd.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-class_obd.obj `if test -f 'class_obd.c'; then $(CYGPATH_W) 'class_obd.c'; else $(CYGPATH_W) '$(srcdir)/class_obd.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-class_obd.Tpo" "$(DEPDIR)/obdclass-class_obd.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-class_obd.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='class_obd.c' object='obdclass-class_obd.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-class_obd.Po' tmpdepfile='$(DEPDIR)/obdclass-class_obd.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-class_obd.obj `if test -f 'class_obd.c'; then $(CYGPATH_W) 'class_obd.c'; else $(CYGPATH_W) '$(srcdir)/class_obd.c'; fi`
+-
+-obdclass-genops.o: genops.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-genops.o -MD -MP -MF "$(DEPDIR)/obdclass-genops.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-genops.o `test -f 'genops.c' || echo '$(srcdir)/'`genops.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-genops.Tpo" "$(DEPDIR)/obdclass-genops.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-genops.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='genops.c' object='obdclass-genops.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-genops.Po' tmpdepfile='$(DEPDIR)/obdclass-genops.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-genops.o `test -f 'genops.c' || echo '$(srcdir)/'`genops.c
+-
+-obdclass-genops.obj: genops.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-genops.obj -MD -MP -MF "$(DEPDIR)/obdclass-genops.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-genops.obj `if test -f 'genops.c'; then $(CYGPATH_W) 'genops.c'; else $(CYGPATH_W) '$(srcdir)/genops.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-genops.Tpo" "$(DEPDIR)/obdclass-genops.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-genops.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='genops.c' object='obdclass-genops.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-genops.Po' tmpdepfile='$(DEPDIR)/obdclass-genops.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-genops.obj `if test -f 'genops.c'; then $(CYGPATH_W) 'genops.c'; else $(CYGPATH_W) '$(srcdir)/genops.c'; fi`
+-
+-obdclass-lprocfs_status.o: lprocfs_status.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-lprocfs_status.o -MD -MP -MF "$(DEPDIR)/obdclass-lprocfs_status.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-lprocfs_status.o `test -f 'lprocfs_status.c' || echo '$(srcdir)/'`lprocfs_status.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-lprocfs_status.Tpo" "$(DEPDIR)/obdclass-lprocfs_status.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-lprocfs_status.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lprocfs_status.c' object='obdclass-lprocfs_status.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-lprocfs_status.Po' tmpdepfile='$(DEPDIR)/obdclass-lprocfs_status.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-lprocfs_status.o `test -f 'lprocfs_status.c' || echo '$(srcdir)/'`lprocfs_status.c
+-
+-obdclass-lprocfs_status.obj: lprocfs_status.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-lprocfs_status.obj -MD -MP -MF "$(DEPDIR)/obdclass-lprocfs_status.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-lprocfs_status.obj `if test -f 'lprocfs_status.c'; then $(CYGPATH_W) 'lprocfs_status.c'; else $(CYGPATH_W) '$(srcdir)/lprocfs_status.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-lprocfs_status.Tpo" "$(DEPDIR)/obdclass-lprocfs_status.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-lprocfs_status.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lprocfs_status.c' object='obdclass-lprocfs_status.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-lprocfs_status.Po' tmpdepfile='$(DEPDIR)/obdclass-lprocfs_status.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-lprocfs_status.obj `if test -f 'lprocfs_status.c'; then $(CYGPATH_W) 'lprocfs_status.c'; else $(CYGPATH_W) '$(srcdir)/lprocfs_status.c'; fi`
+-
+-obdclass-lustre_handles.o: lustre_handles.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-lustre_handles.o -MD -MP -MF "$(DEPDIR)/obdclass-lustre_handles.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-lustre_handles.o `test -f 'lustre_handles.c' || echo '$(srcdir)/'`lustre_handles.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-lustre_handles.Tpo" "$(DEPDIR)/obdclass-lustre_handles.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-lustre_handles.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lustre_handles.c' object='obdclass-lustre_handles.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-lustre_handles.Po' tmpdepfile='$(DEPDIR)/obdclass-lustre_handles.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-lustre_handles.o `test -f 'lustre_handles.c' || echo '$(srcdir)/'`lustre_handles.c
+-
+-obdclass-lustre_handles.obj: lustre_handles.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-lustre_handles.obj -MD -MP -MF "$(DEPDIR)/obdclass-lustre_handles.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-lustre_handles.obj `if test -f 'lustre_handles.c'; then $(CYGPATH_W) 'lustre_handles.c'; else $(CYGPATH_W) '$(srcdir)/lustre_handles.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-lustre_handles.Tpo" "$(DEPDIR)/obdclass-lustre_handles.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-lustre_handles.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lustre_handles.c' object='obdclass-lustre_handles.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-lustre_handles.Po' tmpdepfile='$(DEPDIR)/obdclass-lustre_handles.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-lustre_handles.obj `if test -f 'lustre_handles.c'; then $(CYGPATH_W) 'lustre_handles.c'; else $(CYGPATH_W) '$(srcdir)/lustre_handles.c'; fi`
+-
+-obdclass-lustre_peer.o: lustre_peer.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-lustre_peer.o -MD -MP -MF "$(DEPDIR)/obdclass-lustre_peer.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-lustre_peer.o `test -f 'lustre_peer.c' || echo '$(srcdir)/'`lustre_peer.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-lustre_peer.Tpo" "$(DEPDIR)/obdclass-lustre_peer.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-lustre_peer.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lustre_peer.c' object='obdclass-lustre_peer.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-lustre_peer.Po' tmpdepfile='$(DEPDIR)/obdclass-lustre_peer.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-lustre_peer.o `test -f 'lustre_peer.c' || echo '$(srcdir)/'`lustre_peer.c
+-
+-obdclass-lustre_peer.obj: lustre_peer.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-lustre_peer.obj -MD -MP -MF "$(DEPDIR)/obdclass-lustre_peer.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-lustre_peer.obj `if test -f 'lustre_peer.c'; then $(CYGPATH_W) 'lustre_peer.c'; else $(CYGPATH_W) '$(srcdir)/lustre_peer.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-lustre_peer.Tpo" "$(DEPDIR)/obdclass-lustre_peer.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-lustre_peer.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lustre_peer.c' object='obdclass-lustre_peer.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-lustre_peer.Po' tmpdepfile='$(DEPDIR)/obdclass-lustre_peer.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-lustre_peer.obj `if test -f 'lustre_peer.c'; then $(CYGPATH_W) 'lustre_peer.c'; else $(CYGPATH_W) '$(srcdir)/lustre_peer.c'; fi`
+-
+-obdclass-obd_config.o: obd_config.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-obd_config.o -MD -MP -MF "$(DEPDIR)/obdclass-obd_config.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-obd_config.o `test -f 'obd_config.c' || echo '$(srcdir)/'`obd_config.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-obd_config.Tpo" "$(DEPDIR)/obdclass-obd_config.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-obd_config.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='obd_config.c' object='obdclass-obd_config.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-obd_config.Po' tmpdepfile='$(DEPDIR)/obdclass-obd_config.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-obd_config.o `test -f 'obd_config.c' || echo '$(srcdir)/'`obd_config.c
+-
+-obdclass-obd_config.obj: obd_config.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-obd_config.obj -MD -MP -MF "$(DEPDIR)/obdclass-obd_config.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-obd_config.obj `if test -f 'obd_config.c'; then $(CYGPATH_W) 'obd_config.c'; else $(CYGPATH_W) '$(srcdir)/obd_config.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-obd_config.Tpo" "$(DEPDIR)/obdclass-obd_config.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-obd_config.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='obd_config.c' object='obdclass-obd_config.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-obd_config.Po' tmpdepfile='$(DEPDIR)/obdclass-obd_config.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-obd_config.obj `if test -f 'obd_config.c'; then $(CYGPATH_W) 'obd_config.c'; else $(CYGPATH_W) '$(srcdir)/obd_config.c'; fi`
+-
+-obdclass-obdo.o: obdo.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-obdo.o -MD -MP -MF "$(DEPDIR)/obdclass-obdo.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-obdo.o `test -f 'obdo.c' || echo '$(srcdir)/'`obdo.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-obdo.Tpo" "$(DEPDIR)/obdclass-obdo.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-obdo.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='obdo.c' object='obdclass-obdo.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-obdo.Po' tmpdepfile='$(DEPDIR)/obdclass-obdo.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-obdo.o `test -f 'obdo.c' || echo '$(srcdir)/'`obdo.c
+-
+-obdclass-obdo.obj: obdo.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-obdo.obj -MD -MP -MF "$(DEPDIR)/obdclass-obdo.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-obdo.obj `if test -f 'obdo.c'; then $(CYGPATH_W) 'obdo.c'; else $(CYGPATH_W) '$(srcdir)/obdo.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-obdo.Tpo" "$(DEPDIR)/obdclass-obdo.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-obdo.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='obdo.c' object='obdclass-obdo.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-obdo.Po' tmpdepfile='$(DEPDIR)/obdclass-obdo.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-obdo.obj `if test -f 'obdo.c'; then $(CYGPATH_W) 'obdo.c'; else $(CYGPATH_W) '$(srcdir)/obdo.c'; fi`
+-
+-obdclass-debug.o: debug.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-debug.o -MD -MP -MF "$(DEPDIR)/obdclass-debug.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-debug.o `test -f 'debug.c' || echo '$(srcdir)/'`debug.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-debug.Tpo" "$(DEPDIR)/obdclass-debug.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-debug.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='debug.c' object='obdclass-debug.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-debug.Po' tmpdepfile='$(DEPDIR)/obdclass-debug.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-debug.o `test -f 'debug.c' || echo '$(srcdir)/'`debug.c
+-
+-obdclass-debug.obj: debug.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-debug.obj -MD -MP -MF "$(DEPDIR)/obdclass-debug.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-debug.obj `if test -f 'debug.c'; then $(CYGPATH_W) 'debug.c'; else $(CYGPATH_W) '$(srcdir)/debug.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-debug.Tpo" "$(DEPDIR)/obdclass-debug.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-debug.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='debug.c' object='obdclass-debug.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-debug.Po' tmpdepfile='$(DEPDIR)/obdclass-debug.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-debug.obj `if test -f 'debug.c'; then $(CYGPATH_W) 'debug.c'; else $(CYGPATH_W) '$(srcdir)/debug.c'; fi`
+-
+-obdclass-llog_ioctl.o: llog_ioctl.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-llog_ioctl.o -MD -MP -MF "$(DEPDIR)/obdclass-llog_ioctl.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-llog_ioctl.o `test -f 'llog_ioctl.c' || echo '$(srcdir)/'`llog_ioctl.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-llog_ioctl.Tpo" "$(DEPDIR)/obdclass-llog_ioctl.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-llog_ioctl.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_ioctl.c' object='obdclass-llog_ioctl.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-llog_ioctl.Po' tmpdepfile='$(DEPDIR)/obdclass-llog_ioctl.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-llog_ioctl.o `test -f 'llog_ioctl.c' || echo '$(srcdir)/'`llog_ioctl.c
+-
+-obdclass-llog_ioctl.obj: llog_ioctl.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-llog_ioctl.obj -MD -MP -MF "$(DEPDIR)/obdclass-llog_ioctl.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-llog_ioctl.obj `if test -f 'llog_ioctl.c'; then $(CYGPATH_W) 'llog_ioctl.c'; else $(CYGPATH_W) '$(srcdir)/llog_ioctl.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-llog_ioctl.Tpo" "$(DEPDIR)/obdclass-llog_ioctl.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-llog_ioctl.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_ioctl.c' object='obdclass-llog_ioctl.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-llog_ioctl.Po' tmpdepfile='$(DEPDIR)/obdclass-llog_ioctl.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-llog_ioctl.obj `if test -f 'llog_ioctl.c'; then $(CYGPATH_W) 'llog_ioctl.c'; else $(CYGPATH_W) '$(srcdir)/llog_ioctl.c'; fi`
+-
+-obdclass-uuid.o: uuid.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-uuid.o -MD -MP -MF "$(DEPDIR)/obdclass-uuid.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-uuid.o `test -f 'uuid.c' || echo '$(srcdir)/'`uuid.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-uuid.Tpo" "$(DEPDIR)/obdclass-uuid.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-uuid.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='uuid.c' object='obdclass-uuid.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-uuid.Po' tmpdepfile='$(DEPDIR)/obdclass-uuid.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-uuid.o `test -f 'uuid.c' || echo '$(srcdir)/'`uuid.c
+-
+-obdclass-uuid.obj: uuid.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-uuid.obj -MD -MP -MF "$(DEPDIR)/obdclass-uuid.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-uuid.obj `if test -f 'uuid.c'; then $(CYGPATH_W) 'uuid.c'; else $(CYGPATH_W) '$(srcdir)/uuid.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-uuid.Tpo" "$(DEPDIR)/obdclass-uuid.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-uuid.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='uuid.c' object='obdclass-uuid.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-uuid.Po' tmpdepfile='$(DEPDIR)/obdclass-uuid.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-uuid.obj `if test -f 'uuid.c'; then $(CYGPATH_W) 'uuid.c'; else $(CYGPATH_W) '$(srcdir)/uuid.c'; fi`
+-
+-obdclass-llog_swab.o: llog_swab.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-llog_swab.o -MD -MP -MF "$(DEPDIR)/obdclass-llog_swab.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-llog_swab.o `test -f 'llog_swab.c' || echo '$(srcdir)/'`llog_swab.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-llog_swab.Tpo" "$(DEPDIR)/obdclass-llog_swab.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-llog_swab.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_swab.c' object='obdclass-llog_swab.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-llog_swab.Po' tmpdepfile='$(DEPDIR)/obdclass-llog_swab.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-llog_swab.o `test -f 'llog_swab.c' || echo '$(srcdir)/'`llog_swab.c
+-
+-obdclass-llog_swab.obj: llog_swab.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-llog_swab.obj -MD -MP -MF "$(DEPDIR)/obdclass-llog_swab.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-llog_swab.obj `if test -f 'llog_swab.c'; then $(CYGPATH_W) 'llog_swab.c'; else $(CYGPATH_W) '$(srcdir)/llog_swab.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-llog_swab.Tpo" "$(DEPDIR)/obdclass-llog_swab.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-llog_swab.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_swab.c' object='obdclass-llog_swab.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-llog_swab.Po' tmpdepfile='$(DEPDIR)/obdclass-llog_swab.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-llog_swab.obj `if test -f 'llog_swab.c'; then $(CYGPATH_W) 'llog_swab.c'; else $(CYGPATH_W) '$(srcdir)/llog_swab.c'; fi`
+-
+-obdclass-llog_obd.o: llog_obd.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-llog_obd.o -MD -MP -MF "$(DEPDIR)/obdclass-llog_obd.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-llog_obd.o `test -f 'llog_obd.c' || echo '$(srcdir)/'`llog_obd.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-llog_obd.Tpo" "$(DEPDIR)/obdclass-llog_obd.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-llog_obd.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_obd.c' object='obdclass-llog_obd.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-llog_obd.Po' tmpdepfile='$(DEPDIR)/obdclass-llog_obd.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-llog_obd.o `test -f 'llog_obd.c' || echo '$(srcdir)/'`llog_obd.c
+-
+-obdclass-llog_obd.obj: llog_obd.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-llog_obd.obj -MD -MP -MF "$(DEPDIR)/obdclass-llog_obd.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-llog_obd.obj `if test -f 'llog_obd.c'; then $(CYGPATH_W) 'llog_obd.c'; else $(CYGPATH_W) '$(srcdir)/llog_obd.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-llog_obd.Tpo" "$(DEPDIR)/obdclass-llog_obd.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-llog_obd.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_obd.c' object='obdclass-llog_obd.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-llog_obd.Po' tmpdepfile='$(DEPDIR)/obdclass-llog_obd.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-llog_obd.obj `if test -f 'llog_obd.c'; then $(CYGPATH_W) 'llog_obd.c'; else $(CYGPATH_W) '$(srcdir)/llog_obd.c'; fi`
+-
+-obdclass-llog.o: llog.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-llog.o -MD -MP -MF "$(DEPDIR)/obdclass-llog.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-llog.o `test -f 'llog.c' || echo '$(srcdir)/'`llog.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-llog.Tpo" "$(DEPDIR)/obdclass-llog.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-llog.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog.c' object='obdclass-llog.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-llog.Po' tmpdepfile='$(DEPDIR)/obdclass-llog.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-llog.o `test -f 'llog.c' || echo '$(srcdir)/'`llog.c
+-
+-obdclass-llog.obj: llog.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-llog.obj -MD -MP -MF "$(DEPDIR)/obdclass-llog.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-llog.obj `if test -f 'llog.c'; then $(CYGPATH_W) 'llog.c'; else $(CYGPATH_W) '$(srcdir)/llog.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-llog.Tpo" "$(DEPDIR)/obdclass-llog.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-llog.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog.c' object='obdclass-llog.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-llog.Po' tmpdepfile='$(DEPDIR)/obdclass-llog.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-llog.obj `if test -f 'llog.c'; then $(CYGPATH_W) 'llog.c'; else $(CYGPATH_W) '$(srcdir)/llog.c'; fi`
+-
+-obdclass-llog_cat.o: llog_cat.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-llog_cat.o -MD -MP -MF "$(DEPDIR)/obdclass-llog_cat.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-llog_cat.o `test -f 'llog_cat.c' || echo '$(srcdir)/'`llog_cat.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-llog_cat.Tpo" "$(DEPDIR)/obdclass-llog_cat.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-llog_cat.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_cat.c' object='obdclass-llog_cat.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-llog_cat.Po' tmpdepfile='$(DEPDIR)/obdclass-llog_cat.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-llog_cat.o `test -f 'llog_cat.c' || echo '$(srcdir)/'`llog_cat.c
+-
+-obdclass-llog_cat.obj: llog_cat.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-llog_cat.obj -MD -MP -MF "$(DEPDIR)/obdclass-llog_cat.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-llog_cat.obj `if test -f 'llog_cat.c'; then $(CYGPATH_W) 'llog_cat.c'; else $(CYGPATH_W) '$(srcdir)/llog_cat.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-llog_cat.Tpo" "$(DEPDIR)/obdclass-llog_cat.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-llog_cat.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_cat.c' object='obdclass-llog_cat.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-llog_cat.Po' tmpdepfile='$(DEPDIR)/obdclass-llog_cat.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-llog_cat.obj `if test -f 'llog_cat.c'; then $(CYGPATH_W) 'llog_cat.c'; else $(CYGPATH_W) '$(srcdir)/llog_cat.c'; fi`
+-
+-obdclass-llog_lvfs.o: llog_lvfs.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-llog_lvfs.o -MD -MP -MF "$(DEPDIR)/obdclass-llog_lvfs.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-llog_lvfs.o `test -f 'llog_lvfs.c' || echo '$(srcdir)/'`llog_lvfs.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-llog_lvfs.Tpo" "$(DEPDIR)/obdclass-llog_lvfs.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-llog_lvfs.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_lvfs.c' object='obdclass-llog_lvfs.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-llog_lvfs.Po' tmpdepfile='$(DEPDIR)/obdclass-llog_lvfs.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-llog_lvfs.o `test -f 'llog_lvfs.c' || echo '$(srcdir)/'`llog_lvfs.c
+-
+-obdclass-llog_lvfs.obj: llog_lvfs.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -MT obdclass-llog_lvfs.obj -MD -MP -MF "$(DEPDIR)/obdclass-llog_lvfs.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdclass-llog_lvfs.obj `if test -f 'llog_lvfs.c'; then $(CYGPATH_W) 'llog_lvfs.c'; else $(CYGPATH_W) '$(srcdir)/llog_lvfs.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdclass-llog_lvfs.Tpo" "$(DEPDIR)/obdclass-llog_lvfs.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdclass-llog_lvfs.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_lvfs.c' object='obdclass-llog_lvfs.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdclass-llog_lvfs.Po' tmpdepfile='$(DEPDIR)/obdclass-llog_lvfs.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdclass_CFLAGS) $(CFLAGS) -c -o obdclass-llog_lvfs.obj `if test -f 'llog_lvfs.c'; then $(CYGPATH_W) 'llog_lvfs.c'; else $(CYGPATH_W) '$(srcdir)/llog_lvfs.c'; fi`
+ uninstall-info-am:
+ modulefsDATA_INSTALL = $(INSTALL_DATA)
+ install-modulefsDATA: $(modulefs_DATA)
+@@ -1293,24 +808,6 @@
+ 	  echo " rm -f $(DESTDIR)$(modulefsdir)/$$f"; \
+ 	  rm -f $(DESTDIR)$(modulefsdir)/$$f; \
+ 	done
+-plistDATA_INSTALL = $(INSTALL_DATA)
+-install-plistDATA: $(plist_DATA)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(plistdir)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f"; \
+-	  $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f; \
+-	done
+-
+-uninstall-plistDATA:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " rm -f $(DESTDIR)$(plistdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(plistdir)/$$f; \
+-	done
+ 
+ # This directory's subdirectories are mostly independent; you can cd
+ # into them and run `make' without going through this Makefile.
+@@ -1482,10 +979,10 @@
+ 	done
+ check-am: all-am
+ check: check-recursive
+-all-am: autoMakefile $(LIBRARIES) $(PROGRAMS) $(DATA)
++all-am: autoMakefile $(LIBRARIES) $(DATA)
+ installdirs: installdirs-recursive
+ installdirs-am:
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir) $(DESTDIR)$(modulefsdir) $(DESTDIR)$(plistdir)
++	$(mkinstalldirs) $(DESTDIR)$(modulefsdir)
+ 
+ install: install-recursive
+ install-exec: install-exec-recursive
+@@ -1514,8 +1011,7 @@
+ 	@echo "it deletes files that may require special tools to rebuild."
+ clean: clean-recursive
+ 
+-clean-am: clean-generic clean-macosPROGRAMS clean-noinstLIBRARIES \
+-	mostlyclean-am
++clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
+ 
+ distclean: distclean-recursive
+ 	-rm -rf ./$(DEPDIR)
+@@ -1531,8 +1027,7 @@
+ 
+ info-am:
+ 
+-install-data-am: install-macosPROGRAMS install-modulefsDATA \
+-	install-plistDATA
++install-data-am: install-modulefsDATA
+ 	@$(NORMAL_INSTALL)
+ 	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
+ 
+@@ -1561,31 +1056,49 @@
+ 
+ ps-am:
+ 
+-uninstall-am: uninstall-info-am uninstall-macosPROGRAMS \
+-	uninstall-modulefsDATA uninstall-plistDATA
++uninstall-am: uninstall-info-am uninstall-modulefsDATA
+ 
+ uninstall-info: uninstall-info-recursive
+ 
+ .PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \
+-	clean-generic clean-macosPROGRAMS clean-noinstLIBRARIES \
+-	clean-recursive ctags ctags-recursive distclean \
+-	distclean-compile distclean-generic distclean-recursive \
+-	distclean-tags distdir dvi dvi-am dvi-recursive info info-am \
+-	info-recursive install install-am install-data install-data-am \
+-	install-data-recursive install-exec install-exec-am \
+-	install-exec-recursive install-info install-info-am \
+-	install-info-recursive install-macosPROGRAMS install-man \
+-	install-modulefsDATA install-plistDATA install-recursive \
+-	install-strip installcheck installcheck-am installdirs \
+-	installdirs-am installdirs-recursive maintainer-clean \
+-	maintainer-clean-generic maintainer-clean-recursive mostlyclean \
+-	mostlyclean-compile mostlyclean-generic mostlyclean-recursive \
+-	pdf pdf-am pdf-recursive ps ps-am ps-recursive tags \
+-	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 \
++	dvi-recursive info info-am info-recursive install install-am \
++	install-data install-data-am install-data-recursive \
++	install-exec install-exec-am install-exec-recursive \
++	install-info install-info-am install-info-recursive install-man \
++	install-modulefsDATA install-recursive install-strip \
++	installcheck installcheck-am installdirs installdirs-am \
++	installdirs-recursive maintainer-clean maintainer-clean-generic \
++	maintainer-clean-recursive mostlyclean mostlyclean-compile \
++	mostlyclean-generic mostlyclean-recursive pdf pdf-am \
++	pdf-recursive ps ps-am ps-recursive tags tags-recursive \
++	uninstall uninstall-am uninstall-info-am \
++	uninstall-info-recursive uninstall-modulefsDATA \
++	uninstall-recursive
+ 
+ 
++#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
++
+ 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 lustre-1.6.7.2.orig/lustre/obdclass/linux/Makefile.in lustre-1.6.7.2/lustre/obdclass/linux/Makefile.in
+--- lustre-1.6.7.2.orig/lustre/obdclass/linux/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/obdclass/linux/Makefile.in	2009-08-10 10:05:42.000000000 +0200
+@@ -119,12 +119,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -236,8 +235,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -251,8 +248,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -260,26 +259,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/obdecho/autoMakefile.in lustre-1.6.7.2/lustre/obdecho/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/obdecho/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/obdecho/autoMakefile.in	2009-08-10 10:05:42.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+@@ -335,21 +335,6 @@
+ @LIBLUSTRE_TRUE at libobdecho_a_CFLAGS = $(LLCFLAGS)
+ 
+ @LINUX_TRUE@@MODULES_TRUE at modulefs_DATA = obdecho$(KMODEXT)
+-
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS := obdecho
+- at DARWIN_TRUE@@MODULES_TRUE at obdecho_SOURCES := \
+- at DARWIN_TRUE@@MODULES_TRUE@        lproc_echo.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        echo.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        echo_client.c
+-
+-
+- at DARWIN_TRUE@@MODULES_TRUE at obdecho_CFLAGS := $(EXTRA_KCFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at obdecho_LDFLAGS := $(EXTRA_KLDFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at obdecho_LDADD := $(EXTRA_KLIBS)
+-
+- at DARWIN_TRUE@@MODULES_TRUE at plist_DATA := Info.plist
+-
+- at DARWIN_TRUE@@MODULES_TRUE at install_data_hook := fix-kext-ownership
+ DIST_SOURCES = $(obdecho-objs:%.o=%.c)
+ subdir = lustre/obdecho
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+@@ -364,38 +349,19 @@
+ @LIBLUSTRE_TRUE at am_libobdecho_a_OBJECTS = \
+ @LIBLUSTRE_TRUE@	libobdecho_a-echo_client.$(OBJEXT)
+ libobdecho_a_OBJECTS = $(am_libobdecho_a_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at macos_PROGRAMS =
+- at DARWIN_FALSE@@MODULES_FALSE at macos_PROGRAMS =
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS = obdecho$(EXEEXT)
+- at DARWIN_TRUE@@MODULES_FALSE at macos_PROGRAMS =
+-PROGRAMS = $(macos_PROGRAMS)
+-
+-am__obdecho_SOURCES_DIST = lproc_echo.c echo.c echo_client.c
+- at DARWIN_TRUE@@MODULES_TRUE at am_obdecho_OBJECTS = \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdecho-lproc_echo.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdecho-echo.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	obdecho-echo_client.$(OBJEXT)
+-obdecho_OBJECTS = $(am_obdecho_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at obdecho_DEPENDENCIES =
+- at DARWIN_FALSE@@MODULES_FALSE at obdecho_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_TRUE at obdecho_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_FALSE at obdecho_DEPENDENCIES =
+ 
+ DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+ am__depfiles_maybe = depfiles
+- at AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/libobdecho_a-echo_client.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdecho-echo.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdecho-echo_client.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/obdecho-lproc_echo.Po
++ at AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/libobdecho_a-echo_client.Po
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+ CCLD = $(CC)
+ LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DATA = $(modulefs_DATA) $(plist_DATA)
++DATA = $(modulefs_DATA)
+ 
+ DIST_COMMON = $(srcdir)/autoMakefile.in Makefile.in autoMakefile.am
+-SOURCES = $(libobdecho_a_SOURCES) $(obdecho_SOURCES)
++SOURCES = $(libobdecho_a_SOURCES)
+ 
+ all: all-am
+ 
+@@ -417,33 +383,6 @@
+ 	-rm -f libobdecho.a
+ 	$(libobdecho_a_AR) libobdecho.a $(libobdecho_a_OBJECTS) $(libobdecho_a_LIBADD)
+ 	$(RANLIB) libobdecho.a
+-macosPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+-install-macosPROGRAMS: $(macos_PROGRAMS)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f"; \
+-	   $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f || exit 1; \
+-	  else :; fi; \
+-	done
+-
+-uninstall-macosPROGRAMS:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f $(DESTDIR)$(macosdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(macosdir)/$$f; \
+-	done
+-
+-clean-macosPROGRAMS:
+-	-test -z "$(macos_PROGRAMS)" || rm -f $(macos_PROGRAMS)
+-obdecho$(EXEEXT): $(obdecho_OBJECTS) $(obdecho_DEPENDENCIES) 
+-	@rm -f obdecho$(EXEEXT)
+-	$(LINK) $(obdecho_LDFLAGS) $(obdecho_OBJECTS) $(obdecho_LDADD) $(LIBS)
+ 
+ mostlyclean-compile:
+ 	-rm -f *.$(OBJEXT) core *.core
+@@ -452,9 +391,6 @@
+ 	-rm -f *.tab.c
+ 
+ @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libobdecho_a-echo_client.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdecho-echo.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdecho-echo_client.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/obdecho-lproc_echo.Po at am__quote@
+ 
+ .c.o:
+ @am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+@@ -499,72 +435,6 @@
+ @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`
+-
+-obdecho-lproc_echo.o: lproc_echo.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdecho_CFLAGS) $(CFLAGS) -MT obdecho-lproc_echo.o -MD -MP -MF "$(DEPDIR)/obdecho-lproc_echo.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdecho-lproc_echo.o `test -f 'lproc_echo.c' || echo '$(srcdir)/'`lproc_echo.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdecho-lproc_echo.Tpo" "$(DEPDIR)/obdecho-lproc_echo.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdecho-lproc_echo.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lproc_echo.c' object='obdecho-lproc_echo.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdecho-lproc_echo.Po' tmpdepfile='$(DEPDIR)/obdecho-lproc_echo.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdecho_CFLAGS) $(CFLAGS) -c -o obdecho-lproc_echo.o `test -f 'lproc_echo.c' || echo '$(srcdir)/'`lproc_echo.c
+-
+-obdecho-lproc_echo.obj: lproc_echo.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdecho_CFLAGS) $(CFLAGS) -MT obdecho-lproc_echo.obj -MD -MP -MF "$(DEPDIR)/obdecho-lproc_echo.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdecho-lproc_echo.obj `if test -f 'lproc_echo.c'; then $(CYGPATH_W) 'lproc_echo.c'; else $(CYGPATH_W) '$(srcdir)/lproc_echo.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdecho-lproc_echo.Tpo" "$(DEPDIR)/obdecho-lproc_echo.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdecho-lproc_echo.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lproc_echo.c' object='obdecho-lproc_echo.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdecho-lproc_echo.Po' tmpdepfile='$(DEPDIR)/obdecho-lproc_echo.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdecho_CFLAGS) $(CFLAGS) -c -o obdecho-lproc_echo.obj `if test -f 'lproc_echo.c'; then $(CYGPATH_W) 'lproc_echo.c'; else $(CYGPATH_W) '$(srcdir)/lproc_echo.c'; fi`
+-
+-obdecho-echo.o: echo.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdecho_CFLAGS) $(CFLAGS) -MT obdecho-echo.o -MD -MP -MF "$(DEPDIR)/obdecho-echo.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdecho-echo.o `test -f 'echo.c' || echo '$(srcdir)/'`echo.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdecho-echo.Tpo" "$(DEPDIR)/obdecho-echo.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdecho-echo.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='echo.c' object='obdecho-echo.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdecho-echo.Po' tmpdepfile='$(DEPDIR)/obdecho-echo.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdecho_CFLAGS) $(CFLAGS) -c -o obdecho-echo.o `test -f 'echo.c' || echo '$(srcdir)/'`echo.c
+-
+-obdecho-echo.obj: echo.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdecho_CFLAGS) $(CFLAGS) -MT obdecho-echo.obj -MD -MP -MF "$(DEPDIR)/obdecho-echo.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdecho-echo.obj `if test -f 'echo.c'; then $(CYGPATH_W) 'echo.c'; else $(CYGPATH_W) '$(srcdir)/echo.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdecho-echo.Tpo" "$(DEPDIR)/obdecho-echo.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdecho-echo.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='echo.c' object='obdecho-echo.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdecho-echo.Po' tmpdepfile='$(DEPDIR)/obdecho-echo.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdecho_CFLAGS) $(CFLAGS) -c -o obdecho-echo.obj `if test -f 'echo.c'; then $(CYGPATH_W) 'echo.c'; else $(CYGPATH_W) '$(srcdir)/echo.c'; fi`
+-
+-obdecho-echo_client.o: echo_client.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdecho_CFLAGS) $(CFLAGS) -MT obdecho-echo_client.o -MD -MP -MF "$(DEPDIR)/obdecho-echo_client.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdecho-echo_client.o `test -f 'echo_client.c' || echo '$(srcdir)/'`echo_client.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdecho-echo_client.Tpo" "$(DEPDIR)/obdecho-echo_client.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdecho-echo_client.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='echo_client.c' object='obdecho-echo_client.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdecho-echo_client.Po' tmpdepfile='$(DEPDIR)/obdecho-echo_client.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdecho_CFLAGS) $(CFLAGS) -c -o obdecho-echo_client.o `test -f 'echo_client.c' || echo '$(srcdir)/'`echo_client.c
+-
+-obdecho-echo_client.obj: echo_client.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdecho_CFLAGS) $(CFLAGS) -MT obdecho-echo_client.obj -MD -MP -MF "$(DEPDIR)/obdecho-echo_client.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o obdecho-echo_client.obj `if test -f 'echo_client.c'; then $(CYGPATH_W) 'echo_client.c'; else $(CYGPATH_W) '$(srcdir)/echo_client.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/obdecho-echo_client.Tpo" "$(DEPDIR)/obdecho-echo_client.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/obdecho-echo_client.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='echo_client.c' object='obdecho-echo_client.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/obdecho-echo_client.Po' tmpdepfile='$(DEPDIR)/obdecho-echo_client.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(obdecho_CFLAGS) $(CFLAGS) -c -o obdecho-echo_client.obj `if test -f 'echo_client.c'; then $(CYGPATH_W) 'echo_client.c'; else $(CYGPATH_W) '$(srcdir)/echo_client.c'; fi`
+ uninstall-info-am:
+ modulefsDATA_INSTALL = $(INSTALL_DATA)
+ install-modulefsDATA: $(modulefs_DATA)
+@@ -584,24 +454,6 @@
+ 	  echo " rm -f $(DESTDIR)$(modulefsdir)/$$f"; \
+ 	  rm -f $(DESTDIR)$(modulefsdir)/$$f; \
+ 	done
+-plistDATA_INSTALL = $(INSTALL_DATA)
+-install-plistDATA: $(plist_DATA)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(plistdir)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f"; \
+-	  $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f; \
+-	done
+-
+-uninstall-plistDATA:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " rm -f $(DESTDIR)$(plistdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(plistdir)/$$f; \
+-	done
+ 
+ ETAGS = etags
+ ETAGSFLAGS =
+@@ -690,10 +542,10 @@
+ 	done
+ check-am: all-am
+ check: check-am
+-all-am: autoMakefile $(LIBRARIES) $(PROGRAMS) $(DATA)
++all-am: autoMakefile $(LIBRARIES) $(DATA)
+ 
+ installdirs:
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir) $(DESTDIR)$(modulefsdir) $(DESTDIR)$(plistdir)
++	$(mkinstalldirs) $(DESTDIR)$(modulefsdir)
+ install: install-am
+ install-exec: install-exec-am
+ install-data: install-data-am
+@@ -721,8 +573,7 @@
+ 	@echo "it deletes files that may require special tools to rebuild."
+ clean: clean-am
+ 
+-clean-am: clean-generic clean-macosPROGRAMS clean-noinstLIBRARIES \
+-	mostlyclean-am
++clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
+ 
+ distclean: distclean-am
+ 	-rm -rf ./$(DEPDIR)
+@@ -738,8 +589,7 @@
+ 
+ info-am:
+ 
+-install-data-am: install-macosPROGRAMS install-modulefsDATA \
+-	install-plistDATA
++install-data-am: install-modulefsDATA
+ 	@$(NORMAL_INSTALL)
+ 	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
+ 
+@@ -768,22 +618,36 @@
+ 
+ ps-am:
+ 
+-uninstall-am: uninstall-info-am uninstall-macosPROGRAMS \
+-	uninstall-modulefsDATA uninstall-plistDATA
++uninstall-am: uninstall-info-am uninstall-modulefsDATA
+ 
+ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+-	clean-macosPROGRAMS clean-noinstLIBRARIES ctags distclean \
+-	distclean-compile distclean-generic distclean-tags distdir dvi \
+-	dvi-am info info-am install install-am install-data \
+-	install-data-am install-exec install-exec-am install-info \
+-	install-info-am install-macosPROGRAMS install-man \
+-	install-modulefsDATA install-plistDATA install-strip \
+-	installcheck installcheck-am installdirs maintainer-clean \
++	clean-noinstLIBRARIES ctags distclean distclean-compile \
++	distclean-generic distclean-tags distdir dvi dvi-am info \
++	info-am install install-am install-data install-data-am \
++	install-exec install-exec-am install-info install-info-am \
++	install-man install-modulefsDATA install-strip installcheck \
++	installcheck-am installdirs maintainer-clean \
+ 	maintainer-clean-generic mostlyclean mostlyclean-compile \
+ 	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
+-	uninstall-am uninstall-info-am uninstall-macosPROGRAMS \
+-	uninstall-modulefsDATA uninstall-plistDATA
++	uninstall-am uninstall-info-am uninstall-modulefsDATA
++
+ 
++#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
+ 
+ install-data-hook: $(install_data_hook)
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+diff -Nurwd lustre-1.6.7.2.orig/lustre/obdfilter/autoMakefile.in lustre-1.6.7.2/lustre/obdfilter/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/obdfilter/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/obdfilter/autoMakefile.in	2009-08-10 10:05:43.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/osc/autoMakefile.in lustre-1.6.7.2/lustre/osc/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/osc/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/osc/autoMakefile.in	2009-08-10 10:05:43.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+@@ -335,21 +335,6 @@
+ @LIBLUSTRE_TRUE at libosc_a_CFLAGS = $(LLCFLAGS)
+ 
+ @LINUX_TRUE@@MODULES_TRUE at modulefs_DATA = osc$(KMODEXT)
+-
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS := osc
+-
+- at DARWIN_TRUE@@MODULES_TRUE at osc_SOURCES := \
+- at DARWIN_TRUE@@MODULES_TRUE@        osc_create.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        osc_request.c
+-
+-
+- at DARWIN_TRUE@@MODULES_TRUE at osc_CFLAGS := $(EXTRA_KCFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at osc_LDFLAGS := $(EXTRA_KLDFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at osc_LDADD := $(EXTRA_KLIBS)
+-
+- at DARWIN_TRUE@@MODULES_TRUE at plist_DATA := Info.plist
+-
+- at DARWIN_TRUE@@MODULES_TRUE at install_data_hook := fix-kext-ownership
+ DIST_SOURCES = $(osc-objs:%.o=%.c) osc_internal.h
+ subdir = lustre/osc
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+@@ -366,37 +351,21 @@
+ @LIBLUSTRE_TRUE@	libosc_a-osc_create.$(OBJEXT) \
+ @LIBLUSTRE_TRUE@	libosc_a-cache.$(OBJEXT)
+ libosc_a_OBJECTS = $(am_libosc_a_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at macos_PROGRAMS =
+- at DARWIN_FALSE@@MODULES_FALSE at macos_PROGRAMS =
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS = osc$(EXEEXT)
+- at DARWIN_TRUE@@MODULES_FALSE at macos_PROGRAMS =
+-PROGRAMS = $(macos_PROGRAMS)
+-
+-am__osc_SOURCES_DIST = osc_create.c osc_request.c
+- at DARWIN_TRUE@@MODULES_TRUE at am_osc_OBJECTS = osc-osc_create.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	osc-osc_request.$(OBJEXT)
+-osc_OBJECTS = $(am_osc_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at osc_DEPENDENCIES =
+- at DARWIN_FALSE@@MODULES_FALSE at osc_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_TRUE at osc_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_FALSE at osc_DEPENDENCIES =
+ 
+ DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+ am__depfiles_maybe = depfiles
+ @AMDEP_TRUE at DEP_FILES = ./$(DEPDIR)/libosc_a-cache.Po \
+ @AMDEP_TRUE@	./$(DEPDIR)/libosc_a-osc_create.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libosc_a-osc_request.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/osc-osc_create.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/osc-osc_request.Po
++ at AMDEP_TRUE@	./$(DEPDIR)/libosc_a-osc_request.Po
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+ CCLD = $(CC)
+ LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DATA = $(modulefs_DATA) $(plist_DATA)
++DATA = $(modulefs_DATA)
+ 
+ DIST_COMMON = $(srcdir)/autoMakefile.in Makefile.in autoMakefile.am
+-SOURCES = $(libosc_a_SOURCES) $(osc_SOURCES)
++SOURCES = $(libosc_a_SOURCES)
+ 
+ all: all-am
+ 
+@@ -418,33 +387,6 @@
+ 	-rm -f libosc.a
+ 	$(libosc_a_AR) libosc.a $(libosc_a_OBJECTS) $(libosc_a_LIBADD)
+ 	$(RANLIB) libosc.a
+-macosPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+-install-macosPROGRAMS: $(macos_PROGRAMS)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f"; \
+-	   $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f || exit 1; \
+-	  else :; fi; \
+-	done
+-
+-uninstall-macosPROGRAMS:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f $(DESTDIR)$(macosdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(macosdir)/$$f; \
+-	done
+-
+-clean-macosPROGRAMS:
+-	-test -z "$(macos_PROGRAMS)" || rm -f $(macos_PROGRAMS)
+-osc$(EXEEXT): $(osc_OBJECTS) $(osc_DEPENDENCIES) 
+-	@rm -f osc$(EXEEXT)
+-	$(LINK) $(osc_LDFLAGS) $(osc_OBJECTS) $(osc_LDADD) $(LIBS)
+ 
+ mostlyclean-compile:
+ 	-rm -f *.$(OBJEXT) core *.core
+@@ -455,8 +397,6 @@
+ @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@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/osc-osc_create.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/osc-osc_request.Po at am__quote@
+ 
+ .c.o:
+ @am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+@@ -545,50 +485,6 @@
+ @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`
+-
+-osc-osc_create.o: osc_create.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(osc_CFLAGS) $(CFLAGS) -MT osc-osc_create.o -MD -MP -MF "$(DEPDIR)/osc-osc_create.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o osc-osc_create.o `test -f 'osc_create.c' || echo '$(srcdir)/'`osc_create.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/osc-osc_create.Tpo" "$(DEPDIR)/osc-osc_create.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/osc-osc_create.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='osc_create.c' object='osc-osc_create.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/osc-osc_create.Po' tmpdepfile='$(DEPDIR)/osc-osc_create.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(osc_CFLAGS) $(CFLAGS) -c -o osc-osc_create.o `test -f 'osc_create.c' || echo '$(srcdir)/'`osc_create.c
+-
+-osc-osc_create.obj: osc_create.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(osc_CFLAGS) $(CFLAGS) -MT osc-osc_create.obj -MD -MP -MF "$(DEPDIR)/osc-osc_create.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o osc-osc_create.obj `if test -f 'osc_create.c'; then $(CYGPATH_W) 'osc_create.c'; else $(CYGPATH_W) '$(srcdir)/osc_create.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/osc-osc_create.Tpo" "$(DEPDIR)/osc-osc_create.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/osc-osc_create.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='osc_create.c' object='osc-osc_create.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/osc-osc_create.Po' tmpdepfile='$(DEPDIR)/osc-osc_create.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(osc_CFLAGS) $(CFLAGS) -c -o osc-osc_create.obj `if test -f 'osc_create.c'; then $(CYGPATH_W) 'osc_create.c'; else $(CYGPATH_W) '$(srcdir)/osc_create.c'; fi`
+-
+-osc-osc_request.o: osc_request.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(osc_CFLAGS) $(CFLAGS) -MT osc-osc_request.o -MD -MP -MF "$(DEPDIR)/osc-osc_request.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o osc-osc_request.o `test -f 'osc_request.c' || echo '$(srcdir)/'`osc_request.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/osc-osc_request.Tpo" "$(DEPDIR)/osc-osc_request.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/osc-osc_request.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='osc_request.c' object='osc-osc_request.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/osc-osc_request.Po' tmpdepfile='$(DEPDIR)/osc-osc_request.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(osc_CFLAGS) $(CFLAGS) -c -o osc-osc_request.o `test -f 'osc_request.c' || echo '$(srcdir)/'`osc_request.c
+-
+-osc-osc_request.obj: osc_request.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(osc_CFLAGS) $(CFLAGS) -MT osc-osc_request.obj -MD -MP -MF "$(DEPDIR)/osc-osc_request.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o osc-osc_request.obj `if test -f 'osc_request.c'; then $(CYGPATH_W) 'osc_request.c'; else $(CYGPATH_W) '$(srcdir)/osc_request.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/osc-osc_request.Tpo" "$(DEPDIR)/osc-osc_request.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/osc-osc_request.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='osc_request.c' object='osc-osc_request.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/osc-osc_request.Po' tmpdepfile='$(DEPDIR)/osc-osc_request.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(osc_CFLAGS) $(CFLAGS) -c -o osc-osc_request.obj `if test -f 'osc_request.c'; then $(CYGPATH_W) 'osc_request.c'; else $(CYGPATH_W) '$(srcdir)/osc_request.c'; fi`
+ uninstall-info-am:
+ modulefsDATA_INSTALL = $(INSTALL_DATA)
+ install-modulefsDATA: $(modulefs_DATA)
+@@ -608,24 +504,6 @@
+ 	  echo " rm -f $(DESTDIR)$(modulefsdir)/$$f"; \
+ 	  rm -f $(DESTDIR)$(modulefsdir)/$$f; \
+ 	done
+-plistDATA_INSTALL = $(INSTALL_DATA)
+-install-plistDATA: $(plist_DATA)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(plistdir)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f"; \
+-	  $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f; \
+-	done
+-
+-uninstall-plistDATA:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " rm -f $(DESTDIR)$(plistdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(plistdir)/$$f; \
+-	done
+ 
+ ETAGS = etags
+ ETAGSFLAGS =
+@@ -714,10 +592,10 @@
+ 	done
+ check-am: all-am
+ check: check-am
+-all-am: autoMakefile $(LIBRARIES) $(PROGRAMS) $(DATA)
++all-am: autoMakefile $(LIBRARIES) $(DATA)
+ 
+ installdirs:
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir) $(DESTDIR)$(modulefsdir) $(DESTDIR)$(plistdir)
++	$(mkinstalldirs) $(DESTDIR)$(modulefsdir)
+ install: install-am
+ install-exec: install-exec-am
+ install-data: install-data-am
+@@ -745,8 +623,7 @@
+ 	@echo "it deletes files that may require special tools to rebuild."
+ clean: clean-am
+ 
+-clean-am: clean-generic clean-macosPROGRAMS clean-noinstLIBRARIES \
+-	mostlyclean-am
++clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
+ 
+ distclean: distclean-am
+ 	-rm -rf ./$(DEPDIR)
+@@ -762,8 +639,7 @@
+ 
+ info-am:
+ 
+-install-data-am: install-macosPROGRAMS install-modulefsDATA \
+-	install-plistDATA
++install-data-am: install-modulefsDATA
+ 	@$(NORMAL_INSTALL)
+ 	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
+ 
+@@ -792,23 +668,37 @@
+ 
+ ps-am:
+ 
+-uninstall-am: uninstall-info-am uninstall-macosPROGRAMS \
+-	uninstall-modulefsDATA uninstall-plistDATA
++uninstall-am: uninstall-info-am uninstall-modulefsDATA
+ 
+ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+-	clean-macosPROGRAMS clean-noinstLIBRARIES ctags distclean \
+-	distclean-compile distclean-generic distclean-tags distdir dvi \
+-	dvi-am info info-am install install-am install-data \
+-	install-data-am install-exec install-exec-am install-info \
+-	install-info-am install-macosPROGRAMS install-man \
+-	install-modulefsDATA install-plistDATA install-strip \
+-	installcheck installcheck-am installdirs maintainer-clean \
++	clean-noinstLIBRARIES ctags distclean distclean-compile \
++	distclean-generic distclean-tags distdir dvi dvi-am info \
++	info-am install install-am install-data install-data-am \
++	install-exec install-exec-am install-info install-info-am \
++	install-man install-modulefsDATA install-strip installcheck \
++	installcheck-am installdirs maintainer-clean \
+ 	maintainer-clean-generic mostlyclean mostlyclean-compile \
+ 	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
+-	uninstall-am uninstall-info-am uninstall-macosPROGRAMS \
+-	uninstall-modulefsDATA uninstall-plistDATA
++	uninstall-am uninstall-info-am uninstall-modulefsDATA
+ 
+ 
++#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
++
+ 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 lustre-1.6.7.2.orig/lustre/ost/autoMakefile.in lustre-1.6.7.2/lustre/ost/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/ost/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/ost/autoMakefile.in	2009-08-10 10:05:43.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/ptlrpc/autoMakefile.in lustre-1.6.7.2/lustre/ptlrpc/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/ptlrpc/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/ptlrpc/autoMakefile.in	2009-08-10 10:05:43.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -272,8 +271,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -287,8 +284,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -296,26 +295,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+@@ -355,38 +355,6 @@
+ @LIBLUSTRE_TRUE at libptlrpc_a_CFLAGS = $(LLCFLAGS)
+ 
+ @LINUX_TRUE@@MODULES_TRUE at modulefs_DATA = ptlrpc$(KMODEXT)
+-
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS := ptlrpc
+-
+- at DARWIN_TRUE@@MODULES_TRUE at ptlrpc_SOURCES := \
+- at DARWIN_TRUE@@MODULES_TRUE@        ptlrpc_module.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        client.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        connection.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        events.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        import.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        llog_client.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        llog_net.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        llog_server.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        lproc_ptlrpc.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        niobuf.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        pack_generic.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        pers.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        pinger.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        ptlrpcd.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        recover.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        recov_thread.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        service.c \
+- at DARWIN_TRUE@@MODULES_TRUE@	wiretest.c \
+- at DARWIN_TRUE@@MODULES_TRUE@        $(LDLM_COMM_SOURCES)
+-
+-
+- at DARWIN_TRUE@@MODULES_TRUE at ptlrpc_CFLAGS := $(EXTRA_KCFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at ptlrpc_LDFLAGS := $(EXTRA_KLDFLAGS)
+- at DARWIN_TRUE@@MODULES_TRUE at ptlrpc_LDADD := $(EXTRA_KLIBS)
+-
+- at DARWIN_TRUE@@MODULES_TRUE at plist_DATA := Info.plist
+-
+- at DARWIN_TRUE@@MODULES_TRUE at install_data_hook := fix-kext-ownership
+ DIST_SOURCES = $(ptlrpc_objs:.o=.c) ptlrpc_internal.h
+ subdir = lustre/ptlrpc
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+@@ -440,60 +408,6 @@
+ 	libptlrpc_a-wiretest.$(OBJEXT) $(am__objects_1)
+ @LIBLUSTRE_TRUE at am_libptlrpc_a_OBJECTS = $(am__objects_2)
+ libptlrpc_a_OBJECTS = $(am_libptlrpc_a_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at macos_PROGRAMS =
+- at DARWIN_FALSE@@MODULES_FALSE at macos_PROGRAMS =
+- at DARWIN_TRUE@@MODULES_TRUE at macos_PROGRAMS = ptlrpc$(EXEEXT)
+- at DARWIN_TRUE@@MODULES_FALSE at macos_PROGRAMS =
+-PROGRAMS = $(macos_PROGRAMS)
+-
+-am__ptlrpc_SOURCES_DIST = 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 \
+-	$(top_srcdir)/lustre/ldlm/l_lock.c \
+-	$(top_srcdir)/lustre/ldlm/ldlm_lock.c \
+-	$(top_srcdir)/lustre/ldlm/interval_tree.c \
+-	$(top_srcdir)/lustre/ldlm/ldlm_resource.c \
+-	$(top_srcdir)/lustre/ldlm/ldlm_lib.c \
+-	$(top_srcdir)/lustre/ldlm/ldlm_plain.c \
+-	$(top_srcdir)/lustre/ldlm/ldlm_extent.c \
+-	$(top_srcdir)/lustre/ldlm/ldlm_request.c \
+-	$(top_srcdir)/lustre/ldlm/ldlm_lockd.c \
+-	$(top_srcdir)/lustre/ldlm/ldlm_internal.h \
+-	$(top_srcdir)/lustre/ldlm/ldlm_inodebits.c \
+-	$(top_srcdir)/lustre/ldlm/ldlm_flock.c \
+-	$(top_srcdir)/lustre/ldlm/ldlm_pool.c
+-am__objects_3 = ptlrpc-l_lock.$(OBJEXT) ptlrpc-ldlm_lock.$(OBJEXT) \
+-	ptlrpc-interval_tree.$(OBJEXT) ptlrpc-ldlm_resource.$(OBJEXT) \
+-	ptlrpc-ldlm_lib.$(OBJEXT) ptlrpc-ldlm_plain.$(OBJEXT) \
+-	ptlrpc-ldlm_extent.$(OBJEXT) ptlrpc-ldlm_request.$(OBJEXT) \
+-	ptlrpc-ldlm_lockd.$(OBJEXT) ptlrpc-ldlm_inodebits.$(OBJEXT) \
+-	ptlrpc-ldlm_flock.$(OBJEXT) ptlrpc-ldlm_pool.$(OBJEXT)
+- at DARWIN_TRUE@@MODULES_TRUE at am_ptlrpc_OBJECTS = \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-ptlrpc_module.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-client.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-connection.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-events.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-import.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-llog_client.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-llog_net.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-llog_server.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-lproc_ptlrpc.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-niobuf.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-pack_generic.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-pers.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-pinger.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-ptlrpcd.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-recover.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-recov_thread.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-service.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	ptlrpc-wiretest.$(OBJEXT) \
+- at DARWIN_TRUE@@MODULES_TRUE@	$(am__objects_3)
+-ptlrpc_OBJECTS = $(am_ptlrpc_OBJECTS)
+- at DARWIN_FALSE@@MODULES_TRUE at ptlrpc_DEPENDENCIES =
+- at DARWIN_FALSE@@MODULES_FALSE at ptlrpc_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_TRUE at ptlrpc_DEPENDENCIES =
+- at DARWIN_TRUE@@MODULES_FALSE at ptlrpc_DEPENDENCIES =
+ 
+ DEFAULT_INCLUDES =  -I. -I$(srcdir) -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+@@ -527,45 +441,15 @@
+ @AMDEP_TRUE@	./$(DEPDIR)/libptlrpc_a-recov_thread.Po \
+ @AMDEP_TRUE@	./$(DEPDIR)/libptlrpc_a-recover.Po \
+ @AMDEP_TRUE@	./$(DEPDIR)/libptlrpc_a-service.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/libptlrpc_a-wiretest.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-client.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-connection.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-events.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-import.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-interval_tree.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-l_lock.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-ldlm_extent.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-ldlm_flock.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-ldlm_inodebits.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-ldlm_lib.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-ldlm_lock.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-ldlm_lockd.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-ldlm_plain.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-ldlm_pool.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-ldlm_request.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-ldlm_resource.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-llog_client.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-llog_net.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-llog_server.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-lproc_ptlrpc.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-niobuf.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-pack_generic.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-pers.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-pinger.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-ptlrpc_module.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-ptlrpcd.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-recov_thread.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-recover.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-service.Po \
+- at AMDEP_TRUE@	./$(DEPDIR)/ptlrpc-wiretest.Po
++ at AMDEP_TRUE@	./$(DEPDIR)/libptlrpc_a-wiretest.Po
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+ CCLD = $(CC)
+ LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
+-DATA = $(modulefs_DATA) $(plist_DATA)
++DATA = $(modulefs_DATA)
+ 
+ DIST_COMMON = $(srcdir)/autoMakefile.in Makefile.in autoMakefile.am
+-SOURCES = $(libptlrpc_a_SOURCES) $(ptlrpc_SOURCES)
++SOURCES = $(libptlrpc_a_SOURCES)
+ 
+ all: all-am
+ 
+@@ -587,33 +471,6 @@
+ 	-rm -f libptlrpc.a
+ 	$(libptlrpc_a_AR) libptlrpc.a $(libptlrpc_a_OBJECTS) $(libptlrpc_a_LIBADD)
+ 	$(RANLIB) libptlrpc.a
+-macosPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+-install-macosPROGRAMS: $(macos_PROGRAMS)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f"; \
+-	   $(INSTALL_PROGRAM_ENV) $(macosPROGRAMS_INSTALL) $$p $(DESTDIR)$(macosdir)/$$f || exit 1; \
+-	  else :; fi; \
+-	done
+-
+-uninstall-macosPROGRAMS:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(macos_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f $(DESTDIR)$(macosdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(macosdir)/$$f; \
+-	done
+-
+-clean-macosPROGRAMS:
+-	-test -z "$(macos_PROGRAMS)" || rm -f $(macos_PROGRAMS)
+-ptlrpc$(EXEEXT): $(ptlrpc_OBJECTS) $(ptlrpc_DEPENDENCIES) 
+-	@rm -f ptlrpc$(EXEEXT)
+-	$(LINK) $(ptlrpc_LDFLAGS) $(ptlrpc_OBJECTS) $(ptlrpc_LDADD) $(LIBS)
+ 
+ mostlyclean-compile:
+ 	-rm -f *.$(OBJEXT) core *.core
+@@ -651,36 +508,6 @@
+ @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@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-client.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-connection.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-events.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-import.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-interval_tree.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-l_lock.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-ldlm_extent.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-ldlm_flock.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-ldlm_inodebits.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-ldlm_lib.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-ldlm_lock.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-ldlm_lockd.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-ldlm_plain.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-ldlm_pool.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-ldlm_request.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-ldlm_resource.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-llog_client.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-llog_net.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-llog_server.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-lproc_ptlrpc.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-niobuf.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-pack_generic.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-pers.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-pinger.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-ptlrpc_module.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-ptlrpcd.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-recov_thread.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-recover.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-service.Po at am__quote@
+- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ptlrpc-wiretest.Po at am__quote@
+ 
+ .c.o:
+ @am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
+@@ -1363,666 +1190,6 @@
+ @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`
+-
+-ptlrpc-ptlrpc_module.o: ptlrpc_module.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ptlrpc_module.o -MD -MP -MF "$(DEPDIR)/ptlrpc-ptlrpc_module.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ptlrpc_module.o `test -f 'ptlrpc_module.c' || echo '$(srcdir)/'`ptlrpc_module.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ptlrpc_module.Tpo" "$(DEPDIR)/ptlrpc-ptlrpc_module.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ptlrpc_module.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ptlrpc_module.c' object='ptlrpc-ptlrpc_module.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ptlrpc_module.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ptlrpc_module.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ptlrpc_module.o `test -f 'ptlrpc_module.c' || echo '$(srcdir)/'`ptlrpc_module.c
+-
+-ptlrpc-ptlrpc_module.obj: ptlrpc_module.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ptlrpc_module.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-ptlrpc_module.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ptlrpc_module.obj `if test -f 'ptlrpc_module.c'; then $(CYGPATH_W) 'ptlrpc_module.c'; else $(CYGPATH_W) '$(srcdir)/ptlrpc_module.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ptlrpc_module.Tpo" "$(DEPDIR)/ptlrpc-ptlrpc_module.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ptlrpc_module.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ptlrpc_module.c' object='ptlrpc-ptlrpc_module.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ptlrpc_module.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ptlrpc_module.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ptlrpc_module.obj `if test -f 'ptlrpc_module.c'; then $(CYGPATH_W) 'ptlrpc_module.c'; else $(CYGPATH_W) '$(srcdir)/ptlrpc_module.c'; fi`
+-
+-ptlrpc-client.o: client.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-client.o -MD -MP -MF "$(DEPDIR)/ptlrpc-client.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-client.o `test -f 'client.c' || echo '$(srcdir)/'`client.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-client.Tpo" "$(DEPDIR)/ptlrpc-client.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-client.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='client.c' object='ptlrpc-client.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-client.Po' tmpdepfile='$(DEPDIR)/ptlrpc-client.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-client.o `test -f 'client.c' || echo '$(srcdir)/'`client.c
+-
+-ptlrpc-client.obj: client.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-client.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-client.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-client.obj `if test -f 'client.c'; then $(CYGPATH_W) 'client.c'; else $(CYGPATH_W) '$(srcdir)/client.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-client.Tpo" "$(DEPDIR)/ptlrpc-client.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-client.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='client.c' object='ptlrpc-client.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-client.Po' tmpdepfile='$(DEPDIR)/ptlrpc-client.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-client.obj `if test -f 'client.c'; then $(CYGPATH_W) 'client.c'; else $(CYGPATH_W) '$(srcdir)/client.c'; fi`
+-
+-ptlrpc-connection.o: connection.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-connection.o -MD -MP -MF "$(DEPDIR)/ptlrpc-connection.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-connection.o `test -f 'connection.c' || echo '$(srcdir)/'`connection.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-connection.Tpo" "$(DEPDIR)/ptlrpc-connection.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-connection.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='connection.c' object='ptlrpc-connection.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-connection.Po' tmpdepfile='$(DEPDIR)/ptlrpc-connection.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-connection.o `test -f 'connection.c' || echo '$(srcdir)/'`connection.c
+-
+-ptlrpc-connection.obj: connection.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-connection.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-connection.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-connection.obj `if test -f 'connection.c'; then $(CYGPATH_W) 'connection.c'; else $(CYGPATH_W) '$(srcdir)/connection.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-connection.Tpo" "$(DEPDIR)/ptlrpc-connection.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-connection.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='connection.c' object='ptlrpc-connection.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-connection.Po' tmpdepfile='$(DEPDIR)/ptlrpc-connection.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-connection.obj `if test -f 'connection.c'; then $(CYGPATH_W) 'connection.c'; else $(CYGPATH_W) '$(srcdir)/connection.c'; fi`
+-
+-ptlrpc-events.o: events.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-events.o -MD -MP -MF "$(DEPDIR)/ptlrpc-events.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-events.o `test -f 'events.c' || echo '$(srcdir)/'`events.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-events.Tpo" "$(DEPDIR)/ptlrpc-events.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-events.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='events.c' object='ptlrpc-events.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-events.Po' tmpdepfile='$(DEPDIR)/ptlrpc-events.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-events.o `test -f 'events.c' || echo '$(srcdir)/'`events.c
+-
+-ptlrpc-events.obj: events.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-events.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-events.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-events.obj `if test -f 'events.c'; then $(CYGPATH_W) 'events.c'; else $(CYGPATH_W) '$(srcdir)/events.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-events.Tpo" "$(DEPDIR)/ptlrpc-events.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-events.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='events.c' object='ptlrpc-events.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-events.Po' tmpdepfile='$(DEPDIR)/ptlrpc-events.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-events.obj `if test -f 'events.c'; then $(CYGPATH_W) 'events.c'; else $(CYGPATH_W) '$(srcdir)/events.c'; fi`
+-
+-ptlrpc-import.o: import.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-import.o -MD -MP -MF "$(DEPDIR)/ptlrpc-import.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-import.o `test -f 'import.c' || echo '$(srcdir)/'`import.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-import.Tpo" "$(DEPDIR)/ptlrpc-import.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-import.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='import.c' object='ptlrpc-import.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-import.Po' tmpdepfile='$(DEPDIR)/ptlrpc-import.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-import.o `test -f 'import.c' || echo '$(srcdir)/'`import.c
+-
+-ptlrpc-import.obj: import.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-import.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-import.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-import.obj `if test -f 'import.c'; then $(CYGPATH_W) 'import.c'; else $(CYGPATH_W) '$(srcdir)/import.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-import.Tpo" "$(DEPDIR)/ptlrpc-import.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-import.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='import.c' object='ptlrpc-import.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-import.Po' tmpdepfile='$(DEPDIR)/ptlrpc-import.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-import.obj `if test -f 'import.c'; then $(CYGPATH_W) 'import.c'; else $(CYGPATH_W) '$(srcdir)/import.c'; fi`
+-
+-ptlrpc-llog_client.o: llog_client.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-llog_client.o -MD -MP -MF "$(DEPDIR)/ptlrpc-llog_client.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-llog_client.o `test -f 'llog_client.c' || echo '$(srcdir)/'`llog_client.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-llog_client.Tpo" "$(DEPDIR)/ptlrpc-llog_client.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-llog_client.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_client.c' object='ptlrpc-llog_client.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-llog_client.Po' tmpdepfile='$(DEPDIR)/ptlrpc-llog_client.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-llog_client.o `test -f 'llog_client.c' || echo '$(srcdir)/'`llog_client.c
+-
+-ptlrpc-llog_client.obj: llog_client.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-llog_client.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-llog_client.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-llog_client.obj `if test -f 'llog_client.c'; then $(CYGPATH_W) 'llog_client.c'; else $(CYGPATH_W) '$(srcdir)/llog_client.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-llog_client.Tpo" "$(DEPDIR)/ptlrpc-llog_client.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-llog_client.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_client.c' object='ptlrpc-llog_client.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-llog_client.Po' tmpdepfile='$(DEPDIR)/ptlrpc-llog_client.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-llog_client.obj `if test -f 'llog_client.c'; then $(CYGPATH_W) 'llog_client.c'; else $(CYGPATH_W) '$(srcdir)/llog_client.c'; fi`
+-
+-ptlrpc-llog_net.o: llog_net.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-llog_net.o -MD -MP -MF "$(DEPDIR)/ptlrpc-llog_net.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-llog_net.o `test -f 'llog_net.c' || echo '$(srcdir)/'`llog_net.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-llog_net.Tpo" "$(DEPDIR)/ptlrpc-llog_net.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-llog_net.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_net.c' object='ptlrpc-llog_net.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-llog_net.Po' tmpdepfile='$(DEPDIR)/ptlrpc-llog_net.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-llog_net.o `test -f 'llog_net.c' || echo '$(srcdir)/'`llog_net.c
+-
+-ptlrpc-llog_net.obj: llog_net.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-llog_net.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-llog_net.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-llog_net.obj `if test -f 'llog_net.c'; then $(CYGPATH_W) 'llog_net.c'; else $(CYGPATH_W) '$(srcdir)/llog_net.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-llog_net.Tpo" "$(DEPDIR)/ptlrpc-llog_net.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-llog_net.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_net.c' object='ptlrpc-llog_net.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-llog_net.Po' tmpdepfile='$(DEPDIR)/ptlrpc-llog_net.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-llog_net.obj `if test -f 'llog_net.c'; then $(CYGPATH_W) 'llog_net.c'; else $(CYGPATH_W) '$(srcdir)/llog_net.c'; fi`
+-
+-ptlrpc-llog_server.o: llog_server.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-llog_server.o -MD -MP -MF "$(DEPDIR)/ptlrpc-llog_server.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-llog_server.o `test -f 'llog_server.c' || echo '$(srcdir)/'`llog_server.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-llog_server.Tpo" "$(DEPDIR)/ptlrpc-llog_server.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-llog_server.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_server.c' object='ptlrpc-llog_server.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-llog_server.Po' tmpdepfile='$(DEPDIR)/ptlrpc-llog_server.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-llog_server.o `test -f 'llog_server.c' || echo '$(srcdir)/'`llog_server.c
+-
+-ptlrpc-llog_server.obj: llog_server.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-llog_server.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-llog_server.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-llog_server.obj `if test -f 'llog_server.c'; then $(CYGPATH_W) 'llog_server.c'; else $(CYGPATH_W) '$(srcdir)/llog_server.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-llog_server.Tpo" "$(DEPDIR)/ptlrpc-llog_server.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-llog_server.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='llog_server.c' object='ptlrpc-llog_server.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-llog_server.Po' tmpdepfile='$(DEPDIR)/ptlrpc-llog_server.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-llog_server.obj `if test -f 'llog_server.c'; then $(CYGPATH_W) 'llog_server.c'; else $(CYGPATH_W) '$(srcdir)/llog_server.c'; fi`
+-
+-ptlrpc-lproc_ptlrpc.o: lproc_ptlrpc.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-lproc_ptlrpc.o -MD -MP -MF "$(DEPDIR)/ptlrpc-lproc_ptlrpc.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-lproc_ptlrpc.o `test -f 'lproc_ptlrpc.c' || echo '$(srcdir)/'`lproc_ptlrpc.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-lproc_ptlrpc.Tpo" "$(DEPDIR)/ptlrpc-lproc_ptlrpc.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-lproc_ptlrpc.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lproc_ptlrpc.c' object='ptlrpc-lproc_ptlrpc.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-lproc_ptlrpc.Po' tmpdepfile='$(DEPDIR)/ptlrpc-lproc_ptlrpc.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-lproc_ptlrpc.o `test -f 'lproc_ptlrpc.c' || echo '$(srcdir)/'`lproc_ptlrpc.c
+-
+-ptlrpc-lproc_ptlrpc.obj: lproc_ptlrpc.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-lproc_ptlrpc.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-lproc_ptlrpc.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-lproc_ptlrpc.obj `if test -f 'lproc_ptlrpc.c'; then $(CYGPATH_W) 'lproc_ptlrpc.c'; else $(CYGPATH_W) '$(srcdir)/lproc_ptlrpc.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-lproc_ptlrpc.Tpo" "$(DEPDIR)/ptlrpc-lproc_ptlrpc.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-lproc_ptlrpc.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='lproc_ptlrpc.c' object='ptlrpc-lproc_ptlrpc.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-lproc_ptlrpc.Po' tmpdepfile='$(DEPDIR)/ptlrpc-lproc_ptlrpc.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-lproc_ptlrpc.obj `if test -f 'lproc_ptlrpc.c'; then $(CYGPATH_W) 'lproc_ptlrpc.c'; else $(CYGPATH_W) '$(srcdir)/lproc_ptlrpc.c'; fi`
+-
+-ptlrpc-niobuf.o: niobuf.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-niobuf.o -MD -MP -MF "$(DEPDIR)/ptlrpc-niobuf.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-niobuf.o `test -f 'niobuf.c' || echo '$(srcdir)/'`niobuf.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-niobuf.Tpo" "$(DEPDIR)/ptlrpc-niobuf.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-niobuf.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='niobuf.c' object='ptlrpc-niobuf.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-niobuf.Po' tmpdepfile='$(DEPDIR)/ptlrpc-niobuf.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-niobuf.o `test -f 'niobuf.c' || echo '$(srcdir)/'`niobuf.c
+-
+-ptlrpc-niobuf.obj: niobuf.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-niobuf.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-niobuf.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-niobuf.obj `if test -f 'niobuf.c'; then $(CYGPATH_W) 'niobuf.c'; else $(CYGPATH_W) '$(srcdir)/niobuf.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-niobuf.Tpo" "$(DEPDIR)/ptlrpc-niobuf.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-niobuf.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='niobuf.c' object='ptlrpc-niobuf.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-niobuf.Po' tmpdepfile='$(DEPDIR)/ptlrpc-niobuf.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-niobuf.obj `if test -f 'niobuf.c'; then $(CYGPATH_W) 'niobuf.c'; else $(CYGPATH_W) '$(srcdir)/niobuf.c'; fi`
+-
+-ptlrpc-pack_generic.o: pack_generic.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-pack_generic.o -MD -MP -MF "$(DEPDIR)/ptlrpc-pack_generic.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-pack_generic.o `test -f 'pack_generic.c' || echo '$(srcdir)/'`pack_generic.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-pack_generic.Tpo" "$(DEPDIR)/ptlrpc-pack_generic.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-pack_generic.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pack_generic.c' object='ptlrpc-pack_generic.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-pack_generic.Po' tmpdepfile='$(DEPDIR)/ptlrpc-pack_generic.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-pack_generic.o `test -f 'pack_generic.c' || echo '$(srcdir)/'`pack_generic.c
+-
+-ptlrpc-pack_generic.obj: pack_generic.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-pack_generic.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-pack_generic.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-pack_generic.obj `if test -f 'pack_generic.c'; then $(CYGPATH_W) 'pack_generic.c'; else $(CYGPATH_W) '$(srcdir)/pack_generic.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-pack_generic.Tpo" "$(DEPDIR)/ptlrpc-pack_generic.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-pack_generic.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pack_generic.c' object='ptlrpc-pack_generic.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-pack_generic.Po' tmpdepfile='$(DEPDIR)/ptlrpc-pack_generic.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-pack_generic.obj `if test -f 'pack_generic.c'; then $(CYGPATH_W) 'pack_generic.c'; else $(CYGPATH_W) '$(srcdir)/pack_generic.c'; fi`
+-
+-ptlrpc-pers.o: pers.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-pers.o -MD -MP -MF "$(DEPDIR)/ptlrpc-pers.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-pers.o `test -f 'pers.c' || echo '$(srcdir)/'`pers.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-pers.Tpo" "$(DEPDIR)/ptlrpc-pers.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-pers.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pers.c' object='ptlrpc-pers.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-pers.Po' tmpdepfile='$(DEPDIR)/ptlrpc-pers.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-pers.o `test -f 'pers.c' || echo '$(srcdir)/'`pers.c
+-
+-ptlrpc-pers.obj: pers.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-pers.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-pers.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-pers.obj `if test -f 'pers.c'; then $(CYGPATH_W) 'pers.c'; else $(CYGPATH_W) '$(srcdir)/pers.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-pers.Tpo" "$(DEPDIR)/ptlrpc-pers.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-pers.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pers.c' object='ptlrpc-pers.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-pers.Po' tmpdepfile='$(DEPDIR)/ptlrpc-pers.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-pers.obj `if test -f 'pers.c'; then $(CYGPATH_W) 'pers.c'; else $(CYGPATH_W) '$(srcdir)/pers.c'; fi`
+-
+-ptlrpc-pinger.o: pinger.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-pinger.o -MD -MP -MF "$(DEPDIR)/ptlrpc-pinger.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-pinger.o `test -f 'pinger.c' || echo '$(srcdir)/'`pinger.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-pinger.Tpo" "$(DEPDIR)/ptlrpc-pinger.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-pinger.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pinger.c' object='ptlrpc-pinger.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-pinger.Po' tmpdepfile='$(DEPDIR)/ptlrpc-pinger.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-pinger.o `test -f 'pinger.c' || echo '$(srcdir)/'`pinger.c
+-
+-ptlrpc-pinger.obj: pinger.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-pinger.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-pinger.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-pinger.obj `if test -f 'pinger.c'; then $(CYGPATH_W) 'pinger.c'; else $(CYGPATH_W) '$(srcdir)/pinger.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-pinger.Tpo" "$(DEPDIR)/ptlrpc-pinger.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-pinger.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pinger.c' object='ptlrpc-pinger.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-pinger.Po' tmpdepfile='$(DEPDIR)/ptlrpc-pinger.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-pinger.obj `if test -f 'pinger.c'; then $(CYGPATH_W) 'pinger.c'; else $(CYGPATH_W) '$(srcdir)/pinger.c'; fi`
+-
+-ptlrpc-ptlrpcd.o: ptlrpcd.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ptlrpcd.o -MD -MP -MF "$(DEPDIR)/ptlrpc-ptlrpcd.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ptlrpcd.o `test -f 'ptlrpcd.c' || echo '$(srcdir)/'`ptlrpcd.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ptlrpcd.Tpo" "$(DEPDIR)/ptlrpc-ptlrpcd.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ptlrpcd.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ptlrpcd.c' object='ptlrpc-ptlrpcd.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ptlrpcd.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ptlrpcd.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ptlrpcd.o `test -f 'ptlrpcd.c' || echo '$(srcdir)/'`ptlrpcd.c
+-
+-ptlrpc-ptlrpcd.obj: ptlrpcd.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ptlrpcd.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-ptlrpcd.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ptlrpcd.obj `if test -f 'ptlrpcd.c'; then $(CYGPATH_W) 'ptlrpcd.c'; else $(CYGPATH_W) '$(srcdir)/ptlrpcd.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ptlrpcd.Tpo" "$(DEPDIR)/ptlrpc-ptlrpcd.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ptlrpcd.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ptlrpcd.c' object='ptlrpc-ptlrpcd.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ptlrpcd.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ptlrpcd.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ptlrpcd.obj `if test -f 'ptlrpcd.c'; then $(CYGPATH_W) 'ptlrpcd.c'; else $(CYGPATH_W) '$(srcdir)/ptlrpcd.c'; fi`
+-
+-ptlrpc-recover.o: recover.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-recover.o -MD -MP -MF "$(DEPDIR)/ptlrpc-recover.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-recover.o `test -f 'recover.c' || echo '$(srcdir)/'`recover.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-recover.Tpo" "$(DEPDIR)/ptlrpc-recover.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-recover.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='recover.c' object='ptlrpc-recover.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-recover.Po' tmpdepfile='$(DEPDIR)/ptlrpc-recover.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-recover.o `test -f 'recover.c' || echo '$(srcdir)/'`recover.c
+-
+-ptlrpc-recover.obj: recover.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-recover.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-recover.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-recover.obj `if test -f 'recover.c'; then $(CYGPATH_W) 'recover.c'; else $(CYGPATH_W) '$(srcdir)/recover.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-recover.Tpo" "$(DEPDIR)/ptlrpc-recover.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-recover.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='recover.c' object='ptlrpc-recover.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-recover.Po' tmpdepfile='$(DEPDIR)/ptlrpc-recover.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-recover.obj `if test -f 'recover.c'; then $(CYGPATH_W) 'recover.c'; else $(CYGPATH_W) '$(srcdir)/recover.c'; fi`
+-
+-ptlrpc-recov_thread.o: recov_thread.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-recov_thread.o -MD -MP -MF "$(DEPDIR)/ptlrpc-recov_thread.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-recov_thread.o `test -f 'recov_thread.c' || echo '$(srcdir)/'`recov_thread.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-recov_thread.Tpo" "$(DEPDIR)/ptlrpc-recov_thread.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-recov_thread.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='recov_thread.c' object='ptlrpc-recov_thread.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-recov_thread.Po' tmpdepfile='$(DEPDIR)/ptlrpc-recov_thread.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-recov_thread.o `test -f 'recov_thread.c' || echo '$(srcdir)/'`recov_thread.c
+-
+-ptlrpc-recov_thread.obj: recov_thread.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-recov_thread.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-recov_thread.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-recov_thread.obj `if test -f 'recov_thread.c'; then $(CYGPATH_W) 'recov_thread.c'; else $(CYGPATH_W) '$(srcdir)/recov_thread.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-recov_thread.Tpo" "$(DEPDIR)/ptlrpc-recov_thread.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-recov_thread.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='recov_thread.c' object='ptlrpc-recov_thread.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-recov_thread.Po' tmpdepfile='$(DEPDIR)/ptlrpc-recov_thread.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-recov_thread.obj `if test -f 'recov_thread.c'; then $(CYGPATH_W) 'recov_thread.c'; else $(CYGPATH_W) '$(srcdir)/recov_thread.c'; fi`
+-
+-ptlrpc-service.o: service.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-service.o -MD -MP -MF "$(DEPDIR)/ptlrpc-service.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-service.o `test -f 'service.c' || echo '$(srcdir)/'`service.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-service.Tpo" "$(DEPDIR)/ptlrpc-service.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-service.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='service.c' object='ptlrpc-service.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-service.Po' tmpdepfile='$(DEPDIR)/ptlrpc-service.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-service.o `test -f 'service.c' || echo '$(srcdir)/'`service.c
+-
+-ptlrpc-service.obj: service.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-service.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-service.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-service.obj `if test -f 'service.c'; then $(CYGPATH_W) 'service.c'; else $(CYGPATH_W) '$(srcdir)/service.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-service.Tpo" "$(DEPDIR)/ptlrpc-service.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-service.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='service.c' object='ptlrpc-service.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-service.Po' tmpdepfile='$(DEPDIR)/ptlrpc-service.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-service.obj `if test -f 'service.c'; then $(CYGPATH_W) 'service.c'; else $(CYGPATH_W) '$(srcdir)/service.c'; fi`
+-
+-ptlrpc-wiretest.o: wiretest.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-wiretest.o -MD -MP -MF "$(DEPDIR)/ptlrpc-wiretest.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-wiretest.o `test -f 'wiretest.c' || echo '$(srcdir)/'`wiretest.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-wiretest.Tpo" "$(DEPDIR)/ptlrpc-wiretest.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-wiretest.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='wiretest.c' object='ptlrpc-wiretest.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-wiretest.Po' tmpdepfile='$(DEPDIR)/ptlrpc-wiretest.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-wiretest.o `test -f 'wiretest.c' || echo '$(srcdir)/'`wiretest.c
+-
+-ptlrpc-wiretest.obj: wiretest.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-wiretest.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-wiretest.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-wiretest.obj `if test -f 'wiretest.c'; then $(CYGPATH_W) 'wiretest.c'; else $(CYGPATH_W) '$(srcdir)/wiretest.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-wiretest.Tpo" "$(DEPDIR)/ptlrpc-wiretest.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-wiretest.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='wiretest.c' object='ptlrpc-wiretest.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-wiretest.Po' tmpdepfile='$(DEPDIR)/ptlrpc-wiretest.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-wiretest.obj `if test -f 'wiretest.c'; then $(CYGPATH_W) 'wiretest.c'; else $(CYGPATH_W) '$(srcdir)/wiretest.c'; fi`
+-
+-ptlrpc-l_lock.o: $(top_srcdir)/lustre/ldlm/l_lock.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-l_lock.o -MD -MP -MF "$(DEPDIR)/ptlrpc-l_lock.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-l_lock.o `test -f '$(top_srcdir)/lustre/ldlm/l_lock.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/l_lock.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-l_lock.Tpo" "$(DEPDIR)/ptlrpc-l_lock.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-l_lock.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/l_lock.c' object='ptlrpc-l_lock.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-l_lock.Po' tmpdepfile='$(DEPDIR)/ptlrpc-l_lock.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-l_lock.o `test -f '$(top_srcdir)/lustre/ldlm/l_lock.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/l_lock.c
+-
+-ptlrpc-l_lock.obj: $(top_srcdir)/lustre/ldlm/l_lock.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-l_lock.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-l_lock.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-l_lock.obj `if test -f '$(top_srcdir)/lustre/ldlm/l_lock.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/l_lock.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/l_lock.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-l_lock.Tpo" "$(DEPDIR)/ptlrpc-l_lock.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-l_lock.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/l_lock.c' object='ptlrpc-l_lock.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-l_lock.Po' tmpdepfile='$(DEPDIR)/ptlrpc-l_lock.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-l_lock.obj `if test -f '$(top_srcdir)/lustre/ldlm/l_lock.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/l_lock.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/l_lock.c'; fi`
+-
+-ptlrpc-ldlm_lock.o: $(top_srcdir)/lustre/ldlm/ldlm_lock.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_lock.o -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_lock.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_lock.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_lock.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_lock.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_lock.Tpo" "$(DEPDIR)/ptlrpc-ldlm_lock.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_lock.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_lock.c' object='ptlrpc-ldlm_lock.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_lock.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_lock.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_lock.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_lock.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_lock.c
+-
+-ptlrpc-ldlm_lock.obj: $(top_srcdir)/lustre/ldlm/ldlm_lock.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_lock.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_lock.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_lock.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_lock.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_lock.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_lock.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_lock.Tpo" "$(DEPDIR)/ptlrpc-ldlm_lock.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_lock.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_lock.c' object='ptlrpc-ldlm_lock.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_lock.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_lock.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_lock.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_lock.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_lock.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_lock.c'; fi`
+-
+-ptlrpc-interval_tree.o: $(top_srcdir)/lustre/ldlm/interval_tree.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-interval_tree.o -MD -MP -MF "$(DEPDIR)/ptlrpc-interval_tree.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-interval_tree.o `test -f '$(top_srcdir)/lustre/ldlm/interval_tree.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/interval_tree.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-interval_tree.Tpo" "$(DEPDIR)/ptlrpc-interval_tree.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-interval_tree.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/interval_tree.c' object='ptlrpc-interval_tree.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-interval_tree.Po' tmpdepfile='$(DEPDIR)/ptlrpc-interval_tree.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-interval_tree.o `test -f '$(top_srcdir)/lustre/ldlm/interval_tree.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/interval_tree.c
+-
+-ptlrpc-interval_tree.obj: $(top_srcdir)/lustre/ldlm/interval_tree.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-interval_tree.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-interval_tree.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-interval_tree.obj `if test -f '$(top_srcdir)/lustre/ldlm/interval_tree.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/interval_tree.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/interval_tree.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-interval_tree.Tpo" "$(DEPDIR)/ptlrpc-interval_tree.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-interval_tree.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/interval_tree.c' object='ptlrpc-interval_tree.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-interval_tree.Po' tmpdepfile='$(DEPDIR)/ptlrpc-interval_tree.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-interval_tree.obj `if test -f '$(top_srcdir)/lustre/ldlm/interval_tree.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/interval_tree.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/interval_tree.c'; fi`
+-
+-ptlrpc-ldlm_resource.o: $(top_srcdir)/lustre/ldlm/ldlm_resource.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_resource.o -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_resource.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_resource.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_resource.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_resource.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_resource.Tpo" "$(DEPDIR)/ptlrpc-ldlm_resource.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_resource.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_resource.c' object='ptlrpc-ldlm_resource.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_resource.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_resource.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_resource.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_resource.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_resource.c
+-
+-ptlrpc-ldlm_resource.obj: $(top_srcdir)/lustre/ldlm/ldlm_resource.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_resource.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_resource.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_resource.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_resource.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_resource.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_resource.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_resource.Tpo" "$(DEPDIR)/ptlrpc-ldlm_resource.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_resource.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_resource.c' object='ptlrpc-ldlm_resource.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_resource.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_resource.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_resource.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_resource.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_resource.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_resource.c'; fi`
+-
+-ptlrpc-ldlm_lib.o: $(top_srcdir)/lustre/ldlm/ldlm_lib.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_lib.o -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_lib.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_lib.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_lib.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_lib.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_lib.Tpo" "$(DEPDIR)/ptlrpc-ldlm_lib.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_lib.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_lib.c' object='ptlrpc-ldlm_lib.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_lib.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_lib.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_lib.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_lib.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_lib.c
+-
+-ptlrpc-ldlm_lib.obj: $(top_srcdir)/lustre/ldlm/ldlm_lib.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_lib.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_lib.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_lib.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_lib.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_lib.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_lib.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_lib.Tpo" "$(DEPDIR)/ptlrpc-ldlm_lib.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_lib.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_lib.c' object='ptlrpc-ldlm_lib.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_lib.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_lib.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_lib.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_lib.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_lib.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_lib.c'; fi`
+-
+-ptlrpc-ldlm_plain.o: $(top_srcdir)/lustre/ldlm/ldlm_plain.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_plain.o -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_plain.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_plain.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_plain.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_plain.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_plain.Tpo" "$(DEPDIR)/ptlrpc-ldlm_plain.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_plain.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_plain.c' object='ptlrpc-ldlm_plain.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_plain.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_plain.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_plain.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_plain.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_plain.c
+-
+-ptlrpc-ldlm_plain.obj: $(top_srcdir)/lustre/ldlm/ldlm_plain.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_plain.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_plain.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_plain.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_plain.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_plain.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_plain.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_plain.Tpo" "$(DEPDIR)/ptlrpc-ldlm_plain.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_plain.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_plain.c' object='ptlrpc-ldlm_plain.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_plain.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_plain.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_plain.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_plain.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_plain.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_plain.c'; fi`
+-
+-ptlrpc-ldlm_extent.o: $(top_srcdir)/lustre/ldlm/ldlm_extent.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_extent.o -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_extent.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_extent.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_extent.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_extent.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_extent.Tpo" "$(DEPDIR)/ptlrpc-ldlm_extent.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_extent.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_extent.c' object='ptlrpc-ldlm_extent.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_extent.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_extent.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_extent.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_extent.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_extent.c
+-
+-ptlrpc-ldlm_extent.obj: $(top_srcdir)/lustre/ldlm/ldlm_extent.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_extent.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_extent.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_extent.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_extent.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_extent.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_extent.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_extent.Tpo" "$(DEPDIR)/ptlrpc-ldlm_extent.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_extent.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_extent.c' object='ptlrpc-ldlm_extent.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_extent.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_extent.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_extent.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_extent.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_extent.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_extent.c'; fi`
+-
+-ptlrpc-ldlm_request.o: $(top_srcdir)/lustre/ldlm/ldlm_request.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_request.o -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_request.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_request.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_request.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_request.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_request.Tpo" "$(DEPDIR)/ptlrpc-ldlm_request.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_request.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_request.c' object='ptlrpc-ldlm_request.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_request.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_request.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_request.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_request.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_request.c
+-
+-ptlrpc-ldlm_request.obj: $(top_srcdir)/lustre/ldlm/ldlm_request.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_request.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_request.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_request.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_request.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_request.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_request.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_request.Tpo" "$(DEPDIR)/ptlrpc-ldlm_request.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_request.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_request.c' object='ptlrpc-ldlm_request.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_request.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_request.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_request.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_request.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_request.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_request.c'; fi`
+-
+-ptlrpc-ldlm_lockd.o: $(top_srcdir)/lustre/ldlm/ldlm_lockd.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_lockd.o -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_lockd.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_lockd.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_lockd.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_lockd.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_lockd.Tpo" "$(DEPDIR)/ptlrpc-ldlm_lockd.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_lockd.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_lockd.c' object='ptlrpc-ldlm_lockd.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_lockd.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_lockd.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_lockd.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_lockd.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_lockd.c
+-
+-ptlrpc-ldlm_lockd.obj: $(top_srcdir)/lustre/ldlm/ldlm_lockd.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_lockd.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_lockd.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_lockd.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_lockd.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_lockd.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_lockd.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_lockd.Tpo" "$(DEPDIR)/ptlrpc-ldlm_lockd.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_lockd.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_lockd.c' object='ptlrpc-ldlm_lockd.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_lockd.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_lockd.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_lockd.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_lockd.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_lockd.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_lockd.c'; fi`
+-
+-ptlrpc-ldlm_inodebits.o: $(top_srcdir)/lustre/ldlm/ldlm_inodebits.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_inodebits.o -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_inodebits.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_inodebits.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_inodebits.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_inodebits.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_inodebits.Tpo" "$(DEPDIR)/ptlrpc-ldlm_inodebits.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_inodebits.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_inodebits.c' object='ptlrpc-ldlm_inodebits.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_inodebits.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_inodebits.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_inodebits.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_inodebits.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_inodebits.c
+-
+-ptlrpc-ldlm_inodebits.obj: $(top_srcdir)/lustre/ldlm/ldlm_inodebits.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_inodebits.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_inodebits.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_inodebits.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_inodebits.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_inodebits.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_inodebits.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_inodebits.Tpo" "$(DEPDIR)/ptlrpc-ldlm_inodebits.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_inodebits.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_inodebits.c' object='ptlrpc-ldlm_inodebits.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_inodebits.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_inodebits.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_inodebits.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_inodebits.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_inodebits.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_inodebits.c'; fi`
+-
+-ptlrpc-ldlm_flock.o: $(top_srcdir)/lustre/ldlm/ldlm_flock.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_flock.o -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_flock.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_flock.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_flock.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_flock.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_flock.Tpo" "$(DEPDIR)/ptlrpc-ldlm_flock.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_flock.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_flock.c' object='ptlrpc-ldlm_flock.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_flock.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_flock.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_flock.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_flock.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_flock.c
+-
+-ptlrpc-ldlm_flock.obj: $(top_srcdir)/lustre/ldlm/ldlm_flock.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_flock.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_flock.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_flock.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_flock.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_flock.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_flock.c'; fi`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_flock.Tpo" "$(DEPDIR)/ptlrpc-ldlm_flock.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_flock.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_flock.c' object='ptlrpc-ldlm_flock.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_flock.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_flock.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_flock.obj `if test -f '$(top_srcdir)/lustre/ldlm/ldlm_flock.c'; then $(CYGPATH_W) '$(top_srcdir)/lustre/ldlm/ldlm_flock.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/lustre/ldlm/ldlm_flock.c'; fi`
+-
+-ptlrpc-ldlm_pool.o: $(top_srcdir)/lustre/ldlm/ldlm_pool.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_pool.o -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_pool.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-ldlm_pool.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_pool.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_pool.c; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_pool.Tpo" "$(DEPDIR)/ptlrpc-ldlm_pool.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_pool.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_pool.c' object='ptlrpc-ldlm_pool.o' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_pool.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_pool.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-ldlm_pool.o `test -f '$(top_srcdir)/lustre/ldlm/ldlm_pool.c' || echo '$(srcdir)/'`$(top_srcdir)/lustre/ldlm/ldlm_pool.c
+-
+-ptlrpc-ldlm_pool.obj: $(top_srcdir)/lustre/ldlm/ldlm_pool.c
+- at am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -MT ptlrpc-ldlm_pool.obj -MD -MP -MF "$(DEPDIR)/ptlrpc-ldlm_pool.Tpo" \
+- at am__fastdepCC_TRUE@	  -c -o ptlrpc-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`; \
+- at am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ptlrpc-ldlm_pool.Tpo" "$(DEPDIR)/ptlrpc-ldlm_pool.Po"; \
+- at am__fastdepCC_TRUE@	else rm -f "$(DEPDIR)/ptlrpc-ldlm_pool.Tpo"; exit 1; \
+- at am__fastdepCC_TRUE@	fi
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$(top_srcdir)/lustre/ldlm/ldlm_pool.c' object='ptlrpc-ldlm_pool.obj' libtool=no @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	depfile='$(DEPDIR)/ptlrpc-ldlm_pool.Po' tmpdepfile='$(DEPDIR)/ptlrpc-ldlm_pool.TPo' @AMDEPBACKSLASH@
+- at AMDEP_TRUE@@am__fastdepCC_FALSE@	$(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ptlrpc_CFLAGS) $(CFLAGS) -c -o ptlrpc-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`
+ uninstall-info-am:
+ modulefsDATA_INSTALL = $(INSTALL_DATA)
+ install-modulefsDATA: $(modulefs_DATA)
+@@ -2042,24 +1209,6 @@
+ 	  echo " rm -f $(DESTDIR)$(modulefsdir)/$$f"; \
+ 	  rm -f $(DESTDIR)$(modulefsdir)/$$f; \
+ 	done
+-plistDATA_INSTALL = $(INSTALL_DATA)
+-install-plistDATA: $(plist_DATA)
+-	@$(NORMAL_INSTALL)
+-	$(mkinstalldirs) $(DESTDIR)$(plistdir)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f"; \
+-	  $(plistDATA_INSTALL) $$d$$p $(DESTDIR)$(plistdir)/$$f; \
+-	done
+-
+-uninstall-plistDATA:
+-	@$(NORMAL_UNINSTALL)
+-	@list='$(plist_DATA)'; for p in $$list; do \
+-	  f="`echo $$p | sed -e 's|^.*/||'`"; \
+-	  echo " rm -f $(DESTDIR)$(plistdir)/$$f"; \
+-	  rm -f $(DESTDIR)$(plistdir)/$$f; \
+-	done
+ 
+ ETAGS = etags
+ ETAGSFLAGS =
+@@ -2148,10 +1297,10 @@
+ 	done
+ check-am: all-am
+ check: check-am
+-all-am: autoMakefile $(LIBRARIES) $(PROGRAMS) $(DATA)
++all-am: autoMakefile $(LIBRARIES) $(DATA)
+ 
+ installdirs:
+-	$(mkinstalldirs) $(DESTDIR)$(macosdir) $(DESTDIR)$(modulefsdir) $(DESTDIR)$(plistdir)
++	$(mkinstalldirs) $(DESTDIR)$(modulefsdir)
+ install: install-am
+ install-exec: install-exec-am
+ install-data: install-data-am
+@@ -2179,8 +1328,7 @@
+ 	@echo "it deletes files that may require special tools to rebuild."
+ clean: clean-am
+ 
+-clean-am: clean-generic clean-macosPROGRAMS clean-noinstLIBRARIES \
+-	mostlyclean-am
++clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
+ 
+ distclean: distclean-am
+ 	-rm -rf ./$(DEPDIR)
+@@ -2196,8 +1344,7 @@
+ 
+ info-am:
+ 
+-install-data-am: install-macosPROGRAMS install-modulefsDATA \
+-	install-plistDATA
++install-data-am: install-modulefsDATA
+ 	@$(NORMAL_INSTALL)
+ 	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
+ 
+@@ -2226,23 +1373,54 @@
+ 
+ ps-am:
+ 
+-uninstall-am: uninstall-info-am uninstall-macosPROGRAMS \
+-	uninstall-modulefsDATA uninstall-plistDATA
++uninstall-am: uninstall-info-am uninstall-modulefsDATA
+ 
+ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+-	clean-macosPROGRAMS clean-noinstLIBRARIES ctags distclean \
+-	distclean-compile distclean-generic distclean-tags distdir dvi \
+-	dvi-am info info-am install install-am install-data \
+-	install-data-am install-exec install-exec-am install-info \
+-	install-info-am install-macosPROGRAMS install-man \
+-	install-modulefsDATA install-plistDATA install-strip \
+-	installcheck installcheck-am installdirs maintainer-clean \
++	clean-noinstLIBRARIES ctags distclean distclean-compile \
++	distclean-generic distclean-tags distdir dvi dvi-am info \
++	info-am install install-am install-data install-data-am \
++	install-exec install-exec-am install-info install-info-am \
++	install-man install-modulefsDATA install-strip installcheck \
++	installcheck-am installdirs maintainer-clean \
+ 	maintainer-clean-generic mostlyclean mostlyclean-compile \
+ 	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
+-	uninstall-am uninstall-info-am uninstall-macosPROGRAMS \
+-	uninstall-modulefsDATA uninstall-plistDATA
++	uninstall-am uninstall-info-am uninstall-modulefsDATA
+ 
+ 
++#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
++
+ 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 lustre-1.6.7.2.orig/lustre/quota/autoMakefile.in lustre-1.6.7.2/lustre/quota/autoMakefile.in
+--- lustre-1.6.7.2.orig/lustre/quota/autoMakefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/quota/autoMakefile.in	2009-08-10 10:05:44.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -273,8 +272,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -288,8 +285,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -297,26 +296,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/scripts/Makefile.in lustre-1.6.7.2/lustre/scripts/Makefile.in
+--- lustre-1.6.7.2.orig/lustre/scripts/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/scripts/Makefile.in	2009-08-10 10:05:44.000000000 +0200
+@@ -155,12 +155,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -272,8 +271,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -287,8 +284,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -296,26 +295,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/tests/Makefile.in lustre-1.6.7.2/lustre/tests/Makefile.in
+--- lustre-1.6.7.2.orig/lustre/tests/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/tests/Makefile.in	2009-08-10 10:05:44.000000000 +0200
+@@ -120,12 +120,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -237,8 +236,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -252,8 +249,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -261,26 +260,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/lustre/utils/Makefile.in lustre-1.6.7.2/lustre/utils/Makefile.in
+--- lustre-1.6.7.2.orig/lustre/utils/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/lustre/utils/Makefile.in	2009-08-10 10:05:45.000000000 +0200
+@@ -122,12 +122,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -239,8 +238,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -254,8 +251,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -263,26 +262,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/snmp/autoconf/Makefile.in lustre-1.6.7.2/snmp/autoconf/Makefile.in
+--- lustre-1.6.7.2.orig/snmp/autoconf/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/snmp/autoconf/Makefile.in	2009-08-10 10:05:45.000000000 +0200
+@@ -119,12 +119,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -236,8 +235,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -251,8 +248,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -260,26 +259,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
+diff -Nurwd lustre-1.6.7.2.orig/snmp/Makefile.in lustre-1.6.7.2/snmp/Makefile.in
+--- lustre-1.6.7.2.orig/snmp/Makefile.in	2009-08-10 10:03:31.000000000 +0200
++++ lustre-1.6.7.2/snmp/Makefile.in	2009-08-10 10:05:45.000000000 +0200
+@@ -119,12 +119,11 @@
+ EXT2FS_DEVEL_FALSE = @EXT2FS_DEVEL_FALSE@
+ EXT2FS_DEVEL_TRUE = @EXT2FS_DEVEL_TRUE@
+ EXTRA_KCFLAGS = @EXTRA_KCFLAGS@
+-EXTRA_KLDFLAGS = @EXTRA_KLDFLAGS@
+-EXTRA_KLIBS = @EXTRA_KLIBS@
+ EXTRA_LNET_INCLUDE = @EXTRA_LNET_INCLUDE@
+ GMCPPFLAGS = @GMCPPFLAGS@
+ GMLIBS = @GMLIBS@
+ GMLND = @GMLND@
++GREP = @GREP@
+ IIBCPPFLAGS = @IIBCPPFLAGS@
+ IIBLND = @IIBLND@
+ INCLUDE_RULES = @INCLUDE_RULES@
+@@ -236,8 +235,6 @@
+ ZLIB = @ZLIB@
+ ac_configure_args = @ac_configure_args@
+ ac_ct_CC = @ac_ct_CC@
+-ac_ct_RANLIB = @ac_ct_RANLIB@
+-ac_ct_STRIP = @ac_ct_STRIP@
+ agentdir = @agentdir@
+ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
+ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
+@@ -251,8 +248,10 @@
+ build_os = @build_os@
+ build_vendor = @build_vendor@
+ datadir = @datadir@
++datarootdir = @datarootdir@
+ demodir = @demodir@
+ docdir = @docdir@
++dvidir = @dvidir@
+ enable_uoss = @enable_uoss@
+ exec_prefix = @exec_prefix@
+ host = @host@
+@@ -260,26 +259,27 @@
+ host_cpu = @host_cpu@
+ host_os = @host_os@
+ host_vendor = @host_vendor@
++htmldir = @htmldir@
+ includedir = @includedir@
+ infodir = @infodir@
+ install_sh = @install_sh@
+-kextdir = @kextdir@
+ lb_target_os = @lb_target_os@
+ libdir = @libdir@
+ libexecdir = @libexecdir@
+ linux25 = @linux25@
++localedir = @localedir@
+ localstatedir = @localstatedir@
+-macosdir = @macosdir@
+ mandir = @mandir@
+ mibdir = @mibdir@
+ moduledir = @moduledir@
+ modulefsdir = @modulefsdir@
+ modulenetdir = @modulenetdir@
+ oldincludedir = @oldincludedir@
++pdfdir = @pdfdir@
+ pkgexampledir = @pkgexampledir@
+-plistdir = @plistdir@
+ prefix = @prefix@
+ program_transform_name = @program_transform_name@
++psdir = @psdir@
+ rootsbindir = @rootsbindir@
+ sbindir = @sbindir@
+ sharedstatedir = @sharedstatedir@
diff --git a/debian/rules b/debian/rules
index 0f612df..144e55c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -46,13 +46,13 @@ BUILDDIR=debian/build
 
 autogen: autogen-stamp
 autogen-stamp: patch-stamp
-	cp /usr/share/misc/config.sub config.sub
-	cp /usr/share/misc/config.sub libsysio/config.sub
-	cp /usr/share/misc/config.sub ldiskfs/config.sub
-	cp /usr/share/misc/config.guess config.guess
-	cp /usr/share/misc/config.guess libsysio/config.guess
-	cp /usr/share/misc/config.guess ldiskfs/config.guess
-	sh ./autogen.sh
+	#cp /usr/share/misc/config.sub config.sub
+	#cp /usr/share/misc/config.sub libsysio/config.sub
+	#cp /usr/share/misc/config.sub ldiskfs/config.sub
+	#cp /usr/share/misc/config.guess config.guess
+	#cp /usr/share/misc/config.guess libsysio/config.guess
+	#cp /usr/share/misc/config.guess ldiskfs/config.guess
+	#sh ./autogen.sh
 	touch $@
 
 configure: configure-stamp

-- 
Lustre Debian Packaging 



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