~ubuntu-branches/ubuntu/natty/libxml++2.6/natty

« back to all changes in this revision

Viewing changes to configure

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-09-18 11:32:24 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20070918113224-7x031mzf1shoozxx
Tags: 2.20.0-0ubuntu1
* New upstream release:
  - Element: Added get_attribute_value(), to get a simple text value for an
    attribute.
  - Added an experimental --enable-api-exceptions configure option, to allow
    libxml++ to build without exceptions.
* debian/libxml++2.6-doc.docs: 2.18 -> 2.20.

Show diffs side-by-side

added added

removed removed

Lines of Context:
797
797
INSTALL_PROGRAM
798
798
INSTALL_SCRIPT
799
799
INSTALL_DATA
 
800
am__isrc
800
801
CYGPATH_W
801
802
PACKAGE
802
803
VERSION
1467
1468
Optional Features:
1468
1469
  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
1469
1470
  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
 
1471
  --enable-api-exceptions  Build exceptions API.
 
1472
                              [default=yes]
1470
1473
  --disable-dependency-tracking  speeds up one-time build
1471
1474
  --enable-dependency-tracking   do not reject slow dependency extractors
1472
1475
  --enable-shared[=PKGS]  build shared libraries [default=yes]
1926
1929
 
1927
1930
#release versioning
1928
1931
GENERIC_MAJOR_VERSION=2
1929
 
GENERIC_MINOR_VERSION=18
1930
 
GENERIC_MICRO_VERSION=2
 
1932
GENERIC_MINOR_VERSION=20
 
1933
GENERIC_MICRO_VERSION=0
1931
1934
GENERIC_VERSION=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION.$GENERIC_MICRO_VERSION
1932
1935
 
1933
1936
 
1954
1957
VERSION=$GENERIC_VERSION
1955
1958
 
1956
1959
 
1957
 
am__api_version="1.9"
 
1960
am__api_version='1.10'
 
1961
 
1958
1962
ac_aux_dir=
1959
1963
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
1960
1964
  if test -f "$ac_dir/install-sh"; then
2137
2141
echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
2138
2142
fi
2139
2143
 
2140
 
if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
2141
 
  # We used to keeping the `.' as first argument, in order to
2142
 
  # allow $(mkdir_p) to be used without argument.  As in
2143
 
  #   $(mkdir_p) $(somedir)
2144
 
  # where $(somedir) is conditionally defined.  However this is wrong
2145
 
  # for two reasons:
2146
 
  #  1. if the package is installed by a user who cannot write `.'
2147
 
  #     make install will fail,
2148
 
  #  2. the above comment should most certainly read
2149
 
  #     $(mkdir_p) $(DESTDIR)$(somedir)
2150
 
  #     so it does not work when $(somedir) is undefined and
2151
 
  #     $(DESTDIR) is not.
2152
 
  #  To support the latter case, we have to write
2153
 
  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
2154
 
  #  so the `.' trick is pointless.
2155
 
  mkdir_p='mkdir -p --'
 
2144
{ echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5
 
2145
echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; }
 
2146
if test -z "$MKDIR_P"; then
 
2147
  if test "${ac_cv_path_mkdir+set}" = set; then
 
2148
  echo $ECHO_N "(cached) $ECHO_C" >&6
2156
2149
else
2157
 
  # On NextStep and OpenStep, the `mkdir' command does not
2158
 
  # recognize any option.  It will interpret all options as
2159
 
  # directories to create, and then abort because `.' already
2160
 
  # exists.
2161
 
  for d in ./-p ./--version;
2162
 
  do
2163
 
    test -d $d && rmdir $d
2164
 
  done
2165
 
  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
2166
 
  if test -f "$ac_aux_dir/mkinstalldirs"; then
2167
 
    mkdir_p='$(mkinstalldirs)'
 
2150
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2151
for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
 
2152
do
 
2153
  IFS=$as_save_IFS
 
2154
  test -z "$as_dir" && as_dir=.
 
2155
  for ac_prog in mkdir gmkdir; do
 
2156
         for ac_exec_ext in '' $ac_executable_extensions; do
 
2157
           { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; } || continue
 
2158
           case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
 
2159
             'mkdir (GNU coreutils) '* | \
 
2160
             'mkdir (coreutils) '* | \
 
