~ubuntu-branches/ubuntu/hardy/nfs-utils/hardy-proposed

« back to all changes in this revision

Viewing changes to configure

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2007-03-07 11:46:25 UTC
  • mfrom: (1.2.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20070307114625-pgjnrd4mvl76bolx
Tags: 1:1.0.12-4
Bump the versioned dependency on libblkid1 to require at least version
1.39+1.40-WIP-2006.11.14+dfsg-2, which ensures that we get a version
that doesn't make mountd leak memory on every mount.
(Closes: #413429)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /bin/sh
2
2
# Guess values for system-dependent variables and create Makefiles.
3
 
# Generated by GNU Autoconf 2.61 for linux nfs-utils 1.0.10.
 
3
# Generated by GNU Autoconf 2.61 for linux nfs-utils 1.0.11.
4
4
#
5
5
# Report bugs to <nfs@lists.sf.net>.
6
6
#
728
728
# Identity of this package.
729
729
PACKAGE_NAME='linux nfs-utils'
730
730
PACKAGE_TARNAME='nfs-utils'
731
 
PACKAGE_VERSION='1.0.10'
732
 
PACKAGE_STRING='linux nfs-utils 1.0.10'
 
731
PACKAGE_VERSION='1.0.11'
 
732
PACKAGE_STRING='linux nfs-utils 1.0.11'
733
733
PACKAGE_BUGREPORT='nfs@lists.sf.net'
734
734
 
735
735
ac_unique_file="tools/getiversion/getiversion.c"
819
819
INSTALL_PROGRAM
820
820
INSTALL_SCRIPT
821
821
INSTALL_DATA
 
822
am__isrc
822
823
CYGPATH_W
823
824
PACKAGE
824
825
VERSION
837
838
AMTAR
838
839
am__tar
839
840
am__untar
 
841
MAINTAINER_MODE_TRUE
 
842
MAINTAINER_MODE_FALSE
 
843
MAINT
840
844
RELEASE
841
845
statedir
842
846
statduser
904
908
LIBSOCKET
905
909
LIBCRYPT
906
910
LIBBSD
 
911
LIBBLKID
907
912
KRBDIR
908
913
KRBLIBS
909
914
KRBCFLAGS
1442
1447
  # Omit some internal or obsolete options to make the list less imposing.
1443
1448
  # This message is too long to be a string in the A/UX 3.1 sh.
1444
1449
  cat <<_ACEOF
1445
 
\`configure' configures linux nfs-utils 1.0.10 to adapt to many kinds of systems.
 
1450
\`configure' configures linux nfs-utils 1.0.11 to adapt to many kinds of systems.
1446
1451
 
1447
1452
Usage: $0 [OPTION]... [VAR=VALUE]...
1448
1453
 
1512
1517
 
1513
1518
if test -n "$ac_init_help"; then
1514
1519
  case $ac_init_help in
1515
 
     short | recursive ) echo "Configuration of linux nfs-utils 1.0.10:";;
 
1520
     short | recursive ) echo "Configuration of linux nfs-utils 1.0.11:";;
1516
1521
   esac
1517
1522
  cat <<\_ACEOF
1518
1523
 
1519
1524
Optional Features:
1520
1525
  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
1521
1526
  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
 
1527
  --enable-maintainer-mode  enable make rules and dependencies not useful
 
1528
                          (and sometimes confusing) to the casual installer
1522
1529
  --enable-nfsv3          enable support for NFSv3 [default=yes]
1523
1530
  --enable-nfsv4          enable support for NFSv4 [default=yes]
1524
1531
  --enable-gss            enable support for rpcsec_gss [default=yes]
1637
1644
test -n "$ac_init_help" && exit $ac_status
1638
1645
if $ac_init_version; then
1639
1646
  cat <<\_ACEOF
1640
 
linux nfs-utils configure 1.0.10
 
1647
linux nfs-utils configure 1.0.11
1641
1648
generated by GNU Autoconf 2.61
1642
1649
 
1643
1650
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
1651
1658
This file contains any messages produced by compilers while
1652
1659
running configure, to aid debugging if configure makes a mistake.
1653
1660
 
1654
 
It was created by linux nfs-utils $as_me 1.0.10, which was
 
1661
It was created by linux nfs-utils $as_me 1.0.11, which was
1655
1662
generated by GNU Autoconf 2.61.  Invocation command line was
1656
1663
 
1657
1664
  $ $0 $@
2120
2127
 
2121
2128
 
2122
2129
 
2123
 
am__api_version="1.9"
 
2130
am__api_version='1.10'
 
2131
 
2124
2132
# Find a good install program.  We prefer a C program (faster),
2125
2133
# so one script is as good as another.  But avoid the broken or
2126
2134
# incompatible versions:
2272
2280
echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
2273
2281
fi
2274
2282
 
2275
 
if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
2276
 
  # We used to keeping the `.' as first argument, in order to
2277
 
  # allow $(mkdir_p) to be used without argument.  As in
2278
 
  #   $(mkdir_p) $(somedir)
2279
 
  # where $(somedir) is conditionally defined.  However this is wrong
2280
 
  # for two reasons:
2281
 
  #  1. if the package is installed by a user who cannot write `.'
2282
 
  #     make install will fail,
2283
 
  #  2. the above comment should most certainly read
2284
 
  #     $(mkdir_p) $(DESTDIR)$(somedir)
2285
 
  #     so it does not work when $(somedir) is undefined and
2286
 
  #     $(DESTDIR) is not.
2287
 
  #  To support the latter case, we have to write
2288
 
  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
2289
 
  #  so the `.' trick is pointless.
2290
 
  mkdir_p='mkdir -p --'
 
2283
{ echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5
 
2284
echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; }
 
2285
if test -z "$MKDIR_P"; then
 
2286
  if test "${ac_cv_path_mkdir+set}" = set; then
 
2287
  echo $ECHO_N "(cached) $ECHO_C" >&6
2291
2288
else
2292
 
  # On NextStep and OpenStep, the `mkdir' command does not
2293
 
  # recognize any option.  It will interpret all options as
2294
 
  # directories to create, and then abort because `.' already
2295
 
  # exists.
2296
 
  for d in ./-p ./--version;
2297
 
  do
2298
 
    test -d $d && rmdir $d
2299
 
  done
2300
 
  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
2301
 
  if test -f "$ac_aux_dir/mkinstalldirs"; then
2302
 
    mkdir_p='$(mkinstalldirs)'
 
2289
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2290
for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
 
2291
do
 
2292
  IFS=$as_save_IFS
 
2293
  test -z "$as_dir" && as_dir=.
 
2294
  for ac_prog in mkdir gmkdir; do
 
2295
         for ac_exec_ext in '' $ac_executable_extensions; do
 
2296
           { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
 
2297
           case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
 
2298
             'mkdir (GNU coreutils) '* | \
 
2299
             'mkdir (coreutils) '* | \
 
2300
             'mkdir (fileutils) '4.1*)
 
2301
               ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
 
2302
               break 3;;
 
2303
           esac
 
2304
         done
 
2305
       done
 
2306
done
 
2307
IFS=$as_save_IFS
 
2308
 
 
2309
fi
 
2310
 
 
2311
  if test "${ac_cv_path_mkdir+set}" = set; then
 
2312
    MKDIR_P="$ac_cv_path_mkdir -p"
2303
2313
  else
2304
 
    mkdir_p='$(install_sh) -d'
 
2314
    # As a last resort, use the slow shell script.  Don't cache a
 
2315
    # value for MKDIR_P within a source directory, because that will
 
2316
    # break other packages using the cache if that directory is
 
2317
    # removed, or if the value is a relative name.
 
2318
    test -d ./--version && rmdir ./--version
 
2319
    MKDIR_P="$ac_install_sh -d"
2305
2320
  fi
2306
2321
fi
 
2322
{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5
 
2323
echo "${ECHO_T}$MKDIR_P" >&6; }
 
2324
 
 
2325
mkdir_p="$MKDIR_P"
 
2326
case $mkdir_p in
 
2327
  [\\/$]* | ?:[\\/]*) ;;
 
2328
  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
 
2329
esac
2307
2330
 
2308
2331
for ac_prog in gawk mawk nawk awk
2309
2332
do
2386
2409
fi
2387
2410
rmdir .tst 2>/dev/null
2388
2411
 
2389
 
# test to see if srcdir already configured
2390
 
if test "`cd $srcdir && pwd`" != "`pwd`" &&
2391
 
   test -f $srcdir/config.status; then
2392
 
  { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
 
2412
if test "`cd $srcdir && pwd`" != "`pwd`"; then
 
2413
  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
 
2414
  # is not polluted with repeated "-I."
 
2415
  am__isrc=' -I$(srcdir)'
 
2416
  # test to see if srcdir already configured
 
2417
  if test -f $srcdir/config.status; then
 
2418
    { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
2393
2419
echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
2394
2420
   { (exit 1); exit 1; }; }
 
2421
  fi
2395
2422
fi
2396
2423
 
2397
2424
# test whether we have cygpath
2406
2433
 
2407
2434
# Define the identity of the package.
2408
2435
 PACKAGE='nfs-utils'
2409
 
 VERSION='1.0.10'
 
2436
 VERSION='1.0.11'
2410
2437
 
2411
2438
 
2412
2439
cat >>confdefs.h <<_ACEOF
2434
2461
 
2435
2462
MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
2436
2463
 
2437
 
install_sh=${install_sh-"$am_aux_dir/install-sh"}
 
2464
install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
2438
2465
 
2439
2466
# Installed binaries are usually stripped using `strip' when the user
2440
2467
# run `make install-strip'.  However `strip' might not be the right
2538
2565
fi
2539
2566
 
2540
2567
fi
2541
 
INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
 
2568
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2542
2569
 
2543
2570
# We need awk for the "check" target.  The system "awk" is bad on
2544
2571
# some platforms.
2554
2581
 
2555
2582
 
2556
2583
 
 
2584
{ echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
 
2585
echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6; }
 
2586
    # Check whether --enable-maintainer-mode was given.
 
2587
if test "${enable_maintainer_mode+set}" = set; then
 
2588
  enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval
 
2589
else
 
2590
  USE_MAINTAINER_MODE=no
 
2591
fi
 
2592
 
 
2593
  { echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
 
2594
echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6; }
 
2595
   if test $USE_MAINTAINER_MODE = yes; then
 
2596
  MAINTAINER_MODE_TRUE=
 
2597
  MAINTAINER_MODE_FALSE='#'
 
2598
else
 
2599
  MAINTAINER_MODE_TRUE='#'
 
2600
  MAINTAINER_MODE_FALSE=
 
2601
fi
 
2602
 
 
2603
  MAINT=$MAINTAINER_MODE_TRUE
 
2604
 
 
2605
 
2557
2606
 
2558
2607
 
2559
2608
# Check whether --with-release was given.
2627
2676
        fi
2628
2677
 
2629
2678
 
2630
 
 
2631
 
 
2632
 
if test "$enable_nfsv4" = "yes"; then
 
2679
         if test "$enable_nfsv4" = "yes"; then
2633
2680
  CONFIG_NFSV4_TRUE=
2634
2681
  CONFIG_NFSV4_FALSE='#'
2635
2682
else
2660
2707
 
2661
2708
 
2662
2709
 
2663
 
 
2664
 
 
2665
 
if test "$enable_gss" = "yes"; then
 
2710
         if test "$enable_gss" = "yes"; then
2666
2711
  CONFIG_GSS_TRUE=
2667
2712
  CONFIG_GSS_FALSE='#'
2668
2713
else
2705
2750
        else
2706
2751
                RQUOTAD=
2707
2752
        fi
2708
 
 
2709
 
 
2710
 
if test "$enable_rquotad" = "yes"; then
 
2753
         if test "$enable_rquotad" = "yes"; then
2711
2754
  CONFIG_RQUOTAD_TRUE=
2712
2755
  CONFIG_RQUOTAD_FALSE='#'
2713
2756
else
2723
2766
  enable_mount=no
2724
2767
fi
2725
2768
 
2726
 
 
2727
 
 
2728
 
if test "$enable_mount" = "yes"; then
 
2769
         if test "$enable_mount" = "yes"; then
2729
2770
  CONFIG_MOUNT_TRUE=
2730
2771
  CONFIG_MOUNT_FALSE='#'
2731
2772
else
2788
2829
  am_depcomp="$ac_aux_dir/depcomp"
2789
2830
  AMDEPBACKSLASH='\'
2790
2831
fi
2791
 
 
2792
 
 
2793
 
if test "x$enable_dependency_tracking" != xno; then
 
2832
 if test "x$enable_dependency_tracking" != xno; then
2794
2833
  AMDEP_TRUE=
2795
2834
  AMDEP_FALSE='#'
2796
2835
else
2799
2838
fi
2800
2839
 
2801
2840
 
2802
 
 
2803
2841
ac_ext=c
2804
2842
ac_cpp='$CPP $CPPFLAGS'
2805
2843
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3786
3824
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
3787
3825
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
3788
3826
         >/dev/null 2>conftest.err &&
 
3827
       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
3789
3828
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
3790
3829
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
3791
3830
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
3815
3854
echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
3816
3855
CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
3817
3856
 
3818
 
 
3819
 
 
3820
 
if
 
3857
 if
3821
3858
  test "x$enable_dependency_tracking" != xno \
3822
3859
  && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
3823
3860
  am__fastdepCC_TRUE=
3834
3871
 
3835
3872
# Check whether --with-tcp-wrappers was given.
3836
3873
if test "${with_tcp_wrappers+set}" = set; then
3837
 
  withval=$with_tcp_wrappers;
3838
 
        if test "x$withval" != "xno" ; then
 
3874
  withval=$with_tcp_wrappers; with_tcpw=$withval
 
3875
else
 
3876
  with_tcpw=yes
 
3877
fi
 
3878
 
 
3879
        if test "x$with_tcpw" != "xno" ; then
3839
3880
            saved_LIBS="$LIBS"
3840
3881
            saved_LDFLAGS="$LDFLAGS"
3841
3882
            saved_CPPFLAGS="$CPPFLAGS"
3842
 
            if test -n "${withval}" -a "${withval}" != "yes"; then
3843
 
                if test -d "${withval}/lib"; then
 
3883
            if test -n "${with_tcpw}" -a "${with_tcpw}" != "yes"; then
 
3884
                if test -d "${with_tcpw}/lib"; then
3844
3885
                    if test -n "${need_dash_r}"; then
3845
 
                        LDFLAGS="-L${withval}/lib -R${withval}/lib ${LDFLAGS}"
 
3886
                        LDFLAGS="-L${with_tcpw}/lib -R${with_tcpw}/lib ${LDFLAGS}"
3846
3887
                    else
3847
 
                        LDFLAGS="-L${withval}/lib ${LDFLAGS}"
 
3888
                        LDFLAGS="-L${with_tcpw}/lib ${LDFLAGS}"
3848
3889
                    fi
3849
3890
                else
3850
3891
                    if test -n "${need_dash_r}"; then
3851
 
                        LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"
 
3892
                        LDFLAGS="-L${with_tcpw} -R${with_tcpw} ${LDFLAGS}"
3852
3893
                    else
3853
 
                        LDFLAGS="-L${withval} ${LDFLAGS}"
 
3894
                        LDFLAGS="-L${with_tcpw} ${LDFLAGS}"
3854
3895
                    fi
3855
3896
                fi
3856
 
                if test -d "${withval}/include"; then
3857
 
                    CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
 
3897
                if test -d "${with_tcpw}/include"; then
 
3898
                    CPPFLAGS="-I${with_tcpw}/include ${CPPFLAGS}"
3858
3899
                else
3859
 
                    CPPFLAGS="-I${withval} ${CPPFLAGS}"
 
3900
                    CPPFLAGS="-I${with_tcpw} ${CPPFLAGS}"
3860
3901
                fi
3861
3902
            fi
3862
3903
            LIBWRAP="-lwrap"
3938
3979
        fi
3939
3980
 
3940
3981
 
3941
 
fi
3942
 
 
3943
 
 
3944
 
 
3945
3982
 
3946
3983
 
3947
3984
 
4381
4418
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
4382
4419
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
4383
4420
         >/dev/null 2>conftest.err &&
 
4421
       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
4384
4422
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
4385
4423
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
4386
4424
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
4410
4448
echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; }
4411
4449
CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type
4412
4450
 
4413
 
 
4414
 
 
4415
 
if
 
4451
 if
4416
4452
  test "x$enable_dependency_tracking" != xno \
4417
4453
  && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then
4418
4454
  am__fastdepCXX_TRUE=
5166
5202
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
5167
5203
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
5168
5204
         >/dev/null 2>conftest.err &&
 
5205
       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
5169
5206
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
5170
5207
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
5171
5208
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
5195
5232
echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
5196
5233
CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
5197
5234
 
5198
 
 
5199
 
 
5200
 
if
 
5235
 if
5201
5236
  test "x$enable_dependency_tracking" != xno \
5202
5237
  && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
5203
5238
  am__fastdepCC_TRUE=
6260
6295
  ;;
6261
6296
*-*-irix6*)
6262
6297
  # Find out which ABI we are using.
