~ubuntu-branches/ubuntu/oneiric/collectd/oneiric

« back to all changes in this revision

Viewing changes to libltdl/configure

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Harl
  • Date: 2008-06-17 10:35:51 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080617103551-9d0ym3zejc7agtt3
Tags: 4.4.1-1
* New upstream release.
  - Fixed another issue of the sensors plugin affecting some chip types
    (Closes: #468143).
  - Fixed creation of "vserver" graphs in collection.cgi (Closes: #475120).
  - Fixed a segfault when using libperl 5.10.
  - collectd now ships libiptc itself.
  New plugins:
  - Ascent server statistics: ascent
  - IPMI sensors information: ipmi
  - PowerDNS name server statistics: powerdns
  - incremental parsing of logfiles: tail
  - TeamSpeak2 server statistics: teamspeak2
  - detailed virtual memory statistics: vmem
* Disable "tcpconns" plugin by default (Closes: #478759).
* Reenabled iptables plugin on all architectures (Closes: #473435).
  - Added the plugin to collectd.conf.
  - Added /usr/share/doc/collectd/examples/iptables/.
  - Added build dependency on linux-libc-dev (>= 2.6.25-4) - that version is
    required because of #479899.
* New debconf template translations:
  - gl.po, thanks to Jacobo Tarrio (Closes: #482667).
* Added a work around for #474087 (broken openipmi .pc files) by forcing the
  inclusion of the ipmi plugin and manually specifying the dependencies.
* Updated standards-version to 3.8.0 (no changes).

Show diffs side-by-side

added added

removed removed

Lines of Context:
809
809
INSTALL_PROGRAM
810
810
INSTALL_SCRIPT
811
811
INSTALL_DATA
 
812
am__isrc
812
813
CYGPATH_W
813
814
PACKAGE
814
815
VERSION
2000
2001
## ------------------------ ##
2001
2002
## Automake Initialisation. ##
2002
2003
## ------------------------ ##
2003
 
am__api_version="1.9"
 
2004
am__api_version='1.10'
 
2005
 
2004
2006
# Find a good install program.  We prefer a C program (faster),
2005
2007
# so one script is as good as another.  But avoid the broken or
2006
2008
# incompatible versions:
2152
2154
echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
2153
2155
fi
2154
2156
 
2155
 
if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
2156
 
  # We used to keeping the `.' as first argument, in order to
2157
 
  # allow $(mkdir_p) to be used without argument.  As in
2158
 
  #   $(mkdir_p) $(somedir)
2159
 
  # where $(somedir) is conditionally defined.  However this is wrong
2160
 
  # for two reasons:
2161
 
  #  1. if the package is installed by a user who cannot write `.'
2162
 
  #     make install will fail,
2163
 
  #  2. the above comment should most certainly read
2164
 
  #     $(mkdir_p) $(DESTDIR)$(somedir)
2165
 
  #     so it does not work when $(somedir) is undefined and
2166
 
  #     $(DESTDIR) is not.
2167
 
  #  To support the latter case, we have to write
2168
 
  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
2169
 
  #  so the `.' trick is pointless.
2170
 
  mkdir_p='mkdir -p --'
 
2157
{ echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5
 
2158
echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; }
 
2159
if test -z "$MKDIR_P"; then
 
2160
  if test "${ac_cv_path_mkdir+set}" = set; then
 
2161
  echo $ECHO_N "(cached) $ECHO_C" >&6
2171
2162
else
2172
 
  # On NextStep and OpenStep, the `mkdir' command does not
2173
 
  # recognize any option.  It will interpret all options as
2174
 
  # directories to create, and then abort because `.' already
2175
 
  # exists.
2176
 
  for d in ./-p ./--version;
2177
 
  do
2178
 
    test -d $d && rmdir $d
2179
 
  done
2180
 
  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
2181
 
  if test -f "$ac_aux_dir/mkinstalldirs"; then
2182
 
    mkdir_p='$(mkinstalldirs)'
 
2163
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2164
for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
 
2165
do
 
2166
  IFS=$as_save_IFS
 
2167
  test -z "$as_dir" && as_dir=.
 
2168
  for ac_prog in mkdir gmkdir; do
 
2169
         for ac_exec_ext in '' $ac_executable_extensions; do
 
2170
           { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
 
2171
           case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
 
2172
             'mkdir (GNU coreutils) '* | \
 
2173
             'mkdir (coreutils) '* | \
 
2174
             'mkdir (fileutils) '4.1*)
 
2175
               ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
 
2176
               break 3;;
 
2177
           esac
 
2178
         done
 
2179
       done
 
2180
done
 
2181
IFS=$as_save_IFS
 
2182
 
 
2183
fi
 
2184
 
 
2185
  if test "${ac_cv_path_mkdir+set}" = set; then
 
2186
    MKDIR_P="$ac_cv_path_mkdir -p"
2183
2187
  else
2184
 
    mkdir_p='$(install_sh) -d'
 
2188
    # As a last resort, use the slow shell script.  Don't cache a
 
2189
    # value for MKDIR_P within a source directory, because that will
 
2190
    # break other packages using the cache if that directory is
 
2191
    # removed, or if the value is a relative name.
 
2192
    test -d ./--version && rmdir ./--version
 
2193
    MKDIR_P="$ac_install_sh -d"
2185
2194
  fi
2186
2195
fi
 
2196
{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5
 
2197
echo "${ECHO_T}$MKDIR_P" >&6; }
 
2198
 
 
2199
mkdir_p="$MKDIR_P"
 
2200
case $mkdir_p in
 
2201
  [\\/$]* | ?:[\\/]*) ;;
 
2202
  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
 
2203
esac
2187
2204
 
2188
2205
for ac_prog in gawk mawk nawk awk
2189
2206
do
2266
2283
fi
2267
2284
rmdir .tst 2>/dev/null
2268
2285
 
2269
 
# test to see if srcdir already configured
2270
 
if test "`cd $srcdir && pwd`" != "`pwd`" &&
2271
 
   test -f $srcdir/config.status; then
2272
 
  { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
 
2286
if test "`cd $srcdir && pwd`" != "`pwd`"; then
 
2287
  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
 
2288
  # is not polluted with repeated "-I."
 
2289
  am__isrc=' -I$(srcdir)'
 
2290
  # test to see if srcdir already configured
 
2291
  if test -f $srcdir/config.status; then
 
2292
    { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
2273
2293
echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
2274
2294
   { (exit 1); exit 1; }; }
 
2295
  fi
2275
2296
fi
2276
2297
 
2277
2298
# test whether we have cygpath
2305
2326
 
2306
2327
MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
2307
2328
 
2308
 
install_sh=${install_sh-"$am_aux_dir/install-sh"}
 
2329
install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
2309
2330
 
2310
2331
# Installed binaries are usually stripped using `strip' when the user
2311
2332
# run `make install-strip'.  However `strip' might not be the right
2409
2430
fi
2410
2431
 
2411
2432
fi
2412
 
INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
 
2433
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2413
2434
 
2414
2435
# We need awk for the "check" target.  The system "awk" is bad on
2415
2436
# some platforms.
3401
3422
  am_depcomp="$ac_aux_dir/depcomp"
3402
3423
  AMDEPBACKSLASH='\'
3403
3424
fi
3404
 
 
3405
 
 
3406
 
if test "x$enable_dependency_tracking" != xno; then
 
3425
 if test "x$enable_dependency_tracking" != xno; then
3407
3426
  AMDEP_TRUE=
3408
3427
  AMDEP_FALSE='#'
3409
3428
else
3413
3432
 
3414
3433
 
3415
3434
 
3416
 
 
3417
3435
depcc="$CC"   am_compiler_list=
3418
3436
 
3419
3437
{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
3481
3499
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
3482
3500
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
3483
3501
         >/dev/null 2>conftest.err &&
 
3502
       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
3484
3503
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
3485
3504
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
3486
3505
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
3510
3529
echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
3511
3530
CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
3512
3531
 
3513
 
 
3514
 
 
3515
 
if
 
3532
 if
3516
3533
  test "x$enable_dependency_tracking" != xno \
3517
3534
  && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
3518
3535
  am__fastdepCC_TRUE=
4513
4530
  ;;
4514
4531
*-*-irix6*)
4515
4532
  # Find out which ABI we are using.
4516
 
  echo '#line 4516 "configure"' > conftest.$ac_ext
 
4533
  echo '#line 4533 "configure"' > conftest.$ac_ext
4517
4534
  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
4518
4535
  (eval $ac_compile) 2>&5
4519
4536
  ac_status=$?
6043
6060
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
6044
6061
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
6045
6062
         >/dev/null 2>conftest.err &&
 
6063
       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
6046
6064
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
6047
6065
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
6048
6066
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
6072
6090
echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; }
6073
6091
CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type
6074
6092
 
6075
 
 
6076
 
 
6077
 
if
 
6093
 if
6078
6094
  test "x$enable_dependency_tracking" != xno \
6079
6095
  && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then
6080
6096
  am__fastdepCXX_TRUE=
7865
7881
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
7866
7882
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
7867
7883
   -e 's:$: $lt_compiler_flag:'`
7868
 
   (eval echo "\"\$as_me:7868: $lt_compile\"" >&5)
 
7884
   (eval echo "\"\$as_me:7884: $lt_compile\"" >&5)
7869
7885
   (eval "$lt_compile" 2>conftest.err)
7870
7886
   ac_status=$?
7871
7887
   cat conftest.err >&5
7872
 
   echo "$as_me:7872: \$? = $ac_status" >&5
 
7888
   echo "$as_me:7888: \$? = $ac_status" >&5
7873
7889
   if (exit $ac_status) && test -s "$ac_outfile"; then
7874
7890
     # The compiler can only warn and ignore the option if not recognized
7875
7891
     # So say no if there are warnings other than the usual output.
8155
8171
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
8156
8172
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
8157
8173
   -e 's:$: $lt_compiler_flag:'`
8158
 
   (eval echo "\"\$as_me:8158: $lt_compile\"" >&5)
 
8174
   (eval echo "\"\$as_me:8174: $lt_compile\"" >&5)
8159
8175
   (eval "$lt_compile" 2>conftest.err)
8160
8176
   ac_status=$?
8161
8177
   cat conftest.err >&5
8162
 
   echo "$as_me:8162: \$? = $ac_status" >&5
 
8178
   echo "$as_me:8178: \$? = $ac_status" >&5
8163
8179
   if (exit $ac_status) && test -s "$ac_outfile"; then
8164
8180
     # The compiler can only warn and ignore the option if not recognized
8165
8181
     # So say no if there are warnings other than the usual output.
8259
8275
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
8260
8276
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
8261
8277
   -e 's:$: $lt_compiler_flag:'`
8262
 
   (eval echo "\"\$as_me:8262: $lt_compile\"" >&5)
 
8278
   (eval echo "\"\$as_me:8278: $lt_compile\"" >&5)
8263
8279
   (eval "$lt_compile" 2>out/conftest.err)
8264
8280
   ac_status=$?
8265
8281
   cat out/conftest.err >&5
8266
 
   echo "$as_me:8266: \$? = $ac_status" >&5
 
8282
   echo "$as_me:8282: \$? = $ac_status" >&5
8267
8283
   if (exit $ac_status) && test -s out/conftest2.$ac_objext
8268
8284
   then
8269
8285
     # The compiler can only warn and ignore the option if not recognized
10636
10652
  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
10637
10653
  lt_status=$lt_dlunknown
10638
10654
  cat > conftest.$ac_ext <<EOF
10639
 
#line 10639 "configure"
 
10655
#line 10655 "configure"
10640
10656
#include "confdefs.h"
10641
10657
 
10642
10658
#if HAVE_DLFCN_H
10736
10752
  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
10737
10753
  lt_status=$lt_dlunknown
10738
10754
  cat > conftest.$ac_ext <<EOF
10739
 
#line 10739 "configure"
 
10755
#line 10755 "configure"
10740
10756
#include "confdefs.h"
10741
10757
 
10742
10758
#if HAVE_DLFCN_H
13141
13157
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
13142
13158
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
13143
13159
   -e 's:$: $lt_compiler_flag:'`
13144
 
   (eval echo "\"\$as_me:13144: $lt_compile\"" >&5)
 
13160
   (eval echo "\"\$as_me:13160: $lt_compile\"" >&5)
13145
13161
   (eval "$lt_compile" 2>conftest.err)
13146
13162
   ac_status=$?
13147
13163
   cat conftest.err >&5
13148
 
   echo "$as_me:13148: \$? = $ac_status" >&5
 
13164
   echo "$as_me:13164: \$? = $ac_status" >&5
13149
13165
   if (exit $ac_status) && test -s "$ac_outfile"; then
13150
13166
     # The compiler can only warn and ignore the option if not recognized
13151
13167
     # So say no if there are warnings other than the usual output.
13245
13261
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
13246
13262
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
13247
13263
   -e 's:$: $lt_compiler_flag:'`
13248
 
   (eval echo "\"\$as_me:13248: $lt_compile\"" >&5)
 
13264
   (eval echo "\"\$as_me:13264: $lt_compile\"" >&5)
13249
13265
   (eval "$lt_compile" 2>out/conftest.err)
13250
13266
   ac_status=$?
13251
13267
   cat out/conftest.err >&5
13252
 
   echo "$as_me:13252: \$? = $ac_status" >&5
 
13268
   echo "$as_me:13268: \$? = $ac_status" >&5
13253
13269
   if (exit $ac_status) && test -s out/conftest2.$ac_objext
13254
13270
   then
13255
13271
     # The compiler can only warn and ignore the option if not recognized
14843
14859
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
14844
14860
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
14845
14861
   -e 's:$: $lt_compiler_flag:'`
14846
 
   (eval echo "\"\$as_me:14846: $lt_compile\"" >&5)
 
14862
   (eval echo "\"\$as_me:14862: $lt_compile\"" >&5)
14847
14863
   (eval "$lt_compile" 2>conftest.err)
14848
14864
   ac_status=$?
14849
14865
   cat conftest.err >&5
14850
 
   echo "$as_me:14850: \$? = $ac_status" >&5
 
14866
   echo "$as_me:14866: \$? = $ac_status" >&5
14851
14867
   if (exit $ac_status) && test -s "$ac_outfile"; then
14852
14868
     # The compiler can only warn and ignore the option if not recognized
14853
14869
     # So say no if there are warnings other than the usual output.
14947
14963
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
14948
14964
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
14949
14965
   -e 's:$: $lt_compiler_flag:'`
14950
 
   (eval echo "\"\$as_me:14950: $lt_compile\"" >&5)
 
14966
   (eval echo "\"\$as_me:14966: $lt_compile\"" >&5)
14951
14967
   (eval "$lt_compile" 2>out/conftest.err)
14952
14968
   ac_status=$?
14953
14969
   cat out/conftest.err >&5
14954
 
   echo "$as_me:14954: \$? = $ac_status" >&5
 
14970
   echo "$as_me:14970: \$? = $ac_status" >&5
14955
14971
   if (exit $ac_status) && test -s out/conftest2.$ac_objext
14956
14972
   then
14957
14973
     # The compiler can only warn and ignore the option if not recognized
17171
17187
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
17172
17188
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
17173
17189
   -e 's:$: $lt_compiler_flag:'`
17174
 
   (eval echo "\"\$as_me:17174: $lt_compile\"" >&5)
 
17190
   (eval echo "\"\$as_me:17190: $lt_compile\"" >&5)
17175
17191
   (eval "$lt_compile" 2>conftest.err)
17176
17192
   ac_status=$?
17177
17193
   cat conftest.err >&5
17178
 
   echo "$as_me:17178: \$? = $ac_status" >&5
 
17194
   echo "$as_me:17194: \$? = $ac_status" >&5
17179
17195
   if (exit $ac_status) && test -s "$ac_outfile"; then
17180
17196
     # The compiler can only warn and ignore the option if not recognized
17181
17197
     # So say no if there are warnings other than the usual output.
17461
17477
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
17462
17478
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
17463
17479
   -e 's:$: $lt_compiler_flag:'`
17464
 
   (eval echo "\"\$as_me:17464: $lt_compile\"" >&5)
 
17480
   (eval echo "\"\$as_me:17480: $lt_compile\"" >&5)
17465
17481
   (eval "$lt_compile" 2>conftest.err)
17466
17482
   ac_status=$?
17467
17483
   cat conftest.err >&5
17468
 
   echo "$as_me:17468: \$? = $ac_status" >&5
 
17484
   echo "$as_me:17484: \$? = $ac_status" >&5
17469
17485
   if (exit $ac_status) && test -s "$ac_outfile"; then
17470
17486
     # The compiler can only warn and ignore the option if not recognized
17471
17487
     # So say no if there are warnings other than the usual output.
17565
17581
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
17566
17582
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
17567
17583
   -e 's:$: $lt_compiler_flag:'`
17568
 
   (eval echo "\"\$as_me:17568: $lt_compile\"" >&5)
 
17584
   (eval echo "\"\$as_me:17584: $lt_compile\"" >&5)
17569
17585
   (eval "$lt_compile" 2>out/conftest.err)
17570
17586
   ac_status=$?
17571
17587
   cat out/conftest.err >&5
17572
 
   echo "$as_me:17572: \$? = $ac_status" >&5
 
17588
   echo "$as_me:17588: \$? = $ac_status" >&5
17573
17589
   if (exit $ac_status) && test -s out/conftest2.$ac_objext
17574
17590
   then
17575
17591
     # The compiler can only warn and ignore the option if not recognized
20504
20520
fi
20505
20521
 
20506
20522
 
20507
 
 
20508
 
 
20509
 
if test x"${enable_ltdl_install-no}" != xno; then
 
20523
 if test x"${enable_ltdl_install-no}" != xno; then
20510
20524
  INSTALL_LTDL_TRUE=
20511
20525
  INSTALL_LTDL_FALSE='#'
20512
20526
else
20514
20528
  INSTALL_LTDL_FALSE=
20515
20529
fi
20516
20530
 
20517
 
 
20518
 
 
20519
 
if test x"${enable_ltdl_convenience-no}" != xno; then
 
20531
 if test x"${enable_ltdl_convenience-no}" != xno; then
20520
20532
  CONVENIENCE_LTDL_TRUE=
20521
20533
  CONVENIENCE_LTDL_FALSE='#'
20522
20534
else
21341
21353
  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
21342
21354
  lt_status=$lt_dlunknown
21343
21355
  cat > conftest.$ac_ext <<EOF
21344
 
#line 21344 "configure"
 
21356
#line 21356 "configure"
21345
21357
#include "confdefs.h"
21346
21358
 
21347
21359
#if HAVE_DLFCN_H
23296
23308
ac_pwd='$ac_pwd'
23297
23309
srcdir='$srcdir'
23298
23310
INSTALL='$INSTALL'
 
23311
MKDIR_P='$MKDIR_P'
23299
23312
_ACEOF
23300
23313
 
23301
23314
cat >>$CONFIG_STATUS <<\_ACEOF
23503
23516
INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
23504
23517
INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
23505
23518
INSTALL_DATA!$INSTALL_DATA$ac_delim
 
23519
am__isrc!$am__isrc$ac_delim
23506
23520
CYGPATH_W!$CYGPATH_W$ac_delim
23507
23521
PACKAGE!$PACKAGE$ac_delim
23508
23522
VERSION!$VERSION$ac_delim
23559
23573
OBJDUMP!$OBJDUMP$ac_delim
23560
23574
CPP!$CPP$ac_delim
23561
23575
CXX!$CXX$ac_delim
23562
 
CXXFLAGS!$CXXFLAGS$ac_delim
23563
23576
_ACEOF
23564
23577
 
23565
23578
  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
23601
23614
ac_delim='%!_!# '
23602
23615
for ac_last_try in false false false false false :; do
23603
23616
  cat >conf$$subs.sed <<_ACEOF
 
23617
CXXFLAGS!$CXXFLAGS$ac_delim
23604
23618
ac_ct_CXX!$ac_ct_CXX$ac_delim
23605
23619
CXXDEPMODE!$CXXDEPMODE$ac_delim
23606
23620
am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim
23620
23634
LTLIBOBJS!$LTLIBOBJS$ac_delim
23621
23635
_ACEOF
23622
23636
 
23623
 
  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 17; then
 
23637
  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 18; then
23624
23638
    break
23625
23639
  elif $ac_last_try; then
23626
23640
    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
23847
23861
  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
23848
23862
  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
23849
23863
  esac
 
23864
  ac_MKDIR_P=$MKDIR_P
 
23865
  case $MKDIR_P in
 
23866
  [\\/$]* | ?:[\\/]* ) ;;
 
23867
  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
 
23868
  esac
23850
23869
_ACEOF
23851
23870
 
23852
23871
cat >>$CONFIG_STATUS <<\_ACEOF
23900
23919
s&@abs_builddir@&$ac_abs_builddir&;t t
23901
23920
s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
23902
23921
s&@INSTALL@&$ac_INSTALL&;t t
 
23922
s&@MKDIR_P@&$ac_MKDIR_P&;t t
23903
23923
$ac_datarootdir_hack
23904
23924
" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out
23905
23925
 
24015
24035
  fi
24016
24036
  rm -f "$tmp/out12"
24017
24037
# Compute $ac_file's index in $config_headers.
 
24038
_am_arg=$ac_file
24018
24039
_am_stamp_count=1
24019
24040
for _am_header in $config_headers :; do
24020
24041
  case $_am_header in
24021
 
    $ac_file | $ac_file:* )
 
24042
    $_am_arg | $_am_arg:* )
24022
24043
      break ;;
24023
24044
    * )