2161
             'mkdir (fileutils) '4.1*)
 
2162
               ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
 
2163
               break 3;;
 
2164
           esac
 
2165
         done
 
2166
       done
 
2167
done
 
2168
IFS=$as_save_IFS
 
2169
 
 
2170
fi
 
2171
 
 
2172
  if test "${ac_cv_path_mkdir+set}" = set; then
 
2173
    MKDIR_P="$ac_cv_path_mkdir -p"
2168
2174
  else
2169
 
    mkdir_p='$(install_sh) -d'
 
2175
    # As a last resort, use the slow shell script.  Don't cache a
 
2176
    # value for MKDIR_P within a source directory, because that will
 
2177
    # break other packages using the cache if that directory is
 
2178
    # removed, or if the value is a relative name.
 
2179
    test -d ./--version && rmdir ./--version
 
2180
    MKDIR_P="$ac_install_sh -d"
2170
2181
  fi
2171
2182
fi
 
2183
{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5
 
2184
echo "${ECHO_T}$MKDIR_P" >&6; }
 
2185
 
 
2186
mkdir_p="$MKDIR_P"
 
2187
case $mkdir_p in
 
2188
  [\\/$]* | ?:[\\/]*) ;;
 
2189
  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
 
2190
esac
2172
2191
 
2173
2192
for ac_prog in gawk mawk nawk awk
2174
2193
do
2251
2270
fi
2252
2271
rmdir .tst 2>/dev/null
2253
2272
 
2254
 
# test to see if srcdir already configured
2255
 
if test "`cd $srcdir && pwd`" != "`pwd`" &&
2256
 
   test -f $srcdir/config.status; then
2257
 
  { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
 
2273
if test "`cd $srcdir && pwd`" != "`pwd`"; then
 
2274
  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
 
2275
  # is not polluted with repeated "-I."
 
2276
  am__isrc=' -I$(srcdir)'
 
2277
  # test to see if srcdir already configured
 
2278
  if test -f $srcdir/config.status; then
 
2279
    { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
2258
2280
echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
2259
2281
   { (exit 1); exit 1; }; }
 
2282
  fi
2260
2283
fi
2261
2284
 
2262
2285
# test whether we have cygpath
2299
2322
 
2300
2323
MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
2301
2324
 
2302
 
install_sh=${install_sh-"$am_aux_dir/install-sh"}
 
2325
install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
2303
2326
 
2304
2327
# Installed binaries are usually stripped using `strip' when the user
2305
2328
# run `make install-strip'.  However `strip' might not be the right
2403
2426
fi
2404
2427
 
2405
2428
fi
2406
 
INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
 
2429
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2407
2430
 
2408
2431
# We need awk for the "check" target.  The system "awk" is bad on
2409
2432
# some platforms.
2418
2441
 
2419
2442
 
2420
2443
 
 
2444
#Offer the ability to omit some API from the library,
 
2445
#to reduce the code size:
 
2446
 
 
2447
  # Check whether --enable-api-exceptions was given.
 
2448
if test "${enable_api_exceptions+set}" = set; then
 
2449
  enableval=$enable_api_exceptions; libxmlcpp_enable_api_exceptions="$enableval"
 
2450
else
 
2451
  libxmlcpp_enable_api_exceptions='yes'
 
2452
fi
 
2453
 
 
2454
 
 
2455
  if test "x$libxmlcpp_enable_api_exceptions" = "xyes"; then
 
2456
  {
 
2457
 
 
2458
cat >>confdefs.h <<\_ACEOF
 
2459
#define LIBXMLCPP_EXCEPTIONS_ENABLED 1
 
2460
_ACEOF
 
2461
 
 
2462
  }
 
2463
  fi
 
2464
 
 
2465
 
2421
2466
ac_config_headers="$ac_config_headers config.h libxml++/libxml++config.h"
2422
2467
 
2423
2468
 
3144
3189
  am_depcomp="$ac_aux_dir/depcomp"
3145
3190
  AMDEPBACKSLASH='\'
3146
3191
fi
3147
 
 
3148
 
 
3149
 
if test "x$enable_dependency_tracking" != xno; then
 
3192
 if test "x$enable_dependency_tracking" != xno; then
3150
3193
  AMDEP_TRUE=
3151
3194
  AMDEP_FALSE='#'
3152
3195
else
3156
3199
 
3157
3200
 
3158
3201
 
3159
 
 
3160
3202
depcc="$CXX"  am_compiler_list=
3161
3203
 
3162
3204
{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
3224
3266
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
3225
3267
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
3226
3268
         >/dev/null 2>conftest.err &&
 
3269
       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
3227
3270
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
3228
3271
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
3229
3272
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
3253
3296
echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; }
3254
3297
CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type
3255
3298
 
3256
 
 
3257
 
 
3258
 
if
 
3299
 if
3259
3300
  test "x$enable_dependency_tracking" != xno \
3260
3301
  && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then
3261
3302
  am__fastdepCXX_TRUE=
4591
4632
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
4592
4633
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
4593
4634
         >/dev/null 2>conftest.err &&
 
4635
       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
4594
4636
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
4595
4637
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
4596
4638
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
4620
4662
echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
4621
4663
CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
4622
4664
 
4623
 
 
4624
 
 
4625
 
if
 
4665
 if
4626
4666
  test "x$enable_dependency_tracking" != xno \
4627
4667
  && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
4628
4668
  am__fastdepCC_TRUE=
5274
5314
  ;;
5275
5315
*-*-irix6*)
5276
5316
  # Find out which ABI we are using.