6263
 
  echo '#line 6263 "configure"' > conftest.$ac_ext
 
6298
  echo '#line 6298 "configure"' > conftest.$ac_ext
6264
6299
  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
6265
6300
  (eval $ac_compile) 2>&5
6266
6301
  ac_status=$?
8289
8324
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
8290
8325
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
8291
8326
   -e 's:$: $lt_compiler_flag:'`
8292
 
   (eval echo "\"\$as_me:8292: $lt_compile\"" >&5)
 
8327
   (eval echo "\"\$as_me:8327: $lt_compile\"" >&5)
8293
8328
   (eval "$lt_compile" 2>conftest.err)
8294
8329
   ac_status=$?
8295
8330
   cat conftest.err >&5
8296
 
   echo "$as_me:8296: \$? = $ac_status" >&5
 
8331
   echo "$as_me:8331: \$? = $ac_status" >&5
8297
8332
   if (exit $ac_status) && test -s "$ac_outfile"; then
8298
8333
     # The compiler can only warn and ignore the option if not recognized
8299
8334
     # So say no if there are warnings other than the usual output.
8557
8592
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
8558
8593
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
8559
8594
   -e 's:$: $lt_compiler_flag:'`
8560
 
   (eval echo "\"\$as_me:8560: $lt_compile\"" >&5)
 