24024
24045
      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
24025
24046
  esac
24026
24047
done
24027
 
echo "timestamp for $ac_file" >`$as_dirname -- $ac_file ||
24028
 
$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
24029
 
         X$ac_file : 'X\(//\)[^/]' \| \
24030
 
         X$ac_file : 'X\(//\)$' \| \
24031
 
         X$ac_file : 'X\(/\)' \| . 2>/dev/null ||
24032
 
echo X$ac_file |
 
24048
echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
 
24049
$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
24050
         X"$_am_arg" : 'X\(//\)[^/]' \| \
 
24051
         X"$_am_arg" : 'X\(//\)$' \| \
 
24052
         X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
 
24053
echo X"$_am_arg" |
24033
24054
    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
24034
24055
            s//\1/
24035
24056
            q
24064
24085
  # some people rename them; so instead we look at the file content.
24065
24086
  # Grep'ing the first line is not enough: some people post-process
24066
24087
  # each Makefile.in and add a new line on top of each file to say so.
24067
 
  # So let's grep whole file.
24068
 
  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
 
24088
  # Grep'ing the whole file is not good either: AIX grep has a line
 
24089
  # limit of 2048, but all sed's we know have understand at least 4000.
 
24090
  if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
24069
24091
    dirpart=`$as_dirname -- "$mf" ||
24070
24092
$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
24071
24093
         X"$mf" : 'X\(//\)[^/]' \| \