5277
 
  echo '#line 5277 "configure"' > conftest.$ac_ext
 
5317
  echo '#line 5317 "configure"' > conftest.$ac_ext
5278
5318
  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
5279
5319
  (eval $ac_compile) 2>&5
5280
5320
  ac_status=$?
7982
8022
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
7983
8023
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
7984
8024
   -e 's:$: $lt_compiler_flag:'`
7985
 
   (eval echo "\"\$as_me:7985: $lt_compile\"" >&5)
 
8025
   (eval echo "\"\$as_me:8025: $lt_compile\"" >&5)
7986
8026
   (eval "$lt_compile" 2>conftest.err)
7987
8027
   ac_status=$?
7988
8028
   cat conftest.err >&5
7989
 
   echo "$as_me:7989: \$? = $ac_status" >&5
 
8029
   echo "$as_me:8029: \$? = $ac_status" >&5
7990
8030
   if (exit $ac_status) && test -s "$ac_outfile"; then
7991
8031
     # The compiler can only warn and ignore the option if not recognized
7992
8032
     # So say no if there are warnings other than the usual output.
8250
8290
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
8251
8291
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
8252
8292
   -e 's:$: $lt_compiler_flag:'`
8253
 
   (eval echo "\"\$as_me:8253: $lt_compile\"" >&5)
 
8293
   (eval echo "\"\$as_me:8293: $lt_compile\"" >&5)
8254
8294
   (eval "$lt_compile" 2>conftest.err)
8255
8295
   ac_status=$?
8256
8296
   cat conftest.err >&5
8257
 
   echo "$as_me:8257: \$? = $ac_status" >&5
 
8297
   echo "$as_me:8297: \$? = $ac_status" >&5
8258
8298
   if (exit $ac_status) && test -s "$ac_outfile"; then
8259
8299
     # The compiler can only warn and ignore the option if not recognized
8260
8300
     # So say no if there are warnings other than the usual output.
8354
8394
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
8355
8395
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
8356
8396
   -e 's:$: $lt_compiler_flag:'`
8357
 
   (eval echo "\"\$as_me:8357: $lt_compile\"" >&5)
 
8397
   (eval echo "\"\$as_me:8397: $lt_compile\"" >&5)
8358
8398
   (eval "$lt_compile" 2>out/conftest.err)
8359
8399
   ac_status=$?
8360
8400
   cat out/conftest.err >&5
8361
 
   echo "$as_me:8361: \$? = $ac_status" >&5
 
8401
   echo "$as_me:8401: \$? = $ac_status" >&5
8362
8402
   if (exit $ac_status) && test -s out/conftest2.$ac_objext
8363
8403
   then
8364
8404
     # The compiler can only warn and ignore the option if not recognized
9851
9891
  libsuff=
9852
9892
  case "$host_cpu" in
9853
9893
  x86_64*|s390x*|powerpc64*)
9854
 
    echo '#line 9854 "configure"' > conftest.$ac_ext
 
9894
    echo '#line 9894 "configure"' > conftest.$ac_ext
9855
9895
    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
9856
9896
  (eval $ac_compile) 2>&5
9857
9897
  ac_status=$?
10827
10867
  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
10828
10868
  lt_status=$lt_dlunknown
10829
10869
  cat > conftest.$ac_ext <<EOF
10830
 
#line 10830 "configure"
 
10870
#line 10870 "configure"
10831
10871
#include "confdefs.h"
10832
10872
 
10833
10873
#if HAVE_DLFCN_H
10927
10967
  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
10928
10968
  lt_status=$lt_dlunknown
10929
10969
  cat > conftest.$ac_ext <<EOF
10930
 
#line 10930 "configure"
 
10970
#line 10970 "configure"
10931
10971
#include "confdefs.h"
10932
10972
 
10933
10973
#if HAVE_DLFCN_H
13295
13335
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
13296
13336
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
13297
13337
   -e 's:$: $lt_compiler_flag:'`