8595
   (eval echo "\"\$as_me:8595: $lt_compile\"" >&5)
8561
8596
   (eval "$lt_compile" 2>conftest.err)
8562
8597
   ac_status=$?
8563
8598
   cat conftest.err >&5
8564
 
   echo "$as_me:8564: \$? = $ac_status" >&5
 
8599
   echo "$as_me:8599: \$? = $ac_status" >&5
8565
8600
   if (exit $ac_status) && test -s "$ac_outfile"; then
8566
8601
     # The compiler can only warn and ignore the option if not recognized
8567
8602
     # So say no if there are warnings other than the usual output.
8661
8696
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
8662
8697
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
8663
8698
   -e 's:$: $lt_compiler_flag:'`
8664
 
   (eval echo "\"\$as_me:8664: $lt_compile\"" >&5)
 
8699
   (eval echo "\"\$as_me:8699: $lt_compile\"" >&5)
8665
8700
   (eval "$lt_compile" 2>out/conftest.err)
8666
8701
   ac_status=$?
8667
8702
   cat out/conftest.err >&5
8668
 
   echo "$as_me:8668: \$? = $ac_status" >&5
 
8703
   echo "$as_me:8703: \$? = $ac_status" >&5
8669
8704
   if (exit $ac_status) && test -s out/conftest2.$ac_objext
8670
8705
   then
8671
8706
     # The compiler can only warn and ignore the option if not recognized
10958
10993
  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
10959
10994
  lt_status=$lt_dlunknown
10960
10995
  cat > conftest.$ac_ext <<EOF
10961
 
#line 10961 "configure"
 
10996
#line 10996 "configure"
10962
10997
#include "confdefs.h"
10963
10998
 
10964
10999
#if HAVE_DLFCN_H
11058
11093
  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
11059
11094
  lt_status=$lt_dlunknown
11060
11095
  cat > conftest.$ac_ext <<EOF
11061
 
#line 11061 "configure"
 
11096
#line 11096 "configure"
11062
11097
#include "confdefs.h"
11063
11098
 
11064
11099
#if HAVE_DLFCN_H
13394
13429
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
13395
13430
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
13396
13431
   -e 's:$: $lt_compiler_flag:'`
13397
 
   (eval echo "\"\$as_me:13397: $lt_compile\"" >&5)
 
13432
   (eval echo "\"\$as_me:13432: $lt_compile\"" >&5)
13398
13433
   (eval "$lt_compile" 2>conftest.err)
13399
13434
   ac_status=$?
13400
13435
   cat conftest.err >&5
13401
 
   echo "$as_me:13401: \$? = $ac_status" >&5
 
13436
   echo "$as_me:13436: \$? = $ac_status" >&5
13402
13437
   if (exit $ac_status) && test -s "$ac_outfile"; then
13403
13438
     # The compiler can only warn and ignore the option if not recognized
13404
13439
     # So say no if there are warnings other than the usual output.
13498
13533
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
13499
13534
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
13500
13535
   -e 's:$: $lt_compiler_flag:'`
13501
 
   (eval echo "\"\$as_me:13501: $lt_compile\"" >&5)
 
13536
   (eval echo "\"\$as_me:13536: $lt_compile\"" >&5)
13502
13537
   (eval "$lt_compile" 2>out/conftest.err)
13503
13538
   ac_status=$?
13504
13539
   cat out/conftest.err >&5
13505
 
   echo "$as_me:13505: \$? = $ac_status" >&5
 
13540
   echo "$as_me:13540: \$? = $ac_status" >&5
13506
13541
   if (exit $ac_status) && test -s out/conftest2.$ac_objext
13507
13542
   then
13508
13543
     # The compiler can only warn and ignore the option if not recognized
15059
15094
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
15060
15095
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
15061
15096
   -e 's:$: $lt_compiler_flag:'`
15062
 
   (eval echo "\"\$as_me:15062: $lt_compile\"" >&5)
 
15097
   (eval echo "\"\$as_me:15097: $lt_compile\"" >&5)
15063
15098
   (eval "$lt_compile" 2>conftest.err)
15064
15099
   ac_status=$?
15065
15100
   cat conftest.err >&5
15066
 
   echo "$as_me:15066: \$? = $ac_status" >&5
 
15101
   echo "$as_me:15101: \$? = $ac_status" >&5
15067
15102
   if (exit $ac_status) && test -s "$ac_outfile"; then
15068
15103
     # The compiler can only warn and ignore the option if not recognized
15069
15104
     # So say no if there are warnings other than the usual output.
15163
15198
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
15164
15199
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
15165
15200
   -e 's:$: $lt_compiler_flag:'`
15166
 
   (eval echo "\"\$as_me:15166: $lt_compile\"" >&5)
 
15201
   (eval echo "\"\$as_me:15201: $lt_compile\"" >&5)
15167
15202
   (eval "$lt_compile" 2>out/conftest.err)
15168
15203
   ac_status=$?
15169
15204
   cat out/conftest.err >&5
15170
 
   echo "$as_me:15170: \$? = $ac_status" >&5
 
15205
   echo "$as_me:15205: \$? = $ac_status" >&5
15171
15206
   if (exit $ac_status) && test -s out/conftest2.$ac_objext
15172
15207
   then
15173
15208
     # The compiler can only warn and ignore the option if not recognized
17350
17385
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
17351
17386
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
17352
17387
   -e 's:$: $lt_compiler_flag:'`
17353
 
   (eval echo "\"\$as_me:17353: $lt_compile\"" >&5)
 
17388
   (eval echo "\"\$as_me:17388: $lt_compile\"" >&5)
17354
17389
   (eval "$lt_compile" 2>conftest.err)
17355
17390
   ac_status=$?
17356
17391
   cat conftest.err >&5
17357
 
   echo "$as_me:17357: \$? = $ac_status" >&5
 
17392
   echo "$as_me:17392: \$? = $ac_status" >&5
17358
17393
   if (exit $ac_status) && test -s "$ac_outfile"; then
17359
17394
     # The compiler can only warn and ignore the option if not recognized
17360
17395
     # So say no if there are warnings other than the usual output.