13298
 
   (eval echo "\"\$as_me:13298: $lt_compile\"" >&5)
 
13338
   (eval echo "\"\$as_me:13338: $lt_compile\"" >&5)
13299
13339
   (eval "$lt_compile" 2>conftest.err)
13300
13340
   ac_status=$?
13301
13341
   cat conftest.err >&5
13302
 
   echo "$as_me:13302: \$? = $ac_status" >&5
 
13342
   echo "$as_me:13342: \$? = $ac_status" >&5
13303
13343
   if (exit $ac_status) && test -s "$ac_outfile"; then
13304
13344
     # The compiler can only warn and ignore the option if not recognized
13305
13345
     # So say no if there are warnings other than the usual output.
13399
13439
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
13400
13440
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
13401
13441
   -e 's:$: $lt_compiler_flag:'`
13402
 
   (eval echo "\"\$as_me:13402: $lt_compile\"" >&5)
 
13442
   (eval echo "\"\$as_me:13442: $lt_compile\"" >&5)
13403
13443
   (eval "$lt_compile" 2>out/conftest.err)
13404
13444
   ac_status=$?
13405
13445
   cat out/conftest.err >&5
13406
 
   echo "$as_me:13406: \$? = $ac_status" >&5
 
13446
   echo "$as_me:13446: \$? = $ac_status" >&5
13407
13447
   if (exit $ac_status) && test -s out/conftest2.$ac_objext
13408
13448
   then
13409
13449
     # The compiler can only warn and ignore the option if not recognized
13935
13975
  libsuff=
13936
13976
  case "$host_cpu" in
13937
13977
  x86_64*|s390x*|powerpc64*)
13938
 
    echo '#line 13938 "configure"' > conftest.$ac_ext
 
13978
    echo '#line 13978 "configure"' > conftest.$ac_ext
13939
13979
    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
13940
13980
  (eval $ac_compile) 2>&5
13941
13981
  ac_status=$?
14990
15030
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
14991
15031
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
14992
15032
   -e 's:$: $lt_compiler_flag:'`
14993
 
   (eval echo "\"\$as_me:14993: $lt_compile\"" >&5)
 
15033
   (eval echo "\"\$as_me:15033: $lt_compile\"" >&5)
14994
15034
   (eval "$lt_compile" 2>conftest.err)
14995
15035
   ac_status=$?
14996
15036
   cat conftest.err >&5
14997
 
   echo "$as_me:14997: \$? = $ac_status" >&5
 
15037
   echo "$as_me:15037: \$? = $ac_status" >&5
14998
15038
   if (exit $ac_status) && test -s "$ac_outfile"; then
14999
15039
     # The compiler can only warn and ignore the option if not recognized
15000
15040
     # So say no if there are warnings other than the usual output.