17618
17653
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
17619
17654
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
17620
17655
   -e 's:$: $lt_compiler_flag:'`
17621
 
   (eval echo "\"\$as_me:17621: $lt_compile\"" >&5)
 
17656
   (eval echo "\"\$as_me:17656: $lt_compile\"" >&5)
17622
17657
   (eval "$lt_compile" 2>conftest.err)
17623
17658
   ac_status=$?
17624
17659
   cat conftest.err >&5
17625
 
   echo "$as_me:17625: \$? = $ac_status" >&5
 
17660
   echo "$as_me:17660: \$? = $ac_status" >&5
17626
17661
   if (exit $ac_status) && test -s "$ac_outfile"; then
17627
17662
     # The compiler can only warn and ignore the option if not recognized
17628
17663
     # So say no if there are warnings other than the usual output.
17722
17757
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
17723
17758
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
17724
17759
   -e 's:$: $lt_compiler_flag:'`
17725
 
   (eval echo "\"\$as_me:17725: $lt_compile\"" >&5)
 
17760
   (eval echo "\"\$as_me:17760: $lt_compile\"" >&5)
17726
17761
   (eval "$lt_compile" 2>out/conftest.err)
17727
17762
   ac_status=$?
17728
17763
   cat out/conftest.err >&5
17729
 
   echo "$as_me:17729: \$? = $ac_status" >&5
 
17764
   echo "$as_me:17764: \$? = $ac_status" >&5
17730
17765
   if (exit $ac_status) && test -s out/conftest2.$ac_objext
17731
17766
   then
17732
17767
     # The compiler can only warn and ignore the option if not recognized
20809
20844
  echo $ECHO_N "(cached) $ECHO_C" >&6
20810
20845
else
20811
20846
  if test "$cross_compiling" = yes; then