15094
15134
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
15095
15135
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
15096
15136
   -e 's:$: $lt_compiler_flag:'`
15097
 
   (eval echo "\"\$as_me:15097: $lt_compile\"" >&5)
 
15137
   (eval echo "\"\$as_me:15137: $lt_compile\"" >&5)
15098
15138
   (eval "$lt_compile" 2>out/conftest.err)
15099
15139
   ac_status=$?
15100
15140
   cat out/conftest.err >&5
15101
 
   echo "$as_me:15101: \$? = $ac_status" >&5
 
15141
   echo "$as_me:15141: \$? = $ac_status" >&5
15102
15142
   if (exit $ac_status) && test -s out/conftest2.$ac_objext
15103
15143
   then
15104
15144
     # The compiler can only warn and ignore the option if not recognized
16571
16611
  libsuff=
16572
16612
  case "$host_cpu" in
16573
16613
  x86_64*|s390x*|powerpc64*)
16574
 
    echo '#line 16574 "configure"' > conftest.$ac_ext
 
16614
    echo '#line 16614 "configure"' > conftest.$ac_ext
16575
16615
    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
16576
16616
  (eval $ac_compile) 2>&5
16577
16617
  ac_status=$?
17345
17385
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
17346
17386
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
17347
17387
   -e 's:$: $lt_compiler_flag:'`
17348
 
   (eval echo "\"\$as_me:17348: $lt_compile\"" >&5)
 
17388
   (eval echo "\"\$as_me:17388: $lt_compile\"" >&5)
17349
17389
   (eval "$lt_compile" 2>conftest.err)
17350
17390
   ac_status=$?
17351
17391
   cat conftest.err >&5
17352
 
   echo "$as_me:17352: \$? = $ac_status" >&5
 
17392
   echo "$as_me:17392: \$? = $ac_status" >&5
17353
17393
   if (exit $ac_status) && test -s "$ac_outfile"; then
17354
17394
     # The compiler can only warn and ignore the option if not recognized
17355
17395
     # So say no if there are warnings other than the usual output.
17613
17653
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
17614
17654
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
17615
17655
   -e 's:$: $lt_compiler_flag:'`
17616
 
   (eval echo "\"\$as_me:17616: $lt_compile\"" >&5)
 
17656
   (eval echo "\"\$as_me:17656: $lt_compile\"" >&5)
17617
17657
   (eval "$lt_compile" 2>conftest.err)
17618
17658
   ac_status=$?
17619
17659
   cat conftest.err >&5
17620
 
   echo "$as_me:17620: \$? = $ac_status" >&5
 
17660
   echo "$as_me:17660: \$? = $ac_status" >&5
17621
17661
   if (exit $ac_status) && test -s "$ac_outfile"; then
17622
17662
     # The compiler can only warn and ignore the option if not recognized
17623
17663
     # So say no if there are warnings other than the usual output.
17717
17757
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
17718
17758
   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
17719
17759
   -e 's:$: $lt_compiler_flag:'`
17720
 
   (eval echo "\"\$as_me:17720: $lt_compile\"" >&5)
 
17760
   (eval echo "\"\$as_me:17760: $lt_compile\"" >&5)
17721
17761
   (eval "$lt_compile" 2>out/conftest.err)
17722
17762
   ac_status=$?
17723
17763
   cat out/conftest.err >&5
17724
 
   echo "$as_me:17724: \$? = $ac_status" >&5
 
17764
   echo "$as_me:17764: \$? = $ac_status" >&5
17725
17765
   if (exit $ac_status) && test -s out/conftest2.$ac_objext
17726
17766
   then
17727
17767
     # The compiler can only warn and ignore the option if not recognized
19214
19254
  libsuff=
19215
19255
  case "$host_cpu" in
19216
19256
  x86_64*|s390x*|powerpc64*)
19217
 
    echo '#line 19217 "configure"' > conftest.$ac_ext
 
19257
    echo '#line 19257 "configure"' > conftest.$ac_ext
19218
19258
    if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
19219
19259
  (eval $ac_compile) 2>&5
19220
19260
  ac_status=$?
20445
20485
esac
20446
20486
{ echo "$as_me:$LINENO: result: $platform_win32" >&5
20447
20487
echo "${ECHO_T}$platform_win32" >&6; }
20448
 
 
20449
 
 
20450
 
if test "$platform_win32" = "yes"; then
 
20488
 if test "$platform_win32" = "yes"; then
20451
20489
  PLATFORM_WIN32_TRUE=
20452
20490
  PLATFORM_WIN32_FALSE='#'
20453
20491
else
20468
20506
esac
20469
20507
{ echo "$as_me:$LINENO: result: $os_win32" >&5
20470
20508
echo "${ECHO_T}$os_win32" >&6; }
20471
 
 
20472
 
 
20473
 
if test "$os_win32" = "yes"; then
 
20509
 if test "$os_win32" = "yes"; then
20474
20510
  OS_WIN32_TRUE=
20475
20511
  OS_WIN32_FALSE='#'
20476
20512
else
21010
21046
 
21011
21047
# Dummy conditional just to make automake-1.4 happy.
21012
21048
# We need an always-false condition in docs/Makefile.am.
21013
 
 
21014
 
 
21015
 
if false; then
 
21049
 if false; then
21016
21050
  LIBXMLCPP_FALSE_TRUE=
21017
21051
  LIBXMLCPP_FALSE_FALSE='#'
21018
21052
else
21025
21059
# maintainer-mode rules.  That would fail since we aren't using autoheader.
21026
21060
AUTOHEADER=':'
21027
21061
 
21028
 
ac_config_files="$ac_config_files Makefile libxml++/Makefile libxml++/parsers/Makefile libxml++/exceptions/Makefile libxml++/nodes/Makefile libxml++/io/Makefile libxml++/validators/Makefile docs/Makefile docs/reference/Makefile docs/reference/Doxyfile docs/manual/Makefile examples/Makefile examples/dom_build/Makefile examples/dom_parser/Makefile examples/dom_parser_raw/Makefile examples/dom_parse_entities/Makefile examples/dom_read_write/Makefile examples/dom_xpath/Makefile examples/sax_parser/Makefile examples/sax_parser_entities/Makefile examples/sax_parser_build_dom/Makefile examples/sax_exception/Makefile examples/import_node/Makefile examples/textreader/Makefile examples/dtdvalidation/Makefile win32_msvc6/Makefile win32_msvc6/examples/Makefile MSVC_Net2003/Makefile MSVC_Net2003/libxml++/Makefile MSVC_Net2003/libxml++/libxml++.rc MSVC_Net2003/gendef/Makefile MSVC_Net2003/examples/Makefile MSVC_Net2003/examples/dom_build/Makefile MSVC_Net2003/examples/dom_parse_entities/Makefile MSVC_Net2003/examples/dom_parser/Makefile MSVC_Net2003/examples/dom_read_write/Makefile MSVC_Net2003/examples/dom_xpath/Makefile MSVC_Net2003/examples/dtdvalidation/Makefile MSVC_Net2003/examples/import_node/Makefile MSVC_Net2003/examples/sax_exception/Makefile MSVC_Net2003/examples/sax_parser/Makefile MSVC_Net2003/examples/sax_parser_build_dom/Makefile MSVC_Net2003/examples/sax_parser_entities/Makefile MSVC_Net2003/examples/textreader/Makefile libxml++-2.6.pc libxml++.spec"
 
21062
ac_config_files="$ac_config_files Makefile libxml++/Makefile libxml++/parsers/Makefile libxml++/exceptions/Makefile libxml++/nodes/Makefile libxml++/io/Makefile libxml++/validators/Makefile scripts/Makefile docs/Makefile docs/reference/Makefile docs/reference/Doxyfile docs/manual/Makefile examples/Makefile examples/dom_build/Makefile examples/dom_parser/Makefile examples/dom_parser_raw/Makefile examples/dom_parse_entities/Makefile examples/dom_read_write/Makefile examples/dom_xpath/Makefile examples/sax_parser/Makefile examples/sax_parser_entities/Makefile examples/sax_parser_build_dom/Makefile examples/sax_exception/Makefile examples/import_node/Makefile examples/textreader/Makefile examples/dtdvalidation/Makefile win32_msvc6/Makefile win32_msvc6/examples/Makefile MSVC_Net2003/Makefile MSVC_Net2003/libxml++/Makefile MSVC_Net2003/libxml++/libxml++.rc MSVC_Net2003/gendef/Makefile MSVC_Net2003/examples/Makefile MSVC_Net2003/examples/dom_build/Makefile MSVC_Net2003/examples/dom_parse_entities/Makefile MSVC_Net2003/examples/dom_parser/Makefile MSVC_Net2003/examples/dom_read_write/Makefile MSVC_Net2003/examples/dom_xpath/Makefile MSVC_Net2003/examples/dtdvalidation/Makefile MSVC_Net2003/examples/import_node/Makefile MSVC_Net2003/examples/sax_exception/Makefile MSVC_Net2003/examples/sax_parser/Makefile MSVC_Net2003/examples/sax_parser_build_dom/Makefile MSVC_Net2003/examples/sax_parser_entities/Makefile MSVC_Net2003/examples/textreader/Makefile libxml++-2.6.pc libxml++.spec"
21029
21063
 