20812
 
  { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
20813
 
See \`config.log' for more details." >&5
20814
 
echo "$as_me: error: cannot run test program while cross compiling
20815
 
See \`config.log' for more details." >&2;}
20816
 
   { (exit 1); exit 1; }; }
 
20847
 
 
20848
      case "$host_os" in
 
20849
        *linux*) knfsd_cv_bsd_signals=no;;
 
20850
        *bsd*)   knfsd_cv_bsd_signals=yes;;
 
20851
        *)       { { echo "$as_me:$LINENO: error: unable to guess signal semantics for $host_os; please set knfsd_cv_bsd_signals" >&5
 
20852
echo "$as_me: error: unable to guess signal semantics for $host_os; please set knfsd_cv_bsd_signals" >&2;}
 
20853
   { (exit 1); exit 1; }; };;
 
20854
      esac
 
20855
 
20817
20856
else
20818
20857
  cat >conftest.$ac_ext <<_ACEOF
20819
20858
/* confdefs.h.  */
22079
22118
fi
22080
22119
 
22081
22120
fi
 
22121
{ echo "$as_me:$LINENO: checking for blkid_get_cache in -lblkid" >&5
 
22122
echo $ECHO_N "checking for blkid_get_cache in -lblkid... $ECHO_C" >&6; }
 
22123
if test "${ac_cv_lib_blkid_blkid_get_cache+set}" = set; then
 
22124
  echo $ECHO_N "(cached) $ECHO_C" >&6
 
22125
else
 
22126
  ac_check_lib_save_LIBS=$LIBS
 
22127
LIBS="-lblkid  $LIBS"
 
22128
cat >conftest.$ac_ext <<_ACEOF
 
22129
/* confdefs.h.  */
 
22130
_ACEOF
 
22131
cat confdefs.h >>conftest.$ac_ext
 
22132
cat >>conftest.$ac_ext <<_ACEOF
 
22133
/* end confdefs.h.  */
 
22134
 
 
22135
/* Override any GCC internal prototype to avoid an error.
 
22136
   Use char because int might match the return type of a GCC
 
22137
   builtin and then its argument prototype would still apply.  */
 
22138
#ifdef __cplusplus
 
22139
extern "C"
 
22140
#endif
 
22141
char blkid_get_cache ();
 
22142
int
 
22143
main ()
 
22144
{
 
22145
return blkid_get_cache ();
 
22146
  ;
 
22147
  return 0;
 
22148
}
 
22149
_ACEOF
 
22150
rm -f conftest.$ac_objext conftest$ac_exeext
 
22151
if { (ac_try="$ac_link"
 
22152
case "(($ac_try" in
 
22153
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
22154
  *) ac_try_echo=$ac_try;;
 
22155
esac
 
22156
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
22157
  (eval "$ac_link") 2>conftest.er1
 
22158
  ac_status=$?
 
22159
  grep -v '^ *+' conftest.er1 >conftest.err
 
22160
  rm -f conftest.er1
 
22161
  cat conftest.err >&5
 
22162
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
22163
  (exit $ac_status); } && {
 
22164
         test -z "$ac_c_werror_flag" ||
 
22165
         test ! -s conftest.err
 
22166
       } && test -s conftest$ac_exeext &&
 
22167
       $as_test_x conftest$ac_exeext; then
 
22168
  ac_cv_lib_blkid_blkid_get_cache=yes
 
22169
else
 
22170
  echo "$as_me: failed program was:" >&5
 
22171
sed 's/^/| /' conftest.$ac_ext >&5
 
22172
 
 
22173
        ac_cv_lib_blkid_blkid_get_cache=no
 
22174
fi
 
22175
 
 
22176
rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
22177
      conftest$ac_exeext conftest.$ac_ext
 
22178
LIBS=$ac_check_lib_save_LIBS
 
22179
fi
 
22180
{ echo "$as_me:$LINENO: result: $ac_cv_lib_blkid_blkid_get_cache" >&5
 
22181
echo "${ECHO_T}$ac_cv_lib_blkid_blkid_get_cache" >&6; }
 
22182
if test $ac_cv_lib_blkid_blkid_get_cache = yes; then
 
22183
  LIBBLKID="-lblkid"
 
22184
else
 
22185
  { { echo "$as_me:$LINENO: error: libblkid needed" >&5
 
22186
echo "$as_me: error: libblkid needed" >&2;}
 
22187
   { (exit 1); exit 1; }; }
 
22188
fi
 
22189
 
 
22190
if test "${ac_cv_header_blkid_blkid_h+set}" = set; then
 
22191
  { echo "$as_me:$LINENO: checking for blkid/blkid.h" >&5
 
22192
echo $ECHO_N "checking for blkid/blkid.h... $ECHO_C" >&6; }
 
22193
if test "${ac_cv_header_blkid_blkid_h+set}" = set; then
 
22194
  echo $ECHO_N "(cached) $ECHO_C" >&6
 
22195
fi
 
22196
{ echo "$as_me:$LINENO: result: $ac_cv_header_blkid_blkid_h" >&5
 
22197
echo "${ECHO_T}$ac_cv_header_blkid_blkid_h" >&6; }
 
22198
else
 
22199
  # Is the header compilable?
 
22200
{ echo "$as_me:$LINENO: checking blkid/blkid.h usability" >&5
 
22201
echo $ECHO_N "checking blkid/blkid.h usability... $ECHO_C" >&6; }
 
22202
cat >conftest.$ac_ext <<_ACEOF
 
22203
/* confdefs.h.  */
 
22204
_ACEOF
 
22205
cat confdefs.h >>conftest.$ac_ext
 
22206
cat >>conftest.$ac_ext <<_ACEOF
 
22207
/* end confdefs.h.  */
 
22208
$ac_includes_default
 
22209
#include <blkid/blkid.h>
 
22210
_ACEOF
 
22211
rm -f conftest.$ac_objext
 
22212
if { (ac_try="$ac_compile"
 
22213
case "(($ac_try" in
 
22214
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
22215
  *) ac_try_echo=$ac_try;;
 
22216
esac
 
22217
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
22218
  (eval "$ac_compile") 2>conftest.er1
 
22219
  ac_status=$?
 
22220
  grep -v '^ *+' conftest.er1 >conftest.err
 
22221
  rm -f conftest.er1
 
22222
  cat conftest.err >&5
 
22223
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
22224
  (exit $ac_status); } && {
 
22225
         test -z "$ac_c_werror_flag" ||
 
22226
         test ! -s conftest.err
 
22227
       } && test -s conftest.$ac_objext; then
 
22228
  ac_header_compiler=yes
 
22229
else
 
22230
  echo "$as_me: failed program was:" >&5
 
22231
sed 's/^/| /' conftest.$ac_ext >&5
 
22232
 
 
22233
        ac_header_compiler=no
 
22234
fi
 
22235
 
 
22236
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
22237
{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
22238
echo "${ECHO_T}$ac_header_compiler" >&6; }
 
22239
 
 
22240
# Is the header present?
 
22241
{ echo "$as_me:$LINENO: checking blkid/blkid.h presence" >&5
 
22242
echo $ECHO_N "checking blkid/blkid.h presence... $ECHO_C" >&6; }
 
22243
cat >conftest.$ac_ext <<_ACEOF
 
22244
/* confdefs.h.  */
 
22245
_ACEOF
 
22246
cat confdefs.h >>conftest.$ac_ext
 
22247
cat >>conftest.$ac_ext <<_ACEOF
 
22248
/* end confdefs.h.  */
 
22249
#include <blkid/blkid.h>
 
22250
_ACEOF
 
22251
if { (ac_try="$ac_cpp conftest.$ac_ext"
 
22252
case "(($ac_try" in
 
22253
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
22254
  *) ac_try_echo=$ac_try;;
 
22255
esac
 
22256
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
22257
  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
22258
  ac_status=$?
 
22259
  grep -v '^ *+' conftest.er1 >conftest.err
 
22260
  rm -f conftest.er1
 
22261
  cat conftest.err >&5
 
22262
  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
22263
  (exit $ac_status); } >/dev/null && {
 
22264
         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
22265
         test ! -s conftest.err
 
22266
       }; then
 
22267
  ac_header_preproc=yes
 
22268
else
 
22269
  echo "$as_me: failed program was:" >&5
 
22270
sed 's/^/| /' conftest.$ac_ext >&5
 
22271
 
 
22272
  ac_header_preproc=no
 
22273
fi
 
22274
 
 
22275
rm -f conftest.err conftest.$ac_ext
 
22276
{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
22277
echo "${ECHO_T}$ac_header_preproc" >&6; }
 
22278
 
 
22279
# So?  What about this header?
 
22280
case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
 
22281
  yes:no: )
 
22282
    { echo "$as_me:$LINENO: WARNING: blkid/blkid.h: accepted by the compiler, rejected by the preprocessor!" >&5
 
22283
echo "$as_me: WARNING: blkid/blkid.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
 
22284
    { echo "$as_me:$LINENO: WARNING: blkid/blkid.h: proceeding with the compiler's result" >&5
 
22285
echo "$as_me: WARNING: blkid/blkid.h: proceeding with the compiler's result" >&2;}
 
22286
    ac_header_preproc=yes
 
22287
    ;;
 
22288
  no:yes:* )
 
22289
    { echo "$as_me:$LINENO: WARNING: blkid/blkid.h: present but cannot be compiled" >&5
 
22290
echo "$as_me: WARNING: blkid/blkid.h: present but cannot be compiled" >&2;}
 
22291
    { echo "$as_me:$LINENO: WARNING: blkid/blkid.h:     check for missing prerequisite headers?" >&5
 
22292
echo "$as_me: WARNING: blkid/blkid.h:     check for missing prerequisite headers?" >&2;}
 
22293
    { echo "$as_me:$LINENO: WARNING: blkid/blkid.h: see the Autoconf documentation" >&5
 
22294
echo "$as_me: WARNING: blkid/blkid.h: see the Autoconf documentation" >&2;}
 
22295
    { echo "$as_me:$LINENO: WARNING: blkid/blkid.h:     section \"Present But Cannot Be Compiled\"" >&5
 
22296
echo "$as_me: WARNING: blkid/blkid.h:     section \"Present But Cannot Be Compiled\"" >&2;}
 
22297
    { echo "$as_me:$LINENO: WARNING: blkid/blkid.h: proceeding with the preprocessor's result" >&5
 
22298
echo "$as_me: WARNING: blkid/blkid.h: proceeding with the preprocessor's result" >&2;}
 
22299
    { echo "$as_me:$LINENO: WARNING: blkid/blkid.h: in the future, the compiler will take precedence" >&5
 
22300
echo "$as_me: WARNING: blkid/blkid.h: in the future, the compiler will take precedence" >&2;}
 
22301
    ( cat <<\_ASBOX
 
22302
## ------------------------------- ##
 
22303
## Report this to nfs@lists.sf.net ##
 
22304
## ------------------------------- ##
 
22305
_ASBOX
 
22306
     ) | sed "s/^/$as_me: WARNING:     /" >&2
 
22307
    ;;
 
22308
esac
 
22309
{ echo "$as_me:$LINENO: checking for blkid/blkid.h" >&5
 
22310
echo $ECHO_N "checking for blkid/blkid.h... $ECHO_C" >&6; }
 
22311
if test "${ac_cv_header_blkid_blkid_h+set}" = set; then
 
22312
  echo $ECHO_N "(cached) $ECHO_C" >&6
 
22313
else
 
22314
  ac_cv_header_blkid_blkid_h=$ac_header_preproc
 
22315
fi
 
22316
{ echo "$as_me:$LINENO: result: $ac_cv_header_blkid_blkid_h" >&5
 
22317
echo "${ECHO_T}$ac_cv_header_blkid_blkid_h" >&6; }
 
22318
 
 
22319
fi
 
22320
if test $ac_cv_header_blkid_blkid_h = yes; then
 
22321
  :
 
22322
else
 
22323
  { { echo "$as_me:$LINENO: error: Cannot file libblkid header file blkid/blkid.h" >&5
 
22324
echo "$as_me: error: Cannot file libblkid header file blkid/blkid.h" >&2;}
 
22325
   { (exit 1); exit 1; }; }
 
22326
fi
 
22327
 
 
22328
 
 
22329
 
22082
22330
 
22083
22331
 
22084
22332
 
28736
28984
ACLOCAL_AMFLAGS="-I $ac_macro_dir \$(ACLOCAL_FLAGS)"
28737
28985
 
28738
28986
 
28739
 
ac_config_files="$ac_config_files Makefile linux-nfs/Makefile support/Makefile support/export/Makefile support/include/nfs/Makefile support/include/rpcsvc/Makefile support/include/sys/fs/Makefile support/include/sys/Makefile support/include/Makefile support/misc/Makefile support/nfs/Makefile tools/Makefile tools/getiversion/Makefile tools/getkversion/Makefile tools/locktest/Makefile tools/nlmtest/Makefile tools/rpcdebug/Makefile tools/rpcgen/Makefile utils/Makefile utils/exportfs/Makefile utils/gssd/Makefile utils/idmapd/Makefile utils/lockd/Makefile utils/mount/Makefile utils/mountd/Makefile utils/nfsd/Makefile utils/nfsstat/Makefile utils/rquotad/Makefile utils/showmount/Makefile utils/statd/Makefile"
 
28987
ac_config_files="$ac_config_files Makefile linux-nfs/Makefile support/Makefile support/export/Makefile support/include/nfs/Makefile support/include/rpcsvc/Makefile support/include/sys/fs/Makefile support/include/sys/Makefile support/include/Makefile support/misc/Makefile support/nfs/Makefile tools/Makefile tools/getiversion/Makefile tools/locktest/Makefile tools/nlmtest/Makefile tools/rpcdebug/Makefile tools/rpcgen/Makefile utils/Makefile utils/exportfs/Makefile utils/gssd/Makefile utils/idmapd/Makefile utils/lockd/Makefile utils/mount/Makefile utils/mountd/Makefile utils/nfsd/Makefile utils/nfsstat/Makefile utils/rquotad/Makefile utils/showmount/Makefile utils/statd/Makefile"
28740
28988
 
28741
28989
cat >confcache <<\_ACEOF
28742
28990
# This file is a shell script that caches the results of configure
28834
29082
LTLIBOBJS=$ac_ltlibobjs
28835
29083
 
28836
29084
 
 
29085
if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
 
29086
  { { echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined.
 
29087
Usually this means the macro was only invoked conditionally." >&5
 
29088
echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined.
 
29089
Usually this means the macro was only invoked conditionally." >&2;}
 
29090
   { (exit 1); exit 1; }; }
 
29091
fi
28837
29092
if test -z "${CONFIG_NFSV4_TRUE}" && test -z "${CONFIG_NFSV4_FALSE}"; then
28838
29093
  { { echo "$as_me:$LINENO: error: conditional \"CONFIG_NFSV4\" was never defined.
28839
29094
Usually this means the macro was only invoked conditionally." >&5
29190
29445
# report actual input values of CONFIG_FILES etc. instead of their
29191
29446
# values after options handling.
29192
29447
ac_log="
29193
 
This file was extended by linux nfs-utils $as_me 1.0.10, which was
 
29448
This file was extended by linux nfs-utils $as_me 1.0.11, which was
29194
29449
generated by GNU Autoconf 2.61.  Invocation command line was
29195
29450
 
29196
29451
  CONFIG_FILES    = $CONFIG_FILES
29243
29498
_ACEOF
29244
29499
cat >>$CONFIG_STATUS <<_ACEOF
29245
29500
ac_cs_version="\\
29246
 
linux nfs-utils config.status 1.0.10
 
29501
linux nfs-utils config.status 1.0.11
29247
29502
configured by $0, generated by GNU Autoconf 2.61,
29248
29503
  with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
29249
29504
 
29254
29509
ac_pwd='$ac_pwd'
29255
29510
srcdir='$srcdir'
29256
29511
INSTALL='$INSTALL'
 
29512
MKDIR_P='$MKDIR_P'
29257
29513
_ACEOF
29258
29514
 
29259
29515
cat >>$CONFIG_STATUS <<\_ACEOF
29371
29627
    "support/nfs/Makefile") CONFIG_FILES="$CONFIG_FILES support/nfs/Makefile" ;;
29372
29628
    "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;;
29373
29629
    "tools/getiversion/Makefile") CONFIG_FILES="$CONFIG_FILES tools/getiversion/Makefile" ;;
29374
 
    "tools/getkversion/Makefile") CONFIG_FILES="$CONFIG_FILES tools/getkversion/Makefile" ;;
29375
29630
    "tools/locktest/Makefile") CONFIG_FILES="$CONFIG_FILES tools/locktest/Makefile" ;;
29376
29631
    "tools/nlmtest/Makefile") CONFIG_FILES="$CONFIG_FILES tools/nlmtest/Makefile" ;;
29377
29632
    "tools/rpcdebug/Makefile") CONFIG_FILES="$CONFIG_FILES tools/rpcdebug/Makefile" ;;
29498
29753
INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
29499
29754
INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
29500
29755
INSTALL_DATA!$INSTALL_DATA$ac_delim
 
29756
am__isrc!$am__isrc$ac_delim
29501
29757
CYGPATH_W!$CYGPATH_W$ac_delim
29502
29758
PACKAGE!$PACKAGE$ac_delim
29503
29759
VERSION!$VERSION$ac_delim
29516
29772
AMTAR!$AMTAR$ac_delim
29517
29773
am__tar!$am__tar$ac_delim
29518
29774
am__untar!$am__untar$ac_delim
 
29775
MAINTAINER_MODE_TRUE!$MAINTAINER_MODE_TRUE$ac_delim
 
29776
MAINTAINER_MODE_FALSE!$MAINTAINER_MODE_FALSE$ac_delim
 
29777
MAINT!$MAINT$ac_delim
29519
29778
RELEASE!$RELEASE$ac_delim
29520
29779
statedir!$statedir$ac_delim
29521
29780
statduser!$statduser$ac_delim
29543
29802
EXEEXT!$EXEEXT$ac_delim
29544
29803
OBJEXT!$OBJEXT$ac_delim
29545
29804
DEPDIR!$DEPDIR$ac_delim
 
29805
_ACEOF
 
29806
 
 
29807
  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
 
29808
    break
 
29809
  elif $ac_last_try; then
 
29810
    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
 
29811
echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
 
29812
   { (exit 1); exit 1; }; }
 
29813
  else
 
29814
    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
 
29815
  fi
 
29816
done
 
29817
 
 
29818
ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
 
29819
if test -n "$ac_eof"; then
 
29820
  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
 
29821
  ac_eof=`expr $ac_eof + 1`
 
29822
fi
 
29823
 
 
29824
cat >>$CONFIG_STATUS <<_ACEOF
 
29825
cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof
 
29826
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
 
29827
_ACEOF
 
29828
sed '
 
29829
s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
 
29830
s/^/s,@/; s/!/@,|#_!!_#|/
 
29831
:n
 
29832
t n
 
29833
s/'"$ac_delim"'$/,g/; t
 
29834
s/$/\\/; p
 
29835
N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
 
29836
' >>$CONFIG_STATUS <conf$$subs.sed
 
29837
rm -f conf$$subs.sed
 
29838
cat >>$CONFIG_STATUS <<_ACEOF
 
29839
CEOF$ac_eof
 
29840
_ACEOF
 
29841
 
 
29842
 
 
29843
ac_delim='%!_!# '
 
29844
for ac_last_try in false false false false false :; do
 
29845
  cat >conf$$subs.sed <<_ACEOF
29546
29846
am__include!$am__include$ac_delim
29547
29847
am__quote!$am__quote$ac_delim
29548
29848
AMDEP_TRUE!$AMDEP_TRUE$ac_delim
29549
29849
AMDEP_FALSE!$AMDEP_FALSE$ac_delim
29550
 
_ACEOF
29551
 
 
29552
 
  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
29553
 
    break
29554
 
  elif $ac_last_try; then
29555
 
    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
29556
 
echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
29557
 
   { (exit 1); exit 1; }; }
29558
 
  else
29559
 
    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
29560
 
  fi
29561
 
done
29562
 
 
29563
 
ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
29564
 
if test -n "$ac_eof"; then
29565
 
  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
29566
 
  ac_eof=`expr $ac_eof + 1`
29567
 
fi
29568
 
 
29569
 
cat >>$CONFIG_STATUS <<_ACEOF
29570
 
cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof
29571
 
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
29572
 
_ACEOF
29573
 
sed '
29574
 
s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
29575
 
s/^/s,@/; s/!/@,|#_!!_#|/
29576
 
:n
29577
 
t n
29578
 
s/'"$ac_delim"'$/,g/; t
29579
 
s/$/\\/; p
29580
 
N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
29581
 
' >>$CONFIG_STATUS <conf$$subs.sed
29582
 
rm -f conf$$subs.sed
29583
 
cat >>$CONFIG_STATUS <<_ACEOF
29584
 
CEOF$ac_eof
29585
 
_ACEOF
29586
 
 
29587
 
 
29588
 
ac_delim='%!_!# '
29589
 
for ac_last_try in false false false false false :; do
29590
 
  cat >conf$$subs.sed <<_ACEOF
29591
29850
AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim
29592
29851
CCDEPMODE!$CCDEPMODE$ac_delim
29593
29852
am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim
29624
29883
LIBSOCKET!$LIBSOCKET$ac_delim
29625
29884
LIBCRYPT!$LIBCRYPT$ac_delim
29626
29885
LIBBSD!$LIBBSD$ac_delim
 
29886
LIBBLKID!$LIBBLKID$ac_delim
29627
29887
KRBDIR!$KRBDIR$ac_delim
29628
29888
KRBLIBS!$KRBLIBS$ac_delim
29629
29889
KRBCFLAGS!$KRBCFLAGS$ac_delim
29641
29901
LTLIBOBJS!$LTLIBOBJS$ac_delim
29642
29902
_ACEOF
29643
29903
 
29644
 
  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 51; then
 
29904
  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 56; then
29645
29905
    break
29646
29906
  elif $ac_last_try; then
29647
29907
    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
29868
30128
  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
29869
30129
  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
29870
30130
  esac
 
30131
  ac_MKDIR_P=$MKDIR_P
 
30132
  case $MKDIR_P in
 
30133
  [\\/$]* | ?:[\\/]* ) ;;
 
30134
  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
 
30135
  esac
29871
30136
_ACEOF
29872
30137
 
29873
30138
cat >>$CONFIG_STATUS <<\_ACEOF
29921
30186
s&@abs_builddir@&$ac_abs_builddir&;t t
29922
30187
s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
29923
30188
s&@INSTALL@&$ac_INSTALL&;t t
 
30189
s&@MKDIR_P@&$ac_MKDIR_P&;t t
29924
30190
$ac_datarootdir_hack
29925
30191
" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out
29926
30192
 
30085
30351
  # some people rename them; so instead we look at the file content.
30086
30352
  # Grep'ing the first line is not enough: some people post-process
30087
30353
  # each Makefile.in and add a new line on top of each file to say so.
30088
 
  # So let's grep whole file.
30089
 
  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
 
30354
  # Grep'ing the whole file is not good either: AIX grep has a line
 
30355
  # limit of 2048, but all sed's we know have understand at least 4000.
 
30356
  if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then
30090
30357
    dirpart=`$as_dirname -- "$mf" ||
30091
30358
$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
30092
30359
         X"$mf" : 'X\(//\)[^/]' \| \