21030
21064
cat >confcache <<\_ACEOF
21031
21065
# This file is a shell script that caches the results of configure
21516
21550
ac_pwd='$ac_pwd'
21517
21551
srcdir='$srcdir'
21518
21552
INSTALL='$INSTALL'
 
21553
MKDIR_P='$MKDIR_P'
21519
21554
_ACEOF
21520
21555
 
21521
21556
cat >>$CONFIG_STATUS <<\_ACEOF
21628
21663
    "libxml++/nodes/Makefile") CONFIG_FILES="$CONFIG_FILES libxml++/nodes/Makefile" ;;
21629
21664
    "libxml++/io/Makefile") CONFIG_FILES="$CONFIG_FILES libxml++/io/Makefile" ;;
21630
21665
    "libxml++/validators/Makefile") CONFIG_FILES="$CONFIG_FILES libxml++/validators/Makefile" ;;
 
21666
    "scripts/Makefile") CONFIG_FILES="$CONFIG_FILES scripts/Makefile" ;;
21631
21667
    "docs/Makefile") CONFIG_FILES="$CONFIG_FILES docs/Makefile" ;;
21632
21668
    "docs/reference/Makefile") CONFIG_FILES="$CONFIG_FILES docs/reference/Makefile" ;;
21633
21669
    "docs/reference/Doxyfile") CONFIG_FILES="$CONFIG_FILES docs/reference/Doxyfile" ;;
21774
21810
INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
21775
21811
INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
21776
21812
INSTALL_DATA!$INSTALL_DATA$ac_delim
 
21813
am__isrc!$am__isrc$ac_delim
21777
21814
CYGPATH_W!$CYGPATH_W$ac_delim
21778
21815
PACKAGE!$PACKAGE$ac_delim
21779
21816
VERSION!$VERSION$ac_delim
21825
21862
am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim
21826
21863
GREP!$GREP$ac_delim
21827
21864
EGREP!$EGREP$ac_delim
21828
 
LN_S!$LN_S$ac_delim
21829
21865
_ACEOF
21830
21866
 
21831
21867
  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
21867
21903
ac_delim='%!_!# '
21868
21904
for ac_last_try in false false false false false :; do
21869
21905
  cat >conf$$subs.sed <<_ACEOF
 
21906
LN_S!$LN_S$ac_delim
21870
21907
ECHO!$ECHO$ac_delim
21871
21908
AR!$AR$ac_delim
21872
21909
RANLIB!$RANLIB$ac_delim
21892
21929
LTLIBOBJS!$LTLIBOBJS$ac_delim
21893
21930
_ACEOF
21894
21931
 
21895
 
  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 23; then
 
21932
  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 24; then
21896
21933
    break
21897
21934
  elif $ac_last_try; then
21898
21935
    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
22119
22156
  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
22120
22157
  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
22121
22158
  esac
 
22159
  ac_MKDIR_P=$MKDIR_P
 
22160
  case $MKDIR_P in
 
22161
  [\\/$]* | ?:[\\/]* ) ;;
 
22162
  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
 
22163
  esac
22122
22164
_ACEOF
22123
22165
 
22124
22166
cat >>$CONFIG_STATUS <<\_ACEOF
22172
22214
s&@abs_builddir@&$ac_abs_builddir&;t t
22173
22215
s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
22174
22216
s&@INSTALL@&$ac_INSTALL&;t t
 
22217
s&@MKDIR_P@&$ac_MKDIR_P&;t t
22175
22218
$ac_datarootdir_hack
22176
22219
" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out
22177
22220
 
22336
22379
  # some people rename them; so instead we look at the file content.
22337
22380
  # Grep'ing the first line is not enough: some people post-process
22338
22381
  # each Makefile.in and add a new line on top of each file to say so.
22339
 
  # So let's grep whole file.
22340
 
  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
 
22382
  # Grep'ing the whole file is not good either: AIX grep has a line
 
22383
  # limit of 2048, but all sed's we know have understand at least 4000.
 
22384
  if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then
22341
22385
    dirpart=`$as_dirname -- "$mf" ||
22342
22386
$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
22343
22387
         X"$mf" : 'X\(//\)[^/]' \| \