~ubuntu-branches/ubuntu/jaunty/totem/jaunty-updates

« back to all changes in this revision

Viewing changes to debian/patches/70_autotools.patch

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-10-30 18:50:15 UTC
  • mfrom: (1.1.46 upstream)
  • Revision ID: james.westby@ubuntu.com-20081030185015-vldtzsr9soj4au8m
Tags: 2.24.3-0ubuntu1
* New upstream version:
  - Fix YouTube plugin for recent website changes
  - Allow clicking on the seekbar to get to the selected position 
    (lp: #244157)
  - Fix some keys not being usable in the sidebar
  - Fix possible hangs in the YouTube plugin
* debian/patches/90_youtube_url_update.patch:
  - the change is in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
diff -Nurb totem-2.24.2/aclocal.m4 totem-2.24.2.new/aclocal.m4
2
 
--- totem-2.24.2/aclocal.m4     2008-10-07 16:18:48.000000000 +0200
3
 
+++ totem-2.24.2.new/aclocal.m4 2008-10-08 15:16:08.000000000 +0200
4
 
@@ -34,8 +34,10 @@
5
 
     GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE
6
 
   fi
7
 
 
8
 
-  AC_ARG_WITH(gconf-source, 
9
 
-  [  --with-gconf-source=sourceaddress      Config database for installing schema files.],GCONF_SCHEMA_CONFIG_SOURCE="$withval",)
10
 
+  AC_ARG_WITH([gconf-source],
11
 
+             AC_HELP_STRING([--with-gconf-source=sourceaddress],
12
 
+                            [Config database for installing schema files.]),
13
 
+             [GCONF_SCHEMA_CONFIG_SOURCE="$withval"],)
14
 
 
15
 
   AC_SUBST(GCONF_SCHEMA_CONFIG_SOURCE)
16
 
   AC_MSG_RESULT([Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation])
17
 
@@ -44,8 +46,10 @@
18
 
     GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas'
19
 
   fi
20
 
 
21
 
-  AC_ARG_WITH(gconf-schema-file-dir, 
22
 
-  [  --with-gconf-schema-file-dir=dir        Directory for installing schema files.],GCONF_SCHEMA_FILE_DIR="$withval",)
23
 
+  AC_ARG_WITH([gconf-schema-file-dir],
24
 
+             AC_HELP_STRING([--with-gconf-schema-file-dir=dir],
25
 
+                            [Directory for installing schema files.]),
26
 
+             [GCONF_SCHEMA_FILE_DIR="$withval"],)
27
 
 
28
 
   AC_SUBST(GCONF_SCHEMA_FILE_DIR)
29
 
   AC_MSG_RESULT([Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files])
30
 
@@ -738,8 +742,9 @@
31
 
 
32
 
 dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml])
33
 
 # serial 40 IT_PROG_INTLTOOL
34
 
-AC_DEFUN([IT_PROG_INTLTOOL],
35
 
-[AC_PREREQ([2.50])dnl
36
 
+AC_DEFUN([IT_PROG_INTLTOOL], [
37
 
+AC_PREREQ([2.50])dnl
38
 
+AC_REQUIRE([AM_NLS])dnl
39
 
 
40
 
 case "$am__api_version" in
41
 
     1.[01234])
42
 
@@ -812,6 +817,7 @@
43
 
 AC_PATH_PROG(XGETTEXT, xgettext)
44
 
 AC_PATH_PROG(MSGMERGE, msgmerge)
45
 
 AC_PATH_PROG(MSGFMT, msgfmt)
46
 
+AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
47
 
 if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
48
 
     AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
49
 
 fi
50
 
@@ -891,22 +897,17 @@
51
 
        '"s|^|  $ac_top_srcdir/|" \
52
 
       "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES"
53
 
     ]
54
 
-    if test ! -f "$1/Makefile"; then
55
 
-      AC_MSG_ERROR([$1/Makefile is not ready.])
56
 
-    fi
57
 
-    mv "$1/Makefile" "$1/Makefile.tmp"
58
 
     [sed '/^POTFILES =/,/[^\\]$/ {
59
 
                /^POTFILES =/!d
60
 
                r $1/POTFILES
61
 
          }
62
 
-        ' "$1/Makefile.tmp" >"$1/Makefile"]
63
 
+        ' "$1/Makefile.in" >"$1/Makefile"]
64
 
     rm -f "$1/Makefile.tmp"
65
 
     mv "$1/stamp-it.tmp" "$1/stamp-it"
66
 
   ])
67
 
 ])dnl
68
 
 ])
69
 
 
70
 
-
71
 
 # deprecated macros
72
 
 AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL])
73
 
 # A hint is needed for aclocal from Automake <= 1.9.4:
74
 
@@ -914,102 +915,187 @@
 
1
Index: totem-2.24.3/aclocal.m4
 
2
===================================================================
 
3
--- totem-2.24.3.orig/aclocal.m4        2008-10-26 15:40:41.000000000 +0100
 
4
+++ totem-2.24.3/aclocal.m4     2008-10-30 19:06:27.000000000 +0100
 
5
@@ -13,8 +13,8 @@
 
6
 
 
7
 m4_ifndef([AC_AUTOCONF_VERSION],
 
8
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
 
9
-m4_if(AC_AUTOCONF_VERSION, [2.63],,
 
10
-[m4_warning([this file was generated for autoconf 2.63.
 
11
+m4_if(AC_AUTOCONF_VERSION, [2.61],,
 
12
+[m4_warning([this file was generated for autoconf 2.61.
 
13
 You have another version of autoconf.  It may work, but is not guaranteed to.
 
14
 If you have problems, you may need to regenerate the build system entirely.
 
15
 To do so, use the procedure documented by the package, typically `autoreconf'.])])
 
16
@@ -918,101 +918,187 @@
75
17
 
76
18
 
77
19
 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
113
55
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
114
56
+])
115
57
 
116
 
-# serial 51 AC_PROG_LIBTOOL
 
58
-# serial 52 AC_PROG_LIBTOOL
117
59
+# serial 56 LT_INIT
118
60
 
119
61
 
298
240
-AC_REQUIRE([AC_EXEEXT])dnl
299
241
+test -z "$LN_S" && LN_S="ln -s"
300
242
+_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl
301
 
+dnl
 
243
 dnl
 
244
-AC_LIBTOOL_SYS_MAX_CMD_LEN
 
245
-AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
 
246
-AC_LIBTOOL_OBJDIR
302
247
+AC_REQUIRE([LT_CMD_MAX_LEN])dnl
303
248
+_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl
304
249
+_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl
305
 
 dnl
 
250
+dnl
306
251
+m4_require([_LT_FILEUTILS_DEFAULTS])dnl
307
252
+m4_require([_LT_CHECK_SHELL_FEATURES])dnl
308
253
+m4_require([_LT_CMD_RELOAD])dnl
320
265
+if test -n "${ZSH_VERSION+set}" ; then
321
266
+   setopt NO_GLOB_SUBST
322
267
+fi
323
 
 
324
 
-AC_LIBTOOL_SYS_MAX_CMD_LEN
325
 
-AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
326
 
-AC_LIBTOOL_OBJDIR
 
268
+
327
269
+_LT_CHECK_OBJDIR
328
270
 
329
271
-AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
333
275
 
334
276
 case $host_os in
335
277
 aix3*)
336
 
@@ -1025,1128 +1111,1858 @@
 
278
@@ -1028,6533 +1114,7722 @@
337
279
 
338
280
 # Sed substitution that helps us do robust quoting.  It backslashifies
339
281
 # metacharacters that are still active within double-quoted strings.
426
368
   ;;
427
369
 esac
428
370
 
429
 
-AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no)
430
 
-AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
431
 
-enable_win32_dll=yes, enable_win32_dll=no)
 
371
-_LT_REQUIRED_DARWIN_CHECKS
432
372
+# Use C for the default configuration in the libtool script
433
373
+LT_SUPPORTED_TAG([CC])
434
374
+_LT_LANG_C_CONFIG
436
376
+_LT_CONFIG_COMMANDS
437
377
+])# _LT_SETUP
438
378
 
 
379
-AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no)
 
380
-AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
 
381
-enable_win32_dll=yes, enable_win32_dll=no)
 
382
-
439
383
-AC_ARG_ENABLE([libtool-lock],
440
384
-    [AC_HELP_STRING([--disable-libtool-lock],
441
385
-       [avoid locking (might break parallel builds)])])
563
507
-echo "$lt_simple_link_test_code" >conftest.$ac_ext
564
508
-eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
565
509
-_lt_linker_boilerplate=`cat conftest.err`
566
 
-$rm conftest*
 
510
-$rm -r conftest*
567
511
-])# _LT_LINKER_BOILERPLATE
568
512
 
569
 
 
570
 
-# _LT_AC_SYS_LIBPATH_AIX
571
 
-# ----------------------
572
 
-# Links a minimal program and checks the executable
573
 
-# for the system default hardcoded library path. In most cases,
574
 
-# this is /usr/lib:/lib, but when the MPI compilers are used
575
 
-# the location of the communication and MPI libs are included too.
576
 
-# If we don't find anything, use the default library path according
577
 
-# to the aix ld manual.
578
 
-AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX],
579
 
-[AC_REQUIRE([LT_AC_PROG_SED])dnl
580
 
-AC_LINK_IFELSE(AC_LANG_PROGRAM,[
581
 
-lt_aix_libpath_sed='
582
 
-    /Import File Strings/,/^$/ {
583
 
-       /^0/ {
584
 
-           s/^0  *\(.*\)$/\1/
585
 
-           p
586
 
-       }
587
 
-    }'
588
 
-aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
589
 
-# Check for a 64-bit object if we didn't find anything.
590
 
-if test -z "$aix_libpath"; then
591
 
-  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
592
 
-fi],[])
593
 
-if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
594
 
-])# _LT_AC_SYS_LIBPATH_AIX
595
 
 
 
513
-# _LT_REQUIRED_DARWIN_CHECKS
 
514
-# --------------------------
 
515
-# Check for some things on darwin
 
516
-AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS],[
 
517
-  case $host_os in
 
518
-    rhapsody* | darwin*)
 
519
-    AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:])
 
520
-    AC_CHECK_TOOL([NMEDIT], [nmedit], [:])
 
521
 
 
522
-    AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],
 
523
-      [lt_cv_apple_cc_single_mod=no
 
524
-      if test -z "${LT_MULTI_MODULE}"; then
 
525
-   # By default we will add the -single_module flag. You can override
 
526
-   # by either setting the environment variable LT_MULTI_MODULE
 
527
-   # non-empty at configure time, or by adding -multi_module to the
 
528
-   # link flags.
 
529
-   echo "int foo(void){return 1;}" > conftest.c
 
530
-   $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
 
531
-     -dynamiclib ${wl}-single_module conftest.c
 
532
-   if test -f libconftest.dylib; then
 
533
-     lt_cv_apple_cc_single_mod=yes
 
534
-     rm -rf libconftest.dylib*
 
535
-   fi
 
536
-   rm conftest.c
 
537
-      fi])
 
538
-    AC_CACHE_CHECK([for -exported_symbols_list linker flag],
 
539
-      [lt_cv_ld_exported_symbols_list],
 
540
-      [lt_cv_ld_exported_symbols_list=no
 
541
-      save_LDFLAGS=$LDFLAGS
 
542
-      echo "_main" > conftest.sym
 
543
-      LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym"
 
544
-      AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
 
545
-   [lt_cv_ld_exported_symbols_list=yes],
 
546
-   [lt_cv_ld_exported_symbols_list=no])
 
547
-   LDFLAGS="$save_LDFLAGS"
 
548
-    ])
 
549
-    case $host_os in
 
550
-    rhapsody* | darwin1.[[0123]])
 
551
-      _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
 
552
-    darwin1.*)
 
553
-     _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
 
554
-    darwin*)
 
555
-      # if running on 10.5 or later, the deployment target defaults
 
556
-      # to the OS version, if on x86, and 10.4, the deployment
 
557
-      # target defaults to 10.4. Don't you love it?
 
558
-      case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
 
559
-   10.0,*86*-darwin8*|10.0,*-darwin[[91]]*)
 
560
-     _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
 
561
-   10.[[012]]*)
 
562
-     _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
 
563
-   10.*)
 
564
-     _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
 
565
-      esac
 
566
-    ;;
 
567
-  esac
 
568
-    if test "$lt_cv_apple_cc_single_mod" = "yes"; then
 
569
-      _lt_dar_single_mod='$single_module'
 
570
-    fi
 
571
-    if test "$lt_cv_ld_exported_symbols_list" = "yes"; then
 
572
-      _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
 
573
-    else
 
574
-      _lt_dar_export_syms="~$NMEDIT -s \$output_objdir/\${libname}-symbols.expsym \${lib}"
 
575
-    fi
 
576
-    if test "$DSYMUTIL" != ":"; then
 
577
-      _lt_dsymutil="~$DSYMUTIL \$lib || :"
 
578
-    else
 
579
-      _lt_dsymutil=
 
580
-    fi
 
581
-    ;;
 
582
-  esac
 
583
+
596
584
+# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?])
597
585
+# -------------------------------------------------------------------
598
586
+# CONFIGNAME is the name given to the value in the libtool script.
608
596
+       [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])])
609
597
+    lt_dict_add_subkey([lt_decl_dict], [$2],
610
598
+       [tagged?], [m4_ifval([$5], [yes], [no])])])
611
 
+])
 
599
 ])
 
600
 
 
601
-# _LT_AC_SYS_LIBPATH_AIX
 
602
-# ----------------------
 
603
-# Links a minimal program and checks the executable
 
604
-# for the system default hardcoded library path. In most cases,
 
605
-# this is /usr/lib:/lib, but when the MPI compilers are used
 
606
-# the location of the communication and MPI libs are included too.
 
607
-# If we don't find anything, use the default library path according
 
608
-# to the aix ld manual.
 
609
-AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX],
 
610
-[AC_REQUIRE([LT_AC_PROG_SED])dnl
 
611
-AC_LINK_IFELSE(AC_LANG_PROGRAM,[
 
612
-lt_aix_libpath_sed='
 
613
-    /Import File Strings/,/^$/ {
 
614
-       /^0/ {
 
615
-           s/^0  *\(.*\)$/\1/
 
616
-           p
 
617
-       }
 
618
-    }'
 
619
-aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
 
620
-# Check for a 64-bit object if we didn't find anything.
 
621
-if test -z "$aix_libpath"; then
 
622
-  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
 
623
-fi],[])
 
624
-if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 
625
-])# _LT_AC_SYS_LIBPATH_AIX
 
626
 
 
627
+# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION])
 
628
+# --------------------------------------------------------
 
629
+m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])])
612
630
 
613
631
-# _LT_AC_SHELL_INIT(ARG)
614
632
-# ----------------------
620
638
-AC_DIVERT_POP
621
639
-])# _LT_AC_SHELL_INIT
622
640
 
623
 
+# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION])
624
 
+# --------------------------------------------------------
625
 
+m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])])
 
641
+# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...])
 
642
+# ------------------------------------------------
 
643
+m4_define([lt_decl_tag_varnames],
 
644
+[_lt_decl_filter([tagged?], [yes], $@)])
626
645
 
627
646
-# _LT_AC_PROG_ECHO_BACKSLASH
628
647
-# --------------------------
639
658
-  ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
640
659
-  ;;
641
660
-esac
642
 
+# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...])
643
 
+# ------------------------------------------------
644
 
+m4_define([lt_decl_tag_varnames],
645
 
+[_lt_decl_filter([tagged?], [yes], $@)])
646
 
 
647
 
-echo=${ECHO-echo}
648
 
-if test "X[$]1" = X--no-reexec; then
649
 
-  # Discard the --no-reexec flag, and continue.
650
 
-  shift
651
 
-elif test "X[$]1" = X--fallback-echo; then
652
 
-  # Avoid inline document here, it may be left over
653
 
-  :
654
 
-elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
655
 
-  # Yippee, $echo works!
656
 
-  :
657
 
-else
658
 
-  # Restart under the correct shell.
659
 
-  exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
660
 
-fi
661
 
 
662
 
-if test "X[$]1" = X--fallback-echo; then
663
 
-  # used as fallback echo
664
 
-  shift
665
 
-  cat <<EOF
666
 
-[$]*
667
 
-EOF
668
 
-  exit 0
669
 
-fi
670
661
+# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..])
671
662
+# ---------------------------------------------------------
672
663
+m4_define([_lt_decl_filter],
678
669
+  [lt_dict_filter([lt_decl_dict], $@)])[]dnl
679
670
+])
680
671
 
681
 
-# The HP-UX ksh and POSIX shell print the target directory to stdout
682
 
-# if CDPATH is set.
683
 
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
672
-echo=${ECHO-echo}
 
673
-if test "X[$]1" = X--no-reexec; then
 
674
-  # Discard the --no-reexec flag, and continue.
 
675
-  shift
 
676
-elif test "X[$]1" = X--fallback-echo; then
 
677
-  # Avoid inline document here, it may be left over
 
678
-  :
 
679
-elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
 
680
-  # Yippee, $echo works!
 
681
-  :
 
682
-else
 
683
-  # Restart under the correct shell.
 
684
-  exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
 
685
-fi
684
686
 
685
 
-if test -z "$ECHO"; then
686
 
-if test "X${echo_test_string+set}" != Xset; then
687
 
-# find a string as large as possible, as long as the shell can cope with it
688
 
-  for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
689
 
-    # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
690
 
-    if (echo_test_string=`eval $cmd`) 2>/dev/null &&
691
 
-       echo_test_string=`eval $cmd` &&
692
 
-       (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
693
 
-    then
694
 
-      break
695
 
-    fi
696
 
-  done
 
687
-if test "X[$]1" = X--fallback-echo; then
 
688
-  # used as fallback echo
 
689
-  shift
 
690
-  cat <<EOF
 
691
-[$]*
 
692
-EOF
 
693
-  exit 0
697
694
-fi
698
695
+# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...])
699
696
+# --------------------------------------------------
700
697
+m4_define([lt_decl_quote_varnames],
701
698
+[_lt_decl_filter([value], [1], $@)])
702
699
 
703
 
-if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
704
 
-   echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
705
 
-   test "X$echo_testing_string" = "X$echo_test_string"; then
706
 
-  :
707
 
-else
708
 
-  # The Solaris, AIX, and Digital Unix default echo programs unquote
709
 
-  # backslashes.  This makes it impossible to quote backslashes using
710
 
-  #   echo "$something" | sed 's/\\/\\\\/g'
711
 
-  #
712
 
-  # So, first we look for a working echo in the user's PATH.
 
700
-# The HP-UX ksh and POSIX shell print the target directory to stdout
 
701
-# if CDPATH is set.
 
702
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
713
703
 
714
 
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
715
 
-  for dir in $PATH /usr/ucb; do
716
 
-    IFS="$lt_save_ifs"
717
 
-    if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
718
 
-       test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
719
 
-       echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
720
 
-       test "X$echo_testing_string" = "X$echo_test_string"; then
721
 
-      echo="$dir/echo"
 
704
-if test -z "$ECHO"; then
 
705
-if test "X${echo_test_string+set}" != Xset; then
 
706
-# find a string as large as possible, as long as the shell can cope with it
 
707
-  for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
 
708
-    # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
 
709
-    if (echo_test_string=`eval $cmd`) 2>/dev/null &&
 
710
-       echo_test_string=`eval $cmd` &&
 
711
-       (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
 
712
-    then
722
713
-      break
723
714
-    fi
724
715
-  done
725
 
-  IFS="$lt_save_ifs"
 
716
-fi
726
717
+# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...])
727
718
+# ---------------------------------------------------
728
719
+m4_define([lt_decl_dquote_varnames],
729
720
+[_lt_decl_filter([value], [2], $@)])
730
721
 
731
 
-  if test "X$echo" = Xecho; then
732
 
-    # We didn't find a better echo, so look for alternatives.
733
 
-    if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
734
 
-       echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
 
722
-if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
 
723
-   echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
 
724
-   test "X$echo_testing_string" = "X$echo_test_string"; then
 
725
-  :
 
726
-else
 
727
-  # The Solaris, AIX, and Digital Unix default echo programs unquote
 
728
-  # backslashes.  This makes it impossible to quote backslashes using
 
729
-  #   echo "$something" | sed 's/\\/\\\\/g'
 
730
-  #
 
731
-  # So, first we look for a working echo in the user's PATH.
 
732
 
 
733
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 
734
-  for dir in $PATH /usr/ucb; do
 
735
-    IFS="$lt_save_ifs"
 
736
-    if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
 
737
-       test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
 
738
-       echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
735
739
-       test "X$echo_testing_string" = "X$echo_test_string"; then
736
 
-      # This shell has a builtin print -r that does the trick.
737
 
-      echo='print -r'
738
 
-    elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
739
 
-        test "X$CONFIG_SHELL" != X/bin/ksh; then
740
 
-      # If we have ksh, try running configure again with it.
741
 
-      ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
742
 
-      export ORIGINAL_CONFIG_SHELL
743
 
-      CONFIG_SHELL=/bin/ksh
744
 
-      export CONFIG_SHELL
745
 
-      exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"}
746
 
-    else
747
 
-      # Try using printf.
748
 
-      echo='printf %s\n'
749
 
-      if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
750
 
-        echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
751
 
-        test "X$echo_testing_string" = "X$echo_test_string"; then
752
 
-       # Cool, printf works
753
 
-       :
754
 
-      elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
755
 
-          test "X$echo_testing_string" = 'X\t' &&
756
 
-          echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
757
 
-          test "X$echo_testing_string" = "X$echo_test_string"; then
758
 
-       CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
759
 
-       export CONFIG_SHELL
760
 
-       SHELL="$CONFIG_SHELL"
761
 
-       export SHELL
762
 
-       echo="$CONFIG_SHELL [$]0 --fallback-echo"
763
 
-      elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
764
 
-          test "X$echo_testing_string" = 'X\t' &&
765
 
-          echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
766
 
-          test "X$echo_testing_string" = "X$echo_test_string"; then
767
 
-       echo="$CONFIG_SHELL [$]0 --fallback-echo"
768
 
-      else
769
 
-       # maybe with a smaller string...
770
 
-       prev=:
771
 
 
772
 
-       for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
773
 
-         if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
774
 
-         then
775
 
-           break
776
 
-         fi
777
 
-         prev="$cmd"
778
 
-       done
 
740
-      echo="$dir/echo"
 
741
-      break
 
742
-    fi
 
743
-  done
 
744
-  IFS="$lt_save_ifs"
779
745
+# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...])
780
746
+# ---------------------------------------------------
781
747
+m4_define([lt_decl_varnames_tagged],
786
752
+     m4_split(m4_normalize(m4_quote(_LT_TAGS))))])
787
753
+m4_define([_lt_decl_varnames_tagged], [lt_combine([$1], [$2], [_], $3)])
788
754
 
789
 
-       if test "$prev" != 'sed 50q "[$]0"'; then
790
 
-         echo_test_string=`eval $prev`
791
 
-         export echo_test_string
792
 
-         exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"}
793
 
-       else
794
 
-         # Oops.  We lost completely, so just stick with echo.
795
 
-         echo=echo
796
 
-       fi
797
 
-      fi
798
 
-    fi
799
 
-  fi
800
 
-fi
801
 
-fi
 
755
-  if test "X$echo" = Xecho; then
 
756
-    # We didn't find a better echo, so look for alternatives.
 
757
-    if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
 
758
-       echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
 
759
-       test "X$echo_testing_string" = "X$echo_test_string"; then
 
760
-      # This shell has a builtin print -r that does the trick.
 
761
-      echo='print -r'
 
762
-    elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
 
763
-        test "X$CONFIG_SHELL" != X/bin/ksh; then
 
764
-      # If we have ksh, try running configure again with it.
 
765
-      ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
 
766
-      export ORIGINAL_CONFIG_SHELL
 
767
-      CONFIG_SHELL=/bin/ksh
 
768
-      export CONFIG_SHELL
 
769
-      exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"}
 
770
-    else
 
771
-      # Try using printf.
 
772
-      echo='printf %s\n'
 
773
-      if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
 
774
-        echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
 
775
-        test "X$echo_testing_string" = "X$echo_test_string"; then
 
776
-       # Cool, printf works
 
777
-       :
 
778
-      elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
 
779
-          test "X$echo_testing_string" = 'X\t' &&
 
780
-          echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
 
781
-          test "X$echo_testing_string" = "X$echo_test_string"; then
 
782
-       CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
 
783
-       export CONFIG_SHELL
 
784
-       SHELL="$CONFIG_SHELL"
 
785
-       export SHELL
 
786
-       echo="$CONFIG_SHELL [$]0 --fallback-echo"
 
787
-      elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
 
788
-          test "X$echo_testing_string" = 'X\t' &&
 
789
-          echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
 
790
-          test "X$echo_testing_string" = "X$echo_test_string"; then
 
791
-       echo="$CONFIG_SHELL [$]0 --fallback-echo"
 
792
-      else
 
793
-       # maybe with a smaller string...
 
794
-       prev=:
802
795
 
803
 
-# Copy echo and quote the copy suitably for passing to libtool from
804
 
-# the Makefile, instead of quoting the original, which is used later.
805
 
-ECHO=$echo
806
 
-if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
807
 
-   ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo"
808
 
-fi
 
796
-       for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
 
797
-         if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
 
798
-         then
 
799
-           break
 
800
-         fi
 
801
-         prev="$cmd"
 
802
-       done
809
803
+# lt_decl_all_varnames([SEPARATOR], [VARNAME1...])
810
804
+# ------------------------------------------------
811
805
+m4_define([lt_decl_all_varnames],
819
813
+                       lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl
820
814
+])
821
815
 
822
 
-AC_SUBST(ECHO)
823
 
-])])# _LT_AC_PROG_ECHO_BACKSLASH
 
816
-       if test "$prev" != 'sed 50q "[$]0"'; then
 
817
-         echo_test_string=`eval $prev`
 
818
-         export echo_test_string
 
819
-         exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"}
 
820
-       else
 
821
-         # Oops.  We lost completely, so just stick with echo.
 
822
-         echo=echo
 
823
-       fi
 
824
-      fi
 
825
-    fi
 
826
-  fi
 
827
-fi
 
828
-fi
824
829
 
 
830
-# Copy echo and quote the copy suitably for passing to libtool from
 
831
-# the Makefile, instead of quoting the original, which is used later.
 
832
-ECHO=$echo
 
833
-if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
 
834
-   ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo"
 
835
-fi
825
836
+# _LT_CONFIG_STATUS_DECLARE([VARNAME])
826
837
+# ------------------------------------
827
838
+# Quote a variable value, and forward it to `config.status' so that its
830
841
+m4_define([_LT_CONFIG_STATUS_DECLARE],
831
842
+[$1='`$ECHO "X$][$1" | $Xsed -e "$delay_single_quote_subst"`'])
832
843
 
833
 
-# _LT_AC_LOCK
834
 
-# -----------
835
 
-AC_DEFUN([_LT_AC_LOCK],
836
 
-[AC_ARG_ENABLE([libtool-lock],
837
 
-    [AC_HELP_STRING([--disable-libtool-lock],
838
 
-       [avoid locking (might break parallel builds)])])
839
 
-test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
 
844
-AC_SUBST(ECHO)
 
845
-])])# _LT_AC_PROG_ECHO_BACKSLASH
840
846
 
841
 
-# Some flags need to be propagated to the compiler or linker for good
842
 
-# libtool support.
843
 
-case $host in
844
 
-ia64-*-hpux*)
845
 
-  # Find out which ABI we are using.
846
 
-  echo 'int i;' > conftest.$ac_ext
847
 
-  if AC_TRY_EVAL(ac_compile); then
848
 
-    case `/usr/bin/file conftest.$ac_objext` in
849
 
-    *ELF-32*)
850
 
-      HPUX_IA64_MODE="32"
851
 
-      ;;
852
 
-    *ELF-64*)
853
 
-      HPUX_IA64_MODE="64"
854
 
-      ;;
855
 
-    esac
856
 
-  fi
857
 
-  rm -rf conftest*
858
 
-  ;;
859
 
-*-*-irix6*)
860
 
-  # Find out which ABI we are using.
861
 
-  echo '[#]line __oline__ "configure"' > conftest.$ac_ext
862
 
-  if AC_TRY_EVAL(ac_compile); then
863
 
-   if test "$lt_cv_prog_gnu_ld" = yes; then
864
 
-    case `/usr/bin/file conftest.$ac_objext` in
865
 
-    *32-bit*)
866
 
-      LD="${LD-ld} -melf32bsmip"
867
 
-      ;;
868
 
-    *N32*)
869
 
-      LD="${LD-ld} -melf32bmipn32"
870
 
-      ;;
871
 
-    *64-bit*)
872
 
-      LD="${LD-ld} -melf64bmip"
873
 
-      ;;
874
 
-    esac
875
 
-   else
876
 
-    case `/usr/bin/file conftest.$ac_objext` in
877
 
-    *32-bit*)
878
 
-      LD="${LD-ld} -32"
879
 
-      ;;
880
 
-    *N32*)
881
 
-      LD="${LD-ld} -n32"
882
 
-      ;;
883
 
-    *64-bit*)
884
 
-      LD="${LD-ld} -64"
885
 
-      ;;
886
 
-    esac
887
 
-   fi
888
 
-  fi
889
 
-  rm -rf conftest*
890
 
-  ;;
891
847
+# _LT_CONFIG_STATUS_DECLARATIONS
892
848
+# ------------------------------
893
849
+# We delimit libtool config variables with single quotes, so when
900
856
+[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames),
901
857
+    [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])])
902
858
 
903
 
-x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
904
 
-s390*-*linux*|sparc*-*linux*)
 
859
-# _LT_AC_LOCK
 
860
-# -----------
 
861
-AC_DEFUN([_LT_AC_LOCK],
 
862
-[AC_ARG_ENABLE([libtool-lock],
 
863
-    [AC_HELP_STRING([--disable-libtool-lock],
 
864
-       [avoid locking (might break parallel builds)])])
 
865
-test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
 
866
 
 
867
-# Some flags need to be propagated to the compiler or linker for good
 
868
-# libtool support.
 
869
-case $host in
 
870
-ia64-*-hpux*)
905
871
-  # Find out which ABI we are using.
906
872
-  echo 'int i;' > conftest.$ac_ext
907
873
-  if AC_TRY_EVAL(ac_compile); then
908
 
-    case `/usr/bin/file conftest.o` in
909
 
-    *32-bit*)
910
 
-      case $host in
911
 
-        x86_64-*kfreebsd*-gnu)
912
 
-          LD="${LD-ld} -m elf_i386_fbsd"
913
 
-          ;;
914
 
-        x86_64-*linux*)
915
 
-          LD="${LD-ld} -m elf_i386"
916
 
-          ;;
917
 
-        ppc64-*linux*|powerpc64-*linux*)
918
 
-          LD="${LD-ld} -m elf32ppclinux"
919
 
-          ;;
920
 
-        s390x-*linux*)
921
 
-          LD="${LD-ld} -m elf_s390"
922
 
-          ;;
923
 
-        sparc64-*linux*)
924
 
-          LD="${LD-ld} -m elf32_sparc"
925
 
-          ;;
926
 
-      esac
927
 
-      ;;
928
 
-    *64-bit*)
929
 
-      libsuff=64
930
 
-      case $host in
931
 
-        x86_64-*kfreebsd*-gnu)
932
 
-          LD="${LD-ld} -m elf_x86_64_fbsd"
933
 
-          ;;
934
 
-        x86_64-*linux*)
935
 
-          LD="${LD-ld} -m elf_x86_64"
936
 
-          ;;
937
 
-        ppc*-*linux*|powerpc*-*linux*)
938
 
-          LD="${LD-ld} -m elf64ppc"
939
 
-          ;;
940
 
-        s390*-*linux*)
941
 
-          LD="${LD-ld} -m elf64_s390"
942
 
-          ;;
943
 
-        sparc*-*linux*)
944
 
-          LD="${LD-ld} -m elf64_sparc"
945
 
+
 
874
-    case `/usr/bin/file conftest.$ac_objext` in
 
875
-    *ELF-32*)
 
876
-      HPUX_IA64_MODE="32"
 
877
-      ;;
 
878
-    *ELF-64*)
 
879
-      HPUX_IA64_MODE="64"
 
880
-      ;;
 
881
-    esac
 
882
-  fi
 
883
-  rm -rf conftest*
 
884
-  ;;
 
885
-*-*-irix6*)
 
886
-  # Find out which ABI we are using.
 
887
-  echo '[#]line __oline__ "configure"' > conftest.$ac_ext
 
888
-  if AC_TRY_EVAL(ac_compile); then
 
889
-   if test "$lt_cv_prog_gnu_ld" = yes; then
 
890
-    case `/usr/bin/file conftest.$ac_objext` in
 
891
-    *32-bit*)
 
892
-      LD="${LD-ld} -melf32bsmip"
 
893
-      ;;
 
894
-    *N32*)
 
895
-      LD="${LD-ld} -melf32bmipn32"
 
896
-      ;;
 
897
-    *64-bit*)
 
898
-      LD="${LD-ld} -melf64bmip"
 
899
-      ;;
 
900
-    esac
 
901
-   else
 
902
-    case `/usr/bin/file conftest.$ac_objext` in
 
903
-    *32-bit*)
 
904
-      LD="${LD-ld} -32"
 
905
-      ;;
 
906
-    *N32*)
 
907
-      LD="${LD-ld} -n32"
 
908
-      ;;
 
909
-    *64-bit*)
 
910
-      LD="${LD-ld} -64"
 
911
-      ;;
 
912
-    esac
 
913
-   fi
 
914
-  fi
 
915
-  rm -rf conftest*
 
916
-  ;;
946
917
+# _LT_LIBTOOL_TAGS
947
918
+# ----------------
948
919
+# Output comment and list of tags supported by the script
950
921
+[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl
951
922
+available_tags="_LT_TAGS"dnl
952
923
+])
953
 
+
 
924
 
 
925
-x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
 
926
-s390*-*linux*|sparc*-*linux*)
 
927
-  # Find out which ABI we are using.
 
928
-  echo 'int i;' > conftest.$ac_ext
 
929
-  if AC_TRY_EVAL(ac_compile); then
 
930
-    case `/usr/bin/file conftest.o` in
 
931
-    *32-bit*)
 
932
-      case $host in
 
933
-        x86_64-*kfreebsd*-gnu)
 
934
-          LD="${LD-ld} -m elf_i386_fbsd"
 
935
-          ;;
 
936
-        x86_64-*linux*)
 
937
-          LD="${LD-ld} -m elf_i386"
 
938
-          ;;
 
939
-        ppc64-*linux*|powerpc64-*linux*)
 
940
-          LD="${LD-ld} -m elf32ppclinux"
 
941
-          ;;
 
942
-        s390x-*linux*)
 
943
-          LD="${LD-ld} -m elf_s390"
 
944
-          ;;
 
945
-        sparc64-*linux*)
 
946
-          LD="${LD-ld} -m elf32_sparc"
 
947
-          ;;
 
948
-      esac
954
949
+
955
950
+# _LT_LIBTOOL_DECLARE(VARNAME, [TAG])
956
951
+# -----------------------------------
1042
1037
+    case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in
1043
1038
+    *[[\\\\\\\`\\"\\\$]]*)
1044
1039
+      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$sed_quote_subst\\"\\\`\\\\\\""
1045
 
           ;;
 
1040
       ;;
 
1041
-    *64-bit*)
 
1042
-      libsuff=64
 
1043
-      case $host in
 
1044
-        x86_64-*kfreebsd*-gnu)
 
1045
-          LD="${LD-ld} -m elf_x86_64_fbsd"
 
1046
-          ;;
 
1047
-        x86_64-*linux*)
 
1048
-          LD="${LD-ld} -m elf_x86_64"
 
1049
-          ;;
 
1050
-        ppc*-*linux*|powerpc*-*linux*)
 
1051
-          LD="${LD-ld} -m elf64ppc"
 
1052
-          ;;
 
1053
-        s390*-*linux*)
 
1054
-          LD="${LD-ld} -m elf64_s390"
 
1055
-          ;;
 
1056
-        sparc*-*linux*)
 
1057
-          LD="${LD-ld} -m elf64_sparc"
 
1058
-          ;;
1046
1059
-      esac
1047
1060
+    *)
1048
1061
+      eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
1065
1078
-    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
1066
1079
-    CFLAGS="$SAVE_CFLAGS"
1067
1080
-  fi
 
1081
-  ;;
 
1082
-sparc*-*solaris*)
 
1083
-  # Find out which ABI we are using.
 
1084
-  echo 'int i;' > conftest.$ac_ext
 
1085
-  if AC_TRY_EVAL(ac_compile); then
 
1086
-    case `/usr/bin/file conftest.o` in
 
1087
-    *64-bit*)
 
1088
-      case $lt_cv_prog_gnu_ld in
 
1089
-      yes*) LD="${LD-ld} -m elf64_sparc" ;;
 
1090
-      *)
 
1091
-        if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
 
1092
-         LD="${LD-ld} -64"
 
1093
-       fi
 
1094
-       ;;
 
1095
-      esac
1068
1096
+# Double-quote double-evaled strings.
1069
1097
+for var in lt_decl_all_varnames([[ \
1070
1098
+]], lt_decl_dquote_varnames); do
1071
1099
+    case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in
1072
1100
+    *[[\\\\\\\`\\"\\\$]]*)
1073
1101
+      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\""
1074
 
   ;;
1075
 
-sparc*-*solaris*)
1076
 
-  # Find out which ABI we are using.
1077
 
-  echo 'int i;' > conftest.$ac_ext
1078
 
-  if AC_TRY_EVAL(ac_compile); then
1079
 
-    case `/usr/bin/file conftest.o` in
1080
 
-    *64-bit*)
1081
 
-      case $lt_cv_prog_gnu_ld in
1082
 
-      yes*) LD="${LD-ld} -m elf64_sparc" ;;
1083
 
-      *)    LD="${LD-ld} -64" ;;
1084
 
-      esac
 
1102
+      ;;
1085
1103
+    *)
1086
1104
+      eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
1087
1105
       ;;
1201
1219
-    ifelse([$5], , :, [$5])
1202
1220
-else
1203
1221
-    ifelse([$6], , :, [$6])
 
1222
-fi
 
1223
-])# AC_LIBTOOL_COMPILER_OPTION
1204
1224
+while test $[#] != 0
1205
1225
+do
1206
1226
+  case $[1] in
1212
1232
+      debug=: ;;
1213
1233
+    --quiet | --q* | --silent | --s* | -q )
1214
1234
+      lt_cl_silent=: ;;
1215
 
+
 
1235
 
1216
1236
+    -*) AC_MSG_ERROR([unrecognized option: $[1]
1217
1237
+Try \`$[0] --help' for more information.]) ;;
1218
 
+
 
1238
 
 
1239
-# AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
 
1240
-#                          [ACTION-SUCCESS], [ACTION-FAILURE])
 
1241
-# ------------------------------------------------------------
 
1242
-# Check whether the given compiler option works
 
1243
-AC_DEFUN([AC_LIBTOOL_LINKER_OPTION],
 
1244
-[AC_REQUIRE([LT_AC_PROG_SED])dnl
 
1245
-AC_CACHE_CHECK([$1], [$2],
 
1246
-  [$2=no
 
1247
-   save_LDFLAGS="$LDFLAGS"
 
1248
-   LDFLAGS="$LDFLAGS $3"
 
1249
-   echo "$lt_simple_link_test_code" > conftest.$ac_ext
 
1250
-   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
 
1251
-     # The linker can only warn and ignore the option if not recognized
 
1252
-     # So say no if there are warnings
 
1253
-     if test -s conftest.err; then
 
1254
-       # Append any errors to the config.log.
 
1255
-       cat conftest.err 1>&AS_MESSAGE_LOG_FD
 
1256
-       $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
 
1257
-       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
 
1258
-       if diff conftest.exp conftest.er2 >/dev/null; then
 
1259
-         $2=yes
 
1260
-       fi
 
1261
-     else
 
1262
-       $2=yes
 
1263
-     fi
 
1264
-   fi
 
1265
-   $rm -r conftest*
 
1266
-   LDFLAGS="$save_LDFLAGS"
 
1267
-])
1219
1268
+    *) AC_MSG_ERROR([unrecognized argument: $[1]
1220
1269
+Try \`$[0] --help' for more information.]) ;;
1221
1270
+  esac
1222
1271
+  shift
1223
1272
+done
1224
 
+
 
1273
 
 
1274
-if test x"[$]$2" = xyes; then
 
1275
-    ifelse([$4], , :, [$4])
 
1276
-else
 
1277
-    ifelse([$5], , :, [$5])
1225
1278
+if $lt_cl_silent; then
1226
1279
+  exec AS_MESSAGE_FD>/dev/null
1227
1280
 fi
1228
 
-])# AC_LIBTOOL_COMPILER_OPTION
 
1281
-])# AC_LIBTOOL_LINKER_OPTION
1229
1282
+_LTEOF
1230
1283
 
1231
1284
+cat >>"$CONFIG_LT" <<_LTEOF
1254
1307
+fi
1255
1308
+])# LT_OUTPUT
1256
1309
 
1257
 
-# AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
1258
 
-#                          [ACTION-SUCCESS], [ACTION-FAILURE])
1259
 
-# ------------------------------------------------------------
1260
 
-# Check whether the given compiler option works
1261
 
-AC_DEFUN([AC_LIBTOOL_LINKER_OPTION],
1262
 
-[AC_REQUIRE([LT_AC_PROG_SED])dnl
1263
 
-AC_CACHE_CHECK([$1], [$2],
1264
 
-  [$2=no
1265
 
-   save_LDFLAGS="$LDFLAGS"
1266
 
-   LDFLAGS="$LDFLAGS $3"
1267
 
-   echo "$lt_simple_link_test_code" > conftest.$ac_ext
1268
 
-   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
1269
 
-     # The linker can only warn and ignore the option if not recognized
1270
 
-     # So say no if there are warnings
1271
 
-     if test -s conftest.err; then
1272
 
-       # Append any errors to the config.log.
1273
 
-       cat conftest.err 1>&AS_MESSAGE_LOG_FD
1274
 
-       $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
1275
 
-       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
1276
 
-       if diff conftest.exp conftest.er2 >/dev/null; then
1277
 
-         $2=yes
1278
 
-       fi
1279
 
-     else
1280
 
-       $2=yes
1281
 
-     fi
1282
 
+
 
1310
-# AC_LIBTOOL_SYS_MAX_CMD_LEN
 
1311
-# --------------------------
 
1312
-AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN],
 
1313
-[# find the maximum length of command line arguments
 
1314
-AC_MSG_CHECKING([the maximum length of command line arguments])
 
1315
-AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
 
1316
-  i=0
 
1317
-  teststring="ABCD"
 
1318
 
 
1319
-  case $build_os in
 
1320
-  msdosdjgpp*)
 
1321
-    # On DJGPP, this test can blow up pretty badly due to problems in libc
 
1322
-    # (any single argument exceeding 2000 bytes causes a buffer overrun
 
1323
-    # during glob expansion).  Even if it were fixed, the result of this
 
1324
-    # check would be larger than it should be.
 
1325
-    lt_cv_sys_max_cmd_len=12288;    # 12K is about right
 
1326
-    ;;
1283
1327
+# _LT_CONFIG(TAG)
1284
1328
+# ---------------
1285
1329
+# If TAG is the built-in tag, create an initial libtool script with a
1295
1339
+    # commands through without removal of \ escapes.
1296
1340
+    if test -n "${ZSH_VERSION+set}" ; then
1297
1341
+      setopt NO_GLOB_SUBST
1298
 
    fi
1299
 
-   $rm conftest*
1300
 
-   LDFLAGS="$save_LDFLAGS"
1301
 
-])
1302
 
 
1303
 
-if test x"[$]$2" = xyes; then
1304
 
-    ifelse([$4], , :, [$4])
1305
 
-else
1306
 
-    ifelse([$5], , :, [$5])
1307
 
-fi
1308
 
-])# AC_LIBTOOL_LINKER_OPTION
 
1342
+    fi
 
1343
+
1309
1344
+    cfgfile="${ofile}T"
1310
1345
+    trap "$RM \"$cfgfile\"; exit 1" 1 2 15
1311
1346
+    $RM "$cfgfile"
1312
1347
 
 
1348
-  gnu*)
 
1349
-    # Under GNU Hurd, this test is not required because there is
 
1350
-    # no limit to the length of command line arguments.
 
1351
-    # Libtool will interpret -1 as no limit whatsoever
 
1352
-    lt_cv_sys_max_cmd_len=-1;
 
1353
-    ;;
1313
1354
+    cat <<_LT_EOF >> "$cfgfile"
1314
1355
+#! $SHELL
1315
1356
 
1316
 
-# AC_LIBTOOL_SYS_MAX_CMD_LEN
1317
 
-# --------------------------
1318
 
-AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN],
1319
 
-[# find the maximum length of command line arguments
1320
 
-AC_MSG_CHECKING([the maximum length of command line arguments])
1321
 
-AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
1322
 
-  i=0
1323
 
-  teststring="ABCD"
 
1357
-  cygwin* | mingw*)
 
1358
-    # On Win9x/ME, this test blows up -- it succeeds, but takes
 
1359
-    # about 5 minutes as the teststring grows exponentially.
 
1360
-    # Worse, since 9x/ME are not pre-emptively multitasking,
 
1361
-    # you end up with a "frozen" computer, even though with patience
 
1362
-    # the test eventually succeeds (with a max line length of 256k).
 
1363
-    # Instead, let's just punt: use the minimum linelength reported by
 
1364
-    # all of the supported platforms: 8192 (on NT/2K/XP).
 
1365
-    lt_cv_sys_max_cmd_len=8192;
 
1366
-    ;;
1324
1367
+# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
1325
1368
+# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
1326
1369
+# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
1329
1372
+_LT_COPYING
1330
1373
+_LT_LIBTOOL_TAGS
1331
1374
 
1332
 
-  case $build_os in
1333
 
-  msdosdjgpp*)
1334
 
-    # On DJGPP, this test can blow up pretty badly due to problems in libc
1335
 
-    # (any single argument exceeding 2000 bytes causes a buffer overrun
1336
 
-    # during glob expansion).  Even if it were fixed, the result of this
1337
 
-    # check would be larger than it should be.
1338
 
-    lt_cv_sys_max_cmd_len=12288;    # 12K is about right
 
1375
-  amigaos*)
 
1376
-    # On AmigaOS with pdksh, this test takes hours, literally.
 
1377
-    # So we just punt and use a minimum line length of 8192.
 
1378
-    lt_cv_sys_max_cmd_len=8192;
1339
1379
-    ;;
1340
1380
+# ### BEGIN LIBTOOL CONFIG
1341
1381
+_LT_LIBTOOL_CONFIG_VARS
1342
1382
+_LT_LIBTOOL_TAG_VARS
1343
1383
+# ### END LIBTOOL CONFIG
1344
1384
 
1345
 
-  gnu*)
1346
 
-    # Under GNU Hurd, this test is not required because there is
1347
 
-    # no limit to the length of command line arguments.
1348
 
-    # Libtool will interpret -1 as no limit whatsoever
1349
 
-    lt_cv_sys_max_cmd_len=-1;
1350
 
-    ;;
1351
 
-
1352
 
-  cygwin* | mingw*)
1353
 
-    # On Win9x/ME, this test blows up -- it succeeds, but takes
1354
 
-    # about 5 minutes as the teststring grows exponentially.
1355
 
-    # Worse, since 9x/ME are not pre-emptively multitasking,
1356
 
-    # you end up with a "frozen" computer, even though with patience
1357
 
-    # the test eventually succeeds (with a max line length of 256k).
1358
 
-    # Instead, let's just punt: use the minimum linelength reported by
1359
 
-    # all of the supported platforms: 8192 (on NT/2K/XP).
1360
 
-    lt_cv_sys_max_cmd_len=8192;
1361
 
-    ;;
1362
 
+_LT_EOF
1363
 
 
1364
 
-  amigaos*)
1365
 
-    # On AmigaOS with pdksh, this test takes hours, literally.
1366
 
-    # So we just punt and use a minimum line length of 8192.
1367
 
-    lt_cv_sys_max_cmd_len=8192;
1368
 
+  case $host_os in
1369
 
+  aix3*)
1370
 
+    cat <<\_LT_EOF >> "$cfgfile"
1371
 
+# AIX sometimes has problems with the GCC collect2 program.  For some
1372
 
+# reason, if we set the COLLECT_NAMES environment variable, the problems
1373
 
+# vanish in a puff of smoke.
1374
 
+if test "X${COLLECT_NAMES+set}" != Xset; then
1375
 
+  COLLECT_NAMES=
1376
 
+  export COLLECT_NAMES
1377
 
+fi
1378
 
+_LT_EOF
1379
 
     ;;
1380
 
+  esac
1381
 
 
1382
1385
-  netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
1383
1386
-    # This has been around since 386BSD, at least.  Likely further.
1384
1387
-    if test -x /sbin/sysctl; then
1392
1395
-    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
1393
1396
-    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
1394
1397
-    ;;
1395
 
+  _LT_PROG_LTMAIN
 
1398
+_LT_EOF
1396
1399
 
1397
1400
-  interix*)
1398
1401
-    # We know the value 262144 and hardcode it with a safety zone (like BSD)
1399
1402
-    lt_cv_sys_max_cmd_len=196608
1400
 
-    ;;
1401
 
+  # We use sed instead of cat because bash on DJGPP gets confused if
1402
 
+  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
1403
 
+  # text mode, it properly converts lines to CR/LF.  This bash problem
1404
 
+  # is reportedly fixed, but why not run on old versions too?
1405
 
+  sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \
1406
 
+    || (rm -f "$cfgfile"; exit 1)
 
1403
+  case $host_os in
 
1404
+  aix3*)
 
1405
+    cat <<\_LT_EOF >> "$cfgfile"
 
1406
+# AIX sometimes has problems with the GCC collect2 program.  For some
 
1407
+# reason, if we set the COLLECT_NAMES environment variable, the problems
 
1408
+# vanish in a puff of smoke.
 
1409
+if test "X${COLLECT_NAMES+set}" != Xset; then
 
1410
+  COLLECT_NAMES=
 
1411
+  export COLLECT_NAMES
 
1412
+fi
 
1413
+_LT_EOF
 
1414
     ;;
 
1415
+  esac
1407
1416
 
1408
1417
-  osf*)
1409
1418
-    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
1460
1469
-  AC_MSG_RESULT(none)
1461
1470
-fi
1462
1471
-])# AC_LIBTOOL_SYS_MAX_CMD_LEN
1463
 
+  _LT_PROG_XSI_SHELLFNS
1464
 
 
1465
 
+  sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \
1466
 
+    || (rm -f "$cfgfile"; exit 1)
1467
 
 
 
1472
-
 
1473
-
1468
1474
-# _LT_AC_CHECK_DLFCN
1469
1475
-# ------------------
1470
1476
-AC_DEFUN([_LT_AC_CHECK_DLFCN],
1471
1477
-[AC_CHECK_HEADERS(dlfcn.h)dnl
1472
1478
-])# _LT_AC_CHECK_DLFCN
 
1479
+  _LT_PROG_LTMAIN
 
1480
 
 
1481
+  # We use sed instead of cat because bash on DJGPP gets confused if
 
1482
+  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
 
1483
+  # text mode, it properly converts lines to CR/LF.  This bash problem
 
1484
+  # is reportedly fixed, but why not run on old versions too?
 
1485
+  sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \
 
1486
+    || (rm -f "$cfgfile"; exit 1)
 
1487
 
 
1488
-# _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
 
1489
-#                           ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
 
1490
-# ---------------------------------------------------------------------
 
1491
-AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF],
 
1492
-[AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
 
1493
-if test "$cross_compiling" = yes; then :
 
1494
-  [$4]
 
1495
-else
 
1496
-  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
1497
-  lt_status=$lt_dlunknown
 
1498
-  cat > conftest.$ac_ext <<EOF
 
1499
-[#line __oline__ "configure"
 
1500
-#include "confdefs.h"
 
1501
-
 
1502
-#if HAVE_DLFCN_H
 
1503
-#include <dlfcn.h>
 
1504
-#endif
 
1505
+  _LT_PROG_XSI_SHELLFNS
 
1506
 
 
1507
-#include <stdio.h>
 
1508
+  sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \
 
1509
+    || (rm -f "$cfgfile"; exit 1)
 
1510
 
 
1511
-#ifdef RTLD_GLOBAL
 
1512
-#  define LT_DLGLOBAL          RTLD_GLOBAL
 
1513
-#else
 
1514
-#  ifdef DL_GLOBAL
 
1515
-#    define LT_DLGLOBAL                DL_GLOBAL
 
1516
-#  else
 
1517
-#    define LT_DLGLOBAL                0
 
1518
-#  endif
 
1519
-#endif
1473
1520
+  mv -f "$cfgfile" "$ofile" ||
1474
1521
+    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
1475
1522
+  chmod +x "$ofile"
1476
1523
+],
1477
1524
+[cat <<_LT_EOF >> "$ofile"
1478
1525
 
 
1526
-/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
 
1527
-   find out it does not work in some platform. */
 
1528
-#ifndef LT_DLLAZY_OR_NOW
 
1529
-#  ifdef RTLD_LAZY
 
1530
-#    define LT_DLLAZY_OR_NOW           RTLD_LAZY
 
1531
-#  else
 
1532
-#    ifdef DL_LAZY
 
1533
-#      define LT_DLLAZY_OR_NOW         DL_LAZY
 
1534
-#    else
 
1535
-#      ifdef RTLD_NOW
 
1536
-#        define LT_DLLAZY_OR_NOW       RTLD_NOW
 
1537
-#      else
 
1538
-#        ifdef DL_NOW
 
1539
-#          define LT_DLLAZY_OR_NOW     DL_NOW
 
1540
-#        else
 
1541
-#          define LT_DLLAZY_OR_NOW     0
 
1542
-#        endif
 
1543
-#      endif
 
1544
-#    endif
 
1545
-#  endif
 
1546
-#endif
1479
1547
+dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded
1480
1548
+dnl in a comment (ie after a #).
1481
1549
+# ### BEGIN LIBTOOL TAG CONFIG: $1
1493
1561
+])dnl /_LT_CONFIG_SAVE_COMMANDS
1494
1562
+])# _LT_CONFIG
1495
1563
 
1496
 
-# _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
1497
 
-#                           ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
1498
 
-# ---------------------------------------------------------------------
1499
 
-AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF],
1500
 
-[AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
1501
 
-if test "$cross_compiling" = yes; then :
1502
 
-  [$4]
1503
 
-else
1504
 
-  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
1505
 
-  lt_status=$lt_dlunknown
1506
 
-  cat > conftest.$ac_ext <<EOF
1507
 
-[#line __oline__ "configure"
1508
 
-#include "confdefs.h"
1509
 
 
1510
 
-#if HAVE_DLFCN_H
1511
 
-#include <dlfcn.h>
 
1564
-#ifdef __cplusplus
 
1565
-extern "C" void exit (int);
1512
1566
-#endif
 
1567
 
 
1568
-void fnord() { int i=42;}
 
1569
-int main ()
 
1570
-{
 
1571
-  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
 
1572
-  int status = $lt_dlunknown;
1513
1573
+# LT_SUPPORTED_TAG(TAG)
1514
1574
+# ---------------------
1515
1575
+# Trace this macro to discover what tags are supported by the libtool
1517
1577
+#    autoconf --trace 'LT_SUPPORTED_TAG:$1'
1518
1578
+AC_DEFUN([LT_SUPPORTED_TAG], [])
1519
1579
 
1520
 
-#include <stdio.h>
 
1580
-  if (self)
 
1581
-    {
 
1582
-      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
 
1583
-      else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
 
1584
-      /* dlclose (self); */
 
1585
-    }
 
1586
-  else
 
1587
-    puts (dlerror ());
1521
1588
 
1522
 
-#ifdef RTLD_GLOBAL
1523
 
-#  define LT_DLGLOBAL          RTLD_GLOBAL
1524
 
-#else
1525
 
-#  ifdef DL_GLOBAL
1526
 
-#    define LT_DLGLOBAL                DL_GLOBAL
1527
 
-#  else
1528
 
-#    define LT_DLGLOBAL                0
1529
 
-#  endif
1530
 
-#endif
 
1589
-    exit (status);
 
1590
-}]
 
1591
-EOF
 
1592
-  if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
 
1593
-    (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
 
1594
-    lt_status=$?
 
1595
-    case x$lt_status in
 
1596
-      x$lt_dlno_uscore) $1 ;;
 
1597
-      x$lt_dlneed_uscore) $2 ;;
 
1598
-      x$lt_dlunknown|x*) $3 ;;
 
1599
-    esac
 
1600
-  else :
 
1601
-    # compilation failed
 
1602
-    $3
 
1603
-  fi
 
1604
-fi
 
1605
-rm -fr conftest*
 
1606
-])# _LT_AC_TRY_DLOPEN_SELF
1531
1607
+# C support is built-in for now
1532
1608
+m4_define([_LT_LANG_C_enabled], [])
1533
1609
+m4_define([_LT_TAGS], [])
1534
1610
 
1535
 
-/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
1536
 
-   find out it does not work in some platform. */
1537
 
-#ifndef LT_DLLAZY_OR_NOW
1538
 
-#  ifdef RTLD_LAZY
1539
 
-#    define LT_DLLAZY_OR_NOW           RTLD_LAZY
1540
 
-#  else
1541
 
-#    ifdef DL_LAZY
1542
 
-#      define LT_DLLAZY_OR_NOW         DL_LAZY
1543
 
-#    else
1544
 
-#      ifdef RTLD_NOW
1545
 
-#        define LT_DLLAZY_OR_NOW       RTLD_NOW
1546
 
-#      else
1547
 
-#        ifdef DL_NOW
1548
 
-#          define LT_DLLAZY_OR_NOW     DL_NOW
1549
 
-#        else
1550
 
-#          define LT_DLLAZY_OR_NOW     0
1551
 
-#        endif
1552
 
-#      endif
1553
 
-#    endif
1554
 
-#  endif
1555
 
-#endif
1556
1611
 
1557
 
-#ifdef __cplusplus
1558
 
-extern "C" void exit (int);
1559
 
-#endif
 
1612
-# AC_LIBTOOL_DLOPEN_SELF
 
1613
-# ----------------------
 
1614
-AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF],
 
1615
-[AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
 
1616
-if test "x$enable_dlopen" != xyes; then
 
1617
-  enable_dlopen=unknown
 
1618
-  enable_dlopen_self=unknown
 
1619
-  enable_dlopen_self_static=unknown
 
1620
-else
 
1621
-  lt_cv_dlopen=no
 
1622
-  lt_cv_dlopen_libs=
1560
1623
+# LT_LANG(LANG)
1561
1624
+# -------------
1562
1625
+# Enable libtool support for the given language if not already enabled.
1574
1637
+    [m4_fatal([$0: unsupported language: "$1"])])])dnl
1575
1638
+])# LT_LANG
1576
1639
 
1577
 
-void fnord() { int i=42;}
1578
 
-int main ()
1579
 
-{
1580
 
-  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
1581
 
-  int status = $lt_dlunknown;
 
1640
-  case $host_os in
 
1641
-  beos*)
 
1642
-    lt_cv_dlopen="load_add_on"
 
1643
-    lt_cv_dlopen_libs=
 
1644
-    lt_cv_dlopen_self=yes
 
1645
-    ;;
1582
1646
 
1583
 
-  if (self)
1584
 
-    {
1585
 
-      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
1586
 
-      else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
1587
 
-      /* dlclose (self); */
1588
 
-    }
1589
 
-  else
1590
 
-    puts (dlerror ());
 
1647
-  mingw* | pw32*)
 
1648
-    lt_cv_dlopen="LoadLibrary"
 
1649
-    lt_cv_dlopen_libs=
 
1650
-   ;;
1591
1651
+# _LT_LANG(LANGNAME)
1592
1652
+# ------------------
1593
1653
+m4_defun([_LT_LANG],
1598
1658
+  _LT_LANG_$1_CONFIG($1)])dnl
1599
1659
+])# _LT_LANG
1600
1660
 
1601
 
-    exit (status);
1602
 
-}]
1603
 
-EOF
1604
 
-  if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
1605
 
-    (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
1606
 
-    lt_status=$?
1607
 
-    case x$lt_status in
1608
 
-      x$lt_dlno_uscore) $1 ;;
1609
 
-      x$lt_dlneed_uscore) $2 ;;
1610
 
-      x$lt_dlunknown|x*) $3 ;;
1611
 
-    esac
1612
 
-  else :
1613
 
-    # compilation failed
1614
 
-    $3
1615
 
-  fi
1616
 
-fi
1617
 
-rm -fr conftest*
1618
 
-])# _LT_AC_TRY_DLOPEN_SELF
 
1661
-  cygwin*)
 
1662
-    lt_cv_dlopen="dlopen"
 
1663
-    lt_cv_dlopen_libs=
 
1664
-   ;;
1619
1665
 
 
1666
-  darwin*)
 
1667
-  # if libdl is installed we need to link against it
 
1668
-    AC_CHECK_LIB([dl], [dlopen],
 
1669
-               [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
 
1670
-    lt_cv_dlopen="dyld"
 
1671
-    lt_cv_dlopen_libs=
 
1672
-    lt_cv_dlopen_self=yes
 
1673
-    ])
 
1674
-   ;;
1620
1675
+# _LT_LANG_DEFAULT_CONFIG
1621
1676
+# -----------------------
1622
1677
+m4_defun([_LT_LANG_DEFAULT_CONFIG],
1663
1718
+dnl AC_DEFUN([AC_LIBTOOL_FC], [])
1664
1719
+dnl AC_DEFUN([AC_LIBTOOL_GCJ], [])
1665
1720
 
1666
 
-# AC_LIBTOOL_DLOPEN_SELF
1667
 
-# ----------------------
1668
 
-AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF],
1669
 
-[AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
1670
 
-if test "x$enable_dlopen" != xyes; then
1671
 
-  enable_dlopen=unknown
1672
 
-  enable_dlopen_self=unknown
1673
 
-  enable_dlopen_self_static=unknown
1674
 
-else
1675
 
-  lt_cv_dlopen=no
1676
 
-  lt_cv_dlopen_libs=
1677
 
 
1678
 
-  case $host_os in
1679
 
-  beos*)
1680
 
-    lt_cv_dlopen="load_add_on"
1681
 
-    lt_cv_dlopen_libs=
1682
 
-    lt_cv_dlopen_self=yes
1683
 
-    ;;
1684
 
+# _LT_TAG_COMPILER
1685
 
+# ----------------
1686
 
+m4_defun([_LT_TAG_COMPILER],
1687
 
+[AC_REQUIRE([AC_PROG_CC])dnl
1688
 
 
1689
 
-  mingw* | pw32*)
1690
 
-    lt_cv_dlopen="LoadLibrary"
1691
 
-    lt_cv_dlopen_libs=
1692
 
-   ;;
1693
 
+_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl
1694
 
+_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl
1695
 
+_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl
1696
 
+_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl
1697
 
 
1698
 
-  cygwin*)
1699
 
-    lt_cv_dlopen="dlopen"
1700
 
-    lt_cv_dlopen_libs=
1701
 
-   ;;
1702
 
+# If no C compiler was specified, use CC.
1703
 
+LTCC=${LTCC-"$CC"}
1704
 
 
1705
 
-  darwin*)
1706
 
-  # if libdl is installed we need to link against it
1707
 
-    AC_CHECK_LIB([dl], [dlopen],
1708
 
-               [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
1709
 
-    lt_cv_dlopen="dyld"
1710
 
-    lt_cv_dlopen_libs=
1711
 
-    lt_cv_dlopen_self=yes
1712
 
-    ])
1713
 
-   ;;
1714
 
+# If no C compiler flags were specified, use CFLAGS.
1715
 
+LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
1716
 
 
1717
1721
-  *)
1718
1722
-    AC_CHECK_FUNC([shl_load],
1719
1723
-         [lt_cv_dlopen="shl_load"],
1720
1724
-      [AC_CHECK_LIB([dld], [shl_load],
1721
 
-           [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"],
 
1725
-           [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
1722
1726
-       [AC_CHECK_FUNC([dlopen],
1723
1727
-             [lt_cv_dlopen="dlopen"],
1724
1728
-         [AC_CHECK_LIB([dl], [dlopen],
1726
1730
-           [AC_CHECK_LIB([svld], [dlopen],
1727
1731
-                 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
1728
1732
-             [AC_CHECK_LIB([dld], [dld_link],
1729
 
-                   [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
 
1733
-                   [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
1730
1734
-             ])
1731
1735
-           ])
1732
1736
-         ])
1734
1738
-      ])
1735
1739
-    ;;
1736
1740
-  esac
 
1741
 
 
1742
-  if test "x$lt_cv_dlopen" != xno; then
 
1743
-    enable_dlopen=yes
 
1744
-  else
 
1745
-    enable_dlopen=no
 
1746
-  fi
 
1747
+# _LT_TAG_COMPILER
 
1748
+# ----------------
 
1749
+m4_defun([_LT_TAG_COMPILER],
 
1750
+[AC_REQUIRE([AC_PROG_CC])dnl
 
1751
 
 
1752
-  case $lt_cv_dlopen in
 
1753
-  dlopen)
 
1754
-    save_CPPFLAGS="$CPPFLAGS"
 
1755
-    test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
 
1756
+_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl
 
1757
+_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl
 
1758
+_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl
 
1759
+_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl
 
1760
 
 
1761
-    save_LDFLAGS="$LDFLAGS"
 
1762
-    wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
 
1763
+# If no C compiler was specified, use CC.
 
1764
+LTCC=${LTCC-"$CC"}
 
1765
 
 
1766
-    save_LIBS="$LIBS"
 
1767
-    LIBS="$lt_cv_dlopen_libs $LIBS"
 
1768
+# If no C compiler flags were specified, use CFLAGS.
 
1769
+LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
 
1770
 
 
1771
-    AC_CACHE_CHECK([whether a program can dlopen itself],
 
1772
-         lt_cv_dlopen_self, [dnl
 
1773
-         _LT_AC_TRY_DLOPEN_SELF(
 
1774
-           lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
 
1775
-           lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
 
1776
-    ])
1737
1777
+# Allow CC to be a program name with arguments.
1738
1778
+compiler=$CC
1739
1779
+])# _LT_TAG_COMPILER
1740
1780
 
1741
 
-  if test "x$lt_cv_dlopen" != xno; then
1742
 
-    enable_dlopen=yes
1743
 
-  else
1744
 
-    enable_dlopen=no
1745
 
-  fi
 
1781
-    if test "x$lt_cv_dlopen_self" = xyes; then
 
1782
-      wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
 
1783
-      AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
 
1784
-         lt_cv_dlopen_self_static, [dnl
 
1785
-         _LT_AC_TRY_DLOPEN_SELF(
 
1786
-           lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
 
1787
-           lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)
 
1788
-      ])
 
1789
-    fi
1746
1790
 
1747
 
-  case $lt_cv_dlopen in
1748
 
-  dlopen)
1749
 
-    save_CPPFLAGS="$CPPFLAGS"
1750
 
-    test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
1751
 
-
1752
 
-    save_LDFLAGS="$LDFLAGS"
1753
 
-    wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
 
1791
-    CPPFLAGS="$save_CPPFLAGS"
 
1792
-    LDFLAGS="$save_LDFLAGS"
 
1793
-    LIBS="$save_LIBS"
 
1794
-    ;;
 
1795
-  esac
1754
1796
+# _LT_COMPILER_BOILERPLATE
1755
1797
+# ------------------------
1756
1798
+# Check for compiler boilerplate output or warnings with
1764
1806
+$RM conftest*
1765
1807
+])# _LT_COMPILER_BOILERPLATE
1766
1808
 
1767
 
-    save_LIBS="$LIBS"
1768
 
-    LIBS="$lt_cv_dlopen_libs $LIBS"
 
1809
-  case $lt_cv_dlopen_self in
 
1810
-  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
 
1811
-  *) enable_dlopen_self=unknown ;;
 
1812
-  esac
1769
1813
 
1770
 
-    AC_CACHE_CHECK([whether a program can dlopen itself],
1771
 
-         lt_cv_dlopen_self, [dnl
1772
 
-         _LT_AC_TRY_DLOPEN_SELF(
1773
 
-           lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
1774
 
-           lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
1775
 
-    ])
 
1814
-  case $lt_cv_dlopen_self_static in
 
1815
-  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
 
1816
-  *) enable_dlopen_self_static=unknown ;;
 
1817
-  esac
 
1818
-fi
 
1819
-])# AC_LIBTOOL_DLOPEN_SELF
1776
1820
+# _LT_LINKER_BOILERPLATE
1777
1821
+# ----------------------
1778
1822
+# Check for linker boilerplate output or warnings with
1786
1830
+$RM -r conftest*
1787
1831
+])# _LT_LINKER_BOILERPLATE
1788
1832
 
1789
 
-    if test "x$lt_cv_dlopen_self" = xyes; then
1790
 
-      wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
1791
 
-      AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
1792
 
-         lt_cv_dlopen_self_static, [dnl
1793
 
-         _LT_AC_TRY_DLOPEN_SELF(
1794
 
-           lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
1795
 
-           lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)
1796
 
-      ])
1797
1833
+# _LT_REQUIRED_DARWIN_CHECKS
1798
1834
+# -------------------------
1799
1835
+m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[
1814
1850
+      [ldd/readelf like tool for Mach-O binaries on Mac OS X])
1815
1851
+    _LT_DECL([], [OTOOL64], [1],
1816
1852
+      [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4])
1817
 
+
 
1853
 
 
1854
-# AC_LIBTOOL_PROG_CC_C_O([TAGNAME])
 
1855
-# ---------------------------------
 
1856
-# Check to see if options -c and -o are simultaneously supported by compiler
 
1857
-AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O],
 
1858
-[AC_REQUIRE([LT_AC_PROG_SED])dnl
 
1859
-AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
 
1860
-AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
 
1861
-  [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
 
1862
-  [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
 
1863
-   $rm -r conftest 2>/dev/null
 
1864
-   mkdir conftest
 
1865
-   cd conftest
 
1866
-   mkdir out
 
1867
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
1818
1868
+    AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],
1819
1869
+      [lt_cv_apple_cc_single_mod=no
1820
1870
+      if test -z "${LT_MULTI_MODULE}"; then
1833
1883
+         lt_cv_apple_cc_single_mod=yes
1834
1884
+       else
1835
1885
+         cat conftest.err >&AS_MESSAGE_LOG_FD
1836
 
     fi
1837
 
-
1838
 
-    CPPFLAGS="$save_CPPFLAGS"
 
1886
+       fi
1839
1887
+       rm -rf libconftest.dylib*
1840
1888
+       rm -f conftest.*
1841
1889
+      fi])
1848
1896
+      AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
1849
1897
+       [lt_cv_ld_exported_symbols_list=yes],
1850
1898
+       [lt_cv_ld_exported_symbols_list=no])
1851
 
     LDFLAGS="$save_LDFLAGS"
1852
 
-    LIBS="$save_LIBS"
1853
 
-    ;;
 
1899
+       LDFLAGS="$save_LDFLAGS"
1854
1900
+    ])
1855
1901
+    case $host_os in
1856
1902
+    rhapsody* | darwin1.[[012]])
1868
1914
+         _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
1869
1915
+       10.*)
1870
1916
+         _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
1871
 
   esac
1872
 
-
1873
 
-  case $lt_cv_dlopen_self in
1874
 
-  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
1875
 
-  *) enable_dlopen_self=unknown ;;
 
1917
+      esac
1876
1918
+    ;;
1877
 
   esac
1878
 
-
1879
 
-  case $lt_cv_dlopen_self_static in
1880
 
-  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
1881
 
-  *) enable_dlopen_self_static=unknown ;;
 
1919
+  esac
1882
1920
+    if test "$lt_cv_apple_cc_single_mod" = "yes"; then
1883
1921
+      _lt_dar_single_mod='$single_module'
1884
1922
+    fi
1893
1931
+      _lt_dsymutil=
1894
1932
+    fi
1895
1933
+    ;;
1896
 
   esac
1897
 
-fi
1898
 
-])# AC_LIBTOOL_DLOPEN_SELF
1899
 
-
 
1934
+  esac
1900
1935
+])
1901
1936
 
1902
 
-# AC_LIBTOOL_PROG_CC_C_O([TAGNAME])
1903
 
-# ---------------------------------
1904
 
-# Check to see if options -c and -o are simultaneously supported by compiler
1905
 
-AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O],
1906
 
-[AC_REQUIRE([LT_AC_PROG_SED])dnl
1907
 
-AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
1908
 
-AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
1909
 
-  [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
1910
 
-  [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
1911
 
-   $rm -r conftest 2>/dev/null
1912
 
-   mkdir conftest
1913
 
-   cd conftest
1914
 
-   mkdir out
1915
 
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
1916
 
 
1917
1937
-   lt_compiler_flag="-o out/conftest2.$ac_objext"
1918
1938
-   # Insert the option either (1) after the last *FLAGS variable, or
1919
1939
-   # (2) before a word containing "conftest.", or (3) at the end.
1936
1956
-     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
1937
1957
-     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
1938
1958
-       _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
 
1959
-     fi
 
1960
-   fi
 
1961
-   chmod u+w . 2>&AS_MESSAGE_LOG_FD
 
1962
-   $rm conftest*
 
1963
-   # SGI C++ compiler will create directory out/ii_files/ for
 
1964
-   # template instantiation
 
1965
-   test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files
 
1966
-   $rm out/* && rmdir out
 
1967
-   cd ..
 
1968
-   rmdir conftest
 
1969
-   $rm conftest*
 
1970
+
1939
1971
+# _LT_DARWIN_LINKER_FEATURES
1940
1972
+# --------------------------
1941
1973
+# Checks for linker and compiler features on darwin
1959
1991
+[   if test "$lt_cv_apple_cc_single_mod" != "yes"; then
1960
1992
+      _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}"
1961
1993
+      _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}"
1962
 
      fi
 
1994
+    fi
1963
1995
+],[])
1964
1996
+  else
1965
1997
+  _LT_TAGVAR(ld_shlibs, $1)=no
1966
 
    fi
1967
 
-   chmod u+w . 2>&AS_MESSAGE_LOG_FD
1968
 
-   $rm conftest*
1969
 
-   # SGI C++ compiler will create directory out/ii_files/ for
1970
 
-   # template instantiation
1971
 
-   test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files
1972
 
-   $rm out/* && rmdir out
1973
 
-   cd ..
1974
 
-   rmdir conftest
1975
 
-   $rm conftest*
 
1998
+  fi
1976
1999
 ])
1977
2000
-])# AC_LIBTOOL_PROG_CC_C_O
1978
 
-
1979
2001
 
1980
 
-# AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME])
1981
 
-# -----------------------------------------
1982
 
-# Check to see if we can do hard links to lock some files if needed
1983
 
-AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS],
1984
 
-[AC_REQUIRE([_LT_AC_LOCK])dnl
1985
2002
+# _LT_SYS_MODULE_PATH_AIX
1986
2003
+# -----------------------
1987
2004
+# Links a minimal program and checks the executable
2008
2025
+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
2009
2026
+])# _LT_SYS_MODULE_PATH_AIX
2010
2027
 
 
2028
-# AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME])
 
2029
-# -----------------------------------------
 
2030
-# Check to see if we can do hard links to lock some files if needed
 
2031
-AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS],
 
2032
-[AC_REQUIRE([_LT_AC_LOCK])dnl
 
2033
 
2011
2034
-hard_links="nottested"
2012
2035
-if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
2013
2036
-  # do not overwrite the value of need_locks provided by the user
2027
2050
-  need_locks=no
2028
2051
-fi
2029
2052
-])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS
2030
 
 
2031
2053
+# _LT_SHELL_INIT(ARG)
2032
2054
+# -------------------
2033
2055
+m4_define([_LT_SHELL_INIT],
2038
2060
+AC_DIVERT_POP
2039
2061
+])# _LT_SHELL_INIT
2040
2062
 
 
2063
 
2041
2064
-# AC_LIBTOOL_OBJDIR
2042
2065
-# -----------------
2043
2066
-AC_DEFUN([AC_LIBTOOL_OBJDIR],
2046
2069
-mkdir .libs 2>/dev/null
2047
2070
-if test -d .libs; then
2048
2071
-  lt_cv_objdir=.libs
2049
 
-else
2050
 
-  # MS-DOS does not allow filenames that begin with a dot.
2051
 
-  lt_cv_objdir=_libs
2052
 
-fi
2053
 
-rmdir .libs 2>/dev/null])
2054
 
-objdir=$lt_cv_objdir
2055
 
-])# AC_LIBTOOL_OBJDIR
2056
 
 
2057
2072
+# _LT_PROG_ECHO_BACKSLASH
2058
2073
+# -----------------------
2059
2074
+# Add some code to the start of the generated configure script which
2062
2077
+[_LT_SHELL_INIT([
2063
2078
+# Check that we are running under the correct shell.
2064
2079
+SHELL=${CONFIG_SHELL-/bin/sh}
 
2080
+
 
2081
+case X$lt_ECHO in
 
2082
+X*--fallback-echo)
 
2083
+  # Remove one level of quotation (which was required for Make).
 
2084
+  ECHO=`echo "$lt_ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
 
2085
+  ;;
 
2086
+esac
 
2087
+
 
2088
+ECHO=${lt_ECHO-echo}
 
2089
+if test "X[$]1" = X--no-reexec; then
 
2090
+  # Discard the --no-reexec flag, and continue.
 
2091
+  shift
 
2092
+elif test "X[$]1" = X--fallback-echo; then
 
2093
+  # Avoid inline document here, it may be left over
 
2094
+  :
 
2095
+elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' ; then
 
2096
+  # Yippee, $ECHO works!
 
2097
+  :
 
2098
 else
 
2099
-  # MS-DOS does not allow filenames that begin with a dot.
 
2100
-  lt_cv_objdir=_libs
 
2101
+  # Restart under the correct shell.
 
2102
+  exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
 
2103
 fi
 
2104
-rmdir .libs 2>/dev/null])
 
2105
-objdir=$lt_cv_objdir
 
2106
-])# AC_LIBTOOL_OBJDIR
 
2107
 
 
2108
+if test "X[$]1" = X--fallback-echo; then
 
2109
+  # used as fallback echo
 
2110
+  shift
 
2111
+  cat <<_LT_EOF
 
2112
+[$]*
 
2113
+_LT_EOF
 
2114
+  exit 0
 
2115
+fi
2065
2116
 
2066
2117
-# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME])
2067
2118
-# ----------------------------------------------
2072
2123
-if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \
2073
2124
-   test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \
2074
2125
-   test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
2075
 
+case X$lt_ECHO in
2076
 
+X*--fallback-echo)
2077
 
+  # Remove one level of quotation (which was required for Make).
2078
 
+  ECHO=`echo "$lt_ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
2079
 
+  ;;
2080
 
+esac
 
2126
+# The HP-UX ksh and POSIX shell print the target directory to stdout
 
2127
+# if CDPATH is set.
 
2128
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
2081
2129
 
2082
2130
-  # We can hardcode non-existant directories.
2083
2131
-  if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no &&
2088
2136
-     test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then
2089
2137
-    # Linking always hardcodes the temporary library directory.
2090
2138
-    _LT_AC_TAGVAR(hardcode_action, $1)=relink
2091
 
-  else
 
2139
+if test -z "$lt_ECHO"; then
 
2140
+  if test "X${echo_test_string+set}" != Xset; then
 
2141
+    # find a string as large as possible, as long as the shell can cope with it
 
2142
+    for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
 
2143
+      # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
 
2144
+      if { echo_test_string=`eval $cmd`; } 2>/dev/null &&
 
2145
+        { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null
 
2146
+      then
 
2147
+        break
 
2148
+      fi
 
2149
+    done
 
2150
+  fi
 
2151
+
 
2152
+  if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' &&
 
2153
+     echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` &&
 
2154
+     test "X$echo_testing_string" = "X$echo_test_string"; then
 
2155
+    :
 
2156
   else
2092
2157
-    # We can link without hardcoding, and we can hardcode nonexisting dirs.
2093
2158
-    _LT_AC_TAGVAR(hardcode_action, $1)=immediate
2094
 
-  fi
2095
 
+ECHO=${lt_ECHO-echo}
2096
 
+if test "X[$]1" = X--no-reexec; then
2097
 
+  # Discard the --no-reexec flag, and continue.
2098
 
+  shift
2099
 
+elif test "X[$]1" = X--fallback-echo; then
2100
 
+  # Avoid inline document here, it may be left over
2101
 
+  :
2102
 
+elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' ; then
2103
 
+  # Yippee, $ECHO works!
2104
 
+  :
2105
 
 else
2106
 
-  # We cannot hardcode anything, or else we can only hardcode existing
2107
 
-  # directories.
2108
 
-  _LT_AC_TAGVAR(hardcode_action, $1)=unsupported
2109
 
+  # Restart under the correct shell.
2110
 
+  exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
2111
 
 fi
2112
 
-AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)])
2113
 
 
2114
 
-if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then
2115
 
-  # Fast installation is not supported
2116
 
-  enable_fast_install=no
2117
 
-elif test "$shlibpath_overrides_runpath" = yes ||
2118
 
-     test "$enable_shared" = no; then
2119
 
-  # Fast installation is not necessary
2120
 
-  enable_fast_install=needless
2121
 
+if test "X[$]1" = X--fallback-echo; then
2122
 
+  # used as fallback echo
2123
 
+  shift
2124
 
+  cat <<_LT_EOF
2125
 
+[$]*
2126
 
+_LT_EOF
2127
 
+  exit 0
2128
 
 fi
2129
 
-])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH
2130
 
 
2131
 
+# The HP-UX ksh and POSIX shell print the target directory to stdout
2132
 
+# if CDPATH is set.
2133
 
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
2134
 
 
2135
 
-# AC_LIBTOOL_SYS_LIB_STRIP
2136
 
-# ------------------------
2137
 
-AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP],
2138
 
-[striplib=
2139
 
-old_striplib=
2140
 
-AC_MSG_CHECKING([whether stripping libraries is possible])
2141
 
-if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then
2142
 
-  test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
2143
 
-  test -z "$striplib" && striplib="$STRIP --strip-unneeded"
2144
 
-  AC_MSG_RESULT([yes])
2145
 
-else
2146
 
-# FIXME - insert some real tests, host_os isn't really good enough
2147
 
-  case $host_os in
2148
 
-   darwin*)
2149
 
-       if test -n "$STRIP" ; then
2150
 
-         striplib="$STRIP -x"
2151
 
-         old_striplib="$STRIP -S"
2152
 
-         AC_MSG_RESULT([yes])
2153
 
+if test -z "$lt_ECHO"; then
2154
 
+  if test "X${echo_test_string+set}" != Xset; then
2155
 
+    # find a string as large as possible, as long as the shell can cope with it
2156
 
+    for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
2157
 
+      # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
2158
 
+      if { echo_test_string=`eval $cmd`; } 2>/dev/null &&
2159
 
+        { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null
2160
 
+      then
2161
 
+        break
2162
 
+      fi
2163
 
+    done
2164
 
+  fi
2165
 
+
2166
 
+  if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' &&
2167
 
+     echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` &&
2168
 
+     test "X$echo_testing_string" = "X$echo_test_string"; then
2169
 
+    :
2170
 
        else
2171
 
-  AC_MSG_RESULT([no])
2172
 
-fi
2173
 
-       ;;
2174
 
-   *)
2175
 
-  AC_MSG_RESULT([no])
2176
 
-    ;;
2177
 
-  esac
2178
 
-fi
2179
 
-])# AC_LIBTOOL_SYS_LIB_STRIP
2180
2159
+    # The Solaris, AIX, and Digital Unix default echo programs unquote
2181
2160
+    # backslashes.  This makes it impossible to quote backslashes using
2182
2161
+    #   echo "$something" | sed 's/\\/\\\\/g'
2183
2162
+    #
2184
2163
+    # So, first we look for a working echo in the user's PATH.
2185
 
 
 
2164
+
2186
2165
+    lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
2187
2166
+    for dir in $PATH /usr/ucb; do
2188
2167
+      IFS="$lt_save_ifs"
2195
2174
+      fi
2196
2175
+    done
2197
2176
+    IFS="$lt_save_ifs"
2198
 
 
2199
 
-# AC_LIBTOOL_SYS_DYNAMIC_LINKER
2200
 
-# -----------------------------
2201
 
-# PORTME Fill in your ld.so characteristics
2202
 
-AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER],
2203
 
-[AC_REQUIRE([LT_AC_PROG_SED])dnl
2204
 
-AC_MSG_CHECKING([dynamic linker characteristics])
2205
 
-library_names_spec=
2206
 
-libname_spec='lib$name'
2207
 
-soname_spec=
2208
 
-shrext_cmds=".so"
2209
 
-postinstall_cmds=
2210
 
-postuninstall_cmds=
2211
 
-finish_cmds=
2212
 
-finish_eval=
2213
 
-shlibpath_var=
2214
 
-shlibpath_overrides_runpath=unknown
2215
 
-version_type=none
2216
 
-dynamic_linker="$host_os ld.so"
2217
 
-sys_lib_dlsearch_path_spec="/lib /usr/lib"
2218
 
-m4_if($1,[],[
 
2177
+
2219
2178
+    if test "X$ECHO" = Xecho; then
2220
2179
+      # We didn't find a better echo, so look for alternatives.
2221
2180
+      if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' &&
2276
2235
+        fi
2277
2236
+      fi
2278
2237
+    fi
2279
 
+  fi
2280
 
+fi
2281
 
+
 
2238
   fi
 
2239
-else
 
2240
-  # We cannot hardcode anything, or else we can only hardcode existing
 
2241
-  # directories.
 
2242
-  _LT_AC_TAGVAR(hardcode_action, $1)=unsupported
 
2243
 fi
 
2244
-AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)])
 
2245
 
 
2246
-if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then
 
2247
-  # Fast installation is not supported
 
2248
-  enable_fast_install=no
 
2249
-elif test "$shlibpath_overrides_runpath" = yes ||
 
2250
-     test "$enable_shared" = no; then
 
2251
-  # Fast installation is not necessary
 
2252
-  enable_fast_install=needless
2282
2253
+# Copy echo and quote the copy suitably for passing to libtool from
2283
2254
+# the Makefile, instead of quoting the original, which is used later.
2284
2255
+lt_ECHO=$ECHO
2285
2256
+if test "X$lt_ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
2286
2257
+   lt_ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo"
2287
 
+fi
2288
 
+
 
2258
 fi
 
2259
-])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH
 
2260
 
2289
2261
+AC_SUBST(lt_ECHO)
2290
2262
+])
2291
2263
+_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts])
2292
2264
+_LT_DECL([], [ECHO], [1],
2293
2265
+    [An echo program that does not interpret backslashes])
2294
2266
+])# _LT_PROG_ECHO_BACKSLASH
2295
 
+
2296
 
+
 
2267
 
 
2268
-# AC_LIBTOOL_SYS_LIB_STRIP
 
2269
-# ------------------------
 
2270
-AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP],
 
2271
-[striplib=
 
2272
-old_striplib=
 
2273
-AC_MSG_CHECKING([whether stripping libraries is possible])
 
2274
-if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then
 
2275
-  test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
 
2276
-  test -z "$striplib" && striplib="$STRIP --strip-unneeded"
 
2277
-  AC_MSG_RESULT([yes])
 
2278
-else
 
2279
-# FIXME - insert some real tests, host_os isn't really good enough
 
2280
-  case $host_os in
 
2281
-   darwin*)
 
2282
-       if test -n "$STRIP" ; then
 
2283
-         striplib="$STRIP -x"
 
2284
-         old_striplib="$STRIP -S"
 
2285
-         AC_MSG_RESULT([yes])
 
2286
-       else
 
2287
-  AC_MSG_RESULT([no])
 
2288
-fi
 
2289
-       ;;
 
2290
-   *)
 
2291
-  AC_MSG_RESULT([no])
 
2292
-    ;;
 
2293
-  esac
 
2294
-fi
 
2295
-])# AC_LIBTOOL_SYS_LIB_STRIP
 
2296
 
2297
2297
+# _LT_ENABLE_LOCK
2298
2298
+# ---------------
2299
2299
+m4_defun([_LT_ENABLE_LOCK],
2301
2301
+  [AS_HELP_STRING([--disable-libtool-lock],
2302
2302
+    [avoid locking (might break parallel builds)])])
2303
2303
+test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
2304
 
+
 
2304
 
 
2305
-# AC_LIBTOOL_SYS_DYNAMIC_LINKER
 
2306
-# -----------------------------
 
2307
-# PORTME Fill in your ld.so characteristics
 
2308
-AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER],
 
2309
-[AC_REQUIRE([LT_AC_PROG_SED])dnl
 
2310
-AC_MSG_CHECKING([dynamic linker characteristics])
 
2311
-library_names_spec=
 
2312
-libname_spec='lib$name'
 
2313
-soname_spec=
 
2314
-shrext_cmds=".so"
 
2315
-postinstall_cmds=
 
2316
-postuninstall_cmds=
 
2317
-finish_cmds=
 
2318
-finish_eval=
 
2319
-shlibpath_var=
 
2320
-shlibpath_overrides_runpath=unknown
 
2321
-version_type=none
 
2322
-dynamic_linker="$host_os ld.so"
 
2323
-sys_lib_dlsearch_path_spec="/lib /usr/lib"
 
2324
-m4_if($1,[],[
 
2325
-if test "$GCC" = yes; then
 
2326
-  case $host_os in
 
2327
-    darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
 
2328
-    *) lt_awk_arg="/^libraries:/" ;;
 
2329
-  esac
 
2330
-  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"`
 
2331
-  if echo "$lt_search_path_spec" | grep ';' >/dev/null ; then
 
2332
-    # if the path contains ";" then we assume it to be the separator
 
2333
-    # otherwise default to the standard path separator (i.e. ":") - it is
 
2334
-    # assumed that no part of a normal pathname contains ";" but that should
 
2335
-    # okay in the real world where ";" in dirpaths is itself problematic.
 
2336
-    lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e 's/;/ /g'`
 
2337
-  else
 
2338
-    lt_search_path_spec=`echo "$lt_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
 
2339
-  fi
 
2340
-  # Ok, now we have the path, separated by spaces, we can step through it
 
2341
-  # and add multilib dir if necessary.
 
2342
-  lt_tmp_lt_search_path_spec=
 
2343
-  lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
 
2344
-  for lt_sys_path in $lt_search_path_spec; do
 
2345
-    if test -d "$lt_sys_path/$lt_multi_os_dir"; then
 
2346
-      lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir"
2305
2347
+# Some flags need to be propagated to the compiler or linker for good
2306
2348
+# libtool support.
2307
2349
+case $host in
2336
2378
+         LD="${LD-ld} -melf64bmip"
2337
2379
+       ;;
2338
2380
+      esac
2339
 
+    else
 
2381
     else
 
2382
-      test -d "$lt_sys_path" && \
 
2383
-       lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
2340
2384
+      case `/usr/bin/file conftest.$ac_objext` in
2341
2385
+       *32-bit*)
2342
2386
+         LD="${LD-ld} -32"
2348
2392
+         LD="${LD-ld} -64"
2349
2393
+         ;;
2350
2394
+      esac
2351
 
+    fi
 
2395
     fi
 
2396
-  done
 
2397
-  lt_search_path_spec=`echo $lt_tmp_lt_search_path_spec | awk '
 
2398
-BEGIN {RS=" "; FS="/|\n";} {
 
2399
-  lt_foo="";
 
2400
-  lt_count=0;
 
2401
-  for (lt_i = NF; lt_i > 0; lt_i--) {
 
2402
-    if ($lt_i != "" && $lt_i != ".") {
 
2403
-      if ($lt_i == "..") {
 
2404
-        lt_count++;
 
2405
-      } else {
 
2406
-        if (lt_count == 0) {
 
2407
-          lt_foo="/" $lt_i lt_foo;
 
2408
-        } else {
 
2409
-          lt_count--;
 
2410
-        }
 
2411
-      }
 
2412
-    }
 
2413
-  }
 
2414
-  if (lt_foo != "") { lt_freq[[lt_foo]]++; }
 
2415
-  if (lt_freq[[lt_foo]] == 1) { print lt_foo; }
 
2416
-}'`
 
2417
-  sys_lib_search_path_spec=`echo $lt_search_path_spec`
 
2418
-else
 
2419
-  sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
 
2420
-fi])
 
2421
-need_lib_prefix=unknown
 
2422
-hardcode_into_libs=no
 
2423
-
 
2424
-# when you set need_version to no, make sure it does not cause -set_version
 
2425
-# flags to be left without arguments
 
2426
-need_version=unknown
 
2427
-
 
2428
-case $host_os in
 
2429
-aix3*)
 
2430
-  version_type=linux
 
2431
-  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
 
2432
-  shlibpath_var=LIBPATH
2352
2433
+  fi
2353
2434
+  rm -rf conftest*
2354
2435
+  ;;
2355
 
+
 
2436
 
 
2437
-  # AIX 3 has no versioning support, so we append a major version to the name.
 
2438
-  soname_spec='${libname}${release}${shared_ext}$major'
2356
2439
+x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
2357
2440
+s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
2358
2441
+  # Find out which ABI we are using.
2400
2483
+    esac
2401
2484
+  fi
2402
2485
+  rm -rf conftest*
2403
 
+  ;;
2404
 
+
 
2486
   ;;
 
2487
 
 
2488
-aix[[4-9]]*)
 
2489
-  version_type=linux
 
2490
-  need_lib_prefix=no
 
2491
-  need_version=no
 
2492
-  hardcode_into_libs=yes
 
2493
-  if test "$host_cpu" = ia64; then
 
2494
-    # AIX 5 supports IA64
 
2495
-    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
 
2496
-    shlibpath_var=LD_LIBRARY_PATH
 
2497
-  else
 
2498
-    # With GCC up to 2.95.x, collect2 would create an import file
 
2499
-    # for dependence libraries.  The import file would start with
 
2500
-    # the line `#! .'.  This would cause the generated library to
 
2501
-    # depend on `.', always an invalid library.  This was fixed in
 
2502
-    # development snapshots of GCC prior to 3.0.
 
2503
-    case $host_os in
 
2504
-      aix4 | aix4.[[01]] | aix4.[[01]].*)
 
2505
-      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
 
2506
-          echo ' yes '
 
2507
-          echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then
 
2508
-       :
 
2509
-      else
 
2510
-       can_build_shared=no
 
2511
-      fi
2405
2512
+*-*-sco3.2v5*)
2406
2513
+  # On SCO OpenServer 5, we need -belf to get full-featured binaries.
2407
2514
+  SAVE_CFLAGS="$CFLAGS"
2429
2536
+       fi
2430
2537
+       ;;
2431
2538
+      esac
2432
 
+      ;;
2433
 
+    esac
2434
 
+  fi
 
2539
       ;;
 
2540
     esac
 
2541
-    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
 
2542
-    # soname into executable. Probably we can add versioning support to
 
2543
-    # collect2, so additional links can be useful in future.
 
2544
-    if test "$aix_use_runtimelinking" = yes; then
 
2545
-      # If using run time linking (on AIX 4.2 or later) use lib<name>.so
 
2546
-      # instead of lib<name>.a to let people know that these are not
 
2547
-      # typical AIX shared libraries.
 
2548
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
2549
-    else
 
2550
-      # We preserve .a as extension for shared libraries through AIX4.2
 
2551
-      # and later when we are not doing run time linking.
 
2552
-      library_names_spec='${libname}${release}.a $libname.a'
 
2553
-      soname_spec='${libname}${release}${shared_ext}$major'
 
2554
-    fi
 
2555
-    shlibpath_var=LIBPATH
 
2556
   fi
2435
2557
+  rm -rf conftest*
2436
 
+  ;;
 
2558
   ;;
2437
2559
+esac
2438
 
+
 
2560
 
 
2561
-amigaos*)
 
2562
-  library_names_spec='$libname.ixlibrary $libname.a'
 
2563
-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
 
2564
-  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
 
2565
-  ;;
2439
2566
+need_locks="$enable_libtool_lock"
2440
2567
+])# _LT_ENABLE_LOCK
2441
 
+
2442
 
+
 
2568
 
 
2569
-beos*)
 
2570
-  library_names_spec='${libname}${shared_ext}'
 
2571
-  dynamic_linker="$host_os ld.so"
 
2572
-  shlibpath_var=LIBRARY_PATH
 
2573
-  ;;
 
2574
 
 
2575
-bsdi[[45]]*)
 
2576
-  version_type=linux
 
2577
-  need_version=no
 
2578
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
2579
-  soname_spec='${libname}${release}${shared_ext}$major'
 
2580
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
 
2581
-  shlibpath_var=LD_LIBRARY_PATH
 
2582
-  sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
 
2583
-  sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
 
2584
-  # the default ld.so.conf also contains /usr/contrib/lib and
 
2585
-  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
 
2586
-  # libtool to hard-code these into programs
 
2587
-  ;;
2443
2588
+# _LT_CMD_OLD_ARCHIVE
2444
2589
+# -------------------
2445
2590
+m4_defun([_LT_CMD_OLD_ARCHIVE],
2448
2593
+test -z "$AR_FLAGS" && AR_FLAGS=cru
2449
2594
+_LT_DECL([], [AR], [1], [The archiver])
2450
2595
+_LT_DECL([], [AR_FLAGS], [1])
2451
 
+
 
2596
 
 
2597
-cygwin* | mingw* | pw32*)
 
2598
-  version_type=windows
 
2599
-  shrext_cmds=".dll"
 
2600
-  need_version=no
 
2601
-  need_lib_prefix=no
2452
2602
+AC_CHECK_TOOL(STRIP, strip, :)
2453
2603
+test -z "$STRIP" && STRIP=:
2454
2604
+_LT_DECL([], [STRIP], [1], [A symbol stripping program])
2455
 
+
 
2605
 
 
2606
-  case $GCC,$host_os in
 
2607
-  yes,cygwin* | yes,mingw* | yes,pw32*)
 
2608
-    library_names_spec='$libname.dll.a'
 
2609
-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
 
2610
-    postinstall_cmds='base_file=`basename \${file}`~
 
2611
-      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
 
2612
-      dldir=$destdir/`dirname \$dlpath`~
 
2613
-      test -d \$dldir || mkdir -p \$dldir~
 
2614
-      $install_prog $dir/$dlname \$dldir/$dlname~
 
2615
-      chmod a+x \$dldir/$dlname'
 
2616
-    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
 
2617
-      dlpath=$dir/\$dldll~
 
2618
-       $rm \$dlpath'
 
2619
-    shlibpath_overrides_runpath=yes
2456
2620
+AC_CHECK_TOOL(RANLIB, ranlib, :)
2457
2621
+test -z "$RANLIB" && RANLIB=:
2458
2622
+_LT_DECL([], [RANLIB], [1],
2459
2623
+    [Commands used to install an old-style archive])
2460
 
+
 
2624
 
 
2625
-    case $host_os in
 
2626
-    cygwin*)
 
2627
-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
 
2628
-      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
 
2629
-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
 
2630
-      ;;
 
2631
-    mingw*)
 
2632
-      # MinGW DLLs use traditional 'lib' prefix
 
2633
-      soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
 
2634
-      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
 
2635
-      if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then
 
2636
-        # It is most probably a Windows format PATH printed by
 
2637
-        # mingw gcc, but we are running on Cygwin. Gcc prints its search
 
2638
-        # path with ; separators, and with drive letters. We can handle the
 
2639
-        # drive letters (cygwin fileutils understands them), so leave them,
 
2640
-        # especially as we might pass files found there to a mingw objdump,
 
2641
-        # which wouldn't understand a cygwinified path. Ahh.
 
2642
-        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
 
2643
-      else
 
2644
-        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
 
2645
-      fi
 
2646
-      ;;
 
2647
-    pw32*)
 
2648
-      # pw32 DLLs use 'pw' prefix rather than 'lib'
 
2649
-      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
 
2650
-      ;;
 
2651
-    esac
 
2652
-    ;;
2461
2653
+# Determine commands to create old-style static archives.
2462
2654
+old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'
2463
2655
+old_postinstall_cmds='chmod 644 $oldlib'
2464
2656
+old_postuninstall_cmds=
2465
 
+
 
2657
 
2466
2658
+if test -n "$RANLIB"; then
2467
2659
+  case $host_os in
2468
2660
+  openbsd*)
2469
2661
+    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib"
2470
2662
+    ;;
2471
 
+  *)
 
2663
   *)
 
2664
-    library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
2472
2665
+    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib"
2473
 
+    ;;
2474
 
+  esac
 
2666
     ;;
 
2667
   esac
 
2668
-  dynamic_linker='Win32 ld.exe'
 
2669
-  # FIXME: first we should search . and the directory the executable is in
 
2670
-  shlibpath_var=PATH
 
2671
-  ;;
2475
2672
+  old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
2476
2673
+fi
2477
2674
+_LT_DECL([], [old_postinstall_cmds], [2])
2479
2676
+_LT_TAGDECL([], [old_archive_cmds], [2],
2480
2677
+    [Commands used to build an old-style archive])
2481
2678
+])# _LT_CMD_OLD_ARCHIVE
2482
 
+
2483
 
+
 
2679
 
 
2680
-darwin* | rhapsody*)
 
2681
-  dynamic_linker="$host_os dyld"
 
2682
-  version_type=darwin
 
2683
-  need_lib_prefix=no
 
2684
-  need_version=no
 
2685
-  library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext'
 
2686
-  soname_spec='${libname}${release}${major}$shared_ext'
 
2687
-  shlibpath_overrides_runpath=yes
 
2688
-  shlibpath_var=DYLD_LIBRARY_PATH
 
2689
-  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
 
2690
-  m4_if([$1], [],[
 
2691
-  sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) 
 
2692
-  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
 
2693
-  ;;
 
2694
 
 
2695
-dgux*)
 
2696
-  version_type=linux
 
2697
-  need_lib_prefix=no
 
2698
-  need_version=no
 
2699
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
 
2700
-  soname_spec='${libname}${release}${shared_ext}$major'
 
2701
-  shlibpath_var=LD_LIBRARY_PATH
 
2702
-  ;;
2484
2703
+# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
2485
2704
+#              [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])
2486
2705
+# ----------------------------------------------------------------
2518
2737
+   fi
2519
2738
+   $RM conftest*
2520
2739
+])
2521
 
+
 
2740
 
 
2741
-freebsd1*)
 
2742
-  dynamic_linker=no
 
2743
-  ;;
2522
2744
+if test x"[$]$2" = xyes; then
2523
2745
+    m4_if([$5], , :, [$5])
2524
2746
+else
2525
2747
+    m4_if([$6], , :, [$6])
2526
2748
+fi
2527
2749
+])# _LT_COMPILER_OPTION
2528
 
+
 
2750
 
 
2751
-freebsd* | dragonfly*)
 
2752
-  # DragonFly does not have aout.  When/if they implement a new
 
2753
-  # versioning mechanism, adjust this.
 
2754
-  if test -x /usr/bin/objformat; then
 
2755
-    objformat=`/usr/bin/objformat`
 
2756
-  else
 
2757
-    case $host_os in
 
2758
-    freebsd[[123]]*) objformat=aout ;;
 
2759
-    *) objformat=elf ;;
 
2760
-    esac
 
2761
-  fi
 
2762
-  version_type=freebsd-$objformat
 
2763
-  case $version_type in
 
2764
-    freebsd-elf*)
 
2765
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
 
2766
-      need_version=no
 
2767
-      need_lib_prefix=no
 
2768
-      ;;
 
2769
-    freebsd-*)
 
2770
-      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
 
2771
-      need_version=yes
 
2772
-      ;;
 
2773
-  esac
 
2774
-  shlibpath_var=LD_LIBRARY_PATH
 
2775
-  case $host_os in
 
2776
-  freebsd2*)
 
2777
-    shlibpath_overrides_runpath=yes
2529
2778
+# Old name:
2530
2779
+AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION])
2531
2780
+dnl aclocal-1.4 backwards compatibility:
2593
2842
+    # during glob expansion).  Even if it were fixed, the result of this
2594
2843
+    # check would be larger than it should be.
2595
2844
+    lt_cv_sys_max_cmd_len=12288;    # 12K is about right
2596
 
+    ;;
 
2845
     ;;
 
2846
-  freebsd3.[[01]]* | freebsdelf3.[[01]]*)
 
2847
-    shlibpath_overrides_runpath=yes
 
2848
-    hardcode_into_libs=yes
2597
2849
+
2598
2850
+  gnu*)
2599
2851
+    # Under GNU Hurd, this test is not required because there is
2600
2852
+    # no limit to the length of command line arguments.
2601
2853
+    # Libtool will interpret -1 as no limit whatsoever
2602
2854
+    lt_cv_sys_max_cmd_len=-1;
2603
 
+    ;;
 
2855
     ;;
 
2856
-  freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \
 
2857
-  freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)
 
2858
-    shlibpath_overrides_runpath=no
 
2859
-    hardcode_into_libs=yes
2604
2860
+
2605
2861
+  cygwin* | mingw*)
2606
2862
+    # On Win9x/ME, this test blows up -- it succeeds, but takes
2611
2867
+    # Instead, let's just punt: use the minimum linelength reported by
2612
2868
+    # all of the supported platforms: 8192 (on NT/2K/XP).
2613
2869
+    lt_cv_sys_max_cmd_len=8192;
2614
 
+    ;;
 
2870
     ;;
 
2871
-  *) # from 4.6 on, and DragonFly
 
2872
-    shlibpath_overrides_runpath=yes
 
2873
-    hardcode_into_libs=yes
2615
2874
+
2616
2875
+  amigaos*)
2617
2876
+    # On AmigaOS with pdksh, this test takes hours, literally.
2618
2877
+    # So we just punt and use a minimum line length of 8192.
2619
2878
+    lt_cv_sys_max_cmd_len=8192;
2620
 
+    ;;
2621
 
+
 
2879
     ;;
 
2880
-  esac
 
2881
-  ;;
 
2882
 
 
2883
-gnu*)
 
2884
-  version_type=linux
 
2885
-  need_lib_prefix=no
 
2886
-  need_version=no
 
2887
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
 
2888
-  soname_spec='${libname}${release}${shared_ext}$major'
 
2889
-  shlibpath_var=LD_LIBRARY_PATH
 
2890
-  hardcode_into_libs=yes
 
2891
-  ;;
2622
2892
+  netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
2623
2893
+    # This has been around since 386BSD, at least.  Likely further.
2624
2894
+    if test -x /sbin/sysctl; then
2632
2902
+    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
2633
2903
+    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
2634
2904
+    ;;
2635
 
+
 
2905
 
 
2906
-hpux9* | hpux10* | hpux11*)
 
2907
-  # Give a soname corresponding to the major version so that dld.sl refuses to
 
2908
-  # link against other versions.
 
2909
-  version_type=sunos
 
2910
-  need_lib_prefix=no
 
2911
-  need_version=no
 
2912
-  case $host_cpu in
 
2913
-  ia64*)
 
2914
-    shrext_cmds='.so'
 
2915
-    hardcode_into_libs=yes
 
2916
-    dynamic_linker="$host_os dld.so"
 
2917
-    shlibpath_var=LD_LIBRARY_PATH
 
2918
-    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
 
2919
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
2920
-    soname_spec='${libname}${release}${shared_ext}$major'
 
2921
-    if test "X$HPUX_IA64_MODE" = X32; then
 
2922
-      sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
2636
2923
+  interix*)
2637
2924
+    # We know the value 262144 and hardcode it with a safety zone (like BSD)
2638
2925
+    lt_cv_sys_max_cmd_len=196608
2658
2945
+    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
2659
2946
+    if test -n "$kargmax"; then
2660
2947
+      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[        ]]//'`
2661
 
+    else
 
2948
     else
 
2949
-      sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
2662
2950
+      lt_cv_sys_max_cmd_len=32768
2663
 
+    fi
2664
 
+    ;;
 
2951
     fi
 
2952
-    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
 
2953
     ;;
 
2954
-   hppa*64*)
 
2955
-     shrext_cmds='.sl'
 
2956
-     hardcode_into_libs=yes
 
2957
-     dynamic_linker="$host_os dld.sl"
 
2958
-     shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
 
2959
-     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
 
2960
-     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
2961
-     soname_spec='${libname}${release}${shared_ext}$major'
 
2962
-     sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
 
2963
-     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
 
2964
-     ;;
 
2965
-   *)
 
2966
-    shrext_cmds='.sl'
 
2967
-    dynamic_linker="$host_os dld.sl"
 
2968
-    shlibpath_var=SHLIB_PATH
 
2969
-    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
 
2970
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
2971
-    soname_spec='${libname}${release}${shared_ext}$major'
2665
2972
+  *)
2666
2973
+    lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
2667
2974
+    if test -n "$lt_cv_sys_max_cmd_len"; then
2692
2999
+      # linker.  It appears as though 1/2 is a usable value.
2693
3000
+      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
2694
3001
+    fi
2695
 
+    ;;
2696
 
+  esac
 
3002
     ;;
 
3003
   esac
 
3004
-  # HP-UX runs *really* slowly unless shared libraries are mode 555.
 
3005
-  postinstall_cmds='chmod 555 $lib'
 
3006
-  ;;
2697
3007
+])
2698
3008
+if test -n $lt_cv_sys_max_cmd_len ; then
2699
3009
+  AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
2704
3014
+_LT_DECL([], [max_cmd_len], [0],
2705
3015
+    [What is the maximum length of a command?])
2706
3016
+])# LT_CMD_MAX_LEN
2707
 
+
 
3017
 
 
3018
-interix[[3-9]]*)
 
3019
-  version_type=linux
 
3020
-  need_lib_prefix=no
 
3021
-  need_version=no
 
3022
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
3023
-  soname_spec='${libname}${release}${shared_ext}$major'
 
3024
-  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
 
3025
-  shlibpath_var=LD_LIBRARY_PATH
 
3026
-  shlibpath_overrides_runpath=no
 
3027
-  hardcode_into_libs=yes
 
3028
-  ;;
2708
3029
+# Old name:
2709
3030
+AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN])
2710
3031
+dnl aclocal-1.4 backwards compatibility:
2711
3032
+dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [])
2712
 
+
2713
 
+
 
3033
 
 
3034
-irix5* | irix6* | nonstopux*)
 
3035
-  case $host_os in
 
3036
-    nonstopux*) version_type=nonstopux ;;
 
3037
-    *)
 
3038
-       if test "$lt_cv_prog_gnu_ld" = yes; then
 
3039
-               version_type=linux
 
3040
-       else
 
3041
-               version_type=irix
 
3042
-       fi ;;
 
3043
-  esac
 
3044
-  need_lib_prefix=no
 
3045
-  need_version=no
 
3046
-  soname_spec='${libname}${release}${shared_ext}$major'
 
3047
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
 
3048
-  case $host_os in
 
3049
-  irix5* | nonstopux*)
 
3050
-    libsuff= shlibsuff=
 
3051
-    ;;
 
3052
-  *)
 
3053
-    case $LD in # libtool.m4 will add one of these switches to LD
 
3054
-    *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
 
3055
-      libsuff= shlibsuff= libmagic=32-bit;;
 
3056
-    *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
 
3057
-      libsuff=32 shlibsuff=N32 libmagic=N32;;
 
3058
-    *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
 
3059
-      libsuff=64 shlibsuff=64 libmagic=64-bit;;
 
3060
-    *) libsuff= shlibsuff= libmagic=never-match;;
 
3061
-    esac
 
3062
-    ;;
 
3063
-  esac
 
3064
-  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
 
3065
-  shlibpath_overrides_runpath=no
 
3066
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
 
3067
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
 
3068
-  hardcode_into_libs=yes
 
3069
-  ;;
 
3070
 
 
3071
-# No shared lib support for Linux oldld, aout, or coff.
 
3072
-linux*oldld* | linux*aout* | linux*coff*)
 
3073
-  dynamic_linker=no
 
3074
-  ;;
2714
3075
+# _LT_HEADER_DLFCN
2715
3076
+# ----------------
2716
3077
+m4_defun([_LT_HEADER_DLFCN],
2717
3078
+[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl
2718
3079
+])# _LT_HEADER_DLFCN
2719
 
+
2720
 
+
 
3080
 
 
3081
-# This must be Linux ELF.
 
3082
-linux* | k*bsd*-gnu)
 
3083
-  version_type=linux
 
3084
-  need_lib_prefix=no
 
3085
-  need_version=no
 
3086
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
3087
-  soname_spec='${libname}${release}${shared_ext}$major'
 
3088
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
 
3089
-  shlibpath_var=LD_LIBRARY_PATH
 
3090
-  shlibpath_overrides_runpath=no
 
3091
-  # This implies no fast_install, which is unacceptable.
 
3092
-  # Some rework will be needed to allow for fast_install
 
3093
-  # before this can be enabled.
 
3094
-  hardcode_into_libs=yes
 
3095
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
 
3096
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
 
3097
 
 
3098
-  # Append ld.so.conf contents to the search path
 
3099
-  if test -f /etc/ld.so.conf; then
 
3100
-    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[         ]*hwcap[        ]/d;s/[:,       ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
 
3101
-    sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra"
 
3102
-  fi
2721
3103
+# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
2722
3104
+#                      ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
2723
3105
+# ----------------------------------------------------------------
2731
3113
+  cat > conftest.$ac_ext <<_LT_EOF
2732
3114
+[#line __oline__ "configure"
2733
3115
+#include "confdefs.h"
2734
 
+
 
3116
 
 
3117
-  # We used to test for /lib/ld.so.1 and disable shared libraries on
 
3118
-  # powerpc, because MkLinux only supported shared libraries with the
 
3119
-  # GNU dynamic linker.  Since this was broken with cross compilers,
 
3120
-  # most powerpc-linux boxes support dynamic linking these days and
 
3121
-  # people can always --disable-shared, the test was removed, and we
 
3122
-  # assume the GNU/Linux dynamic linker is in use.
 
3123
-  dynamic_linker='GNU/Linux ld.so'
 
3124
-  ;;
2735
3125
+#if HAVE_DLFCN_H
2736
3126
+#include <dlfcn.h>
2737
3127
+#endif
2738
 
+
 
3128
 
 
3129
-netbsd*)
 
3130
-  version_type=sunos
 
3131
-  need_lib_prefix=no
 
3132
-  need_version=no
 
3133
-  if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
3134
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
3135
-    finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
 
3136
-    dynamic_linker='NetBSD (a.out) ld.so'
 
3137
-  else
 
3138
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
3139
-    soname_spec='${libname}${release}${shared_ext}$major'
 
3140
-    dynamic_linker='NetBSD ld.elf_so'
 
3141
-  fi
 
3142
-  shlibpath_var=LD_LIBRARY_PATH
 
3143
-  shlibpath_overrides_runpath=yes
 
3144
-  hardcode_into_libs=yes
 
3145
-  ;;
2739
3146
+#include <stdio.h>
2740
 
+
 
3147
 
 
3148
-newsos6)
 
3149
-  version_type=linux
 
3150
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
3151
-  shlibpath_var=LD_LIBRARY_PATH
 
3152
-  shlibpath_overrides_runpath=yes
 
3153
-  ;;
2741
3154
+#ifdef RTLD_GLOBAL
2742
3155
+#  define LT_DLGLOBAL          RTLD_GLOBAL
2743
3156
+#else
2747
3160
+#    define LT_DLGLOBAL                0
2748
3161
+#  endif
2749
3162
+#endif
2750
 
+
 
3163
 
 
3164
-nto-qnx*)
 
3165
-  version_type=linux
 
3166
-  need_lib_prefix=no
 
3167
-  need_version=no
 
3168
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
3169
-  soname_spec='${libname}${release}${shared_ext}$major'
 
3170
-  shlibpath_var=LD_LIBRARY_PATH
 
3171
-  shlibpath_overrides_runpath=yes
 
3172
-  ;;
2751
3173
+/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
2752
3174
+   find out it does not work in some platform. */
2753
3175
+#ifndef LT_DLLAZY_OR_NOW
2769
3191
+#    endif
2770
3192
+#  endif
2771
3193
+#endif
2772
 
+
 
3194
 
 
3195
-openbsd*)
 
3196
-  version_type=sunos
 
3197
-  sys_lib_dlsearch_path_spec="/usr/lib"
 
3198
-  need_lib_prefix=no
 
3199
-  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
 
3200
-  case $host_os in
 
3201
-    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
 
3202
-    *)                         need_version=no  ;;
 
3203
-  esac
 
3204
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
3205
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
 
3206
-  shlibpath_var=LD_LIBRARY_PATH
 
3207
-  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
 
3208
-    case $host_os in
 
3209
-      openbsd2.[[89]] | openbsd2.[[89]].*)
 
3210
-       shlibpath_overrides_runpath=no
 
3211
-       ;;
 
3212
-      *)
 
3213
-       shlibpath_overrides_runpath=yes
 
3214
-       ;;
 
3215
-      esac
2773
3216
+#ifdef __cplusplus
2774
3217
+extern "C" void exit (int);
2775
3218
+#endif
2786
3229
+      else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
2787
3230
+      /* dlclose (self); */
2788
3231
+    }
2789
 
+  else
 
3232
   else
 
3233
-    shlibpath_overrides_runpath=yes
2790
3234
+    puts (dlerror ());
2791
3235
+
2792
3236
+    exit (status);
2803
3247
+  else :
2804
3248
+    # compilation failed
2805
3249
+    $3
2806
 
+  fi
 
3250
   fi
 
3251
-  ;;
2807
3252
+fi
2808
3253
+rm -fr conftest*
2809
3254
+])# _LT_TRY_DLOPEN_SELF
2810
 
+
2811
 
+
 
3255
 
 
3256
-os2*)
 
3257
-  libname_spec='$name'
 
3258
-  shrext_cmds=".dll"
 
3259
-  need_lib_prefix=no
 
3260
-  library_names_spec='$libname${shared_ext} $libname.a'
 
3261
-  dynamic_linker='OS/2 ld.exe'
 
3262
-  shlibpath_var=LIBPATH
 
3263
-  ;;
 
3264
 
 
3265
-osf3* | osf4* | osf5*)
 
3266
-  version_type=osf
 
3267
-  need_lib_prefix=no
 
3268
-  need_version=no
 
3269
-  soname_spec='${libname}${release}${shared_ext}$major'
 
3270
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
3271
-  shlibpath_var=LD_LIBRARY_PATH
 
3272
-  sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
 
3273
-  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
 
3274
-  ;;
2812
3275
+# LT_SYS_DLOPEN_SELF
2813
3276
+# ------------------
2814
3277
+AC_DEFUN([LT_SYS_DLOPEN_SELF],
2820
3283
+else
2821
3284
+  lt_cv_dlopen=no
2822
3285
+  lt_cv_dlopen_libs=
2823
 
+
 
3286
 
 
3287
-rdos*)
 
3288
-  dynamic_linker=no
 
3289
-  ;;
2824
3290
+  case $host_os in
2825
3291
+  beos*)
2826
3292
+    lt_cv_dlopen="load_add_on"
2827
3293
+    lt_cv_dlopen_libs=
2828
3294
+    lt_cv_dlopen_self=yes
2829
3295
+    ;;
2830
 
+
 
3296
 
 
3297
-solaris*)
 
3298
-  version_type=linux
 
3299
-  need_lib_prefix=no
 
3300
-  need_version=no
 
3301
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
3302
-  soname_spec='${libname}${release}${shared_ext}$major'
 
3303
-  shlibpath_var=LD_LIBRARY_PATH
 
3304
-  shlibpath_overrides_runpath=yes
 
3305
-  hardcode_into_libs=yes
 
3306
-  # ldd complains unless libraries are executable
 
3307
-  postinstall_cmds='chmod +x $lib'
 
3308
-  ;;
2831
3309
+  mingw* | pw32*)
2832
3310
+    lt_cv_dlopen="LoadLibrary"
2833
3311
+    lt_cv_dlopen_libs=
2834
3312
+    ;;
2835
 
+
 
3313
 
 
3314
-sunos4*)
 
3315
-  version_type=sunos
 
3316
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
3317
-  finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
 
3318
-  shlibpath_var=LD_LIBRARY_PATH
 
3319
-  shlibpath_overrides_runpath=yes
 
3320
-  if test "$with_gnu_ld" = yes; then
 
3321
-    need_lib_prefix=no
 
3322
-  fi
 
3323
-  need_version=yes
 
3324
-  ;;
2836
3325
+  cygwin*)
2837
3326
+    lt_cv_dlopen="dlopen"
2838
3327
+    lt_cv_dlopen_libs=
2839
3328
+    ;;
2840
 
+
 
3329
 
 
3330
-sysv4 | sysv4.3*)
 
3331
-  version_type=linux
 
3332
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
3333
-  soname_spec='${libname}${release}${shared_ext}$major'
 
3334
-  shlibpath_var=LD_LIBRARY_PATH
 
3335
-  case $host_vendor in
 
3336
-    sni)
 
3337
-      shlibpath_overrides_runpath=no
 
3338
-      need_lib_prefix=no
 
3339
-      export_dynamic_flag_spec='${wl}-Blargedynsym'
 
3340
-      runpath_var=LD_RUN_PATH
 
3341
-      ;;
 
3342
-    siemens)
 
3343
-      need_lib_prefix=no
 
3344
-      ;;
 
3345
-    motorola)
 
3346
-      need_lib_prefix=no
 
3347
-      need_version=no
 
3348
-      shlibpath_overrides_runpath=no
 
3349
-      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
 
3350
-      ;;
 
3351
-  esac
 
3352
-  ;;
2841
3353
+  darwin*)
2842
3354
+  # if libdl is installed we need to link against it
2843
3355
+    AC_CHECK_LIB([dl], [dlopen],
2847
3359
+    lt_cv_dlopen_self=yes
2848
3360
+    ])
2849
3361
+    ;;
2850
 
+
 
3362
 
 
3363
-sysv4*MP*)
 
3364
-  if test -d /usr/nec ;then
 
3365
-    version_type=linux
 
3366
-    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
 
3367
-    soname_spec='$libname${shared_ext}.$major'
 
3368
-    shlibpath_var=LD_LIBRARY_PATH
 
3369
-  fi
 
3370
-  ;;
2851
3371
+  *)
2852
3372
+    AC_CHECK_FUNC([shl_load],
2853
3373
+         [lt_cv_dlopen="shl_load"],
2868
3388
+      ])
2869
3389
+    ;;
2870
3390
+  esac
2871
 
+
 
3391
 
 
3392
-sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
 
3393
-  version_type=freebsd-elf
 
3394
-  need_lib_prefix=no
 
3395
-  need_version=no
 
3396
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
 
3397
-  soname_spec='${libname}${release}${shared_ext}$major'
 
3398
-  shlibpath_var=LD_LIBRARY_PATH
 
3399
-  hardcode_into_libs=yes
 
3400
-  if test "$with_gnu_ld" = yes; then
 
3401
-    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
 
3402
-    shlibpath_overrides_runpath=no
2872
3403
+  if test "x$lt_cv_dlopen" != xno; then
2873
3404
+    enable_dlopen=yes
2874
 
+  else
 
3405
   else
 
3406
-    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
 
3407
-    shlibpath_overrides_runpath=yes
 
3408
-    case $host_os in
 
3409
-      sco3.2v5*)
 
3410
-        sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
 
3411
-       ;;
 
3412
-    esac
2875
3413
+    enable_dlopen=no
2876
 
+  fi
2877
 
+
 
3414
   fi
 
3415
-  sys_lib_dlsearch_path_spec='/usr/lib'
 
3416
-  ;;
 
3417
-
 
3418
-uts4*)
 
3419
-  version_type=linux
 
3420
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
3421
-  soname_spec='${libname}${release}${shared_ext}$major'
 
3422
-  shlibpath_var=LD_LIBRARY_PATH
 
3423
-  ;;
 
3424
 
 
3425
-*)
 
3426
-  dynamic_linker=no
 
3427
-  ;;
 
3428
-esac
 
3429
-AC_MSG_RESULT([$dynamic_linker])
 
3430
-test "$dynamic_linker" = no && can_build_shared=no
2878
3431
+  case $lt_cv_dlopen in
2879
3432
+  dlopen)
2880
3433
+    save_CPPFLAGS="$CPPFLAGS"
2881
3434
+    test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
2882
 
+
 
3435
 
 
3436
-AC_CACHE_VAL([lt_cv_sys_lib_search_path_spec],
 
3437
-[lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec"])
 
3438
-sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
 
3439
-AC_CACHE_VAL([lt_cv_sys_lib_dlsearch_path_spec],
 
3440
-[lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec"])
 
3441
-sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
2883
3442
+    save_LDFLAGS="$LDFLAGS"
2884
3443
+    wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
2885
 
+
 
3444
 
 
3445
-variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
 
3446
-if test "$GCC" = yes; then
 
3447
-  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
 
3448
-fi
 
3449
-])# AC_LIBTOOL_SYS_DYNAMIC_LINKER
2886
3450
+    save_LIBS="$LIBS"
2887
3451
+    LIBS="$lt_cv_dlopen_libs $LIBS"
2888
 
+
 
3452
 
2889
3453
+    AC_CACHE_CHECK([whether a program can dlopen itself],
2890
3454
+         lt_cv_dlopen_self, [dnl
2891
3455
+         _LT_TRY_DLOPEN_SELF(
2892
3456
+           lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
2893
3457
+           lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
2894
3458
+    ])
2895
 
+
 
3459
 
 
3460
-# _LT_AC_TAGCONFIG
 
3461
-# ----------------
 
3462
-AC_DEFUN([_LT_AC_TAGCONFIG],
 
3463
-[AC_REQUIRE([LT_AC_PROG_SED])dnl
 
3464
-AC_ARG_WITH([tags],
 
3465
-    [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@],
 
3466
-        [include additional configurations @<:@automatic@:>@])],
 
3467
-    [tagnames="$withval"])
 
3468
-
 
3469
-if test -f "$ltmain" && test -n "$tagnames"; then
 
3470
-  if test ! -f "${ofile}"; then
 
3471
-    AC_MSG_WARN([output file `$ofile' does not exist])
 
3472
-  fi
 
3473
-
 
3474
-  if test -z "$LTCC"; then
 
3475
-    eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
 
3476
-    if test -z "$LTCC"; then
 
3477
-      AC_MSG_WARN([output file `$ofile' does not look like a libtool script])
 
3478
-    else
 
3479
-      AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile'])
2896
3480
+    if test "x$lt_cv_dlopen_self" = xyes; then
2897
3481
+      wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
2898
3482
+      AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
2901
3485
+           lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
2902
3486
+           lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)
2903
3487
+      ])
2904
 
+    fi
2905
 
+
 
3488
     fi
 
3489
-  fi
 
3490
-  if test -z "$LTCFLAGS"; then
 
3491
-    eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`"
 
3492
-  fi
 
3493
 
 
3494
-  # Extract list of available tagged configurations in $ofile.
 
3495
-  # Note that this assumes the entire list is on one line.
 
3496
-  available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'`
 
3497
-
 
3498
-  lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
 
3499
-  for tagname in $tagnames; do
 
3500
-    IFS="$lt_save_ifs"
 
3501
-    # Check whether tagname contains only valid characters
 
3502
-    case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in
 
3503
-    "") ;;
 
3504
-    *)  AC_MSG_ERROR([invalid tag name: $tagname])
 
3505
-       ;;
 
3506
-    esac
2906
3507
+    CPPFLAGS="$save_CPPFLAGS"
2907
3508
+    LDFLAGS="$save_LDFLAGS"
2908
3509
+    LIBS="$save_LIBS"
2909
3510
+    ;;
2910
3511
+  esac
2911
 
+
 
3512
 
 
3513
-    if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null
 
3514
-    then
 
3515
-      AC_MSG_ERROR([tag name \"$tagname\" already exists])
 
3516
-    fi
2912
3517
+  case $lt_cv_dlopen_self in
2913
3518
+  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
2914
3519
+  *) enable_dlopen_self=unknown ;;
2915
3520
+  esac
2916
 
+
 
3521
 
 
3522
-    # Update the list of available tags.
 
3523
-    if test -n "$tagname"; then
 
3524
-      echo appending configuration tag \"$tagname\" to $ofile
 
3525
-
 
3526
-      case $tagname in
 
3527
-      CXX)
 
3528
-       if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
 
3529
-           ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
 
3530
-           (test "X$CXX" != "Xg++"))) ; then
 
3531
-         AC_LIBTOOL_LANG_CXX_CONFIG
 
3532
-       else
 
3533
-         tagname=""
 
3534
-       fi
 
3535
-       ;;
2917
3536
+  case $lt_cv_dlopen_self_static in
2918
3537
+  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
2919
3538
+  *) enable_dlopen_self_static=unknown ;;
2931
3550
+AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF])
2932
3551
+dnl aclocal-1.4 backwards compatibility:
2933
3552
+dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [])
2934
 
+
2935
 
+
 
3553
 
 
3554
-      F77)
 
3555
-       if test -n "$F77" && test "X$F77" != "Xno"; then
 
3556
-         AC_LIBTOOL_LANG_F77_CONFIG
 
3557
-       else
 
3558
-         tagname=""
 
3559
-       fi
 
3560
-       ;;
 
3561
 
 
3562
-      GCJ)
 
3563
-       if test -n "$GCJ" && test "X$GCJ" != "Xno"; then
 
3564
-         AC_LIBTOOL_LANG_GCJ_CONFIG
 
3565
-       else
 
3566
-         tagname=""
 
3567
-       fi
 
3568
-       ;;
2936
3569
+# _LT_COMPILER_C_O([TAGNAME])
2937
3570
+# ---------------------------
2938
3571
+# Check to see if options -c and -o are simultaneously supported by compiler.
2949
3582
+   cd conftest
2950
3583
+   mkdir out
2951
3584
+   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
2952
 
+
 
3585
 
 
3586
-      RC)
 
3587
-       AC_LIBTOOL_LANG_RC_CONFIG
 
3588
-       ;;
2953
3589
+   lt_compiler_flag="-o out/conftest2.$ac_objext"
2954
3590
+   # Insert the option either (1) after the last *FLAGS variable, or
2955
3591
+   # (2) before a word containing "conftest.", or (3) at the end.
2987
3623
+_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1],
2988
3624
+       [Does compiler simultaneously support -c and -o options?])
2989
3625
+])# _LT_COMPILER_C_O
2990
 
+
2991
 
+
 
3626
 
 
3627
-      *)
 
3628
-       AC_MSG_ERROR([Unsupported tag name: $tagname])
 
3629
-       ;;
 
3630
-      esac
 
3631
 
 
3632
-      # Append the new tag name to the list of available tags.
 
3633
-      if test -n "$tagname" ; then
 
3634
-      available_tags="$available_tags $tagname"
 
3635
-    fi
 
3636
-    fi
 
3637
-  done
 
3638
-  IFS="$lt_save_ifs"
2992
3639
+# _LT_COMPILER_FILE_LOCKS([TAGNAME])
2993
3640
+# ----------------------------------
2994
3641
+# Check to see if we can do hard links to lock some files if needed
2996
3643
+[m4_require([_LT_ENABLE_LOCK])dnl
2997
3644
+m4_require([_LT_FILEUTILS_DEFAULTS])dnl
2998
3645
+_LT_COMPILER_C_O([$1])
2999
 
+
 
3646
 
 
3647
-  # Now substitute the updated list of available tags.
 
3648
-  if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then
 
3649
-    mv "${ofile}T" "$ofile"
 
3650
-    chmod +x "$ofile"
 
3651
-  else
 
3652
-    rm -f "${ofile}T"
 
3653
-    AC_MSG_ERROR([unable to update list of available tagged configurations.])
3000
3654
+hard_links="nottested"
3001
3655
+if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
3002
3656
+  # do not overwrite the value of need_locks provided by the user
3011
3665
+  if test "$hard_links" = no; then
3012
3666
+    AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
3013
3667
+    need_locks=warn
3014
 
+  fi
 
3668
   fi
3015
3669
+else
3016
3670
+  need_locks=no
3017
 
+fi
 
3671
 fi
 
3672
-])# _LT_AC_TAGCONFIG
3018
3673
+_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?])
3019
3674
+])# _LT_COMPILER_FILE_LOCKS
3020
 
+
3021
 
+
 
3675
 
 
3676
 
 
3677
-# AC_LIBTOOL_DLOPEN
 
3678
-# -----------------
 
3679
-# enable checks for dlopen support
 
3680
-AC_DEFUN([AC_LIBTOOL_DLOPEN],
 
3681
- [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])
 
3682
-])# AC_LIBTOOL_DLOPEN
3022
3683
+# _LT_CHECK_OBJDIR
3023
3684
+# ----------------
3024
3685
+m4_defun([_LT_CHECK_OBJDIR],
3039
3700
+AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/",
3040
3701
+  [Define to the sub-directory in which libtool stores uninstalled libraries.])
3041
3702
+])# _LT_CHECK_OBJDIR
3042
 
+
3043
 
+
 
3703
 
 
3704
 
 
3705
-# AC_LIBTOOL_WIN32_DLL
 
3706
-# --------------------
 
3707
-# declare package support for building win32 DLLs
 
3708
-AC_DEFUN([AC_LIBTOOL_WIN32_DLL],
 
3709
-[AC_BEFORE([$0], [AC_LIBTOOL_SETUP])
 
3710
-])# AC_LIBTOOL_WIN32_DLL
3044
3711
+# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME])
3045
3712
+# --------------------------------------
3046
3713
+# Check hardcoding attributes.
3050
3717
+if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" ||
3051
3718
+   test -n "$_LT_TAGVAR(runpath_var, $1)" ||
3052
3719
+   test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
3053
 
+
 
3720
 
3054
3721
+  # We can hardcode non-existent directories.
3055
3722
+  if test "$_LT_TAGVAR(hardcode_direct, $1)" != no &&
3056
3723
+     # If the only mechanism to avoid hardcoding is shlibpath_var, we
3070
3737
+  _LT_TAGVAR(hardcode_action, $1)=unsupported
3071
3738
+fi
3072
3739
+AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)])
3073
 
+
 
3740
 
 
3741
-# AC_ENABLE_SHARED([DEFAULT])
 
3742
-# ---------------------------
 
3743
-# implement the --enable-shared flag
 
3744
-# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
 
3745
-AC_DEFUN([AC_ENABLE_SHARED],
 
3746
-[define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
 
3747
-AC_ARG_ENABLE([shared],
 
3748
-    [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
 
3749
-       [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])],
 
3750
-    [p=${PACKAGE-default}
 
3751
-    case $enableval in
 
3752
-    yes) enable_shared=yes ;;
 
3753
-    no) enable_shared=no ;;
 
3754
-    *)
 
3755
-      enable_shared=no
 
3756
-      # Look at the argument we got.  We use all the common list separators.
 
3757
-      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
 
3758
-      for pkg in $enableval; do
 
3759
-       IFS="$lt_save_ifs"
 
3760
-       if test "X$pkg" = "X$p"; then
 
3761
-         enable_shared=yes
 
3762
-       fi
 
3763
-      done
 
3764
-      IFS="$lt_save_ifs"
 
3765
-      ;;
 
3766
-    esac],
 
3767
-    [enable_shared=]AC_ENABLE_SHARED_DEFAULT)
 
3768
-])# AC_ENABLE_SHARED
3074
3769
+if test "$_LT_TAGVAR(hardcode_action, $1)" = relink ||
3075
3770
+   test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then
3076
3771
+  # Fast installation is not supported
3083
3778
+_LT_TAGDECL([], [hardcode_action], [0],
3084
3779
+    [How to hardcode a shared library path into an executable])
3085
3780
+])# _LT_LINKER_HARDCODE_LIBPATH
3086
 
+
3087
 
+
 
3781
 
 
3782
 
 
3783
-# AC_DISABLE_SHARED
 
3784
-# -----------------
 
3785
-# set the default shared flag to --disable-shared
 
3786
-AC_DEFUN([AC_DISABLE_SHARED],
 
3787
-[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
 
3788
-AC_ENABLE_SHARED(no)
 
3789
-])# AC_DISABLE_SHARED
3088
3790
+# _LT_CMD_STRIPLIB
3089
3791
+# ----------------
3090
3792
+m4_defun([_LT_CMD_STRIPLIB],
3116
3818
+_LT_DECL([], [old_striplib], [1], [Commands to strip libraries])
3117
3819
+_LT_DECL([], [striplib], [1])
3118
3820
+])# _LT_CMD_STRIPLIB
3119
 
+
3120
 
+
3121
 
+# _LT_SYS_DYNAMIC_LINKER([TAG])
3122
 
+# -----------------------------
3123
 
+# PORTME Fill in your ld.so characteristics
3124
 
+m4_defun([_LT_SYS_DYNAMIC_LINKER],
3125
 
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
3126
 
+m4_require([_LT_DECL_EGREP])dnl
3127
 
+m4_require([_LT_FILEUTILS_DEFAULTS])dnl
3128
 
+m4_require([_LT_DECL_SED])dnl
3129
 
+AC_MSG_CHECKING([dynamic linker characteristics])
3130
 
+m4_if([$1],
3131
 
+       [], [
3132
 
 if test "$GCC" = yes; then
3133
 
   case $host_os in
3134
 
     darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
3135
 
     *) lt_awk_arg="/^libraries:/" ;;
3136
 
   esac
3137
 
   lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"`
3138
 
-  if echo "$lt_search_path_spec" | grep ';' >/dev/null ; then
3139
 
+  if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then
3140
 
     # if the path contains ";" then we assume it to be the separator
3141
 
     # otherwise default to the standard path separator (i.e. ":") - it is
3142
 
     # assumed that no part of a normal pathname contains ";" but that should
3143
 
     # okay in the real world where ";" in dirpaths is itself problematic.
3144
 
-    lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e 's/;/ /g'`
3145
 
+    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'`
3146
 
   else
3147
 
-    lt_search_path_spec=`echo "$lt_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
3148
 
+    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
3149
 
   fi
3150
 
   # Ok, now we have the path, separated by spaces, we can step through it
3151
 
   # and add multilib dir if necessary.
3152
 
@@ -2160,7 +2976,7 @@
3153
 
        lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
3154
 
     fi
3155
 
   done
3156
 
-  lt_search_path_spec=`echo $lt_tmp_lt_search_path_spec | awk '
3157
 
+  lt_search_path_spec=`$ECHO $lt_tmp_lt_search_path_spec | awk '
3158
 
 BEGIN {RS=" "; FS="/|\n";} {
3159
 
   lt_foo="";
3160
 
   lt_count=0;
3161
 
@@ -2180,10 +2996,23 @@
3162
 
   if (lt_foo != "") { lt_freq[[lt_foo]]++; }
3163
 
   if (lt_freq[[lt_foo]] == 1) { print lt_foo; }
3164
 
 }'`
3165
 
-  sys_lib_search_path_spec=`echo $lt_search_path_spec`
3166
 
+  sys_lib_search_path_spec=`$ECHO $lt_search_path_spec`
3167
 
 else
3168
 
   sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
3169
 
 fi])
3170
 
+library_names_spec=
3171
 
+libname_spec='lib$name'
3172
 
+soname_spec=
3173
 
+shrext_cmds=".so"
3174
 
+postinstall_cmds=
3175
 
+postuninstall_cmds=
3176
 
+finish_cmds=
3177
 
+finish_eval=
3178
 
+shlibpath_var=
3179
 
+shlibpath_overrides_runpath=unknown
3180
 
+version_type=none
3181
 
+dynamic_linker="$host_os ld.so"
3182
 
+sys_lib_dlsearch_path_spec="/lib /usr/lib"
3183
 
 need_lib_prefix=unknown
3184
 
 hardcode_into_libs=no
3185
 
 
3186
 
@@ -2201,7 +3030,7 @@
3187
 
   soname_spec='${libname}${release}${shared_ext}$major'
3188
 
   ;;
3189
 
 
3190
 
-aix4* | aix5*)
3191
 
+aix[[4-9]]*)
3192
 
   version_type=linux
3193
 
   need_lib_prefix=no
3194
 
   need_version=no
3195
 
@@ -2220,7 +3049,7 @@
3196
 
       aix4 | aix4.[[01]] | aix4.[[01]].*)
3197
 
       if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
3198
 
           echo ' yes '
3199
 
-          echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then
3200
 
+          echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
3201
 
        :
3202
 
       else
3203
 
        can_build_shared=no
3204
 
@@ -2246,9 +3075,18 @@
3205
 
   ;;
3206
 
 
3207
 
 amigaos*)
3208
 
+  case $host_cpu in
3209
 
+  powerpc)
3210
 
+    # Since July 2007 AmigaOS4 officially supports .so libraries.
3211
 
+    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
3212
 
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
3213
 
+    ;;
3214
 
+  m68k)
3215
 
   library_names_spec='$libname.ixlibrary $libname.a'
3216
 
   # Create ${libname}_ixlibrary.a entries in /sys/libs.
3217
 
-  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
3218
 
+    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
3219
 
+    ;;
3220
 
+  esac
3221
 
   ;;
3222
 
 
3223
 
 beos*)
3224
 
@@ -2282,14 +3120,17 @@
3225
 
     library_names_spec='$libname.dll.a'
3226
 
     # DLL is installed to $(libdir)/../bin by postinstall_cmds
3227
 
     postinstall_cmds='base_file=`basename \${file}`~
3228
 
-      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
3229
 
+      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
3230
 
       dldir=$destdir/`dirname \$dlpath`~
3231
 
       test -d \$dldir || mkdir -p \$dldir~
3232
 
       $install_prog $dir/$dlname \$dldir/$dlname~
3233
 
-      chmod a+x \$dldir/$dlname'
3234
 
+      chmod a+x \$dldir/$dlname~
3235
 
+      if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
3236
 
+        eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
3237
 
+      fi'
3238
 
     postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
3239
 
       dlpath=$dir/\$dldll~
3240
 
-       $rm \$dlpath'
3241
 
+       $RM \$dlpath'
3242
 
     shlibpath_overrides_runpath=yes
3243
 
 
3244
 
     case $host_os in
3245
 
@@ -2301,17 +3142,17 @@
3246
 
     mingw*)
3247
 
       # MinGW DLLs use traditional 'lib' prefix
3248
 
       soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
3249
 
-      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
3250
 
-      if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then
3251
 
+      sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
3252
 
+      if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then
3253
 
         # It is most probably a Windows format PATH printed by
3254
 
         # mingw gcc, but we are running on Cygwin. Gcc prints its search
3255
 
         # path with ; separators, and with drive letters. We can handle the
3256
 
         # drive letters (cygwin fileutils understands them), so leave them,
3257
 
         # especially as we might pass files found there to a mingw objdump,
3258
 
         # which wouldn't understand a cygwinified path. Ahh.
3259
 
-        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
3260
 
+        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
3261
 
       else
3262
 
-        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
3263
 
+        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
3264
 
       fi
3265
 
       ;;
3266
 
     pw32*)
3267
 
@@ -2335,12 +3176,12 @@
3268
 
   version_type=darwin
3269
 
   need_lib_prefix=no
3270
 
   need_version=no
3271
 
-  library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext'
3272
 
+  library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
3273
 
   soname_spec='${libname}${release}${major}$shared_ext'
3274
 
   shlibpath_overrides_runpath=yes
3275
 
   shlibpath_var=DYLD_LIBRARY_PATH
3276
 
   shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
3277
 
-  m4_if([$1], [],[
3278
 
+m4_if([$1], [],[
3279
 
   sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) 
3280
 
   sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
3281
 
   ;;
3282
 
@@ -2522,17 +3363,26 @@
3283
 
   finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
3284
 
   shlibpath_var=LD_LIBRARY_PATH
3285
 
   shlibpath_overrides_runpath=no
3286
 
+  # Some binutils ld are patched to set DT_RUNPATH
3287
 
+  save_LDFLAGS=$LDFLAGS
3288
 
+  save_libdir=$libdir
3289
 
+  eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \
3290
 
+       LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\""
3291
 
+  AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
3292
 
+    [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null],
3293
 
+       [shlibpath_overrides_runpath=yes])])
3294
 
+  LDFLAGS=$save_LDFLAGS
3295
 
+  libdir=$save_libdir
3296
 
+
3297
 
   # This implies no fast_install, which is unacceptable.
3298
 
   # Some rework will be needed to allow for fast_install
3299
 
   # before this can be enabled.
3300
 
   hardcode_into_libs=yes
3301
 
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
3302
 
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
3303
 
 
3304
 
   # Append ld.so.conf contents to the search path
3305
 
   if test -f /etc/ld.so.conf; then
3306
 
     lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[         ]*hwcap[        ]/d;s/[:,       ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
3307
 
-    sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra"
3308
 
+    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
3309
 
   fi
3310
 
 
3311
 
   # We used to test for /lib/ld.so.1 and disable shared libraries on
3312
 
@@ -2544,11 +3394,23 @@
3313
 
   dynamic_linker='GNU/Linux ld.so'
3314
 
   ;;
3315
 
 
3316
 
+netbsdelf*-gnu)
3317
 
+  version_type=linux
3318
 
+  need_lib_prefix=no
3319
 
+  need_version=no
3320
 
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
3321
 
+  soname_spec='${libname}${release}${shared_ext}$major'
3322
 
+  shlibpath_var=LD_LIBRARY_PATH
3323
 
+  shlibpath_overrides_runpath=no
3324
 
+  hardcode_into_libs=yes
3325
 
+  dynamic_linker='NetBSD ld.elf_so'
3326
 
+  ;;
3327
 
+
3328
 
 netbsd*)
3329
 
   version_type=sunos
3330
 
   need_lib_prefix=no
3331
 
   need_version=no
3332
 
-  if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
3333
 
+  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
3334
 
     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
3335
 
     finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
3336
 
     dynamic_linker='NetBSD (a.out) ld.so'
3337
 
@@ -2569,14 +3431,16 @@
3338
 
   shlibpath_overrides_runpath=yes
3339
 
   ;;
3340
 
 
3341
 
-nto-qnx*)
3342
 
-  version_type=linux
3343
 
+*nto* | *qnx*)
3344
 
+  version_type=qnx
3345
 
   need_lib_prefix=no
3346
 
   need_version=no
3347
 
   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
3348
 
   soname_spec='${libname}${release}${shared_ext}$major'
3349
 
   shlibpath_var=LD_LIBRARY_PATH
3350
 
-  shlibpath_overrides_runpath=yes
3351
 
+  shlibpath_overrides_runpath=no
3352
 
+  hardcode_into_libs=yes
3353
 
+  dynamic_linker='ldqnx.so'
3354
 
   ;;
3355
 
 
3356
 
 openbsd*)
3357
 
@@ -2591,7 +3455,7 @@
3358
 
   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
3359
 
   finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
3360
 
   shlibpath_var=LD_LIBRARY_PATH
3361
 
-  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
3362
 
+  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
3363
 
     case $host_os in
3364
 
       openbsd2.[[89]] | openbsd2.[[89]].*)
3365
 
        shlibpath_overrides_runpath=no
3366
 
@@ -2663,7 +3527,6 @@
3367
 
     sni)
3368
 
       shlibpath_overrides_runpath=no
3369
 
       need_lib_prefix=no
3370
 
-      export_dynamic_flag_spec='${wl}-Blargedynsym'
3371
 
       runpath_var=LD_RUN_PATH
3372
 
       ;;
3373
 
     siemens)
3374
 
@@ -2694,13 +3557,12 @@
3375
 
   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
3376
 
   soname_spec='${libname}${release}${shared_ext}$major'
3377
 
   shlibpath_var=LD_LIBRARY_PATH
3378
 
+  shlibpath_overrides_runpath=yes
3379
 
   hardcode_into_libs=yes
3380
 
   if test "$with_gnu_ld" = yes; then
3381
 
     sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
3382
 
-    shlibpath_overrides_runpath=no
3383
 
   else
3384
 
     sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
3385
 
-    shlibpath_overrides_runpath=yes
3386
 
     case $host_os in
3387
 
       sco3.2v5*)
3388
 
         sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
3389
 
@@ -2710,6 +3572,17 @@
3390
 
   sys_lib_dlsearch_path_spec='/usr/lib'
3391
 
   ;;
3392
 
 
3393
 
+tpf*)
3394
 
+  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.
3395
 
+  version_type=linux
3396
 
+  need_lib_prefix=no
3397
 
+  need_version=no
3398
 
+  library_name_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
3399
 
+  shlibpath_var=LD_LIBRARY_PATH
3400
 
+  shlibpath_overrides_runpath=no
3401
 
+  hardcode_into_libs=yes
3402
 
+  ;;
3403
 
+
3404
 
 uts4*)
3405
 
   version_type=linux
3406
 
   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
3407
 
@@ -2728,277 +3601,54 @@
3408
 
 if test "$GCC" = yes; then
3409
 
   variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
3410
 
 fi
3411
 
-])# AC_LIBTOOL_SYS_DYNAMIC_LINKER
3412
 
-
3413
 
-
3414
 
-# _LT_AC_TAGCONFIG
3415
 
-# ----------------
3416
 
-AC_DEFUN([_LT_AC_TAGCONFIG],
3417
 
-[AC_REQUIRE([LT_AC_PROG_SED])dnl
3418
 
-AC_ARG_WITH([tags],
3419
 
-    [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@],
3420
 
-        [include additional configurations @<:@automatic@:>@])],
3421
 
-    [tagnames="$withval"])
3422
 
-
3423
 
-if test -f "$ltmain" && test -n "$tagnames"; then
3424
 
-  if test ! -f "${ofile}"; then
3425
 
-    AC_MSG_WARN([output file `$ofile' does not exist])
3426
 
-  fi
3427
 
-
3428
 
-  if test -z "$LTCC"; then
3429
 
-    eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
3430
 
-    if test -z "$LTCC"; then
3431
 
-      AC_MSG_WARN([output file `$ofile' does not look like a libtool script])
3432
 
-    else
3433
 
-      AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile'])
3434
 
-    fi
3435
 
-  fi
3436
 
-  if test -z "$LTCFLAGS"; then
3437
 
-    eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`"
3438
 
-  fi
3439
 
-
3440
 
-  # Extract list of available tagged configurations in $ofile.
3441
 
-  # Note that this assumes the entire list is on one line.
3442
 
-  available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'`
3443
 
-
3444
 
-  lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
3445
 
-  for tagname in $tagnames; do
3446
 
-    IFS="$lt_save_ifs"
3447
 
-    # Check whether tagname contains only valid characters
3448
 
-    case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in
3449
 
-    "") ;;
3450
 
-    *)  AC_MSG_ERROR([invalid tag name: $tagname])
3451
 
-       ;;
3452
 
-    esac
3453
 
-
3454
 
-    if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null
3455
 
-    then
3456
 
-      AC_MSG_ERROR([tag name \"$tagname\" already exists])
3457
 
-    fi
3458
 
-
3459
 
-    # Update the list of available tags.
3460
 
-    if test -n "$tagname"; then
3461
 
-      echo appending configuration tag \"$tagname\" to $ofile
3462
 
-
3463
 
-      case $tagname in
3464
 
-      CXX)
3465
 
-       if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
3466
 
-           ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
3467
 
-           (test "X$CXX" != "Xg++"))) ; then
3468
 
-         AC_LIBTOOL_LANG_CXX_CONFIG
3469
 
-       else
3470
 
-         tagname=""
3471
 
-       fi
3472
 
-       ;;
3473
 
-
3474
 
-      F77)
3475
 
-       if test -n "$F77" && test "X$F77" != "Xno"; then
3476
 
-         AC_LIBTOOL_LANG_F77_CONFIG
3477
 
-       else
3478
 
-         tagname=""
3479
 
-       fi
3480
 
-       ;;
3481
 
 
3482
 
-      GCJ)
3483
 
-       if test -n "$GCJ" && test "X$GCJ" != "Xno"; then
3484
 
-         AC_LIBTOOL_LANG_GCJ_CONFIG
3485
 
-       else
3486
 
-         tagname=""
3487
 
-       fi
3488
 
-       ;;
3489
 
-
3490
 
-      RC)
3491
 
-       AC_LIBTOOL_LANG_RC_CONFIG
3492
 
-       ;;
3493
 
-
3494
 
-      *)
3495
 
-       AC_MSG_ERROR([Unsupported tag name: $tagname])
3496
 
-       ;;
3497
 
-      esac
3498
 
-
3499
 
-      # Append the new tag name to the list of available tags.
3500
 
-      if test -n "$tagname" ; then
3501
 
-      available_tags="$available_tags $tagname"
3502
 
-    fi
3503
 
-    fi
3504
 
-  done
3505
 
-  IFS="$lt_save_ifs"
3506
 
-
3507
 
-  # Now substitute the updated list of available tags.
3508
 
-  if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then
3509
 
-    mv "${ofile}T" "$ofile"
3510
 
-    chmod +x "$ofile"
3511
 
-  else
3512
 
-    rm -f "${ofile}T"
3513
 
-    AC_MSG_ERROR([unable to update list of available tagged configurations.])
3514
 
-  fi
3515
 
+if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
3516
 
+  sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
3517
 
+fi
3518
 
+if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
3519
 
+  sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
3520
 
 fi
3521
 
-])# _LT_AC_TAGCONFIG
3522
 
-
3523
 
-
3524
 
-# AC_LIBTOOL_DLOPEN
3525
 
-# -----------------
3526
 
-# enable checks for dlopen support
3527
 
-AC_DEFUN([AC_LIBTOOL_DLOPEN],
3528
 
- [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])
3529
 
-])# AC_LIBTOOL_DLOPEN
3530
 
-
3531
 
-
3532
 
-# AC_LIBTOOL_WIN32_DLL
3533
 
-# --------------------
3534
 
-# declare package support for building win32 DLLs
3535
 
-AC_DEFUN([AC_LIBTOOL_WIN32_DLL],
3536
 
-[AC_BEFORE([$0], [AC_LIBTOOL_SETUP])
3537
 
-])# AC_LIBTOOL_WIN32_DLL
3538
 
-
3539
 
-
3540
 
-# AC_ENABLE_SHARED([DEFAULT])
3541
 
-# ---------------------------
3542
 
-# implement the --enable-shared flag
3543
 
-# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
3544
 
-AC_DEFUN([AC_ENABLE_SHARED],
3545
 
-[define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
3546
 
-AC_ARG_ENABLE([shared],
3547
 
-    [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
3548
 
-       [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])],
3549
 
-    [p=${PACKAGE-default}
3550
 
-    case $enableval in
3551
 
-    yes) enable_shared=yes ;;
3552
 
-    no) enable_shared=no ;;
3553
 
-    *)
3554
 
-      enable_shared=no
3555
 
-      # Look at the argument we got.  We use all the common list separators.
3556
 
-      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
3557
 
-      for pkg in $enableval; do
3558
 
-       IFS="$lt_save_ifs"
3559
 
-       if test "X$pkg" = "X$p"; then
3560
 
-         enable_shared=yes
3561
 
-       fi
3562
 
-      done
3563
 
-      IFS="$lt_save_ifs"
3564
 
-      ;;
3565
 
-    esac],
3566
 
-    [enable_shared=]AC_ENABLE_SHARED_DEFAULT)
3567
 
-])# AC_ENABLE_SHARED
3568
 
-
3569
 
-
3570
 
-# AC_DISABLE_SHARED
3571
 
-# -----------------
3572
 
-# set the default shared flag to --disable-shared
3573
 
-AC_DEFUN([AC_DISABLE_SHARED],
3574
 
-[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3575
 
-AC_ENABLE_SHARED(no)
3576
 
-])# AC_DISABLE_SHARED
3577
 
-
3578
 
-
 
3821
 
 
3822
 
3579
3823
-# AC_ENABLE_STATIC([DEFAULT])
3580
3824
-# ---------------------------
3581
3825
-# implement the --enable-static flag
3604
3848
-    esac],
3605
3849
-    [enable_static=]AC_ENABLE_STATIC_DEFAULT)
3606
3850
-])# AC_ENABLE_STATIC
3607
 
-
3608
 
-
 
3851
+# _LT_SYS_DYNAMIC_LINKER([TAG])
 
3852
+# -----------------------------
 
3853
+# PORTME Fill in your ld.so characteristics
 
3854
+m4_defun([_LT_SYS_DYNAMIC_LINKER],
 
3855
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
 
3856
+m4_require([_LT_DECL_EGREP])dnl
 
3857
+m4_require([_LT_FILEUTILS_DEFAULTS])dnl
 
3858
+m4_require([_LT_DECL_SED])dnl
 
3859
+AC_MSG_CHECKING([dynamic linker characteristics])
 
3860
+m4_if([$1],
 
3861
+       [], [
 
3862
+if test "$GCC" = yes; then
 
3863
+  case $host_os in
 
3864
+    darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
 
3865
+    *) lt_awk_arg="/^libraries:/" ;;
 
3866
+  esac
 
3867
+  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"`
 
3868
+  if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then
 
3869
+    # if the path contains ";" then we assume it to be the separator
 
3870
+    # otherwise default to the standard path separator (i.e. ":") - it is
 
3871
+    # assumed that no part of a normal pathname contains ";" but that should
 
3872
+    # okay in the real world where ";" in dirpaths is itself problematic.
 
3873
+    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'`
 
3874
+  else
 
3875
+    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
 
3876
+  fi
 
3877
+  # Ok, now we have the path, separated by spaces, we can step through it
 
3878
+  # and add multilib dir if necessary.
 
3879
+  lt_tmp_lt_search_path_spec=
 
3880
+  lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
 
3881
+  for lt_sys_path in $lt_search_path_spec; do
 
3882
+    if test -d "$lt_sys_path/$lt_multi_os_dir"; then
 
3883
+      lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir"
 
3884
+    else
 
3885
+      test -d "$lt_sys_path" && \
 
3886
+       lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
 
3887
+    fi
 
3888
+  done
 
3889
+  lt_search_path_spec=`$ECHO $lt_tmp_lt_search_path_spec | awk '
 
3890
+BEGIN {RS=" "; FS="/|\n";} {
 
3891
+  lt_foo="";
 
3892
+  lt_count=0;
 
3893
+  for (lt_i = NF; lt_i > 0; lt_i--) {
 
3894
+    if ($lt_i != "" && $lt_i != ".") {
 
3895
+      if ($lt_i == "..") {
 
3896
+        lt_count++;
 
3897
+      } else {
 
3898
+        if (lt_count == 0) {
 
3899
+          lt_foo="/" $lt_i lt_foo;
 
3900
+        } else {
 
3901
+          lt_count--;
 
3902
+        }
 
3903
+      }
 
3904
+    }
 
3905
+  }
 
3906
+  if (lt_foo != "") { lt_freq[[lt_foo]]++; }
 
3907
+  if (lt_freq[[lt_foo]] == 1) { print lt_foo; }
 
3908
+}'`
 
3909
+  sys_lib_search_path_spec=`$ECHO $lt_search_path_spec`
 
3910
+else
 
3911
+  sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
 
3912
+fi])
 
3913
+library_names_spec=
 
3914
+libname_spec='lib$name'
 
3915
+soname_spec=
 
3916
+shrext_cmds=".so"
 
3917
+postinstall_cmds=
 
3918
+postuninstall_cmds=
 
3919
+finish_cmds=
 
3920
+finish_eval=
 
3921
+shlibpath_var=
 
3922
+shlibpath_overrides_runpath=unknown
 
3923
+version_type=none
 
3924
+dynamic_linker="$host_os ld.so"
 
3925
+sys_lib_dlsearch_path_spec="/lib /usr/lib"
 
3926
+need_lib_prefix=unknown
 
3927
+hardcode_into_libs=no
 
3928
 
 
3929
+# when you set need_version to no, make sure it does not cause -set_version
 
3930
+# flags to be left without arguments
 
3931
+need_version=unknown
 
3932
 
3609
3933
-# AC_DISABLE_STATIC
3610
3934
-# -----------------
3611
3935
-# set the default static flag to --disable-static
3613
3937
-[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3614
3938
-AC_ENABLE_STATIC(no)
3615
3939
-])# AC_DISABLE_STATIC
3616
 
-
3617
 
-
 
3940
+case $host_os in
 
3941
+aix3*)
 
3942
+  version_type=linux
 
3943
+  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
 
3944
+  shlibpath_var=LIBPATH
 
3945
 
 
3946
+  # AIX 3 has no versioning support, so we append a major version to the name.
 
3947
+  soname_spec='${libname}${release}${shared_ext}$major'
 
3948
+  ;;
 
3949
 
3618
3950
-# AC_ENABLE_FAST_INSTALL([DEFAULT])
3619
3951
-# ---------------------------------
3620
3952
-# implement the --enable-fast-install flag
3639
3971
-       fi
3640
3972
-      done
3641
3973
-      IFS="$lt_save_ifs"
3642
 
-      ;;
 
3974
+aix[[4-9]]*)
 
3975
+  version_type=linux
 
3976
+  need_lib_prefix=no
 
3977
+  need_version=no
 
3978
+  hardcode_into_libs=yes
 
3979
+  if test "$host_cpu" = ia64; then
 
3980
+    # AIX 5 supports IA64
 
3981
+    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
 
3982
+    shlibpath_var=LD_LIBRARY_PATH
 
3983
+  else
 
3984
+    # With GCC up to 2.95.x, collect2 would create an import file
 
3985
+    # for dependence libraries.  The import file would start with
 
3986
+    # the line `#! .'.  This would cause the generated library to
 
3987
+    # depend on `.', always an invalid library.  This was fixed in
 
3988
+    # development snapshots of GCC prior to 3.0.
 
3989
+    case $host_os in
 
3990
+      aix4 | aix4.[[01]] | aix4.[[01]].*)
 
3991
+      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
 
3992
+          echo ' yes '
 
3993
+          echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
 
3994
+       :
 
3995
+      else
 
3996
+       can_build_shared=no
 
3997
+      fi
 
3998
       ;;
3643
3999
-    esac],
3644
4000
-    [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT)
3645
4001
-])# AC_ENABLE_FAST_INSTALL
3646
4002
-
3647
 
-
 
4003
+    esac
 
4004
+    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
 
4005
+    # soname into executable. Probably we can add versioning support to
 
4006
+    # collect2, so additional links can be useful in future.
 
4007
+    if test "$aix_use_runtimelinking" = yes; then
 
4008
+      # If using run time linking (on AIX 4.2 or later) use lib<name>.so
 
4009
+      # instead of lib<name>.a to let people know that these are not
 
4010
+      # typical AIX shared libraries.
 
4011
+      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
4012
+    else
 
4013
+      # We preserve .a as extension for shared libraries through AIX4.2
 
4014
+      # and later when we are not doing run time linking.
 
4015
+      library_names_spec='${libname}${release}.a $libname.a'
 
4016
+      soname_spec='${libname}${release}${shared_ext}$major'
 
4017
+    fi
 
4018
+    shlibpath_var=LIBPATH
 
4019
+  fi
 
4020
+  ;;
 
4021
 
3648
4022
-# AC_DISABLE_FAST_INSTALL
3649
4023
-# -----------------------
3650
4024
-# set the default to --disable-fast-install
3652
4026
-[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3653
4027
-AC_ENABLE_FAST_INSTALL(no)
3654
4028
-])# AC_DISABLE_FAST_INSTALL
3655
 
-
3656
 
-
 
4029
+amigaos*)
 
4030
+  case $host_cpu in
 
4031
+  powerpc)
 
4032
+    # Since July 2007 AmigaOS4 officially supports .so libraries.
 
4033
+    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
 
4034
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
4035
+    ;;
 
4036
+  m68k)
 
4037
+    library_names_spec='$libname.ixlibrary $libname.a'
 
4038
+    # Create ${libname}_ixlibrary.a entries in /sys/libs.
 
4039
+    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
 
4040
+    ;;
 
4041
+  esac
 
4042
+  ;;
 
4043
 
 
4044
+beos*)
 
4045
+  library_names_spec='${libname}${shared_ext}'
 
4046
+  dynamic_linker="$host_os ld.so"
 
4047
+  shlibpath_var=LIBRARY_PATH
 
4048
+  ;;
 
4049
 
3657
4050
-# AC_LIBTOOL_PICMODE([MODE])
3658
4051
-# --------------------------
3659
4052
-# implement the --with-pic flag
3662
4055
-[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3663
4056
-pic_mode=ifelse($#,1,$1,default)
3664
4057
-])# AC_LIBTOOL_PICMODE
3665
 
-
3666
 
-
 
4058
+bsdi[[45]]*)
 
4059
+  version_type=linux
 
4060
+  need_version=no
 
4061
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
4062
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4063
+  finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
 
4064
+  shlibpath_var=LD_LIBRARY_PATH
 
4065
+  sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
 
4066
+  sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
 
4067
+  # the default ld.so.conf also contains /usr/contrib/lib and
 
4068
+  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
 
4069
+  # libtool to hard-code these into programs
 
4070
+  ;;
 
4071
 
 
4072
+cygwin* | mingw* | pw32*)
 
4073
+  version_type=windows
 
4074
+  shrext_cmds=".dll"
 
4075
+  need_version=no
 
4076
+  need_lib_prefix=no
 
4077
 
3667
4078
-# AC_PROG_EGREP
3668
4079
-# -------------
3669
4080
-# This is predefined starting with Autoconf 2.54, so this conditional
3677
4088
- EGREP=$ac_cv_prog_egrep
3678
4089
- AC_SUBST([EGREP])
3679
4090
-])])
 
4091
+  case $GCC,$host_os in
 
4092
+  yes,cygwin* | yes,mingw* | yes,pw32*)
 
4093
+    library_names_spec='$libname.dll.a'
 
4094
+    # DLL is installed to $(libdir)/../bin by postinstall_cmds
 
4095
+    postinstall_cmds='base_file=`basename \${file}`~
 
4096
+      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
 
4097
+      dldir=$destdir/`dirname \$dlpath`~
 
4098
+      test -d \$dldir || mkdir -p \$dldir~
 
4099
+      $install_prog $dir/$dlname \$dldir/$dlname~
 
4100
+      chmod a+x \$dldir/$dlname~
 
4101
+      if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
 
4102
+        eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
 
4103
+      fi'
 
4104
+    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
 
4105
+      dlpath=$dir/\$dldll~
 
4106
+       $RM \$dlpath'
 
4107
+    shlibpath_overrides_runpath=yes
3680
4108
 
3681
 
+_LT_DECL([], [variables_saved_for_relink], [1],
3682
 
+    [Variables whose values should be saved in libtool wrapper scripts and
3683
 
+    restored at link time])
3684
 
+_LT_DECL([], [need_lib_prefix], [0],
3685
 
+    [Do we need the "lib" prefix for modules?])
3686
 
+_LT_DECL([], [need_version], [0], [Do we need a version for libraries?])
3687
 
+_LT_DECL([], [version_type], [0], [Library versioning type])
3688
 
+_LT_DECL([], [runpath_var], [0],  [Shared library runtime path variable])
3689
 
+_LT_DECL([], [shlibpath_var], [0],[Shared library path variable])
3690
 
+_LT_DECL([], [shlibpath_overrides_runpath], [0],
3691
 
+    [Is shlibpath searched before the hard-coded library search path?])
3692
 
+_LT_DECL([], [libname_spec], [1], [Format of library name prefix])
3693
 
+_LT_DECL([], [library_names_spec], [1],
3694
 
+    [[List of archive names.  First name is the real one, the rest are links.
3695
 
+    The last name is the one that the linker finds with -lNAME]])
3696
 
+_LT_DECL([], [soname_spec], [1],
3697
 
+    [[The coded name of the library, if different from the real name]])
3698
 
+_LT_DECL([], [postinstall_cmds], [2],
3699
 
+    [Command to use after installation of a shared archive])
3700
 
+_LT_DECL([], [postuninstall_cmds], [2],
3701
 
+    [Command to use after uninstallation of a shared archive])
3702
 
+_LT_DECL([], [finish_cmds], [2],
3703
 
+    [Commands used to finish a libtool library installation in a directory])
3704
 
+_LT_DECL([], [finish_eval], [1],
3705
 
+    [[As "finish_cmds", except a single script fragment to be evaled but
3706
 
+    not shown]])
3707
 
+_LT_DECL([], [hardcode_into_libs], [0],
3708
 
+    [Whether we should hardcode library paths into libraries])
3709
 
+_LT_DECL([], [sys_lib_search_path_spec], [2],
3710
 
+    [Compile-time system search path for libraries])
3711
 
+_LT_DECL([], [sys_lib_dlsearch_path_spec], [2],
3712
 
+    [Run-time system search path for libraries])
3713
 
+])# _LT_SYS_DYNAMIC_LINKER
 
4109
+    case $host_os in
 
4110
+    cygwin*)
 
4111
+      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
 
4112
+      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
 
4113
+      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
 
4114
+      ;;
 
4115
+    mingw*)
 
4116
+      # MinGW DLLs use traditional 'lib' prefix
 
4117
+      soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
 
4118
+      sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
 
4119
+      if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then
 
4120
+        # It is most probably a Windows format PATH printed by
 
4121
+        # mingw gcc, but we are running on Cygwin. Gcc prints its search
 
4122
+        # path with ; separators, and with drive letters. We can handle the
 
4123
+        # drive letters (cygwin fileutils understands them), so leave them,
 
4124
+        # especially as we might pass files found there to a mingw objdump,
 
4125
+        # which wouldn't understand a cygwinified path. Ahh.
 
4126
+        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
 
4127
+      else
 
4128
+        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
 
4129
+      fi
 
4130
+      ;;
 
4131
+    pw32*)
 
4132
+      # pw32 DLLs use 'pw' prefix rather than 'lib'
 
4133
+      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
 
4134
+      ;;
 
4135
+    esac
 
4136
+    ;;
3714
4137
 
3715
4138
-# AC_PATH_TOOL_PREFIX
3716
4139
-# -------------------
3717
 
+
3718
 
+# _LT_PATH_TOOL_PREFIX(TOOL)
3719
 
+# --------------------------
3720
 
 # find a file program which can recognize shared library
 
4140
-# find a file program which can recognize shared library
3721
4141
-AC_DEFUN([AC_PATH_TOOL_PREFIX],
3722
4142
-[AC_REQUIRE([AC_PROG_EGREP])dnl
3723
 
+AC_DEFUN([_LT_PATH_TOOL_PREFIX],
3724
 
+[m4_require([_LT_DECL_EGREP])dnl
3725
 
 AC_MSG_CHECKING([for $1])
3726
 
 AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
3727
 
 [case $MAGIC_CMD in
3728
 
@@ -3011,7 +3661,7 @@
3729
 
 dnl $ac_dummy forces splitting on constant user-supplied paths.
3730
 
 dnl POSIX.2 word splitting is done only on the output of word expansions,
3731
 
 dnl not every word.  This closes a longstanding sh security hole.
 
4143
-AC_MSG_CHECKING([for $1])
 
4144
-AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
 
4145
-[case $MAGIC_CMD in
 
4146
-[[\\/*] |  ?:[\\/]*])
 
4147
-  lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
 
4148
+  *)
 
4149
+    library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
 
4150
+    ;;
 
4151
+  esac
 
4152
+  dynamic_linker='Win32 ld.exe'
 
4153
+  # FIXME: first we should search . and the directory the executable is in
 
4154
+  shlibpath_var=PATH
 
4155
   ;;
 
4156
-*)
 
4157
-  lt_save_MAGIC_CMD="$MAGIC_CMD"
 
4158
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 
4159
-dnl $ac_dummy forces splitting on constant user-supplied paths.
 
4160
-dnl POSIX.2 word splitting is done only on the output of word expansions,
 
4161
-dnl not every word.  This closes a longstanding sh security hole.
3732
4162
-  ac_dummy="ifelse([$2], , $PATH, [$2])"
3733
 
+  ac_dummy="m4_if([$2], , $PATH, [$2])"
3734
 
   for ac_dir in $ac_dummy; do
3735
 
     IFS="$lt_save_ifs"
3736
 
     test -z "$ac_dir" && ac_dir=.
3737
 
@@ -3026,7 +3676,7 @@
3738
 
            $EGREP "$file_magic_regex" > /dev/null; then
3739
 
            :
3740
 
          else
 
4163
-  for ac_dir in $ac_dummy; do
 
4164
-    IFS="$lt_save_ifs"
 
4165
-    test -z "$ac_dir" && ac_dir=.
 
4166
-    if test -f $ac_dir/$1; then
 
4167
-      lt_cv_path_MAGIC_CMD="$ac_dir/$1"
 
4168
-      if test -n "$file_magic_test_file"; then
 
4169
-       case $deplibs_check_method in
 
4170
-       "file_magic "*)
 
4171
-         file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
 
4172
-         MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
 
4173
-         if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
 
4174
-           $EGREP "$file_magic_regex" > /dev/null; then
 
4175
-           :
 
4176
-         else
3741
4177
-           cat <<EOF 1>&2
3742
 
+           cat <<_LT_EOF 1>&2
3743
4178
 
3744
 
 *** Warning: the command libtool uses to detect shared libraries,
3745
 
 *** $file_magic_cmd, produces output that libtool cannot recognize.
3746
 
@@ -3037,7 +3687,7 @@
3747
 
 *** may want to report the problem to your system manager and/or to
3748
 
 *** bug-libtool@gnu.org
 
4179
-*** Warning: the command libtool uses to detect shared libraries,
 
4180
-*** $file_magic_cmd, produces output that libtool cannot recognize.
 
4181
-*** The result is that libtool may fail to recognize shared libraries
 
4182
-*** as such.  This will affect the creation of libtool libraries that
 
4183
-*** depend on shared libraries, but programs linked with such libtool
 
4184
-*** libraries will work regardless of this problem.  Nevertheless, you
 
4185
-*** may want to report the problem to your system manager and/or to
 
4186
-*** bug-libtool@gnu.org
 
4187
+darwin* | rhapsody*)
 
4188
+  dynamic_linker="$host_os dyld"
 
4189
+  version_type=darwin
 
4190
+  need_lib_prefix=no
 
4191
+  need_version=no
 
4192
+  library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
 
4193
+  soname_spec='${libname}${release}${major}$shared_ext'
 
4194
+  shlibpath_overrides_runpath=yes
 
4195
+  shlibpath_var=DYLD_LIBRARY_PATH
 
4196
+  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
 
4197
+m4_if([$1], [],[
 
4198
+  sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"])
 
4199
+  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
 
4200
+  ;;
3749
4201
 
3750
4202
-EOF
3751
 
+_LT_EOF
3752
 
          fi ;;
3753
 
        esac
3754
 
       fi
3755
 
@@ -3054,37 +3704,47 @@
3756
 
 else
3757
 
   AC_MSG_RESULT(no)
3758
 
 fi
 
4203
-         fi ;;
 
4204
-       esac
 
4205
-      fi
 
4206
-      break
 
4207
-    fi
 
4208
-  done
 
4209
-  IFS="$lt_save_ifs"
 
4210
-  MAGIC_CMD="$lt_save_MAGIC_CMD"
 
4211
+dgux*)
 
4212
+  version_type=linux
 
4213
+  need_lib_prefix=no
 
4214
+  need_version=no
 
4215
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
 
4216
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4217
+  shlibpath_var=LD_LIBRARY_PATH
 
4218
   ;;
 
4219
-esac])
 
4220
-MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
 
4221
-if test -n "$MAGIC_CMD"; then
 
4222
-  AC_MSG_RESULT($MAGIC_CMD)
 
4223
-else
 
4224
-  AC_MSG_RESULT(no)
 
4225
-fi
3759
4226
-])# AC_PATH_TOOL_PREFIX
3760
 
+_LT_DECL([], [MAGIC_CMD], [0],
3761
 
+        [Used to examine libraries when file_magic_cmd begins with "file"])dnl
3762
 
+])# _LT_PATH_TOOL_PREFIX
3763
4227
 
3764
 
+# Old name:
3765
 
+AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX])
3766
 
+dnl aclocal-1.4 backwards compatibility:
3767
 
+dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], [])
 
4228
+freebsd1*)
 
4229
+  dynamic_linker=no
 
4230
+  ;;
3768
4231
 
3769
4232
-# AC_PATH_MAGIC
3770
4233
-# -------------
3771
 
+
3772
 
+# _LT_PATH_MAGIC
3773
 
+# --------------
3774
 
 # find a file program which can recognize a shared library
 
4234
-# find a file program which can recognize a shared library
3775
4235
-AC_DEFUN([AC_PATH_MAGIC],
3776
4236
-[AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
3777
 
+m4_defun([_LT_PATH_MAGIC],
3778
 
+[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
3779
 
 if test -z "$lt_cv_path_MAGIC_CMD"; then
3780
 
   if test -n "$ac_tool_prefix"; then
 
4237
-if test -z "$lt_cv_path_MAGIC_CMD"; then
 
4238
-  if test -n "$ac_tool_prefix"; then
3781
4239
-    AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
3782
 
+    _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
 
4240
+freebsd* | dragonfly*)
 
4241
+  # DragonFly does not have aout.  When/if they implement a new
 
4242
+  # versioning mechanism, adjust this.
 
4243
+  if test -x /usr/bin/objformat; then
 
4244
+    objformat=`/usr/bin/objformat`
3783
4245
   else
3784
 
     MAGIC_CMD=:
 
4246
-    MAGIC_CMD=:
 
4247
+    case $host_os in
 
4248
+    freebsd[[123]]*) objformat=aout ;;
 
4249
+    *) objformat=elf ;;
 
4250
+    esac
3785
4251
   fi
3786
 
 fi
 
4252
-fi
3787
4253
-])# AC_PATH_MAGIC
3788
 
+])# _LT_PATH_MAGIC
3789
 
 
3790
 
 
 
4254
-
 
4255
-
3791
4256
-# AC_PROG_LD
3792
 
+# LT_PATH_LD
3793
 
 # ----------
3794
 
 # find the pathname to the GNU or non-GNU linker
 
4257
-# ----------
 
4258
-# find the pathname to the GNU or non-GNU linker
3795
4259
-AC_DEFUN([AC_PROG_LD],
3796
4260
-[AC_ARG_WITH([gnu-ld],
3797
4261
-    [AC_HELP_STRING([--with-gnu-ld],
3800
4264
-    [with_gnu_ld=no])
3801
4265
-AC_REQUIRE([LT_AC_PROG_SED])dnl
3802
4266
-AC_REQUIRE([AC_PROG_CC])dnl
3803
 
+AC_DEFUN([LT_PATH_LD],
3804
 
+[AC_REQUIRE([AC_PROG_CC])dnl
3805
 
 AC_REQUIRE([AC_CANONICAL_HOST])dnl
3806
 
 AC_REQUIRE([AC_CANONICAL_BUILD])dnl
3807
 
+m4_require([_LT_DECL_SED])dnl
3808
 
+m4_require([_LT_DECL_EGREP])dnl
3809
 
+
3810
 
+AC_ARG_WITH([gnu-ld],
3811
 
+    [AS_HELP_STRING([--with-gnu-ld],
3812
 
+       [assume the C compiler uses GNU ld @<:@default=no@:>@])],
3813
 
+    [test "$withval" = no || with_gnu_ld=yes],
3814
 
+    [with_gnu_ld=no])dnl
3815
 
+
3816
 
 ac_prog=ld
3817
 
 if test "$GCC" = yes; then
3818
 
   # Check if gcc -print-prog-name=ld gives a path.
3819
 
@@ -3101,9 +3761,9 @@
3820
 
     [[\\/]]* | ?:[[\\/]]*)
3821
 
       re_direlt='/[[^/]][[^/]]*/\.\./'
3822
 
       # Canonicalize the pathname of ld
 
4267
-AC_REQUIRE([AC_CANONICAL_HOST])dnl
 
4268
-AC_REQUIRE([AC_CANONICAL_BUILD])dnl
 
4269
-ac_prog=ld
 
4270
-if test "$GCC" = yes; then
 
4271
-  # Check if gcc -print-prog-name=ld gives a path.
 
4272
-  AC_MSG_CHECKING([for ld used by $CC])
 
4273
-  case $host in
 
4274
-  *-*-mingw*)
 
4275
-    # gcc leaves a trailing carriage return which upsets mingw
 
4276
-    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
 
4277
-  *)
 
4278
-    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
 
4279
-  esac
 
4280
-  case $ac_prog in
 
4281
-    # Accept absolute paths.
 
4282
-    [[\\/]]* | ?:[[\\/]]*)
 
4283
-      re_direlt='/[[^/]][[^/]]*/\.\./'
 
4284
-      # Canonicalize the pathname of ld
3823
4285
-      ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'`
3824
4286
-      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
3825
4287
-       ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
3826
 
+      ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
3827
 
+      while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
3828
 
+       ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
3829
 
       done
3830
 
       test -z "$LD" && LD="$ac_prog"
 
4288
-      done
 
4289
-      test -z "$LD" && LD="$ac_prog"
 
4290
+  version_type=freebsd-$objformat
 
4291
+  case $version_type in
 
4292
+    freebsd-elf*)
 
4293
+      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
 
4294
+      need_version=no
 
4295
+      need_lib_prefix=no
3831
4296
       ;;
3832
 
@@ -3153,15 +3813,24 @@
3833
 
   AC_MSG_RESULT(no)
3834
 
 fi
3835
 
 test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
 
4297
-  "")
 
4298
-    # If it fails, then pretend we aren't using GCC.
 
4299
-    ac_prog=ld
 
4300
+    freebsd-*)
 
4301
+      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
 
4302
+      need_version=yes
 
4303
+      ;;
 
4304
+  esac
 
4305
+  shlibpath_var=LD_LIBRARY_PATH
 
4306
+  case $host_os in
 
4307
+  freebsd2*)
 
4308
+    shlibpath_overrides_runpath=yes
 
4309
     ;;
 
4310
-  *)
 
4311
-    # If it is relative, then search for the first ld in PATH.
 
4312
-    with_gnu_ld=unknown
 
4313
+  freebsd3.[[01]]* | freebsdelf3.[[01]]*)
 
4314
+    shlibpath_overrides_runpath=yes
 
4315
+    hardcode_into_libs=yes
 
4316
+    ;;
 
4317
+  freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \
 
4318
+  freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)
 
4319
+    shlibpath_overrides_runpath=no
 
4320
+    hardcode_into_libs=yes
 
4321
+    ;;
 
4322
+  *) # from 4.6 on, and DragonFly
 
4323
+    shlibpath_overrides_runpath=yes
 
4324
+    hardcode_into_libs=yes
 
4325
     ;;
 
4326
   esac
 
4327
-elif test "$with_gnu_ld" = yes; then
 
4328
-  AC_MSG_CHECKING([for GNU ld])
 
4329
-else
 
4330
-  AC_MSG_CHECKING([for non-GNU ld])
 
4331
-fi
 
4332
-AC_CACHE_VAL(lt_cv_path_LD,
 
4333
-[if test -z "$LD"; then
 
4334
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 
4335
-  for ac_dir in $PATH; do
 
4336
-    IFS="$lt_save_ifs"
 
4337
-    test -z "$ac_dir" && ac_dir=.
 
4338
-    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
 
4339
-      lt_cv_path_LD="$ac_dir/$ac_prog"
 
4340
-      # Check to see if the program is GNU ld.  I'd rather use --version,
 
4341
-      # but apparently some variants of GNU ld only accept -v.
 
4342
-      # Break only if it was the GNU/non-GNU ld that we prefer.
 
4343
-      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
 
4344
-      *GNU* | *'with BFD'*)
 
4345
-       test "$with_gnu_ld" != no && break
 
4346
-       ;;
 
4347
-      *)
 
4348
-       test "$with_gnu_ld" != yes && break
 
4349
-       ;;
 
4350
-      esac
 
4351
-    fi
 
4352
-  done
 
4353
-  IFS="$lt_save_ifs"
 
4354
-else
 
4355
-  lt_cv_path_LD="$LD" # Let the user override the test with a path.
 
4356
-fi])
 
4357
-LD="$lt_cv_path_LD"
 
4358
-if test -n "$LD"; then
 
4359
-  AC_MSG_RESULT($LD)
 
4360
-else
 
4361
-  AC_MSG_RESULT(no)
 
4362
-fi
 
4363
-test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
3836
4364
-AC_PROG_LD_GNU
3837
4365
-])# AC_PROG_LD
3838
 
+_LT_PATH_LD_GNU
3839
 
+AC_SUBST([LD])
3840
 
 
3841
 
+_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
3842
 
+])# LT_PATH_LD
3843
 
 
 
4366
-
 
4367
-
3844
4368
-# AC_PROG_LD_GNU
3845
4369
-# --------------
3846
4370
-AC_DEFUN([AC_PROG_LD_GNU],
3847
4371
-[AC_REQUIRE([AC_PROG_EGREP])dnl
3848
4372
-AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
3849
 
+# Old names:
3850
 
+AU_ALIAS([AM_PROG_LD], [LT_PATH_LD])
3851
 
+AU_ALIAS([AC_PROG_LD], [LT_PATH_LD])
3852
 
+dnl aclocal-1.4 backwards compatibility:
3853
 
+dnl AC_DEFUN([AM_PROG_LD], [])
3854
 
+dnl AC_DEFUN([AC_PROG_LD], [])
3855
 
+
3856
 
+
3857
 
+# _LT_PATH_LD_GNU
3858
 
+#- --------------
3859
 
+m4_defun([_LT_PATH_LD_GNU],
3860
 
+[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
3861
 
 [# I'd rather use --version here, but apparently some GNU lds only accept -v.
3862
 
 case `$LD -v 2>&1 </dev/null` in
3863
 
 *GNU* | *'with BFD'*)
3864
 
@@ -3172,14 +3841,14 @@
 
4373
-[# I'd rather use --version here, but apparently some GNU lds only accept -v.
 
4374
-case `$LD -v 2>&1 </dev/null` in
 
4375
-*GNU* | *'with BFD'*)
 
4376
-  lt_cv_prog_gnu_ld=yes
 
4377
-  ;;
 
4378
-*)
 
4379
-  lt_cv_prog_gnu_ld=no
3865
4380
   ;;
3866
 
 esac])
3867
 
 with_gnu_ld=$lt_cv_prog_gnu_ld
 
4381
-esac])
 
4382
-with_gnu_ld=$lt_cv_prog_gnu_ld
3868
4383
-])# AC_PROG_LD_GNU
3869
 
+])# _LT_PATH_LD_GNU
3870
4384
 
 
4385
+gnu*)
 
4386
+  version_type=linux
 
4387
+  need_lib_prefix=no
 
4388
+  need_version=no
 
4389
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
 
4390
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4391
+  shlibpath_var=LD_LIBRARY_PATH
 
4392
+  hardcode_into_libs=yes
 
4393
+  ;;
3871
4394
 
3872
4395
-# AC_PROG_LD_RELOAD_FLAG
3873
4396
-# ----------------------
3874
 
+# _LT_CMD_RELOAD
3875
 
+# --------------
3876
 
 # find reload flag for linker
3877
 
 #   -- PORTME Some linkers may need a different reload flag.
 
4397
-# find reload flag for linker
 
4398
-#   -- PORTME Some linkers may need a different reload flag.
3878
4399
-AC_DEFUN([AC_PROG_LD_RELOAD_FLAG],
3879
 
+m4_defun([_LT_CMD_RELOAD],
3880
 
 [AC_CACHE_CHECK([for $LD option to reload object files],
3881
 
   lt_cv_ld_reload_flag,
3882
 
   [lt_cv_ld_reload_flag='-r'])
3883
 
@@ -3198,15 +3867,18 @@
 
4400
-[AC_CACHE_CHECK([for $LD option to reload object files],
 
4401
-  lt_cv_ld_reload_flag,
 
4402
-  [lt_cv_ld_reload_flag='-r'])
 
4403
-reload_flag=$lt_cv_ld_reload_flag
 
4404
-case $reload_flag in
 
4405
-"" | " "*) ;;
 
4406
-*) reload_flag=" $reload_flag" ;;
 
4407
-esac
 
4408
-reload_cmds='$LD$reload_flag -o $output$reload_objs'
 
4409
-case $host_os in
 
4410
-  darwin*)
 
4411
-    if test "$GCC" = yes; then
 
4412
-      reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
 
4413
+hpux9* | hpux10* | hpux11*)
 
4414
+  # Give a soname corresponding to the major version so that dld.sl refuses to
 
4415
+  # link against other versions.
 
4416
+  version_type=sunos
 
4417
+  need_lib_prefix=no
 
4418
+  need_version=no
 
4419
+  case $host_cpu in
 
4420
+  ia64*)
 
4421
+    shrext_cmds='.so'
 
4422
+    hardcode_into_libs=yes
 
4423
+    dynamic_linker="$host_os dld.so"
 
4424
+    shlibpath_var=LD_LIBRARY_PATH
 
4425
+    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
 
4426
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
4427
+    soname_spec='${libname}${release}${shared_ext}$major'
 
4428
+    if test "X$HPUX_IA64_MODE" = X32; then
 
4429
+      sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
 
4430
     else
 
4431
-      reload_cmds='$LD$reload_flag -o $output$reload_objs'
 
4432
+      sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
3884
4433
     fi
3885
 
     ;;
3886
 
 esac
 
4434
-    ;;
 
4435
-esac
3887
4436
-])# AC_PROG_LD_RELOAD_FLAG
3888
 
+_LT_DECL([], [reload_flag], [1], [How to create reloadable object files])dnl
3889
 
+_LT_DECL([], [reload_cmds], [2])dnl
3890
 
+])# _LT_CMD_RELOAD
3891
 
 
3892
 
 
 
4437
-
 
4438
-
3893
4439
-# AC_DEPLIBS_CHECK_METHOD
3894
4440
-# -----------------------
3895
 
+# _LT_CHECK_MAGIC_METHOD
3896
 
+# ----------------------
3897
 
 # how to check for library dependencies
3898
 
 #  -- PORTME fill in with the dynamic library characteristics
 
4441
-# how to check for library dependencies
 
4442
-#  -- PORTME fill in with the dynamic library characteristics
3899
4443
-AC_DEFUN([AC_DEPLIBS_CHECK_METHOD],
3900
4444
-[AC_CACHE_CHECK([how to recognize dependent libraries],
3901
 
+m4_defun([_LT_CHECK_MAGIC_METHOD],
3902
 
+[m4_require([_LT_DECL_EGREP])
3903
 
+AC_CACHE_CHECK([how to recognize dependent libraries],
3904
 
 lt_cv_deplibs_check_method,
3905
 
 [lt_cv_file_magic_cmd='$MAGIC_CMD'
3906
 
 lt_cv_file_magic_test_file=
3907
 
@@ -3223,7 +3895,7 @@
3908
 
 # whether `pass_all' will *always* work, you probably want this one.
3909
 
 
3910
 
 case $host_os in
3911
 
-aix4* | aix5*)
3912
 
+aix[[4-9]]*)
3913
 
   lt_cv_deplibs_check_method=pass_all
3914
 
   ;;
3915
 
 
3916
 
@@ -3261,7 +3933,7 @@
3917
 
   ;;
3918
 
 
3919
 
 freebsd* | dragonfly*)
3920
 
-  if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
3921
 
+  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
3922
 
     case $host_cpu in
3923
 
     i*86 )
3924
 
       # Not sure whether the presence of OpenBSD here was a mistake.
3925
 
@@ -3318,8 +3990,8 @@
3926
 
   lt_cv_deplibs_check_method=pass_all
3927
 
   ;;
3928
 
 
3929
 
-netbsd*)
3930
 
-  if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
3931
 
+netbsd* | netbsdelf*-gnu)
3932
 
+  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
3933
 
     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
 
4445
-lt_cv_deplibs_check_method,
 
4446
-[lt_cv_file_magic_cmd='$MAGIC_CMD'
 
4447
-lt_cv_file_magic_test_file=
 
4448
-lt_cv_deplibs_check_method='unknown'
 
4449
-# Need to set the preceding variable on all platforms that support
 
4450
-# interlibrary dependencies.
 
4451
-# 'none' -- dependencies not supported.
 
4452
-# `unknown' -- same as none, but documents that we really don't know.
 
4453
-# 'pass_all' -- all dependencies passed with no checks.
 
4454
-# 'test_compile' -- check by making test program.
 
4455
-# 'file_magic [[regex]]' -- check by looking for files in library path
 
4456
-# which responds to the $file_magic_cmd with a given extended regex.
 
4457
-# If you have `file' or equivalent on your system and you're not sure
 
4458
-# whether `pass_all' will *always* work, you probably want this one.
 
4459
-
 
4460
-case $host_os in
 
4461
-aix[[4-9]]*)
 
4462
-  lt_cv_deplibs_check_method=pass_all
 
4463
-  ;;
 
4464
-
 
4465
-beos*)
 
4466
-  lt_cv_deplibs_check_method=pass_all
 
4467
-  ;;
 
4468
-
 
4469
-bsdi[[45]]*)
 
4470
-  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
 
4471
-  lt_cv_file_magic_cmd='/usr/bin/file -L'
 
4472
-  lt_cv_file_magic_test_file=/shlib/libc.so
 
4473
-  ;;
 
4474
-
 
4475
-cygwin*)
 
4476
-  # func_win32_libid is a shell function defined in ltmain.sh
 
4477
-  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
 
4478
-  lt_cv_file_magic_cmd='func_win32_libid'
 
4479
-  ;;
 
4480
-
 
4481
-mingw* | pw32*)
 
4482
-  # Base MSYS/MinGW do not provide the 'file' command needed by
 
4483
-  # func_win32_libid shell function, so use a weaker test based on 'objdump',
 
4484
-  # unless we find 'file', for example because we are cross-compiling.
 
4485
-  if ( file / ) >/dev/null 2>&1; then
 
4486
-    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
 
4487
-    lt_cv_file_magic_cmd='func_win32_libid'
 
4488
-  else
 
4489
-    lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
 
4490
-    lt_cv_file_magic_cmd='$OBJDUMP -f'
 
4491
-  fi
 
4492
-  ;;
 
4493
-
 
4494
-darwin* | rhapsody*)
 
4495
-  lt_cv_deplibs_check_method=pass_all
 
4496
-  ;;
 
4497
-
 
4498
-freebsd* | dragonfly*)
 
4499
-  if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
 
4500
-    case $host_cpu in
 
4501
-    i*86 )
 
4502
-      # Not sure whether the presence of OpenBSD here was a mistake.
 
4503
-      # Let's accept both of them until this is cleared up.
 
4504
-      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
 
4505
-      lt_cv_file_magic_cmd=/usr/bin/file
 
4506
-      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
 
4507
-      ;;
 
4508
-    esac
 
4509
-  else
 
4510
-    lt_cv_deplibs_check_method=pass_all
 
4511
-  fi
 
4512
-  ;;
 
4513
-
 
4514
-gnu*)
 
4515
-  lt_cv_deplibs_check_method=pass_all
 
4516
-  ;;
 
4517
-
 
4518
-hpux10.20* | hpux11*)
 
4519
-  lt_cv_file_magic_cmd=/usr/bin/file
 
4520
-  case $host_cpu in
 
4521
-  ia64*)
 
4522
-    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
 
4523
-    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
 
4524
+    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
 
4525
     ;;
 
4526
   hppa*64*)
 
4527
-    [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]']
 
4528
-    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
 
4529
+    shrext_cmds='.sl'
 
4530
+    hardcode_into_libs=yes
 
4531
+    dynamic_linker="$host_os dld.sl"
 
4532
+    shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
 
4533
+    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
 
4534
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
4535
+    soname_spec='${libname}${release}${shared_ext}$major'
 
4536
+    sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
 
4537
+    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
 
4538
     ;;
 
4539
   *)
 
4540
-    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library'
 
4541
-    lt_cv_file_magic_test_file=/usr/lib/libc.sl
 
4542
+    shrext_cmds='.sl'
 
4543
+    dynamic_linker="$host_os dld.sl"
 
4544
+    shlibpath_var=SHLIB_PATH
 
4545
+    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
 
4546
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
4547
+    soname_spec='${libname}${release}${shared_ext}$major'
 
4548
     ;;
 
4549
   esac
 
4550
+  # HP-UX runs *really* slowly unless shared libraries are mode 555.
 
4551
+  postinstall_cmds='chmod 555 $lib'
 
4552
   ;;
 
4553
 
 
4554
 interix[[3-9]]*)
 
4555
-  # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here
 
4556
-  lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$'
 
4557
+  version_type=linux
 
4558
+  need_lib_prefix=no
 
4559
+  need_version=no
 
4560
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
4561
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4562
+  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
 
4563
+  shlibpath_var=LD_LIBRARY_PATH
 
4564
+  shlibpath_overrides_runpath=no
 
4565
+  hardcode_into_libs=yes
 
4566
   ;;
 
4567
 
 
4568
 irix5* | irix6* | nonstopux*)
 
4569
-  case $LD in
 
4570
-  *-32|*"-32 ") libmagic=32-bit;;
 
4571
-  *-n32|*"-n32 ") libmagic=N32;;
 
4572
-  *-64|*"-64 ") libmagic=64-bit;;
 
4573
-  *) libmagic=never-match;;
 
4574
+  case $host_os in
 
4575
+    nonstopux*) version_type=nonstopux ;;
 
4576
+    *)
 
4577
+       if test "$lt_cv_prog_gnu_ld" = yes; then
 
4578
+               version_type=linux
 
4579
+       else
 
4580
+               version_type=irix
 
4581
+       fi ;;
 
4582
   esac
 
4583
-  lt_cv_deplibs_check_method=pass_all
 
4584
+  need_lib_prefix=no
 
4585
+  need_version=no
 
4586
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4587
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
 
4588
+  case $host_os in
 
4589
+  irix5* | nonstopux*)
 
4590
+    libsuff= shlibsuff=
 
4591
+    ;;
 
4592
+  *)
 
4593
+    case $LD in # libtool.m4 will add one of these switches to LD
 
4594
+    *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
 
4595
+      libsuff= shlibsuff= libmagic=32-bit;;
 
4596
+    *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
 
4597
+      libsuff=32 shlibsuff=N32 libmagic=N32;;
 
4598
+    *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
 
4599
+      libsuff=64 shlibsuff=64 libmagic=64-bit;;
 
4600
+    *) libsuff= shlibsuff= libmagic=never-match;;
 
4601
+    esac
 
4602
+    ;;
 
4603
+  esac
 
4604
+  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
 
4605
+  shlibpath_overrides_runpath=no
 
4606
+  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
 
4607
+  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
 
4608
+  hardcode_into_libs=yes
 
4609
+  ;;
 
4610
+
 
4611
+# No shared lib support for Linux oldld, aout, or coff.
 
4612
+linux*oldld* | linux*aout* | linux*coff*)
 
4613
+  dynamic_linker=no
 
4614
   ;;
 
4615
 
 
4616
 # This must be Linux ELF.
 
4617
 linux* | k*bsd*-gnu)
 
4618
-  lt_cv_deplibs_check_method=pass_all
 
4619
+  version_type=linux
 
4620
+  need_lib_prefix=no
 
4621
+  need_version=no
 
4622
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
4623
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4624
+  finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
 
4625
+  shlibpath_var=LD_LIBRARY_PATH
 
4626
+  shlibpath_overrides_runpath=no
 
4627
+  # Some binutils ld are patched to set DT_RUNPATH
 
4628
+  save_LDFLAGS=$LDFLAGS
 
4629
+  save_libdir=$libdir
 
4630
+  eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \
 
4631
+       LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\""
 
4632
+  AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
 
4633
+    [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null],
 
4634
+       [shlibpath_overrides_runpath=yes])])
 
4635
+  LDFLAGS=$save_LDFLAGS
 
4636
+  libdir=$save_libdir
 
4637
+
 
4638
+  # This implies no fast_install, which is unacceptable.
 
4639
+  # Some rework will be needed to allow for fast_install
 
4640
+  # before this can be enabled.
 
4641
+  hardcode_into_libs=yes
 
4642
+
 
4643
+  # Append ld.so.conf contents to the search path
 
4644
+  if test -f /etc/ld.so.conf; then
 
4645
+    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[  ]*hwcap[        ]/d;s/[:,      ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
 
4646
+    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
 
4647
+  fi
 
4648
+
 
4649
+  # We used to test for /lib/ld.so.1 and disable shared libraries on
 
4650
+  # powerpc, because MkLinux only supported shared libraries with the
 
4651
+  # GNU dynamic linker.  Since this was broken with cross compilers,
 
4652
+  # most powerpc-linux boxes support dynamic linking these days and
 
4653
+  # people can always --disable-shared, the test was removed, and we
 
4654
+  # assume the GNU/Linux dynamic linker is in use.
 
4655
+  dynamic_linker='GNU/Linux ld.so'
 
4656
+  ;;
 
4657
+
 
4658
+netbsdelf*-gnu)
 
4659
+  version_type=linux
 
4660
+  need_lib_prefix=no
 
4661
+  need_version=no
 
4662
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
4663
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4664
+  shlibpath_var=LD_LIBRARY_PATH
 
4665
+  shlibpath_overrides_runpath=no
 
4666
+  hardcode_into_libs=yes
 
4667
+  dynamic_linker='NetBSD ld.elf_so'
 
4668
   ;;
 
4669
 
 
4670
 netbsd*)
 
4671
-  if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
 
4672
-    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
 
4673
+  version_type=sunos
 
4674
+  need_lib_prefix=no
 
4675
+  need_version=no
 
4676
+  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
 
4677
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
4678
+    finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
 
4679
+    dynamic_linker='NetBSD (a.out) ld.so'
3934
4680
   else
3935
 
     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
3936
 
@@ -3332,12 +4004,12 @@
3937
 
   lt_cv_file_magic_test_file=/usr/lib/libnls.so
 
4681
-    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
 
4682
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
4683
+    soname_spec='${libname}${release}${shared_ext}$major'
 
4684
+    dynamic_linker='NetBSD ld.elf_so'
 
4685
   fi
 
4686
+  shlibpath_var=LD_LIBRARY_PATH
 
4687
+  shlibpath_overrides_runpath=yes
 
4688
+  hardcode_into_libs=yes
 
4689
   ;;
 
4690
 
 
4691
-newos6*)
 
4692
-  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
 
4693
-  lt_cv_file_magic_cmd=/usr/bin/file
 
4694
-  lt_cv_file_magic_test_file=/usr/lib/libnls.so
 
4695
+newsos6)
 
4696
+  version_type=linux
 
4697
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
4698
+  shlibpath_var=LD_LIBRARY_PATH
 
4699
+  shlibpath_overrides_runpath=yes
3938
4700
   ;;
3939
4701
 
3940
4702
-nto-qnx*)
3941
4703
-  lt_cv_deplibs_check_method=unknown
3942
4704
+*nto* | *qnx*)
3943
 
+  lt_cv_deplibs_check_method=pass_all
 
4705
+  version_type=qnx
 
4706
+  need_lib_prefix=no
 
4707
+  need_version=no
 
4708
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
4709
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4710
+  shlibpath_var=LD_LIBRARY_PATH
 
4711
+  shlibpath_overrides_runpath=no
 
4712
+  hardcode_into_libs=yes
 
4713
+  dynamic_linker='ldqnx.so'
3944
4714
   ;;
3945
4715
 
3946
4716
 openbsd*)
3947
4717
-  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
 
4718
-    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
 
4719
+  version_type=sunos
 
4720
+  sys_lib_dlsearch_path_spec="/usr/lib"
 
4721
+  need_lib_prefix=no
 
4722
+  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
 
4723
+  case $host_os in
 
4724
+    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
 
4725
+    *)                         need_version=no  ;;
 
4726
+  esac
 
4727
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
4728
+  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
 
4729
+  shlibpath_var=LD_LIBRARY_PATH
3948
4730
+  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
3949
 
     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
 
4731
+    case $host_os in
 
4732
+      openbsd2.[[89]] | openbsd2.[[89]].*)
 
4733
+       shlibpath_overrides_runpath=no
 
4734
+       ;;
 
4735
+      *)
 
4736
+       shlibpath_overrides_runpath=yes
 
4737
+       ;;
 
4738
+      esac
3950
4739
   else
3951
 
     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
3952
 
@@ -3356,6 +4028,10 @@
3953
 
   lt_cv_deplibs_check_method=pass_all
3954
 
   ;;
3955
 
 
3956
 
+sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
3957
 
+  lt_cv_deplibs_check_method=pass_all
3958
 
+  ;;
3959
 
+
 
4740
-    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
 
4741
+    shlibpath_overrides_runpath=yes
 
4742
   fi
 
4743
   ;;
 
4744
 
 
4745
+os2*)
 
4746
+  libname_spec='$name'
 
4747
+  shrext_cmds=".dll"
 
4748
+  need_lib_prefix=no
 
4749
+  library_names_spec='$libname${shared_ext} $libname.a'
 
4750
+  dynamic_linker='OS/2 ld.exe'
 
4751
+  shlibpath_var=LIBPATH
 
4752
+  ;;
 
4753
+
 
4754
 osf3* | osf4* | osf5*)
 
4755
-  lt_cv_deplibs_check_method=pass_all
 
4756
+  version_type=osf
 
4757
+  need_lib_prefix=no
 
4758
+  need_version=no
 
4759
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4760
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
4761
+  shlibpath_var=LD_LIBRARY_PATH
 
4762
+  sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
 
4763
+  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
 
4764
   ;;
 
4765
 
 
4766
 rdos*)
 
4767
-  lt_cv_deplibs_check_method=pass_all
 
4768
+  dynamic_linker=no
 
4769
   ;;
 
4770
 
 
4771
 solaris*)
 
4772
-  lt_cv_deplibs_check_method=pass_all
 
4773
+  version_type=linux
 
4774
+  need_lib_prefix=no
 
4775
+  need_version=no
 
4776
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
4777
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4778
+  shlibpath_var=LD_LIBRARY_PATH
 
4779
+  shlibpath_overrides_runpath=yes
 
4780
+  hardcode_into_libs=yes
 
4781
+  # ldd complains unless libraries are executable
 
4782
+  postinstall_cmds='chmod +x $lib'
 
4783
+  ;;
 
4784
+
 
4785
+sunos4*)
 
4786
+  version_type=sunos
 
4787
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
4788
+  finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
 
4789
+  shlibpath_var=LD_LIBRARY_PATH
 
4790
+  shlibpath_overrides_runpath=yes
 
4791
+  if test "$with_gnu_ld" = yes; then
 
4792
+    need_lib_prefix=no
 
4793
+  fi
 
4794
+  need_version=yes
 
4795
   ;;
 
4796
 
3960
4797
 sysv4 | sysv4.3*)
 
4798
+  version_type=linux
 
4799
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
4800
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4801
+  shlibpath_var=LD_LIBRARY_PATH
3961
4802
   case $host_vendor in
3962
 
   motorola)
3963
 
@@ -3383,7 +4059,7 @@
 
4803
-  motorola)
 
4804
-    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]'
 
4805
-    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
 
4806
-    ;;
 
4807
-  ncr)
 
4808
-    lt_cv_deplibs_check_method=pass_all
 
4809
-    ;;
 
4810
-  sequent)
 
4811
-    lt_cv_file_magic_cmd='/bin/file'
 
4812
-    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
 
4813
-    ;;
 
4814
-  sni)
 
4815
-    lt_cv_file_magic_cmd='/bin/file'
 
4816
-    lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
 
4817
-    lt_cv_file_magic_test_file=/lib/libc.so
 
4818
-    ;;
 
4819
-  siemens)
 
4820
-    lt_cv_deplibs_check_method=pass_all
 
4821
-    ;;
 
4822
-  pc)
 
4823
-    lt_cv_deplibs_check_method=pass_all
 
4824
-    ;;
 
4825
+    sni)
 
4826
+      shlibpath_overrides_runpath=no
 
4827
+      need_lib_prefix=no
 
4828
+      runpath_var=LD_RUN_PATH
 
4829
+      ;;
 
4830
+    siemens)
 
4831
+      need_lib_prefix=no
 
4832
+      ;;
 
4833
+    motorola)
 
4834
+      need_lib_prefix=no
 
4835
+      need_version=no
 
4836
+      shlibpath_overrides_runpath=no
 
4837
+      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
 
4838
+      ;;
3964
4839
   esac
3965
4840
   ;;
3966
4841
 
3967
4842
-sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
3968
 
+tpf*)
3969
 
   lt_cv_deplibs_check_method=pass_all
 
4843
-  lt_cv_deplibs_check_method=pass_all
 
4844
+sysv4*MP*)
 
4845
+  if test -d /usr/nec ;then
 
4846
+    version_type=linux
 
4847
+    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
 
4848
+    soname_spec='$libname${shared_ext}.$major'
 
4849
+    shlibpath_var=LD_LIBRARY_PATH
 
4850
+  fi
3970
4851
   ;;
3971
 
 esac
3972
 
@@ -3391,14 +4067,20 @@
3973
 
 file_magic_cmd=$lt_cv_file_magic_cmd
3974
 
 deplibs_check_method=$lt_cv_deplibs_check_method
3975
 
 test -z "$deplibs_check_method" && deplibs_check_method=unknown
 
4852
-esac
 
4853
-])
 
4854
-file_magic_cmd=$lt_cv_file_magic_cmd
 
4855
-deplibs_check_method=$lt_cv_deplibs_check_method
 
4856
-test -z "$deplibs_check_method" && deplibs_check_method=unknown
3976
4857
-])# AC_DEPLIBS_CHECK_METHOD
3977
 
+
3978
 
+_LT_DECL([], [deplibs_check_method], [1],
3979
 
+    [Method to check whether dependent libraries are shared objects])
3980
 
+_LT_DECL([], [file_magic_cmd], [1],
3981
 
+    [Command to use when deplibs_check_method == "file_magic"])
3982
 
+])# _LT_CHECK_MAGIC_METHOD
3983
 
 
3984
 
 
 
4858
 
 
4859
-
3985
4860
-# AC_PROG_NM
3986
 
+# LT_PATH_NM
3987
 
 # ----------
 
4861
-# ----------
3988
4862
-# find the pathname to a BSD-compatible name lister
3989
4863
-AC_DEFUN([AC_PROG_NM],
3990
4864
-[AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM,
3991
 
+# find the pathname to a BSD- or MS-compatible name lister
3992
 
+AC_DEFUN([LT_PATH_NM],
3993
 
+[AC_REQUIRE([AC_PROG_CC])dnl
3994
 
+AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
3995
 
 [if test -n "$NM"; then
3996
 
   # Let the user override the test.
3997
 
   lt_cv_path_NM="$NM"
3998
 
@@ -3440,16 +4122,51 @@
3999
 
     done
4000
 
     IFS="$lt_save_ifs"
4001
 
   done
 
4865
-[if test -n "$NM"; then
 
4866
-  # Let the user override the test.
 
4867
-  lt_cv_path_NM="$NM"
 
4868
-else
 
4869
-  lt_nm_to_check="${ac_tool_prefix}nm"
 
4870
-  if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
 
4871
-    lt_nm_to_check="$lt_nm_to_check nm"
 
4872
+sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
 
4873
+  version_type=freebsd-elf
 
4874
+  need_lib_prefix=no
 
4875
+  need_version=no
 
4876
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
 
4877
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4878
+  shlibpath_var=LD_LIBRARY_PATH
 
4879
+  shlibpath_overrides_runpath=yes
 
4880
+  hardcode_into_libs=yes
 
4881
+  if test "$with_gnu_ld" = yes; then
 
4882
+    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
 
4883
+  else
 
4884
+    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
 
4885
+    case $host_os in
 
4886
+      sco3.2v5*)
 
4887
+        sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
 
4888
+       ;;
 
4889
+    esac
 
4890
   fi
 
4891
-  for lt_tmp_nm in $lt_nm_to_check; do
 
4892
-    lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 
4893
-    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
 
4894
-      IFS="$lt_save_ifs"
 
4895
-      test -z "$ac_dir" && ac_dir=.
 
4896
-      tmp_nm="$ac_dir/$lt_tmp_nm"
 
4897
-      if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
 
4898
-       # Check to see if the nm accepts a BSD-compat flag.
 
4899
-       # Adding the `sed 1q' prevents false positives on HP-UX, which says:
 
4900
-       #   nm: unknown option "B" ignored
 
4901
-       # Tru64's nm complains that /dev/null is an invalid object file
 
4902
-       case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
 
4903
-       */dev/null* | *'Invalid file or object type'*)
 
4904
-         lt_cv_path_NM="$tmp_nm -B"
 
4905
-         break
 
4906
-         ;;
 
4907
-       *)
 
4908
-         case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
 
4909
-         */dev/null*)
 
4910
-           lt_cv_path_NM="$tmp_nm -p"
 
4911
-           break
 
4912
-           ;;
 
4913
-         *)
 
4914
-           lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
 
4915
-           continue # so that we can try to find one that supports BSD flags
 
4916
-           ;;
 
4917
-         esac
 
4918
-         ;;
 
4919
-       esac
 
4920
-      fi
 
4921
-    done
 
4922
-    IFS="$lt_save_ifs"
 
4923
-  done
4002
4924
-  test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm
4003
 
+  : ${lt_cv_path_NM=no}
4004
 
 fi])
 
4925
-fi])
4005
4926
-NM="$lt_cv_path_NM"
4006
4927
-])# AC_PROG_NM
4007
 
+if test "$lt_cv_path_NM" != "no"; then
4008
 
+  NM="$lt_cv_path_NM"
4009
 
+else
4010
 
+  # Didn't find any BSD compatible name lister, look for dumpbin.
4011
 
+  AC_CHECK_TOOLS(DUMPBIN, ["dumpbin -symbols" "link -dump -symbols"], :)
4012
 
+  AC_SUBST([DUMPBIN])
4013
 
+  if test "$DUMPBIN" != ":"; then
4014
 
+    NM="$DUMPBIN"
4015
 
+  fi
4016
 
+fi
4017
 
+test -z "$NM" && NM=nm
4018
 
+AC_SUBST([NM])
4019
 
+_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
4020
 
 
4021
 
+AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
4022
 
+  [lt_cv_nm_interface="BSD nm"
4023
 
+  echo "int some_variable = 0;" > conftest.$ac_ext
4024
 
+  (eval echo "\"\$as_me:__oline__: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
4025
 
+  (eval "$ac_compile" 2>conftest.err)
4026
 
+  cat conftest.err >&AS_MESSAGE_LOG_FD
4027
 
+  (eval echo "\"\$as_me:__oline__: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
4028
 
+  (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
4029
 
+  cat conftest.err >&AS_MESSAGE_LOG_FD
4030
 
+  (eval echo "\"\$as_me:__oline__: output\"" >&AS_MESSAGE_LOG_FD)
4031
 
+  cat conftest.out >&AS_MESSAGE_LOG_FD
4032
 
+  if $GREP 'External.*some_variable' conftest.out > /dev/null; then
4033
 
+    lt_cv_nm_interface="MS dumpbin"
4034
 
+  fi
4035
 
+  rm -f conftest*])
4036
 
+])# LT_PATH_NM
4037
 
+
4038
 
+# Old names:
4039
 
+AU_ALIAS([AM_PROG_NM], [LT_PATH_NM])
4040
 
+AU_ALIAS([AC_PROG_NM], [LT_PATH_NM])
4041
 
+dnl aclocal-1.4 backwards compatibility:
4042
 
+dnl AC_DEFUN([AM_PROG_NM], [])
4043
 
+dnl AC_DEFUN([AC_PROG_NM], [])
 
4928
-
 
4929
+  sys_lib_dlsearch_path_spec='/usr/lib'
 
4930
+  ;;
4044
4931
 
4045
4932
-# AC_CHECK_LIBM
4046
4933
-# -------------
4047
 
+
4048
 
+# LT_LIB_M
4049
 
+# --------
4050
 
 # check for math library
 
4934
-# check for math library
4051
4935
-AC_DEFUN([AC_CHECK_LIBM],
4052
 
+AC_DEFUN([LT_LIB_M],
4053
 
 [AC_REQUIRE([AC_CANONICAL_HOST])dnl
4054
 
 LIBM=
4055
 
 case $host in
4056
 
@@ -3464,1196 +4181,555 @@
4057
 
   AC_CHECK_LIB(m, cos, LIBM="-lm")
 
4936
-[AC_REQUIRE([AC_CANONICAL_HOST])dnl
 
4937
-LIBM=
 
4938
-case $host in
 
4939
-*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*)
 
4940
-  # These system don't have libm, or don't need it
 
4941
+tpf*)
 
4942
+  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.
 
4943
+  version_type=linux
 
4944
+  need_lib_prefix=no
 
4945
+  need_version=no
 
4946
+  library_name_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
4947
+  shlibpath_var=LD_LIBRARY_PATH
 
4948
+  shlibpath_overrides_runpath=no
 
4949
+  hardcode_into_libs=yes
 
4950
   ;;
 
4951
-*-ncr-sysv4.3*)
 
4952
-  AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
 
4953
-  AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
 
4954
+
 
4955
+uts4*)
 
4956
+  version_type=linux
 
4957
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
4958
+  soname_spec='${libname}${release}${shared_ext}$major'
 
4959
+  shlibpath_var=LD_LIBRARY_PATH
 
4960
   ;;
 
4961
+
 
4962
 *)
 
4963
-  AC_CHECK_LIB(m, cos, LIBM="-lm")
 
4964
+  dynamic_linker=no
4058
4965
   ;;
4059
4966
 esac
4060
4967
-])# AC_CHECK_LIBM
4083
4990
-  # For backwards non-gettext consistent compatibility...
4084
4991
-  INCLTDL="$LTDLINCL"
4085
4992
-])# AC_LIBLTDL_CONVENIENCE
4086
 
+AC_SUBST([LIBM])
4087
 
+])# LT_LIB_M
4088
 
 
 
4993
-
4089
4994
-
4090
4995
-# AC_LIBLTDL_INSTALLABLE([DIRECTORY])
4091
4996
-# -----------------------------------
4121
5026
-  # For backwards non-gettext consistent compatibility...
4122
5027
-  INCLTDL="$LTDLINCL"
4123
5028
-])# AC_LIBLTDL_INSTALLABLE
4124
 
+# Old name:
4125
 
+AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M])
4126
 
+dnl aclocal-1.4 backwards compatibility:
4127
 
+dnl AC_DEFUN([AC_CHECK_LIBM], [])
 
5029
+AC_MSG_RESULT([$dynamic_linker])
 
5030
+test "$dynamic_linker" = no && can_build_shared=no
4128
5031
 
 
5032
+variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
 
5033
+if test "$GCC" = yes; then
 
5034
+  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
 
5035
+fi
 
5036
 
5037
+if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
 
5038
+  sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
 
5039
+fi
 
5040
+if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
 
5041
+  sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
 
5042
+fi
 
5043
+
 
5044
+_LT_DECL([], [variables_saved_for_relink], [1],
 
5045
+    [Variables whose values should be saved in libtool wrapper scripts and
 
5046
+    restored at link time])
 
5047
+_LT_DECL([], [need_lib_prefix], [0],
 
5048
+    [Do we need the "lib" prefix for modules?])
 
5049
+_LT_DECL([], [need_version], [0], [Do we need a version for libraries?])
 
5050
+_LT_DECL([], [version_type], [0], [Library versioning type])
 
5051
+_LT_DECL([], [runpath_var], [0],  [Shared library runtime path variable])
 
5052
+_LT_DECL([], [shlibpath_var], [0],[Shared library path variable])
 
5053
+_LT_DECL([], [shlibpath_overrides_runpath], [0],
 
5054
+    [Is shlibpath searched before the hard-coded library search path?])
 
5055
+_LT_DECL([], [libname_spec], [1], [Format of library name prefix])
 
5056
+_LT_DECL([], [library_names_spec], [1],
 
5057
+    [[List of archive names.  First name is the real one, the rest are links.
 
5058
+    The last name is the one that the linker finds with -lNAME]])
 
5059
+_LT_DECL([], [soname_spec], [1],
 
5060
+    [[The coded name of the library, if different from the real name]])
 
5061
+_LT_DECL([], [postinstall_cmds], [2],
 
5062
+    [Command to use after installation of a shared archive])
 
5063
+_LT_DECL([], [postuninstall_cmds], [2],
 
5064
+    [Command to use after uninstallation of a shared archive])
 
5065
+_LT_DECL([], [finish_cmds], [2],
 
5066
+    [Commands used to finish a libtool library installation in a directory])
 
5067
+_LT_DECL([], [finish_eval], [1],
 
5068
+    [[As "finish_cmds", except a single script fragment to be evaled but
 
5069
+    not shown]])
 
5070
+_LT_DECL([], [hardcode_into_libs], [0],
 
5071
+    [Whether we should hardcode library paths into libraries])
 
5072
+_LT_DECL([], [sys_lib_search_path_spec], [2],
 
5073
+    [Compile-time system search path for libraries])
 
5074
+_LT_DECL([], [sys_lib_dlsearch_path_spec], [2],
 
5075
+    [Run-time system search path for libraries])
 
5076
+])# _LT_SYS_DYNAMIC_LINKER
4129
5077
 
4130
5078
-# AC_LIBTOOL_CXX
4131
5079
-# --------------
4133
5081
-AC_DEFUN([AC_LIBTOOL_CXX],
4134
5082
-[AC_REQUIRE([_LT_AC_LANG_CXX])
4135
5083
-])# AC_LIBTOOL_CXX
4136
 
+# _LT_COMPILER_NO_RTTI([TAGNAME])
4137
 
+# -------------------------------
4138
 
+m4_defun([_LT_COMPILER_NO_RTTI],
4139
 
+[m4_require([_LT_TAG_COMPILER])dnl
4140
5084
 
4141
 
+_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
 
5085
+# _LT_PATH_TOOL_PREFIX(TOOL)
 
5086
+# --------------------------
 
5087
+# find a file program which can recognize shared library
 
5088
+AC_DEFUN([_LT_PATH_TOOL_PREFIX],
 
5089
+[m4_require([_LT_DECL_EGREP])dnl
 
5090
+AC_MSG_CHECKING([for $1])
 
5091
+AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
 
5092
+[case $MAGIC_CMD in
 
5093
+[[\\/*] |  ?:[\\/]*])
 
5094
+  lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
 
5095
+  ;;
 
5096
+*)
 
5097
+  lt_save_MAGIC_CMD="$MAGIC_CMD"
 
5098
+  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 
5099
+dnl $ac_dummy forces splitting on constant user-supplied paths.
 
5100
+dnl POSIX.2 word splitting is done only on the output of word expansions,
 
5101
+dnl not every word.  This closes a longstanding sh security hole.
 
5102
+  ac_dummy="m4_if([$2], , $PATH, [$2])"
 
5103
+  for ac_dir in $ac_dummy; do
 
5104
+    IFS="$lt_save_ifs"
 
5105
+    test -z "$ac_dir" && ac_dir=.
 
5106
+    if test -f $ac_dir/$1; then
 
5107
+      lt_cv_path_MAGIC_CMD="$ac_dir/$1"
 
5108
+      if test -n "$file_magic_test_file"; then
 
5109
+       case $deplibs_check_method in
 
5110
+       "file_magic "*)
 
5111
+         file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
 
5112
+         MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
 
5113
+         if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
 
5114
+           $EGREP "$file_magic_regex" > /dev/null; then
 
5115
+           :
 
5116
+         else
 
5117
+           cat <<_LT_EOF 1>&2
4142
5118
 
4143
5119
-# _LT_AC_LANG_CXX
4144
5120
-# ---------------
4147
5123
-AC_REQUIRE([_LT_AC_PROG_CXXCPP])
4148
5124
-_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX])
4149
5125
-])# _LT_AC_LANG_CXX
4150
 
+if test "$GCC" = yes; then
4151
 
+  _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
 
5126
+*** Warning: the command libtool uses to detect shared libraries,
 
5127
+*** $file_magic_cmd, produces output that libtool cannot recognize.
 
5128
+*** The result is that libtool may fail to recognize shared libraries
 
5129
+*** as such.  This will affect the creation of libtool libraries that
 
5130
+*** depend on shared libraries, but programs linked with such libtool
 
5131
+*** libraries will work regardless of this problem.  Nevertheless, you
 
5132
+*** may want to report the problem to your system manager and/or to
 
5133
+*** bug-libtool@gnu.org
4152
5134
 
4153
5135
-# _LT_AC_PROG_CXXCPP
4154
5136
-# ------------------
4159
5141
-    ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
4160
5142
-    (test "X$CXX" != "Xg++"))) ; then
4161
5143
-  AC_PROG_CXXCPP
4162
 
+  _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
4163
 
+    lt_cv_prog_compiler_rtti_exceptions,
4164
 
+    [-fno-rtti -fno-exceptions], [],
4165
 
+    [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
 
5144
+_LT_EOF
 
5145
+         fi ;;
 
5146
+       esac
 
5147
+      fi
 
5148
+      break
 
5149
+    fi
 
5150
+  done
 
5151
+  IFS="$lt_save_ifs"
 
5152
+  MAGIC_CMD="$lt_save_MAGIC_CMD"
 
5153
+  ;;
 
5154
+esac])
 
5155
+MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
 
5156
+if test -n "$MAGIC_CMD"; then
 
5157
+  AC_MSG_RESULT($MAGIC_CMD)
 
5158
+else
 
5159
+  AC_MSG_RESULT(no)
4166
5160
 fi
4167
5161
-])# _LT_AC_PROG_CXXCPP
4168
5162
-
4173
5167
-[AC_REQUIRE([_LT_AC_LANG_F77])
4174
5168
-])# AC_LIBTOOL_F77
4175
5169
-
4176
 
-
 
5170
+_LT_DECL([], [MAGIC_CMD], [0],
 
5171
+        [Used to examine libraries when file_magic_cmd begins with "file"])dnl
 
5172
+])# _LT_PATH_TOOL_PREFIX
 
5173
 
4177
5174
-# _LT_AC_LANG_F77
4178
5175
-# ---------------
4179
5176
-AC_DEFUN([_LT_AC_LANG_F77],
4180
5177
-[AC_REQUIRE([AC_PROG_F77])
4181
5178
-_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77])
4182
5179
-])# _LT_AC_LANG_F77
4183
 
-
4184
 
-
 
5180
+# Old name:
 
5181
+AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX])
 
5182
+dnl aclocal-1.4 backwards compatibility:
 
5183
+dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], [])
 
5184
 
 
5185
 
4185
5186
-# AC_LIBTOOL_GCJ
4186
 
-# --------------
 
5187
+# _LT_PATH_MAGIC
 
5188
 # --------------
4187
5189
-# enable support for GCJ libraries
4188
5190
-AC_DEFUN([AC_LIBTOOL_GCJ],
4189
5191
-[AC_REQUIRE([_LT_AC_LANG_GCJ])
4190
5192
-])# AC_LIBTOOL_GCJ
4191
 
-
4192
 
-
 
5193
+# find a file program which can recognize a shared library
 
5194
+m4_defun([_LT_PATH_MAGIC],
 
5195
+[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
 
5196
+if test -z "$lt_cv_path_MAGIC_CMD"; then
 
5197
+  if test -n "$ac_tool_prefix"; then
 
5198
+    _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
 
5199
+  else
 
5200
+    MAGIC_CMD=:
 
5201
+  fi
 
5202
+fi
 
5203
+])# _LT_PATH_MAGIC
 
5204
 
 
5205
 
4193
5206
-# _LT_AC_LANG_GCJ
4194
5207
-# ---------------
4195
5208
-AC_DEFUN([_LT_AC_LANG_GCJ],
4201
5214
-          [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])])
4202
5215
-_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ])
4203
5216
-])# _LT_AC_LANG_GCJ
4204
 
-
4205
 
-
 
5217
+# LT_PATH_LD
 
5218
+# ----------
 
5219
+# find the pathname to the GNU or non-GNU linker
 
5220
+AC_DEFUN([LT_PATH_LD],
 
5221
+[AC_REQUIRE([AC_PROG_CC])dnl
 
5222
+AC_REQUIRE([AC_CANONICAL_HOST])dnl
 
5223
+AC_REQUIRE([AC_CANONICAL_BUILD])dnl
 
5224
+m4_require([_LT_DECL_SED])dnl
 
5225
+m4_require([_LT_DECL_EGREP])dnl
 
5226
 
 
5227
+AC_ARG_WITH([gnu-ld],
 
5228
+    [AS_HELP_STRING([--with-gnu-ld],
 
5229
+       [assume the C compiler uses GNU ld @<:@default=no@:>@])],
 
5230
+    [test "$withval" = no || with_gnu_ld=yes],
 
5231
+    [with_gnu_ld=no])dnl
 
5232
 
4206
5233
-# AC_LIBTOOL_RC
4207
5234
-# -------------
4208
5235
-# enable support for Windows resource files
4210
5237
-[AC_REQUIRE([LT_AC_PROG_RC])
4211
5238
-_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC])
4212
5239
-])# AC_LIBTOOL_RC
4213
 
-
4214
 
-
 
5240
+ac_prog=ld
 
5241
+if test "$GCC" = yes; then
 
5242
+  # Check if gcc -print-prog-name=ld gives a path.
 
5243
+  AC_MSG_CHECKING([for ld used by $CC])
 
5244
+  case $host in
 
5245
+  *-*-mingw*)
 
5246
+    # gcc leaves a trailing carriage return which upsets mingw
 
5247
+    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
 
5248
+  *)
 
5249
+    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
 
5250
+  esac
 
5251
+  case $ac_prog in
 
5252
+    # Accept absolute paths.
 
5253
+    [[\\/]]* | ?:[[\\/]]*)
 
5254
+      re_direlt='/[[^/]][[^/]]*/\.\./'
 
5255
+      # Canonicalize the pathname of ld
 
5256
+      ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
 
5257
+      while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
 
5258
+       ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
 
5259
+      done
 
5260
+      test -z "$LD" && LD="$ac_prog"
 
5261
+      ;;
 
5262
+  "")
 
5263
+    # If it fails, then pretend we aren't using GCC.
 
5264
+    ac_prog=ld
 
5265
+    ;;
 
5266
+  *)
 
5267
+    # If it is relative, then search for the first ld in PATH.
 
5268
+    with_gnu_ld=unknown
 
5269
+    ;;
 
5270
+  esac
 
5271
+elif test "$with_gnu_ld" = yes; then
 
5272
+  AC_MSG_CHECKING([for GNU ld])
 
5273
+else
 
5274
+  AC_MSG_CHECKING([for non-GNU ld])
 
5275
+fi
 
5276
+AC_CACHE_VAL(lt_cv_path_LD,
 
5277
+[if test -z "$LD"; then
 
5278
+  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 
5279
+  for ac_dir in $PATH; do
 
5280
+    IFS="$lt_save_ifs"
 
5281
+    test -z "$ac_dir" && ac_dir=.
 
5282
+    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
 
5283
+      lt_cv_path_LD="$ac_dir/$ac_prog"
 
5284
+      # Check to see if the program is GNU ld.  I'd rather use --version,
 
5285
+      # but apparently some variants of GNU ld only accept -v.
 
5286
+      # Break only if it was the GNU/non-GNU ld that we prefer.
 
5287
+      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
 
5288
+      *GNU* | *'with BFD'*)
 
5289
+       test "$with_gnu_ld" != no && break
 
5290
+       ;;
 
5291
+      *)
 
5292
+       test "$with_gnu_ld" != yes && break
 
5293
+       ;;
 
5294
+      esac
 
5295
+    fi
 
5296
+  done
 
5297
+  IFS="$lt_save_ifs"
 
5298
+else
 
5299
+  lt_cv_path_LD="$LD" # Let the user override the test with a path.
 
5300
+fi])
 
5301
+LD="$lt_cv_path_LD"
 
5302
+if test -n "$LD"; then
 
5303
+  AC_MSG_RESULT($LD)
 
5304
+else
 
5305
+  AC_MSG_RESULT(no)
 
5306
+fi
 
5307
+test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
 
5308
+_LT_PATH_LD_GNU
 
5309
+AC_SUBST([LD])
 
5310
 
 
5311
+_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
 
5312
+])# LT_PATH_LD
 
5313
 
4215
5314
-# AC_LIBTOOL_LANG_C_CONFIG
4216
5315
-# ------------------------
4217
5316
-# Ensure that the configuration vars for the C compiler are
4221
5320
-AC_DEFUN([_LT_AC_LANG_C_CONFIG],
4222
5321
-[lt_save_CC="$CC"
4223
5322
-AC_LANG_PUSH(C)
4224
 
-
 
5323
+# Old names:
 
5324
+AU_ALIAS([AM_PROG_LD], [LT_PATH_LD])
 
5325
+AU_ALIAS([AC_PROG_LD], [LT_PATH_LD])
 
5326
+dnl aclocal-1.4 backwards compatibility:
 
5327
+dnl AC_DEFUN([AM_PROG_LD], [])
 
5328
+dnl AC_DEFUN([AC_PROG_LD], [])
 
5329
+
 
5330
+
 
5331
+# _LT_PATH_LD_GNU
 
5332
+#- --------------
 
5333
+m4_defun([_LT_PATH_LD_GNU],
 
5334
+[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
 
5335
+[# I'd rather use --version here, but apparently some GNU lds only accept -v.
 
5336
+case `$LD -v 2>&1 </dev/null` in
 
5337
+*GNU* | *'with BFD'*)
 
5338
+  lt_cv_prog_gnu_ld=yes
 
5339
+  ;;
 
5340
+*)
 
5341
+  lt_cv_prog_gnu_ld=no
 
5342
+  ;;
 
5343
+esac])
 
5344
+with_gnu_ld=$lt_cv_prog_gnu_ld
 
5345
+])# _LT_PATH_LD_GNU
 
5346
 
4225
5347
-# Source file extension for C test sources.
4226
5348
-ac_ext=c
4227
 
-
 
5349
 
4228
5350
-# Object file extension for compiled C test sources.
4229
5351
-objext=o
4230
5352
-_LT_AC_TAGVAR(objext, $1)=$objext
4231
 
-
 
5353
+# _LT_CMD_RELOAD
 
5354
+# --------------
 
5355
+# find reload flag for linker
 
5356
+#   -- PORTME Some linkers may need a different reload flag.
 
5357
+m4_defun([_LT_CMD_RELOAD],
 
5358
+[AC_CACHE_CHECK([for $LD option to reload object files],
 
5359
+  lt_cv_ld_reload_flag,
 
5360
+  [lt_cv_ld_reload_flag='-r'])
 
5361
+reload_flag=$lt_cv_ld_reload_flag
 
5362
+case $reload_flag in
 
5363
+"" | " "*) ;;
 
5364
+*) reload_flag=" $reload_flag" ;;
 
5365
+esac
 
5366
+reload_cmds='$LD$reload_flag -o $output$reload_objs'
 
5367
+case $host_os in
 
5368
+  darwin*)
 
5369
+    if test "$GCC" = yes; then
 
5370
+      reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
 
5371
+    else
 
5372
+      reload_cmds='$LD$reload_flag -o $output$reload_objs'
 
5373
+    fi
 
5374
+    ;;
 
5375
+esac
 
5376
+_LT_DECL([], [reload_flag], [1], [How to create reloadable object files])dnl
 
5377
+_LT_DECL([], [reload_cmds], [2])dnl
 
5378
+])# _LT_CMD_RELOAD
 
5379
 
4232
5380
-# Code to be used in simple compile tests
4233
5381
-lt_simple_compile_test_code="int some_variable = 0;"
4234
 
+_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1],
4235
 
+       [Compiler flag to turn off builtin functions])
4236
 
+])# _LT_COMPILER_NO_RTTI
4237
5382
 
4238
5383
-# Code to be used in simple link tests
4239
5384
-lt_simple_link_test_code='int main(){return(0);}'
 
5385
+# _LT_CHECK_MAGIC_METHOD
 
5386
+# ----------------------
 
5387
+# how to check for library dependencies
 
5388
+#  -- PORTME fill in with the dynamic library characteristics
 
5389
+m4_defun([_LT_CHECK_MAGIC_METHOD],
 
5390
+[m4_require([_LT_DECL_EGREP])
 
5391
+AC_CACHE_CHECK([how to recognize dependent libraries],
 
5392
+lt_cv_deplibs_check_method,
 
5393
+[lt_cv_file_magic_cmd='$MAGIC_CMD'
 
5394
+lt_cv_file_magic_test_file=
 
5395
+lt_cv_deplibs_check_method='unknown'
 
5396
+# Need to set the preceding variable on all platforms that support
 
5397
+# interlibrary dependencies.
 
5398
+# 'none' -- dependencies not supported.
 
5399
+# `unknown' -- same as none, but documents that we really don't know.
 
5400
+# 'pass_all' -- all dependencies passed with no checks.
 
5401
+# 'test_compile' -- check by making test program.
 
5402
+# 'file_magic [[regex]]' -- check by looking for files in library path
 
5403
+# which responds to the $file_magic_cmd with a given extended regex.
 
5404
+# If you have `file' or equivalent on your system and you're not sure
 
5405
+# whether `pass_all' will *always* work, you probably want this one.
4240
5406
 
4241
5407
-_LT_AC_SYS_COMPILER
4242
 
+# _LT_CMD_GLOBAL_SYMBOLS
4243
 
+# ----------------------
4244
 
+m4_defun([_LT_CMD_GLOBAL_SYMBOLS],
4245
 
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
4246
 
+AC_REQUIRE([AC_PROG_CC])dnl
4247
 
+AC_REQUIRE([LT_PATH_NM])dnl
4248
 
+AC_REQUIRE([LT_PATH_LD])dnl
4249
 
+m4_require([_LT_DECL_SED])dnl
4250
 
+m4_require([_LT_DECL_EGREP])dnl
4251
 
+m4_require([_LT_TAG_COMPILER])dnl
 
5408
+case $host_os in
 
5409
+aix[[4-9]]*)
 
5410
+  lt_cv_deplibs_check_method=pass_all
 
5411
+  ;;
4252
5412
 
4253
5413
-# save warnings/boilerplate of simple test code
4254
5414
-_LT_COMPILER_BOILERPLATE
4255
5415
-_LT_LINKER_BOILERPLATE
4256
 
+# Check for command to grab the raw symbol name followed by C symbol from nm.
4257
 
+AC_MSG_CHECKING([command to parse $NM output from $compiler object])
4258
 
+AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
4259
 
+[
4260
 
+# These are sane defaults that work on at least a few old systems.
4261
 
+# [They come from Ultrix.  What could be older than Ultrix?!! ;)]
 
5416
+beos*)
 
5417
+  lt_cv_deplibs_check_method=pass_all
 
5418
+  ;;
4262
5419
 
4263
5420
-AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1)
4264
5421
-AC_LIBTOOL_PROG_COMPILER_PIC($1)
4273
5430
-# Report which library types will actually be built
4274
5431
-AC_MSG_CHECKING([if libtool supports shared libraries])
4275
5432
-AC_MSG_RESULT([$can_build_shared])
4276
 
+# Character class describing NM global symbol codes.
4277
 
+symcode='[[BCDEGRST]]'
 
5433
+bsdi[[45]]*)
 
5434
+  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
 
5435
+  lt_cv_file_magic_cmd='/usr/bin/file -L'
 
5436
+  lt_cv_file_magic_test_file=/shlib/libc.so
 
5437
+  ;;
4278
5438
 
4279
5439
-AC_MSG_CHECKING([whether to build shared libraries])
4280
5440
-test "$can_build_shared" = "no" && enable_shared=no
4281
 
+# Regexp to match symbols that can be accessed directly from C.
4282
 
+sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
 
5441
+cygwin*)
 
5442
+  # func_win32_libid is a shell function defined in ltmain.sh
 
5443
+  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
 
5444
+  lt_cv_file_magic_cmd='func_win32_libid'
 
5445
+  ;;
4283
5446
 
4284
5447
-# On AIX, shared libraries and static libraries use the same namespace, and
4285
5448
-# are all built from PIC.
4286
 
+# Define system-specific variables.
4287
 
 case $host_os in
 
5449
-case $host_os in
4288
5450
-aix3*)
4289
5451
-  test "$enable_shared" = yes && enable_static=no
4290
5452
-  if test -n "$RANLIB"; then
4291
5453
-    archive_cmds="$archive_cmds~\$RANLIB \$lib"
4292
5454
-    postinstall_cmds='$RANLIB $lib'
4293
 
-  fi
4294
 
+aix*)
4295
 
+  symcode='[[BCDT]]'
 
5455
+mingw* | pw32*)
 
5456
+  # Base MSYS/MinGW do not provide the 'file' command needed by
 
5457
+  # func_win32_libid shell function, so use a weaker test based on 'objdump',
 
5458
+  # unless we find 'file', for example because we are cross-compiling.
 
5459
+  if ( file / ) >/dev/null 2>&1; then
 
5460
+    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
 
5461
+    lt_cv_file_magic_cmd='func_win32_libid'
 
5462
+  else
 
5463
+    lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
 
5464
+    lt_cv_file_magic_cmd='$OBJDUMP -f'
 
5465
   fi
4296
5466
   ;;
4297
 
-
4298
 
-aix4* | aix5*)
 
5467
 
 
5468
-aix[[4-9]]*)
4299
5469
-  if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
4300
5470
-    test "$enable_shared" = yes && enable_static=no
4301
5471
-  fi
4302
 
+cygwin* | mingw* | pw32*)
4303
 
+  symcode='[[ABCDGISTW]]'
4304
 
     ;;
 
5472
-    ;;
4305
5473
-esac
4306
5474
-AC_MSG_RESULT([$enable_shared])
4307
 
-
 
5475
+darwin* | rhapsody*)
 
5476
+  lt_cv_deplibs_check_method=pass_all
 
5477
+  ;;
 
5478
 
4308
5479
-AC_MSG_CHECKING([whether to build static libraries])
4309
5480
-# Make sure either enable_shared or enable_static is yes.
4310
5481
-test "$enable_shared" = yes || enable_static=yes
4311
5482
-AC_MSG_RESULT([$enable_static])
4312
 
-
 
5483
+freebsd* | dragonfly*)
 
5484
+  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
 
5485
+    case $host_cpu in
 
5486
+    i*86 )
 
5487
+      # Not sure whether the presence of OpenBSD here was a mistake.
 
5488
+      # Let's accept both of them until this is cleared up.
 
5489
+      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
 
5490
+      lt_cv_file_magic_cmd=/usr/bin/file
 
5491
+      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
 
5492
+      ;;
 
5493
+    esac
 
5494
+  else
 
5495
+    lt_cv_deplibs_check_method=pass_all
 
5496
+  fi
 
5497
+  ;;
 
5498
 
4313
5499
-AC_LIBTOOL_CONFIG($1)
4314
 
-
 
5500
+gnu*)
 
5501
+  lt_cv_deplibs_check_method=pass_all
 
5502
+  ;;
 
5503
 
4315
5504
-AC_LANG_POP
4316
5505
-CC="$lt_save_CC"
4317
5506
-])# AC_LIBTOOL_LANG_C_CONFIG
4318
 
-
4319
 
-
 
5507
+hpux10.20* | hpux11*)
 
5508
+  lt_cv_file_magic_cmd=/usr/bin/file
 
5509
+  case $host_cpu in
 
5510
+  ia64*)
 
5511
+    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
 
5512
+    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
 
5513
+    ;;
 
5514
+  hppa*64*)
 
5515
+    [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]']
 
5516
+    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
 
5517
+    ;;
 
5518
+  *)
 
5519
+    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library'
 
5520
+    lt_cv_file_magic_test_file=/usr/lib/libc.sl
 
5521
+    ;;
 
5522
+  esac
 
5523
+  ;;
 
5524
 
 
5525
+interix[[3-9]]*)
 
5526
+  # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here
 
5527
+  lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$'
 
5528
+  ;;
 
5529
 
4320
5530
-# AC_LIBTOOL_LANG_CXX_CONFIG
4321
5531
-# --------------------------
4322
5532
-# Ensure that the configuration vars for the C compiler are
4347
5557
-_LT_AC_TAGVAR(no_undefined_flag, $1)=
4348
5558
-_LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
4349
5559
-_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
4350
 
-
 
5560
+irix5* | irix6* | nonstopux*)
 
5561
+  case $LD in
 
5562
+  *-32|*"-32 ") libmagic=32-bit;;
 
5563
+  *-n32|*"-n32 ") libmagic=N32;;
 
5564
+  *-64|*"-64 ") libmagic=64-bit;;
 
5565
+  *) libmagic=never-match;;
 
5566
+  esac
 
5567
+  lt_cv_deplibs_check_method=pass_all
 
5568
+  ;;
 
5569
 
4351
5570
-# Dependencies to place before and after the object being linked:
4352
5571
-_LT_AC_TAGVAR(predep_objects, $1)=
4353
5572
-_LT_AC_TAGVAR(postdep_objects, $1)=
4354
5573
-_LT_AC_TAGVAR(predeps, $1)=
4355
5574
-_LT_AC_TAGVAR(postdeps, $1)=
4356
5575
-_LT_AC_TAGVAR(compiler_lib_search_path, $1)=
4357
 
-
 
5576
-_LT_AC_TAGVAR(compiler_lib_search_dirs, $1)=
 
5577
+# This must be Linux ELF.
 
5578
+linux* | k*bsd*-gnu)
 
5579
+  lt_cv_deplibs_check_method=pass_all
 
5580
+  ;;
 
5581
 
4358
5582
-# Source file extension for C++ test sources.
4359
5583
-ac_ext=cpp
4360
 
-
 
5584
+netbsd* | netbsdelf*-gnu)
 
5585
+  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
 
5586
+    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
 
5587
+  else
 
5588
+    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
 
5589
+  fi
 
5590
+  ;;
 
5591
 
4361
5592
-# Object file extension for compiled C++ test sources.
4362
5593
-objext=o
4363
5594
-_LT_AC_TAGVAR(objext, $1)=$objext
4364
 
-
 
5595
+newos6*)
 
5596
+  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
 
5597
+  lt_cv_file_magic_cmd=/usr/bin/file
 
5598
+  lt_cv_file_magic_test_file=/usr/lib/libnls.so
 
5599
+  ;;
 
5600
 
4365
5601
-# Code to be used in simple compile tests
4366
5602
-lt_simple_compile_test_code="int some_variable = 0;"
4367
 
-
 
5603
+*nto* | *qnx*)
 
5604
+  lt_cv_deplibs_check_method=pass_all
 
5605
+  ;;
 
5606
 
4368
5607
-# Code to be used in simple link tests
4369
5608
-lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }'
4370
 
-
 
5609
+openbsd*)
 
5610
+  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
 
5611
+    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
 
5612
+  else
 
5613
+    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
 
5614
+  fi
 
5615
+  ;;
 
5616
 
4371
5617
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
4372
5618
-_LT_AC_SYS_COMPILER
4373
 
-
 
5619
+osf3* | osf4* | osf5*)
 
5620
+  lt_cv_deplibs_check_method=pass_all
 
5621
+  ;;
 
5622
 
4374
5623
-# save warnings/boilerplate of simple test code
4375
5624
-_LT_COMPILER_BOILERPLATE
4376
5625
-_LT_LINKER_BOILERPLATE
4377
 
-
 
5626
+rdos*)
 
5627
+  lt_cv_deplibs_check_method=pass_all
 
5628
+  ;;
 
5629
 
4378
5630
-# Allow CC to be a program name with arguments.
4379
5631
-lt_save_CC=$CC
4380
5632
-lt_save_LD=$LD
4397
5649
-compiler=$CC
4398
5650
-_LT_AC_TAGVAR(compiler, $1)=$CC
4399
5651
-_LT_CC_BASENAME([$compiler])
4400
 
-
 
5652
+solaris*)
 
5653
+  lt_cv_deplibs_check_method=pass_all
 
5654
+  ;;
 
5655
+
 
5656
+sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
 
5657
+  lt_cv_deplibs_check_method=pass_all
 
5658
+  ;;
 
5659
+
 
5660
+sysv4 | sysv4.3*)
 
5661
+  case $host_vendor in
 
5662
+  motorola)
 
5663
+    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]'
 
5664
+    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
 
5665
+    ;;
 
5666
+  ncr)
 
5667
+    lt_cv_deplibs_check_method=pass_all
 
5668
+    ;;
 
5669
+  sequent)
 
5670
+    lt_cv_file_magic_cmd='/bin/file'
 
5671
+    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
 
5672
+    ;;
 
5673
+  sni)
 
5674
+    lt_cv_file_magic_cmd='/bin/file'
 
5675
+    lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
 
5676
+    lt_cv_file_magic_test_file=/lib/libc.so
 
5677
+    ;;
 
5678
+  siemens)
 
5679
+    lt_cv_deplibs_check_method=pass_all
 
5680
+    ;;
 
5681
+  pc)
 
5682
+    lt_cv_deplibs_check_method=pass_all
 
5683
+    ;;
 
5684
+  esac
 
5685
+  ;;
 
5686
 
4401
5687
-# We don't want -fno-exception wen compiling C++ code, so set the
4402
5688
-# no_builtin_flag separately
4403
5689
-if test "$GXX" = yes; then
4404
5690
-  _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
4405
 
-else
 
5691
+tpf*)
 
5692
+  lt_cv_deplibs_check_method=pass_all
 
5693
+  ;;
 
5694
+esac
 
5695
+])
 
5696
+file_magic_cmd=$lt_cv_file_magic_cmd
 
5697
+deplibs_check_method=$lt_cv_deplibs_check_method
 
5698
+test -z "$deplibs_check_method" && deplibs_check_method=unknown
 
5699
+
 
5700
+_LT_DECL([], [deplibs_check_method], [1],
 
5701
+    [Method to check whether dependent libraries are shared objects])
 
5702
+_LT_DECL([], [file_magic_cmd], [1],
 
5703
+    [Command to use when deplibs_check_method == "file_magic"])
 
5704
+])# _LT_CHECK_MAGIC_METHOD
 
5705
+
 
5706
+
 
5707
+# LT_PATH_NM
 
5708
+# ----------
 
5709
+# find the pathname to a BSD- or MS-compatible name lister
 
5710
+AC_DEFUN([LT_PATH_NM],
 
5711
+[AC_REQUIRE([AC_PROG_CC])dnl
 
5712
+AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
 
5713
+[if test -n "$NM"; then
 
5714
+  # Let the user override the test.
 
5715
+  lt_cv_path_NM="$NM"
 
5716
+else
 
5717
+  lt_nm_to_check="${ac_tool_prefix}nm"
 
5718
+  if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
 
5719
+    lt_nm_to_check="$lt_nm_to_check nm"
 
5720
+  fi
 
5721
+  for lt_tmp_nm in $lt_nm_to_check; do
 
5722
+    lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 
5723
+    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
 
5724
+      IFS="$lt_save_ifs"
 
5725
+      test -z "$ac_dir" && ac_dir=.
 
5726
+      tmp_nm="$ac_dir/$lt_tmp_nm"
 
5727
+      if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
 
5728
+       # Check to see if the nm accepts a BSD-compat flag.
 
5729
+       # Adding the `sed 1q' prevents false positives on HP-UX, which says:
 
5730
+       #   nm: unknown option "B" ignored
 
5731
+       # Tru64's nm complains that /dev/null is an invalid object file
 
5732
+       case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
 
5733
+       */dev/null* | *'Invalid file or object type'*)
 
5734
+         lt_cv_path_NM="$tmp_nm -B"
 
5735
+         break
 
5736
+         ;;
 
5737
+       *)
 
5738
+         case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
 
5739
+         */dev/null*)
 
5740
+           lt_cv_path_NM="$tmp_nm -p"
 
5741
+           break
 
5742
+           ;;
 
5743
+         *)
 
5744
+           lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
 
5745
+           continue # so that we can try to find one that supports BSD flags
 
5746
+           ;;
 
5747
+         esac
 
5748
+         ;;
 
5749
+       esac
 
5750
+      fi
 
5751
+    done
 
5752
+    IFS="$lt_save_ifs"
 
5753
+  done
 
5754
+  : ${lt_cv_path_NM=no}
 
5755
+fi])
 
5756
+if test "$lt_cv_path_NM" != "no"; then
 
5757
+  NM="$lt_cv_path_NM"
 
5758
 else
4406
5759
-  _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
4407
 
-fi
4408
 
-
 
5760
+  # Didn't find any BSD compatible name lister, look for dumpbin.
 
5761
+  AC_CHECK_TOOLS(DUMPBIN, ["dumpbin -symbols" "link -dump -symbols"], :)
 
5762
+  AC_SUBST([DUMPBIN])
 
5763
+  if test "$DUMPBIN" != ":"; then
 
5764
+    NM="$DUMPBIN"
 
5765
+  fi
 
5766
 fi
 
5767
+test -z "$NM" && NM=nm
 
5768
+AC_SUBST([NM])
 
5769
+_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
 
5770
 
4409
5771
-if test "$GXX" = yes; then
4410
5772
-  # Set up default GNU C++ configuration
4411
 
-
 
5773
+AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
 
5774
+  [lt_cv_nm_interface="BSD nm"
 
5775
+  echo "int some_variable = 0;" > conftest.$ac_ext
 
5776
+  (eval echo "\"\$as_me:__oline__: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
 
5777
+  (eval "$ac_compile" 2>conftest.err)
 
5778
+  cat conftest.err >&AS_MESSAGE_LOG_FD
 
5779
+  (eval echo "\"\$as_me:__oline__: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
 
5780
+  (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
 
5781
+  cat conftest.err >&AS_MESSAGE_LOG_FD
 
5782
+  (eval echo "\"\$as_me:__oline__: output\"" >&AS_MESSAGE_LOG_FD)
 
5783
+  cat conftest.out >&AS_MESSAGE_LOG_FD
 
5784
+  if $GREP 'External.*some_variable' conftest.out > /dev/null; then
 
5785
+    lt_cv_nm_interface="MS dumpbin"
 
5786
+  fi
 
5787
+  rm -f conftest*])
 
5788
+])# LT_PATH_NM
 
5789
+
 
5790
+# Old names:
 
5791
+AU_ALIAS([AM_PROG_NM], [LT_PATH_NM])
 
5792
+AU_ALIAS([AC_PROG_NM], [LT_PATH_NM])
 
5793
+dnl aclocal-1.4 backwards compatibility:
 
5794
+dnl AC_DEFUN([AM_PROG_NM], [])
 
5795
+dnl AC_DEFUN([AC_PROG_NM], [])
 
5796
 
4412
5797
-  AC_PROG_LD
4413
 
-
 
5798
 
4414
5799
-  # Check if GNU C++ uses GNU ld as the underlying linker, since the
4415
5800
-  # archiving commands below assume that GNU ld is being used.
4416
5801
-  if test "$with_gnu_ld" = yes; then
4417
5802
-    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
4418
5803
-    _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
4419
 
-
 
5804
+# LT_LIB_M
 
5805
+# --------
 
5806
+# check for math library
 
5807
+AC_DEFUN([LT_LIB_M],
 
5808
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
 
5809
+LIBM=
 
5810
+case $host in
 
5811
+*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*)
 
5812
+  # These system don't have libm, or don't need it
 
5813
+  ;;
 
5814
+*-ncr-sysv4.3*)
 
5815
+  AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
 
5816
+  AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
 
5817
+  ;;
 
5818
+*)
 
5819
+  AC_CHECK_LIB(m, cos, LIBM="-lm")
 
5820
+  ;;
 
5821
+esac
 
5822
+AC_SUBST([LIBM])
 
5823
+])# LT_LIB_M
 
5824
 
4420
5825
-    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
4421
5826
-    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
4422
 
-
 
5827
+# Old name:
 
5828
+AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M])
 
5829
+dnl aclocal-1.4 backwards compatibility:
 
5830
+dnl AC_DEFUN([AC_CHECK_LIBM], [])
 
5831
 
4423
5832
-    # If archive_cmds runs LD, not CC, wlarc should be empty
4424
5833
-    # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
4425
5834
-    #     investigate it a little bit more. (MM)
4426
5835
-    wlarc='${wl}'
4427
 
-
 
5836
 
4428
5837
-    # ancient GNU ld didn't support --whole-archive et. al.
4429
5838
-    if eval "`$CC -print-prog-name=ld` --help 2>&1" | \
4430
5839
-       grep 'no-whole-archive' > /dev/null; then
4435
5844
-  else
4436
5845
-    with_gnu_ld=no
4437
5846
-    wlarc=
4438
 
-
 
5847
+# _LT_COMPILER_NO_RTTI([TAGNAME])
 
5848
+# -------------------------------
 
5849
+m4_defun([_LT_COMPILER_NO_RTTI],
 
5850
+[m4_require([_LT_TAG_COMPILER])dnl
 
5851
 
4439
5852
-    # A generic and very simple default shared library creation
4440
5853
-    # command for GNU C++ for the case where it uses the native
4441
5854
-    # linker, instead of GNU ld.  If possible, this setting should
4442
5855
-    # overridden to take advantage of the native linker features on
4443
5856
-    # the platform it is being used on.
4444
5857
-    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
 
5858
-  fi
 
5859
+_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
 
5860
 
 
5861
-  # Commands to make compiler produce verbose output that lists
 
5862
-  # what "hidden" libraries, object files and flags are used when
 
5863
-  # linking a shared library.
 
5864
-  output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
 
5865
+if test "$GCC" = yes; then
 
5866
+  _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
 
5867
 
 
5868
-else
 
5869
-  GXX=no
 
5870
-  with_gnu_ld=no
 
5871
-  wlarc=
 
5872
+  _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
 
5873
+    lt_cv_prog_compiler_rtti_exceptions,
 
5874
+    [-fno-rtti -fno-exceptions], [],
 
5875
+    [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
 
5876
 fi
 
5877
+_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1],
 
5878
+       [Compiler flag to turn off builtin functions])
 
5879
+])# _LT_COMPILER_NO_RTTI
 
5880
 
 
5881
-# PORTME: fill in a description of your system's C++ link characteristics
 
5882
-AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
 
5883
-_LT_AC_TAGVAR(ld_shlibs, $1)=yes
 
5884
-case $host_os in
 
5885
-  aix3*)
 
5886
-    # FIXME: insert proper C++ library support
 
5887
-    _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
5888
-    ;;
 
5889
-  aix[[4-9]]*)
 
5890
-    if test "$host_cpu" = ia64; then
 
5891
-      # On IA64, the linker does run time linking by default, so we don't
 
5892
-      # have to do anything special.
 
5893
-      aix_use_runtimelinking=no
 
5894
-      exp_sym_flag='-Bexport'
 
5895
-      no_entry_flag=""
 
5896
-    else
 
5897
-      aix_use_runtimelinking=no
 
5898
 
 
5899
-      # Test if we are trying to use run time linking or normal
 
5900
-      # AIX style linking. If -brtl is somewhere in LDFLAGS, we
 
5901
-      # need to do runtime linking.
 
5902
-      case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
 
5903
-       for ld_flag in $LDFLAGS; do
 
5904
-         case $ld_flag in
 
5905
-         *-brtl*)
 
5906
-           aix_use_runtimelinking=yes
 
5907
-           break
 
5908
-           ;;
 
5909
-         esac
 
5910
-       done
 
5911
-       ;;
 
5912
-      esac
 
5913
+# _LT_CMD_GLOBAL_SYMBOLS
 
5914
+# ----------------------
 
5915
+m4_defun([_LT_CMD_GLOBAL_SYMBOLS],
 
5916
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
 
5917
+AC_REQUIRE([AC_PROG_CC])dnl
 
5918
+AC_REQUIRE([LT_PATH_NM])dnl
 
5919
+AC_REQUIRE([LT_PATH_LD])dnl
 
5920
+m4_require([_LT_DECL_SED])dnl
 
5921
+m4_require([_LT_DECL_EGREP])dnl
 
5922
+m4_require([_LT_TAG_COMPILER])dnl
 
5923
 
 
5924
-      exp_sym_flag='-bexport'
 
5925
-      no_entry_flag='-bnoentry'
 
5926
-    fi
 
5927
+# Check for command to grab the raw symbol name followed by C symbol from nm.
 
5928
+AC_MSG_CHECKING([command to parse $NM output from $compiler object])
 
5929
+AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
 
5930
+[
 
5931
+# These are sane defaults that work on at least a few old systems.
 
5932
+# [They come from Ultrix.  What could be older than Ultrix?!! ;)]
 
5933
 
 
5934
-    # When large executables or shared objects are built, AIX ld can
 
5935
-    # have problems creating the table of contents.  If linking a library
 
5936
-    # or program results in "error TOC overflow" add -mminimal-toc to
 
5937
-    # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
 
5938
-    # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
 
5939
-
 
5940
-    _LT_AC_TAGVAR(archive_cmds, $1)=''
 
5941
-    _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
5942
-    _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
 
5943
-    _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
 
5944
+# Character class describing NM global symbol codes.
 
5945
+symcode='[[BCDEGRST]]'
 
5946
 
 
5947
-    if test "$GXX" = yes; then
 
5948
-      case $host_os in aix4.[[012]]|aix4.[[012]].*)
 
5949
-      # We only want to do this on AIX 4.2 and lower, the check
 
5950
-      # below for broken collect2 doesn't work under 4.3+
 
5951
-       collect2name=`${CC} -print-prog-name=collect2`
 
5952
-       if test -f "$collect2name" && \
 
5953
-          strings "$collect2name" | grep resolve_lib_name >/dev/null
 
5954
-       then
 
5955
-         # We have reworked collect2
 
5956
-         :
 
5957
-       else
 
5958
-         # We have old collect2
 
5959
-         _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
 
5960
-         # It fails to find uninstalled libraries when the uninstalled
 
5961
-         # path is not listed in the libpath.  Setting hardcode_minus_L
 
5962
-         # to unsupported forces relinking
 
5963
-         _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
 
5964
-         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
 
5965
-         _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
 
5966
-       fi
 
5967
-       ;;
 
5968
-      esac
 
5969
-      shared_flag='-shared'
 
5970
-      if test "$aix_use_runtimelinking" = yes; then
 
5971
-       shared_flag="$shared_flag "'${wl}-G'
 
5972
-      fi
 
5973
-    else
 
5974
-      # not using gcc
 
5975
-      if test "$host_cpu" = ia64; then
 
5976
-       # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
 
5977
-       # chokes on -Wl,-G. The following line is correct:
 
5978
-       shared_flag='-G'
 
5979
-      else
 
5980
-       if test "$aix_use_runtimelinking" = yes; then
 
5981
-         shared_flag='${wl}-G'
 
5982
-       else
 
5983
-         shared_flag='${wl}-bM:SRE'
 
5984
-       fi
 
5985
-      fi
 
5986
-    fi
 
5987
+# Regexp to match symbols that can be accessed directly from C.
 
5988
+sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
 
5989
 
 
5990
-    # It seems that -bexpall does not export symbols beginning with
 
5991
-    # underscore (_), so it is better to generate a list of symbols to export.
 
5992
-    _LT_AC_TAGVAR(always_export_symbols, $1)=yes
 
5993
-    if test "$aix_use_runtimelinking" = yes; then
 
5994
-      # Warning - without using the other runtime loading flags (-brtl),
 
5995
-      # -berok will link without error, but may produce a broken library.
 
5996
-      _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
 
5997
-      # Determine the default libpath from the value encoded in an empty executable.
 
5998
-      _LT_AC_SYS_LIBPATH_AIX
 
5999
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
 
6000
+# Define system-specific variables.
 
6001
+case $host_os in
 
6002
+aix*)
 
6003
+  symcode='[[BCDT]]'
 
6004
+  ;;
 
6005
+cygwin* | mingw* | pw32*)
 
6006
+  symcode='[[ABCDGISTW]]'
 
6007
+  ;;
4445
6008
+hpux*)
4446
6009
+  if test "$host_cpu" = ia64; then
4447
6010
+    symcode='[[ABCDEGRST]]'
4448
 
   fi
4449
 
-
4450
 
-  # Commands to make compiler produce verbose output that lists
4451
 
-  # what "hidden" libraries, object files and flags are used when
4452
 
-  # linking a shared library.
4453
 
-  output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
4454
 
-
4455
 
-else
4456
 
-  GXX=no
4457
 
-  with_gnu_ld=no
4458
 
-  wlarc=
4459
 
-fi
4460
 
-
4461
 
-# PORTME: fill in a description of your system's C++ link characteristics
4462
 
-AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
4463
 
-_LT_AC_TAGVAR(ld_shlibs, $1)=yes
4464
 
-case $host_os in
4465
 
-  aix3*)
4466
 
-    # FIXME: insert proper C++ library support
4467
 
-    _LT_AC_TAGVAR(ld_shlibs, $1)=no
4468
 
     ;;
4469
 
-  aix4* | aix5*)
4470
 
-    if test "$host_cpu" = ia64; then
4471
 
-      # On IA64, the linker does run time linking by default, so we don't
4472
 
-      # have to do anything special.
4473
 
-      aix_use_runtimelinking=no
4474
 
-      exp_sym_flag='-Bexport'
4475
 
-      no_entry_flag=""
4476
 
-    else
4477
 
-      aix_use_runtimelinking=no
4478
 
-
4479
 
-      # Test if we are trying to use run time linking or normal
4480
 
-      # AIX style linking. If -brtl is somewhere in LDFLAGS, we
4481
 
-      # need to do runtime linking.
4482
 
-      case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*)
4483
 
-       for ld_flag in $LDFLAGS; do
4484
 
-         case $ld_flag in
4485
 
-         *-brtl*)
4486
 
-           aix_use_runtimelinking=yes
4487
 
-           break
 
6011
+  fi
 
6012
+  ;;
4488
6013
+irix* | nonstopux*)
4489
6014
+  symcode='[[BCDEGRST]]'
4490
 
            ;;
4491
 
-         esac
4492
 
-       done
 
6015
+  ;;
4493
6016
+osf*)
4494
6017
+  symcode='[[BCDEGQRST]]'
4495
6018
+  ;;
4509
6032
+  symcode='[[DFNSTU]]'
4510
6033
+  ;;
4511
6034
+esac
4512
 
+
 
6035
 
 
6036
-      _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
 
6037
-     else
 
6038
-      if test "$host_cpu" = ia64; then
 
6039
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
 
6040
-       _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
 
6041
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
 
6042
-      else
 
6043
-       # Determine the default libpath from the value encoded in an empty executable.
 
6044
-       _LT_AC_SYS_LIBPATH_AIX
 
6045
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
 
6046
-       # Warning - without using the other run time loading flags,
 
6047
-       # -berok will link without error, but may produce a broken library.
 
6048
-       _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
 
6049
-       _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
 
6050
-       # Exported symbols can be pulled into shared objects from archives
 
6051
-       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
 
6052
-       _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
 
6053
-       # This is similar to how AIX traditionally builds its shared libraries.
 
6054
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
 
6055
-      fi
 
6056
-    fi
 
6057
-    ;;
4513
6058
+# If we're using GNU nm, then use its standard symbol codes.
4514
6059
+case `$NM -V 2>&1` in
4515
6060
+*GNU* | *'with BFD'*)
4516
6061
+  symcode='[[ABCDGIRSTW]]' ;;
4517
6062
+esac
4518
 
+
 
6063
 
 
6064
-  beos*)
 
6065
-    if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
6066
-      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
 
6067
-      # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
 
6068
-      # support --undefined.  This deserves some investigation.  FIXME
 
6069
-      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
6070
-    else
 
6071
-      _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6072
-    fi
 
6073
-    ;;
4519
6074
+# Transform an extracted symbol line into a proper C declaration.
4520
6075
+# Some systems (esp. on ia64) link data and code symbols differently,
4521
6076
+# so use this general approach.
4522
6077
+lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
4523
 
+
 
6078
 
 
6079
-  chorus*)
 
6080
-    case $cc_basename in
 
6081
-      *)
 
6082
-       # FIXME: insert proper C++ library support
 
6083
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6084
-       ;;
 
6085
-    esac
 
6086
-    ;;
4524
6087
+# Transform an extracted symbol line into symbol name and symbol address
4525
6088
+lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/  {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"\2\", (void *) \&\2},/p'"
4526
6089
+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\) $/  {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/  {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"lib\2\", (void *) \&\2},/p'"
4527
 
+
 
6090
 
 
6091
-  cygwin* | mingw* | pw32*)
 
6092
-    # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
 
6093
-    # as there is no search path for DLLs.
 
6094
-    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
 
6095
-    _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
 
6096
-    _LT_AC_TAGVAR(always_export_symbols, $1)=no
 
6097
-    _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
 
6098
-
 
6099
-    if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
 
6100
-      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
 
6101
-      # If the export-symbols file already is a .def file (1st line
 
6102
-      # is EXPORTS), use it as is; otherwise, prepend...
 
6103
-      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
 
6104
-       cp $export_symbols $output_objdir/$soname.def;
 
6105
-      else
 
6106
-       echo EXPORTS > $output_objdir/$soname.def;
 
6107
-       cat $export_symbols >> $output_objdir/$soname.def;
 
6108
-      fi~
 
6109
-      $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
 
6110
-    else
 
6111
-      _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6112
-    fi
4528
6113
+# Handle CRLF in mingw tool chain
4529
6114
+opt_cr=
4530
6115
+case $build_os in
4531
6116
+mingw*)
4532
6117
+  opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp
4533
 
        ;;
 
6118
   ;;
 
6119
-      darwin* | rhapsody*)
 
6120
-      _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
 
6121
-      _LT_AC_TAGVAR(hardcode_direct, $1)=no
 
6122
-      _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
 
6123
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
 
6124
-      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=''
 
6125
-      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
 
6126
-      _LT_AC_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined"
 
6127
-      if test "$GXX" = yes ; then
 
6128
-      output_verbose_link_cmd='echo'
 
6129
-      _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
 
6130
-      _LT_AC_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
 
6131
-      _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
 
6132
-      _LT_AC_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
 
6133
-      if test "$lt_cv_apple_cc_single_mod" != "yes"; then
 
6134
-        _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}"
 
6135
-        _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}"
 
6136
-      fi
 
6137
-      else
 
6138
-      case $cc_basename in
 
6139
-        xlc*)
 
6140
-         output_verbose_link_cmd='echo'
 
6141
-          _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring'
 
6142
-          _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
 
6143
-          # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
 
6144
-          _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
 
6145
-          _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag  -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
 
6146
-          ;;
 
6147
-       *)
 
6148
-         _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6149
-          ;;
4534
6150
-      esac
 
6151
-      fi
 
6152
-        ;;
4535
6153
+esac
4536
6154
 
4537
 
-      exp_sym_flag='-bexport'
4538
 
-      no_entry_flag='-bnoentry'
 
6155
-  dgux*)
 
6156
-    case $cc_basename in
 
6157
-      ec++*)
 
6158
-       # FIXME: insert proper C++ library support
 
6159
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6160
-       ;;
 
6161
-      ghcx*)
 
6162
-       # Green Hills C++ Compiler
 
6163
-       # FIXME: insert proper C++ library support
 
6164
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6165
-       ;;
 
6166
-      *)
 
6167
-       # FIXME: insert proper C++ library support
 
6168
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6169
-       ;;
 
6170
-    esac
 
6171
-    ;;
 
6172
-  freebsd[[12]]*)
 
6173
-    # C++ shared libraries reported to be fairly broken before switch to ELF
 
6174
-    _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6175
-    ;;
 
6176
-  freebsd-elf*)
 
6177
-    _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
 
6178
-    ;;
 
6179
-  freebsd* | dragonfly*)
 
6180
-    # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
 
6181
-    # conventions
 
6182
-    _LT_AC_TAGVAR(ld_shlibs, $1)=yes
 
6183
-    ;;
 
6184
-  gnu*)
 
6185
-    ;;
 
6186
-  hpux9*)
 
6187
-    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
 
6188
-    _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
 
6189
-    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
 
6190
-    _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
6191
-    _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
 
6192
-                               # but as the default
 
6193
-                               # location of the library.
 
6194
-
 
6195
-    case $cc_basename in
 
6196
-    CC*)
 
6197
-      # FIXME: insert proper C++ library support
 
6198
-      _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6199
-      ;;
 
6200
-    aCC*)
 
6201
-      _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
 
6202
-      # Commands to make compiler produce verbose output that lists
 
6203
-      # what "hidden" libraries, object files and flags are used when
 
6204
-      # linking a shared library.
 
6205
-      #
 
6206
-      # There doesn't appear to be a way to prevent this compiler from
 
6207
-      # explicitly linking system object files so we need to strip them
 
6208
-      # from the output so that they don't get included in the library
 
6209
-      # dependencies.
 
6210
-      output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
 
6211
-      ;;
 
6212
-    *)
 
6213
-      if test "$GXX" = yes; then
 
6214
-        _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
4539
6215
+# Try without a prefix underscore, then with it.
4540
6216
+for ac_symprfx in "" "_"; do
4541
6217
+
4561
6237
+"     ' prfx=^$ac_symprfx]"
4562
6238
+  else
4563
6239
+    lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[    ]]\($symcode$symcode*\)[[       ]][[    ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
4564
 
     fi
4565
 
 
4566
 
-    # When large executables or shared objects are built, AIX ld can
4567
 
-    # have problems creating the table of contents.  If linking a library
4568
 
-    # or program results in "error TOC overflow" add -mminimal-toc to
4569
 
-    # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
4570
 
-    # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
 
6240
+  fi
 
6241
+
4571
6242
+  # Check to see that the pipe works correctly.
4572
6243
+  pipe_works=no
4573
 
 
4574
 
-    _LT_AC_TAGVAR(archive_cmds, $1)=''
4575
 
-    _LT_AC_TAGVAR(hardcode_direct, $1)=yes
4576
 
-    _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
4577
 
-    _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
 
6244
+
4578
6245
+  rm -f conftest*
4579
6246
+  cat > conftest.$ac_ext <<_LT_EOF
4580
6247
+#ifdef __cplusplus
4588
6255
+#endif
4589
6256
+int main(){nm_test_var='a';nm_test_func();return(0);}
4590
6257
+_LT_EOF
4591
 
 
4592
 
-    if test "$GXX" = yes; then
4593
 
-      case $host_os in aix4.[[012]]|aix4.[[012]].*)
4594
 
-      # We only want to do this on AIX 4.2 and lower, the check
4595
 
-      # below for broken collect2 doesn't work under 4.3+
4596
 
-       collect2name=`${CC} -print-prog-name=collect2`
4597
 
-       if test -f "$collect2name" && \
4598
 
-          strings "$collect2name" | grep resolve_lib_name >/dev/null
4599
 
-       then
4600
 
-         # We have reworked collect2
4601
 
-         :
 
6258
+
4602
6259
+  if AC_TRY_EVAL(ac_compile); then
4603
6260
+    # Now try to grab the symbols.
4604
6261
+    nlist=conftest.nm
4606
6263
+      # Try sorting and uniquifying the output.
4607
6264
+      if sort "$nlist" | uniq > "$nlist"T; then
4608
6265
+       mv -f "$nlist"T "$nlist"
4609
 
        else
4610
 
-         # We have old collect2
4611
 
-         _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
4612
 
-         # It fails to find uninstalled libraries when the uninstalled
4613
 
-         # path is not listed in the libpath.  Setting hardcode_minus_L
4614
 
-         # to unsupported forces relinking
4615
 
-         _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
4616
 
-         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
4617
 
-         _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
 
6266
       else
 
6267
-        # FIXME: insert proper C++ library support
 
6268
-        _LT_AC_TAGVAR(ld_shlibs, $1)=no
4618
6269
+       rm -f "$nlist"T
4619
 
        fi
4620
 
-       ;;
4621
 
-      esac
4622
 
-      shared_flag='-shared'
4623
 
-      if test "$aix_use_runtimelinking" = yes; then
4624
 
-       shared_flag="$shared_flag "'${wl}-G'
 
6270
+      fi
4625
6271
+
4626
6272
+      # Make sure that we snagged all the symbols we need.
4627
6273
+      if $GREP ' nm_test_var$' "$nlist" >/dev/null; then
4670
6316
+         CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
4671
6317
+         if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
4672
6318
+           pipe_works=yes
4673
 
       fi
 
6319
+         fi
4674
6320
+         LIBS="$lt_save_LIBS"
4675
6321
+         CFLAGS="$lt_save_CFLAGS"
4676
 
     else
4677
 
-      # not using gcc
4678
 
-      if test "$host_cpu" = ia64; then
4679
 
-       # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
4680
 
-       # chokes on -Wl,-G. The following line is correct:
4681
 
-       shared_flag='-G'
4682
 
-      else
4683
 
-       if test "$aix_use_runtimelinking" = yes; then
4684
 
-         shared_flag='${wl}-G'
4685
 
-       else
4686
 
-         shared_flag='${wl}-bM:SRE'
4687
 
-       fi
 
6322
+       else
4688
6323
+         echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
4689
 
       fi
 
6324
+       fi
4690
6325
+      else
4691
6326
+       echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
4692
 
     fi
4693
 
-
4694
 
-    # It seems that -bexpall does not export symbols beginning with
4695
 
-    # underscore (_), so it is better to generate a list of symbols to export.
4696
 
-    _LT_AC_TAGVAR(always_export_symbols, $1)=yes
4697
 
-    if test "$aix_use_runtimelinking" = yes; then
4698
 
-      # Warning - without using the other runtime loading flags (-brtl),
4699
 
-      # -berok will link without error, but may produce a broken library.
4700
 
-      _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
4701
 
-      # Determine the default libpath from the value encoded in an empty executable.
4702
 
-      _LT_AC_SYS_LIBPATH_AIX
4703
 
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
4704
 
-
4705
 
-      _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
4706
 
      else
4707
 
-      if test "$host_cpu" = ia64; then
4708
 
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
4709
 
-       _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
4710
 
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
4711
 
-      else
4712
 
-       # Determine the default libpath from the value encoded in an empty executable.
4713
 
-       _LT_AC_SYS_LIBPATH_AIX
4714
 
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
4715
 
-       # Warning - without using the other run time loading flags,
4716
 
-       # -berok will link without error, but may produce a broken library.
4717
 
-       _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
4718
 
-       _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
4719
 
-       # Exported symbols can be pulled into shared objects from archives
4720
 
-       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
4721
 
-       _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
4722
 
-       # This is similar to how AIX traditionally builds its shared libraries.
4723
 
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
 
6327
+      fi
 
6328
+    else
4724
6329
+      echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
4725
 
       fi
 
6330
+    fi
4726
6331
+  else
4727
6332
+    echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
4728
6333
+    cat conftest.$ac_ext >&5
4729
 
     fi
4730
 
-    ;;
 
6334
+  fi
4731
6335
+  rm -rf conftest* conftst*
4732
 
 
4733
 
-  beos*)
4734
 
-    if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
4735
 
-      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
4736
 
-      # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
4737
 
-      # support --undefined.  This deserves some investigation.  FIXME
4738
 
-      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
6336
+
4739
6337
+  # Do not use the global_symbol_pipe unless it works.
4740
6338
+  if test "$pipe_works" = yes; then
4741
6339
+    break
4742
 
     else
4743
 
-      _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6340
+  else
4744
6341
+    lt_cv_sys_global_symbol_pipe=
4745
 
     fi
4746
 
-    ;;
 
6342
+  fi
4747
6343
+done
4748
6344
+])
4749
6345
+if test -z "$lt_cv_sys_global_symbol_pipe"; then
4754
6350
+else
4755
6351
+  AC_MSG_RESULT(ok)
4756
6352
+fi
4757
 
 
4758
 
-  chorus*)
4759
 
-    case $cc_basename in
4760
 
-      *)
4761
 
-       # FIXME: insert proper C++ library support
4762
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
4763
 
-       ;;
4764
 
-    esac
4765
 
-    ;;
 
6353
+
4766
6354
+_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1],
4767
6355
+    [Take the output of nm and produce a listing of raw symbols and C names])
4768
6356
+_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1],
4774
6362
+    [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1],
4775
6363
+    [Transform the output of nm in a C name address pair when lib prefix is needed])
4776
6364
+]) # _LT_CMD_GLOBAL_SYMBOLS
4777
 
 
4778
 
-  cygwin* | mingw* | pw32*)
4779
 
-    # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
4780
 
-    # as there is no search path for DLLs.
4781
 
-    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
4782
 
-    _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
4783
 
-    _LT_AC_TAGVAR(always_export_symbols, $1)=no
4784
 
-    _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
4785
 
 
4786
 
-    if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
4787
 
-      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
4788
 
-      # If the export-symbols file already is a .def file (1st line
4789
 
-      # is EXPORTS), use it as is; otherwise, prepend...
4790
 
-      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
4791
 
-       cp $export_symbols $output_objdir/$soname.def;
4792
 
-      else
4793
 
-       echo EXPORTS > $output_objdir/$soname.def;
4794
 
-       cat $export_symbols >> $output_objdir/$soname.def;
4795
 
-      fi~
4796
 
-      $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
4797
 
-    else
4798
 
-      _LT_AC_TAGVAR(ld_shlibs, $1)=no
4799
 
-    fi
4800
 
-  ;;
4801
 
-      darwin* | rhapsody*)
 
6365
+
 
6366
+
4802
6367
+# _LT_COMPILER_PIC([TAGNAME])
4803
6368
+# ---------------------------
4804
6369
+m4_defun([_LT_COMPILER_PIC],
4814
6379
+    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4815
6380
+    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
4816
6381
+
4817
 
         case $host_os in
4818
 
-        rhapsody* | darwin1.[[012]])
4819
 
-         _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress'
4820
 
-         ;;
4821
 
-       *) # Darwin 1.3 on
4822
 
-         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
4823
 
-           _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
4824
 
-         else
4825
 
-           case ${MACOSX_DEPLOYMENT_TARGET} in
4826
 
-             10.[[012]])
4827
 
-               _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
4828
 
-               ;;
4829
 
-             10.*)
4830
 
-               _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup'
4831
 
-               ;;
4832
 
-           esac
 
6382
+    case $host_os in
4833
6383
+    aix*)
4834
6384
+      # All AIX code is PIC.
4835
6385
+      if test "$host_cpu" = ia64; then
4836
6386
+       # AIX 5 now supports IA64 processor
4837
6387
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4838
 
          fi
4839
 
          ;;
4840
 
-        esac
4841
 
-      _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
4842
 
-      _LT_AC_TAGVAR(hardcode_direct, $1)=no
4843
 
-      _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
4844
 
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
4845
 
-      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=''
4846
 
-      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
 
6388
       fi
 
6389
       ;;
 
6390
-    esac
 
6391
-    ;;
 
6392
-  hpux10*|hpux11*)
 
6393
-    if test $with_gnu_ld = no; then
 
6394
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
 
6395
-      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
4847
6396
 
4848
 
-    if test "$GXX" = yes ; then
4849
 
-      lt_int_apple_cc_single_mod=no
4850
 
-      output_verbose_link_cmd='echo'
4851
 
-      if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then
4852
 
-       lt_int_apple_cc_single_mod=yes
4853
 
-      fi
4854
 
-      if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
4855
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
4856
 
-      else
4857
 
-          _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
4858
 
-        fi
4859
 
-        _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
4860
 
-        # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
4861
 
-          if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
4862
 
-            _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
4863
 
-          else
4864
 
-            _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
4865
 
-          fi
4866
 
-            _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag  -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
4867
 
-      else
4868
 
-      case $cc_basename in
4869
 
-        xlc*)
4870
 
-         output_verbose_link_cmd='echo'
4871
 
-          _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring'
4872
 
-          _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
4873
 
-          # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
4874
 
-          _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
4875
 
-          _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag  -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
4876
6397
+    amigaos*)
4877
 
+      case $host_cpu in
 
6398
       case $host_cpu in
 
6399
-      hppa*64*|ia64*) ;;
 
6400
-      *)
 
6401
-       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
4878
6402
+      powerpc)
4879
6403
+            # see comment about AmigaOS4 .so support
4880
6404
+            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4881
 
           ;;
4882
 
-       *)
4883
 
-         _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6405
+        ;;
4884
6406
+      m68k)
4885
6407
+            # FIXME: we need at least 68020 code to build shared libraries, but
4886
6408
+            # adding the `-m68020' flag to GCC prevents building anything better,
4887
6409
+            # like `-m68040'.
4888
6410
+            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
4889
 
           ;;
 
6411
         ;;
4890
6412
       esac
4891
 
-      fi
4892
 
         ;;
4893
 
 
4894
 
-  dgux*)
4895
 
-    case $cc_basename in
4896
 
-      ec++*)
4897
 
-       # FIXME: insert proper C++ library support
4898
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
4899
 
-       ;;
4900
 
-      ghcx*)
4901
 
-       # Green Hills C++ Compiler
4902
 
-       # FIXME: insert proper C++ library support
4903
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
4904
 
-       ;;
4905
 
-      *)
4906
 
-       # FIXME: insert proper C++ library support
4907
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
4908
 
-       ;;
4909
 
-    esac
 
6413
-    fi
 
6414
-    case $host_cpu in
 
6415
-    hppa*64*|ia64*)
 
6416
-      _LT_AC_TAGVAR(hardcode_direct, $1)=no
 
6417
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
6418
+      ;;
 
6419
+
4910
6420
+    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
4911
6421
+      # PIC is the default for these OSes.
4912
 
     ;;
4913
 
-  freebsd[[12]]*)
4914
 
-    # C++ shared libraries reported to be fairly broken before switch to ELF
4915
 
-    _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6422
+      ;;
4916
6423
+    mingw* | cygwin* | os2* | pw32*)
4917
6424
+      # This hack is so that the source file can tell whether it is being
4918
6425
+      # built for inclusion in a dll (and should export symbols for example).
4920
6427
+      # (--disable-auto-import) libraries
4921
6428
+      m4_if([$1], [GCJ], [],
4922
6429
+       [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
4923
 
     ;;
4924
 
-  freebsd-elf*)
4925
 
-    _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
 
6430
+      ;;
4926
6431
+    darwin* | rhapsody*)
4927
6432
+      # PIC is the default on this platform
4928
6433
+      # Common symbols not allowed in MH_DYLIB files
4929
6434
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
4930
 
     ;;
4931
 
-  freebsd* | dragonfly*)
4932
 
-    # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
4933
 
-    # conventions
4934
 
-    _LT_AC_TAGVAR(ld_shlibs, $1)=yes
 
6435
+      ;;
4935
6436
+    *djgpp*)
4936
6437
+      # DJGPP does not support shared libraries at all
4937
6438
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)=
4938
 
     ;;
4939
 
-  gnu*)
 
6439
+      ;;
4940
6440
+    interix[[3-9]]*)
4941
6441
+      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
4942
6442
+      # Instead, we relocate shared libraries at runtime.
4943
 
     ;;
4944
 
-  hpux9*)
4945
 
-    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
4946
 
-    _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
4947
 
-    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
4948
 
-    _LT_AC_TAGVAR(hardcode_direct, $1)=yes
4949
 
-    _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
4950
 
-                               # but as the default
4951
 
-                               # location of the library.
4952
 
-
4953
 
-    case $cc_basename in
4954
 
-    CC*)
4955
 
-      # FIXME: insert proper C++ library support
4956
 
-      _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6443
+      ;;
4957
6444
+    sysv4*MP*)
4958
6445
+      if test -d /usr/nec; then
4959
6446
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
4960
6447
+      fi
4961
 
       ;;
4962
 
-    aCC*)
4963
 
-      _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
4964
 
-      # Commands to make compiler produce verbose output that lists
4965
 
-      # what "hidden" libraries, object files and flags are used when
4966
 
-      # linking a shared library.
4967
 
-      #
4968
 
-      # There doesn't appear to be a way to prevent this compiler from
4969
 
-      # explicitly linking system object files so we need to strip them
4970
 
-      # from the output so that they don't get included in the library
4971
 
-      # dependencies.
4972
 
-      output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
 
6448
+      ;;
4973
6449
+    hpux*)
4974
6450
+      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
4975
6451
+      # not for PA HP-UX.
4976
6452
+      case $host_cpu in
4977
6453
+      hppa*64*|ia64*)
4978
 
       ;;
4979
 
     *)
4980
 
-      if test "$GXX" = yes; then
4981
 
-        _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
4982
 
-      else
4983
 
-        # FIXME: insert proper C++ library support
4984
 
-        _LT_AC_TAGVAR(ld_shlibs, $1)=no
4985
 
-      fi
 
6454
+       ;;
 
6455
+      *)
4986
6456
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4987
 
       ;;
4988
 
     esac
4989
 
     ;;
4990
 
-  hpux10*|hpux11*)
4991
 
-    if test $with_gnu_ld = no; then
4992
 
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
4993
 
-      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
4994
 
-
4995
 
-      case $host_cpu in
4996
 
-      hppa*64*|ia64*) ;;
 
6457
+       ;;
 
6458
+      esac
 
6459
+      ;;
4997
6460
+    *qnx* | *nto*)
4998
6461
+      # QNX uses GNU C++, but need to define -shared option too, otherwise
4999
6462
+      # it will coredump.
5000
6463
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
5001
 
+      ;;
5002
 
       *)
5003
 
-       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
 
6464
       ;;
 
6465
     *)
 
6466
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
6467
-      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
 
6468
-                                             # but as the default
 
6469
-                                             # location of the library.
5004
6470
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
5005
 
         ;;
5006
 
       esac
 
6471
       ;;
 
6472
     esac
 
6473
-
 
6474
-    case $cc_basename in
 
6475
-      CC*)
 
6476
-       # FIXME: insert proper C++ library support
 
6477
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
5007
6478
+  else
5008
6479
+    case $host_os in
5009
6480
+      aix[[4-9]]*)
5013
6484
+         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5014
6485
+       else
5015
6486
+         _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
5016
 
     fi
5017
 
-    case $host_cpu in
5018
 
-    hppa*64*|ia64*)
5019
 
-      _LT_AC_TAGVAR(hardcode_direct, $1)=no
5020
 
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5021
 
       ;;
5022
 
-    *)
5023
 
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5024
 
-      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
5025
 
-                                             # but as the default
5026
 
-                                             # location of the library.
5027
 
+      chorus*)
5028
 
+       case $cc_basename in
5029
 
+       cxch68*)
5030
 
+         # Green Hills C++ Compiler
5031
 
+         # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a"
5032
 
       ;;
5033
 
     esac
5034
 
-
5035
 
-    case $cc_basename in
5036
 
-      CC*)
5037
 
-       # FIXME: insert proper C++ library support
5038
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6487
+       fi
5039
6488
        ;;
5040
6489
-      aCC*)
5041
6490
-       case $host_cpu in
5042
6491
-       hppa*64*)
5043
6492
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
5044
 
+      dgux*)
5045
 
+       case $cc_basename in
5046
 
+         ec++*)
5047
 
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5048
 
          ;;
 
6493
-         ;;
5049
6494
-       ia64*)
5050
6495
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
5051
 
+         ghcx*)
5052
 
+           # Green Hills C++ Compiler
5053
 
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
5054
 
          ;;
5055
 
        *)
 
6496
-         ;;
 
6497
-       *)
5056
6498
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
 
6499
+      chorus*)
 
6500
+       case $cc_basename in
 
6501
+       cxch68*)
 
6502
+         # Green Hills C++ Compiler
 
6503
+         # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a"
5057
6504
          ;;
5058
6505
        esac
5059
6506
-       # Commands to make compiler produce verbose output that lists
5069
6516
-      *)
5070
6517
-       if test "$GXX" = yes; then
5071
6518
-         if test $with_gnu_ld = no; then
5072
 
-           case $host_cpu in
 
6519
+      dgux*)
 
6520
+       case $cc_basename in
 
6521
+         ec++*)
 
6522
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
6523
+           ;;
 
6524
+         ghcx*)
 
6525
+           # Green Hills C++ Compiler
 
6526
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
 
6527
+           ;;
 
6528
+         *)
 
6529
+           ;;
 
6530
+       esac
 
6531
+       ;;
 
6532
+      freebsd* | dragonfly*)
 
6533
+       # FreeBSD uses GNU C++
 
6534
+       ;;
 
6535
+      hpux9* | hpux10* | hpux11*)
 
6536
+       case $cc_basename in
 
6537
+         CC*)
 
6538
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
6539
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
 
6540
+           if test "$host_cpu" != ia64; then
 
6541
+             _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
 
6542
+           fi
 
6543
+           ;;
 
6544
+         aCC*)
 
6545
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
6546
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
 
6547
            case $host_cpu in
5073
6548
-           hppa*64*)
5074
6549
-             _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
5075
 
+      freebsd* | dragonfly*)
5076
 
+       # FreeBSD uses GNU C++
5077
 
              ;;
 
6550
-             ;;
5078
6551
-           ia64*)
5079
6552
-             _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
5080
 
+      hpux9* | hpux10* | hpux11*)
5081
 
+       case $cc_basename in
5082
 
+         CC*)
5083
 
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5084
 
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
5085
 
+           if test "$host_cpu" != ia64; then
5086
 
+             _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
5087
 
+           fi
5088
 
+           ;;
5089
 
+         aCC*)
5090
 
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5091
 
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
5092
 
+           case $host_cpu in
5093
6553
+           hppa*64*|ia64*)
5094
6554
+             # +Z the default
5095
6555
              ;;
5103
6563
-         # FIXME: insert proper C++ library support
5104
6564
-         _LT_AC_TAGVAR(ld_shlibs, $1)=no
5105
6565
-       fi
5106
 
+           ;;
5107
 
+         *)
5108
 
        ;;
5109
 
     esac
5110
 
     ;;
 
6566
-       ;;
 
6567
-    esac
 
6568
-    ;;
5111
6569
-  interix[[3-9]]*)
5112
6570
-    _LT_AC_TAGVAR(hardcode_direct, $1)=no
5113
6571
-    _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5121
6579
-    # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
5122
6580
-    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
5123
6581
-    _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
5124
 
+      interix*)
5125
 
+       # This is c89, which is MS Visual C++ (no shared libs)
5126
 
+       # Anyone wants to do a port?
5127
 
     ;;
 
6582
-    ;;
5128
6583
-  irix5* | irix6*)
5129
 
+      irix5* | irix6* | nonstopux*)
5130
 
     case $cc_basename in
5131
 
       CC*)
 
6584
-    case $cc_basename in
 
6585
-      CC*)
5132
6586
-       # SGI C++
5133
6587
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
5134
6588
-
5137
6591
-       # necessary to make sure instantiated templates are included
5138
6592
-       # in the archive.
5139
6593
-       _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
5140
 
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5141
 
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
5142
 
+           # CC pic flag -KPIC is the default.
5143
 
        ;;
5144
 
       *)
 
6594
-       ;;
 
6595
-      *)
5145
6596
-       if test "$GXX" = yes; then
5146
6597
-         if test "$with_gnu_ld" = no; then
5147
6598
-           _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
5150
6601
-         fi
5151
6602
-       fi
5152
6603
-       _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5153
 
        ;;
5154
 
     esac
 
6604
-       ;;
 
6605
-    esac
5155
6606
-    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5156
6607
-    _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5157
 
     ;;
5158
 
   linux* | k*bsd*-gnu)
5159
 
     case $cc_basename in
5160
 
       KCC*)
 
6608
-    ;;
 
6609
-  linux* | k*bsd*-gnu)
 
6610
-    case $cc_basename in
 
6611
-      KCC*)
5161
6612
-       # Kuck and Associates, Inc. (KAI) C++ Compiler
5162
6613
-
5163
6614
-       # KCC will only create a shared library if the output file
5181
6632
-       # Archives containing C++ object files must be created using
5182
6633
-       # "CC -Bstatic", where "CC" is the KAI C++ compiler.
5183
6634
-       _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
5184
 
+           # KAI C++ Compiler
5185
 
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
5186
 
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
5187
 
        ;;
 
6635
-       ;;
5188
6636
-      icpc*)
5189
 
+         icpc* | ecpc* )
5190
 
        # Intel C++
 
6637
-       # Intel C++
5191
6638
-       with_gnu_ld=yes
5192
6639
-       # version 8.0 and above of icpc choke on multiply defined symbols
5193
6640
-       # if we add $predep_objects and $postdep_objects, however 7.1 and
5204
6651
-         esac
5205
6652
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5206
6653
-         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
5207
 
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5208
 
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5209
 
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
5210
 
          ;;
5211
 
-       esac
 
6654
-         ;;
 
6655
+           ;;
 
6656
+         *)
 
6657
+           ;;
 
6658
        esac
5212
6659
-       _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
5213
6660
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
5214
6661
-       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
5215
6662
-       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
5216
6663
-       ;;
5217
 
-      pgCC*)
5218
 
+         pgCC* | pgcpp*)
5219
 
         # Portland Group C++ compiler
 
6664
-      pgCC* | pgcpp*)
 
6665
-        # Portland Group C++ compiler
5220
6666
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
5221
6667
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
5222
6668
-
5223
6669
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
5224
6670
-       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
5225
6671
-       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
5226
 
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5227
 
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
5228
 
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5229
 
         ;;
5230
 
       cxx*)
5231
 
        # Compaq C++
 
6672
-        ;;
 
6673
-      cxx*)
 
6674
-       # Compaq C++
5232
6675
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
5233
6676
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname  -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
5234
6677
-
5245
6688
-       # from the output so that they don't get included in the library
5246
6689
-       # dependencies.
5247
6690
-       output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
5248
 
+           # Make sure the PIC flag is empty.  It appears that all Alpha
5249
 
+           # Linux and Compaq Tru64 Unix objects are PIC.
5250
 
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)=
5251
 
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
5252
 
+           ;;
5253
 
+         xlc* | xlC*)
5254
 
+           # IBM XL 8.0 on PPC
5255
 
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5256
 
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
5257
 
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
5258
6691
        ;;
5259
 
       *)
5260
 
        case `$CC -V 2>&1 | sed 5q` in
5261
 
        *Sun\ C*)
5262
 
          # Sun C++ 5.9
 
6692
-      *)
 
6693
-       case `$CC -V 2>&1 | sed 5q` in
 
6694
-       *Sun\ C*)
 
6695
-         # Sun C++ 5.9
5263
6696
-         _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs'
5264
6697
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
5265
6698
-         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols'
5277
6710
-         # in the archive.
5278
6711
-         _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
5279
6712
-         ;;
5280
 
-       esac
5281
 
-       ;;
 
6713
+      interix*)
 
6714
+       # This is c89, which is MS Visual C++ (no shared libs)
 
6715
+       # Anyone wants to do a port?
 
6716
+       ;;
 
6717
+      irix5* | irix6* | nonstopux*)
 
6718
+       case $cc_basename in
 
6719
+         CC*)
 
6720
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
6721
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
 
6722
+           # CC pic flag -KPIC is the default.
 
6723
+           ;;
 
6724
+         *)
 
6725
+           ;;
 
6726
        esac
 
6727
        ;;
5282
6728
-    esac
5283
6729
-    ;;
5284
6730
-  lynxos*)
5298
6744
-      *)
5299
6745
-       # FIXME: insert proper C++ library support
5300
6746
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6747
+      linux* | k*bsd*-gnu)
 
6748
+       case $cc_basename in
 
6749
+         KCC*)
 
6750
+           # KAI C++ Compiler
 
6751
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
 
6752
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
 
6753
+           ;;
 
6754
+         icpc* | ecpc* )
 
6755
+           # Intel C++
 
6756
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
6757
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
6758
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
 
6759
+           ;;
 
6760
+         pgCC* | pgcpp*)
 
6761
+           # Portland Group C++ compiler
 
6762
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
6763
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
 
6764
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
6765
+           ;;
 
6766
+         cxx*)
 
6767
+           # Compaq C++
 
6768
+           # Make sure the PIC flag is empty.  It appears that all Alpha
 
6769
+           # Linux and Compaq Tru64 Unix objects are PIC.
 
6770
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)=
 
6771
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
 
6772
+           ;;
 
6773
+         xlc* | xlC*)
 
6774
+           # IBM XL 8.0 on PPC
 
6775
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
6776
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
 
6777
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
 
6778
+           ;;
 
6779
+         *)
 
6780
+           case `$CC -V 2>&1 | sed 5q` in
 
6781
+           *Sun\ C*)
 
6782
+             # Sun C++ 5.9
5301
6783
+             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5302
6784
+             _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5303
6785
+             _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
 
6786
+             ;;
 
6787
+           esac
 
6788
+           ;;
 
6789
+       esac
5304
6790
        ;;
5305
 
     esac
5306
 
     ;;
 
6791
-    esac
 
6792
-    ;;
5307
6793
-  netbsd*)
5308
6794
-    if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
5309
6795
-      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
5374
6860
-       # from the output so that they don't get included in the library
5375
6861
-       # dependencies.
5376
6862
-       output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
5377
 
-       ;;
 
6863
+      lynxos*)
 
6864
        ;;
5378
6865
-      *)
5379
6866
-       if test "$GXX" = yes && test "$with_gnu_ld" = no; then
5380
6867
-         _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
5392
6879
-         # FIXME: insert proper C++ library support
5393
6880
-         _LT_AC_TAGVAR(ld_shlibs, $1)=no
5394
6881
-       fi
5395
 
-       ;;
5396
 
     esac
5397
 
     ;;
 
6882
+      m88k*)
 
6883
        ;;
 
6884
-    esac
 
6885
-    ;;
5398
6886
-  osf4* | osf5*)
5399
6887
-    case $cc_basename in
5400
6888
-      KCC*)
5437
6925
-       # from the output so that they don't get included in the library
5438
6926
-       # dependencies.
5439
6927
-       output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
5440
 
-       ;;
5441
 
+      lynxos*)
5442
 
+       ;;
5443
 
+      m88k*)
5444
 
+       ;;
5445
6928
+      mvs*)
5446
6929
+       case $cc_basename in
5447
6930
+         cxx*)
5448
6931
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
5449
6932
+           ;;
5450
 
       *)
 
6933
+         *)
 
6934
+           ;;
 
6935
+       esac
 
6936
        ;;
 
6937
-      *)
5451
6938
-       if test "$GXX" = yes && test "$with_gnu_ld" = no; then
5452
6939
-         _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
5453
6940
-        _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
5464
6951
-         # FIXME: insert proper C++ library support
5465
6952
-         _LT_AC_TAGVAR(ld_shlibs, $1)=no
5466
6953
-       fi
 
6954
+      netbsd* | netbsdelf*-gnu)
5467
6955
        ;;
5468
 
     esac
5469
 
     ;;
 
6956
-    esac
 
6957
-    ;;
5470
6958
-  psos*)
5471
6959
-    # FIXME: insert proper C++ library support
5472
6960
-    _LT_AC_TAGVAR(ld_shlibs, $1)=no
5473
 
+      netbsd* | netbsdelf*-gnu)
5474
 
     ;;
 
6961
-    ;;
5475
6962
-  sunos4*)
 
6963
-    case $cc_basename in
 
6964
-      CC*)
 
6965
-       # Sun C++ 4.x
 
6966
-       # FIXME: insert proper C++ library support
 
6967
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6968
-       ;;
 
6969
-      lcc*)
 
6970
-       # Lucid
 
6971
-       # FIXME: insert proper C++ library support
 
6972
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
5476
6973
+      *qnx* | *nto*)
5477
6974
+        # QNX uses GNU C++, but need to define -shared option too, otherwise
5478
6975
+        # it will coredump.
5479
6976
+        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
5480
6977
+        ;;
5481
6978
+      osf3* | osf4* | osf5*)
5482
 
     case $cc_basename in
5483
 
-      CC*)
5484
 
-       # Sun C++ 4.x
5485
 
-       # FIXME: insert proper C++ library support
5486
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6979
+       case $cc_basename in
5487
6980
+         KCC*)
5488
6981
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
5489
 
        ;;
5490
 
-      lcc*)
5491
 
-       # Lucid
5492
 
-       # FIXME: insert proper C++ library support
5493
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
6982
+           ;;
5494
6983
+         RCC*)
5495
6984
+           # Rational C++ 2.4.1
5496
6985
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
5502
6991
+           # Linux and Compaq Tru64 Unix objects are PIC.
5503
6992
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)=
5504
6993
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
 
6994
+           ;;
 
6995
+         *)
 
6996
+           ;;
 
6997
+       esac
5505
6998
        ;;
5506
 
       *)
 
6999
-      *)
5507
7000
-       # FIXME: insert proper C++ library support
5508
7001
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
5509
 
        ;;
5510
 
     esac
5511
 
     ;;
5512
7002
+      psos*)
5513
 
+       ;;
5514
 
   solaris*)
5515
 
     case $cc_basename in
5516
 
       CC*)
5517
 
        # Sun C++ 4.2, 5.x and Centerline C++
 
7003
        ;;
 
7004
-    esac
 
7005
-    ;;
 
7006
-  solaris*)
 
7007
-    case $cc_basename in
 
7008
-      CC*)
 
7009
-       # Sun C++ 4.2, 5.x and Centerline C++
5518
7010
-        _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes
5519
7011
-       _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs'
5520
7012
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag}  -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
5525
7017
-       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5526
7018
-       case $host_os in
5527
7019
-         solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
5528
 
-         *)
 
7020
+      solaris*)
 
7021
+       case $cc_basename in
 
7022
+         CC*)
 
7023
+           # Sun C++ 4.2, 5.x and Centerline C++
 
7024
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
7025
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
7026
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
 
7027
+           ;;
 
7028
+         gcx*)
 
7029
+           # Green Hills C++ Compiler
 
7030
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
 
7031
+           ;;
 
7032
          *)
5529
7033
-           # The compiler driver will combine and reorder linker options,
5530
7034
-           # but understands `-z linker_flag'.
5531
7035
-           # Supported since Solaris 2.6 (maybe 2.5.1?)
5532
7036
-           _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
5533
 
-           ;;
5534
 
-       esac
 
7037
            ;;
 
7038
        esac
5535
7039
-       _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5536
7040
-
5537
7041
-       output_verbose_link_cmd='echo'
5541
7045
-       # necessary to make sure instantiated templates are included
5542
7046
-       # in the archive.
5543
7047
-       _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
5544
 
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5545
 
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5546
 
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
5547
 
        ;;
5548
 
       gcx*)
5549
 
        # Green Hills C++ Compiler
 
7048
-       ;;
 
7049
-      gcx*)
 
7050
-       # Green Hills C++ Compiler
5550
7051
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
5551
7052
-
5552
7053
-       # The C++ compiler must be used to create the archive.
5553
7054
-       _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
5554
 
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
5555
7055
        ;;
5556
 
       *)
 
7056
-      *)
5557
7057
-       # GNU C++ compiler with Solaris linker
5558
7058
-       if test "$GXX" = yes && test "$with_gnu_ld" = no; then
5559
7059
-         _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs'
5582
7082
-         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'
5583
7083
-         case $host_os in
5584
7084
-         solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
5585
 
-         *)
 
7085
+      sunos4*)
 
7086
+       case $cc_basename in
 
7087
+         CC*)
 
7088
+           # Sun C++ 4.x
 
7089
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
 
7090
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
7091
+           ;;
 
7092
+         lcc*)
 
7093
+           # Lucid
 
7094
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
 
7095
+           ;;
 
7096
          *)
5586
7097
-           _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
5587
 
-           ;;
 
7098
            ;;
5588
7099
-         esac
5589
7100
-       fi
5590
 
        ;;
5591
 
     esac
5592
 
     ;;
 
7101
-       ;;
 
7102
-    esac
 
7103
-    ;;
5593
7104
-  sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
5594
7105
-    _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
5595
7106
-    _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
5596
7107
-    _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5597
7108
-    runpath_var='LD_RUN_PATH'
5598
7109
-
5599
 
+      sunos4*)
5600
 
     case $cc_basename in
5601
 
       CC*)
 
7110
-    case $cc_basename in
 
7111
-      CC*)
5602
7112
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5603
7113
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5604
 
+           # Sun C++ 4.x
5605
 
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
5606
 
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5607
 
+           ;;
5608
 
+         lcc*)
5609
 
+           # Lucid
5610
 
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
5611
 
        ;;
5612
 
       *)
 
7114
-       ;;
 
7115
-      *)
5613
7116
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5614
7117
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
 
7118
+       esac
5615
7119
        ;;
5616
 
     esac
5617
 
     ;;
 
7120
-    esac
 
7121
-    ;;
5618
7122
-  sysv5* | sco3.2v5* | sco5v6*)
5619
7123
-    # Note: We can NOT use -z defs as we might desire, because we do not
5620
7124
-    # link with -lc, and that would cause any symbols used from libc to
5641
7145
-    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
5642
7146
-    runpath_var='LD_RUN_PATH'
5643
7147
-
5644
 
+      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
5645
 
     case $cc_basename in
5646
 
       CC*)
 
7148
-    case $cc_basename in
 
7149
-      CC*)
5647
7150
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
5648
7151
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
5649
 
-       ;;
 
7152
+      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
 
7153
+       case $cc_basename in
 
7154
+         CC*)
 
7155
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
7156
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
7157
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
7158
+           ;;
 
7159
+       esac
 
7160
        ;;
5650
7161
-      *)
5651
7162
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
5652
7163
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
5653
 
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
7164
+      tandem*)
 
7165
+       case $cc_basename in
 
7166
+         NCC*)
 
7167
+           # NonStop-UX NCC 3.20
5654
7168
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5655
 
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
7169
+           ;;
 
7170
+         *)
 
7171
+           ;;
 
7172
+       esac
5656
7173
        ;;
5657
 
     esac
5658
 
     ;;
5659
 
@@ -4661,2824 +4737,4127 @@
5660
 
     case $cc_basename in
5661
 
       NCC*)
5662
 
        # NonStop-UX NCC 3.20
 
7174
-    esac
 
7175
-    ;;
 
7176
-  tandem*)
 
7177
-    case $cc_basename in
 
7178
-      NCC*)
 
7179
-       # NonStop-UX NCC 3.20
5663
7180
-       # FIXME: insert proper C++ library support
5664
7181
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
5665
 
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
7182
+      vxworks*)
5666
7183
        ;;
5667
7184
       *)
5668
7185
-       # FIXME: insert proper C++ library support
5669
7186
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
7187
+       _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
5670
7188
        ;;
5671
7189
     esac
5672
 
     ;;
5673
 
   vxworks*)
 
7190
-    ;;
 
7191
-  vxworks*)
5674
7192
-    # FIXME: insert proper C++ library support
5675
7193
-    _LT_AC_TAGVAR(ld_shlibs, $1)=no
5676
 
     ;;
5677
 
   *)
 
7194
-    ;;
 
7195
-  *)
5678
7196
-    # FIXME: insert proper C++ library support
5679
7197
-    _LT_AC_TAGVAR(ld_shlibs, $1)=no
5680
7198
-    ;;
5681
7199
-esac
5682
7200
-AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)])
5683
7201
-test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
5684
 
-
 
7202
+  fi
 
7203
+],
 
7204
+[
 
7205
+  if test "$GCC" = yes; then
 
7206
+    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
7207
+    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
 
7208
 
5685
7209
-_LT_AC_TAGVAR(GCC, $1)="$GXX"
5686
7210
-_LT_AC_TAGVAR(LD, $1)="$LD"
5687
 
-
 
7211
+    case $host_os in
 
7212
+      aix*)
 
7213
+      # All AIX code is PIC.
 
7214
+      if test "$host_cpu" = ia64; then
 
7215
+       # AIX 5 now supports IA64 processor
 
7216
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
7217
+      fi
 
7218
+      ;;
 
7219
 
5688
7220
-AC_LIBTOOL_POSTDEP_PREDEP($1)
5689
7221
-AC_LIBTOOL_PROG_COMPILER_PIC($1)
5690
7222
-AC_LIBTOOL_PROG_CC_C_O($1)
5692
7224
-AC_LIBTOOL_PROG_LD_SHLIBS($1)
5693
7225
-AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
5694
7226
-AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
5695
 
-
 
7227
+    amigaos*)
 
7228
+      case $host_cpu in
 
7229
+      powerpc)
 
7230
+            # see comment about AmigaOS4 .so support
 
7231
+            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
 
7232
+        ;;
 
7233
+      m68k)
 
7234
+            # FIXME: we need at least 68020 code to build shared libraries, but
 
7235
+            # adding the `-m68020' flag to GCC prevents building anything better,
 
7236
+            # like `-m68040'.
 
7237
+            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
 
7238
+        ;;
 
7239
+      esac
 
7240
+      ;;
 
7241
 
5696
7242
-AC_LIBTOOL_CONFIG($1)
5697
 
-
 
7243
+    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
 
7244
+      # PIC is the default for these OSes.
 
7245
+      ;;
 
7246
 
5698
7247
-AC_LANG_POP
5699
7248
-CC=$lt_save_CC
5700
7249
-LDCXX=$LD
5707
7256
-lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
5708
7257
-lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
5709
7258
-])# AC_LIBTOOL_LANG_CXX_CONFIG
5710
 
-
 
7259
+    mingw* | cygwin* | pw32* | os2*)
 
7260
+      # This hack is so that the source file can tell whether it is being
 
7261
+      # built for inclusion in a dll (and should export symbols for example).
 
7262
+      # Although the cygwin gcc ignores -fPIC, still need this for old-style
 
7263
+      # (--disable-auto-import) libraries
 
7264
+      m4_if([$1], [GCJ], [],
 
7265
+       [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
 
7266
+      ;;
 
7267
 
5711
7268
-# AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME])
5712
7269
-# ------------------------------------
5713
7270
-# Figure out "hidden" library dependencies from verbose
5714
7271
-# compiler output when linking a shared library.
5715
7272
-# Parse the compiler output and extract the necessary
5716
7273
-# objects, libraries and library flags.
5717
 
-AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],[
 
7274
-AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],
 
7275
-[AC_REQUIRE([LT_AC_PROG_SED])dnl
5718
7276
-dnl we can't use the lt_simple_compile_test_code here,
5719
7277
-dnl because it contains code intended for an executable,
5720
7278
-dnl not a library.  It's possible we should let each
5755
7313
-if AC_TRY_EVAL(ac_compile); then
5756
7314
-  # Parse the compiler output and extract the necessary
5757
7315
-  # objects, libraries and library flags.
5758
 
-
 
7316
+    darwin* | rhapsody*)
 
7317
+      # PIC is the default on this platform
 
7318
+      # Common symbols not allowed in MH_DYLIB files
 
7319
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
 
7320
+      ;;
 
7321
 
5759
7322
-  # Sentinel used to keep track of whether or not we are before
5760
7323
-  # the conftest object file.
5761
7324
-  pre_test_object_deps_done=no
5762
 
-
 
7325
+    hpux*)
 
7326
+      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
 
7327
+      # not for PA HP-UX.
 
7328
+      case $host_cpu in
 
7329
+      hppa*64*|ia64*)
 
7330
+       # +Z the default
 
7331
+       ;;
 
7332
+      *)
 
7333
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
 
7334
+       ;;
 
7335
+      esac
 
7336
+      ;;
 
7337
 
5763
7338
-  # The `*' in the case matches for architectures that use `case' in
5764
7339
-  # $output_verbose_cmd can trigger glob expansion during the loop
5765
7340
-  # eval without this substitution.
5766
7341
-  output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"`
5767
 
-
 
7342
+    interix[[3-9]]*)
 
7343
+      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
 
7344
+      # Instead, we relocate shared libraries at runtime.
 
7345
+      ;;
 
7346
 
5768
7347
-  for p in `eval $output_verbose_link_cmd`; do
5769
7348
-    case $p in
5770
 
-
 
7349
+    msdosdjgpp*)
 
7350
+      # Just because we use GCC doesn't mean we suddenly get shared libraries
 
7351
+      # on systems that don't support them.
 
7352
+      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
 
7353
+      enable_shared=no
 
7354
+      ;;
 
7355
 
5771
7356
-    -L* | -R* | -l*)
5772
7357
-       # Some compilers place space between "-{L,R}" and the path.
5773
7358
-       # Remove the space.
5778
7363
-       else
5779
7364
-        prev=
5780
7365
-       fi
5781
 
-
 
7366
+    *nto* | *qnx*)
 
7367
+      # QNX uses GNU C++, but need to define -shared option too, otherwise
 
7368
+      # it will coredump.
 
7369
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
 
7370
+      ;;
 
7371
 
5782
7372
-       if test "$pre_test_object_deps_done" = no; then
5783
7373
-        case $p in
5784
7374
-        -L* | -R*)
5827
7417
-       ;;
5828
7418
-
5829
7419
-    *) ;; # Ignore the rest.
5830
 
-
5831
 
-    esac
 
7420
+    sysv4*MP*)
 
7421
+      if test -d /usr/nec; then
 
7422
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
 
7423
+      fi
 
7424
+      ;;
 
7425
 
 
7426
+    *)
 
7427
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
 
7428
+      ;;
 
7429
     esac
5832
7430
-  done
5833
7431
-
5834
7432
-  # Clean up.
5839
7437
-
5840
7438
-$rm -f confest.$objext
5841
7439
-
 
7440
-_LT_AC_TAGVAR(compiler_lib_search_dirs, $1)=
 
7441
-if test -n "$_LT_AC_TAGVAR(compiler_lib_search_path, $1)"; then
 
7442
-  _LT_AC_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_AC_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'`
 
7443
-fi
 
7444
+  else
 
7445
+    # PORTME Check for flag to pass linker flags through the system compiler.
 
7446
+    case $host_os in
 
7447
+    aix*)
 
7448
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
7449
+      if test "$host_cpu" = ia64; then
 
7450
+       # AIX 5 now supports IA64 processor
 
7451
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
7452
+      else
 
7453
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
 
7454
+      fi
 
7455
+      ;;
 
7456
 
5842
7457
-# PORTME: override above test on systems where it is broken
5843
7458
-ifelse([$1],[CXX],
5844
7459
-[case $host_os in
5849
7464
-  _LT_AC_TAGVAR(postdep_objects,$1)=
5850
7465
-  _LT_AC_TAGVAR(postdeps,$1)=
5851
7466
-  ;;
5852
 
-
 
7467
+    mingw* | cygwin* | pw32* | os2*)
 
7468
+      # This hack is so that the source file can tell whether it is being
 
7469
+      # built for inclusion in a dll (and should export symbols for example).
 
7470
+      m4_if([$1], [GCJ], [],
 
7471
+       [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
 
7472
+      ;;
 
7473
 
5853
7474
-linux*)
5854
7475
-  case `$CC -V 2>&1 | sed 5q` in
5855
7476
-  *Sun\ C*)
5862
7483
-    case " $CXX $CXXFLAGS " in
5863
7484
-    *" -library=stlport4 "*)
5864
7485
-      solaris_use_stlport4=yes
5865
 
+       _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
 
7486
+    hpux9* | hpux10* | hpux11*)
 
7487
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
7488
+      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
 
7489
+      # not for PA HP-UX.
 
7490
+      case $host_cpu in
 
7491
+      hppa*64*|ia64*)
 
7492
+       # +Z the default
 
7493
+       ;;
 
7494
+      *)
 
7495
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
 
7496
+       ;;
 
7497
+      esac
 
7498
+      # Is there a better lt_prog_compiler_static that works with the bundled CC?
 
7499
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
5866
7500
       ;;
5867
 
     esac
 
7501
-    esac
5868
7502
-    if test "$solaris_use_stlport4" != yes; then
5869
7503
-      _LT_AC_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
5870
 
     fi
 
7504
-    fi
5871
7505
-    ;;
5872
7506
-  esac
5873
7507
-  ;;
5874
 
-
 
7508
 
5875
7509
-solaris*)
5876
7510
-  case $cc_basename in
5877
7511
-  CC*)
5882
7516
-    case " $CXX $CXXFLAGS " in
5883
7517
-    *" -library=stlport4 "*)
5884
7518
-      solaris_use_stlport4=yes
5885
 
-      ;;
 
7519
+    irix5* | irix6* | nonstopux*)
 
7520
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
7521
+      # PIC (with -KPIC) is the default.
 
7522
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
 
7523
       ;;
5886
7524
-    esac
5887
 
+],
5888
 
+[
5889
 
+  if test "$GCC" = yes; then
5890
 
+    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5891
 
+    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
5892
7525
 
5893
7526
-    # Adding this requires a known-good setup of shared libraries for
5894
7527
-    # Sun compiler versions before 5.6, else PIC objects from an old
5895
7528
-    # archive will be linked into the output, leading to subtle bugs.
5896
7529
-    if test "$solaris_use_stlport4" != yes; then
5897
7530
-      _LT_AC_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
5898
 
+    case $host_os in
5899
 
+      aix*)
5900
 
+      # All AIX code is PIC.
5901
 
+      if test "$host_cpu" = ia64; then
5902
 
+       # AIX 5 now supports IA64 processor
5903
 
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5904
 
     fi
5905
 
     ;;
5906
 
+
5907
 
+    amigaos*)
5908
 
+      case $host_cpu in
5909
 
+      powerpc)
5910
 
+            # see comment about AmigaOS4 .so support
5911
 
+            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
5912
 
+        ;;
5913
 
+      m68k)
5914
 
+            # FIXME: we need at least 68020 code to build shared libraries, but
5915
 
+            # adding the `-m68020' flag to GCC prevents building anything better,
5916
 
+            # like `-m68040'.
5917
 
+            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
5918
 
+        ;;
5919
 
   esac
5920
 
   ;;
 
7531
-    fi
 
7532
-    ;;
 
7533
-  esac
 
7534
-  ;;
5921
7535
-esac
5922
7536
-])
5923
 
-
5924
7537
-case " $_LT_AC_TAGVAR(postdeps, $1) " in
5925
7538
-*" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;;
5926
7539
-esac
5927
7540
-])# AC_LIBTOOL_POSTDEP_PREDEP
5928
 
-
5929
 
-# AC_LIBTOOL_LANG_F77_CONFIG
5930
 
-# --------------------------
5931
 
-# Ensure that the configuration vars for the C compiler are
5932
 
-# suitably defined.  Those variables are subsequently used by
5933
 
-# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
5934
 
-AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG], [_LT_AC_LANG_F77_CONFIG(F77)])
5935
 
-AC_DEFUN([_LT_AC_LANG_F77_CONFIG],
5936
 
-[AC_REQUIRE([AC_PROG_F77])
5937
 
-AC_LANG_PUSH(Fortran 77)
5938
 
 
5939
 
-_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
5940
 
-_LT_AC_TAGVAR(allow_undefined_flag, $1)=
5941
 
-_LT_AC_TAGVAR(always_export_symbols, $1)=no
5942
 
-_LT_AC_TAGVAR(archive_expsym_cmds, $1)=
5943
 
-_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
5944
 
-_LT_AC_TAGVAR(hardcode_direct, $1)=no
5945
 
-_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
5946
 
-_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
5947
 
-_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
5948
 
-_LT_AC_TAGVAR(hardcode_minus_L, $1)=no
5949
 
-_LT_AC_TAGVAR(hardcode_automatic, $1)=no
5950
 
-_LT_AC_TAGVAR(module_cmds, $1)=
5951
 
-_LT_AC_TAGVAR(module_expsym_cmds, $1)=
5952
 
-_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
5953
 
-_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
5954
 
-_LT_AC_TAGVAR(no_undefined_flag, $1)=
5955
 
-_LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
5956
 
-_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
5957
 
-
5958
 
-# Source file extension for f77 test sources.
5959
 
-ac_ext=f
5960
 
-
5961
 
-# Object file extension for compiled f77 test sources.
5962
 
-objext=o
5963
 
-_LT_AC_TAGVAR(objext, $1)=$objext
5964
 
-
5965
 
-# Code to be used in simple compile tests
5966
 
-lt_simple_compile_test_code="\
5967
 
-      subroutine t
5968
 
-      return
5969
 
-      end
5970
 
-"
5971
 
+    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
5972
 
+      # PIC is the default for these OSes.
5973
 
+      ;;
5974
 
 
5975
 
-# Code to be used in simple link tests
5976
 
-lt_simple_link_test_code="\
5977
 
-      program t
5978
 
-      end
5979
 
-"
5980
 
+    mingw* | cygwin* | pw32* | os2*)
5981
 
+      # This hack is so that the source file can tell whether it is being
5982
 
+      # built for inclusion in a dll (and should export symbols for example).
5983
 
+      # Although the cygwin gcc ignores -fPIC, still need this for old-style
5984
 
+      # (--disable-auto-import) libraries
5985
 
+      m4_if([$1], [GCJ], [],
5986
 
+       [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
5987
 
+      ;;
5988
 
 
5989
 
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
5990
 
-_LT_AC_SYS_COMPILER
5991
 
+    darwin* | rhapsody*)
5992
 
+      # PIC is the default on this platform
5993
 
+      # Common symbols not allowed in MH_DYLIB files
5994
 
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
5995
 
+      ;;
5996
 
 
5997
 
-# save warnings/boilerplate of simple test code
5998
 
-_LT_COMPILER_BOILERPLATE
5999
 
-_LT_LINKER_BOILERPLATE
6000
 
+    hpux*)
6001
 
+      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
6002
 
+      # not for PA HP-UX.
6003
 
+      case $host_cpu in
6004
 
+      hppa*64*|ia64*)
6005
 
+       # +Z the default
6006
 
+       ;;
6007
 
+      *)
6008
 
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
6009
 
+       ;;
6010
 
+      esac
6011
 
+      ;;
6012
 
 
6013
 
-# Allow CC to be a program name with arguments.
6014
 
-lt_save_CC="$CC"
6015
 
-CC=${F77-"f77"}
6016
 
-compiler=$CC
6017
 
-_LT_AC_TAGVAR(compiler, $1)=$CC
6018
 
-_LT_CC_BASENAME([$compiler])
6019
 
+    interix[[3-9]]*)
6020
 
+      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
6021
 
+      # Instead, we relocate shared libraries at runtime.
6022
 
+      ;;
6023
 
 
6024
 
-AC_MSG_CHECKING([if libtool supports shared libraries])
6025
 
-AC_MSG_RESULT([$can_build_shared])
6026
 
+    msdosdjgpp*)
6027
 
+      # Just because we use GCC doesn't mean we suddenly get shared libraries
6028
 
+      # on systems that don't support them.
6029
 
+      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
6030
 
+      enable_shared=no
6031
 
+      ;;
6032
 
 
6033
 
-AC_MSG_CHECKING([whether to build shared libraries])
6034
 
-test "$can_build_shared" = "no" && enable_shared=no
6035
 
+    *nto* | *qnx*)
6036
 
+      # QNX uses GNU C++, but need to define -shared option too, otherwise
6037
 
+      # it will coredump.
6038
 
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
6039
 
+      ;;
6040
 
 
6041
 
-# On AIX, shared libraries and static libraries use the same namespace, and
6042
 
-# are all built from PIC.
6043
 
-case $host_os in
6044
 
-aix3*)
6045
 
-  test "$enable_shared" = yes && enable_static=no
6046
 
-  if test -n "$RANLIB"; then
6047
 
-    archive_cmds="$archive_cmds~\$RANLIB \$lib"
6048
 
-    postinstall_cmds='$RANLIB $lib'
6049
 
+    sysv4*MP*)
6050
 
+      if test -d /usr/nec; then
6051
 
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
6052
 
   fi
6053
 
   ;;
6054
 
-aix4* | aix5*)
6055
 
-  if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
6056
 
-    test "$enable_shared" = yes && enable_static=no
6057
 
+
6058
 
+    *)
6059
 
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
6060
 
+      ;;
6061
 
+    esac
6062
 
+  else
6063
 
+    # PORTME Check for flag to pass linker flags through the system compiler.
6064
 
+    case $host_os in
6065
 
+    aix*)
6066
 
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6067
 
+      if test "$host_cpu" = ia64; then
6068
 
+       # AIX 5 now supports IA64 processor
6069
 
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6070
 
+      else
6071
 
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
6072
 
   fi
6073
 
   ;;
6074
 
-esac
6075
 
-AC_MSG_RESULT([$enable_shared])
6076
 
-
6077
 
-AC_MSG_CHECKING([whether to build static libraries])
6078
 
-# Make sure either enable_shared or enable_static is yes.
6079
 
-test "$enable_shared" = yes || enable_static=yes
6080
 
-AC_MSG_RESULT([$enable_static])
6081
 
-
6082
 
-_LT_AC_TAGVAR(GCC, $1)="$G77"
6083
 
-_LT_AC_TAGVAR(LD, $1)="$LD"
6084
 
-
6085
 
-AC_LIBTOOL_PROG_COMPILER_PIC($1)
6086
 
-AC_LIBTOOL_PROG_CC_C_O($1)
6087
 
-AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
6088
 
-AC_LIBTOOL_PROG_LD_SHLIBS($1)
6089
 
-AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
6090
 
-AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
6091
 
-
6092
 
-AC_LIBTOOL_CONFIG($1)
6093
 
-
6094
 
-AC_LANG_POP
6095
 
-CC="$lt_save_CC"
6096
 
-])# AC_LIBTOOL_LANG_F77_CONFIG
6097
 
-
6098
 
-
6099
 
-# AC_LIBTOOL_LANG_GCJ_CONFIG
6100
 
-# --------------------------
6101
 
-# Ensure that the configuration vars for the C compiler are
6102
 
-# suitably defined.  Those variables are subsequently used by
6103
 
-# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
6104
 
-AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)])
6105
 
-AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG],
6106
 
-[AC_LANG_SAVE
6107
 
-
6108
 
-# Source file extension for Java test sources.
6109
 
-ac_ext=java
6110
 
-
6111
 
-# Object file extension for compiled Java test sources.
6112
 
-objext=o
6113
 
-_LT_AC_TAGVAR(objext, $1)=$objext
6114
 
-
6115
 
-# Code to be used in simple compile tests
6116
 
-lt_simple_compile_test_code="class foo {}"
6117
 
-
6118
 
-# Code to be used in simple link tests
6119
 
-lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'
6120
 
-
6121
 
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
6122
 
-_LT_AC_SYS_COMPILER
6123
 
-
6124
 
-# save warnings/boilerplate of simple test code
6125
 
-_LT_COMPILER_BOILERPLATE
6126
 
-_LT_LINKER_BOILERPLATE
6127
 
-
6128
 
-# Allow CC to be a program name with arguments.
6129
 
-lt_save_CC="$CC"
6130
 
-CC=${GCJ-"gcj"}
6131
 
-compiler=$CC
6132
 
-_LT_AC_TAGVAR(compiler, $1)=$CC
6133
 
-_LT_CC_BASENAME([$compiler])
6134
 
-
6135
 
-# GCJ did not exist at the time GCC didn't implicitly link libc in.
6136
 
-_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
6137
 
-
6138
 
-_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
6139
 
-
6140
 
-AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1)
6141
 
-AC_LIBTOOL_PROG_COMPILER_PIC($1)
6142
 
-AC_LIBTOOL_PROG_CC_C_O($1)
6143
 
-AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
6144
 
-AC_LIBTOOL_PROG_LD_SHLIBS($1)
6145
 
-AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
6146
 
-AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
6147
 
-
6148
 
-AC_LIBTOOL_CONFIG($1)
6149
 
-
6150
 
-AC_LANG_RESTORE
6151
 
-CC="$lt_save_CC"
6152
 
-])# AC_LIBTOOL_LANG_GCJ_CONFIG
6153
 
-
6154
 
-
6155
 
-# AC_LIBTOOL_LANG_RC_CONFIG
6156
 
-# -------------------------
6157
 
-# Ensure that the configuration vars for the Windows resource compiler are
6158
 
-# suitably defined.  Those variables are subsequently used by
6159
 
-# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
6160
 
-AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)])
6161
 
-AC_DEFUN([_LT_AC_LANG_RC_CONFIG],
6162
 
-[AC_LANG_SAVE
6163
 
-
6164
 
-# Source file extension for RC test sources.
6165
 
-ac_ext=rc
6166
 
-
6167
 
-# Object file extension for compiled RC test sources.
6168
 
-objext=o
6169
 
-_LT_AC_TAGVAR(objext, $1)=$objext
6170
 
-
6171
 
-# Code to be used in simple compile tests
6172
 
-lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }'
6173
 
-
6174
 
-# Code to be used in simple link tests
6175
 
-lt_simple_link_test_code="$lt_simple_compile_test_code"
6176
 
-
6177
 
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
6178
 
-_LT_AC_SYS_COMPILER
6179
 
-
6180
 
-# save warnings/boilerplate of simple test code
6181
 
-_LT_COMPILER_BOILERPLATE
6182
 
-_LT_LINKER_BOILERPLATE
6183
 
-
6184
 
-# Allow CC to be a program name with arguments.
6185
 
-lt_save_CC="$CC"
6186
 
-CC=${RC-"windres"}
6187
 
-compiler=$CC
6188
 
-_LT_AC_TAGVAR(compiler, $1)=$CC
6189
 
-_LT_CC_BASENAME([$compiler])
6190
 
-_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
6191
 
 
6192
 
-AC_LIBTOOL_CONFIG($1)
6193
 
+    mingw* | cygwin* | pw32* | os2*)
6194
 
+      # This hack is so that the source file can tell whether it is being
6195
 
+      # built for inclusion in a dll (and should export symbols for example).
6196
 
+      m4_if([$1], [GCJ], [],
6197
 
+       [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
6198
 
+      ;;
6199
 
 
6200
 
-AC_LANG_RESTORE
6201
 
-CC="$lt_save_CC"
6202
 
-])# AC_LIBTOOL_LANG_RC_CONFIG
6203
 
+    hpux9* | hpux10* | hpux11*)
6204
 
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6205
 
+      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
6206
 
+      # not for PA HP-UX.
6207
 
+      case $host_cpu in
6208
 
+      hppa*64*|ia64*)
6209
 
+       # +Z the default
6210
 
+       ;;
6211
 
+      *)
6212
 
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
6213
 
+       ;;
6214
 
+      esac
6215
 
+      # Is there a better lt_prog_compiler_static that works with the bundled CC?
6216
 
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
6217
 
+      ;;
6218
 
 
6219
 
+    irix5* | irix6* | nonstopux*)
6220
 
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6221
 
+      # PIC (with -KPIC) is the default.
6222
 
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
6223
 
+      ;;
6224
 
 
6225
 
-# AC_LIBTOOL_CONFIG([TAGNAME])
6226
 
-# ----------------------------
6227
 
-# If TAGNAME is not passed, then create an initial libtool script
6228
 
-# with a default configuration from the untagged config vars.  Otherwise
6229
 
-# add code to config.status for appending the configuration named by
6230
 
-# TAGNAME from the matching tagged config vars.
6231
 
-AC_DEFUN([AC_LIBTOOL_CONFIG],
6232
 
-[# The else clause should only fire when bootstrapping the
6233
 
-# libtool distribution, otherwise you forgot to ship ltmain.sh
6234
 
-# with your package, and you will get complaints that there are
6235
 
-# no rules to generate ltmain.sh.
6236
 
-if test -f "$ltmain"; then
6237
 
-  # See if we are running on zsh, and set the options which allow our commands through
6238
 
-  # without removal of \ escapes.
6239
 
-  if test -n "${ZSH_VERSION+set}" ; then
6240
 
-    setopt NO_GLOB_SUBST
6241
 
-  fi
6242
 
-  # Now quote all the things that may contain metacharacters while being
6243
 
-  # careful not to overquote the AC_SUBSTed values.  We take copies of the
6244
 
-  # variables and quote the copies for generation of the libtool script.
6245
 
-  for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \
6246
 
-    SED SHELL STRIP \
6247
 
-    libname_spec library_names_spec soname_spec extract_expsyms_cmds \
6248
 
-    old_striplib striplib file_magic_cmd finish_cmds finish_eval \
6249
 
-    deplibs_check_method reload_flag reload_cmds need_locks \
6250
 
-    lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \
6251
 
-    lt_cv_sys_global_symbol_to_c_name_address \
6252
 
-    sys_lib_search_path_spec sys_lib_dlsearch_path_spec \
6253
 
-    old_postinstall_cmds old_postuninstall_cmds \
6254
 
-    _LT_AC_TAGVAR(compiler, $1) \
6255
 
-    _LT_AC_TAGVAR(CC, $1) \
6256
 
-    _LT_AC_TAGVAR(LD, $1) \
6257
 
-    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) \
6258
 
-    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) \
6259
 
-    _LT_AC_TAGVAR(lt_prog_compiler_static, $1) \
6260
 
-    _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) \
6261
 
-    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) \
6262
 
-    _LT_AC_TAGVAR(thread_safe_flag_spec, $1) \
6263
 
-    _LT_AC_TAGVAR(whole_archive_flag_spec, $1) \
6264
 
-    _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) \
6265
 
-    _LT_AC_TAGVAR(old_archive_cmds, $1) \
6266
 
-    _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) \
6267
 
-    _LT_AC_TAGVAR(predep_objects, $1) \
6268
 
-    _LT_AC_TAGVAR(postdep_objects, $1) \
6269
 
-    _LT_AC_TAGVAR(predeps, $1) \
6270
 
-    _LT_AC_TAGVAR(postdeps, $1) \
6271
 
-    _LT_AC_TAGVAR(compiler_lib_search_path, $1) \
6272
 
-    _LT_AC_TAGVAR(archive_cmds, $1) \
6273
 
-    _LT_AC_TAGVAR(archive_expsym_cmds, $1) \
6274
 
-    _LT_AC_TAGVAR(postinstall_cmds, $1) \
6275
 
-    _LT_AC_TAGVAR(postuninstall_cmds, $1) \
6276
 
-    _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) \
6277
 
-    _LT_AC_TAGVAR(allow_undefined_flag, $1) \
6278
 
-    _LT_AC_TAGVAR(no_undefined_flag, $1) \
6279
 
-    _LT_AC_TAGVAR(export_symbols_cmds, $1) \
6280
 
-    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) \
6281
 
-    _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) \
6282
 
-    _LT_AC_TAGVAR(hardcode_libdir_separator, $1) \
6283
 
-    _LT_AC_TAGVAR(hardcode_automatic, $1) \
6284
 
-    _LT_AC_TAGVAR(module_cmds, $1) \
6285
 
-    _LT_AC_TAGVAR(module_expsym_cmds, $1) \
6286
 
-    _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) \
6287
 
-    _LT_AC_TAGVAR(fix_srcfile_path, $1) \
6288
 
-    _LT_AC_TAGVAR(exclude_expsyms, $1) \
6289
 
-    _LT_AC_TAGVAR(include_expsyms, $1); do
6290
 
-
6291
 
-    case $var in
6292
 
-    _LT_AC_TAGVAR(old_archive_cmds, $1) | \
6293
 
-    _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | \
6294
 
-    _LT_AC_TAGVAR(archive_cmds, $1) | \
6295
 
-    _LT_AC_TAGVAR(archive_expsym_cmds, $1) | \
6296
 
-    _LT_AC_TAGVAR(module_cmds, $1) | \
6297
 
-    _LT_AC_TAGVAR(module_expsym_cmds, $1) | \
6298
 
-    _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | \
6299
 
-    _LT_AC_TAGVAR(export_symbols_cmds, $1) | \
6300
 
-    extract_expsyms_cmds | reload_cmds | finish_cmds | \
6301
 
-    postinstall_cmds | postuninstall_cmds | \
6302
 
-    old_postinstall_cmds | old_postuninstall_cmds | \
6303
 
-    sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
6304
 
-      # Double-quote double-evaled strings.
6305
 
-      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
6306
7541
+    linux* | k*bsd*-gnu)
6307
7542
+      case $cc_basename in
6308
7543
+      icc* | ecc* | ifort*)
6327
7562
+       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6328
7563
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
6329
7564
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
6330
 
       ;;
6331
 
     *)
6332
 
-      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
 
7565
+       ;;
 
7566
+      *)
6333
7567
+       case `$CC -V 2>&1 | sed 5q` in
6334
7568
+       *Sun\ C*)
6335
7569
+         # Sun C 5.9
6342
7576
+         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
6343
7577
+         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6344
7578
+         _LT_TAGVAR(lt_prog_compiler_wl, $1)=''
6345
 
       ;;
6346
 
     esac
6347
 
-  done
6348
 
-
6349
 
-  case $lt_echo in
6350
 
-  *'\[$]0 --fallback-echo"')
6351
 
-    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'`
6352
 
     ;;
6353
 
   esac
 
7579
+         ;;
 
7580
+       esac
 
7581
+       ;;
 
7582
+      esac
6354
7583
+      ;;
6355
7584
 
6356
 
-ifelse([$1], [],
6357
 
-  [cfgfile="${ofile}T"
6358
 
-  trap "$rm \"$cfgfile\"; exit 1" 1 2 15
6359
 
-  $rm -f "$cfgfile"
6360
 
-  AC_MSG_NOTICE([creating $ofile])],
6361
 
-  [cfgfile="$ofile"])
6362
 
-
6363
 
-  cat <<__EOF__ >> "$cfgfile"
6364
 
-ifelse([$1], [],
6365
 
-[#! $SHELL
6366
 
-
6367
 
-# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
6368
 
-# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
6369
 
-# NOTE: Changes made to this file will be lost: look at ltmain.sh.
6370
 
-#
6371
 
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
6372
 
-# Free Software Foundation, Inc.
6373
 
-#
6374
 
-# This file is part of GNU Libtool:
6375
 
-# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
6376
 
-#
6377
 
-# This program is free software; you can redistribute it and/or modify
6378
 
-# it under the terms of the GNU General Public License as published by
6379
 
-# the Free Software Foundation; either version 2 of the License, or
6380
 
-# (at your option) any later version.
6381
 
-#
6382
 
-# This program is distributed in the hope that it will be useful, but
6383
 
-# WITHOUT ANY WARRANTY; without even the implied warranty of
6384
 
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
6385
 
-# General Public License for more details.
6386
 
-#
6387
 
-# You should have received a copy of the GNU General Public License
6388
 
-# along with this program; if not, write to the Free Software
6389
 
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
6390
 
-#
6391
 
-# As a special exception to the GNU General Public License, if you
6392
 
-# distribute this file as part of a program that contains a
6393
 
-# configuration script generated by Autoconf, you may include it under
6394
 
-# the same distribution terms that you use for the rest of that program.
 
7585
-# AC_LIBTOOL_LANG_F77_CONFIG
 
7586
-# --------------------------
 
7587
-# Ensure that the configuration vars for the C compiler are
 
7588
-# suitably defined.  Those variables are subsequently used by
 
7589
-# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
 
7590
-AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG], [_LT_AC_LANG_F77_CONFIG(F77)])
 
7591
-AC_DEFUN([_LT_AC_LANG_F77_CONFIG],
 
7592
-[AC_REQUIRE([AC_PROG_F77])
 
7593
-AC_LANG_PUSH(Fortran 77)
6395
7594
+    newsos6)
6396
7595
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
6397
7596
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6398
7597
+      ;;
6399
7598
 
6400
 
-# A sed program that does not truncate output.
6401
 
-SED=$lt_SED
 
7599
-_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
 
7600
-_LT_AC_TAGVAR(allow_undefined_flag, $1)=
 
7601
-_LT_AC_TAGVAR(always_export_symbols, $1)=no
 
7602
-_LT_AC_TAGVAR(archive_expsym_cmds, $1)=
 
7603
-_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
 
7604
-_LT_AC_TAGVAR(hardcode_direct, $1)=no
 
7605
-_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
 
7606
-_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
 
7607
-_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
 
7608
-_LT_AC_TAGVAR(hardcode_minus_L, $1)=no
 
7609
-_LT_AC_TAGVAR(hardcode_automatic, $1)=no
 
7610
-_LT_AC_TAGVAR(module_cmds, $1)=
 
7611
-_LT_AC_TAGVAR(module_expsym_cmds, $1)=
 
7612
-_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
 
7613
-_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
 
7614
-_LT_AC_TAGVAR(no_undefined_flag, $1)=
 
7615
-_LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
 
7616
-_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
6402
7617
+    *nto* | *qnx*)
6403
7618
+      # QNX uses GNU C++, but need to define -shared option too, otherwise
6404
7619
+      # it will coredump.
6405
7620
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
6406
7621
+      ;;
6407
7622
 
6408
 
-# Sed that helps us avoid accidentally triggering echo(1) options like -n.
6409
 
-Xsed="$SED -e 1s/^X//"
 
7623
-# Source file extension for f77 test sources.
 
7624
-ac_ext=f
6410
7625
+    osf3* | osf4* | osf5*)
6411
7626
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6412
7627
+      # All OSF/1 code is PIC.
6413
7628
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
6414
7629
+      ;;
6415
7630
 
6416
 
-# The HP-UX ksh and POSIX shell print the target directory to stdout
6417
 
-# if CDPATH is set.
6418
 
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
7631
-# Object file extension for compiled f77 test sources.
 
7632
-objext=o
 
7633
-_LT_AC_TAGVAR(objext, $1)=$objext
6419
7634
+    rdos*)
6420
7635
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
6421
7636
+      ;;
6422
7637
 
6423
 
-# The names of the tagged configurations supported by this script.
6424
 
-available_tags=
 
7638
-# Code to be used in simple compile tests
 
7639
-lt_simple_compile_test_code="\
 
7640
-      subroutine t
 
7641
-      return
 
7642
-      end
 
7643
-"
6425
7644
+    solaris*)
6426
7645
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
6427
7646
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6433
7652
+      esac
6434
7653
+      ;;
6435
7654
 
6436
 
-# ### BEGIN LIBTOOL CONFIG],
6437
 
-[# ### BEGIN LIBTOOL TAG CONFIG: $tagname])
 
7655
-# Code to be used in simple link tests
 
7656
-lt_simple_link_test_code="\
 
7657
-      program t
 
7658
-      end
 
7659
-"
6438
7660
+    sunos4*)
6439
7661
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
6440
7662
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
6441
7663
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6442
7664
+      ;;
6443
7665
 
6444
 
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
 
7666
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
 
7667
-_LT_AC_SYS_COMPILER
6445
7668
+    sysv4 | sysv4.2uw2* | sysv4.3*)
6446
7669
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6447
7670
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
6448
7671
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6449
7672
+      ;;
6450
7673
 
6451
 
-# Shell to use when invoking shell scripts.
6452
 
-SHELL=$lt_SHELL
 
7674
-# save warnings/boilerplate of simple test code
 
7675
-_LT_COMPILER_BOILERPLATE
 
7676
-_LT_LINKER_BOILERPLATE
6453
7677
+    sysv4*MP*)
6454
7678
+      if test -d /usr/nec ;then
6455
7679
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
6457
7681
+      fi
6458
7682
+      ;;
6459
7683
 
6460
 
-# Whether or not to build shared libraries.
6461
 
-build_libtool_libs=$enable_shared
 
7684
-# Allow CC to be a program name with arguments.
 
7685
-lt_save_CC="$CC"
 
7686
-CC=${F77-"f77"}
 
7687
-compiler=$CC
 
7688
-_LT_AC_TAGVAR(compiler, $1)=$CC
 
7689
-_LT_CC_BASENAME([$compiler])
6462
7690
+    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
6463
7691
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6464
7692
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
6465
7693
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6466
7694
+      ;;
6467
7695
 
6468
 
-# Whether or not to build static libraries.
6469
 
-build_old_libs=$enable_static
 
7696
-AC_MSG_CHECKING([if libtool supports shared libraries])
 
7697
-AC_MSG_RESULT([$can_build_shared])
6470
7698
+    unicos*)
6471
7699
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6472
7700
+      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
6473
7701
+      ;;
6474
7702
 
6475
 
-# Whether or not to add -lc for building shared libraries.
6476
 
-build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)
 
7703
-AC_MSG_CHECKING([whether to build shared libraries])
 
7704
-test "$can_build_shared" = "no" && enable_shared=no
6477
7705
+    uts4*)
6478
7706
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
6479
7707
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6480
7708
+      ;;
6481
7709
 
6482
 
-# Whether or not to disallow shared libs when runtime libs are static
6483
 
-allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)
 
7710
-# On AIX, shared libraries and static libraries use the same namespace, and
 
7711
-# are all built from PIC.
 
7712
-case $host_os in
 
7713
-aix3*)
 
7714
-  test "$enable_shared" = yes && enable_static=no
 
7715
-  if test -n "$RANLIB"; then
 
7716
-    archive_cmds="$archive_cmds~\$RANLIB \$lib"
 
7717
-    postinstall_cmds='$RANLIB $lib'
 
7718
-  fi
 
7719
-  ;;
 
7720
-aix[[4-9]]*)
 
7721
-  if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
 
7722
-    test "$enable_shared" = yes && enable_static=no
6484
7723
+    *)
6485
7724
+      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
6486
7725
+      ;;
6487
7726
+    esac
6488
 
+  fi
 
7727
   fi
 
7728
-  ;;
6489
7729
+])
6490
7730
+case $host_os in
6491
7731
+  # For platforms which do not support PIC, -DPIC is meaningless:
6495
7735
+  *)
6496
7736
+    _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])"
6497
7737
+    ;;
6498
 
+esac
 
7738
 esac
 
7739
-AC_MSG_RESULT([$enable_shared])
6499
7740
+AC_MSG_RESULT([$_LT_TAGVAR(lt_prog_compiler_pic, $1)])
6500
7741
+_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1],
6501
7742
+       [How to pass a linker flag through the compiler])
6502
7743
 
6503
 
-# Whether or not to optimize for fast installation.
6504
 
-fast_install=$enable_fast_install
 
7744
-AC_MSG_CHECKING([whether to build static libraries])
 
7745
-# Make sure either enable_shared or enable_static is yes.
 
7746
-test "$enable_shared" = yes || enable_static=yes
 
7747
-AC_MSG_RESULT([$enable_static])
 
7748
-
 
7749
-_LT_AC_TAGVAR(GCC, $1)="$G77"
 
7750
-_LT_AC_TAGVAR(LD, $1)="$LD"
 
7751
-
 
7752
-AC_LIBTOOL_PROG_COMPILER_PIC($1)
 
7753
-AC_LIBTOOL_PROG_CC_C_O($1)
 
7754
-AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
 
7755
-AC_LIBTOOL_PROG_LD_SHLIBS($1)
 
7756
-AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
 
7757
-AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
 
7758
-
 
7759
-AC_LIBTOOL_CONFIG($1)
6505
7760
+#
6506
7761
+# Check to make sure the PIC flag actually works.
6507
7762
+#
6519
7774
+_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1],
6520
7775
+       [Additional compiler flags for building library objects])
6521
7776
 
6522
 
-# The host system.
6523
 
-host_alias=$host_alias
6524
 
-host=$host
6525
 
-host_os=$host_os
 
7777
-AC_LANG_POP
 
7778
-CC="$lt_save_CC"
 
7779
-])# AC_LIBTOOL_LANG_F77_CONFIG
6526
7780
+#
6527
7781
+# Check to make sure the static flag actually works.
6528
7782
+#
6536
7790
+       [Compiler flag to prevent dynamic linking])
6537
7791
+])# _LT_COMPILER_PIC
6538
7792
 
6539
 
-# The build system.
6540
 
-build_alias=$build_alias
6541
 
-build=$build
6542
 
-build_os=$build_os
6543
7793
 
6544
 
-# An echo program that does not interpret backslashes.
6545
 
-echo=$lt_echo
 
7794
-# AC_LIBTOOL_LANG_GCJ_CONFIG
 
7795
-# --------------------------
 
7796
-# Ensure that the configuration vars for the C compiler are
 
7797
-# suitably defined.  Those variables are subsequently used by
 
7798
-# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
 
7799
-AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)])
 
7800
-AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG],
 
7801
-[AC_LANG_SAVE
6546
7802
+# _LT_LINKER_SHLIBS([TAGNAME])
6547
7803
+# ----------------------------
6548
7804
+# See if the linker supports building shared libraries.
6624
7880
+dnl Note also adjust exclude_expsyms for C++ above.
6625
7881
+  extract_expsyms_cmds=
6626
7882
 
6627
 
-# The archiver.
6628
 
-AR=$lt_AR
6629
 
-AR_FLAGS=$lt_AR_FLAGS
 
7883
-# Source file extension for Java test sources.
 
7884
-ac_ext=java
 
7885
-
 
7886
-# Object file extension for compiled Java test sources.
 
7887
-objext=o
 
7888
-_LT_AC_TAGVAR(objext, $1)=$objext
 
7889
-
 
7890
-# Code to be used in simple compile tests
 
7891
-lt_simple_compile_test_code="class foo {}"
 
7892
-
 
7893
-# Code to be used in simple link tests
 
7894
-lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'
6630
7895
+  case $host_os in
6631
7896
+  cygwin* | mingw* | pw32*)
6632
7897
+    # FIXME: the MSVC++ port hasn't been tested in a loooong time
6645
7910
+    ;;
6646
7911
+  esac
6647
7912
 
6648
 
-# A C compiler.
6649
 
-LTCC=$lt_LTCC
 
7913
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
 
7914
-_LT_AC_SYS_COMPILER
6650
7915
+  _LT_TAGVAR(ld_shlibs, $1)=yes
6651
7916
+  if test "$with_gnu_ld" = yes; then
6652
7917
+    # If archive_cmds runs LD, not CC, wlarc should be empty
6653
7918
+    wlarc='${wl}'
6654
7919
 
6655
 
-# LTCC compiler flags.
6656
 
-LTCFLAGS=$lt_LTCFLAGS
 
7920
-# save warnings/boilerplate of simple test code
 
7921
-_LT_COMPILER_BOILERPLATE
 
7922
-_LT_LINKER_BOILERPLATE
6657
7923
+    # Set some defaults for GNU ld with shared library support. These
6658
7924
+    # are reset later if shared libraries are not supported. Putting them
6659
7925
+    # here allows them to be overridden if necessary.
6675
7941
+      *) supports_anon_versioning=yes ;;
6676
7942
+    esac
6677
7943
 
6678
 
-# A language-specific compiler.
6679
 
-CC=$lt_[]_LT_AC_TAGVAR(compiler, $1)
 
7944
-# Allow CC to be a program name with arguments.
 
7945
-lt_save_CC="$CC"
 
7946
-CC=${GCJ-"gcj"}
 
7947
-compiler=$CC
 
7948
-_LT_AC_TAGVAR(compiler, $1)=$CC
 
7949
-_LT_CC_BASENAME([$compiler])
6680
7950
+    # See if GNU ld supports shared libraries.
6681
7951
+    case $host_os in
6682
7952
+    aix[[3-9]]*)
6685
7955
+       _LT_TAGVAR(ld_shlibs, $1)=no
6686
7956
+       cat <<_LT_EOF 1>&2
6687
7957
 
6688
 
-# Is the compiler the GNU C compiler?
6689
 
-with_gcc=$_LT_AC_TAGVAR(GCC, $1)
 
7958
-# GCJ did not exist at the time GCC didn't implicitly link libc in.
 
7959
-_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
6690
7960
+*** Warning: the GNU linker, at least up to release 2.9.1, is reported
6691
7961
+*** to be unable to reliably create shared libraries on AIX.
6692
7962
+*** Therefore, libtool is disabling shared libraries support.  If you
6693
7963
+*** really care for shared libraries, you may want to modify your PATH
6694
7964
+*** so that a non-GNU linker is found, and then restart.
6695
7965
 
6696
 
-# An ERE matcher.
6697
 
-EGREP=$lt_EGREP
 
7966
-_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
6698
7967
+_LT_EOF
6699
7968
+      fi
6700
7969
+      ;;
6701
7970
 
6702
 
-# The linker used to build libraries.
6703
 
-LD=$lt_[]_LT_AC_TAGVAR(LD, $1)
 
7971
-AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1)
 
7972
-AC_LIBTOOL_PROG_COMPILER_PIC($1)
 
7973
-AC_LIBTOOL_PROG_CC_C_O($1)
 
7974
-AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
 
7975
-AC_LIBTOOL_PROG_LD_SHLIBS($1)
 
7976
-AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
 
7977
-AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
6704
7978
+    amigaos*)
6705
7979
+      case $host_cpu in
6706
7980
+      powerpc)
6716
7990
+      esac
6717
7991
+      ;;
6718
7992
 
6719
 
-# Whether we need hard or soft links.
6720
 
-LN_S=$lt_LN_S
 
7993
-AC_LIBTOOL_CONFIG($1)
6721
7994
+    beos*)
6722
7995
+      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
6723
7996
+       _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
6729
8002
+      fi
6730
8003
+      ;;
6731
8004
 
6732
 
-# A BSD-compatible nm program.
6733
 
-NM=$lt_NM
 
8005
-AC_LANG_RESTORE
 
8006
-CC="$lt_save_CC"
 
8007
-])# AC_LIBTOOL_LANG_GCJ_CONFIG
6734
8008
+    cygwin* | mingw* | pw32*)
6735
8009
+      # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
6736
8010
+      # as there is no search path for DLLs.
6740
8014
+      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
6741
8015
+      _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols'
6742
8016
 
6743
 
-# A symbol stripping program
6744
 
-STRIP=$lt_STRIP
6745
8017
+      if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
6746
8018
+        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
6747
8019
+       # If the export-symbols file already is a .def file (1st line
6758
8030
+      fi
6759
8031
+      ;;
6760
8032
 
6761
 
-# Used to examine libraries when file_magic_cmd begins "file"
6762
 
-MAGIC_CMD=$MAGIC_CMD
 
8033
-# AC_LIBTOOL_LANG_RC_CONFIG
 
8034
-# -------------------------
 
8035
-# Ensure that the configuration vars for the Windows resource compiler are
 
8036
-# suitably defined.  Those variables are subsequently used by
 
8037
-# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
 
8038
-AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)])
 
8039
-AC_DEFUN([_LT_AC_LANG_RC_CONFIG],
 
8040
-[AC_LANG_SAVE
6763
8041
+    interix[[3-9]]*)
6764
8042
+      _LT_TAGVAR(hardcode_direct, $1)=no
6765
8043
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6775
8053
+      _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
6776
8054
+      ;;
6777
8055
 
6778
 
-# Used on cygwin: DLL creation program.
6779
 
-DLLTOOL="$DLLTOOL"
 
8056
-# Source file extension for RC test sources.
 
8057
-ac_ext=rc
6780
8058
+    gnu* | linux* | tpf* | k*bsd*-gnu)
6781
8059
+      tmp_diet=no
6782
8060
+      if test "$host_os" = linux-dietlibc; then
6817
8095
+       esac
6818
8096
+       _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
6819
8097
 
6820
 
-# Used on cygwin: object dumper.
6821
 
-OBJDUMP="$OBJDUMP"
 
8098
-# Object file extension for compiled RC test sources.
 
8099
-objext=o
 
8100
-_LT_AC_TAGVAR(objext, $1)=$objext
6822
8101
+        if test "x$supports_anon_versioning" = xyes; then
6823
8102
+          _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
6824
8103
+           cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
6826
8105
+           $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
6827
8106
+        fi
6828
8107
 
6829
 
-# Used on cygwin: assembler.
6830
 
-AS="$AS"
 
8108
-# Code to be used in simple compile tests
 
8109
-lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }'
6831
8110
+       case $cc_basename in
6832
8111
+       xlf*)
6833
8112
+         # IBM XL Fortran 10.1 on PPC cannot create shared libs itself
6848
8127
+      fi
6849
8128
+      ;;
6850
8129
 
6851
 
-# The name of the directory that contains temporary libtool files.
6852
 
-objdir=$objdir
 
8130
-# Code to be used in simple link tests
 
8131
-lt_simple_link_test_code="$lt_simple_compile_test_code"
6853
8132
+    netbsd* | netbsdelf*-gnu)
6854
8133
+      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
6855
8134
+       _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
6860
8139
+      fi
6861
8140
+      ;;
6862
8141
 
6863
 
-# How to create reloadable object files.
6864
 
-reload_flag=$lt_reload_flag
6865
 
-reload_cmds=$lt_reload_cmds
 
8142
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
 
8143
-_LT_AC_SYS_COMPILER
6866
8144
+    solaris*)
6867
8145
+      if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then
6868
8146
+       _LT_TAGVAR(ld_shlibs, $1)=no
6869
8147
+       cat <<_LT_EOF 1>&2
6870
8148
 
6871
 
-# How to pass a linker flag through the compiler.
6872
 
-wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)
 
8149
-# save warnings/boilerplate of simple test code
 
8150
-_LT_COMPILER_BOILERPLATE
 
8151
-_LT_LINKER_BOILERPLATE
6873
8152
+*** Warning: The releases 2.8.* of the GNU linker cannot reliably
6874
8153
+*** create shared libraries on Solaris systems.  Therefore, libtool
6875
8154
+*** is disabling shared libraries support.  We urge you to upgrade GNU
6877
8156
+*** your PATH or compiler configuration so that the native linker is
6878
8157
+*** used, and then restart.
6879
8158
 
6880
 
-# Object file suffix (normally "o").
6881
 
-objext="$ac_objext"
 
8159
-# Allow CC to be a program name with arguments.
 
8160
-lt_save_CC="$CC"
 
8161
-CC=${RC-"windres"}
 
8162
-compiler=$CC
 
8163
-_LT_AC_TAGVAR(compiler, $1)=$CC
 
8164
-_LT_CC_BASENAME([$compiler])
 
8165
-_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
6882
8166
+_LT_EOF
6883
8167
+      elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
6884
8168
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
6888
8172
+      fi
6889
8173
+      ;;
6890
8174
 
6891
 
-# Old archive suffix (normally "a").
6892
 
-libext="$libext"
 
8175
-AC_LIBTOOL_CONFIG($1)
6893
8176
+    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
6894
8177
+      case `$LD -v 2>&1` in
6895
8178
+        *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*)
6896
8179
+       _LT_TAGVAR(ld_shlibs, $1)=no
6897
8180
+       cat <<_LT_EOF 1>&2
6898
8181
 
6899
 
-# Shared library suffix (normally ".so").
6900
 
-shrext_cmds='$shrext_cmds'
 
8182
-AC_LANG_RESTORE
 
8183
-CC="$lt_save_CC"
 
8184
-])# AC_LIBTOOL_LANG_RC_CONFIG
6901
8185
+*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
6902
8186
+*** reliably create shared libraries on SCO systems.  Therefore, libtool
6903
8187
+*** is disabling shared libraries support.  We urge you to upgrade GNU
6905
8189
+*** your PATH or compiler configuration so that the native linker is
6906
8190
+*** used, and then restart.
6907
8191
 
6908
 
-# Executable file suffix (normally "").
6909
 
-exeext="$exeext"
6910
8192
+_LT_EOF
6911
8193
+       ;;
6912
8194
+       *)
6925
8207
+      esac
6926
8208
+      ;;
6927
8209
 
6928
 
-# Additional compiler flags for building library objects.
6929
 
-pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)
6930
 
-pic_mode=$pic_mode
 
8210
-# AC_LIBTOOL_CONFIG([TAGNAME])
 
8211
-# ----------------------------
 
8212
-# If TAGNAME is not passed, then create an initial libtool script
 
8213
-# with a default configuration from the untagged config vars.  Otherwise
 
8214
-# add code to config.status for appending the configuration named by
 
8215
-# TAGNAME from the matching tagged config vars.
 
8216
-AC_DEFUN([AC_LIBTOOL_CONFIG],
 
8217
-[# The else clause should only fire when bootstrapping the
 
8218
-# libtool distribution, otherwise you forgot to ship ltmain.sh
 
8219
-# with your package, and you will get complaints that there are
 
8220
-# no rules to generate ltmain.sh.
 
8221
-if test -f "$ltmain"; then
 
8222
-  # See if we are running on zsh, and set the options which allow our commands through
 
8223
-  # without removal of \ escapes.
 
8224
-  if test -n "${ZSH_VERSION+set}" ; then
 
8225
-    setopt NO_GLOB_SUBST
 
8226
-  fi
 
8227
-  # Now quote all the things that may contain metacharacters while being
 
8228
-  # careful not to overquote the AC_SUBSTed values.  We take copies of the
 
8229
-  # variables and quote the copies for generation of the libtool script.
 
8230
-  for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \
 
8231
-    SED SHELL STRIP \
 
8232
-    libname_spec library_names_spec soname_spec extract_expsyms_cmds \
 
8233
-    old_striplib striplib file_magic_cmd finish_cmds finish_eval \
 
8234
-    deplibs_check_method reload_flag reload_cmds need_locks \
 
8235
-    lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \
 
8236
-    lt_cv_sys_global_symbol_to_c_name_address \
 
8237
-    sys_lib_search_path_spec sys_lib_dlsearch_path_spec \
 
8238
-    old_postinstall_cmds old_postuninstall_cmds \
 
8239
-    _LT_AC_TAGVAR(compiler, $1) \
 
8240
-    _LT_AC_TAGVAR(CC, $1) \
 
8241
-    _LT_AC_TAGVAR(LD, $1) \
 
8242
-    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) \
 
8243
-    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) \
 
8244
-    _LT_AC_TAGVAR(lt_prog_compiler_static, $1) \
 
8245
-    _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) \
 
8246
-    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) \
 
8247
-    _LT_AC_TAGVAR(thread_safe_flag_spec, $1) \
 
8248
-    _LT_AC_TAGVAR(whole_archive_flag_spec, $1) \
 
8249
-    _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) \
 
8250
-    _LT_AC_TAGVAR(old_archive_cmds, $1) \
 
8251
-    _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) \
 
8252
-    _LT_AC_TAGVAR(predep_objects, $1) \
 
8253
-    _LT_AC_TAGVAR(postdep_objects, $1) \
 
8254
-    _LT_AC_TAGVAR(predeps, $1) \
 
8255
-    _LT_AC_TAGVAR(postdeps, $1) \
 
8256
-    _LT_AC_TAGVAR(compiler_lib_search_path, $1) \
 
8257
-    _LT_AC_TAGVAR(compiler_lib_search_dirs, $1) \
 
8258
-    _LT_AC_TAGVAR(archive_cmds, $1) \
 
8259
-    _LT_AC_TAGVAR(archive_expsym_cmds, $1) \
 
8260
-    _LT_AC_TAGVAR(postinstall_cmds, $1) \
 
8261
-    _LT_AC_TAGVAR(postuninstall_cmds, $1) \
 
8262
-    _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) \
 
8263
-    _LT_AC_TAGVAR(allow_undefined_flag, $1) \
 
8264
-    _LT_AC_TAGVAR(no_undefined_flag, $1) \
 
8265
-    _LT_AC_TAGVAR(export_symbols_cmds, $1) \
 
8266
-    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) \
 
8267
-    _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) \
 
8268
-    _LT_AC_TAGVAR(hardcode_libdir_separator, $1) \
 
8269
-    _LT_AC_TAGVAR(hardcode_automatic, $1) \
 
8270
-    _LT_AC_TAGVAR(module_cmds, $1) \
 
8271
-    _LT_AC_TAGVAR(module_expsym_cmds, $1) \
 
8272
-    _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) \
 
8273
-    _LT_AC_TAGVAR(fix_srcfile_path, $1) \
 
8274
-    _LT_AC_TAGVAR(exclude_expsyms, $1) \
 
8275
-    _LT_AC_TAGVAR(include_expsyms, $1); do
 
8276
-
 
8277
-    case $var in
 
8278
-    _LT_AC_TAGVAR(old_archive_cmds, $1) | \
 
8279
-    _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | \
 
8280
-    _LT_AC_TAGVAR(archive_cmds, $1) | \
 
8281
-    _LT_AC_TAGVAR(archive_expsym_cmds, $1) | \
 
8282
-    _LT_AC_TAGVAR(module_cmds, $1) | \
 
8283
-    _LT_AC_TAGVAR(module_expsym_cmds, $1) | \
 
8284
-    _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | \
 
8285
-    _LT_AC_TAGVAR(export_symbols_cmds, $1) | \
 
8286
-    extract_expsyms_cmds | reload_cmds | finish_cmds | \
 
8287
-    postinstall_cmds | postuninstall_cmds | \
 
8288
-    old_postinstall_cmds | old_postuninstall_cmds | \
 
8289
-    sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
 
8290
-      # Double-quote double-evaled strings.
 
8291
-      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
6931
8292
+    sunos4*)
6932
8293
+      _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
6933
8294
+      wlarc=
6934
8295
+      _LT_TAGVAR(hardcode_direct, $1)=yes
6935
8296
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6936
 
+      ;;
6937
 
 
6938
 
-# What is the maximum length of a command?
6939
 
-max_cmd_len=$lt_cv_sys_max_cmd_len
6940
 
+    *)
 
8297
       ;;
 
8298
+
 
8299
     *)
 
8300
-      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
6941
8301
+      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
6942
8302
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
6943
8303
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
6944
8304
+      else
6945
8305
+       _LT_TAGVAR(ld_shlibs, $1)=no
6946
8306
+      fi
6947
 
+      ;;
6948
 
+    esac
 
8307
       ;;
 
8308
     esac
 
8309
-  done
 
8310
-
 
8311
-  case $lt_echo in
 
8312
-  *'\[$]0 --fallback-echo"')
 
8313
-    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'`
 
8314
-    ;;
 
8315
-  esac
6949
8316
 
6950
 
-# Does compiler simultaneously support -c and -o options?
6951
 
-compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)
 
8317
-ifelse([$1], [],
 
8318
-  [cfgfile="${ofile}T"
 
8319
-  trap "$rm \"$cfgfile\"; exit 1" 1 2 15
 
8320
-  $rm -f "$cfgfile"
 
8321
-  AC_MSG_NOTICE([creating $ofile])],
 
8322
-  [cfgfile="$ofile"])
 
8323
-
 
8324
-  cat <<__EOF__ >> "$cfgfile"
 
8325
-ifelse([$1], [],
 
8326
-[#! $SHELL
6952
8327
+    if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then
6953
8328
+      runpath_var=
6954
8329
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
6972
8347
+      fi
6973
8348
+      ;;
6974
8349
 
6975
 
-# Must we lock files when doing compilation?
6976
 
-need_locks=$lt_need_locks
 
8350
-# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
 
8351
-# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
 
8352
-# NOTE: Changes made to this file will be lost: look at ltmain.sh.
 
8353
-#
 
8354
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
 
8355
-# Free Software Foundation, Inc.
 
8356
-#
 
8357
-# This file is part of GNU Libtool:
 
8358
-# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
 
8359
-#
 
8360
-# This program is free software; you can redistribute it and/or modify
 
8361
-# it under the terms of the GNU General Public License as published by
 
8362
-# the Free Software Foundation; either version 2 of the License, or
 
8363
-# (at your option) any later version.
 
8364
-#
 
8365
-# This program is distributed in the hope that it will be useful, but
 
8366
-# WITHOUT ANY WARRANTY; without even the implied warranty of
 
8367
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
8368
-# General Public License for more details.
 
8369
-#
 
8370
-# You should have received a copy of the GNU General Public License
 
8371
-# along with this program; if not, write to the Free Software
 
8372
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
8373
-#
 
8374
-# As a special exception to the GNU General Public License, if you
 
8375
-# distribute this file as part of a program that contains a
 
8376
-# configuration script generated by Autoconf, you may include it under
 
8377
-# the same distribution terms that you use for the rest of that program.
6977
8378
+    aix[[4-9]]*)
6978
8379
+      if test "$host_cpu" = ia64; then
6979
8380
+       # On IA64, the linker does run time linking by default, so we don't
6991
8392
+       fi
6992
8393
+       aix_use_runtimelinking=no
6993
8394
 
6994
 
-# Do we need the lib prefix for modules?
6995
 
-need_lib_prefix=$need_lib_prefix
 
8395
-# A sed program that does not truncate output.
 
8396
-SED=$lt_SED
6996
8397
+       # Test if we are trying to use run time linking or normal
6997
8398
+       # AIX style linking. If -brtl is somewhere in LDFLAGS, we
6998
8399
+       # need to do runtime linking.
7006
8407
+         ;;
7007
8408
+       esac
7008
8409
 
7009
 
-# Do we need a version for libraries?
7010
 
-need_version=$need_version
 
8410
-# Sed that helps us avoid accidentally triggering echo(1) options like -n.
 
8411
-Xsed="$SED -e 1s/^X//"
 
8412
-
 
8413
-# The HP-UX ksh and POSIX shell print the target directory to stdout
 
8414
-# if CDPATH is set.
 
8415
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
7011
8416
+       exp_sym_flag='-bexport'
7012
8417
+       no_entry_flag='-bnoentry'
7013
8418
+      fi
7014
8419
 
7015
 
-# Whether dlopen is supported.
7016
 
-dlopen_support=$enable_dlopen
 
8420
-# The names of the tagged configurations supported by this script.
 
8421
-available_tags=
7017
8422
+      # When large executables or shared objects are built, AIX ld can
7018
8423
+      # have problems creating the table of contents.  If linking a library
7019
8424
+      # or program results in "error TOC overflow" add -mminimal-toc to
7020
8425
+      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
7021
8426
+      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
7022
8427
 
7023
 
-# Whether dlopen of programs is supported.
7024
 
-dlopen_self=$enable_dlopen_self
 
8428
-# ### BEGIN LIBTOOL CONFIG],
 
8429
-[# ### BEGIN LIBTOOL TAG CONFIG: $tagname])
7025
8430
+      _LT_TAGVAR(archive_cmds, $1)=''
7026
8431
+      _LT_TAGVAR(hardcode_direct, $1)=yes
7027
8432
+      _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
7029
8434
+      _LT_TAGVAR(link_all_deplibs, $1)=yes
7030
8435
+      _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
7031
8436
 
7032
 
-# Whether dlopen of statically linked programs is supported.
7033
 
-dlopen_self_static=$enable_dlopen_self_static
 
8437
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
7034
8438
+      if test "$GCC" = yes; then
7035
8439
+       case $host_os in aix4.[[012]]|aix4.[[012]].*)
7036
8440
+       # We only want to do this on AIX 4.2 and lower, the check
7073
8477
+       fi
7074
8478
+      fi
7075
8479
 
7076
 
-# Compiler flag to prevent dynamic linking.
7077
 
-link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1)
 
8480
-# Shell to use when invoking shell scripts.
 
8481
-SHELL=$lt_SHELL
7078
8482
+      # It seems that -bexpall does not export symbols beginning with
7079
8483
+      # underscore (_), so it is better to generate a list of symbols to export.
7080
8484
+      _LT_TAGVAR(always_export_symbols, $1)=yes
7110
8514
+      fi
7111
8515
+      ;;
7112
8516
 
7113
 
-# Compiler flag to turn off builtin functions.
7114
 
-no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)
 
8517
-# Whether or not to build shared libraries.
 
8518
-build_libtool_libs=$enable_shared
7115
8519
+    amigaos*)
7116
8520
+      case $host_cpu in
7117
8521
+      powerpc)
7127
8531
+      esac
7128
8532
+      ;;
7129
8533
 
7130
 
-# Compiler flag to allow reflexive dlopens.
7131
 
-export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)
 
8534
-# Whether or not to build static libraries.
 
8535
-build_old_libs=$enable_static
7132
8536
+    bsdi[[45]]*)
7133
8537
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
7134
8538
+      ;;
7135
8539
 
7136
 
-# Compiler flag to generate shared objects directly from archives.
7137
 
-whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1)
 
8540
-# Whether or not to add -lc for building shared libraries.
 
8541
-build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)
7138
8542
+    cygwin* | mingw* | pw32*)
7139
8543
+      # When not using gcc, we currently assume that we are using
7140
8544
+      # Microsoft Visual C++.
7156
8560
+      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
7157
8561
+      ;;
7158
8562
 
7159
 
-# Compiler flag to generate thread-safe objects.
7160
 
-thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1)
 
8563
-# Whether or not to disallow shared libs when runtime libs are static
 
8564
-allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)
7161
8565
+    darwin* | rhapsody*)
7162
8566
+      _LT_DARWIN_LINKER_FEATURES($1)
7163
8567
+      ;;
7164
8568
 
7165
 
-# Library versioning type.
7166
 
-version_type=$version_type
 
8569
-# Whether or not to optimize for fast installation.
 
8570
-fast_install=$enable_fast_install
7167
8571
+    dgux*)
7168
8572
+      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
7169
8573
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
7170
8574
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7171
8575
+      ;;
7172
8576
 
7173
 
-# Format of library name prefix.
7174
 
-libname_spec=$lt_libname_spec
 
8577
-# The host system.
 
8578
-host_alias=$host_alias
 
8579
-host=$host
 
8580
-host_os=$host_os
7175
8581
+    freebsd1*)
7176
8582
+      _LT_TAGVAR(ld_shlibs, $1)=no
7177
8583
+      ;;
7178
8584
 
7179
 
-# List of archive names.  First name is the real one, the rest are links.
7180
 
-# The last name is the one that the linker finds with -lNAME.
7181
 
-library_names_spec=$lt_library_names_spec
 
8585
-# The build system.
 
8586
-build_alias=$build_alias
 
8587
-build=$build
 
8588
-build_os=$build_os
7182
8589
+    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
7183
8590
+    # support.  Future versions do this automatically, but an explicit c++rt0.o
7184
8591
+    # does not break anything, and helps significantly (at the cost of a little
7190
8597
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7191
8598
+      ;;
7192
8599
 
7193
 
-# The coded name of the library, if different from the real name.
7194
 
-soname_spec=$lt_soname_spec
 
8600
-# An echo program that does not interpret backslashes.
 
8601
-echo=$lt_echo
7195
8602
+    # Unfortunately, older versions of FreeBSD 2 do not have this feature.
7196
8603
+    freebsd2*)
7197
8604
+      _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
7200
8607
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7201
8608
+      ;;
7202
8609
 
7203
 
-# Commands used to build and install an old-style archive.
7204
 
-RANLIB=$lt_RANLIB
7205
 
-old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1)
7206
 
-old_postinstall_cmds=$lt_old_postinstall_cmds
7207
 
-old_postuninstall_cmds=$lt_old_postuninstall_cmds
 
8610
-# The archiver.
 
8611
-AR=$lt_AR
 
8612
-AR_FLAGS=$lt_AR_FLAGS
7208
8613
+    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
7209
8614
+    freebsd* | dragonfly*)
7210
8615
+      _LT_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
7213
8618
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7214
8619
+      ;;
7215
8620
 
7216
 
-# Create an old-style archive from a shared archive.
7217
 
-old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1)
 
8621
-# A C compiler.
 
8622
-LTCC=$lt_LTCC
7218
8623
+    hpux9*)
7219
8624
+      if test "$GCC" = yes; then
7220
8625
+       _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
7225
8630
+      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
7226
8631
+      _LT_TAGVAR(hardcode_direct, $1)=yes
7227
8632
 
7228
 
-# Create a temporary old-style archive to link instead of a shared archive.
7229
 
-old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)
 
8633
-# LTCC compiler flags.
 
8634
-LTCFLAGS=$lt_LTCFLAGS
7230
8635
+      # hardcode_minus_L: Not really in the search PATH,
7231
8636
+      # but as the default location of the library.
7232
8637
+      _LT_TAGVAR(hardcode_minus_L, $1)=yes
7233
8638
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
7234
8639
+      ;;
7235
8640
 
7236
 
-# Commands used to build and install a shared archive.
7237
 
-archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1)
7238
 
-archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1)
7239
 
-postinstall_cmds=$lt_postinstall_cmds
7240
 
-postuninstall_cmds=$lt_postuninstall_cmds
 
8641
-# A language-specific compiler.
 
8642
-CC=$lt_[]_LT_AC_TAGVAR(compiler, $1)
7241
8643
+    hpux10*)
7242
8644
+      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
7243
8645
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
7257
8659
+      fi
7258
8660
+      ;;
7259
8661
 
7260
 
-# Commands used to build a loadable module (assumed same as above if empty)
7261
 
-module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1)
7262
 
-module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1)
 
8662
-# Is the compiler the GNU C compiler?
 
8663
-with_gcc=$_LT_AC_TAGVAR(GCC, $1)
7263
8664
+    hpux11*)
7264
8665
+      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
7265
8666
+       case $host_cpu in
7290
8691
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
7291
8692
+       _LT_TAGVAR(hardcode_libdir_separator, $1)=:
7292
8693
 
7293
 
-# Commands to strip libraries.
7294
 
-old_striplib=$lt_old_striplib
7295
 
-striplib=$lt_striplib
 
8694
-# An ERE matcher.
 
8695
-EGREP=$lt_EGREP
7296
8696
+       case $host_cpu in
7297
8697
+       hppa*64*|ia64*)
7298
8698
+         _LT_TAGVAR(hardcode_direct, $1)=no
7303
8703
+         _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
7304
8704
+         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
7305
8705
 
7306
 
-# Dependencies to place before the objects being linked to create a
7307
 
-# shared library.
7308
 
-predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1)
 
8706
-# The linker used to build libraries.
 
8707
-LD=$lt_[]_LT_AC_TAGVAR(LD, $1)
7309
8708
+         # hardcode_minus_L: Not really in the search PATH,
7310
8709
+         # but as the default location of the library.
7311
8710
+         _LT_TAGVAR(hardcode_minus_L, $1)=yes
7314
8713
+      fi
7315
8714
+      ;;
7316
8715
 
7317
 
-# Dependencies to place after the objects being linked to create a
7318
 
-# shared library.
7319
 
-postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1)
 
8716
-# Whether we need hard or soft links.
 
8717
-LN_S=$lt_LN_S
7320
8718
+    irix5* | irix6* | nonstopux*)
7321
8719
+      if test "$GCC" = yes; then
7322
8720
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
7340
8738
+      _LT_TAGVAR(link_all_deplibs, $1)=yes
7341
8739
+      ;;
7342
8740
 
7343
 
-# Dependencies to place before the objects being linked to create a
7344
 
-# shared library.
7345
 
-predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1)
 
8741
-# A BSD-compatible nm program.
 
8742
-NM=$lt_NM
7346
8743
+    netbsd* | netbsdelf*-gnu)
7347
8744
+      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
7348
8745
+       _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
7354
8751
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7355
8752
+      ;;
7356
8753
 
7357
 
-# Dependencies to place after the objects being linked to create a
7358
 
-# shared library.
7359
 
-postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1)
 
8754
-# A symbol stripping program
 
8755
-STRIP=$lt_STRIP
7360
8756
+    newsos6)
7361
8757
+      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
7362
8758
+      _LT_TAGVAR(hardcode_direct, $1)=yes
7365
8761
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7366
8762
+      ;;
7367
8763
 
7368
 
-# The library search path used internally by the compiler when linking
7369
 
-# a shared library.
7370
 
-compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1)
 
8764
-# Used to examine libraries when file_magic_cmd begins "file"
 
8765
-MAGIC_CMD=$MAGIC_CMD
7371
8766
+    *nto* | *qnx*)
7372
8767
+      ;;
7373
8768
 
7374
 
-# Method to check whether dependent libraries are shared objects.
7375
 
-deplibs_check_method=$lt_deplibs_check_method
 
8769
-# Used on cygwin: DLL creation program.
 
8770
-DLLTOOL="$DLLTOOL"
7376
8771
+    openbsd*)
7377
8772
+      if test -f /usr/libexec/ld.so; then
7378
8773
+       _LT_TAGVAR(hardcode_direct, $1)=yes
7400
8795
+      fi
7401
8796
+      ;;
7402
8797
 
7403
 
-# Command to use when deplibs_check_method == file_magic.
7404
 
-file_magic_cmd=$lt_file_magic_cmd
 
8798
-# Used on cygwin: object dumper.
 
8799
-OBJDUMP="$OBJDUMP"
7405
8800
+    os2*)
7406
8801
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
7407
8802
+      _LT_TAGVAR(hardcode_minus_L, $1)=yes
7410
8805
+      _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
7411
8806
+      ;;
7412
8807
 
7413
 
-# Flag that allows shared libraries with undefined symbols to be built.
7414
 
-allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1)
 
8808
-# Used on cygwin: assembler.
 
8809
-AS="$AS"
7415
8810
+    osf3*)
7416
8811
+      if test "$GCC" = yes; then
7417
8812
+       _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
7425
8820
+      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
7426
8821
+      ;;
7427
8822
 
7428
 
-# Flag that forces no undefined symbols.
7429
 
-no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1)
 
8823
-# The name of the directory that contains temporary libtool files.
 
8824
-objdir=$objdir
7430
8825
+    osf4* | osf5*)     # as osf3* with the addition of -msym flag
7431
8826
+      if test "$GCC" = yes; then
7432
8827
+       _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
7438
8833
+       _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~
7439
8834
+       $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp'
7440
8835
 
7441
 
-# Commands used to finish a libtool library installation in a directory.
7442
 
-finish_cmds=$lt_finish_cmds
 
8836
-# How to create reloadable object files.
 
8837
-reload_flag=$lt_reload_flag
 
8838
-reload_cmds=$lt_reload_cmds
7443
8839
+       # Both c and cxx compiler support -rpath directly
7444
8840
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
7445
8841
+      fi
7447
8843
+      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
7448
8844
+      ;;
7449
8845
 
7450
 
-# Same as above, but a single script fragment to be evaled but not shown.
7451
 
-finish_eval=$lt_finish_eval
 
8846
-# How to pass a linker flag through the compiler.
 
8847
-wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)
7452
8848
+    solaris*)
7453
8849
+      _LT_TAGVAR(no_undefined_flag, $1)=' -z defs'
7454
8850
+      if test "$GCC" = yes; then
7491
8887
+      _LT_TAGVAR(link_all_deplibs, $1)=yes
7492
8888
+      ;;
7493
8889
 
7494
 
-# Take the output of nm and produce a listing of raw symbols and C names.
7495
 
-global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
 
8890
-# Object file suffix (normally "o").
 
8891
-objext="$ac_objext"
7496
8892
+    sunos4*)
7497
8893
+      if test "x$host_vendor" = xsequent; then
7498
8894
+       # Use $CC to link under sequent, because it throws in some extra .o
7507
8903
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7508
8904
+      ;;
7509
8905
 
7510
 
-# Transform the output of nm in a proper C declaration
7511
 
-global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
 
8906
-# Old archive suffix (normally "a").
 
8907
-libext="$libext"
7512
8908
+    sysv4)
7513
8909
+      case $host_vendor in
7514
8910
+       sni)
7531
8927
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7532
8928
+      ;;
7533
8929
 
7534
 
-# Transform the output of nm in a C name address pair
7535
 
-global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
 
8930
-# Shared library suffix (normally ".so").
 
8931
-shrext_cmds='$shrext_cmds'
7536
8932
+    sysv4.3*)
7537
8933
+      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
7538
8934
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7539
8935
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'
7540
8936
+      ;;
7541
8937
 
7542
 
-# This is the shared library runtime path variable.
7543
 
-runpath_var=$runpath_var
 
8938
-# Executable file suffix (normally "").
 
8939
-exeext="$exeext"
7544
8940
+    sysv4*MP*)
7545
8941
+      if test -d /usr/nec; then
7546
8942
+       _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
7551
8947
+      fi
7552
8948
+      ;;
7553
8949
 
7554
 
-# This is the shared library path variable.
7555
 
-shlibpath_var=$shlibpath_var
 
8950
-# Additional compiler flags for building library objects.
 
8951
-pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)
 
8952
-pic_mode=$pic_mode
7556
8953
+    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
7557
8954
+      _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
7558
8955
+      _LT_TAGVAR(archive_cmds_need_lc, $1)=no
7559
8956
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7560
8957
+      runpath_var='LD_RUN_PATH'
7561
8958
 
7562
 
-# Is shlibpath searched before the hard-coded library search path?
7563
 
-shlibpath_overrides_runpath=$shlibpath_overrides_runpath
 
8959
-# What is the maximum length of a command?
 
8960
-max_cmd_len=$lt_cv_sys_max_cmd_len
7564
8961
+      if test "$GCC" = yes; then
7565
8962
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
7566
8963
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
7570
8967
+      fi
7571
8968
+      ;;
7572
8969
 
7573
 
-# How to hardcode a shared library path into an executable.
7574
 
-hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1)
 
8970
-# Does compiler simultaneously support -c and -o options?
 
8971
-compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)
7575
8972
+    sysv5* | sco3.2v5* | sco5v6*)
7576
8973
+      # Note: We can NOT use -z defs as we might desire, because we do not
7577
8974
+      # link with -lc, and that would cause any symbols used from libc to
7589
8986
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
7590
8987
+      runpath_var='LD_RUN_PATH'
7591
8988
 
7592
 
-# Whether we should hardcode library paths into libraries.
7593
 
-hardcode_into_libs=$hardcode_into_libs
 
8989
-# Must we lock files when doing compilation?
 
8990
-need_locks=$lt_need_locks
7594
8991
+      if test "$GCC" = yes; then
7595
8992
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
7596
8993
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
7600
8997
+      fi
7601
8998
+      ;;
7602
8999
 
7603
 
-# Flag to hardcode \$libdir into a binary during linking.
7604
 
-# This must work even if \$libdir does not exist.
7605
 
-hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)
 
9000
-# Do we need the lib prefix for modules?
 
9001
-need_lib_prefix=$need_lib_prefix
7606
9002
+    uts4*)
7607
9003
+      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
7608
9004
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
7609
9005
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7610
9006
+      ;;
7611
9007
 
7612
 
-# If ld is used when linking, flag to hardcode \$libdir into
7613
 
-# a binary during linking. This must work even if \$libdir does
7614
 
-# not exist.
7615
 
-hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)
 
9008
-# Do we need a version for libraries?
 
9009
-need_version=$need_version
 
9010
-
 
9011
-# Whether dlopen is supported.
 
9012
-dlopen_support=$enable_dlopen
 
9013
-
 
9014
-# Whether dlopen of programs is supported.
 
9015
-dlopen_self=$enable_dlopen_self
7616
9016
+    *)
7617
9017
+      _LT_TAGVAR(ld_shlibs, $1)=no
7618
9018
+      ;;
7619
9019
+    esac
7620
9020
 
7621
 
-# Whether we need a single -rpath flag with a separated argument.
7622
 
-hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1)
 
9021
-# Whether dlopen of statically linked programs is supported.
 
9022
-dlopen_self_static=$enable_dlopen_self_static
7623
9023
+    if test x$host_vendor = xsni; then
7624
9024
+      case $host in
7625
9025
+      sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
7632
9032
+AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
7633
9033
+test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
7634
9034
 
7635
 
-# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the
7636
 
-# resulting binary.
7637
 
-hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1)
 
9035
-# Compiler flag to prevent dynamic linking.
 
9036
-link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1)
7638
9037
+_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld
7639
9038
 
7640
 
-# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
7641
 
-# resulting binary.
7642
 
-hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1)
 
9039
-# Compiler flag to turn off builtin functions.
 
9040
-no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)
7643
9041
+_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl
7644
9042
+_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl
7645
9043
+_LT_DECL([], [extract_expsyms_cmds], [2],
7646
9044
+    [The commands to extract the exported symbol list from a shared archive])
7647
9045
 
7648
 
-# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
7649
 
-# the resulting binary.
7650
 
-hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)
 
9046
-# Compiler flag to allow reflexive dlopens.
 
9047
-export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)
7651
9048
+#
7652
9049
+# Do we need to explicitly link libc?
7653
9050
+#
7656
9053
+  # Assume -lc should be added
7657
9054
+  _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
7658
9055
 
7659
 
-# Set to yes if building a shared library automatically hardcodes DIR into the library
7660
 
-# and all subsequent libraries and executables linked against it.
7661
 
-hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1)
 
9056
-# Compiler flag to generate shared objects directly from archives.
 
9057
-whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1)
7662
9058
+  if test "$enable_shared" = yes && test "$GCC" = yes; then
7663
9059
+    case $_LT_TAGVAR(archive_cmds, $1) in
7664
9060
+    *'~'*)
7672
9068
+      $RM conftest*
7673
9069
+      echo "$lt_simple_compile_test_code" > conftest.$ac_ext
7674
9070
 
7675
 
-# Variables whose values should be saved in libtool wrapper scripts and
7676
 
-# restored at relink time.
7677
 
-variables_saved_for_relink="$variables_saved_for_relink"
 
9071
-# Compiler flag to generate thread-safe objects.
 
9072
-thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1)
7678
9073
+      if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
7679
9074
+        soname=conftest
7680
9075
+        lib=conftest
7707
9102
+  ;;
7708
9103
+esac
7709
9104
 
7710
 
-# Whether libtool must link a program against all its dependency libraries.
7711
 
-link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1)
 
9105
-# Library versioning type.
 
9106
-version_type=$version_type
7712
9107
+_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0],
7713
9108
+    [Whether or not to add -lc for building shared libraries])
7714
9109
+_LT_TAGDECL([allow_libtool_libs_with_static_runtimes],
7786
9181
+dnl    [Compiler flag to generate thread safe objects])
7787
9182
+])# _LT_LINKER_SHLIBS
7788
9183
 
7789
 
-# Compile-time system search path for libraries
7790
 
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
 
9184
-# Format of library name prefix.
 
9185
-libname_spec=$lt_libname_spec
7791
9186
 
7792
 
-# Run-time system search path for libraries
7793
 
-sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
 
9187
-# List of archive names.  First name is the real one, the rest are links.
 
9188
-# The last name is the one that the linker finds with -lNAME.
 
9189
-library_names_spec=$lt_library_names_spec
7794
9190
+# _LT_LANG_C_CONFIG([TAG])
7795
9191
+# ------------------------
7796
9192
+# Ensure that the configuration variables for a C compiler are suitably
7801
9197
+lt_save_CC="$CC"
7802
9198
+AC_LANG_PUSH(C)
7803
9199
 
7804
 
-# Fix the shell variable \$srcfile for the compiler.
7805
 
-fix_srcfile_path=$lt_fix_srcfile_path
 
9200
-# The coded name of the library, if different from the real name.
 
9201
-soname_spec=$lt_soname_spec
7806
9202
+# Source file extension for C test sources.
7807
9203
+ac_ext=c
7808
9204
 
7809
 
-# Set to yes if exported symbols are required.
7810
 
-always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1)
 
9205
-# Commands used to build and install an old-style archive.
 
9206
-RANLIB=$lt_RANLIB
 
9207
-old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1)
 
9208
-old_postinstall_cmds=$lt_old_postinstall_cmds
 
9209
-old_postuninstall_cmds=$lt_old_postuninstall_cmds
7811
9210
+# Object file extension for compiled C test sources.
7812
9211
+objext=o
7813
9212
+_LT_TAGVAR(objext, $1)=$objext
7814
9213
 
7815
 
-# The commands to list exported symbols.
7816
 
-export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1)
 
9214
-# Create an old-style archive from a shared archive.
 
9215
-old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1)
7817
9216
+# Code to be used in simple compile tests
7818
9217
+lt_simple_compile_test_code="int some_variable = 0;"
7819
9218
 
7820
 
-# The commands to extract the exported symbol list from a shared archive.
7821
 
-extract_expsyms_cmds=$lt_extract_expsyms_cmds
 
9219
-# Create a temporary old-style archive to link instead of a shared archive.
 
9220
-old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)
7822
9221
+# Code to be used in simple link tests
7823
9222
+lt_simple_link_test_code='int main(){return(0);}'
7824
9223
 
7825
 
-# Symbols that should not be listed in the preloaded symbols.
7826
 
-exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1)
 
9224
-# Commands used to build and install a shared archive.
 
9225
-archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1)
 
9226
-archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1)
 
9227
-postinstall_cmds=$lt_postinstall_cmds
 
9228
-postuninstall_cmds=$lt_postuninstall_cmds
7827
9229
+_LT_TAG_COMPILER
7828
9230
+# Save the default compiler, since it gets overwritten when the other
7829
9231
+# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.
7830
9232
+compiler_DEFAULT=$CC
7831
9233
 
7832
 
-# Symbols that must always be exported.
7833
 
-include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1)
 
9234
-# Commands used to build a loadable module (assumed same as above if empty)
 
9235
-module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1)
 
9236
-module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1)
7834
9237
+# save warnings/boilerplate of simple test code
7835
9238
+_LT_COMPILER_BOILERPLATE
7836
9239
+_LT_LINKER_BOILERPLATE
7837
9240
 
7838
 
-ifelse([$1],[],
7839
 
-[# ### END LIBTOOL CONFIG],
7840
 
-[# ### END LIBTOOL TAG CONFIG: $tagname])
 
9241
-# Commands to strip libraries.
 
9242
-old_striplib=$lt_old_striplib
 
9243
-striplib=$lt_striplib
7841
9244
+if test -n "$compiler"; then
7842
9245
+  _LT_COMPILER_NO_RTTI($1)
7843
9246
+  _LT_COMPILER_PIC($1)
7853
9256
+  AC_MSG_CHECKING([if libtool supports shared libraries])
7854
9257
+  AC_MSG_RESULT([$can_build_shared])
7855
9258
 
7856
 
-__EOF__
 
9259
-# Dependencies to place before the objects being linked to create a
 
9260
-# shared library.
 
9261
-predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1)
7857
9262
+  AC_MSG_CHECKING([whether to build shared libraries])
7858
9263
+  test "$can_build_shared" = "no" && enable_shared=no
7859
9264
 
7860
 
-ifelse([$1],[], [
 
9265
-# Dependencies to place after the objects being linked to create a
 
9266
-# shared library.
 
9267
-postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1)
7861
9268
+  # On AIX, shared libraries and static libraries use the same namespace, and
7862
9269
+  # are all built from PIC.
7863
 
   case $host_os in
7864
 
   aix3*)
7865
 
-    cat <<\EOF >> "$cfgfile"
 
9270
+  case $host_os in
 
9271
+  aix3*)
7866
9272
+    test "$enable_shared" = yes && enable_static=no
7867
9273
+    if test -n "$RANLIB"; then
7868
9274
+      archive_cmds="$archive_cmds~\$RANLIB \$lib"
7870
9276
+    fi
7871
9277
+    ;;
7872
9278
 
7873
 
-# AIX sometimes has problems with the GCC collect2 program.  For some
7874
 
-# reason, if we set the COLLECT_NAMES environment variable, the problems
7875
 
-# vanish in a puff of smoke.
7876
 
-if test "X${COLLECT_NAMES+set}" != Xset; then
7877
 
-  COLLECT_NAMES=
7878
 
-  export COLLECT_NAMES
7879
 
-fi
7880
 
-EOF
 
9279
-# Dependencies to place before the objects being linked to create a
 
9280
-# shared library.
 
9281
-predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1)
7881
9282
+  aix[[4-9]]*)
7882
9283
+    if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
7883
9284
+      test "$enable_shared" = yes && enable_static=no
7884
9285
+    fi
7885
 
     ;;
7886
 
   esac
 
9286
+    ;;
 
9287
+  esac
7887
9288
+  AC_MSG_RESULT([$enable_shared])
7888
9289
 
7889
 
-  # We use sed instead of cat because bash on DJGPP gets confused if
7890
 
-  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
7891
 
-  # text mode, it properly converts lines to CR/LF.  This bash problem
7892
 
-  # is reportedly fixed, but why not run on old versions too?
7893
 
-  sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1)
 
9290
-# Dependencies to place after the objects being linked to create a
 
9291
-# shared library.
 
9292
-postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1)
7894
9293
+  AC_MSG_CHECKING([whether to build static libraries])
7895
9294
+  # Make sure either enable_shared or enable_static is yes.
7896
9295
+  test "$enable_shared" = yes || enable_static=yes
7897
9296
+  AC_MSG_RESULT([$enable_static])
7898
9297
 
7899
 
-  mv -f "$cfgfile" "$ofile" || \
7900
 
-    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
7901
 
-  chmod +x "$ofile"
7902
 
-])
7903
 
-else
7904
 
-  # If there is no Makefile yet, we rely on a make rule to execute
7905
 
-  # `config.status --recheck' to rerun these tests and create the
7906
 
-  # libtool script then.
7907
 
-  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
7908
 
-  if test -f "$ltmain_in"; then
7909
 
-    test -f Makefile && make "$ltmain"
7910
 
-  fi
 
9298
-# The directories searched by this compiler when creating a shared
 
9299
-# library
 
9300
-compiler_lib_search_dirs=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_dirs, $1)
7911
9301
+  _LT_CONFIG($1)
7912
 
 fi
7913
 
-])# AC_LIBTOOL_CONFIG
 
9302
+fi
7914
9303
+AC_LANG_POP
7915
9304
+CC="$lt_save_CC"
7916
9305
+])# _LT_LANG_C_CONFIG
7917
9306
 
 
9307
-# The library search path used internally by the compiler when linking
 
9308
-# a shared library.
 
9309
-compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1)
7918
9310
 
7919
 
-# AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME])
7920
 
-# -------------------------------------------
7921
 
-AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI],
7922
 
-[AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
 
9311
-# Method to check whether dependent libraries are shared objects.
 
9312
-deplibs_check_method=$lt_deplibs_check_method
7923
9313
+# _LT_PROG_CXX
7924
9314
+# ------------
7925
9315
+# Since AC_PROG_CXX is broken, in that it returns g++ if there is no c++
7938
9328
+popdef([AC_MSG_ERROR])
7939
9329
+])# _LT_PROG_CXX
7940
9330
 
7941
 
-_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
 
9331
-# Command to use when deplibs_check_method == file_magic.
 
9332
-file_magic_cmd=$lt_file_magic_cmd
7942
9333
+dnl aclocal-1.4 backwards compatibility:
7943
9334
+dnl AC_DEFUN([_LT_PROG_CXX], [])
7944
9335
 
7945
 
-if test "$GCC" = yes; then
7946
 
-  _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
 
9336
-# Flag that allows shared libraries with undefined symbols to be built.
 
9337
-allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1)
7947
9338
 
7948
 
-  AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
7949
 
-    lt_cv_prog_compiler_rtti_exceptions,
7950
 
-    [-fno-rtti -fno-exceptions], [],
7951
 
-    [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
7952
 
-fi
7953
 
-])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI
 
9339
-# Flag that forces no undefined symbols.
 
9340
-no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1)
7954
9341
+# _LT_LANG_CXX_CONFIG([TAG])
7955
9342
+# --------------------------
7956
9343
+# Ensure that the configuration variables for a C++ compiler are suitably
7985
9372
+_LT_TAGVAR(whole_archive_flag_spec, $1)=
7986
9373
+_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
7987
9374
 
 
9375
-# Commands used to finish a libtool library installation in a directory.
 
9376
-finish_cmds=$lt_finish_cmds
7988
9377
+# Source file extension for C++ test sources.
7989
9378
+ac_ext=cpp
7990
9379
 
7991
 
-# AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
7992
 
-# ---------------------------------
7993
 
-AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE],
7994
 
-[AC_REQUIRE([AC_CANONICAL_HOST])
7995
 
-AC_REQUIRE([LT_AC_PROG_SED])
7996
 
-AC_REQUIRE([AC_PROG_NM])
7997
 
-AC_REQUIRE([AC_OBJEXT])
7998
 
-# Check for command to grab the raw symbol name followed by C symbol from nm.
7999
 
-AC_MSG_CHECKING([command to parse $NM output from $compiler object])
8000
 
-AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
8001
 
-[
8002
 
-# These are sane defaults that work on at least a few old systems.
8003
 
-# [They come from Ultrix.  What could be older than Ultrix?!! ;)]
 
9380
-# Same as above, but a single script fragment to be evaled but not shown.
 
9381
-finish_eval=$lt_finish_eval
8004
9382
+# Object file extension for compiled C++ test sources.
8005
9383
+objext=o
8006
9384
+_LT_TAGVAR(objext, $1)=$objext
8007
9385
 
8008
 
-# Character class describing NM global symbol codes.
8009
 
-symcode='[[BCDEGRST]]'
 
9386
-# Take the output of nm and produce a listing of raw symbols and C names.
 
9387
-global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
8010
9388
+# No sense in running all these tests if we already determined that
8011
9389
+# the CXX compiler isn't working.  Some variables (like enable_shared)
8012
9390
+# are currently assumed to apply to all compilers on this platform,
8048
9426
+  _LT_TAGVAR(compiler, $1)=$CC
8049
9427
+  _LT_CC_BASENAME([$compiler])
8050
9428
 
8051
 
-# Regexp to match symbols that can be accessed directly from C.
8052
 
-sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
 
9429
-# Transform the output of nm in a proper C declaration
 
9430
-global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
8053
9431
+  if test -n "$compiler"; then
8054
9432
+    # We don't want -fno-exception when compiling C++ code, so set the
8055
9433
+    # no_builtin_flag separately
8059
9437
+      _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
8060
9438
+    fi
8061
9439
 
8062
 
-# Transform an extracted symbol line into a proper C declaration
8063
 
-lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'"
 
9440
-# Transform the output of nm in a C name address pair
 
9441
-global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
8064
9442
+    if test "$GXX" = yes; then
8065
9443
+      # Set up default GNU C++ configuration
8066
9444
 
8067
 
-# Transform an extracted symbol line into symbol name and symbol address
8068
 
-lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/  {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/  {\"\2\", (lt_ptr) \&\2},/p'"
 
9445
-# This is the shared library runtime path variable.
 
9446
-runpath_var=$runpath_var
8069
9447
+      LT_PATH_LD
8070
9448
 
8071
 
-# Define system-specific variables.
8072
 
-case $host_os in
8073
 
-aix*)
8074
 
-  symcode='[[BCDT]]'
8075
 
-  ;;
8076
 
-cygwin* | mingw* | pw32*)
8077
 
-  symcode='[[ABCDGISTW]]'
8078
 
-  ;;
8079
 
-hpux*) # Its linker distinguishes data from code symbols
8080
 
-  if test "$host_cpu" = ia64; then
8081
 
-    symcode='[[ABCDEGRST]]'
8082
 
-  fi
8083
 
-  lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
8084
 
-  lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/  {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"\2\", (lt_ptr) \&\2},/p'"
8085
 
-  ;;
8086
 
-linux* | k*bsd*-gnu)
8087
 
-  if test "$host_cpu" = ia64; then
8088
 
-    symcode='[[ABCDGIRSTW]]'
8089
 
-    lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
8090
 
-    lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/  {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"\2\", (lt_ptr) \&\2},/p'"
8091
 
-  fi
8092
 
-  ;;
8093
 
-irix* | nonstopux*)
8094
 
-  symcode='[[BCDEGRST]]'
8095
 
-  ;;
8096
 
-osf*)
8097
 
-  symcode='[[BCDEGQRST]]'
8098
 
-  ;;
8099
 
-solaris*)
8100
 
-  symcode='[[BDRT]]'
8101
 
-  ;;
8102
 
-sco3.2v5*)
8103
 
-  symcode='[[DT]]'
8104
 
-  ;;
8105
 
-sysv4.2uw2*)
8106
 
-  symcode='[[DT]]'
8107
 
-  ;;
8108
 
-sysv5* | sco5v6* | unixware* | OpenUNIX*)
8109
 
-  symcode='[[ABDT]]'
8110
 
-  ;;
8111
 
-sysv4)
8112
 
-  symcode='[[DFNSTU]]'
8113
 
-  ;;
8114
 
-esac
 
9449
-# This is the shared library path variable.
 
9450
-shlibpath_var=$shlibpath_var
8115
9451
+      # Check if GNU C++ uses GNU ld as the underlying linker, since the
8116
9452
+      # archiving commands below assume that GNU ld is being used.
8117
9453
+      if test "$with_gnu_ld" = yes; then
8118
9454
+        _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
8119
9455
+        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
8120
 
 
8121
 
-# Handle CRLF in mingw tool chain
8122
 
-opt_cr=
8123
 
-case $build_os in
8124
 
-mingw*)
8125
 
-  opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp
8126
 
-  ;;
8127
 
-esac
 
9456
+
8128
9457
+        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
8129
9458
+        _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
8130
 
 
8131
 
-# If we're using GNU nm, then use its standard symbol codes.
8132
 
-case `$NM -V 2>&1` in
8133
 
-*GNU* | *'with BFD'*)
8134
 
-  symcode='[[ABCDGIRSTW]]' ;;
8135
 
-esac
 
9459
+
8136
9460
+        # If archive_cmds runs LD, not CC, wlarc should be empty
8137
9461
+        # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
8138
9462
+        #     investigate it a little bit more. (MM)
8139
9463
+        wlarc='${wl}'
8140
 
 
8141
 
-# Try without a prefix undercore, then with it.
8142
 
-for ac_symprfx in "" "_"; do
 
9464
+
8143
9465
+        # ancient GNU ld didn't support --whole-archive et. al.
8144
9466
+        if eval "`$CC -print-prog-name=ld` --help 2>&1" |
8145
9467
+         $GREP 'no-whole-archive' > /dev/null; then
8151
9473
+        with_gnu_ld=no
8152
9474
+        wlarc=
8153
9475
 
8154
 
-  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
8155
 
-  symxfrm="\\1 $ac_symprfx\\2 \\2"
 
9476
-# Is shlibpath searched before the hard-coded library search path?
 
9477
-shlibpath_overrides_runpath=$shlibpath_overrides_runpath
8156
9478
+        # A generic and very simple default shared library creation
8157
9479
+        # command for GNU C++ for the case where it uses the native
8158
9480
+        # linker, instead of GNU ld.  If possible, this setting should
8161
9483
+        _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
8162
9484
+      fi
8163
9485
 
8164
 
-  # Write the raw and C identifiers.
8165
 
-  lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[     ]]\($symcode$symcode*\)[[       ]][[    ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
 
9486
-# How to hardcode a shared library path into an executable.
 
9487
-hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1)
8166
9488
+      # Commands to make compiler produce verbose output that lists
8167
9489
+      # what "hidden" libraries, object files and flags are used when
8168
9490
+      # linking a shared library.
8169
9491
+      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"'
8170
9492
 
8171
 
-  # Check to see that the pipe works correctly.
8172
 
-  pipe_works=no
 
9493
-# Whether we should hardcode library paths into libraries.
 
9494
-hardcode_into_libs=$hardcode_into_libs
8173
9495
+    else
8174
9496
+      GXX=no
8175
9497
+      with_gnu_ld=no
8176
9498
+      wlarc=
8177
9499
+    fi
8178
9500
 
8179
 
-  rm -f conftest*
8180
 
-  cat > conftest.$ac_ext <<EOF
8181
 
-#ifdef __cplusplus
8182
 
-extern "C" {
8183
 
-#endif
8184
 
-char nm_test_var;
8185
 
-void nm_test_func(){}
8186
 
-#ifdef __cplusplus
8187
 
-}
8188
 
-#endif
8189
 
-int main(){nm_test_var='a';nm_test_func();return(0);}
8190
 
-EOF
 
9501
-# Flag to hardcode \$libdir into a binary during linking.
 
9502
-# This must work even if \$libdir does not exist.
 
9503
-hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)
8191
9504
+    # PORTME: fill in a description of your system's C++ link characteristics
8192
9505
+    AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
8193
9506
+    _LT_TAGVAR(ld_shlibs, $1)=yes
8205
9518
+          no_entry_flag=""
8206
9519
+        else
8207
9520
+          aix_use_runtimelinking=no
8208
 
+
 
9521
 
 
9522
-# If ld is used when linking, flag to hardcode \$libdir into
 
9523
-# a binary during linking. This must work even if \$libdir does
 
9524
-# not exist.
 
9525
-hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)
8209
9526
+          # Test if we are trying to use run time linking or normal
8210
9527
+          # AIX style linking. If -brtl is somewhere in LDFLAGS, we
8211
9528
+          # need to do runtime linking.
8221
9538
+           ;;
8222
9539
+          esac
8223
9540
 
8224
 
-  if AC_TRY_EVAL(ac_compile); then
8225
 
-    # Now try to grab the symbols.
8226
 
-    nlist=conftest.nm
8227
 
-    if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then
8228
 
-      # Try sorting and uniquifying the output.
8229
 
-      if sort "$nlist" | uniq > "$nlist"T; then
8230
 
-       mv -f "$nlist"T "$nlist"
8231
 
-      else
8232
 
-       rm -f "$nlist"T
 
9541
-# Whether we need a single -rpath flag with a separated argument.
 
9542
-hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1)
8233
9543
+          exp_sym_flag='-bexport'
8234
9544
+          no_entry_flag='-bnoentry'
8235
 
       fi
 
9545
+        fi
8236
9546
 
8237
 
-      # Make sure that we snagged all the symbols we need.
8238
 
-      if grep ' nm_test_var$' "$nlist" >/dev/null; then
8239
 
-       if grep ' nm_test_func$' "$nlist" >/dev/null; then
8240
 
-         cat <<EOF > conftest.$ac_ext
8241
 
-#ifdef __cplusplus
8242
 
-extern "C" {
8243
 
-#endif
8244
 
-
8245
 
-EOF
8246
 
-         # Now generate the symbol file.
8247
 
-         eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext'
8248
 
-
8249
 
-         cat <<EOF >> conftest.$ac_ext
8250
 
-#if defined (__STDC__) && __STDC__
8251
 
-# define lt_ptr_t void *
8252
 
-#else
8253
 
-# define lt_ptr_t char *
8254
 
-# define const
8255
 
-#endif
 
9547
-# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the
 
9548
-# resulting binary.
 
9549
-hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1)
8256
9550
+        # When large executables or shared objects are built, AIX ld can
8257
9551
+        # have problems creating the table of contents.  If linking a library
8258
9552
+        # or program results in "error TOC overflow" add -mminimal-toc to
8259
9553
+        # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
8260
9554
+        # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
8261
 
 
8262
 
-/* The mapping between symbol names and symbols. */
8263
 
-const struct {
8264
 
-  const char *name;
8265
 
-  lt_ptr_t address;
8266
 
-}
8267
 
-lt_preloaded_symbols[[]] =
8268
 
-{
8269
 
-EOF
8270
 
-         $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/  {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext
8271
 
-         cat <<\EOF >> conftest.$ac_ext
8272
 
-  {0, (lt_ptr_t) 0}
8273
 
-};
 
9555
+
8274
9556
+        _LT_TAGVAR(archive_cmds, $1)=''
8275
9557
+        _LT_TAGVAR(hardcode_direct, $1)=yes
8276
9558
+        _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
8277
9559
+        _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
8278
9560
+        _LT_TAGVAR(link_all_deplibs, $1)=yes
8279
9561
+        _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
8280
 
 
8281
 
-#ifdef __cplusplus
8282
 
-}
8283
 
-#endif
8284
 
-EOF
8285
 
-         # Now try linking the two files.
8286
 
-         mv conftest.$ac_objext conftstm.$ac_objext
8287
 
-         lt_save_LIBS="$LIBS"
8288
 
-         lt_save_CFLAGS="$CFLAGS"
8289
 
-         LIBS="conftstm.$ac_objext"
8290
 
-         CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
8291
 
-         if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
8292
 
-           pipe_works=yes
8293
 
-         fi
8294
 
-         LIBS="$lt_save_LIBS"
8295
 
-         CFLAGS="$lt_save_CFLAGS"
 
9562
+
8296
9563
+        if test "$GXX" = yes; then
8297
9564
+          case $host_os in aix4.[[012]]|aix4.[[012]].*)
8298
9565
+          # We only want to do this on AIX 4.2 and lower, the check
8303
9570
+         then
8304
9571
+           # We have reworked collect2
8305
9572
+           :
8306
 
        else
8307
 
-         echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
 
9573
+         else
8308
9574
+           # We have old collect2
8309
9575
+           _LT_TAGVAR(hardcode_direct, $1)=unsupported
8310
9576
+           # It fails to find uninstalled libraries when the uninstalled
8313
9579
+           _LT_TAGVAR(hardcode_minus_L, $1)=yes
8314
9580
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
8315
9581
+           _LT_TAGVAR(hardcode_libdir_separator, $1)=
8316
 
        fi
8317
 
-      else
8318
 
-       echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
 
9582
+         fi
8319
9583
+          esac
8320
9584
+          shared_flag='-shared'
8321
9585
+         if test "$aix_use_runtimelinking" = yes; then
8322
9586
+           shared_flag="$shared_flag "'${wl}-G'
8323
 
       fi
8324
 
     else
8325
 
-      echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
8326
 
-    fi
 
9587
+         fi
 
9588
+        else
8327
9589
+          # not using gcc
8328
9590
+          if test "$host_cpu" = ia64; then
8329
9591
+         # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
8330
9592
+         # chokes on -Wl,-G. The following line is correct:
8331
9593
+         shared_flag='-G'
8332
 
   else
8333
 
-    echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
8334
 
-    cat conftest.$ac_ext >&5
8335
 
-  fi
8336
 
-  rm -f conftest* conftst*
8337
 
-
8338
 
-  # Do not use the global_symbol_pipe unless it works.
8339
 
-  if test "$pipe_works" = yes; then
8340
 
-    break
 
9594
+          else
8341
9595
+           if test "$aix_use_runtimelinking" = yes; then
8342
9596
+             shared_flag='${wl}-G'
8343
 
   else
8344
 
-    lt_cv_sys_global_symbol_pipe=
 
9597
+           else
8345
9598
+             shared_flag='${wl}-bM:SRE'
8346
9599
+           fi
8347
9600
+          fi
8348
 
   fi
8349
 
-done
8350
 
-])
8351
 
-if test -z "$lt_cv_sys_global_symbol_pipe"; then
8352
 
-  lt_cv_sys_global_symbol_to_cdecl=
8353
 
-fi
8354
 
-if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
8355
 
-  AC_MSG_RESULT(failed)
8356
 
-else
8357
 
-  AC_MSG_RESULT(ok)
8358
 
-fi
8359
 
-]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
8360
 
-
8361
 
-
8362
 
-# AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME])
8363
 
-# ---------------------------------------
8364
 
-AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC],
8365
 
-[_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)=
8366
 
-_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
8367
 
-_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=
 
9601
+        fi
8368
9602
 
8369
 
-AC_MSG_CHECKING([for $compiler option to produce PIC])
8370
 
- ifelse([$1],[CXX],[
8371
 
-  # C++ specific cases for pic, static, wl, etc.
8372
 
-  if test "$GXX" = yes; then
8373
 
-    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
8374
 
-    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
 
9603
-# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
 
9604
-# resulting binary.
 
9605
-hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1)
8375
9606
+        # It seems that -bexpall does not export symbols beginning with
8376
9607
+        # underscore (_), so it is better to generate a list of symbols to
8377
9608
+       # export.
8385
9616
+          _LT_SYS_MODULE_PATH_AIX
8386
9617
+          _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
8387
9618
 
8388
 
-    case $host_os in
8389
 
-    aix*)
8390
 
-      # All AIX code is PIC.
 
9619
-# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
 
9620
-# the resulting binary.
 
9621
-hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)
8391
9622
+          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
8392
9623
+        else
8393
 
       if test "$host_cpu" = ia64; then
8394
 
-       # AIX 5 now supports IA64 processor
8395
 
-       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
9624
+          if test "$host_cpu" = ia64; then
8396
9625
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
8397
9626
+           _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
8398
9627
+           _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
8411
9640
+           # This is similar to how AIX traditionally builds its shared
8412
9641
+           # libraries.
8413
9642
+           _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
8414
 
       fi
8415
 
-      ;;
8416
 
-    amigaos*)
8417
 
-      # FIXME: we need at least 68020 code to build shared libraries, but
8418
 
-      # adding the `-m68020' flag to GCC prevents building anything better,
8419
 
-      # like `-m68040'.
8420
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
8421
 
-      ;;
8422
 
-    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
8423
 
-      # PIC is the default for these OSes.
8424
 
-      ;;
8425
 
-    mingw* | cygwin* | os2* | pw32*)
8426
 
-      # This hack is so that the source file can tell whether it is being
8427
 
-      # built for inclusion in a dll (and should export symbols for example).
8428
 
-      # Although the cygwin gcc ignores -fPIC, still need this for old-style
8429
 
-      # (--disable-auto-import) libraries
8430
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
8431
 
-      ;;
8432
 
-    darwin* | rhapsody*)
8433
 
-      # PIC is the default on this platform
8434
 
-      # Common symbols not allowed in MH_DYLIB files
8435
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
8436
 
-      ;;
8437
 
-    *djgpp*)
8438
 
-      # DJGPP does not support shared libraries at all
8439
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
8440
 
-      ;;
8441
 
-    interix[[3-9]]*)
8442
 
-      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
8443
 
-      # Instead, we relocate shared libraries at runtime.
8444
 
-      ;;
8445
 
-    sysv4*MP*)
8446
 
-      if test -d /usr/nec; then
8447
 
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
8448
 
       fi
8449
 
       ;;
8450
 
-    hpux*)
8451
 
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
8452
 
-      # not for PA HP-UX.
8453
 
-      case $host_cpu in
8454
 
-      hppa*64*|ia64*)
8455
 
-       ;;
8456
 
-      *)
8457
 
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
8458
 
-       ;;
8459
 
-      esac
8460
 
-      ;;
8461
 
-    *)
8462
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
8463
 
-      ;;
8464
 
-    esac
8465
 
-  else
8466
 
-    case $host_os in
8467
 
-      aix4* | aix5*)
8468
 
-       # All AIX code is PIC.
8469
 
-       if test "$host_cpu" = ia64; then
8470
 
-         # AIX 5 now supports IA64 processor
8471
 
-         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
8472
 
+
 
9643
+          fi
 
9644
+        fi
 
9645
+        ;;
 
9646
 
 
9647
-# Set to yes if building a shared library automatically hardcodes DIR into the library
 
9648
-# and all subsequent libraries and executables linked against it.
 
9649
-hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1)
8473
9650
+      beos*)
8474
9651
+       if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
8475
9652
+         _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
8476
9653
+         # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
8477
9654
+         # support --undefined.  This deserves some investigation.  FIXME
8478
9655
+         _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
8479
 
        else
8480
 
-         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
 
9656
+       else
8481
9657
+         _LT_TAGVAR(ld_shlibs, $1)=no
8482
 
        fi
8483
 
        ;;
8484
 
+
8485
 
       chorus*)
8486
 
        case $cc_basename in
8487
 
-       cxch68*)
8488
 
-         # Green Hills C++ Compiler
8489
 
-         # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a"
 
9658
+       fi
 
9659
+       ;;
 
9660
 
 
9661
-# Variables whose values should be saved in libtool wrapper scripts and
 
9662
-# restored at relink time.
 
9663
-variables_saved_for_relink="$variables_saved_for_relink"
 
9664
+      chorus*)
 
9665
+        case $cc_basename in
8490
9666
+          *)
8491
9667
+         # FIXME: insert proper C++ library support
8492
9668
+         _LT_TAGVAR(ld_shlibs, $1)=no
8493
 
          ;;
8494
 
        esac
8495
 
        ;;
8496
 
-       darwin*)
8497
 
-         # PIC is the default on this platform
8498
 
-         # Common symbols not allowed in MH_DYLIB files
8499
 
-         case $cc_basename in
8500
 
-           xlc*)
8501
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon'
8502
 
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
8503
 
+
 
9669
+         ;;
 
9670
+        esac
 
9671
+        ;;
 
9672
 
 
9673
-# Whether libtool must link a program against all its dependency libraries.
 
9674
-link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1)
8504
9675
+      cygwin* | mingw* | pw32*)
8505
9676
+        # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
8506
9677
+        # as there is no search path for DLLs.
8523
9694
+        else
8524
9695
+          _LT_TAGVAR(ld_shlibs, $1)=no
8525
9696
+        fi
8526
 
            ;;
8527
 
-         esac
 
9697
+        ;;
8528
9698
+      darwin* | rhapsody*)
8529
9699
+        _LT_DARWIN_LINKER_FEATURES($1)
8530
 
        ;;
8531
 
+
8532
 
       dgux*)
8533
 
        case $cc_basename in
8534
 
          ec++*)
8535
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
8536
 
+           # FIXME: insert proper C++ library support
8537
 
+           _LT_TAGVAR(ld_shlibs, $1)=no
8538
 
            ;;
8539
 
          ghcx*)
8540
 
            # Green Hills C++ Compiler
8541
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
8542
 
+           # FIXME: insert proper C++ library support
8543
 
+           _LT_TAGVAR(ld_shlibs, $1)=no
8544
 
            ;;
8545
 
          *)
8546
 
+           # FIXME: insert proper C++ library support
8547
 
+           _LT_TAGVAR(ld_shlibs, $1)=no
8548
 
            ;;
8549
 
        esac
8550
 
        ;;
8551
 
+
 
9700
+       ;;
 
9701
 
 
9702
-# Compile-time system search path for libraries
 
9703
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
 
9704
+      dgux*)
 
9705
+        case $cc_basename in
 
9706
+          ec++*)
 
9707
+           # FIXME: insert proper C++ library support
 
9708
+           _LT_TAGVAR(ld_shlibs, $1)=no
 
9709
+           ;;
 
9710
+          ghcx*)
 
9711
+           # Green Hills C++ Compiler
 
9712
+           # FIXME: insert proper C++ library support
 
9713
+           _LT_TAGVAR(ld_shlibs, $1)=no
 
9714
+           ;;
 
9715
+          *)
 
9716
+           # FIXME: insert proper C++ library support
 
9717
+           _LT_TAGVAR(ld_shlibs, $1)=no
 
9718
+           ;;
 
9719
+        esac
 
9720
+        ;;
 
9721
 
 
9722
-# Run-time system search path for libraries
 
9723
-sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
8552
9724
+      freebsd[[12]]*)
8553
9725
+        # C++ shared libraries reported to be fairly broken before
8554
9726
+       # switch to ELF
8555
9727
+        _LT_TAGVAR(ld_shlibs, $1)=no
8556
9728
+        ;;
8557
 
+
 
9729
 
 
9730
-# Fix the shell variable \$srcfile for the compiler.
 
9731
-fix_srcfile_path=$lt_fix_srcfile_path
8558
9732
+      freebsd-elf*)
8559
9733
+        _LT_TAGVAR(archive_cmds_need_lc, $1)=no
8560
9734
+        ;;
8561
 
+
8562
 
       freebsd* | dragonfly*)
8563
 
-       # FreeBSD uses GNU C++
 
9735
 
 
9736
-# Set to yes if exported symbols are required.
 
9737
-always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1)
 
9738
+      freebsd* | dragonfly*)
8564
9739
+        # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
8565
9740
+        # conventions
8566
9741
+        _LT_TAGVAR(ld_shlibs, $1)=yes
8567
 
        ;;
8568
 
-      hpux9* | hpux10* | hpux11*)
8569
 
+
 
9742
+        ;;
 
9743
 
 
9744
-# The commands to list exported symbols.
 
9745
-export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1)
8570
9746
+      gnu*)
8571
9747
+        ;;
8572
 
+
 
9748
 
 
9749
-# The commands to extract the exported symbol list from a shared archive.
 
9750
-extract_expsyms_cmds=$lt_extract_expsyms_cmds
8573
9751
+      hpux9*)
8574
9752
+        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
8575
9753
+        _LT_TAGVAR(hardcode_libdir_separator, $1)=:
8579
9757
+                                            # but as the default
8580
9758
+                                            # location of the library.
8581
9759
+
8582
 
        case $cc_basename in
8583
 
          CC*)
8584
 
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
8585
 
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
8586
 
-           if test "$host_cpu" != ia64; then
8587
 
-             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
8588
 
-           fi
 
9760
+        case $cc_basename in
 
9761
+          CC*)
8589
9762
+            # FIXME: insert proper C++ library support
8590
9763
+            _LT_TAGVAR(ld_shlibs, $1)=no
8591
 
            ;;
8592
 
          aCC*)
8593
 
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
8594
 
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
 
9764
+            ;;
 
9765
+          aCC*)
8595
9766
+            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
8596
9767
+            # Commands to make compiler produce verbose output that lists
8597
9768
+            # what "hidden" libraries, object files and flags are used when
8613
9784
+            ;;
8614
9785
+        esac
8615
9786
+        ;;
8616
 
+
 
9787
 
 
9788
-# Symbols that should not be listed in the preloaded symbols.
 
9789
-exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1)
8617
9790
+      hpux10*|hpux11*)
8618
9791
+        if test $with_gnu_ld = no; then
8619
9792
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
8620
9793
+         _LT_TAGVAR(hardcode_libdir_separator, $1)=:
8621
9794
+
8622
 
            case $host_cpu in
8623
 
            hppa*64*|ia64*)
8624
 
-             # +Z the default
8625
 
              ;;
8626
 
            *)
8627
 
-             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
 
9795
+          case $host_cpu in
 
9796
+            hppa*64*|ia64*)
 
9797
+              ;;
 
9798
+            *)
8628
9799
+             _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
8629
9800
+              ;;
8630
9801
+          esac
8658
9829
+               ;;
8659
9830
+             *)
8660
9831
+               _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
8661
 
              ;;
8662
 
            esac
 
9832
+               ;;
 
9833
+           esac
8663
9834
+           # Commands to make compiler produce verbose output that lists
8664
9835
+           # what "hidden" libraries, object files and flags are used when
8665
9836
+           # linking a shared library.
8679
9850
+                   ;;
8680
9851
+                 ia64*)
8681
9852
+                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
8682
 
            ;;
8683
 
          *)
 
9853
+                   ;;
 
9854
+                 *)
8684
9855
+                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
8685
 
            ;;
8686
 
        esac
 
9856
+                   ;;
 
9857
+               esac
8687
9858
+             fi
8688
9859
+           else
8689
9860
+             # FIXME: insert proper C++ library support
8690
9861
+             _LT_TAGVAR(ld_shlibs, $1)=no
8691
9862
+           fi
8692
 
        ;;
8693
 
-      interix*)
8694
 
-       # This is c89, which is MS Visual C++ (no shared libs)
8695
 
-       # Anyone wants to do a port?
 
9863
+           ;;
8696
9864
+        esac
8697
 
        ;;
8698
 
-      irix5* | irix6* | nonstopux*)
8699
 
+
 
9865
+        ;;
 
9866
 
 
9867
-# Symbols that must always be exported.
 
9868
-include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1)
8700
9869
+      interix[[3-9]]*)
8701
9870
+       _LT_TAGVAR(hardcode_direct, $1)=no
8702
9871
+       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
8712
9881
+       _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
8713
9882
+       ;;
8714
9883
+      irix5* | irix6*)
8715
 
        case $cc_basename in
8716
 
          CC*)
8717
 
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
8718
 
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
8719
 
-           # CC pic flag -KPIC is the default.
 
9884
+        case $cc_basename in
 
9885
+          CC*)
8720
9886
+           # SGI C++
8721
9887
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
8722
9888
+
8725
9891
+           # necessary to make sure instantiated templates are included
8726
9892
+           # in the archive.
8727
9893
+           _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
8728
 
            ;;
8729
 
          *)
 
9894
+           ;;
 
9895
+          *)
8730
9896
+           if test "$GXX" = yes; then
8731
9897
+             if test "$with_gnu_ld" = no; then
8732
9898
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
8735
9901
+             fi
8736
9902
+           fi
8737
9903
+           _LT_TAGVAR(link_all_deplibs, $1)=yes
8738
 
            ;;
8739
 
        esac
 
9904
+           ;;
 
9905
+        esac
8740
9906
+        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
8741
9907
+        _LT_TAGVAR(hardcode_libdir_separator, $1)=:
8742
9908
+        _LT_TAGVAR(inherit_rpath, $1)=yes
8743
 
        ;;
8744
 
+
8745
 
       linux* | k*bsd*-gnu)
8746
 
        case $cc_basename in
8747
 
          KCC*)
8748
 
-           # KAI C++ Compiler
8749
 
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
8750
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
 
9909
+        ;;
 
9910
 
 
9911
-ifelse([$1],[],
 
9912
-[# ### END LIBTOOL CONFIG],
 
9913
-[# ### END LIBTOOL TAG CONFIG: $tagname])
 
9914
+      linux* | k*bsd*-gnu)
 
9915
+        case $cc_basename in
 
9916
+          KCC*)
8751
9917
+           # Kuck and Associates, Inc. (KAI) C++ Compiler
8752
9918
+
8753
9919
+           # KCC will only create a shared library if the output file
8771
9937
+           # Archives containing C++ object files must be created using
8772
9938
+           # "CC -Bstatic", where "CC" is the KAI C++ compiler.
8773
9939
+           _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
8774
 
            ;;
8775
 
-         icpc* | ecpc*)
 
9940
+           ;;
8776
9941
+         icpc* | ecpc* )
8777
 
            # Intel C++
8778
 
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
8779
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
8780
 
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
8781
 
-           ;;
8782
 
-         pgCC*)
8783
 
-           # Portland Group C++ compiler.
8784
 
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
8785
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
8786
 
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
9942
+           # Intel C++
8787
9943
+           with_gnu_ld=yes
8788
9944
+           # version 8.0 and above of icpc choke on multiply defined symbols
8789
9945
+           # if we add $predep_objects and $postdep_objects, however 7.1 and
8834
9990
+             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
8835
9991
+             ;;
8836
9992
+           esac
8837
 
+
 
9993
 
 
9994
-__EOF__
8838
9995
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
8839
9996
+           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
8840
9997
+           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive'
8841
 
            ;;
8842
 
          cxx*)
8843
 
            # Compaq C++
8844
 
-           # Make sure the PIC flag is empty.  It appears that all Alpha
8845
 
-           # Linux and Compaq Tru64 Unix objects are PIC.
8846
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
8847
 
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
 
9998
+            ;;
 
9999
+         cxx*)
 
10000
+           # Compaq C++
8848
10001
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
8849
10002
+           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname  -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
8850
 
+
 
10003
 
 
10004
-ifelse([$1],[], [
 
10005
-  case $host_os in
 
10006
-  aix3*)
 
10007
-    cat <<\EOF >> "$cfgfile"
8851
10008
+           runpath_var=LD_RUN_PATH
8852
10009
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
8853
10010
+           _LT_TAGVAR(hardcode_libdir_separator, $1)=:
8854
 
+
 
10011
 
 
10012
-# AIX sometimes has problems with the GCC collect2 program.  For some
 
10013
-# reason, if we set the COLLECT_NAMES environment variable, the problems
 
10014
-# vanish in a puff of smoke.
 
10015
-if test "X${COLLECT_NAMES+set}" != Xset; then
 
10016
-  COLLECT_NAMES=
 
10017
-  export COLLECT_NAMES
 
10018
-fi
 
10019
-EOF
 
10020
-    ;;
 
10021
-  esac
8855
10022
+           # Commands to make compiler produce verbose output that lists
8856
10023
+           # what "hidden" libraries, object files and flags are used when
8857
10024
+           # linking a shared library.
8873
10040
+               echo "local: *; };" >> $output_objdir/$libname.ver~
8874
10041
+               $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
8875
10042
+           fi
8876
 
            ;;
8877
 
          *)
8878
 
            case `$CC -V 2>&1 | sed 5q` in
8879
 
            *Sun\ C*)
8880
 
              # Sun C++ 5.9
8881
 
-             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
8882
 
-             _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
8883
 
-             _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
 
10043
+           ;;
 
10044
+         *)
 
10045
+           case `$CC -V 2>&1 | sed 5q` in
 
10046
+           *Sun\ C*)
 
10047
+             # Sun C++ 5.9
8884
10048
+             _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
8885
10049
+             _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
8886
10050
+             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols'
8898
10062
+             # necessary to make sure instantiated templates are included
8899
10063
+             # in the archive.
8900
10064
+             _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
8901
 
              ;;
8902
 
            esac
8903
 
            ;;
8904
 
        esac
8905
 
        ;;
8906
 
+
8907
 
       lynxos*)
 
10065
+             ;;
 
10066
+           esac
 
10067
+           ;;
 
10068
+       esac
 
10069
+       ;;
 
10070
 
 
10071
-  # We use sed instead of cat because bash on DJGPP gets confused if
 
10072
-  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
 
10073
-  # text mode, it properly converts lines to CR/LF.  This bash problem
 
10074
-  # is reportedly fixed, but why not run on old versions too?
 
10075
-  sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1)
 
10076
+      lynxos*)
8908
10077
+        # FIXME: insert proper C++ library support
8909
10078
+       _LT_TAGVAR(ld_shlibs, $1)=no
8910
 
        ;;
8911
 
+
8912
 
       m88k*)
 
10079
+       ;;
 
10080
 
 
10081
-  mv -f "$cfgfile" "$ofile" || \
 
10082
-    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
 
10083
-  chmod +x "$ofile"
 
10084
-])
 
10085
-else
 
10086
-  # If there is no Makefile yet, we rely on a make rule to execute
 
10087
-  # `config.status --recheck' to rerun these tests and create the
 
10088
-  # libtool script then.
 
10089
-  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
 
10090
-  if test -f "$ltmain_in"; then
 
10091
-    test -f Makefile && make "$ltmain"
 
10092
-  fi
 
10093
-fi
 
10094
-])# AC_LIBTOOL_CONFIG
 
10095
+      m88k*)
8913
10096
+        # FIXME: insert proper C++ library support
8914
10097
+        _LT_TAGVAR(ld_shlibs, $1)=no
8915
 
        ;;
8916
 
+
8917
 
       mvs*)
8918
 
        case $cc_basename in
8919
 
          cxx*)
8920
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
8921
 
+           # FIXME: insert proper C++ library support
8922
 
+           _LT_TAGVAR(ld_shlibs, $1)=no
8923
 
            ;;
8924
 
          *)
8925
 
+           # FIXME: insert proper C++ library support
8926
 
+           _LT_TAGVAR(ld_shlibs, $1)=no
8927
 
            ;;
8928
 
        esac
8929
 
        ;;
8930
 
+
8931
 
       netbsd*)
 
10098
+       ;;
 
10099
 
 
10100
+      mvs*)
 
10101
+        case $cc_basename in
 
10102
+          cxx*)
 
10103
+           # FIXME: insert proper C++ library support
 
10104
+           _LT_TAGVAR(ld_shlibs, $1)=no
 
10105
+           ;;
 
10106
+         *)
 
10107
+           # FIXME: insert proper C++ library support
 
10108
+           _LT_TAGVAR(ld_shlibs, $1)=no
 
10109
+           ;;
 
10110
+       esac
 
10111
+       ;;
 
10112
 
 
10113
-# AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME])
 
10114
-# -------------------------------------------
 
10115
-AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI],
 
10116
-[AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
 
10117
+      netbsd*)
8932
10118
+        if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
8933
10119
+         _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
8934
10120
+         wlarc=
8939
10125
+       # Workaround some broken pre-1.5 toolchains
8940
10126
+       output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
8941
10127
+       ;;
8942
 
+
 
10128
 
 
10129
-_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
8943
10130
+      *nto* | *qnx*)
8944
10131
+        _LT_TAGVAR(ld_shlibs, $1)=yes
8945
10132
+       ;;
8946
 
+
 
10133
 
 
10134
-if test "$GCC" = yes; then
 
10135
-  _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
8947
10136
+      openbsd2*)
8948
10137
+        # C++ shared libraries are fairly broken
8949
10138
+       _LT_TAGVAR(ld_shlibs, $1)=no
8965
10154
+       else
8966
10155
+         _LT_TAGVAR(ld_shlibs, $1)=no
8967
10156
+       fi
8968
 
        ;;
8969
 
+
8970
 
       osf3* | osf4* | osf5*)
8971
 
        case $cc_basename in
8972
 
          KCC*)
8973
 
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
 
10157
+       ;;
 
10158
 
 
10159
-  AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
 
10160
-    lt_cv_prog_compiler_rtti_exceptions,
 
10161
-    [-fno-rtti -fno-exceptions], [],
 
10162
-    [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
 
10163
-fi
 
10164
-])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI
 
10165
+      osf3* | osf4* | osf5*)
 
10166
+        case $cc_basename in
 
10167
+          KCC*)
8974
10168
+           # Kuck and Associates, Inc. (KAI) C++ Compiler
8975
10169
+
8976
10170
+           # KCC will only create a shared library if the output file
8987
10181
+             osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;;
8988
10182
+             *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;;
8989
10183
+           esac
8990
 
            ;;
8991
 
          RCC*)
8992
 
            # Rational C++ 2.4.1
8993
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
 
10184
+           ;;
 
10185
+          RCC*)
 
10186
+           # Rational C++ 2.4.1
8994
10187
+           # FIXME: insert proper C++ library support
8995
10188
+           _LT_TAGVAR(ld_shlibs, $1)=no
8996
 
            ;;
8997
 
          cxx*)
8998
 
-           # Digital/Compaq C++
8999
 
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
9000
 
-           # Make sure the PIC flag is empty.  It appears that all Alpha
9001
 
-           # Linux and Compaq Tru64 Unix objects are PIC.
9002
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
9003
 
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
 
10189
+           ;;
 
10190
+          cxx*)
9004
10191
+           case $host in
9005
10192
+             osf3*)
9006
10193
+               _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
9017
10204
+               _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
9018
10205
+               ;;
9019
10206
+           esac
9020
 
+
 
10207
 
9021
10208
+           _LT_TAGVAR(hardcode_libdir_separator, $1)=:
9022
 
+
 
10209
 
 
10210
-# AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
 
10211
-# ---------------------------------
 
10212
-AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE],
 
10213
-[AC_REQUIRE([AC_CANONICAL_HOST])
 
10214
-AC_REQUIRE([LT_AC_PROG_SED])
 
10215
-AC_REQUIRE([AC_PROG_NM])
 
10216
-AC_REQUIRE([AC_OBJEXT])
 
10217
-# Check for command to grab the raw symbol name followed by C symbol from nm.
 
10218
-AC_MSG_CHECKING([command to parse $NM output from $compiler object])
 
10219
-AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
 
10220
-[
 
10221
-# These are sane defaults that work on at least a few old systems.
 
10222
-# [They come from Ultrix.  What could be older than Ultrix?!! ;)]
9023
10223
+           # Commands to make compiler produce verbose output that lists
9024
10224
+           # what "hidden" libraries, object files and flags are used when
9025
10225
+           # linking a shared library.
9057
10257
+           ;;
9058
10258
+        esac
9059
10259
+        ;;
9060
 
+
 
10260
 
 
10261
-# Character class describing NM global symbol codes.
 
10262
-symcode='[[BCDEGRST]]'
9061
10263
+      psos*)
9062
10264
+        # FIXME: insert proper C++ library support
9063
10265
+        _LT_TAGVAR(ld_shlibs, $1)=no
9064
10266
+        ;;
9065
 
+
 
10267
 
 
10268
-# Regexp to match symbols that can be accessed directly from C.
 
10269
-sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
9066
10270
+      sunos4*)
9067
10271
+        case $cc_basename in
9068
10272
+          CC*)
9081
10285
+           ;;
9082
10286
+        esac
9083
10287
+        ;;
9084
 
+
 
10288
 
 
10289
-# Transform an extracted symbol line into a proper C declaration
 
10290
-lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'"
9085
10291
+      solaris*)
9086
10292
+        case $cc_basename in
9087
10293
+          CC*)
9101
10307
+               # but understands `-z linker_flag'.
9102
10308
+               # Supported since Solaris 2.6 (maybe 2.5.1?)
9103
10309
+               _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
9104
 
            ;;
 
10310
+               ;;
9105
10311
+           esac
9106
10312
+           _LT_TAGVAR(link_all_deplibs, $1)=yes
9107
 
+
 
10313
 
 
10314
-# Transform an extracted symbol line into symbol name and symbol address
 
10315
-lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/  {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/  {\"\2\", (lt_ptr) \&\2},/p'"
9108
10316
+           output_verbose_link_cmd='echo'
9109
 
+
 
10317
 
 
10318
-# Define system-specific variables.
 
10319
-case $host_os in
 
10320
-aix*)
 
10321
-  symcode='[[BCDT]]'
 
10322
-  ;;
 
10323
-cygwin* | mingw* | pw32*)
 
10324
-  symcode='[[ABCDGISTW]]'
 
10325
-  ;;
 
10326
-hpux*) # Its linker distinguishes data from code symbols
 
10327
-  if test "$host_cpu" = ia64; then
 
10328
-    symcode='[[ABCDEGRST]]'
 
10329
-  fi
 
10330
-  lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
 
10331
-  lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/  {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"\2\", (lt_ptr) \&\2},/p'"
 
10332
-  ;;
 
10333
-linux* | k*bsd*-gnu)
 
10334
-  if test "$host_cpu" = ia64; then
 
10335
-    symcode='[[ABCDGIRSTW]]'
 
10336
-    lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
 
10337
-    lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/  {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"\2\", (lt_ptr) \&\2},/p'"
 
10338
-  fi
 
10339
-  ;;
 
10340
-irix* | nonstopux*)
 
10341
-  symcode='[[BCDEGRST]]'
 
10342
-  ;;
 
10343
-osf*)
 
10344
-  symcode='[[BCDEGQRST]]'
 
10345
-  ;;
 
10346
-solaris*)
 
10347
-  symcode='[[BDRT]]'
 
10348
-  ;;
 
10349
-sco3.2v5*)
 
10350
-  symcode='[[DT]]'
 
10351
-  ;;
 
10352
-sysv4.2uw2*)
 
10353
-  symcode='[[DT]]'
 
10354
-  ;;
 
10355
-sysv5* | sco5v6* | unixware* | OpenUNIX*)
 
10356
-  symcode='[[ABDT]]'
 
10357
-  ;;
 
10358
-sysv4)
 
10359
-  symcode='[[DFNSTU]]'
 
10360
-  ;;
 
10361
-esac
9110
10362
+           # Archives containing C++ object files must be created using
9111
10363
+           # "CC -xar", where "CC" is the Sun C++ compiler.  This is
9112
10364
+           # necessary to make sure instantiated templates are included
9116
10368
+          gcx*)
9117
10369
+           # Green Hills C++ Compiler
9118
10370
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
9119
 
+
 
10371
 
 
10372
-# Handle CRLF in mingw tool chain
 
10373
-opt_cr=
 
10374
-case $build_os in
 
10375
-mingw*)
 
10376
-  opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp
 
10377
-  ;;
 
10378
-esac
9120
10379
+           # The C++ compiler must be used to create the archive.
9121
10380
+           _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
9122
10381
+           ;;
9149
10408
+             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'
9150
10409
+             case $host_os in
9151
10410
+               solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
9152
 
          *)
 
10411
+               *)
9153
10412
+                 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
9154
 
            ;;
9155
 
        esac
 
10413
+                 ;;
 
10414
+             esac
9156
10415
+           fi
9157
 
        ;;
9158
 
-      psos*)
 
10416
+           ;;
9159
10417
+        esac
9160
 
        ;;
9161
 
-      solaris*)
9162
 
+
 
10418
+        ;;
 
10419
 
 
10420
-# If we're using GNU nm, then use its standard symbol codes.
 
10421
-case `$NM -V 2>&1` in
 
10422
-*GNU* | *'with BFD'*)
 
10423
-  symcode='[[ABCDGIRSTW]]' ;;
 
10424
-esac
9163
10425
+    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
9164
10426
+      _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
9165
10427
+      _LT_TAGVAR(archive_cmds_need_lc, $1)=no
9166
10428
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
9167
10429
+      runpath_var='LD_RUN_PATH'
9168
 
+
9169
 
        case $cc_basename in
9170
 
          CC*)
9171
 
-           # Sun C++ 4.2, 5.x and Centerline C++
9172
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
9173
 
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
9174
 
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
9175
 
-           ;;
9176
 
-         gcx*)
9177
 
-           # Green Hills C++ Compiler
9178
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
 
10430
 
 
10431
-# Try without a prefix undercore, then with it.
 
10432
-for ac_symprfx in "" "_"; do
 
10433
+      case $cc_basename in
 
10434
+        CC*)
9179
10435
+         _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
9180
10436
+         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
9181
 
            ;;
9182
 
          *)
 
10437
+         ;;
 
10438
+       *)
9183
10439
+         _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
9184
10440
+         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
9185
 
            ;;
9186
 
        esac
9187
 
        ;;
9188
 
-      sunos4*)
9189
 
+
 
10441
+         ;;
 
10442
+      esac
 
10443
+      ;;
 
10444
 
 
10445
-  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
 
10446
-  symxfrm="\\1 $ac_symprfx\\2 \\2"
9190
10447
+      sysv5* | sco3.2v5* | sco5v6*)
9191
10448
+       # Note: We can NOT use -z defs as we might desire, because we do not
9192
10449
+       # link with -lc, and that would cause any symbols used from libc to
9203
10460
+       _LT_TAGVAR(link_all_deplibs, $1)=yes
9204
10461
+       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
9205
10462
+       runpath_var='LD_RUN_PATH'
9206
 
+
9207
 
        case $cc_basename in
9208
 
          CC*)
9209
 
-           # Sun C++ 4.x
9210
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
9211
 
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
9212
 
-           ;;
9213
 
-         lcc*)
9214
 
-           # Lucid
9215
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
 
10463
 
 
10464
-  # Write the raw and C identifiers.
 
10465
-  lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[     ]]\($symcode$symcode*\)[[       ]][[    ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
 
10466
+       case $cc_basename in
 
10467
+          CC*)
9216
10468
+           _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
9217
10469
+           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
9218
 
            ;;
9219
 
          *)
 
10470
+           ;;
 
10471
+         *)
9220
10472
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
9221
10473
+           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
9222
 
            ;;
9223
 
        esac
9224
 
        ;;
9225
 
+
9226
 
       tandem*)
9227
 
        case $cc_basename in
9228
 
          NCC*)
9229
 
            # NonStop-UX NCC 3.20
9230
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
9231
 
+           # FIXME: insert proper C++ library support
9232
 
+           _LT_TAGVAR(ld_shlibs, $1)=no
9233
 
            ;;
9234
 
          *)
9235
 
+           # FIXME: insert proper C++ library support
9236
 
+           _LT_TAGVAR(ld_shlibs, $1)=no
9237
 
            ;;
9238
 
        esac
9239
 
        ;;
9240
 
-      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
9241
 
-       case $cc_basename in
9242
 
-         CC*)
9243
 
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
9244
 
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
9245
 
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
9246
 
-           ;;
9247
 
-       esac
9248
 
-       ;;
9249
 
+
9250
 
       vxworks*)
9251
 
+        # FIXME: insert proper C++ library support
9252
 
+        _LT_TAGVAR(ld_shlibs, $1)=no
9253
 
        ;;
9254
 
+
9255
 
       *)
9256
 
-       _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
9257
 
+        # FIXME: insert proper C++ library support
9258
 
+        _LT_TAGVAR(ld_shlibs, $1)=no
9259
 
        ;;
9260
 
     esac
9261
 
-  fi
9262
 
-],
9263
 
-[
9264
 
-  if test "$GCC" = yes; then
9265
 
-    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
9266
 
-    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
9267
 
 
9268
 
-    case $host_os in
9269
 
-      aix*)
9270
 
-      # All AIX code is PIC.
9271
 
-      if test "$host_cpu" = ia64; then
9272
 
-       # AIX 5 now supports IA64 processor
9273
 
-       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
10474
+           ;;
 
10475
+       esac
 
10476
+      ;;
 
10477
 
 
10478
-  # Check to see that the pipe works correctly.
 
10479
-  pipe_works=no
 
10480
+      tandem*)
 
10481
+        case $cc_basename in
 
10482
+          NCC*)
 
10483
+           # NonStop-UX NCC 3.20
 
10484
+           # FIXME: insert proper C++ library support
 
10485
+           _LT_TAGVAR(ld_shlibs, $1)=no
 
10486
+           ;;
 
10487
+          *)
 
10488
+           # FIXME: insert proper C++ library support
 
10489
+           _LT_TAGVAR(ld_shlibs, $1)=no
 
10490
+           ;;
 
10491
+        esac
 
10492
+        ;;
 
10493
 
 
10494
-  rm -f conftest*
 
10495
-  cat > conftest.$ac_ext <<EOF
 
10496
-#ifdef __cplusplus
 
10497
-extern "C" {
 
10498
-#endif
 
10499
-char nm_test_var;
 
10500
-void nm_test_func(){}
 
10501
-#ifdef __cplusplus
 
10502
-}
 
10503
-#endif
 
10504
-int main(){nm_test_var='a';nm_test_func();return(0);}
 
10505
-EOF
 
10506
+      vxworks*)
 
10507
+        # FIXME: insert proper C++ library support
 
10508
+        _LT_TAGVAR(ld_shlibs, $1)=no
 
10509
+        ;;
 
10510
 
 
10511
-  if AC_TRY_EVAL(ac_compile); then
 
10512
-    # Now try to grab the symbols.
 
10513
-    nlist=conftest.nm
 
10514
-    if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then
 
10515
-      # Try sorting and uniquifying the output.
 
10516
-      if sort "$nlist" | uniq > "$nlist"T; then
 
10517
-       mv -f "$nlist"T "$nlist"
 
10518
-      else
 
10519
-       rm -f "$nlist"T
9274
10520
-      fi
9275
 
-      ;;
 
10521
+      *)
 
10522
+        # FIXME: insert proper C++ library support
 
10523
+        _LT_TAGVAR(ld_shlibs, $1)=no
 
10524
+        ;;
 
10525
+    esac
 
10526
 
 
10527
-      # Make sure that we snagged all the symbols we need.
 
10528
-      if grep ' nm_test_var$' "$nlist" >/dev/null; then
 
10529
-       if grep ' nm_test_func$' "$nlist" >/dev/null; then
 
10530
-         cat <<EOF > conftest.$ac_ext
 
10531
-#ifdef __cplusplus
 
10532
-extern "C" {
 
10533
-#endif
9276
10534
+    AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
9277
10535
+    test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
9278
10536
 
9279
 
-    amigaos*)
9280
 
-      # FIXME: we need at least 68020 code to build shared libraries, but
9281
 
-      # adding the `-m68020' flag to GCC prevents building anything better,
9282
 
-      # like `-m68040'.
9283
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
9284
 
-      ;;
 
10537
-EOF
 
10538
-         # Now generate the symbol file.
 
10539
-         eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext'
9285
10540
+    _LT_TAGVAR(GCC, $1)="$GXX"
9286
10541
+    _LT_TAGVAR(LD, $1)="$LD"
9287
 
+
 
10542
 
 
10543
-         cat <<EOF >> conftest.$ac_ext
 
10544
-#if defined (__STDC__) && __STDC__
 
10545
-# define lt_ptr_t void *
 
10546
-#else
 
10547
-# define lt_ptr_t char *
 
10548
-# define const
 
10549
-#endif
9288
10550
+    ## CAVEAT EMPTOR:
9289
10551
+    ## There is no encapsulation within the following macros, do not change
9290
10552
+    ## the running order or otherwise move them around unless you know exactly
9311
10573
+  lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
9312
10574
+fi # test "$_lt_caught_CXX_error" != yes
9313
10575
 
9314
 
-    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
9315
 
-      # PIC is the default for these OSes.
9316
 
-      ;;
 
10576
-/* The mapping between symbol names and symbols. */
 
10577
-const struct {
 
10578
-  const char *name;
 
10579
-  lt_ptr_t address;
 
10580
-}
 
10581
-lt_preloaded_symbols[[]] =
 
10582
-{
 
10583
-EOF
 
10584
-         $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/  {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext
 
10585
-         cat <<\EOF >> conftest.$ac_ext
 
10586
-  {0, (lt_ptr_t) 0}
 
10587
-};
9317
10588
+AC_LANG_POP
9318
10589
+])# _LT_LANG_CXX_CONFIG
9319
10590
 
9320
 
-    mingw* | cygwin* | pw32* | os2*)
9321
 
-      # This hack is so that the source file can tell whether it is being
9322
 
-      # built for inclusion in a dll (and should export symbols for example).
9323
 
-      # Although the cygwin gcc ignores -fPIC, still need this for old-style
9324
 
-      # (--disable-auto-import) libraries
9325
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
9326
 
-      ;;
 
10591
-#ifdef __cplusplus
 
10592
-}
 
10593
-#endif
 
10594
-EOF
 
10595
-         # Now try linking the two files.
 
10596
-         mv conftest.$ac_objext conftstm.$ac_objext
 
10597
-         lt_save_LIBS="$LIBS"
 
10598
-         lt_save_CFLAGS="$CFLAGS"
 
10599
-         LIBS="conftstm.$ac_objext"
 
10600
-         CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
 
10601
-         if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
 
10602
-           pipe_works=yes
 
10603
-         fi
 
10604
-         LIBS="$lt_save_LIBS"
 
10605
-         CFLAGS="$lt_save_CFLAGS"
 
10606
-       else
 
10607
-         echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
 
10608
-       fi
 
10609
-      else
 
10610
-       echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
 
10611
-      fi
 
10612
-    else
 
10613
-      echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
 
10614
-    fi
 
10615
-  else
 
10616
-    echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
 
10617
-    cat conftest.$ac_ext >&5
 
10618
-  fi
 
10619
-  rm -rf conftest* conftst*
9327
10620
 
9328
 
-    darwin* | rhapsody*)
9329
 
-      # PIC is the default on this platform
9330
 
-      # Common symbols not allowed in MH_DYLIB files
9331
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
9332
 
-      ;;
 
10621
-  # Do not use the global_symbol_pipe unless it works.
 
10622
-  if test "$pipe_works" = yes; then
 
10623
-    break
 
10624
-  else
 
10625
-    lt_cv_sys_global_symbol_pipe=
 
10626
-  fi
 
10627
-done
9333
10628
+# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME])
9334
10629
+# ---------------------------------
9335
10630
+# Figure out "hidden" library dependencies from verbose
9344
10639
+_LT_TAGVAR(predeps, $1)=
9345
10640
+_LT_TAGVAR(postdeps, $1)=
9346
10641
+_LT_TAGVAR(compiler_lib_search_path, $1)=
9347
 
 
9348
 
-    interix[[3-9]]*)
9349
 
-      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
9350
 
-      # Instead, we relocate shared libraries at runtime.
9351
 
-      ;;
 
10642
+
9352
10643
+dnl we can't use the lt_simple_compile_test_code here,
9353
10644
+dnl because it contains code intended for an executable,
9354
10645
+dnl not a library.  It's possible we should let each
9391
10682
+  }
9392
10683
+};
9393
10684
+_LT_EOF
9394
 
+])
 
10685
 ])
 
10686
-if test -z "$lt_cv_sys_global_symbol_pipe"; then
 
10687
-  lt_cv_sys_global_symbol_to_cdecl=
 
10688
-fi
 
10689
-if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
 
10690
-  AC_MSG_RESULT(failed)
 
10691
-else
 
10692
-  AC_MSG_RESULT(ok)
 
10693
-fi
 
10694
-]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
9395
10695
+dnl Parse the compiler output and extract the necessary
9396
10696
+dnl objects, libraries and library flags.
9397
10697
+if AC_TRY_EVAL(ac_compile); then
9398
10698
+  # Parse the compiler output and extract the necessary
9399
10699
+  # objects, libraries and library flags.
9400
10700
 
9401
 
-    msdosdjgpp*)
9402
 
-      # Just because we use GCC doesn't mean we suddenly get shared libraries
9403
 
-      # on systems that don't support them.
9404
 
-      _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
9405
 
-      enable_shared=no
9406
 
-      ;;
9407
10701
+  # Sentinel used to keep track of whether or not we are before
9408
10702
+  # the conftest object file.
9409
10703
+  pre_test_object_deps_done=no
9410
10704
 
9411
 
-    sysv4*MP*)
9412
 
-      if test -d /usr/nec; then
9413
 
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
 
10705
-# AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME])
 
10706
-# ---------------------------------------
 
10707
-AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC],
 
10708
-[_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)=
 
10709
-_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
 
10710
-_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=
9414
10711
+  for p in `eval "$output_verbose_link_cmd"`; do
9415
10712
+    case $p in
9416
 
+
 
10713
 
 
10714
-AC_MSG_CHECKING([for $compiler option to produce PIC])
 
10715
- ifelse([$1],[CXX],[
 
10716
-  # C++ specific cases for pic, static, wl, etc.
 
10717
-  if test "$GXX" = yes; then
 
10718
-    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
10719
-    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
9417
10720
+    -L* | -R* | -l*)
9418
10721
+       # Some compilers place space between "-{L,R}" and the path.
9419
10722
+       # Remove the space.
9423
10726
+        continue
9424
10727
+       else
9425
10728
+        prev=
9426
 
       fi
9427
 
-      ;;
 
10729
+       fi
9428
10730
 
 
10731
-    case $host_os in
 
10732
-    aix*)
 
10733
-      # All AIX code is PIC.
 
10734
-      if test "$host_cpu" = ia64; then
 
10735
-       # AIX 5 now supports IA64 processor
 
10736
-       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
10737
-      fi
 
10738
-      ;;
 
10739
-    amigaos*)
 
10740
-      # FIXME: we need at least 68020 code to build shared libraries, but
 
10741
-      # adding the `-m68020' flag to GCC prevents building anything better,
 
10742
-      # like `-m68040'.
 
10743
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
 
10744
-      ;;
 
10745
-    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
 
10746
-      # PIC is the default for these OSes.
 
10747
-      ;;
 
10748
-    mingw* | cygwin* | os2* | pw32*)
 
10749
-      # This hack is so that the source file can tell whether it is being
 
10750
-      # built for inclusion in a dll (and should export symbols for example).
 
10751
-      # Although the cygwin gcc ignores -fPIC, still need this for old-style
 
10752
-      # (--disable-auto-import) libraries
 
10753
-      m4_if([$1], [GCJ], [],
 
10754
-       [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
 
10755
-      ;;
 
10756
-    darwin* | rhapsody*)
 
10757
-      # PIC is the default on this platform
 
10758
-      # Common symbols not allowed in MH_DYLIB files
 
10759
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
 
10760
-      ;;
 
10761
-    *djgpp*)
 
10762
-      # DJGPP does not support shared libraries at all
 
10763
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
 
10764
-      ;;
 
10765
-    interix[[3-9]]*)
 
10766
-      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
 
10767
-      # Instead, we relocate shared libraries at runtime.
 
10768
-      ;;
 
10769
-    sysv4*MP*)
 
10770
-      if test -d /usr/nec; then
 
10771
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
 
10772
-      fi
 
10773
-      ;;
9429
10774
-    hpux*)
9430
10775
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
9431
10776
-      # not for PA HP-UX.
9432
10777
-      case $host_cpu in
9433
10778
-      hppa*64*|ia64*)
9434
 
-       # +Z the default
9435
10779
-       ;;
9436
10780
-      *)
9437
10781
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
 
10782
-       ;;
 
10783
-      esac
9438
10784
+       if test "$pre_test_object_deps_done" = no; then
9439
10785
+        case $p in
9440
10786
+        -L* | -R*)
9446
10792
+          else
9447
10793
+            _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}"
9448
10794
+          fi
9449
 
        ;;
 
10795
+          ;;
9450
10796
+        # The "-l" case would never come before the object being
9451
10797
+        # linked, so don't bother handling this case.
9452
 
       esac
 
10798
+        esac
9453
10799
+       else
9454
10800
+        if test -z "$_LT_TAGVAR(postdeps, $1)"; then
9455
10801
+          _LT_TAGVAR(postdeps, $1)="${prev}${p}"
9457
10803
+          _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}"
9458
10804
+        fi
9459
10805
+       fi
9460
 
       ;;
9461
 
 
9462
 
-    *)
9463
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
9464
 
-      ;;
9465
 
-    esac
 
10806
+       ;;
 
10807
+
9466
10808
+    *.$objext)
9467
10809
+       # This assumes that the test object file only shows up
9468
10810
+       # once in the compiler output.
9474
10816
+       if test "$pre_test_object_deps_done" = no; then
9475
10817
+        if test -z "$_LT_TAGVAR(predep_objects, $1)"; then
9476
10818
+          _LT_TAGVAR(predep_objects, $1)="$p"
9477
 
   else
9478
 
-    # PORTME Check for flag to pass linker flags through the system compiler.
9479
 
-    case $host_os in
9480
 
-    aix*)
9481
 
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
9482
 
-      if test "$host_cpu" = ia64; then
9483
 
-       # AIX 5 now supports IA64 processor
9484
 
-       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
10819
+        else
9485
10820
+          _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p"
9486
10821
+        fi
9487
 
       else
9488
 
-       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
 
10822
+       else
9489
10823
+        if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then
9490
10824
+          _LT_TAGVAR(postdep_objects, $1)="$p"
9491
10825
+        else
9492
10826
+          _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p"
9493
10827
+        fi
9494
 
       fi
9495
 
-      ;;
9496
 
-      darwin*)
9497
 
-        # PIC is the default on this platform
9498
 
-        # Common symbols not allowed in MH_DYLIB files
9499
 
-       case $cc_basename in
9500
 
-         xlc*)
9501
 
-         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon'
9502
 
-         _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
9503
 
-         ;;
9504
 
-       esac
9505
 
        ;;
9506
 
 
9507
 
-    mingw* | cygwin* | pw32* | os2*)
9508
 
-      # This hack is so that the source file can tell whether it is being
9509
 
-      # built for inclusion in a dll (and should export symbols for example).
9510
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
9511
 
-      ;;
 
10828
+       fi
 
10829
+       ;;
 
10830
+
9512
10831
+    *) ;; # Ignore the rest.
9513
 
 
9514
 
-    hpux9* | hpux10* | hpux11*)
9515
 
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
9516
 
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
9517
 
-      # not for PA HP-UX.
9518
 
-      case $host_cpu in
9519
 
-      hppa*64*|ia64*)
9520
 
-       # +Z the default
9521
 
-       ;;
9522
 
-      *)
9523
 
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
9524
 
-       ;;
9525
 
       esac
9526
 
-      # Is there a better lt_prog_compiler_static that works with the bundled CC?
9527
 
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
9528
 
-      ;;
 
10832
+
 
10833
+    esac
9529
10834
+  done
9530
 
 
9531
 
-    irix5* | irix6* | nonstopux*)
9532
 
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
9533
 
-      # PIC (with -KPIC) is the default.
9534
 
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
9535
 
-      ;;
 
10835
+
9536
10836
+  # Clean up.
9537
10837
+  rm -f a.out a.exe
9538
10838
+else
9539
10839
+  echo "libtool.m4: error: problem compiling $1 test program"
9540
10840
+fi
9541
 
 
9542
 
-    newsos6)
9543
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
9544
 
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
9545
 
-      ;;
 
10841
+
9546
10842
+$RM -f confest.$objext
9547
 
 
9548
 
-    linux* | k*bsd*-gnu)
9549
 
-      case $cc_basename in
9550
 
-      icc* | ecc*)
9551
 
-       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
9552
 
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
9553
 
-       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
9554
 
-        ;;
9555
 
-      pgcc* | pgf77* | pgf90* | pgf95*)
9556
 
-        # Portland Group compilers (*not* the Pentium gcc compiler,
9557
 
-       # which looks to be a dead project)
9558
 
-       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
9559
 
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
9560
 
-       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
9561
 
-        ;;
9562
 
-      ccc*)
9563
 
-        _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
9564
 
-        # All Alpha code is PIC.
9565
 
-        _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
 
10843
+
9566
10844
+# PORTME: override above test on systems where it is broken
9567
10845
+m4_if([$1], [CXX],
9568
10846
+[case $host_os in
9572
10850
+  _LT_TAGVAR(predep_objects,$1)=
9573
10851
+  _LT_TAGVAR(postdep_objects,$1)=
9574
10852
+  _LT_TAGVAR(postdeps,$1)=
9575
 
         ;;
9576
 
-      *)
 
10853
+  ;;
9577
10854
+
9578
10855
+linux*)
9579
 
         case `$CC -V 2>&1 | sed 5q` in
9580
 
        *Sun\ C*)
9581
 
-         # Sun C 5.9
9582
 
-         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
9583
 
-         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
9584
 
-         _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
10856
+  case `$CC -V 2>&1 | sed 5q` in
 
10857
+  *Sun\ C*)
9585
10858
+    # Sun C++ 5.9
9586
10859
+
9587
10860
+    # The more standards-conforming stlport4 library is
9591
10864
+    case " $CXX $CXXFLAGS " in
9592
10865
+    *" -library=stlport4 "*)
9593
10866
+      solaris_use_stlport4=yes
9594
 
          ;;
9595
 
-       *Sun\ F*)
9596
 
-         # Sun Fortran 8.3 passes all unrecognized flags to the linker
9597
 
-         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
9598
 
-         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
9599
 
-         _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)=''
 
10867
       ;;
 
10868
-    *)
 
10869
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
9600
10870
+    esac
9601
10871
+
9602
10872
+    if test "$solaris_use_stlport4" != yes; then
9616
10886
+    case " $CXX $CXXFLAGS " in
9617
10887
+    *" -library=stlport4 "*)
9618
10888
+      solaris_use_stlport4=yes
9619
 
          ;;
9620
 
        esac
 
10889
       ;;
 
10890
     esac
 
10891
-  else
9621
10892
+
9622
10893
+    # Adding this requires a known-good setup of shared libraries for
9623
10894
+    # Sun compiler versions before 5.6, else PIC objects from an old
9625
10896
+    if test "$solaris_use_stlport4" != yes; then
9626
10897
+      _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
9627
10898
+    fi
9628
 
        ;;
9629
 
       esac
9630
 
       ;;
 
10899
+    ;;
 
10900
+  esac
 
10901
+  ;;
9631
10902
+esac
9632
10903
+])
9633
 
 
9634
 
-    osf3* | osf4* | osf5*)
9635
 
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
9636
 
-      # All OSF/1 code is PIC.
9637
 
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
9638
 
-      ;;
 
10904
+
9639
10905
+case " $_LT_TAGVAR(postdeps, $1) " in
9640
10906
+*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;;
9641
10907
+esac
9655
10921
+    [The library search path used internally by the compiler when linking
9656
10922
+    a shared library])
9657
10923
+])# _LT_SYS_HIDDEN_LIBDEPS
9658
 
 
9659
 
-    rdos*)
9660
 
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
9661
 
-      ;;
9662
 
 
9663
 
-    solaris*)
9664
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
9665
 
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
9666
 
-      case $cc_basename in
9667
 
-      f77* | f90* | f95*)
9668
 
-       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;
9669
 
-      *)
9670
 
-       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;
9671
 
-      esac
9672
 
-      ;;
 
10924
+
 
10925
+
9673
10926
+# _LT_PROG_F77
9674
10927
+# ------------
9675
10928
+# Since AC_PROG_F77 is broken, in that it returns the empty string
9683
10936
+fi
9684
10937
+popdef([AC_MSG_ERROR])
9685
10938
+])# _LT_PROG_F77
9686
 
 
9687
 
-    sunos4*)
9688
 
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
9689
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
9690
 
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
9691
 
-      ;;
 
10939
+
9692
10940
+dnl aclocal-1.4 backwards compatibility:
9693
10941
+dnl AC_DEFUN([_LT_PROG_F77], [])
9694
 
 
9695
 
-    sysv4 | sysv4.2uw2* | sysv4.3*)
9696
 
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
9697
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
9698
 
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
9699
 
-      ;;
9700
 
 
9701
 
-    sysv4*MP*)
9702
 
-      if test -d /usr/nec ;then
9703
 
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
9704
 
-       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
9705
 
-      fi
9706
 
-      ;;
 
10942
+
 
10943
+
9707
10944
+# _LT_LANG_F77_CONFIG([TAG])
9708
10945
+# --------------------------
9709
10946
+# Ensure that the configuration variables for a Fortran 77 compiler are
9712
10949
+m4_defun([_LT_LANG_F77_CONFIG],
9713
10950
+[AC_REQUIRE([_LT_PROG_F77])dnl
9714
10951
+AC_LANG_PUSH(Fortran 77)
9715
 
 
9716
 
-    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
9717
 
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
9718
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
9719
 
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
9720
 
-      ;;
 
10952
+
9721
10953
+_LT_TAGVAR(archive_cmds_need_lc, $1)=no
9722
10954
+_LT_TAGVAR(allow_undefined_flag, $1)=
9723
10955
+_LT_TAGVAR(always_export_symbols, $1)=no
9738
10970
+_LT_TAGVAR(no_undefined_flag, $1)=
9739
10971
+_LT_TAGVAR(whole_archive_flag_spec, $1)=
9740
10972
+_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
9741
 
 
9742
 
-    unicos*)
9743
 
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
9744
 
-      _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
9745
 
-      ;;
 
10973
+
9746
10974
+# Source file extension for f77 test sources.
9747
10975
+ac_ext=f
9748
 
 
9749
 
-    uts4*)
9750
 
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
9751
 
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
9752
 
-      ;;
 
10976
+
9753
10977
+# Object file extension for compiled f77 test sources.
9754
10978
+objext=o
9755
10979
+_LT_TAGVAR(objext, $1)=$objext
9756
 
 
9757
 
-    *)
9758
 
-      _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
9759
 
-      ;;
9760
 
-    esac
9761
 
-  fi
9762
 
-])
9763
 
-AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)])
 
10980
+
9764
10981
+# No sense in running all these tests if we already determined that
9765
10982
+# the F77 compiler isn't working.  Some variables (like enable_shared)
9766
10983
+# are currently assumed to apply to all compilers on this platform,
9772
10989
+      return
9773
10990
+      end
9774
10991
+"
9775
 
 
9776
 
-#
9777
 
-# Check to make sure the PIC flag actually works.
9778
 
-#
9779
 
-if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then
9780
 
-  AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works],
9781
 
-    _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1),
9782
 
-    [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [],
9783
 
-    [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in
9784
 
-     "" | " "*) ;;
9785
 
-     *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;;
9786
 
-     esac],
9787
 
-    [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
9788
 
-     _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
9789
 
-fi
9790
 
-case $host_os in
9791
 
-  # For platforms which do not support PIC, -DPIC is meaningless:
9792
 
-  *djgpp*)
9793
 
-    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
9794
 
-    ;;
9795
 
-  *)
9796
 
-    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])"
9797
 
-    ;;
9798
 
-esac
 
10992
+
9799
10993
+  # Code to be used in simple link tests
9800
10994
+  lt_simple_link_test_code="\
9801
10995
+      program t
9802
10996
+      end
9803
10997
+"
9804
 
 
9805
 
-#
9806
 
-# Check to make sure the static flag actually works.
9807
 
-#
9808
 
-wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\"
9809
 
-AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works],
9810
 
-  _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1),
9811
 
-  $lt_tmp_static_flag,
9812
 
-  [],
9813
 
-  [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=])
9814
 
-])
 
10998
+
9815
10999
+  # ltmain only uses $CC for tagged configurations so make sure $CC is set.
9816
11000
+  _LT_TAG_COMPILER
9817
11001
+
9830
11014
+  if test -n "$compiler"; then
9831
11015
+    AC_MSG_CHECKING([if libtool supports shared libraries])
9832
11016
+    AC_MSG_RESULT([$can_build_shared])
9833
 
 
 
11017
+
9834
11018
+    AC_MSG_CHECKING([whether to build shared libraries])
9835
11019
+    test "$can_build_shared" = "no" && enable_shared=no
9836
 
 
9837
 
-# AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME])
9838
 
-# ------------------------------------
9839
 
-# See if the linker supports building shared libraries.
9840
 
-AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS],
9841
 
-[AC_REQUIRE([LT_AC_PROG_SED])dnl
9842
 
-AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
9843
 
-ifelse([$1],[CXX],[
9844
 
-  _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
 
11020
+
9845
11021
+    # On AIX, shared libraries and static libraries use the same namespace, and
9846
11022
+    # are all built from PIC.
9847
 
   case $host_os in
9848
 
-  aix4* | aix5*)
9849
 
-    # If we're using GNU nm, then we don't want the "-C" option.
9850
 
-    # -C means demangle to AIX nm, but means don't demangle with GNU nm
9851
 
-    if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
9852
 
-      _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols'
9853
 
-    else
9854
 
-      _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols'
 
11023
     case $host_os in
9855
11024
+      aix3*)
9856
11025
+        test "$enable_shared" = yes && enable_static=no
9857
11026
+        if test -n "$RANLIB"; then
9858
11027
+          archive_cmds="$archive_cmds~\$RANLIB \$lib"
9859
11028
+          postinstall_cmds='$RANLIB $lib'
9860
 
     fi
9861
 
     ;;
9862
 
-  pw32*)
9863
 
-    _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
9864
 
-  ;;
9865
 
-  cygwin* | mingw*)
9866
 
-    _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols'
9867
 
-  ;;
9868
 
-  *)
9869
 
-    _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
9870
 
+      aix[[4-9]]*)
 
11029
+        fi
 
11030
+        ;;
 
11031
       aix[[4-9]]*)
 
11032
-       # All AIX code is PIC.
 
11033
-       if test "$host_cpu" = ia64; then
 
11034
-         # AIX 5 now supports IA64 processor
 
11035
-         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
11036
-       else
 
11037
-         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
9871
11038
+       if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
9872
11039
+         test "$enable_shared" = yes && enable_static=no
9873
 
+       fi
9874
 
   ;;
9875
 
   esac
9876
 
-],[
9877
 
-  runpath_var=
9878
 
-  _LT_AC_TAGVAR(allow_undefined_flag, $1)=
9879
 
-  _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
9880
 
-  _LT_AC_TAGVAR(archive_cmds, $1)=
9881
 
-  _LT_AC_TAGVAR(archive_expsym_cmds, $1)=
9882
 
-  _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)=
9883
 
-  _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)=
9884
 
-  _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
9885
 
-  _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
9886
 
-  _LT_AC_TAGVAR(thread_safe_flag_spec, $1)=
9887
 
-  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
9888
 
-  _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
9889
 
-  _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
9890
 
-  _LT_AC_TAGVAR(hardcode_direct, $1)=no
9891
 
-  _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
9892
 
-  _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
9893
 
-  _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
9894
 
-  _LT_AC_TAGVAR(hardcode_automatic, $1)=no
9895
 
-  _LT_AC_TAGVAR(module_cmds, $1)=
9896
 
-  _LT_AC_TAGVAR(module_expsym_cmds, $1)=
9897
 
-  _LT_AC_TAGVAR(always_export_symbols, $1)=no
9898
 
-  _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
9899
 
-  # include_expsyms should be a list of space-separated symbols to be *always*
9900
 
-  # included in the symbol list
9901
 
-  _LT_AC_TAGVAR(include_expsyms, $1)=
9902
 
-  # exclude_expsyms can be an extended regexp of symbols to exclude
9903
 
-  # it will be wrapped by ` (' and `)$', so one must not match beginning or
9904
 
-  # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
9905
 
-  # as well as any symbol that contains `d'.
9906
 
-  _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_"
9907
 
-  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
9908
 
-  # platforms (ab)use it in PIC code, but their linkers get confused if
9909
 
-  # the symbol is explicitly referenced.  Since portable code cannot
9910
 
-  # rely on this symbol name, it's probably fine to never include it in
9911
 
-  # preloaded symbol tables.
9912
 
-  extract_expsyms_cmds=
9913
 
-  # Just being paranoid about ensuring that cc_basename is set.
 
11040
        fi
 
11041
-       ;;
 
11042
-      chorus*)
 
11043
-       case $cc_basename in
 
11044
-       cxch68*)
 
11045
-         # Green Hills C++ Compiler
 
11046
-         # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a"
 
11047
-         ;;
 
11048
-       esac
 
11049
-       ;;
 
11050
-       darwin*)
 
11051
-         # PIC is the default on this platform
 
11052
-         # Common symbols not allowed in MH_DYLIB files
 
11053
-         case $cc_basename in
 
11054
-           xlc*)
 
11055
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon'
 
11056
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11057
-           ;;
 
11058
-         esac
 
11059
-       ;;
 
11060
-      dgux*)
 
11061
-       case $cc_basename in
 
11062
-         ec++*)
 
11063
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
11064
-           ;;
 
11065
-         ghcx*)
 
11066
-           # Green Hills C++ Compiler
 
11067
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
 
11068
-           ;;
 
11069
-         *)
 
11070
-           ;;
 
11071
-       esac
 
11072
-       ;;
 
11073
-      freebsd* | dragonfly*)
 
11074
-       # FreeBSD uses GNU C++
 
11075
-       ;;
 
11076
-      hpux9* | hpux10* | hpux11*)
 
11077
-       case $cc_basename in
 
11078
-         CC*)
 
11079
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11080
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
 
11081
-           if test "$host_cpu" != ia64; then
 
11082
-             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
 
11083
-           fi
 
11084
-           ;;
 
11085
-         aCC*)
 
11086
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11087
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
 
11088
-           case $host_cpu in
 
11089
-           hppa*64*|ia64*)
 
11090
-             # +Z the default
 
11091
-             ;;
 
11092
-           *)
 
11093
-             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
 
11094
-             ;;
 
11095
-           esac
 
11096
-           ;;
 
11097
-         *)
 
11098
-           ;;
 
11099
-       esac
 
11100
-       ;;
 
11101
-      interix*)
 
11102
-       # This is c89, which is MS Visual C++ (no shared libs)
 
11103
-       # Anyone wants to do a port?
 
11104
-       ;;
 
11105
-      irix5* | irix6* | nonstopux*)
 
11106
-       case $cc_basename in
 
11107
-         CC*)
 
11108
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11109
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
 
11110
-           # CC pic flag -KPIC is the default.
 
11111
-           ;;
 
11112
-         *)
 
11113
-           ;;
 
11114
-       esac
 
11115
-       ;;
 
11116
-      linux* | k*bsd*-gnu)
 
11117
-       case $cc_basename in
 
11118
-         KCC*)
 
11119
-           # KAI C++ Compiler
 
11120
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
 
11121
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
 
11122
-           ;;
 
11123
-         icpc* | ecpc*)
 
11124
-           # Intel C++
 
11125
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11126
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
11127
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
 
11128
-           ;;
 
11129
-         pgCC* | pgcpp*)
 
11130
-           # Portland Group C++ compiler.
 
11131
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11132
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
 
11133
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
11134
-           ;;
 
11135
-         cxx*)
 
11136
-           # Compaq C++
 
11137
-           # Make sure the PIC flag is empty.  It appears that all Alpha
 
11138
-           # Linux and Compaq Tru64 Unix objects are PIC.
 
11139
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
 
11140
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
 
11141
-           ;;
 
11142
-         *)
 
11143
-           case `$CC -V 2>&1 | sed 5q` in
 
11144
-           *Sun\ C*)
 
11145
-             # Sun C++ 5.9
 
11146
-             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
11147
-             _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
11148
-             _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
 
11149
-             ;;
 
11150
-           esac
 
11151
-           ;;
 
11152
-       esac
 
11153
-       ;;
 
11154
-      lynxos*)
 
11155
-       ;;
 
11156
-      m88k*)
 
11157
-       ;;
 
11158
-      mvs*)
 
11159
-       case $cc_basename in
 
11160
-         cxx*)
 
11161
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
 
11162
-           ;;
 
11163
-         *)
 
11164
-           ;;
 
11165
-       esac
 
11166
-       ;;
 
11167
-      netbsd*)
 
11168
-       ;;
 
11169
-      osf3* | osf4* | osf5*)
 
11170
-       case $cc_basename in
 
11171
-         KCC*)
 
11172
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
 
11173
-           ;;
 
11174
-         RCC*)
 
11175
-           # Rational C++ 2.4.1
 
11176
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
 
11177
-           ;;
 
11178
-         cxx*)
 
11179
-           # Digital/Compaq C++
 
11180
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11181
-           # Make sure the PIC flag is empty.  It appears that all Alpha
 
11182
-           # Linux and Compaq Tru64 Unix objects are PIC.
 
11183
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
 
11184
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
 
11185
-           ;;
 
11186
-         *)
 
11187
-           ;;
 
11188
-       esac
 
11189
-       ;;
 
11190
-      psos*)
 
11191
-       ;;
 
11192
-      solaris*)
 
11193
-       case $cc_basename in
 
11194
-         CC*)
 
11195
-           # Sun C++ 4.2, 5.x and Centerline C++
 
11196
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
11197
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
11198
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
 
11199
-           ;;
 
11200
-         gcx*)
 
11201
-           # Green Hills C++ Compiler
 
11202
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
 
11203
-           ;;
 
11204
-         *)
 
11205
-           ;;
 
11206
-       esac
 
11207
-       ;;
 
11208
-      sunos4*)
 
11209
-       case $cc_basename in
 
11210
-         CC*)
 
11211
-           # Sun C++ 4.x
 
11212
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
 
11213
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
11214
-           ;;
 
11215
-         lcc*)
 
11216
-           # Lucid
 
11217
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
 
11218
-           ;;
 
11219
-         *)
 
11220
-           ;;
 
11221
-       esac
 
11222
-       ;;
 
11223
-      tandem*)
 
11224
-       case $cc_basename in
 
11225
-         NCC*)
 
11226
-           # NonStop-UX NCC 3.20
 
11227
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
11228
-           ;;
 
11229
-         *)
 
11230
-           ;;
 
11231
-       esac
 
11232
-       ;;
 
11233
-      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
 
11234
-       case $cc_basename in
 
11235
-         CC*)
 
11236
-           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11237
-           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
11238
-           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
11239
-           ;;
 
11240
-       esac
 
11241
-       ;;
 
11242
-      vxworks*)
 
11243
-       ;;
 
11244
-      *)
 
11245
-       _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
 
11246
-       ;;
 
11247
+        ;;
 
11248
+    esac
9914
11249
+    AC_MSG_RESULT([$enable_shared])
9915
11250
+
9916
11251
+    AC_MSG_CHECKING([whether to build static libraries])
10031
11366
+  GCC=$ac_cv_fc_compiler_gnu
10032
11367
+
10033
11368
+  _LT_TAGVAR(compiler, $1)=$CC
10034
 
   _LT_CC_BASENAME([$compiler])
 
11369
+  _LT_CC_BASENAME([$compiler])
10035
11370
+
10036
11371
+  if test -n "$compiler"; then
10037
11372
+    AC_MSG_CHECKING([if libtool supports shared libraries])
10042
11377
+
10043
11378
+    # On AIX, shared libraries and static libraries use the same namespace, and
10044
11379
+    # are all built from PIC.
10045
 
   case $host_os in
10046
 
-  cygwin* | mingw* | pw32*)
10047
 
-    # FIXME: the MSVC++ port hasn't been tested in a loooong time
10048
 
-    # When not using gcc, we currently assume that we are using
10049
 
-    # Microsoft Visual C++.
10050
 
-    if test "$GCC" != yes; then
10051
 
-      with_gnu_ld=no
 
11380
+    case $host_os in
10052
11381
+      aix3*)
10053
11382
+        test "$enable_shared" = yes && enable_static=no
10054
11383
+        if test -n "$RANLIB"; then
10055
11384
+          archive_cmds="$archive_cmds~\$RANLIB \$lib"
10056
11385
+          postinstall_cmds='$RANLIB $lib'
10057
 
     fi
10058
 
     ;;
10059
 
-  interix*)
10060
 
-    # we just hope/assume this is gcc and not c89 (= MSVC++)
10061
 
-    with_gnu_ld=yes
10062
 
-    ;;
10063
 
-  openbsd*)
10064
 
-    with_gnu_ld=no
 
11386
+        fi
 
11387
+        ;;
10065
11388
+      aix[[4-9]]*)
10066
11389
+       if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
10067
11390
+         test "$enable_shared" = yes && enable_static=no
10068
11391
+       fi
10069
 
     ;;
10070
 
   esac
 
11392
+        ;;
 
11393
     esac
 
11394
-  fi
 
11395
-],
 
11396
-[
 
11397
-  if test "$GCC" = yes; then
 
11398
-    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11399
-    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
10071
11400
+    AC_MSG_RESULT([$enable_shared])
10072
11401
 
10073
 
-  _LT_AC_TAGVAR(ld_shlibs, $1)=yes
10074
 
-  if test "$with_gnu_ld" = yes; then
10075
 
-    # If archive_cmds runs LD, not CC, wlarc should be empty
10076
 
-    wlarc='${wl}'
 
11402
-    case $host_os in
 
11403
-      aix*)
 
11404
-      # All AIX code is PIC.
 
11405
-      if test "$host_cpu" = ia64; then
 
11406
-       # AIX 5 now supports IA64 processor
 
11407
-       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
11408
-      fi
 
11409
-      ;;
10077
11410
+    AC_MSG_CHECKING([whether to build static libraries])
10078
11411
+    # Make sure either enable_shared or enable_static is yes.
10079
11412
+    test "$enable_shared" = yes || enable_static=yes
10101
11434
+  CC="$lt_save_CC"
10102
11435
+fi # test "$_lt_disable_FC" != yes
10103
11436
 
10104
 
-    # Set some defaults for GNU ld with shared library support. These
10105
 
-    # are reset later if shared libraries are not supported. Putting them
10106
 
-    # here allows them to be overridden if necessary.
10107
 
-    runpath_var=LD_RUN_PATH
10108
 
-    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
10109
 
-    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
10110
 
-    # ancient GNU ld didn't support --whole-archive et. al.
10111
 
-    if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then
10112
 
-       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
10113
 
-      else
10114
 
-       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
10115
 
-    fi
10116
 
-    supports_anon_versioning=no
10117
 
-    case `$LD -v 2>/dev/null` in
10118
 
-      *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
10119
 
-      *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
10120
 
-      *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
10121
 
-      *\ 2.11.*) ;; # other 2.11 versions
10122
 
-      *) supports_anon_versioning=yes ;;
10123
 
-    esac
 
11437
-    amigaos*)
 
11438
-      # FIXME: we need at least 68020 code to build shared libraries, but
 
11439
-      # adding the `-m68020' flag to GCC prevents building anything better,
 
11440
-      # like `-m68040'.
 
11441
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
 
11442
-      ;;
10124
11443
+AC_LANG_POP
10125
11444
+])# _LT_LANG_FC_CONFIG
10126
11445
 
10127
 
-    # See if GNU ld supports shared libraries.
10128
 
-    case $host_os in
10129
 
-    aix3* | aix4* | aix5*)
10130
 
-      # On AIX/PPC, the GNU linker is very broken
10131
 
-      if test "$host_cpu" != ia64; then
10132
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
10133
 
-       cat <<EOF 1>&2
 
11446
-    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
 
11447
-      # PIC is the default for these OSes.
 
11448
-      ;;
10134
11449
 
10135
 
-*** Warning: the GNU linker, at least up to release 2.9.1, is reported
10136
 
-*** to be unable to reliably create shared libraries on AIX.
10137
 
-*** Therefore, libtool is disabling shared libraries support.  If you
10138
 
-*** really care for shared libraries, you may want to modify your PATH
10139
 
-*** so that a non-GNU linker is found, and then restart.
 
11450
-    mingw* | cygwin* | pw32* | os2*)
 
11451
-      # This hack is so that the source file can tell whether it is being
 
11452
-      # built for inclusion in a dll (and should export symbols for example).
 
11453
-      # Although the cygwin gcc ignores -fPIC, still need this for old-style
 
11454
-      # (--disable-auto-import) libraries
 
11455
-      m4_if([$1], [GCJ], [],
 
11456
-       [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
 
11457
-      ;;
10140
11458
+# _LT_LANG_GCJ_CONFIG([TAG])
10141
11459
+# --------------------------
10142
11460
+# Ensure that the configuration variables for the GNU Java Compiler compiler
10146
11464
+[AC_REQUIRE([LT_PROG_GCJ])dnl
10147
11465
+AC_LANG_SAVE
10148
11466
 
10149
 
-EOF
10150
 
-      fi
 
11467
-    darwin* | rhapsody*)
 
11468
-      # PIC is the default on this platform
 
11469
-      # Common symbols not allowed in MH_DYLIB files
 
11470
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
10151
11471
-      ;;
10152
11472
+# Source file extension for Java test sources.
10153
11473
+ac_ext=java
10154
11474
 
10155
 
-    amigaos*)
10156
 
-      _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
10157
 
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
10158
 
-      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
10159
 
-
10160
 
-      # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
10161
 
-      # that the semantics of dynamic libraries on AmigaOS, at least up
10162
 
-      # to version 4, is to share data among multiple programs linked
10163
 
-      # with the same dynamic library.  Since this doesn't match the
10164
 
-      # behavior of shared libraries on other platforms, we can't use
10165
 
-      # them.
10166
 
-      _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
11475
-    interix[[3-9]]*)
 
11476
-      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
 
11477
-      # Instead, we relocate shared libraries at runtime.
10167
11478
-      ;;
10168
11479
+# Object file extension for compiled Java test sources.
10169
11480
+objext=o
10170
11481
+_LT_TAGVAR(objext, $1)=$objext
10171
11482
 
10172
 
-    beos*)
10173
 
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
10174
 
-       _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
10175
 
-       # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
10176
 
-       # support --undefined.  This deserves some investigation.  FIXME
10177
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
10178
 
-      else
10179
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
10180
 
-      fi
 
11483
-    msdosdjgpp*)
 
11484
-      # Just because we use GCC doesn't mean we suddenly get shared libraries
 
11485
-      # on systems that don't support them.
 
11486
-      _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
 
11487
-      enable_shared=no
10181
11488
-      ;;
10182
11489
+# Code to be used in simple compile tests
10183
11490
+lt_simple_compile_test_code="class foo {}"
10184
11491
 
10185
 
-    cygwin* | mingw* | pw32*)
10186
 
-      # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
10187
 
-      # as there is no search path for DLLs.
10188
 
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
10189
 
-      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
10190
 
-      _LT_AC_TAGVAR(always_export_symbols, $1)=no
10191
 
-      _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
10192
 
-      _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/'\'' -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols'
 
11492
-    sysv4*MP*)
 
11493
-      if test -d /usr/nec; then
 
11494
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
 
11495
-      fi
 
11496
-      ;;
10193
11497
+# Code to be used in simple link tests
10194
11498
+lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'
10195
11499
 
10196
 
-      if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
10197
 
-        _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
10198
 
-       # If the export-symbols file already is a .def file (1st line
10199
 
-       # is EXPORTS), use it as is; otherwise, prepend...
10200
 
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
10201
 
-         cp $export_symbols $output_objdir/$soname.def;
10202
 
-       else
10203
 
-         echo EXPORTS > $output_objdir/$soname.def;
10204
 
-         cat $export_symbols >> $output_objdir/$soname.def;
10205
 
-       fi~
10206
 
-       $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
10207
 
-      else
10208
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
10209
 
-      fi
 
11500
-    hpux*)
 
11501
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
 
11502
-      # not for PA HP-UX.
 
11503
-      case $host_cpu in
 
11504
-      hppa*64*|ia64*)
 
11505
-       # +Z the default
 
11506
-       ;;
 
11507
-      *)
 
11508
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
 
11509
-       ;;
 
11510
-      esac
10210
11511
-      ;;
10211
11512
+# ltmain only uses $CC for tagged configurations so make sure $CC is set.
10212
11513
+_LT_TAG_COMPILER
10213
 
+
 
11514
 
 
11515
-    *)
 
11516
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
 
11517
-      ;;
 
11518
-    esac
 
11519
-  else
 
11520
-    # PORTME Check for flag to pass linker flags through the system compiler.
 
11521
-    case $host_os in
 
11522
-    aix*)
 
11523
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11524
-      if test "$host_cpu" = ia64; then
 
11525
-       # AIX 5 now supports IA64 processor
 
11526
-       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
11527
-      else
 
11528
-       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
10214
11529
+# save warnings/boilerplate of simple test code
10215
11530
+_LT_COMPILER_BOILERPLATE
10216
11531
+_LT_LINKER_BOILERPLATE
10263
11578
+# Object file extension for compiled RC test sources.
10264
11579
+objext=o
10265
11580
+_LT_TAGVAR(objext, $1)=$objext
10266
 
 
10267
 
-    interix[[3-9]]*)
10268
 
-      _LT_AC_TAGVAR(hardcode_direct, $1)=no
10269
 
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
10270
 
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
10271
 
-      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
10272
 
-      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
10273
 
-      # Instead, shared libraries are loaded at an image base (0x10000000 by
10274
 
-      # default) and relocated if they conflict, which is a slow very memory
10275
 
-      # consuming and fragmenting process.  To avoid this, we pick a random,
10276
 
-      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
10277
 
-      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
10278
 
-      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
10279
 
-      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
10280
 
-      ;;
 
11581
+
10281
11582
+# Code to be used in simple compile tests
10282
11583
+lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }'
10283
 
 
10284
 
-    gnu* | linux* | k*bsd*-gnu)
10285
 
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
10286
 
-       tmp_addflag=
10287
 
-       case $cc_basename,$host_cpu in
10288
 
-       pgcc*)                          # Portland Group C compiler
10289
 
-         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
10290
 
-         tmp_addflag=' $pic_flag'
10291
 
-         ;;
10292
 
-       pgf77* | pgf90* | pgf95*)       # Portland Group f77 and f90 compilers
10293
 
-         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
10294
 
-         tmp_addflag=' $pic_flag -Mnomain' ;;
10295
 
-       ecc*,ia64* | icc*,ia64*)                # Intel C compiler on ia64
10296
 
-         tmp_addflag=' -i_dynamic' ;;
10297
 
-       efc*,ia64* | ifort*,ia64*)      # Intel Fortran compiler on ia64
10298
 
-         tmp_addflag=' -i_dynamic -nofor_main' ;;
10299
 
-       ifc* | ifort*)                  # Intel Fortran compiler
10300
 
-         tmp_addflag=' -nofor_main' ;;
10301
 
-       esac
10302
 
-       case `$CC -V 2>&1 | sed 5q` in
10303
 
-       *Sun\ C*)                       # Sun C 5.9
10304
 
-         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
10305
 
-         tmp_sharedflag='-G' ;;
10306
 
-       *Sun\ F*)                       # Sun Fortran 8.3
10307
 
-         tmp_sharedflag='-G' ;;
10308
 
-       *)
10309
 
-         tmp_sharedflag='-shared' ;;
10310
 
-       esac
10311
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
11584
+
10312
11585
+# Code to be used in simple link tests
10313
11586
+lt_simple_link_test_code="$lt_simple_compile_test_code"
10314
 
 
10315
 
-       if test $supports_anon_versioning = yes; then
10316
 
-         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~
10317
 
-  cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
10318
 
-  $echo "local: *; };" >> $output_objdir/$libname.ver~
10319
 
-         $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
10320
 
-       fi
10321
 
-      else
10322
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
10323
 
-      fi
10324
 
-      ;;
 
11587
+
10325
11588
+# ltmain only uses $CC for tagged configurations so make sure $CC is set.
10326
11589
+_LT_TAG_COMPILER
10327
 
 
10328
 
-    netbsd*)
10329
 
-      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
10330
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
10331
 
-       wlarc=
10332
 
-      else
10333
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
10334
 
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
10335
 
-      fi
10336
 
-      ;;
 
11590
+
10337
11591
+# save warnings/boilerplate of simple test code
10338
11592
+_LT_COMPILER_BOILERPLATE
10339
11593
+_LT_LINKER_BOILERPLATE
10340
 
 
10341
 
-    solaris*)
10342
 
-      if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
10343
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
10344
 
-       cat <<EOF 1>&2
 
11594
+
10345
11595
+# Allow CC to be a program name with arguments.
10346
11596
+lt_save_CC="$CC"
10347
11597
+lt_save_GCC=$GCC
10351
11601
+_LT_TAGVAR(compiler, $1)=$CC
10352
11602
+_LT_CC_BASENAME([$compiler])
10353
11603
+_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
10354
 
 
10355
 
-*** Warning: The releases 2.8.* of the GNU linker cannot reliably
10356
 
-*** create shared libraries on Solaris systems.  Therefore, libtool
10357
 
-*** is disabling shared libraries support.  We urge you to upgrade GNU
10358
 
-*** binutils to release 2.9.1 or newer.  Another option is to modify
10359
 
-*** your PATH or compiler configuration so that the native linker is
10360
 
-*** used, and then restart.
 
11604
+
10361
11605
+if test -n "$compiler"; then
10362
11606
+  :
10363
11607
+  _LT_CONFIG($1)
10364
11608
+fi
10365
 
 
10366
 
-EOF
10367
 
-      elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
10368
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
10369
 
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
10370
 
-      else
10371
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
10372
 
-      fi
10373
 
-      ;;
 
11609
+
10374
11610
+GCC=$lt_save_GCC
10375
11611
+AC_LANG_RESTORE
10376
11612
+CC="$lt_save_CC"
10377
11613
+])# _LT_LANG_RC_CONFIG
10378
 
 
10379
 
-    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
10380
 
-      case `$LD -v 2>&1` in
10381
 
-        *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*)
10382
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
10383
 
-       cat <<_LT_EOF 1>&2
10384
 
 
10385
 
-*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
10386
 
-*** reliably create shared libraries on SCO systems.  Therefore, libtool
10387
 
-*** is disabling shared libraries support.  We urge you to upgrade GNU
10388
 
-*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify
10389
 
-*** your PATH or compiler configuration so that the native linker is
10390
 
-*** used, and then restart.
 
11614
+
 
11615
+
10391
11616
+# LT_PROG_GCJ
10392
11617
+# -----------
10393
11618
+AC_DEFUN([LT_PROG_GCJ],
10397
11622
+      test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
10398
11623
+      AC_SUBST(GCJFLAGS)])])[]dnl
10399
11624
+])
10400
 
 
10401
 
-_LT_EOF
10402
 
-       ;;
10403
 
-       *)
10404
 
-         if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
10405
 
-           _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
10406
 
-           _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib'
10407
 
-           _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib'
10408
 
-         else
10409
 
-           _LT_AC_TAGVAR(ld_shlibs, $1)=no
10410
 
-         fi
10411
 
-       ;;
10412
 
-      esac
10413
 
-      ;;
 
11625
+
10414
11626
+# Old name:
10415
11627
+AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ])
10416
11628
+dnl aclocal-1.4 backwards compatibility:
10417
11629
+dnl AC_DEFUN([LT_AC_PROG_GCJ], [])
10418
 
 
10419
 
-    sunos4*)
10420
 
-      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
10421
 
-      wlarc=
10422
 
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
10423
 
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
10424
 
-      ;;
10425
 
 
10426
 
-    *)
10427
 
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
10428
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
10429
 
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
10430
 
-      else
10431
 
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
10432
 
-      fi
10433
 
-      ;;
10434
 
-    esac
 
11630
+
 
11631
+
10435
11632
+# LT_PROG_RC
10436
11633
+# ----------
10437
11634
+AC_DEFUN([LT_PROG_RC],
10438
11635
+[AC_CHECK_TOOL(RC, windres,)
10439
11636
+])
10440
 
 
10441
 
-    if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then
10442
 
-      runpath_var=
10443
 
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
10444
 
-      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
10445
 
-      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
10446
 
-    fi
10447
 
-  else
10448
 
-    # PORTME fill in a description of your system's linker (not GNU ld)
10449
 
-    case $host_os in
10450
 
-    aix3*)
10451
 
-      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
10452
 
-      _LT_AC_TAGVAR(always_export_symbols, $1)=yes
10453
 
-      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'
10454
 
-      # Note: this linker hardcodes the directories in LIBPATH if there
10455
 
-      # are no directories specified by -L.
10456
 
-      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
10457
 
-      if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
10458
 
-       # Neither direct hardcoding nor static linking is supported with a
10459
 
-       # broken collect2.
10460
 
-       _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
10461
 
-      fi
10462
 
-      ;;
 
11637
+
10463
11638
+# Old name:
10464
11639
+AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC])
10465
11640
+dnl aclocal-1.4 backwards compatibility:
10466
11641
+dnl AC_DEFUN([LT_AC_PROG_RC], [])
10467
 
 
10468
 
-    aix4* | aix5*)
10469
 
-      if test "$host_cpu" = ia64; then
10470
 
-       # On IA64, the linker does run time linking by default, so we don't
10471
 
-       # have to do anything special.
10472
 
-       aix_use_runtimelinking=no
10473
 
-       exp_sym_flag='-Bexport'
10474
 
-       no_entry_flag=""
10475
 
-      else
10476
 
-       # If we're using GNU nm, then we don't want the "-C" option.
10477
 
-       # -C means demangle to AIX nm, but means don't demangle with GNU nm
10478
 
-       if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
10479
 
-         _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols'
10480
 
-       else
10481
 
-         _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols'
10482
 
-       fi
10483
 
-       aix_use_runtimelinking=no
10484
 
 
10485
 
-       # Test if we are trying to use run time linking or normal
10486
 
-       # AIX style linking. If -brtl is somewhere in LDFLAGS, we
10487
 
-       # need to do runtime linking.
10488
 
-       case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*)
10489
 
-         for ld_flag in $LDFLAGS; do
10490
 
-         if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
10491
 
-           aix_use_runtimelinking=yes
10492
 
-           break
10493
 
-         fi
10494
 
-         done
10495
 
-         ;;
10496
 
-       esac
 
11642
+
 
11643
+
10497
11644
+# _LT_DECL_EGREP
10498
11645
+# --------------
10499
11646
+# If we don't have a new enough Autoconf to choose the best grep
10508
11655
+dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too
10509
11656
+AC_SUBST([GREP])
10510
11657
+])
10511
 
 
10512
 
-       exp_sym_flag='-bexport'
10513
 
-       no_entry_flag='-bnoentry'
10514
 
-      fi
10515
 
 
10516
 
-      # When large executables or shared objects are built, AIX ld can
10517
 
-      # have problems creating the table of contents.  If linking a library
10518
 
-      # or program results in "error TOC overflow" add -mminimal-toc to
10519
 
-      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
10520
 
-      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
 
11658
+
 
11659
+
10521
11660
+# _LT_DECL_SED
10522
11661
+# ------------
10523
11662
+# Check for a fully-functional sed program, that truncates
10530
11669
+_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"],
10531
11670
+    [Sed that helps us avoid accidentally triggering echo(1) options like -n])
10532
11671
+])# _LT_DECL_SED
10533
 
 
10534
 
-      _LT_AC_TAGVAR(archive_cmds, $1)=''
10535
 
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
10536
 
-      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
10537
 
-      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
 
11672
+
10538
11673
+m4_ifndef([AC_PROG_SED], [
10539
11674
+# NOTE: This macro has been submitted for inclusion into   #
10540
11675
+#  GNU Autoconf as AC_PROG_SED.  When it is available in   #
10541
11676
+#  a released version of Autoconf we should remove this    #
10542
11677
+#  macro and use it instead.                               #
10543
 
 
10544
 
-      if test "$GCC" = yes; then
10545
 
-       case $host_os in aix4.[[012]]|aix4.[[012]].*)
10546
 
-       # We only want to do this on AIX 4.2 and lower, the check
10547
 
-       # below for broken collect2 doesn't work under 4.3+
10548
 
-         collect2name=`${CC} -print-prog-name=collect2`
10549
 
-         if test -f "$collect2name" && \
10550
 
-          strings "$collect2name" | grep resolve_lib_name >/dev/null
10551
 
-         then
10552
 
-         # We have reworked collect2
10553
 
-         :
10554
 
-         else
10555
 
-         # We have old collect2
10556
 
-         _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
10557
 
-         # It fails to find uninstalled libraries when the uninstalled
10558
 
-         # path is not listed in the libpath.  Setting hardcode_minus_L
10559
 
-         # to unsupported forces relinking
10560
 
-         _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
10561
 
-         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
10562
 
-         _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
10563
 
-         fi
10564
 
-         ;;
10565
 
-       esac
10566
 
-       shared_flag='-shared'
10567
 
-       if test "$aix_use_runtimelinking" = yes; then
10568
 
-         shared_flag="$shared_flag "'${wl}-G'
10569
 
-       fi
10570
 
-      else
10571
 
-       # not using gcc
10572
 
-       if test "$host_cpu" = ia64; then
10573
 
-       # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
10574
 
-       # chokes on -Wl,-G. The following line is correct:
10575
 
-         shared_flag='-G'
10576
 
-       else
10577
 
-         if test "$aix_use_runtimelinking" = yes; then
10578
 
-           shared_flag='${wl}-G'
10579
 
-         else
10580
 
-           shared_flag='${wl}-bM:SRE'
 
11678
+
10581
11679
+m4_defun([AC_PROG_SED],
10582
11680
+[AC_MSG_CHECKING([for a sed that does not truncate output])
10583
11681
+AC_CACHE_VAL(lt_cv_path_SED,
10592
11690
+    for ac_exec_ext in '' $ac_executable_extensions; do
10593
11691
+      if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then
10594
11692
+        lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
10595
 
          fi
 
11693
       fi
 
11694
-      ;;
 
11695
-      darwin*)
 
11696
-        # PIC is the default on this platform
 
11697
-        # Common symbols not allowed in MH_DYLIB files
 
11698
-       case $cc_basename in
 
11699
-         xlc*)
 
11700
-         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon'
 
11701
-         _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11702
-         ;;
 
11703
-       esac
 
11704
-       ;;
10596
11705
+    done
10597
11706
+  done
10598
11707
+done
10610
11719
+  if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
10611
11720
+    lt_cv_path_SED=$lt_ac_sed
10612
11721
+    break
10613
 
        fi
 
11722
+  fi
10614
11723
+  while true; do
10615
11724
+    cat conftest.in conftest.in >conftest.tmp
10616
11725
+    mv conftest.tmp conftest.in
10624
11733
+    if test $lt_ac_count -gt $lt_ac_max; then
10625
11734
+      lt_ac_max=$lt_ac_count
10626
11735
+      lt_cv_path_SED=$lt_ac_sed
10627
 
       fi
 
11736
+    fi
10628
11737
+  done
10629
11738
+done
10630
11739
+])
10634
11743
+])#AC_PROG_SED
10635
11744
+])#m4_ifndef
10636
11745
 
10637
 
-      # It seems that -bexpall does not export symbols beginning with
10638
 
-      # underscore (_), so it is better to generate a list of symbols to export.
10639
 
-      _LT_AC_TAGVAR(always_export_symbols, $1)=yes
10640
 
-      if test "$aix_use_runtimelinking" = yes; then
10641
 
-       # Warning - without using the other runtime loading flags (-brtl),
10642
 
-       # -berok will link without error, but may produce a broken library.
10643
 
-       _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
10644
 
-       # Determine the default libpath from the value encoded in an empty executable.
10645
 
-       _LT_AC_SYS_LIBPATH_AIX
10646
 
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
10647
 
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
10648
 
-       else
10649
 
-       if test "$host_cpu" = ia64; then
10650
 
-         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
10651
 
-         _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
10652
 
-         _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
10653
 
-       else
10654
 
-        # Determine the default libpath from the value encoded in an empty executable.
10655
 
-        _LT_AC_SYS_LIBPATH_AIX
10656
 
-        _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
10657
 
-         # Warning - without using the other run time loading flags,
10658
 
-         # -berok will link without error, but may produce a broken library.
10659
 
-         _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
10660
 
-         _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
10661
 
-         # Exported symbols can be pulled into shared objects from archives
10662
 
-         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
10663
 
-         _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
10664
 
-         # This is similar to how AIX traditionally builds its shared libraries.
10665
 
-         _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
10666
 
-       fi
10667
 
-      fi
 
11746
-    mingw* | cygwin* | pw32* | os2*)
 
11747
-      # This hack is so that the source file can tell whether it is being
 
11748
-      # built for inclusion in a dll (and should export symbols for example).
 
11749
-      m4_if([$1], [GCJ], [],
 
11750
-       [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
10668
11751
-      ;;
10669
11752
+# Old name:
10670
11753
+AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED])
10671
11754
+dnl aclocal-1.4 backwards compatibility:
10672
11755
+dnl AC_DEFUN([LT_AC_PROG_SED], [])
10673
 
+
10674
 
+
 
11756
 
 
11757
-    hpux9* | hpux10* | hpux11*)
 
11758
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11759
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
 
11760
-      # not for PA HP-UX.
 
11761
-      case $host_cpu in
 
11762
-      hppa*64*|ia64*)
 
11763
-       # +Z the default
 
11764
-       ;;
 
11765
-      *)
 
11766
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
 
11767
-       ;;
 
11768
-      esac
 
11769
-      # Is there a better lt_prog_compiler_static that works with the bundled CC?
 
11770
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
 
11771
-      ;;
 
11772
 
 
11773
-    irix5* | irix6* | nonstopux*)
 
11774
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11775
-      # PIC (with -KPIC) is the default.
 
11776
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
 
11777
-      ;;
10675
11778
+# _LT_CHECK_SHELL_FEATURES
10676
11779
+# ------------------------
10677
11780
+# Find out whether the shell is Bourne or XSI compatible,
10696
11799
+  && lt_shell_append=yes
10697
11800
+AC_MSG_RESULT([$lt_shell_append])
10698
11801
+_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append'])
10699
 
+
 
11802
 
 
11803
-    newsos6)
 
11804
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
11805
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
11806
-      ;;
10700
11807
+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
10701
11808
+  lt_unset=unset
10702
11809
+else
10704
11811
+fi
10705
11812
+_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl
10706
11813
 
10707
 
-    amigaos*)
10708
 
-      _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
10709
 
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
10710
 
-      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
10711
 
-      # see comment about different semantics on the GNU ld section
10712
 
-      _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
11814
-    linux* | k*bsd*-gnu)
 
11815
-      case $cc_basename in
 
11816
-      icc* | ecc*)
 
11817
-       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11818
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
11819
-       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
 
11820
-        ;;
 
11821
-      pgcc* | pgf77* | pgf90* | pgf95*)
 
11822
-        # Portland Group compilers (*not* the Pentium gcc compiler,
 
11823
-       # which looks to be a dead project)
 
11824
-       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11825
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
 
11826
-       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
11827
-        ;;
 
11828
-      ccc*)
 
11829
-        _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11830
-        # All Alpha code is PIC.
 
11831
-        _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
 
11832
-        ;;
 
11833
-      *)
 
11834
-        case `$CC -V 2>&1 | sed 5q` in
 
11835
-       *Sun\ C*)
 
11836
-         # Sun C 5.9
 
11837
-         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
11838
-         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
11839
-         _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11840
-         ;;
 
11841
-       *Sun\ F*)
 
11842
-         # Sun Fortran 8.3 passes all unrecognized flags to the linker
 
11843
-         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
11844
-         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
11845
-         _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)=''
 
11846
-         ;;
 
11847
-       esac
 
11848
-       ;;
 
11849
-      esac
 
11850
-      ;;
10713
11851
+# test EBCDIC or ASCII
10714
11852
+case `echo X|tr X '\101'` in
10715
11853
+ A) # ASCII based system
10720
11858
+ *) # EBCDIC based system
10721
11859
+  lt_SP2NL='tr \100 \n'
10722
11860
+  lt_NL2SP='tr \r\n \100\100'
10723
 
       ;;
 
11861
+  ;;
10724
11862
+esac
10725
11863
+_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl
10726
11864
+_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl
10727
11865
+])# _LT_CHECK_SHELL_FEATURES
10728
11866
 
10729
 
-    bsdi[[45]]*)
10730
 
-      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
 
11867
-    osf3* | osf4* | osf5*)
 
11868
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11869
-      # All OSF/1 code is PIC.
 
11870
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
10731
11871
-      ;;
10732
11872
 
10733
 
-    cygwin* | mingw* | pw32*)
10734
 
-      # When not using gcc, we currently assume that we are using
10735
 
-      # Microsoft Visual C++.
10736
 
-      # hardcode_libdir_flag_spec is actually meaningless, as there is
10737
 
-      # no search path for DLLs.
10738
 
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
10739
 
-      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
10740
 
-      # Tell ltmain to make .lib files, not .a files.
10741
 
-      libext=lib
10742
 
-      # Tell ltmain to make .dll files, not .so files.
10743
 
-      shrext_cmds=".dll"
10744
 
-      # FIXME: Setting linknames here is a bad hack.
10745
 
-      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
10746
 
-      # The linker will automatically build a .lib file if we build a DLL.
10747
 
-      _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true'
10748
 
-      # FIXME: Should let the user specify the lib program.
10749
 
-      _LT_AC_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs'
10750
 
-      _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`'
10751
 
-      _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
 
11873
-    rdos*)
 
11874
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
10752
11875
-      ;;
10753
11876
+# _LT_PROG_XSI_SHELLFNS
10754
11877
+# ---------------------
10757
11880
+[case $xsi_shell in
10758
11881
+  yes)
10759
11882
+    cat << \_LT_EOF >> "$cfgfile"
10760
 
 
10761
 
-    darwin* | rhapsody*)
10762
 
-      case $host_os in
10763
 
-        rhapsody* | darwin1.[[012]])
10764
 
-         _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress'
10765
 
-         ;;
10766
 
-       *) # Darwin 1.3 on
10767
 
-         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
10768
 
-           _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
10769
 
-         else
10770
 
-           case ${MACOSX_DEPLOYMENT_TARGET} in
10771
 
-             10.[[012]])
10772
 
-               _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
10773
 
-               ;;
10774
 
-             10.*)
10775
 
-               _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup'
10776
 
-               ;;
10777
 
-           esac
10778
 
-         fi
10779
 
-         ;;
 
11883
+
10780
11884
+# func_dirname file append nondir_replacement
10781
11885
+# Compute the dirname of FILE.  If nonempty, add APPEND to the result,
10782
11886
+# otherwise set result to NONDIR_REPLACEMENT.
10785
11889
+  case ${1} in
10786
11890
+    */*) func_dirname_result="${1%/*}${2}" ;;
10787
11891
+    *  ) func_dirname_result="${3}" ;;
10788
 
       esac
10789
 
-      _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
10790
 
-      _LT_AC_TAGVAR(hardcode_direct, $1)=no
10791
 
-      _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
10792
 
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
10793
 
-      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=''
10794
 
-      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
10795
 
-    if test "$GCC" = yes ; then
10796
 
-       output_verbose_link_cmd='echo'
10797
 
-        _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
10798
 
-      _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
10799
 
-      # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
10800
 
-      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
10801
 
-      _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag  -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
10802
 
-    else
 
11892
+  esac
 
11893
+}
 
11894
 
 
11895
-    solaris*)
 
11896
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
11897
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
10803
11898
-      case $cc_basename in
10804
 
-        xlc*)
10805
 
-         output_verbose_link_cmd='echo'
10806
 
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring'
10807
 
-         _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
10808
 
-          # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
10809
 
-         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
10810
 
-          _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag  -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
10811
 
-          ;;
10812
 
-       *)
10813
 
-         _LT_AC_TAGVAR(ld_shlibs, $1)=no
10814
 
-          ;;
10815
 
+}
10816
 
+
 
11899
-      f77* | f90* | f95*)
 
11900
-       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;
 
11901
-      *)
 
11902
-       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;
 
11903
-      esac
 
11904
-      ;;
10817
11905
+# func_basename file
10818
11906
+func_basename ()
10819
11907
+{
10820
11908
+  func_basename_result="${1##*/}"
10821
11909
+}
10822
 
+
 
11910
 
 
11911
-    sunos4*)
 
11912
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
 
11913
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
 
11914
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
11915
-      ;;
10823
11916
+# func_dirname_and_basename file append nondir_replacement
10824
11917
+# perform func_basename and func_dirname in a single function
10825
11918
+# call:
10837
11930
+  case ${1} in
10838
11931
+    */*) func_dirname_result="${1%/*}${2}" ;;
10839
11932
+    *  ) func_dirname_result="${3}" ;;
10840
 
       esac
10841
 
-    fi
10842
 
-      ;;
 
11933
+  esac
10843
11934
+  func_basename_result="${1##*/}"
10844
11935
+}
10845
11936
 
10846
 
-    dgux*)
10847
 
-      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
10848
 
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
10849
 
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
11937
-    sysv4 | sysv4.2uw2* | sysv4.3*)
 
11938
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11939
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
11940
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
10850
11941
-      ;;
10851
11942
+# func_stripname prefix suffix name
10852
11943
+# strip PREFIX and SUFFIX off of NAME.
10862
11953
+  func_stripname_result=${func_stripname_result%"${2}"}
10863
11954
+}
10864
11955
 
10865
 
-    freebsd1*)
10866
 
-      _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
11956
-    sysv4*MP*)
 
11957
-      if test -d /usr/nec ;then
 
11958
-       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
 
11959
-       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
 
11960
-      fi
10867
11961
-      ;;
10868
11962
+# func_opt_split
10869
11963
+func_opt_split ()
10872
11966
+  func_opt_split_arg=${1#*=}
10873
11967
+}
10874
11968
 
10875
 
-    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
10876
 
-    # support.  Future versions do this automatically, but an explicit c++rt0.o
10877
 
-    # does not break anything, and helps significantly (at the cost of a little
10878
 
-    # extra space).
10879
 
-    freebsd2.2*)
10880
 
-      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
10881
 
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
10882
 
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
10883
 
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
11969
-    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
 
11970
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11971
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
 
11972
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
10884
11973
-      ;;
10885
11974
+# func_lo2o object
10886
11975
+func_lo2o ()
10891
11980
+  esac
10892
11981
+}
10893
11982
 
10894
 
-    # Unfortunately, older versions of FreeBSD 2 do not have this feature.
10895
 
-    freebsd2*)
10896
 
-      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
10897
 
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
10898
 
-      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
10899
 
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
11983
-    unicos*)
 
11984
-      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
 
11985
-      _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
10900
11986
-      ;;
10901
11987
+# func_xform libobj-or-source
10902
11988
+func_xform ()
10904
11990
+  func_xform_result=${1%.*}.lo
10905
11991
+}
10906
11992
 
10907
 
-    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
10908
 
-    freebsd* | dragonfly*)
10909
 
-      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
10910
 
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
10911
 
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
10912
 
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
11993
-    uts4*)
 
11994
-      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
 
11995
-      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
10913
11996
-      ;;
10914
11997
+# func_arith arithmetic-term...
10915
11998
+func_arith ()
10917
12000
+  func_arith_result=$(( $[*] ))
10918
12001
+}
10919
12002
 
10920
 
-    hpux9*)
10921
 
-      if test "$GCC" = yes; then
10922
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
10923
 
-      else
10924
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
10925
 
-      fi
10926
 
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
10927
 
-      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
10928
 
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
12003
-    *)
 
12004
-      _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
 
12005
-      ;;
 
12006
-    esac
 
12007
-  fi
 
12008
-])
 
12009
-AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)])
10929
12010
+# func_len string
10930
12011
+# STRING may not start with a hyphen.
10931
12012
+func_len ()
10933
12014
+  func_len_result=${#1}
10934
12015
+}
10935
12016
 
10936
 
-      # hardcode_minus_L: Not really in the search PATH,
10937
 
-      # but as the default location of the library.
10938
 
-      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
10939
 
-      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
 
12017
-#
 
12018
-# Check to make sure the PIC flag actually works.
 
12019
-#
 
12020
-if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then
 
12021
-  AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works],
 
12022
-    _LT_AC_TAGVAR(lt_cv_prog_compiler_pic_works, $1),
 
12023
-    [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [],
 
12024
-    [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in
 
12025
-     "" | " "*) ;;
 
12026
-     *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;;
 
12027
-     esac],
 
12028
-    [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
 
12029
-     _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
 
12030
-fi
 
12031
-case $host_os in
 
12032
-  # For platforms which do not support PIC, -DPIC is meaningless:
 
12033
-  *djgpp*)
 
12034
-    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
 
12035
-    ;;
 
12036
-  *)
 
12037
-    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])"
10940
12038
+_LT_EOF
10941
 
       ;;
 
12039
     ;;
 
12040
-esac
10942
12041
+  *) # Bourne compatible functions.
10943
12042
+    cat << \_LT_EOF >> "$cfgfile"
10944
12043
 
10945
 
-    hpux10*)
10946
 
-      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
10947
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
 
12044
-#
 
12045
-# Check to make sure the static flag actually works.
 
12046
-#
 
12047
-wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\"
 
12048
-AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works],
 
12049
-  _LT_AC_TAGVAR(lt_cv_prog_compiler_static_works, $1),
 
12050
-  $lt_tmp_static_flag,
 
12051
-  [],
 
12052
-  [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=])
 
12053
-])
10948
12054
+# func_dirname file append nondir_replacement
10949
12055
+# Compute the dirname of FILE.  If nonempty, add APPEND to the result,
10950
12056
+# otherwise set result to NONDIR_REPLACEMENT.
10954
12060
+  func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"`
10955
12061
+  if test "X$func_dirname_result" = "X${1}"; then
10956
12062
+    func_dirname_result="${3}"
10957
 
       else
10958
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
 
12063
+  else
10959
12064
+    func_dirname_result="$func_dirname_result${2}"
10960
 
       fi
10961
 
-      if test "$with_gnu_ld" = no; then
10962
 
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
10963
 
-       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
10964
 
-
10965
 
-       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
10966
 
-       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
 
12065
+  fi
10967
12066
+}
10968
12067
 
10969
 
-       # hardcode_minus_L: Not really in the search PATH,
10970
 
-       # but as the default location of the library.
10971
 
-       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
10972
 
-      fi
10973
 
-      ;;
10974
12068
+# func_basename file
10975
12069
+func_basename ()
10976
12070
+{
10977
12071
+  func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"`
10978
12072
+}
10979
12073
 
10980
 
-    hpux11*)
10981
 
-      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
10982
 
-       case $host_cpu in
10983
 
-       hppa*64*)
10984
 
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
10985
 
-         ;;
10986
 
-       ia64*)
10987
 
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
10988
 
-         ;;
10989
 
-       *)
10990
 
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
10991
 
-         ;;
10992
 
-       esac
10993
 
-      else
10994
 
-       case $host_cpu in
10995
 
-       hppa*64*)
10996
 
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
10997
 
-         ;;
10998
 
-       ia64*)
10999
 
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
11000
 
-         ;;
11001
 
-       *)
11002
 
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
11003
 
-         ;;
 
12074
-# AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME])
 
12075
-# ------------------------------------
 
12076
-# See if the linker supports building shared libraries.
 
12077
-AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS],
 
12078
-[AC_REQUIRE([LT_AC_PROG_SED])dnl
 
12079
-AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
 
12080
-ifelse([$1],[CXX],[
 
12081
-  _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
 
12082
-  case $host_os in
 
12083
-  aix[[4-9]]*)
 
12084
-    # If we're using GNU nm, then we don't want the "-C" option.
 
12085
-    # -C means demangle to AIX nm, but means don't demangle with GNU nm
 
12086
-    if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
 
12087
-      _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols'
 
12088
-    else
 
12089
-      _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols'
 
12090
-    fi
 
12091
-    ;;
 
12092
-  pw32*)
 
12093
-    _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
 
12094
-  ;;
 
12095
-  cygwin* | mingw*)
 
12096
-    _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols'
 
12097
-  ;;
 
12098
-  *)
 
12099
-    _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
 
12100
-  ;;
 
12101
-  esac
 
12102
-  _LT_AC_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
 
12103
-],[
 
12104
-  runpath_var=
 
12105
-  _LT_AC_TAGVAR(allow_undefined_flag, $1)=
 
12106
-  _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
 
12107
-  _LT_AC_TAGVAR(archive_cmds, $1)=
 
12108
-  _LT_AC_TAGVAR(archive_expsym_cmds, $1)=
 
12109
-  _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)=
 
12110
-  _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)=
 
12111
-  _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
 
12112
-  _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
 
12113
-  _LT_AC_TAGVAR(thread_safe_flag_spec, $1)=
 
12114
-  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
 
12115
-  _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
 
12116
-  _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
 
12117
-  _LT_AC_TAGVAR(hardcode_direct, $1)=no
 
12118
-  _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
 
12119
-  _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
 
12120
-  _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
 
12121
-  _LT_AC_TAGVAR(hardcode_automatic, $1)=no
 
12122
-  _LT_AC_TAGVAR(module_cmds, $1)=
 
12123
-  _LT_AC_TAGVAR(module_expsym_cmds, $1)=
 
12124
-  _LT_AC_TAGVAR(always_export_symbols, $1)=no
 
12125
-  _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
 
12126
-  # include_expsyms should be a list of space-separated symbols to be *always*
 
12127
-  # included in the symbol list
 
12128
-  _LT_AC_TAGVAR(include_expsyms, $1)=
 
12129
-  # exclude_expsyms can be an extended regexp of symbols to exclude
 
12130
-  # it will be wrapped by ` (' and `)$', so one must not match beginning or
 
12131
-  # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
 
12132
-  # as well as any symbol that contains `d'.
 
12133
-  _LT_AC_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
 
12134
-  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
 
12135
-  # platforms (ab)use it in PIC code, but their linkers get confused if
 
12136
-  # the symbol is explicitly referenced.  Since portable code cannot
 
12137
-  # rely on this symbol name, it's probably fine to never include it in
 
12138
-  # preloaded symbol tables.
 
12139
-  # Exclude shared library initialization/finalization symbols.
 
12140
-dnl Note also adjust exclude_expsyms for C++ above.
 
12141
-  extract_expsyms_cmds=
 
12142
-  # Just being paranoid about ensuring that cc_basename is set.
 
12143
-  _LT_CC_BASENAME([$compiler])
 
12144
-  case $host_os in
 
12145
-  cygwin* | mingw* | pw32*)
 
12146
-    # FIXME: the MSVC++ port hasn't been tested in a loooong time
 
12147
-    # When not using gcc, we currently assume that we are using
 
12148
-    # Microsoft Visual C++.
 
12149
-    if test "$GCC" != yes; then
 
12150
-      with_gnu_ld=no
 
12151
-    fi
 
12152
-    ;;
 
12153
-  interix*)
 
12154
-    # we just hope/assume this is gcc and not c89 (= MSVC++)
 
12155
-    with_gnu_ld=yes
 
12156
-    ;;
 
12157
-  openbsd*)
 
12158
-    with_gnu_ld=no
 
12159
-    ;;
11004
12160
+dnl func_dirname_and_basename
11005
12161
+dnl A portable version of this function is already defined in general.m4sh
11006
12162
+dnl so there is no need for it here.
11018
12174
+           | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;;
11019
12175
+    *)  func_stripname_result=`$ECHO "X${3}" \
11020
12176
+           | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;;
11021
 
        esac
11022
 
-      fi
11023
 
-      if test "$with_gnu_ld" = no; then
11024
 
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
11025
 
-       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
 
12177
   esac
11026
12178
+}
11027
12179
 
11028
 
-       case $host_cpu in
11029
 
-       hppa*64*|ia64*)
11030
 
-         _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'
11031
 
-         _LT_AC_TAGVAR(hardcode_direct, $1)=no
11032
 
-         _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
12180
-  _LT_AC_TAGVAR(ld_shlibs, $1)=yes
 
12181
-  if test "$with_gnu_ld" = yes; then
 
12182
-    # If archive_cmds runs LD, not CC, wlarc should be empty
 
12183
-    wlarc='${wl}'
11033
12184
+# sed scripts:
11034
12185
+my_sed_long_opt='1s/^\(-[[^=]]*\)=.*/\1/;q'
11035
12186
+my_sed_long_arg='1s/^-[[^=]]*=//'
11036
 
+
 
12187
 
 
12188
-    # Set some defaults for GNU ld with shared library support. These
 
12189
-    # are reset later if shared libraries are not supported. Putting them
 
12190
-    # here allows them to be overridden if necessary.
 
12191
-    runpath_var=LD_RUN_PATH
 
12192
-    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
 
12193
-    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
 
12194
-    # ancient GNU ld didn't support --whole-archive et. al.
 
12195
-    if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then
 
12196
-       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
 
12197
-      else
 
12198
-       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
 
12199
-    fi
 
12200
-    supports_anon_versioning=no
 
12201
-    case `$LD -v 2>/dev/null` in
 
12202
-      *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
 
12203
-      *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
 
12204
-      *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
 
12205
-      *\ 2.11.*) ;; # other 2.11 versions
 
12206
-      *) supports_anon_versioning=yes ;;
 
12207
-    esac
11037
12208
+# func_opt_split
11038
12209
+func_opt_split ()
11039
12210
+{
11040
12211
+  func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"`
11041
12212
+  func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"`
11042
12213
+}
11043
 
+
 
12214
 
 
12215
-    # See if GNU ld supports shared libraries.
 
12216
-    case $host_os in
 
12217
-    aix[[3-9]]*)
 
12218
-      # On AIX/PPC, the GNU linker is very broken
 
12219
-      if test "$host_cpu" != ia64; then
 
12220
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
12221
-       cat <<EOF 1>&2
11044
12222
+# func_lo2o object
11045
12223
+func_lo2o ()
11046
12224
+{
11047
12225
+  func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"`
11048
12226
+}
11049
 
+
 
12227
 
 
12228
-*** Warning: the GNU linker, at least up to release 2.9.1, is reported
 
12229
-*** to be unable to reliably create shared libraries on AIX.
 
12230
-*** Therefore, libtool is disabling shared libraries support.  If you
 
12231
-*** really care for shared libraries, you may want to modify your PATH
 
12232
-*** so that a non-GNU linker is found, and then restart.
11050
12233
+# func_xform libobj-or-source
11051
12234
+func_xform ()
11052
12235
+{
11053
12236
+  func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[[^.]]*$/.lo/'`
11054
12237
+}
11055
 
+
 
12238
 
 
12239
-EOF
 
12240
-      fi
 
12241
-      ;;
11056
12242
+# func_arith arithmetic-term...
11057
12243
+func_arith ()
11058
12244
+{
11059
12245
+  func_arith_result=`expr "$[@]"`
11060
12246
+}
11061
 
+
 
12247
 
 
12248
-    amigaos*)
 
12249
-      _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
 
12250
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
 
12251
-      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
 
12252
-
 
12253
-      # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
 
12254
-      # that the semantics of dynamic libraries on AmigaOS, at least up
 
12255
-      # to version 4, is to share data among multiple programs linked
 
12256
-      # with the same dynamic library.  Since this doesn't match the
 
12257
-      # behavior of shared libraries on other platforms, we can't use
 
12258
-      # them.
 
12259
-      _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
12260
-      ;;
11062
12261
+# func_len string
11063
12262
+# STRING may not start with a hyphen.
11064
12263
+func_len ()
11065
12264
+{
11066
12265
+  func_len_result=`expr "$[1]" : ".*" 2>/dev/null || echo $max_cmd_len`
11067
12266
+}
11068
 
+
 
12267
 
 
12268
-    beos*)
 
12269
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
12270
-       _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
 
12271
-       # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
 
12272
-       # support --undefined.  This deserves some investigation.  FIXME
 
12273
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
12274
-      else
 
12275
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
12276
-      fi
 
12277
-      ;;
11069
12278
+_LT_EOF
11070
12279
+esac
11071
 
+
 
12280
 
 
12281
-    cygwin* | mingw* | pw32*)
 
12282
-      # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
 
12283
-      # as there is no search path for DLLs.
 
12284
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
 
12285
-      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
 
12286
-      _LT_AC_TAGVAR(always_export_symbols, $1)=no
 
12287
-      _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
 
12288
-      _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/'\'' -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols'
11072
12289
+case $lt_shell_append in
11073
12290
+  yes)
11074
12291
+    cat << \_LT_EOF >> "$cfgfile"
11080
12297
+  eval "$[1]+=\$[2]"
11081
12298
+}
11082
12299
+_LT_EOF
11083
 
          ;;
11084
 
        *)
11085
 
-         _LT_AC_TAGVAR(hardcode_direct, $1)=yes
11086
 
-         _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
 
12300
+    ;;
 
12301
+  *)
11087
12302
+    cat << \_LT_EOF >> "$cfgfile"
11088
12303
 
11089
 
-         # hardcode_minus_L: Not really in the search PATH,
11090
 
-         # but as the default location of the library.
11091
 
-         _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
 
12304
-      if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
 
12305
-        _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
 
12306
-       # If the export-symbols file already is a .def file (1st line
 
12307
-       # is EXPORTS), use it as is; otherwise, prepend...
 
12308
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
 
12309
-         cp $export_symbols $output_objdir/$soname.def;
 
12310
-       else
 
12311
-         echo EXPORTS > $output_objdir/$soname.def;
 
12312
-         cat $export_symbols >> $output_objdir/$soname.def;
 
12313
-       fi~
 
12314
-       $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
 
12315
-      else
 
12316
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
12317
-      fi
 
12318
-      ;;
11092
12319
+# func_append var value
11093
12320
+# Append VALUE to the end of shell variable VAR.
11094
12321
+func_append ()
11095
12322
+{
11096
12323
+  eval "$[1]=\$$[1]\$[2]"
11097
12324
+}
11098
 
+
 
12325
 
 
12326
-    interix[[3-9]]*)
 
12327
-      _LT_AC_TAGVAR(hardcode_direct, $1)=no
 
12328
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
12329
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
 
12330
-      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
 
12331
-      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
 
12332
-      # Instead, shared libraries are loaded at an image base (0x10000000 by
 
12333
-      # default) and relocated if they conflict, which is a slow very memory
 
12334
-      # consuming and fragmenting process.  To avoid this, we pick a random,
 
12335
-      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
 
12336
-      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
 
12337
-      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
 
12338
-      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
 
12339
-      ;;
11099
12340
+_LT_EOF
11100
 
          ;;
11101
 
        esac
11102
 
-      fi
 
12341
+    ;;
 
12342
+  esac
11103
12343
+])
11104
 
+
 
12344
 
 
12345
-    gnu* | linux* | k*bsd*-gnu)
 
12346
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
12347
-       tmp_addflag=
 
12348
-       case $cc_basename,$host_cpu in
 
12349
-       pgcc*)                          # Portland Group C compiler
 
12350
-         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
 
12351
-         tmp_addflag=' $pic_flag'
 
12352
-         ;;
 
12353
-       pgf77* | pgf90* | pgf95*)       # Portland Group f77 and f90 compilers
 
12354
-         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
 
12355
-         tmp_addflag=' $pic_flag -Mnomain' ;;
 
12356
-       ecc*,ia64* | icc*,ia64*)                # Intel C compiler on ia64
 
12357
-         tmp_addflag=' -i_dynamic' ;;
 
12358
-       efc*,ia64* | ifort*,ia64*)      # Intel Fortran compiler on ia64
 
12359
-         tmp_addflag=' -i_dynamic -nofor_main' ;;
 
12360
-       ifc* | ifort*)                  # Intel Fortran compiler
 
12361
-         tmp_addflag=' -nofor_main' ;;
 
12362
-       esac
 
12363
-       case `$CC -V 2>&1 | sed 5q` in
 
12364
-       *Sun\ C*)                       # Sun C 5.9
 
12365
-         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
 
12366
-         tmp_sharedflag='-G' ;;
 
12367
-       *Sun\ F*)                       # Sun Fortran 8.3
 
12368
-         tmp_sharedflag='-G' ;;
 
12369
-       *)
 
12370
-         tmp_sharedflag='-shared' ;;
 
12371
-       esac
 
12372
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
11105
12373
+# Helper functions for option handling.                    -*- Autoconf -*-
11106
12374
+#
11107
12375
+#   Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
11110
12378
+# This file is free software; the Free Software Foundation gives
11111
12379
+# unlimited permission to copy and/or distribute it, with or without
11112
12380
+# modifications, as long as this notice is preserved.
11113
 
+
 
12381
 
 
12382
-       if test $supports_anon_versioning = yes; then
 
12383
-         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~
 
12384
-  cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
 
12385
-  $echo "local: *; };" >> $output_objdir/$libname.ver~
 
12386
-         $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
 
12387
-       fi
 
12388
-      else
 
12389
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
12390
-      fi
 
12391
-      ;;
11114
12392
+# serial 6 ltoptions.m4
11115
 
+
 
12393
 
 
12394
-    netbsd*)
 
12395
-      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
12396
-       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
 
12397
-       wlarc=
 
12398
-      else
 
12399
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
12400
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
 
12401
-      fi
 
12402
-      ;;
11116
12403
+# This is to help aclocal find these macros, as it can't see m4_define.
11117
12404
+AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
11118
 
+
11119
 
+
 
12405
 
 
12406
-    solaris*)
 
12407
-      if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
 
12408
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
12409
-       cat <<EOF 1>&2
 
12410
 
 
12411
-*** Warning: The releases 2.8.* of the GNU linker cannot reliably
 
12412
-*** create shared libraries on Solaris systems.  Therefore, libtool
 
12413
-*** is disabling shared libraries support.  We urge you to upgrade GNU
 
12414
-*** binutils to release 2.9.1 or newer.  Another option is to modify
 
12415
-*** your PATH or compiler configuration so that the native linker is
 
12416
-*** used, and then restart.
11120
12417
+# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
11121
12418
+# ------------------------------------------
11122
12419
+m4_define([_LT_MANGLE_OPTION],
11141
12438
+# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
11142
12439
+m4_define([_LT_IF_OPTION],
11143
12440
+[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])
11144
 
+
11145
 
+
 
12441
 
 
12442
-EOF
 
12443
-      elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
12444
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
12445
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
 
12446
-      else
 
12447
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
12448
-      fi
 
12449
-      ;;
 
12450
 
 
12451
-    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
 
12452
-      case `$LD -v 2>&1` in
 
12453
-        *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*)
 
12454
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
12455
-       cat <<_LT_EOF 1>&2
11146
12456
+# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
11147
12457
+# -------------------------------------------------------
11148
12458
+# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
11154
12464
+m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3
11155
12465
+])[]dnl
11156
12466
+])
11157
 
+
11158
 
+
 
12467
 
 
12468
-*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
 
12469
-*** reliably create shared libraries on SCO systems.  Therefore, libtool
 
12470
-*** is disabling shared libraries support.  We urge you to upgrade GNU
 
12471
-*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify
 
12472
-*** your PATH or compiler configuration so that the native linker is
 
12473
-*** used, and then restart.
 
12474
 
 
12475
-_LT_EOF
 
12476
-       ;;
 
12477
-       *)
 
12478
-         if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
12479
-           _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
 
12480
-           _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib'
 
12481
-           _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib'
 
12482
-         else
 
12483
-           _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
12484
-         fi
 
12485
-       ;;
 
12486
-      esac
 
12487
-      ;;
11159
12488
+# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
11160
12489
+# ----------------------------------------
11161
12490
+# OPTION-LIST is a space-separated list of Libtool options associated
11187
12516
+                  [_LT_ENABLE_FAST_INSTALL])
11188
12517
+  ])
11189
12518
+])# _LT_SET_OPTIONS
11190
 
+
11191
 
+
11192
 
+
 
12519
 
 
12520
-    sunos4*)
 
12521
-      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
 
12522
-      wlarc=
 
12523
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
12524
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
12525
-      ;;
 
12526
 
 
12527
-    *)
 
12528
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
12529
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
12530
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
 
12531
-      else
 
12532
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
12533
-      fi
 
12534
-      ;;
 
12535
-    esac
 
12536
 
 
12537
-    if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then
 
12538
-      runpath_var=
 
12539
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
 
12540
-      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
 
12541
-      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
 
12542
-    fi
 
12543
-  else
 
12544
-    # PORTME fill in a description of your system's linker (not GNU ld)
 
12545
-    case $host_os in
 
12546
-    aix3*)
 
12547
-      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
 
12548
-      _LT_AC_TAGVAR(always_export_symbols, $1)=yes
 
12549
-      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'
 
12550
-      # Note: this linker hardcodes the directories in LIBPATH if there
 
12551
-      # are no directories specified by -L.
 
12552
-      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
 
12553
-      if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
 
12554
-       # Neither direct hardcoding nor static linking is supported with a
 
12555
-       # broken collect2.
 
12556
-       _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
 
12557
-      fi
 
12558
-      ;;
11193
12559
+# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
11194
12560
+# -----------------------------------------
11195
12561
+m4_define([_LT_MANGLE_DEFUN],
11196
12562
+[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])
11197
 
+
11198
 
+
 
12563
 
 
12564
-    aix[[4-9]]*)
 
12565
-      if test "$host_cpu" = ia64; then
 
12566
-       # On IA64, the linker does run time linking by default, so we don't
 
12567
-       # have to do anything special.
 
12568
-       aix_use_runtimelinking=no
 
12569
-       exp_sym_flag='-Bexport'
 
12570
-       no_entry_flag=""
 
12571
-      else
 
12572
-       # If we're using GNU nm, then we don't want the "-C" option.
 
12573
-       # -C means demangle to AIX nm, but means don't demangle with GNU nm
 
12574
-       if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
 
12575
-         _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols'
 
12576
-       else
 
12577
-         _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols'
 
12578
-       fi
 
12579
-       aix_use_runtimelinking=no
 
12580
 
 
12581
-       # Test if we are trying to use run time linking or normal
 
12582
-       # AIX style linking. If -brtl is somewhere in LDFLAGS, we
 
12583
-       # need to do runtime linking.
 
12584
-       case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
 
12585
-         for ld_flag in $LDFLAGS; do
 
12586
-         if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
 
12587
-           aix_use_runtimelinking=yes
 
12588
-           break
 
12589
-         fi
 
12590
-         done
 
12591
-         ;;
 
12592
-       esac
11199
12593
+# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)
11200
12594
+# -----------------------------------------------
11201
12595
+m4_define([LT_OPTION_DEFINE],
11202
12596
+[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl
11203
12597
+])# LT_OPTION_DEFINE
11204
 
+
11205
 
+
 
12598
 
 
12599
-       exp_sym_flag='-bexport'
 
12600
-       no_entry_flag='-bnoentry'
 
12601
-      fi
 
12602
 
 
12603
-      # When large executables or shared objects are built, AIX ld can
 
12604
-      # have problems creating the table of contents.  If linking a library
 
12605
-      # or program results in "error TOC overflow" add -mminimal-toc to
 
12606
-      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
 
12607
-      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
11206
12608
+# dlopen
11207
12609
+# ------
11208
12610
+LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes
11209
12611
+])
11210
 
+
 
12612
 
 
12613
-      _LT_AC_TAGVAR(archive_cmds, $1)=''
 
12614
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
12615
-      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
 
12616
-      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
11211
12617
+AU_DEFUN([AC_LIBTOOL_DLOPEN],
11212
12618
+[_LT_SET_OPTION([LT_INIT], [dlopen])
11213
12619
+AC_DIAGNOSE([obsolete],
11214
12620
+[$0: Remove this warning and the call to _LT_SET_OPTION when you
11215
12621
+put the `dlopen' option into LT_INIT's first parameter.])
11216
12622
+])
11217
 
+
 
12623
 
 
12624
-      if test "$GCC" = yes; then
 
12625
-       case $host_os in aix4.[[012]]|aix4.[[012]].*)
 
12626
-       # We only want to do this on AIX 4.2 and lower, the check
 
12627
-       # below for broken collect2 doesn't work under 4.3+
 
12628
-         collect2name=`${CC} -print-prog-name=collect2`
 
12629
-         if test -f "$collect2name" && \
 
12630
-          strings "$collect2name" | grep resolve_lib_name >/dev/null
 
12631
-         then
 
12632
-         # We have reworked collect2
 
12633
-         :
 
12634
-         else
 
12635
-         # We have old collect2
 
12636
-         _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
 
12637
-         # It fails to find uninstalled libraries when the uninstalled
 
12638
-         # path is not listed in the libpath.  Setting hardcode_minus_L
 
12639
-         # to unsupported forces relinking
 
12640
-         _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
 
12641
-         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
 
12642
-         _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
 
12643
-         fi
 
12644
-         ;;
 
12645
-       esac
 
12646
-       shared_flag='-shared'
 
12647
-       if test "$aix_use_runtimelinking" = yes; then
 
12648
-         shared_flag="$shared_flag "'${wl}-G'
 
12649
-       fi
 
12650
-      else
 
12651
-       # not using gcc
 
12652
-       if test "$host_cpu" = ia64; then
 
12653
-       # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
 
12654
-       # chokes on -Wl,-G. The following line is correct:
 
12655
-         shared_flag='-G'
 
12656
-       else
 
12657
-         if test "$aix_use_runtimelinking" = yes; then
 
12658
-           shared_flag='${wl}-G'
 
12659
-         else
 
12660
-           shared_flag='${wl}-bM:SRE'
 
12661
-         fi
 
12662
-       fi
 
12663
-      fi
11218
12664
+dnl aclocal-1.4 backwards compatibility:
11219
12665
+dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])
11220
 
+
11221
 
+
 
12666
 
 
12667
-      # It seems that -bexpall does not export symbols beginning with
 
12668
-      # underscore (_), so it is better to generate a list of symbols to export.
 
12669
-      _LT_AC_TAGVAR(always_export_symbols, $1)=yes
 
12670
-      if test "$aix_use_runtimelinking" = yes; then
 
12671
-       # Warning - without using the other runtime loading flags (-brtl),
 
12672
-       # -berok will link without error, but may produce a broken library.
 
12673
-       _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
 
12674
-       # Determine the default libpath from the value encoded in an empty executable.
 
12675
-       _LT_AC_SYS_LIBPATH_AIX
 
12676
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
 
12677
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
 
12678
-       else
 
12679
-       if test "$host_cpu" = ia64; then
 
12680
-         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
 
12681
-         _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
 
12682
-         _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
 
12683
-       else
 
12684
-        # Determine the default libpath from the value encoded in an empty executable.
 
12685
-        _LT_AC_SYS_LIBPATH_AIX
 
12686
-        _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
 
12687
-         # Warning - without using the other run time loading flags,
 
12688
-         # -berok will link without error, but may produce a broken library.
 
12689
-         _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
 
12690
-         _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
 
12691
-         # Exported symbols can be pulled into shared objects from archives
 
12692
-         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
 
12693
-         _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
 
12694
-         # This is similar to how AIX traditionally builds its shared libraries.
 
12695
-         _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
 
12696
-       fi
 
12697
-      fi
 
12698
-      ;;
 
12699
 
 
12700
-    amigaos*)
 
12701
-      _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
 
12702
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
 
12703
-      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
 
12704
-      # see comment about different semantics on the GNU ld section
 
12705
-      _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
12706
-      ;;
11222
12707
+# win32-dll
11223
12708
+# ---------
11224
12709
+# Declare package support for building win32 dll's.
11225
12710
+LT_OPTION_DEFINE([LT_INIT], [win32-dll],
11226
12711
+[enable_win32_dll=yes
11227
 
+
 
12712
 
 
12713
-    bsdi[[45]]*)
 
12714
-      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
 
12715
-      ;;
11228
12716
+case $host in
11229
12717
+*-*-cygwin* | *-*-mingw* | *-*-pw32*)
11230
12718
+  AC_CHECK_TOOL(AS, as, false)
11231
12719
+  AC_CHECK_TOOL(DLLTOOL, dlltool, false)
11232
12720
+  AC_CHECK_TOOL(OBJDUMP, objdump, false)
11233
 
       ;;
 
12721
+  ;;
11234
12722
+esac
11235
12723
 
11236
 
-    irix5* | irix6* | nonstopux*)
11237
 
-      if test "$GCC" = yes; then
11238
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
11239
 
-      else
11240
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
11241
 
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir'
 
12724
-    cygwin* | mingw* | pw32*)
 
12725
-      # When not using gcc, we currently assume that we are using
 
12726
-      # Microsoft Visual C++.
 
12727
-      # hardcode_libdir_flag_spec is actually meaningless, as there is
 
12728
-      # no search path for DLLs.
 
12729
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
 
12730
-      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
 
12731
-      # Tell ltmain to make .lib files, not .a files.
 
12732
-      libext=lib
 
12733
-      # Tell ltmain to make .dll files, not .so files.
 
12734
-      shrext_cmds=".dll"
 
12735
-      # FIXME: Setting linknames here is a bad hack.
 
12736
-      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
 
12737
-      # The linker will automatically build a .lib file if we build a DLL.
 
12738
-      _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true'
 
12739
-      # FIXME: Should let the user specify the lib program.
 
12740
-      _LT_AC_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs'
 
12741
-      _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`'
 
12742
-      _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
 
12743
-      ;;
11242
12744
+test -z "$AS" && AS=as
11243
12745
+_LT_DECL([], [AS],      [0], [Assembler program])dnl
11244
 
+
 
12746
 
 
12747
-    darwin* | rhapsody*)
 
12748
-      case $host_os in
 
12749
-        rhapsody* | darwin1.[[012]])
 
12750
-         _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress'
 
12751
-         ;;
 
12752
-       *) # Darwin 1.3 on
 
12753
-         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
 
12754
-           _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
 
12755
-         else
 
12756
-           case ${MACOSX_DEPLOYMENT_TARGET} in
 
12757
-             10.[[012]])
 
12758
-               _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
 
12759
-               ;;
 
12760
-             10.*)
 
12761
-               _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup'
 
12762
-               ;;
 
12763
-           esac
 
12764
-         fi
 
12765
-         ;;
 
12766
-      esac
 
12767
-      _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
 
12768
-      _LT_AC_TAGVAR(hardcode_direct, $1)=no
 
12769
-      _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
 
12770
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
 
12771
-      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=''
 
12772
-      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
 
12773
-    if test "$GCC" = yes ; then
 
12774
-       output_verbose_link_cmd='echo'
 
12775
-        _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
 
12776
-        _LT_AC_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
 
12777
-        _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
 
12778
-        _LT_AC_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
 
12779
-    else
 
12780
-      case $cc_basename in
 
12781
-        xlc*)
 
12782
-         output_verbose_link_cmd='echo'
 
12783
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring'
 
12784
-         _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
 
12785
-          # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
 
12786
-         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
 
12787
-          _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag  -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
 
12788
-          ;;
 
12789
-       *)
 
12790
-         _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
12791
-          ;;
 
12792
-      esac
 
12793
-    fi
 
12794
-      ;;
11245
12795
+test -z "$DLLTOOL" && DLLTOOL=dlltool
11246
12796
+_LT_DECL([], [DLLTOOL], [0], [DLL creation program])dnl
11247
 
+
 
12797
 
 
12798
-    dgux*)
 
12799
-      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
 
12800
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
 
12801
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
12802
-      ;;
11248
12803
+test -z "$OBJDUMP" && OBJDUMP=objdump
11249
12804
+_LT_DECL([], [OBJDUMP], [0], [Object dumper program])dnl
11250
12805
+])# win32-dll
11251
 
+
 
12806
 
 
12807
-    freebsd1*)
 
12808
-      _LT_AC_TAGVAR(ld_shlibs, $1)=no
 
12809
-      ;;
11252
12810
+AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
11253
12811
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
11254
12812
+_LT_SET_OPTION([LT_INIT], [win32-dll])
11256
12814
+[$0: Remove this warning and the call to _LT_SET_OPTION when you
11257
12815
+put the `win32-dll' option into LT_INIT's first parameter.])
11258
12816
+])
11259
 
+
 
12817
 
 
12818
-    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
 
12819
-    # support.  Future versions do this automatically, but an explicit c++rt0.o
 
12820
-    # does not break anything, and helps significantly (at the cost of a little
 
12821
-    # extra space).
 
12822
-    freebsd2.2*)
 
12823
-      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
 
12824
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
 
12825
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
12826
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
12827
-      ;;
11260
12828
+dnl aclocal-1.4 backwards compatibility:
11261
12829
+dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])
11262
 
+
11263
 
+
 
12830
 
 
12831
-    # Unfortunately, older versions of FreeBSD 2 do not have this feature.
 
12832
-    freebsd2*)
 
12833
-      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
 
12834
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
12835
-      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
 
12836
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
12837
-      ;;
 
12838
 
 
12839
-    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
 
12840
-    freebsd* | dragonfly*)
 
12841
-      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
 
12842
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
 
12843
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
12844
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
11264
12845
+# _LT_ENABLE_SHARED([DEFAULT])
11265
12846
+# ----------------------------
11266
12847
+# implement the --enable-shared flag, and supports the `shared' and
11283
12864
+       IFS="$lt_save_ifs"
11284
12865
+       if test "X$pkg" = "X$p"; then
11285
12866
+         enable_shared=yes
11286
 
       fi
11287
 
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
11288
 
-      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
11289
 
-      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
 
12867
+       fi
11290
12868
+      done
11291
12869
+      IFS="$lt_save_ifs"
11292
12870
       ;;
11293
12871
+    esac],
11294
12872
+    [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)
11295
12873
 
11296
 
-    netbsd*)
11297
 
-      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
11298
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
 
12874
-    hpux9*)
 
12875
-      if test "$GCC" = yes; then
 
12876
-       _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
11299
12877
-      else
11300
 
-       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF
 
12878
-       _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
 
12879
-      fi
 
12880
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
 
12881
-      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
 
12882
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
11301
12883
+    _LT_DECL([build_libtool_libs], [enable_shared], [0],
11302
12884
+       [Whether or not to build shared libraries])
11303
12885
+])# _LT_ENABLE_SHARED
11304
 
+
 
12886
 
 
12887
-      # hardcode_minus_L: Not really in the search PATH,
 
12888
-      # but as the default location of the library.
 
12889
-      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
 
12890
-      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
 
12891
-      ;;
11305
12892
+LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])
11306
12893
+LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])
11307
 
+
 
12894
 
 
12895
-    hpux10*)
 
12896
-      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
 
12897
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
 
12898
-      else
 
12899
-       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
 
12900
-      fi
 
12901
-      if test "$with_gnu_ld" = no; then
 
12902
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
 
12903
-       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
11308
12904
+# Old names:
11309
12905
+AC_DEFUN([AC_ENABLE_SHARED],
11310
12906
+[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
11311
12907
+])
11312
 
+
 
12908
 
 
12909
-       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
12910
-       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
11313
12911
+AC_DEFUN([AC_DISABLE_SHARED],
11314
12912
+[_LT_SET_OPTION([LT_INIT], [disable-shared])
11315
12913
+])
11316
 
+
 
12914
 
 
12915
-       # hardcode_minus_L: Not really in the search PATH,
 
12916
-       # but as the default location of the library.
 
12917
-       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
 
12918
-      fi
 
12919
-      ;;
11317
12920
+AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
11318
12921
+AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
11319
 
+
 
12922
 
 
12923
-    hpux11*)
 
12924
-      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
 
12925
-       case $host_cpu in
 
12926
-       hppa*64*)
 
12927
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
 
12928
-         ;;
 
12929
-       ia64*)
 
12930
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
 
12931
-         ;;
 
12932
-       *)
 
12933
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
 
12934
-         ;;
 
12935
-       esac
 
12936
-      else
 
12937
-       case $host_cpu in
 
12938
-       hppa*64*)
 
12939
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
 
12940
-         ;;
 
12941
-       ia64*)
 
12942
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
 
12943
-         ;;
 
12944
-       *)
 
12945
-         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
 
12946
-         ;;
 
12947
-       esac
 
12948
-      fi
 
12949
-      if test "$with_gnu_ld" = no; then
 
12950
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
 
12951
-       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
11320
12952
+dnl aclocal-1.4 backwards compatibility:
11321
12953
+dnl AC_DEFUN([AM_ENABLE_SHARED], [])
11322
12954
+dnl AC_DEFUN([AM_DISABLE_SHARED], [])
11323
 
+
11324
 
+
 
12955
 
 
12956
-       case $host_cpu in
 
12957
-       hppa*64*|ia64*)
 
12958
-         _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'
 
12959
-         _LT_AC_TAGVAR(hardcode_direct, $1)=no
 
12960
-         _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
12961
-         ;;
 
12962
-       *)
 
12963
-         _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
12964
-         _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
 
12965
 
 
12966
-         # hardcode_minus_L: Not really in the search PATH,
 
12967
-         # but as the default location of the library.
 
12968
-         _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
 
12969
-         ;;
 
12970
-       esac
 
12971
-      fi
11325
12972
+
11326
12973
+# _LT_ENABLE_STATIC([DEFAULT])
11327
12974
+# ----------------------------
11345
12992
+       IFS="$lt_save_ifs"
11346
12993
+       if test "X$pkg" = "X$p"; then
11347
12994
+         enable_static=yes
11348
 
       fi
11349
 
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
11350
 
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
11351
 
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
12995
+       fi
11352
12996
+      done
11353
12997
+      IFS="$lt_save_ifs"
11354
12998
       ;;
11355
12999
+    esac],
11356
13000
+    [enable_static=]_LT_ENABLE_STATIC_DEFAULT)
11357
13001
 
11358
 
-    newsos6)
11359
 
-      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
11360
 
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
13002
-    irix5* | irix6* | nonstopux*)
 
13003
-      if test "$GCC" = yes; then
 
13004
-       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
 
13005
-      else
 
13006
-       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
 
13007
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir'
 
13008
-      fi
11361
13009
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
11362
13010
-      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
11363
 
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
13011
-      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
11364
13012
-      ;;
11365
13013
+    _LT_DECL([build_old_libs], [enable_static], [0],
11366
13014
+       [Whether or not to build static libraries])
11367
13015
+])# _LT_ENABLE_STATIC
11368
13016
 
 
13017
-    netbsd*)
 
13018
-      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
13019
-       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
 
13020
-      else
 
13021
-       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF
 
13022
-      fi
 
13023
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
 
13024
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
13025
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
13026
-      ;;
 
13027
+LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])
 
13028
+LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])
 
13029
 
 
13030
-    newsos6)
 
13031
-      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
 
13032
-      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
 
13033
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
 
13034
-      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
 
13035
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
 
13036
-      ;;
 
13037
+# Old names:
 
13038
+AC_DEFUN([AC_ENABLE_STATIC],
 
13039
+[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
 
13040
+])
 
13041
 
11369
13042
-    openbsd*)
11370
13043
-      if test -f /usr/libexec/ld.so; then
11371
13044
-       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
11391
13064
-       _LT_AC_TAGVAR(ld_shlibs, $1)=no
11392
13065
-      fi
11393
13066
-      ;;
11394
 
+LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])
11395
 
+LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])
 
13067
+AC_DEFUN([AC_DISABLE_STATIC],
 
13068
+[_LT_SET_OPTION([LT_INIT], [disable-static])
 
13069
+])
11396
13070
 
11397
13071
-    os2*)
11398
13072
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
11401
13075
-      _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def'
11402
13076
-      _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
11403
13077
-      ;;
11404
 
+# Old names:
11405
 
+AC_DEFUN([AC_ENABLE_STATIC],
11406
 
+[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
11407
 
+])
 
13078
+AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
 
13079
+AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
11408
13080
 
11409
13081
-    osf3*)
11410
13082
-      if test "$GCC" = yes; then
11417
13089
-      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
11418
13090
-      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
11419
13091
-      ;;
11420
 
+AC_DEFUN([AC_DISABLE_STATIC],
11421
 
+[_LT_SET_OPTION([LT_INIT], [disable-static])
11422
 
+])
 
13092
+dnl aclocal-1.4 backwards compatibility:
 
13093
+dnl AC_DEFUN([AM_ENABLE_STATIC], [])
 
13094
+dnl AC_DEFUN([AM_DISABLE_STATIC], [])
11423
13095
 
11424
13096
-    osf4* | osf5*)     # as osf3* with the addition of -msym flag
11425
13097
-      if test "$GCC" = yes; then
11431
13103
-       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
11432
13104
-       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
11433
13105
-       $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp'
11434
 
+AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
11435
 
+AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
11436
13106
 
11437
13107
-       # Both c and cxx compiler support -rpath directly
11438
13108
-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
11439
13109
-      fi
11440
13110
-      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
11441
13111
-      ;;
11442
 
+dnl aclocal-1.4 backwards compatibility:
11443
 
+dnl AC_DEFUN([AM_ENABLE_STATIC], [])
11444
 
+dnl AC_DEFUN([AM_DISABLE_STATIC], [])
11445
13112
 
11446
13113
-    solaris*)
11447
13114
-      _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text'
11460
13127
-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
11461
13128
-      case $host_os in
11462
13129
-      solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
11463
 
+
11464
 
+
 
13130
-      *)
 
13131
-       # The compiler driver will combine and reorder linker options,
 
13132
-       # but understands `-z linker_flag'.  GCC discards it without `$wl',
 
13133
-       # but is careful enough not to reorder.
 
13134
-       # Supported since Solaris 2.6 (maybe 2.5.1?)
 
13135
-       if test "$GCC" = yes; then
 
13136
-         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
 
13137
-       else
 
13138
-         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
11465
13139
+# _LT_ENABLE_FAST_INSTALL([DEFAULT])
11466
13140
+# ----------------------------------
11467
13141
+# implement the --enable-fast-install flag, and support the `fast-install'
11476
13150
+    case $enableval in
11477
13151
+    yes) enable_fast_install=yes ;;
11478
13152
+    no) enable_fast_install=no ;;
11479
 
       *)
11480
 
-       # The compiler driver will combine and reorder linker options,
11481
 
-       # but understands `-z linker_flag'.  GCC discards it without `$wl',
11482
 
-       # but is careful enough not to reorder.
11483
 
-       # Supported since Solaris 2.6 (maybe 2.5.1?)
11484
 
-       if test "$GCC" = yes; then
11485
 
-         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
11486
 
-       else
11487
 
-         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
 
13153
+    *)
11488
13154
+      enable_fast_install=no
11489
13155
+      # Look at the argument we got.  We use all the common list separators.
11490
13156
+      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
11493
13159
+       if test "X$pkg" = "X$p"; then
11494
13160
+         enable_fast_install=yes
11495
13161
        fi
 
13162
-       ;;
 
13163
-      esac
 
13164
-      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
11496
13165
+      done
11497
13166
+      IFS="$lt_save_ifs"
11498
 
        ;;
11499
 
-      esac
11500
 
-      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
11501
 
-      ;;
 
13167
       ;;
11502
13168
+    esac],
11503
13169
+    [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)
11504
13170
 
11682
13348
-x|xyes)
11683
13349
-  # Assume -lc should be added
11684
13350
-  _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
11685
 
-
 
13351
+# This file is free software; the Free Software Foundation gives
 
13352
+# unlimited permission to copy and/or distribute it, with or without
 
13353
+# modifications, as long as this notice is preserved.
 
13354
 
11686
13355
-  if test "$enable_shared" = yes && test "$GCC" = yes; then
11687
13356
-    case $_LT_AC_TAGVAR(archive_cmds, $1) in
11688
13357
-    *'~'*)
11695
13364
-      AC_MSG_CHECKING([whether -lc should be explicitly linked in])
11696
13365
-      $rm conftest*
11697
13366
-      echo "$lt_simple_compile_test_code" > conftest.$ac_ext
11698
 
+# This file is free software; the Free Software Foundation gives
11699
 
+# unlimited permission to copy and/or distribute it, with or without
11700
 
+# modifications, as long as this notice is preserved.
11701
 
 
 
13367
-
11702
13368
-      if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
11703
13369
-        soname=conftest
11704
13370
-        lib=conftest
11954
13620
-SED=$lt_cv_path_SED
11955
13621
-AC_SUBST([SED])
11956
13622
-AC_MSG_RESULT([$SED])
 
13623
-])
11957
13624
+# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)
11958
13625
+# --------------------------------------------
11959
13626
+m4_define([lt_dict_add_subkey],
12101
13768
+m4_ifndef([_LT_AC_LANG_RC_CONFIG],     [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
12102
13769
+m4_ifndef([AC_LIBTOOL_CONFIG],         [AC_DEFUN([AC_LIBTOOL_CONFIG])])
12103
13770
+m4_ifndef([_LT_AC_FILE_LTDLL_C],       [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
12104
 
+
12105
 
+# nls.m4 serial 3 (gettext-0.15)
12106
 
+dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc.
12107
 
+dnl This file is free software; the Free Software Foundation
12108
 
+dnl gives unlimited permission to copy and/or distribute it,
12109
 
+dnl with or without modifications, as long as this notice is preserved.
12110
 
+dnl
12111
 
+dnl This file can can be used in projects which are not available under
12112
 
+dnl the GNU General Public License or the GNU Library General Public
12113
 
+dnl License but which still want to provide support for the GNU gettext
12114
 
+dnl functionality.
12115
 
+dnl Please note that the actual code of the GNU gettext library is covered
12116
 
+dnl by the GNU Library General Public License, and the rest of the GNU
12117
 
+dnl gettext package package is covered by the GNU General Public License.
12118
 
+dnl They are *not* in the public domain.
12119
 
+
12120
 
+dnl Authors:
12121
 
+dnl   Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
12122
 
+dnl   Bruno Haible <haible@clisp.cons.org>, 2000-2003.
12123
 
+
12124
 
+AC_PREREQ(2.50)
12125
 
+
12126
 
+AC_DEFUN([AM_NLS],
12127
 
+[
12128
 
+  AC_MSG_CHECKING([whether NLS is requested])
12129
 
+  dnl Default is enabled NLS
12130
 
+  AC_ARG_ENABLE(nls,
12131
 
+    [  --disable-nls           do not use Native Language Support],
12132
 
+    USE_NLS=$enableval, USE_NLS=yes)
12133
 
+  AC_MSG_RESULT($USE_NLS)
12134
 
+  AC_SUBST(USE_NLS)
12135
 
 ])
12136
13771
 
12137
 
 # pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
12138
 
@@ -7549,13 +8928,15 @@
 
13772
 # nls.m4 serial 3 (gettext-0.15)
 
13773
 dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc.
 
13774
@@ -7656,14 +8931,16 @@
12139
13775
 # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
12140
13776
 # ---------------------------------------------
12141
13777
 m4_define([_PKG_CONFIG],
12142
13778
-[if test -n "$$1"; then
 
13779
-    pkg_cv_[]$1="$$1"
 
13780
- elif test -n "$PKG_CONFIG"; then
 
13781
-    PKG_CHECK_EXISTS([$3],
 
13782
-                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
 
13783
-                    [pkg_failed=yes])
 
13784
- else
 
13785
-    pkg_failed=untried
12143
13786
+[if test -n "$PKG_CONFIG"; then
12144
13787
+    if test -n "$$1"; then
12145
 
     pkg_cv_[]$1="$$1"
12146
 
- elif test -n "$PKG_CONFIG"; then
 
13788
+        pkg_cv_[]$1="$$1"
12147
13789
+    else
12148
 
     PKG_CHECK_EXISTS([$3],
12149
 
                      [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
12150
 
                     [pkg_failed=yes])
12151
 
- else
 
13790
+        PKG_CHECK_EXISTS([$3],
 
13791
+                         [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
 
13792
+                        [pkg_failed=yes])
12152
13793
+    fi
12153
13794
+else
12154
 
     pkg_failed=untried
 
13795
+       pkg_failed=untried
12155
13796
 fi[]dnl
12156
13797
 ])# _PKG_CONFIG
12157
 
@@ -7600,9 +8981,9 @@
 
13798
 
 
13799
@@ -7707,9 +8984,9 @@
12158
13800
 if test $pkg_failed = yes; then
12159
13801
         _PKG_SHORT_ERRORS_SUPPORTED
12160
13802
         if test $_pkg_short_errors_supported = yes; then
12166
13808
         fi
12167
13809
        # Put the nasty error message in config.log where it belongs
12168
13810
        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
12169
 
diff -Nurb totem-2.24.2/bindings/Makefile.in totem-2.24.2.new/bindings/Makefile.in
12170
 
--- totem-2.24.2/bindings/Makefile.in   2008-10-07 16:18:52.000000000 +0200
12171
 
+++ totem-2.24.2.new/bindings/Makefile.in       2008-10-08 15:16:15.000000000 +0200
 
13811
Index: totem-2.24.3/bindings/Makefile.in
 
13812
===================================================================
 
13813
--- totem-2.24.3.orig/bindings/Makefile.in      2008-10-26 15:40:44.000000000 +0100
 
13814
+++ totem-2.24.3/bindings/Makefile.in   2008-10-30 19:06:35.000000000 +0100
12172
13815
@@ -71,6 +71,8 @@
12173
13816
 AUTOHEADER = @AUTOHEADER@
12174
13817
 AUTOMAKE = @AUTOMAKE@
12178
13821
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
12179
13822
 BEMUSED_LIBS = @BEMUSED_LIBS@
12180
13823
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
12181
 
@@ -97,7 +99,8 @@
12182
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
13824
@@ -98,7 +100,7 @@
12183
13825
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
12184
13826
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
13827
 DSYMUTIL = @DSYMUTIL@
12185
13828
-ECHO = @ECHO@
12186
 
+DSYMUTIL = @DSYMUTIL@
12187
13829
+DUMPBIN = @DUMPBIN@
12188
13830
 ECHO_C = @ECHO_C@
12189
13831
 ECHO_N = @ECHO_N@
12190
13832
 ECHO_T = @ECHO_T@
12191
 
@@ -105,8 +108,7 @@
 
13833
@@ -106,8 +108,7 @@
12192
13834
 EXEEXT = @EXEEXT@
12193
13835
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
12194
13836
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
12198
13840
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
12199
13841
 GCONFTOOL = @GCONFTOOL@
12200
13842
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
12201
 
@@ -156,6 +158,7 @@
 
13843
@@ -157,6 +158,7 @@
12202
13844
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
12203
13845
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
12204
13846
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
12206
13848
 LDFLAGS = @LDFLAGS@
12207
13849
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
12208
13850
 LIBEPC_LIBS = @LIBEPC_LIBS@
12209
 
@@ -164,6 +167,7 @@
 
13851
@@ -165,6 +167,7 @@
12210
13852
 LIBOBJS = @LIBOBJS@
12211
13853
 LIBS = @LIBS@
12212
13854
 LIBTOOL = @LIBTOOL@
12214
13856
 LIRC_LIBS = @LIRC_LIBS@
12215
13857
 LN_S = @LN_S@
12216
13858
 LTLIBOBJS = @LTLIBOBJS@
12217
 
@@ -183,11 +187,15 @@
 
13859
@@ -184,12 +187,15 @@
12218
13860
 NAUTILUSDIR = @NAUTILUSDIR@
12219
13861
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
12220
13862
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
12221
13863
+NM = @NM@
12222
 
+NMEDIT = @NMEDIT@
 
13864
 NMEDIT = @NMEDIT@
12223
13865
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
12224
13866
 NVTV_CFLAGS = @NVTV_CFLAGS@
12225
13867
 NVTV_LIBS = @NVTV_LIBS@
12230
13872
 PACKAGE = @PACKAGE@
12231
13873
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
12232
13874
 PACKAGE_NAME = @PACKAGE_NAME@
12233
 
@@ -249,7 +257,7 @@
 
13875
@@ -251,7 +257,7 @@
12234
13876
 abs_top_srcdir = @abs_top_srcdir@
12235
13877
 ac_ct_CC = @ac_ct_CC@
12236
13878
 ac_ct_CXX = @ac_ct_CXX@
12239
13881
 am__include = @am__include@
12240
13882
 am__leading_dot = @am__leading_dot@
12241
13883
 am__quote = @am__quote@
12242
 
@@ -280,6 +288,7 @@
 
13884
@@ -282,6 +288,7 @@
12243
13885
 libexecdir = @libexecdir@
12244
13886
 localedir = @localedir@
12245
13887
 localstatedir = @localstatedir@
12247
13889
 mandir = @mandir@
12248
13890
 mkdir_p = @mkdir_p@
12249
13891
 oldincludedir = @oldincludedir@
12250
 
diff -Nurb totem-2.24.2/bindings/python/Makefile.in totem-2.24.2.new/bindings/python/Makefile.in
12251
 
--- totem-2.24.2/bindings/python/Makefile.in    2008-10-07 16:18:52.000000000 +0200
12252
 
+++ totem-2.24.2.new/bindings/python/Makefile.in        2008-10-08 15:16:15.000000000 +0200
 
13892
@@ -298,7 +305,6 @@
 
13893
 srcdir = @srcdir@
 
13894
 sysconfdir = @sysconfdir@
 
13895
 target_alias = @target_alias@
 
13896
-top_build_prefix = @top_build_prefix@
 
13897
 top_builddir = @top_builddir@
 
13898
 top_srcdir = @top_srcdir@
 
13899
 SUBDIRS = $(am__append_1) $(am__append_2)
 
13900
Index: totem-2.24.3/bindings/python/Makefile.in
 
13901
===================================================================
 
13902
--- totem-2.24.3.orig/bindings/python/Makefile.in       2008-10-26 15:40:44.000000000 +0100
 
13903
+++ totem-2.24.3/bindings/python/Makefile.in    2008-10-30 19:06:35.000000000 +0100
12253
13904
@@ -84,6 +84,8 @@
12254
13905
 AUTOHEADER = @AUTOHEADER@
12255
13906
 AUTOMAKE = @AUTOMAKE@
12259
13910
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
12260
13911
 BEMUSED_LIBS = @BEMUSED_LIBS@
12261
13912
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
12262
 
@@ -110,7 +112,8 @@
12263
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
13913
@@ -111,7 +113,7 @@
12264
13914
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
12265
13915
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
13916
 DSYMUTIL = @DSYMUTIL@
12266
13917
-ECHO = @ECHO@
12267
 
+DSYMUTIL = @DSYMUTIL@
12268
13918
+DUMPBIN = @DUMPBIN@
12269
13919
 ECHO_C = @ECHO_C@
12270
13920
 ECHO_N = @ECHO_N@
12271
13921
 ECHO_T = @ECHO_T@
12272
 
@@ -118,8 +121,7 @@
 
13922
@@ -119,8 +121,7 @@
12273
13923
 EXEEXT = @EXEEXT@
12274
13924
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
12275
13925
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
12279
13929
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
12280
13930
 GCONFTOOL = @GCONFTOOL@
12281
13931
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
12282
 
@@ -169,6 +171,7 @@
 
13932
@@ -170,6 +171,7 @@
12283
13933
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
12284
13934
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
12285
13935
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
12287
13937
 LDFLAGS = @LDFLAGS@
12288
13938
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
12289
13939
 LIBEPC_LIBS = @LIBEPC_LIBS@
12290
 
@@ -177,6 +180,7 @@
 
13940
@@ -178,6 +180,7 @@
12291
13941
 LIBOBJS = @LIBOBJS@
12292
13942
 LIBS = @LIBS@
12293
13943
 LIBTOOL = @LIBTOOL@
12295
13945
 LIRC_LIBS = @LIRC_LIBS@
12296
13946
 LN_S = @LN_S@
12297
13947
 LTLIBOBJS = @LTLIBOBJS@
12298
 
@@ -196,11 +200,15 @@
 
13948
@@ -197,12 +200,15 @@
12299
13949
 NAUTILUSDIR = @NAUTILUSDIR@
12300
13950
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
12301
13951
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
12302
13952
+NM = @NM@
12303
 
+NMEDIT = @NMEDIT@
 
13953
 NMEDIT = @NMEDIT@
12304
13954
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
12305
13955
 NVTV_CFLAGS = @NVTV_CFLAGS@
12306
13956
 NVTV_LIBS = @NVTV_LIBS@
12311
13961
 PACKAGE = @PACKAGE@
12312
13962
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
12313
13963
 PACKAGE_NAME = @PACKAGE_NAME@
12314
 
@@ -262,7 +270,7 @@
 
13964
@@ -264,7 +270,7 @@
12315
13965
 abs_top_srcdir = @abs_top_srcdir@
12316
13966
 ac_ct_CC = @ac_ct_CC@
12317
13967
 ac_ct_CXX = @ac_ct_CXX@
12320
13970
 am__include = @am__include@
12321
13971
 am__leading_dot = @am__leading_dot@
12322
13972
 am__quote = @am__quote@
12323
 
@@ -293,6 +301,7 @@
 
13973
@@ -295,6 +301,7 @@
12324
13974
 libexecdir = @libexecdir@
12325
13975
 localedir = @localedir@
12326
13976
 localstatedir = @localstatedir@
12328
13978
 mandir = @mandir@
12329
13979
 mkdir_p = @mkdir_p@
12330
13980
 oldincludedir = @oldincludedir@
12331
 
diff -Nurb totem-2.24.2/bindings/vala/Makefile.in totem-2.24.2.new/bindings/vala/Makefile.in
12332
 
--- totem-2.24.2/bindings/vala/Makefile.in      2008-10-07 16:18:52.000000000 +0200
12333
 
+++ totem-2.24.2.new/bindings/vala/Makefile.in  2008-10-08 15:16:15.000000000 +0200
 
13981
@@ -311,7 +318,6 @@
 
13982
 srcdir = @srcdir@
 
13983
 sysconfdir = @sysconfdir@
 
13984
 target_alias = @target_alias@
 
13985
-top_build_prefix = @top_build_prefix@
 
13986
 top_builddir = @top_builddir@
 
13987
 top_srcdir = @top_srcdir@
 
13988
 noinst_LTLIBRARIES = totem-python.la
 
13989
Index: totem-2.24.3/bindings/vala/Makefile.in
 
13990
===================================================================
 
13991
--- totem-2.24.3.orig/bindings/vala/Makefile.in 2008-10-26 15:40:44.000000000 +0100
 
13992
+++ totem-2.24.3/bindings/vala/Makefile.in      2008-10-30 19:06:35.000000000 +0100
12334
13993
@@ -60,6 +60,8 @@
12335
13994
 AUTOHEADER = @AUTOHEADER@
12336
13995
 AUTOMAKE = @AUTOMAKE@
12340
13999
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
12341
14000
 BEMUSED_LIBS = @BEMUSED_LIBS@
12342
14001
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
12343
 
@@ -86,7 +88,8 @@
12344
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
14002
@@ -87,7 +89,7 @@
12345
14003
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
12346
14004
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
14005
 DSYMUTIL = @DSYMUTIL@
12347
14006
-ECHO = @ECHO@
12348
 
+DSYMUTIL = @DSYMUTIL@
12349
14007
+DUMPBIN = @DUMPBIN@
12350
14008
 ECHO_C = @ECHO_C@
12351
14009
 ECHO_N = @ECHO_N@
12352
14010
 ECHO_T = @ECHO_T@
12353
 
@@ -94,8 +97,7 @@
 
14011
@@ -95,8 +97,7 @@
12354
14012
 EXEEXT = @EXEEXT@
12355
14013
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
12356
14014
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
12360
14018
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
12361
14019
 GCONFTOOL = @GCONFTOOL@
12362
14020
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
12363
 
@@ -145,6 +147,7 @@
 
14021
@@ -146,6 +147,7 @@
12364
14022
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
12365
14023
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
12366
14024
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
12368
14026
 LDFLAGS = @LDFLAGS@
12369
14027
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
12370
14028
 LIBEPC_LIBS = @LIBEPC_LIBS@
12371
 
@@ -153,6 +156,7 @@
 
14029
@@ -154,6 +156,7 @@
12372
14030
 LIBOBJS = @LIBOBJS@
12373
14031
 LIBS = @LIBS@
12374
14032
 LIBTOOL = @LIBTOOL@
12376
14034
 LIRC_LIBS = @LIRC_LIBS@
12377
14035
 LN_S = @LN_S@
12378
14036
 LTLIBOBJS = @LTLIBOBJS@
12379
 
@@ -172,11 +176,15 @@
 
14037
@@ -173,12 +176,15 @@
12380
14038
 NAUTILUSDIR = @NAUTILUSDIR@
12381
14039
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
12382
14040
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
12383
14041
+NM = @NM@
12384
 
+NMEDIT = @NMEDIT@
 
14042
 NMEDIT = @NMEDIT@
12385
14043
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
12386
14044
 NVTV_CFLAGS = @NVTV_CFLAGS@
12387
14045
 NVTV_LIBS = @NVTV_LIBS@
12392
14050
 PACKAGE = @PACKAGE@
12393
14051
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
12394
14052
 PACKAGE_NAME = @PACKAGE_NAME@
12395
 
@@ -238,7 +246,7 @@
 
14053
@@ -240,7 +246,7 @@
12396
14054
 abs_top_srcdir = @abs_top_srcdir@
12397
14055
 ac_ct_CC = @ac_ct_CC@
12398
14056
 ac_ct_CXX = @ac_ct_CXX@
12401
14059
 am__include = @am__include@
12402
14060
 am__leading_dot = @am__leading_dot@
12403
14061
 am__quote = @am__quote@
12404
 
@@ -269,6 +277,7 @@
 
14062
@@ -271,6 +277,7 @@
12405
14063
 libexecdir = @libexecdir@
12406
14064
 localedir = @localedir@
12407
14065
 localstatedir = @localstatedir@
12409
14067
 mandir = @mandir@
12410
14068
 mkdir_p = @mkdir_p@
12411
14069
 oldincludedir = @oldincludedir@
12412
 
diff -Nurb totem-2.24.2/browser-plugin/Makefile.in totem-2.24.2.new/browser-plugin/Makefile.in
12413
 
--- totem-2.24.2/browser-plugin/Makefile.in     2008-10-07 16:18:53.000000000 +0200
12414
 
+++ totem-2.24.2.new/browser-plugin/Makefile.in 2008-10-08 15:16:16.000000000 +0200
 
14070
@@ -287,7 +294,6 @@
 
14071
 srcdir = @srcdir@
 
14072
 sysconfdir = @sysconfdir@
 
14073
 target_alias = @target_alias@
 
14074
-top_build_prefix = @top_build_prefix@
 
14075
 top_builddir = @top_builddir@
 
14076
 top_srcdir = @top_srcdir@
 
14077
 dist_noinst_DATA = \
 
14078
Index: totem-2.24.3/browser-plugin/Makefile.in
 
14079
===================================================================
 
14080
--- totem-2.24.3.orig/browser-plugin/Makefile.in        2008-10-26 15:40:45.000000000 +0100
 
14081
+++ totem-2.24.3/browser-plugin/Makefile.in     2008-10-30 19:06:36.000000000 +0100
12415
14082
@@ -321,6 +321,8 @@
12416
14083
 AUTOHEADER = @AUTOHEADER@
12417
14084
 AUTOMAKE = @AUTOMAKE@
12421
14088
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
12422
14089
 BEMUSED_LIBS = @BEMUSED_LIBS@
12423
14090
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
12424
 
@@ -347,7 +349,8 @@
12425
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
14091
@@ -348,7 +350,7 @@
12426
14092
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
12427
14093
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
14094
 DSYMUTIL = @DSYMUTIL@
12428
14095
-ECHO = @ECHO@
12429
 
+DSYMUTIL = @DSYMUTIL@
12430
14096
+DUMPBIN = @DUMPBIN@
12431
14097
 ECHO_C = @ECHO_C@
12432
14098
 ECHO_N = @ECHO_N@
12433
14099
 ECHO_T = @ECHO_T@
12434
 
@@ -355,8 +358,7 @@
 
14100
@@ -356,8 +358,7 @@
12435
14101
 EXEEXT = @EXEEXT@
12436
14102
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
12437
14103
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
12441
14107
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
12442
14108
 GCONFTOOL = @GCONFTOOL@
12443
14109
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
12444
 
@@ -406,6 +408,7 @@
 
14110
@@ -407,6 +408,7 @@
12445
14111
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
12446
14112
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
12447
14113
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
12449
14115
 LDFLAGS = @LDFLAGS@
12450
14116
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
12451
14117
 LIBEPC_LIBS = @LIBEPC_LIBS@
12452
 
@@ -414,6 +417,7 @@
 
14118
@@ -415,6 +417,7 @@
12453
14119
 LIBOBJS = @LIBOBJS@
12454
14120
 LIBS = @LIBS@
12455
14121
 LIBTOOL = @LIBTOOL@
12457
14123
 LIRC_LIBS = @LIRC_LIBS@
12458
14124
 LN_S = @LN_S@
12459
14125
 LTLIBOBJS = @LTLIBOBJS@
12460
 
@@ -433,11 +437,15 @@
 
14126
@@ -434,12 +437,15 @@
12461
14127
 NAUTILUSDIR = @NAUTILUSDIR@
12462
14128
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
12463
14129
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
12464
14130
+NM = @NM@
12465
 
+NMEDIT = @NMEDIT@
 
14131
 NMEDIT = @NMEDIT@
12466
14132
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
12467
14133
 NVTV_CFLAGS = @NVTV_CFLAGS@
12468
14134
 NVTV_LIBS = @NVTV_LIBS@
12473
14139
 PACKAGE = @PACKAGE@
12474
14140
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
12475
14141
 PACKAGE_NAME = @PACKAGE_NAME@
12476
 
@@ -499,7 +507,7 @@
 
14142
@@ -501,7 +507,7 @@
12477
14143
 abs_top_srcdir = @abs_top_srcdir@
12478
14144
 ac_ct_CC = @ac_ct_CC@
12479
14145
 ac_ct_CXX = @ac_ct_CXX@
12482
14148
 am__include = @am__include@
12483
14149
 am__leading_dot = @am__leading_dot@
12484
14150
 am__quote = @am__quote@
12485
 
@@ -530,6 +538,7 @@
 
14151
@@ -532,6 +538,7 @@
12486
14152
 libexecdir = @libexecdir@
12487
14153
 localedir = @localedir@
12488
14154
 localstatedir = @localstatedir@
12490
14156
 mandir = @mandir@
12491
14157
 mkdir_p = @mkdir_p@
12492
14158
 oldincludedir = @oldincludedir@
12493
 
diff -Nurb totem-2.24.2/config.h.in totem-2.24.2.new/config.h.in
12494
 
--- totem-2.24.2/config.h.in    2008-10-07 16:19:17.000000000 +0200
12495
 
+++ totem-2.24.2.new/config.h.in        2008-10-08 15:16:14.000000000 +0200
 
14159
@@ -548,7 +555,6 @@
 
14160
 srcdir = @srcdir@
 
14161
 sysconfdir = @sysconfdir@
 
14162
 target_alias = @target_alias@
 
14163
-top_build_prefix = @top_build_prefix@
 
14164
 top_builddir = @top_builddir@
 
14165
 top_srcdir = @top_srcdir@
 
14166
 plugindir = $(BROWSER_PLUGIN_DIR)
 
14167
Index: totem-2.24.3/config.h.in
 
14168
===================================================================
 
14169
--- totem-2.24.3.orig/config.h.in       2008-10-26 15:41:18.000000000 +0100
 
14170
+++ totem-2.24.3/config.h.in    2008-10-30 19:06:19.000000000 +0100
12496
14171
@@ -87,6 +87,10 @@
12497
14172
 /* ISO codes prefix */
12498
14173
 #undef ISO_CODES_PREFIX
12504
14179
 /* Define to 1 if your C compiler doesn't accept -c and -o together. */
12505
14180
 #undef NO_MINUS_C_MINUS_O
12506
14181
 
12507
 
diff -Nurb totem-2.24.2/configure totem-2.24.2.new/configure
12508
 
--- totem-2.24.2/configure      2008-10-07 16:19:01.000000000 +0200
12509
 
+++ totem-2.24.2.new/configure  2008-10-08 15:16:12.000000000 +0200
12510
 
@@ -555,22 +555,22 @@
 
14182
Index: totem-2.24.3/configure
 
14183
===================================================================
 
14184
--- totem-2.24.3.orig/configure 2008-10-26 15:40:53.000000000 +0100
 
14185
+++ totem-2.24.3/configure      2008-10-30 19:06:32.000000000 +0100
 
14186
@@ -1,11 +1,11 @@
 
14187
 #! /bin/sh
 
14188
 # Guess values for system-dependent variables and create Makefiles.
 
14189
-# Generated by GNU Autoconf 2.63 for totem 2.24.3.
 
14190
+# Generated by GNU Autoconf 2.61 for totem 2.24.3.
 
14191
 #
 
14192
 # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=totem>.
 
14193
 #
 
14194
 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
 
14195
-# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
 
14196
+# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 
14197
 # This configure script is free software; the Free Software Foundation
 
14198
 # gives unlimited permission to copy, distribute and modify it.
 
14199
 ## --------------------- ##
 
14200
@@ -17,7 +17,7 @@
 
14201
 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
14202
   emulate sh
 
14203
   NULLCMD=:
 
14204
-  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
 
14205
+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
 
14206
   # is contrary to our usage.  Disable this feature.
 
14207
   alias -g '${1+"$@"}'='"$@"'
 
14208
   setopt NO_GLOB_SUBST
 
14209
@@ -39,45 +39,17 @@
 
14210
 as_cr_digits='0123456789'
 
14211
 as_cr_alnum=$as_cr_Letters$as_cr_digits
 
14212
 
 
14213
-as_nl='
 
14214
-'
 
14215
-export as_nl
 
14216
-# Printing a long string crashes Solaris 7 /usr/bin/printf.
 
14217
-as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
 
14218
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
 
14219
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
 
14220
-if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
 
14221
-  as_echo='printf %s\n'
 
14222
-  as_echo_n='printf %s'
 
14223
-else
 
14224
-  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
 
14225
-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
 
14226
-    as_echo_n='/usr/ucb/echo -n'
 
14227
-  else
 
14228
-    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
 
14229
-    as_echo_n_body='eval
 
14230
-      arg=$1;
 
14231
-      case $arg in
 
14232
-      *"$as_nl"*)
 
14233
-       expr "X$arg" : "X\\(.*\\)$as_nl";
 
14234
-       arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
 
14235
-      esac;
 
14236
-      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
 
14237
-    '
 
14238
-    export as_echo_n_body
 
14239
-    as_echo_n='sh -c $as_echo_n_body as_echo'
 
14240
-  fi
 
14241
-  export as_echo_body
 
14242
-  as_echo='sh -c $as_echo_body as_echo'
 
14243
-fi
 
14244
-
 
14245
 # The user is always right.
 
14246
 if test "${PATH_SEPARATOR+set}" != set; then
 
14247
-  PATH_SEPARATOR=:
 
14248
-  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
 
14249
-    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
 
14250
-      PATH_SEPARATOR=';'
 
14251
-  }
 
14252
+  echo "#! /bin/sh" >conf$$.sh
 
14253
+  echo  "exit 0"   >>conf$$.sh
 
14254
+  chmod +x conf$$.sh
 
14255
+  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
 
14256
+    PATH_SEPARATOR=';'
 
14257
+  else
 
14258
+    PATH_SEPARATOR=:
 
14259
+  fi
 
14260
+  rm -f conf$$.sh
 
14261
 fi
 
14262
 
 
14263
 # Support unset when possible.
 
14264
@@ -93,6 +65,8 @@
 
14265
 # there to prevent editors from complaining about space-tab.
 
14266
 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
 
14267
 # splitting by setting IFS to empty value.)
 
14268
+as_nl='
 
14269
+'
 
14270
 IFS=" ""       $as_nl"
 
14271
 
 
14272
 # Find who we are.  Look in the path if we contain no directory separator.
 
14273
@@ -115,7 +89,7 @@
 
14274
   as_myself=$0
 
14275
 fi
 
14276
 if test ! -f "$as_myself"; then
 
14277
-  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 
14278
+  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 
14279
   { (exit 1); exit 1; }
 
14280
 fi
 
14281
 
 
14282
@@ -128,10 +102,17 @@
 
14283
 PS4='+ '
 
14284
 
 
14285
 # NLS nuisances.
 
14286
-LC_ALL=C
 
14287
-export LC_ALL
 
14288
-LANGUAGE=C
 
14289
-export LANGUAGE
 
14290
+for as_var in \
 
14291
+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
 
14292
+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
 
14293
+  LC_TELEPHONE LC_TIME
 
14294
+do
 
14295
+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
 
14296
+    eval $as_var=C; export $as_var
 
14297
+  else
 
14298
+    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 
14299
+  fi
 
14300
+done
 
14301
 
 
14302
 # Required to use basename.
 
14303
 if expr a : '\(a\)' >/dev/null 2>&1 &&
 
14304
@@ -153,7 +134,7 @@
 
14305
 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 
14306
         X"$0" : 'X\(//\)$' \| \
 
14307
         X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 
14308
-$as_echo X/"$0" |
 
14309
+echo X/"$0" |
 
14310
     sed '/^.*\/\([^/][^/]*\)\/*$/{
 
14311
            s//\1/
 
14312
            q
 
14313
@@ -179,7 +160,7 @@
 
14314
   as_have_required=no
 
14315
 fi
 
14316
 
 
14317
-  if test $as_have_required = yes &&    (eval ":
 
14318
+  if test $as_have_required = yes &&    (eval ":
 
14319
 (as_func_return () {
 
14320
   (exit \$1)
 
14321
 }
 
14322
@@ -261,7 +242,7 @@
 
14323
 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
14324
   emulate sh
 
14325
   NULLCMD=:
 
14326
-  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
 
14327
+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
 
14328
   # is contrary to our usage.  Disable this feature.
 
14329
   alias -g '${1+"$@"}'='"$@"'
 
14330
   setopt NO_GLOB_SUBST
 
14331
@@ -282,7 +263,7 @@
 
14332
 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
14333
   emulate sh
 
14334
   NULLCMD=:
 
14335
-  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
 
14336
+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
 
14337
   # is contrary to our usage.  Disable this feature.
 
14338
   alias -g '${1+"$@"}'='"$@"'
 
14339
   setopt NO_GLOB_SUBST
 
14340
@@ -362,10 +343,10 @@
 
14341
 
 
14342
       if test "x$CONFIG_SHELL" != x; then
 
14343
   for as_var in BASH_ENV ENV
 
14344
-       do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 
14345
-       done
 
14346
-       export CONFIG_SHELL
 
14347
-       exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
 
14348
+        do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 
14349
+        done
 
14350
+        export CONFIG_SHELL
 
14351
+        exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
 
14352
 fi
 
14353
 
 
14354
 
 
14355
@@ -434,10 +415,9 @@
 
14356
 
 
14357
 test \$exitcode = 0") || {
 
14358
   echo No shell found that supports shell functions.
 
14359
-  echo Please tell bug-autoconf@gnu.org about your system,
 
14360
-  echo including any error possibly output before this message.
 
14361
-  echo This can help us improve future autoconf versions.
 
14362
-  echo Configuration will now proceed without shell functions.
 
14363
+  echo Please tell autoconf@gnu.org about your system,
 
14364
+  echo including any error possibly output before this
 
14365
+  echo message
 
14366
 }
 
14367
 
 
14368
 
 
14369
@@ -473,7 +453,7 @@
 
14370
       s/-\n.*//
 
14371
     ' >$as_me.lineno &&
 
14372
   chmod +x "$as_me.lineno" ||
 
14373
-    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
 
14374
+    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
 
14375
    { (exit 1); exit 1; }; }
 
14376
 
 
14377
   # Don't try to exec as it changes $[0], causing all sort of problems
 
14378
@@ -501,6 +481,7 @@
 
14379
 *)
 
14380
   ECHO_N='-n';;
 
14381
 esac
 
14382
+
 
14383
 if expr a : '\(a\)' >/dev/null 2>&1 &&
 
14384
    test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
14385
   as_expr=expr
 
14386
@@ -513,22 +494,19 @@
 
14387
   rm -f conf$$.dir/conf$$.file
 
14388
 else
 
14389
   rm -f conf$$.dir
 
14390
-  mkdir conf$$.dir 2>/dev/null
 
14391
+  mkdir conf$$.dir
 
14392
 fi
 
14393
-if (echo >conf$$.file) 2>/dev/null; then
 
14394
-  if ln -s conf$$.file conf$$ 2>/dev/null; then
 
14395
-    as_ln_s='ln -s'
 
14396
-    # ... but there are two gotchas:
 
14397
-    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 
14398
-    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 
14399
-    # In both cases, we have to default to `cp -p'.
 
14400
-    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 
14401
-      as_ln_s='cp -p'
 
14402
-  elif ln conf$$.file conf$$ 2>/dev/null; then
 
14403
-    as_ln_s=ln
 
14404
-  else
 
14405
+echo >conf$$.file
 
14406
+if ln -s conf$$.file conf$$ 2>/dev/null; then
 
14407
+  as_ln_s='ln -s'
 
14408
+  # ... but there are two gotchas:
 
14409
+  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 
14410
+  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 
14411
+  # In both cases, we have to default to `cp -p'.
 
14412
+  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 
14413
     as_ln_s='cp -p'
 
14414
-  fi
 
14415
+elif ln conf$$.file conf$$ 2>/dev/null; then
 
14416
+  as_ln_s=ln
 
14417
 else
 
14418
   as_ln_s='cp -p'
 
14419
 fi
 
14420
@@ -553,10 +531,10 @@
 
14421
   as_test_x='
 
14422
     eval sh -c '\''
 
14423
       if test -d "$1"; then
 
14424
-       test -d "$1/.";
 
14425
+        test -d "$1/.";
 
14426
       else
 
14427
        case $1 in
 
14428
-       -*)set "./$1";;
 
14429
+        -*)set "./$1";;
 
14430
        esac;
 
14431
        case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
 
14432
        ???[sx]*):;;*)false;;esac;fi
 
14433
@@ -577,22 +555,22 @@
12511
14434
 # Check that we are running under the correct shell.
12512
14435
 SHELL=${CONFIG_SHELL-/bin/sh}
12513
14436
 
12535
14458
   :
12536
14459
 else
12537
14460
   # Restart under the correct shell.
12538
 
@@ -580,9 +580,9 @@
 
14461
@@ -602,9 +580,9 @@
12539
14462
 if test "X$1" = X--fallback-echo; then
12540
14463
   # used as fallback echo
12541
14464
   shift
12547
14470
   exit 0
12548
14471
 fi
12549
14472
 
12550
 
@@ -590,25 +590,24 @@
 
14473
@@ -612,121 +590,116 @@
12551
14474
 # if CDPATH is set.
12552
14475
 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
12553
14476
 
12554
14477
-if test -z "$ECHO"; then
12555
14478
-if test "X${echo_test_string+set}" != Xset; then
12556
14479
-# find a string as large as possible, as long as the shell can cope with it
 
14480
-  for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do
 
14481
-    # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
 
14482
-    if (echo_test_string=`eval $cmd`) 2>/dev/null &&
 
14483
-       echo_test_string=`eval $cmd` &&
 
14484
-       (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
 
14485
-    then
 
14486
-      break
 
14487
-    fi
 
14488
-  done
 
14489
-fi
12557
14490
+if test -z "$lt_ECHO"; then
12558
14491
+  if test "X${echo_test_string+set}" != Xset; then
12559
14492
+    # find a string as large as possible, as long as the shell can cope with it
12560
 
   for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do
12561
 
     # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
12562
 
-    if (echo_test_string=`eval $cmd`) 2>/dev/null &&
12563
 
-       echo_test_string=`eval $cmd` &&
12564
 
-       (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
 
14493
+    for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do
 
14494
+      # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
12565
14495
+      if { echo_test_string=`eval $cmd`; } 2>/dev/null &&
12566
14496
+        { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null
12567
 
     then
12568
 
       break
12569
 
     fi
12570
 
   done
12571
 
-fi
 
14497
+      then
 
14498
+        break
 
14499
+      fi
 
14500
+    done
12572
14501
+  fi
12573
14502
 
12574
14503
-if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
12575
14504
-   echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
 
14505
-   test "X$echo_testing_string" = "X$echo_test_string"; then
 
14506
-  :
 
14507
-else
 
14508
-  # The Solaris, AIX, and Digital Unix default echo programs unquote
 
14509
-  # backslashes.  This makes it impossible to quote backslashes using
 
14510
-  #   echo "$something" | sed 's/\\/\\\\/g'
 
14511
-  #
 
14512
-  # So, first we look for a working echo in the user's PATH.
12576
14513
+  if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' &&
12577
14514
+     echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` &&
12578
 
    test "X$echo_testing_string" = "X$echo_test_string"; then
12579
 
   :
12580
 
-else
 
14515
+     test "X$echo_testing_string" = "X$echo_test_string"; then
 
14516
+    :
12581
14517
+  else
12582
 
   # The Solaris, AIX, and Digital Unix default echo programs unquote
12583
 
   # backslashes.  This makes it impossible to quote backslashes using
12584
 
   #   echo "$something" | sed 's/\\/\\\\/g'
12585
 
@@ -622,20 +621,20 @@
12586
 
        test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
12587
 
        echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
12588
 
        test "X$echo_testing_string" = "X$echo_test_string"; then
 
14518
+    # The Solaris, AIX, and Digital Unix default echo programs unquote
 
14519
+    # backslashes.  This makes it impossible to quote backslashes using
 
14520
+    #   echo "$something" | sed 's/\\/\\\\/g'
 
14521
+    #
 
14522
+    # So, first we look for a working echo in the user's PATH.
 
14523
 
 
14524
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 
14525
-  for dir in $PATH /usr/ucb; do
 
14526
+    lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 
14527
+    for dir in $PATH /usr/ucb; do
 
14528
+      IFS="$lt_save_ifs"
 
14529
+      if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
 
14530
+         test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
 
14531
+         echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
 
14532
+         test "X$echo_testing_string" = "X$echo_test_string"; then
 
14533
+        ECHO="$dir/echo"
 
14534
+        break
 
14535
+      fi
 
14536
+    done
 
14537
     IFS="$lt_save_ifs"
 
14538
-    if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
 
14539
-       test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
 
14540
-       echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
 
14541
-       test "X$echo_testing_string" = "X$echo_test_string"; then
12589
14542
-      echo="$dir/echo"
12590
 
+        ECHO="$dir/echo"
12591
 
       break
12592
 
     fi
12593
 
   done
12594
 
   IFS="$lt_save_ifs"
 
14543
-      break
 
14544
-    fi
 
14545
-  done
 
14546
-  IFS="$lt_save_ifs"
12595
14547
 
12596
14548
-  if test "X$echo" = Xecho; then
12597
 
+    if test "X$ECHO" = Xecho; then
12598
 
     # We didn't find a better echo, so look for alternatives.
 
14549
-    # We didn't find a better echo, so look for alternatives.
12599
14550
-    if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
12600
14551
-       echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
12601
 
+      if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' &&
12602
 
+         echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` &&
12603
 
        test "X$echo_testing_string" = "X$echo_test_string"; then
12604
 
       # This shell has a builtin print -r that does the trick.
 
14552
-       test "X$echo_testing_string" = "X$echo_test_string"; then
 
14553
-      # This shell has a builtin print -r that does the trick.
12605
14554
-      echo='print -r'
12606
14555
-    elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
12607
 
+        ECHO='print -r'
12608
 
+      elif { test -f /bin/ksh || test -f /bin/ksh$ac_exeext; } &&
12609
 
         test "X$CONFIG_SHELL" != X/bin/ksh; then
12610
 
       # If we have ksh, try running configure again with it.
12611
 
       ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
12612
 
@@ -645,9 +644,9 @@
12613
 
       exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"}
12614
 
     else
12615
 
       # Try using printf.
 
14556
-        test "X$CONFIG_SHELL" != X/bin/ksh; then
 
14557
-      # If we have ksh, try running configure again with it.
 
14558
-      ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
 
14559
-      export ORIGINAL_CONFIG_SHELL
 
14560
-      CONFIG_SHELL=/bin/ksh
 
14561
-      export CONFIG_SHELL
 
14562
-      exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"}
 
14563
-    else
 
14564
-      # Try using printf.
12616
14565
-      echo='printf %s\n'
12617
14566
-      if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
12618
14567
-        echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
 
14568
-        test "X$echo_testing_string" = "X$echo_test_string"; then
 
14569
-       # Cool, printf works
 
14570
-       :
 
14571
-      elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
 
14572
-          test "X$echo_testing_string" = 'X\t' &&
 
14573
-          echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
 
14574
-          test "X$echo_testing_string" = "X$echo_test_string"; then
 
14575
-       CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
 
14576
-       export CONFIG_SHELL
 
14577
-       SHELL="$CONFIG_SHELL"
 
14578
-       export SHELL
 
14579
-       echo="$CONFIG_SHELL $0 --fallback-echo"
 
14580
-      elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
 
14581
-          test "X$echo_testing_string" = 'X\t' &&
 
14582
-          echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
 
14583
+    if test "X$ECHO" = Xecho; then
 
14584
+      # We didn't find a better echo, so look for alternatives.
 
14585
+      if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' &&
 
14586
+         echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` &&
 
14587
+         test "X$echo_testing_string" = "X$echo_test_string"; then
 
14588
+        # This shell has a builtin print -r that does the trick.
 
14589
+        ECHO='print -r'
 
14590
+      elif { test -f /bin/ksh || test -f /bin/ksh$ac_exeext; } &&
 
14591
+          test "X$CONFIG_SHELL" != X/bin/ksh; then
 
14592
+        # If we have ksh, try running configure again with it.
 
14593
+        ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
 
14594
+        export ORIGINAL_CONFIG_SHELL
 
14595
+        CONFIG_SHELL=/bin/ksh
 
14596
+        export CONFIG_SHELL
 
14597
+        exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"}
 
14598
+      else
 
14599
+        # Try using printf.
12619
14600
+        ECHO='printf %s\n'
12620
14601
+        if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' &&
12621
14602
+          echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` &&
12622
 
         test "X$echo_testing_string" = "X$echo_test_string"; then
12623
 
        # Cool, printf works
12624
 
        :
12625
 
@@ -659,18 +658,18 @@
12626
 
        export CONFIG_SHELL
12627
 
        SHELL="$CONFIG_SHELL"
12628
 
        export SHELL
12629
 
-       echo="$CONFIG_SHELL $0 --fallback-echo"
12630
 
+         ECHO="$CONFIG_SHELL $0 --fallback-echo"
12631
 
       elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
12632
 
           test "X$echo_testing_string" = 'X\t' &&
12633
 
           echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
12634
14603
           test "X$echo_testing_string" = "X$echo_test_string"; then
12635
14604
-       echo="$CONFIG_SHELL $0 --fallback-echo"
12636
 
+         ECHO="$CONFIG_SHELL $0 --fallback-echo"
12637
 
       else
12638
 
        # maybe with a smaller string...
12639
 
        prev=:
 
14605
-      else
 
14606
-       # maybe with a smaller string...
 
14607
-       prev=:
 
14608
+         # Cool, printf works
 
14609
+         :
 
14610
+        elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
 
14611
+            test "X$echo_testing_string" = 'X\t' &&
 
14612
+            echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
 
14613
+            test "X$echo_testing_string" = "X$echo_test_string"; then
 
14614
+         CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
 
14615
+         export CONFIG_SHELL
 
14616
+         SHELL="$CONFIG_SHELL"
 
14617
+         export SHELL
 
14618
+         ECHO="$CONFIG_SHELL $0 --fallback-echo"
 
14619
+        elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
 
14620
+            test "X$echo_testing_string" = 'X\t' &&
 
14621
+            echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
 
14622
+            test "X$echo_testing_string" = "X$echo_test_string"; then
 
14623
+         ECHO="$CONFIG_SHELL $0 --fallback-echo"
 
14624
+        else
 
14625
+         # maybe with a smaller string...
 
14626
+         prev=:
12640
14627
 
12641
 
        for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do
 
14628
-       for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do
12642
14629
-         if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
 
14630
-         then
 
14631
-           break
 
14632
-         fi
 
14633
-         prev="$cmd"
 
14634
-       done
 
14635
+         for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do
12643
14636
+           if { test "X$echo_test_string" = "X`eval $cmd`"; } 2>/dev/null
12644
 
          then
12645
 
            break
12646
 
          fi
12647
 
@@ -683,28 +682,24 @@
12648
 
          exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"}
12649
 
        else
12650
 
          # Oops.  We lost completely, so just stick with echo.
 
14637
+           then
 
14638
+             break
 
14639
+           fi
 
14640
+           prev="$cmd"
 
14641
+         done
 
14642
 
 
14643
-       if test "$prev" != 'sed 50q "$0"'; then
 
14644
-         echo_test_string=`eval $prev`
 
14645
-         export echo_test_string
 
14646
-         exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"}
 
14647
-       else
 
14648
-         # Oops.  We lost completely, so just stick with echo.
12651
14649
-         echo=echo
 
14650
-       fi
 
14651
+         if test "$prev" != 'sed 50q "$0"'; then
 
14652
+           echo_test_string=`eval $prev`
 
14653
+           export echo_test_string
 
14654
+           exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"}
 
14655
+         else
 
14656
+           # Oops.  We lost completely, so just stick with echo.
12652
14657
+           ECHO=echo
12653
14658
+         fi
12654
 
        fi
 
14659
+        fi
12655
14660
       fi
12656
14661
     fi
12657
14662
   fi
 
14663
 fi
12658
14664
-fi
12659
 
 fi
12660
14665
 
12661
14666
 # Copy echo and quote the copy suitably for passing to libtool from
12662
14667
 # the Makefile, instead of quoting the original, which is used later.
12678
14683
 exec 7<&0 </dev/null 6>&1
12679
14684
 
12680
14685
 # Name of the host.
12681
 
@@ -904,6 +899,7 @@
12682
 
 CXXDEPMODE
12683
 
 am__fastdepCXX_TRUE
12684
 
 am__fastdepCXX_FALSE
 
14686
@@ -791,345 +764,305 @@
 
14687
 # include <unistd.h>
 
14688
 #endif"
 
14689
 
 
14690
-ac_subst_vars='LTLIBOBJS
 
14691
-LIBOBJS
 
14692
-AM_LDFLAGS
 
14693
-AM_CXXFLAGS
 
14694
-AM_CFLAGS
 
14695
-AM_CPPFLAGS
 
14696
-FULL_LIBEXECDIR
 
14697
-DISABLE_DEPRECATED
 
14698
-MAINT
 
14699
-MAINTAINER_MODE_FALSE
 
14700
-MAINTAINER_MODE_TRUE
 
14701
-WARN_CXXFLAGS
 
14702
-WARN_CFLAGS
 
14703
-ACLOCAL_AMFLAGS
 
14704
-GCONF_SCHEMAS_INSTALL_FALSE
 
14705
-GCONF_SCHEMAS_INSTALL_TRUE
 
14706
-GCONF_SCHEMA_FILE_DIR
 
14707
-GCONF_SCHEMA_CONFIG_SOURCE
 
14708
-GCONFTOOL
 
14709
-WITH_DBUS_FALSE
 
14710
-WITH_DBUS_TRUE
 
14711
-HAVE_NAUTILUS_FALSE
 
14712
-HAVE_NAUTILUS_TRUE
 
14713
-NAUTILUSDIR
 
14714
-NAUTILUS_LIBS
 
14715
-NAUTILUS_CFLAGS
 
14716
-ENABLE_CONE_PLUGIN_FALSE
 
14717
-ENABLE_CONE_PLUGIN_TRUE
 
14718
-ENABLE_MULLY_PLUGIN_FALSE
 
14719
-ENABLE_MULLY_PLUGIN_TRUE
 
14720
-ENABLE_NARROWSPACE_PLUGIN_FALSE
 
14721
-ENABLE_NARROWSPACE_PLUGIN_TRUE
 
14722
-ENABLE_COMPLEX_PLUGIN_FALSE
 
14723
-ENABLE_COMPLEX_PLUGIN_TRUE
 
14724
-ENABLE_GMP_PLUGIN_FALSE
 
14725
-ENABLE_GMP_PLUGIN_TRUE
 
14726
-ENABLE_BASIC_PLUGIN_FALSE
 
14727
-ENABLE_BASIC_PLUGIN_TRUE
 
14728
-ENABLE_BROWSER_PLUGINS_FALSE
 
14729
-ENABLE_BROWSER_PLUGINS_TRUE
 
14730
-SN_LIBS
 
14731
-SN_CFLAGS
 
14732
-DBUS_BIND
 
14733
-DBUS_LIBS
 
14734
-DBUS_CFLAGS
 
14735
-BROWSER_PLUGIN_LIBS
 
14736
-BROWSER_PLUGIN_CFLAGS
 
14737
-BROWSER_PLUGIN_DIR
 
14738
-PLUGINS
 
14739
-ALL_PLUGINS
 
14740
-GLIB_LIBS
 
14741
-GLIB_CFLAGS
 
14742
-TRACKER_LIBS
 
14743
-TRACKER_CFLAGS
 
14744
-LIBEPC_LIBS
 
14745
-LIBEPC_CFLAGS
 
14746
-BEMUSED_LIBS
 
14747
-BEMUSED_CFLAGS
 
14748
-GMYTH_LIBS
 
14749
-GMYTH_CFLAGS
 
14750
-LIRC_LIBS
 
14751
-MEDIA_PLAYER_KEYS_LIBS
 
14752
-MEDIA_PLAYER_KEYS_CFLAGS
 
14753
-LIBGALAGO_LIBS
 
14754
-LIBGALAGO_CFLAGS
 
14755
-ENABLE_VALA_FALSE
 
14756
-ENABLE_VALA_TRUE
 
14757
-VALAC
 
14758
-VALA_LIBS
 
14759
-VALA_CFLAGS
 
14760
-ENABLE_PYTHON_FALSE
 
14761
-ENABLE_PYTHON_TRUE
 
14762
-NO_STRICT_ALIASING_CFLAGS
 
14763
-PYGTK_H2DEF
 
14764
-PYGTK_CODEGEN
 
14765
-PYGTK_DEFSDIR
 
14766
-PYGTK_LIBS
 
14767
-PYGTK_CFLAGS
 
14768
-PYTHON_EXTRA_LIBS
 
14769
-PYTHON_CFLAGS
 
14770
-PYTHON_LIB_LOC
 
14771
-PYTHON_LIBS
 
14772
-pkgpyexecdir
 
14773
-pyexecdir
 
14774
-pkgpythondir
 
14775
-pythondir
 
14776
-PYTHON_PLATFORM
 
14777
-PYTHON_EXEC_PREFIX
 
14778
-PYTHON_PREFIX
 
14779
-PYTHON_VERSION
 
14780
-PYTHON
 
14781
-HAVE_XVIDMODE_FALSE
 
14782
-HAVE_XVIDMODE_TRUE
 
14783
-X_LIBS
 
14784
-XVIDMODE_LIBS
 
14785
-XVIDMODE_CFLAGS
 
14786
-XTEST_LIBS
 
14787
-XMKMF
 
14788
-GTK_LIBS
 
14789
-GTK_CFLAGS
 
14790
-HAVE_GNOME_FALSE
 
14791
-HAVE_GNOME_TRUE
 
14792
-MM_LIBS
 
14793
-MM_CFLAGS
 
14794
-EXTRA_GNOME_LIBS
 
14795
-EXTRA_GNOME_CFLAGS
 
14796
-TOTEM_GST_FALSE
 
14797
-TOTEM_GST_TRUE
 
14798
-XINE_LIBS
 
14799
-XINE_CFLAGS
 
14800
-GST_LIBS
 
14801
-GST_CFLAGS
 
14802
-MISSING_PLUGINS_LIBS
 
14803
-MISSING_PLUGINS_CFLAGS
 
14804
-NVTV_LIBS
 
14805
-NVTV_CFLAGS
 
14806
-PLUGINDIR
 
14807
-TOTEM_VERSION_MICRO
 
14808
-TOTEM_VERSION_MINOR
 
14809
-TOTEM_VERSION_MAJOR
 
14810
-GLIB_MKENUMS
 
14811
-GLIB_GENMARSHAL
 
14812
-LIBTOOL
 
14813
-ac_ct_F77
 
14814
-FFLAGS
 
14815
-F77
 
14816
-CXXCPP
 
14817
-NMEDIT
 
14818
-DSYMUTIL
 
14819
-RANLIB
 
14820
-AR
 
14821
-ECHO
 
14822
-LN_S
 
14823
-SED
 
14824
-host_os
 
14825
-host_vendor
 
14826
-host_cpu
 
14827
-host
 
14828
-build_os
 
14829
-build_vendor
 
14830
-build_cpu
 
14831
-build
 
14832
-am__fastdepCXX_FALSE
 
14833
-am__fastdepCXX_TRUE
 
14834
-CXXDEPMODE
 
14835
-ac_ct_CXX
 
14836
-CXXFLAGS
 
14837
-CXX
 
14838
-HAVE_GNOME_DOC_UTILS_FALSE
 
14839
-HAVE_GNOME_DOC_UTILS_TRUE
 
14840
-DISTCHECK_CONFIGURE_FLAGS
 
14841
-ENABLE_SK_FALSE
 
14842
-ENABLE_SK_TRUE
 
14843
-DOC_USER_FORMATS
 
14844
-OMF_DIR
 
14845
-HELP_DIR
 
14846
-PKG_CONFIG
 
14847
-ALL_LINGUAS
 
14848
-INTLTOOL_PERL
 
14849
-MSGMERGE
 
14850
-INTLTOOL_POLICY_RULE
 
14851
-INTLTOOL_SERVICE_RULE
 
14852
-INTLTOOL_THEME_RULE
 
14853
-INTLTOOL_SCHEMAS_RULE
 
14854
-INTLTOOL_CAVES_RULE
 
14855
-INTLTOOL_XML_NOMERGE_RULE
 
14856
-INTLTOOL_XML_RULE
 
14857
-INTLTOOL_KBD_RULE
 
14858
-INTLTOOL_XAM_RULE
 
14859
-INTLTOOL_UI_RULE
 
14860
-INTLTOOL_SOUNDLIST_RULE
 
14861
-INTLTOOL_SHEET_RULE
 
14862
-INTLTOOL_SERVER_RULE
 
14863
-INTLTOOL_PONG_RULE
 
14864
-INTLTOOL_OAF_RULE
 
14865
-INTLTOOL_PROP_RULE
 
14866
-INTLTOOL_KEYS_RULE
 
14867
-INTLTOOL_DIRECTORY_RULE
 
14868
-INTLTOOL_DESKTOP_RULE
 
14869
-INTLTOOL_EXTRACT
 
14870
-INTLTOOL_MERGE
 
14871
-INTLTOOL_UPDATE
 
14872
-MKINSTALLDIRS
 
14873
-POSUB
 
14874
-POFILES
 
14875
-PO_IN_DATADIR_FALSE
 
14876
-PO_IN_DATADIR_TRUE
 
14877
-INTLLIBS
 
14878
-INSTOBJEXT
 
14879
-GMOFILES
 
14880
-DATADIRNAME
 
14881
-CATOBJEXT
 
14882
-CATALOGS
 
14883
-XGETTEXT
 
14884
-GMSGFMT
 
14885
-MSGFMT_OPTS
 
14886
-MSGFMT
 
14887
-USE_NLS
 
14888
-EGREP
 
14889
-GREP
 
14890
-CPP
 
14891
-am__fastdepCC_FALSE
 
14892
-am__fastdepCC_TRUE
 
14893
-CCDEPMODE
 
14894
-AMDEPBACKSLASH
 
14895
-AMDEP_FALSE
 
14896
-AMDEP_TRUE
 
14897
-am__quote
 
14898
-am__include
 
14899
-DEPDIR
 
14900
-OBJEXT
 
14901
-EXEEXT
 
14902
-ac_ct_CC
 
14903
-CPPFLAGS
 
14904
-LDFLAGS
 
14905
-CFLAGS
 
14906
-CC
 
14907
-GETTEXT_PACKAGE
 
14908
-am__untar
 
14909
-am__tar
 
14910
-AMTAR
 
14911
-am__leading_dot
 
14912
-SET_MAKE
 
14913
-AWK
 
14914
-mkdir_p
 
14915
-MKDIR_P
 
14916
-INSTALL_STRIP_PROGRAM
 
14917
-STRIP
 
14918
-install_sh
 
14919
-MAKEINFO
 
14920
-AUTOHEADER
 
14921
-AUTOMAKE
 
14922
-AUTOCONF
 
14923
-ACLOCAL
 
14924
-VERSION
 
14925
-PACKAGE
 
14926
-CYGPATH_W
 
14927
-am__isrc
 
14928
-INSTALL_DATA
 
14929
-INSTALL_SCRIPT
 
14930
-INSTALL_PROGRAM
 
14931
-target_alias
 
14932
-host_alias
 
14933
-build_alias
 
14934
-LIBS
 
14935
-ECHO_T
 
14936
-ECHO_N
 
14937
-ECHO_C
 
14938
-DEFS
 
14939
-mandir
 
14940
-localedir
 
14941
-libdir
 
14942
-psdir
 
14943
-pdfdir
 
14944
-dvidir
 
14945
-htmldir
 
14946
-infodir
 
14947
-docdir
 
14948
-oldincludedir
 
14949
-includedir
 
14950
-localstatedir
 
14951
-sharedstatedir
 
14952
-sysconfdir
 
14953
-datadir
 
14954
-datarootdir
 
14955
-libexecdir
 
14956
-sbindir
 
14957
-bindir
 
14958
-program_transform_name
 
14959
-prefix
 
14960
-exec_prefix
 
14961
-PACKAGE_BUGREPORT
 
14962
-PACKAGE_STRING
 
14963
-PACKAGE_VERSION
 
14964
-PACKAGE_TARNAME
 
14965
-PACKAGE_NAME
 
14966
+ac_subst_vars='SHELL
 
14967
 PATH_SEPARATOR
 
14968
-SHELL'
 
14969
-ac_subst_files=''
 
14970
-ac_user_opts='
 
14971
-enable_option_checking
 
14972
-enable_dependency_tracking
 
14973
-enable_nls
 
14974
-with_help_dir
 
14975
-with_omf_dir
 
14976
-with_help_formats
 
14977
-enable_scrollkeeper
 
14978
-enable_shared
 
14979
-enable_static
 
14980
-enable_fast_install
 
14981
-with_gnu_ld
 
14982
-enable_libtool_lock
 
14983
-with_pic
 
14984
-with_tags
 
14985
-enable_nvtv
 
14986
-enable_xine
 
14987
-enable_easy_codec_installation
 
14988
-enable_iso_codes
 
14989
-enable_gtk
 
14990
-with_x
 
14991
-enable_python
 
14992
-enable_vala
 
14993
-with_plugins
 
14994
-enable_browser_plugins
 
14995
-enable_basic_plugin
 
14996
-enable_gmp_plugin
 
14997
-enable_complex_plugin
 
14998
-enable_narrowspace_plugin
 
14999
-enable_mully_plugin
 
15000
-enable_cone_plugin
 
15001
-enable_nautilus
 
15002
-with_dbus
 
15003
-with_gconf_source
 
15004
-with_gconf_schema_file_dir
 
15005
-enable_schemas_install
 
15006
-enable_debug
 
15007
-enable_compile_warnings
 
15008
-enable_iso_c
 
15009
-enable_cxx_warnings
 
15010
-enable_iso_cxx
 
15011
-enable_maintainer_mode
 
15012
-enable_run_in_source_tree
 
15013
-'
 
15014
-      ac_precious_vars='build_alias
 
15015
+PACKAGE_NAME
 
15016
+PACKAGE_TARNAME
 
15017
+PACKAGE_VERSION
 
15018
+PACKAGE_STRING
 
15019
+PACKAGE_BUGREPORT
 
15020
+exec_prefix
 
15021
+prefix
 
15022
+program_transform_name
 
15023
+bindir
 
15024
+sbindir
 
15025
+libexecdir
 
15026
+datarootdir
 
15027
+datadir
 
15028
+sysconfdir
 
15029
+sharedstatedir
 
15030
+localstatedir
 
15031
+includedir
 
15032
+oldincludedir
 
15033
+docdir
 
15034
+infodir
 
15035
+htmldir
 
15036
+dvidir
 
15037
+pdfdir
 
15038
+psdir
 
15039
+libdir
 
15040
+localedir
 
15041
+mandir
 
15042
+DEFS
 
15043
+ECHO_C
 
15044
+ECHO_N
 
15045
+ECHO_T
 
15046
+LIBS
 
15047
+build_alias
 
15048
 host_alias
 
15049
 target_alias
 
15050
+INSTALL_PROGRAM
 
15051
+INSTALL_SCRIPT
 
15052
+INSTALL_DATA
 
15053
+am__isrc
 
15054
+CYGPATH_W
 
15055
+PACKAGE
 
15056
+VERSION
 
15057
+ACLOCAL
 
15058
+AUTOCONF
 
15059
+AUTOMAKE
 
15060
+AUTOHEADER
 
15061
+MAKEINFO
 
15062
+install_sh
 
15063
+STRIP
 
15064
+INSTALL_STRIP_PROGRAM
 
15065
+mkdir_p
 
15066
+AWK
 
15067
+SET_MAKE
 
15068
+am__leading_dot
 
15069
+AMTAR
 
15070
+am__tar
 
15071
+am__untar
 
15072
+GETTEXT_PACKAGE
 
15073
 CC
 
15074
 CFLAGS
 
15075
 LDFLAGS
 
15076
-LIBS
 
15077
 CPPFLAGS
 
15078
+ac_ct_CC
 
15079
+EXEEXT
 
15080
+OBJEXT
 
15081
+DEPDIR
 
15082
+am__include
 
15083
+am__quote
 
15084
+AMDEP_TRUE
 
15085
+AMDEP_FALSE
 
15086
+AMDEPBACKSLASH
 
15087
+CCDEPMODE
 
15088
+am__fastdepCC_TRUE
 
15089
+am__fastdepCC_FALSE
 
15090
 CPP
 
15091
+GREP
 
15092
+EGREP
 
15093
+USE_NLS
 
15094
+MSGFMT
 
15095
+MSGFMT_OPTS
 
15096
+GMSGFMT
 
15097
+XGETTEXT
 
15098
+CATALOGS
 
15099
+CATOBJEXT
 
15100
+DATADIRNAME
 
15101
+GMOFILES
 
15102
+INSTOBJEXT
 
15103
+INTLLIBS
 
15104
+PO_IN_DATADIR_TRUE
 
15105
+PO_IN_DATADIR_FALSE
 
15106
+POFILES
 
15107
+POSUB
 
15108
+MKINSTALLDIRS
 
15109
+INTLTOOL_UPDATE
 
15110
+INTLTOOL_MERGE
 
15111
+INTLTOOL_EXTRACT
 
15112
+INTLTOOL_DESKTOP_RULE
 
15113
+INTLTOOL_DIRECTORY_RULE
 
15114
+INTLTOOL_KEYS_RULE
 
15115
+INTLTOOL_PROP_RULE
 
15116
+INTLTOOL_OAF_RULE
 
15117
+INTLTOOL_PONG_RULE
 
15118
+INTLTOOL_SERVER_RULE
 
15119
+INTLTOOL_SHEET_RULE
 
15120
+INTLTOOL_SOUNDLIST_RULE
 
15121
+INTLTOOL_UI_RULE
 
15122
+INTLTOOL_XAM_RULE
 
15123
+INTLTOOL_KBD_RULE
 
15124
+INTLTOOL_XML_RULE
 
15125
+INTLTOOL_XML_NOMERGE_RULE
 
15126
+INTLTOOL_CAVES_RULE
 
15127
+INTLTOOL_SCHEMAS_RULE
 
15128
+INTLTOOL_THEME_RULE
 
15129
+INTLTOOL_SERVICE_RULE
 
15130
+INTLTOOL_POLICY_RULE
 
15131
+MSGMERGE
 
15132
+INTLTOOL_PERL
 
15133
+ALL_LINGUAS
 
15134
 PKG_CONFIG
 
15135
+HELP_DIR
 
15136
+OMF_DIR
 
15137
+DOC_USER_FORMATS
 
15138
+ENABLE_SK_TRUE
 
15139
+ENABLE_SK_FALSE
 
15140
+DISTCHECK_CONFIGURE_FLAGS
 
15141
+HAVE_GNOME_DOC_UTILS_TRUE
 
15142
+HAVE_GNOME_DOC_UTILS_FALSE
 
15143
 CXX
 
15144
 CXXFLAGS
 
15145
-CCC
 
15146
+ac_ct_CXX
 
15147
+CXXDEPMODE
 
15148
+am__fastdepCXX_TRUE
 
15149
+am__fastdepCXX_FALSE
12685
15150
+LIBTOOL
12686
 
 build
12687
 
 build_cpu
12688
 
 build_vendor
12689
 
@@ -913,15 +909,21 @@
12690
 
 host_vendor
12691
 
 host_os
12692
 
 SED
 
15151
+build
 
15152
+build_cpu
 
15153
+build_vendor
 
15154
+build_os
 
15155
+host
 
15156
+host_cpu
 
15157
+host_vendor
 
15158
+host_os
 
15159
+SED
12693
15160
+FGREP
12694
15161
+LD
12695
15162
+DUMPBIN
12696
15163
+ac_ct_DUMPBIN
12697
15164
+NM
12698
 
 LN_S
12699
 
-ECHO
12700
 
 AR
12701
 
 RANLIB
 
15165
+LN_S
 
15166
+AR
 
15167
+RANLIB
12702
15168
+lt_ECHO
12703
15169
+DSYMUTIL
12704
15170
+NMEDIT
12705
15171
+LIPO
12706
15172
+OTOOL
12707
15173
+OTOOL64
12708
 
 CXXCPP
12709
 
-F77
12710
 
-FFLAGS
12711
 
-ac_ct_F77
12712
 
-LIBTOOL
12713
 
 GLIB_GENMARSHAL
12714
 
 GLIB_MKENUMS
12715
 
 TOTEM_VERSION_MAJOR
12716
 
@@ -986,6 +988,8 @@
12717
 
 LIRC_LIBS
12718
 
 GMYTH_CFLAGS
12719
 
 GMYTH_LIBS
 
15174
+CXXCPP
 
15175
+GLIB_GENMARSHAL
 
15176
+GLIB_MKENUMS
 
15177
+TOTEM_VERSION_MAJOR
 
15178
+TOTEM_VERSION_MINOR
 
15179
+TOTEM_VERSION_MICRO
 
15180
+PLUGINDIR
 
15181
+NVTV_CFLAGS
 
15182
+NVTV_LIBS
 
15183
+MISSING_PLUGINS_CFLAGS
 
15184
+MISSING_PLUGINS_LIBS
 
15185
+GST_CFLAGS
 
15186
+GST_LIBS
 
15187
+XINE_CFLAGS
 
15188
+XINE_LIBS
 
15189
+TOTEM_GST_TRUE
 
15190
+TOTEM_GST_FALSE
 
15191
+EXTRA_GNOME_CFLAGS
 
15192
+EXTRA_GNOME_LIBS
 
15193
+MM_CFLAGS
 
15194
+MM_LIBS
 
15195
+HAVE_GNOME_TRUE
 
15196
+HAVE_GNOME_FALSE
 
15197
+GTK_CFLAGS
 
15198
+GTK_LIBS
 
15199
+XMKMF
 
15200
+XTEST_LIBS
 
15201
+XVIDMODE_CFLAGS
 
15202
+XVIDMODE_LIBS
 
15203
+X_LIBS
 
15204
+HAVE_XVIDMODE_TRUE
 
15205
+HAVE_XVIDMODE_FALSE
 
15206
+PYTHON
 
15207
+PYTHON_VERSION
 
15208
+PYTHON_PREFIX
 
15209
+PYTHON_EXEC_PREFIX
 
15210
+PYTHON_PLATFORM
 
15211
+pythondir
 
15212
+pkgpythondir
 
15213
+pyexecdir
 
15214
+pkgpyexecdir
 
15215
+PYTHON_LIBS
 
15216
+PYTHON_LIB_LOC
 
15217
+PYTHON_CFLAGS
 
15218
+PYTHON_EXTRA_LIBS
 
15219
+PYGTK_CFLAGS
 
15220
+PYGTK_LIBS
 
15221
+PYGTK_DEFSDIR
 
15222
+PYGTK_CODEGEN
 
15223
+PYGTK_H2DEF
 
15224
+NO_STRICT_ALIASING_CFLAGS
 
15225
+ENABLE_PYTHON_TRUE
 
15226
+ENABLE_PYTHON_FALSE
 
15227
+VALA_CFLAGS
 
15228
+VALA_LIBS
 
15229
+VALAC
 
15230
+ENABLE_VALA_TRUE
 
15231
+ENABLE_VALA_FALSE
 
15232
+LIBGALAGO_CFLAGS
 
15233
+LIBGALAGO_LIBS
 
15234
+MEDIA_PLAYER_KEYS_CFLAGS
 
15235
+MEDIA_PLAYER_KEYS_LIBS
 
15236
+LIRC_LIBS
 
15237
+GMYTH_CFLAGS
 
15238
+GMYTH_LIBS
12720
15239
+BBC_CFLAGS
12721
15240
+BBC_LIBS
12722
 
 BEMUSED_CFLAGS
12723
 
 BEMUSED_LIBS
12724
 
 LIBEPC_CFLAGS
12725
 
@@ -1059,8 +1063,6 @@
12726
 
 CXXFLAGS
12727
 
 CCC
 
15241
+BEMUSED_CFLAGS
 
15242
+BEMUSED_LIBS
 
15243
+LIBEPC_CFLAGS
 
15244
+LIBEPC_LIBS
 
15245
+TRACKER_CFLAGS
 
15246
+TRACKER_LIBS
 
15247
+GLIB_CFLAGS
 
15248
+GLIB_LIBS
 
15249
+ALL_PLUGINS
 
15250
+PLUGINS
 
15251
+BROWSER_PLUGIN_DIR
 
15252
+BROWSER_PLUGIN_CFLAGS
 
15253
+BROWSER_PLUGIN_LIBS
 
15254
+DBUS_CFLAGS
 
15255
+DBUS_LIBS
 
15256
+DBUS_BIND
 
15257
+SN_CFLAGS
 
15258
+SN_LIBS
 
15259
+ENABLE_BROWSER_PLUGINS_TRUE
 
15260
+ENABLE_BROWSER_PLUGINS_FALSE
 
15261
+ENABLE_BASIC_PLUGIN_TRUE
 
15262
+ENABLE_BASIC_PLUGIN_FALSE
 
15263
+ENABLE_GMP_PLUGIN_TRUE
 
15264
+ENABLE_GMP_PLUGIN_FALSE
 
15265
+ENABLE_COMPLEX_PLUGIN_TRUE
 
15266
+ENABLE_COMPLEX_PLUGIN_FALSE
 
15267
+ENABLE_NARROWSPACE_PLUGIN_TRUE
 
15268
+ENABLE_NARROWSPACE_PLUGIN_FALSE
 
15269
+ENABLE_MULLY_PLUGIN_TRUE
 
15270
+ENABLE_MULLY_PLUGIN_FALSE
 
15271
+ENABLE_CONE_PLUGIN_TRUE
 
15272
+ENABLE_CONE_PLUGIN_FALSE
 
15273
+NAUTILUS_CFLAGS
 
15274
+NAUTILUS_LIBS
 
15275
+NAUTILUSDIR
 
15276
+HAVE_NAUTILUS_TRUE
 
15277
+HAVE_NAUTILUS_FALSE
 
15278
+WITH_DBUS_TRUE
 
15279
+WITH_DBUS_FALSE
 
15280
+GCONFTOOL
 
15281
+GCONF_SCHEMA_CONFIG_SOURCE
 
15282
+GCONF_SCHEMA_FILE_DIR
 
15283
+GCONF_SCHEMAS_INSTALL_TRUE
 
15284
+GCONF_SCHEMAS_INSTALL_FALSE
 
15285
+ACLOCAL_AMFLAGS
 
15286
+WARN_CFLAGS
 
15287
+WARN_CXXFLAGS
 
15288
+MAINTAINER_MODE_TRUE
 
15289
+MAINTAINER_MODE_FALSE
 
15290
+MAINT
 
15291
+DISABLE_DEPRECATED
 
15292
+FULL_LIBEXECDIR
 
15293
+AM_CPPFLAGS
 
15294
+AM_CFLAGS
 
15295
+AM_CXXFLAGS
 
15296
+AM_LDFLAGS
 
15297
+LIBOBJS
 
15298
+LTLIBOBJS'
 
15299
+ac_subst_files=''
 
15300
+      ac_precious_vars='build_alias
 
15301
+host_alias
 
15302
+target_alias
 
15303
+CC
 
15304
+CFLAGS
 
15305
+LDFLAGS
 
15306
+LIBS
 
15307
+CPPFLAGS
 
15308
+CPP
 
15309
+PKG_CONFIG
 
15310
+CXX
 
15311
+CXXFLAGS
 
15312
+CCC
12728
15313
 CXXCPP
12729
15314
-F77
12730
15315
-FFLAGS
12731
15316
 NVTV_CFLAGS
12732
15317
 NVTV_LIBS
12733
15318
 MISSING_PLUGINS_CFLAGS
12734
 
@@ -1088,6 +1090,8 @@
 
15319
@@ -1157,6 +1090,8 @@
12735
15320
 MEDIA_PLAYER_KEYS_LIBS
12736
15321
 GMYTH_CFLAGS
12737
15322
 GMYTH_LIBS
12740
15325
 BEMUSED_CFLAGS
12741
15326
 BEMUSED_LIBS
12742
15327
 LIBEPC_CFLAGS
12743
 
@@ -1690,6 +1694,7 @@
 
15328
@@ -1179,8 +1114,6 @@
 
15329
 # Initialize some variables set by options.
 
15330
 ac_init_help=
 
15331
 ac_init_version=false
 
15332
-ac_unrecognized_opts=
 
15333
-ac_unrecognized_sep=
 
15334
 # The variables have the same names as the options, with
 
15335
 # dashes changed to underlines.
 
15336
 cache_file=/dev/null
 
15337
@@ -1279,21 +1212,13 @@
 
15338
     datarootdir=$ac_optarg ;;
 
15339
 
 
15340
   -disable-* | --disable-*)
 
15341
-    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
 
15342
+    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
 
15343
     # Reject names that are not valid shell variable names.
 
15344
-    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
15345
-      { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2
 
15346
+    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
15347
+      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
 
15348
    { (exit 1); exit 1; }; }
 
15349
-    ac_useropt_orig=$ac_useropt
 
15350
-    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
15351
-    case $ac_user_opts in
 
15352
-      *"
 
15353
-"enable_$ac_useropt"
 
15354
-"*) ;;
 
15355
-      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
 
15356
-        ac_unrecognized_sep=', ';;
 
15357
-    esac
 
15358
-    eval enable_$ac_useropt=no ;;
 
15359
+    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
 
15360
+    eval enable_$ac_feature=no ;;
 
15361
 
 
15362
   -docdir | --docdir | --docdi | --doc | --do)
 
15363
     ac_prev=docdir ;;
 
15364
@@ -1306,21 +1231,13 @@
 
15365
     dvidir=$ac_optarg ;;
 
15366
 
 
15367
   -enable-* | --enable-*)
 
15368
-    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
 
15369
+    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
 
15370
     # Reject names that are not valid shell variable names.
 
15371
-    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
15372
-      { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2
 
15373
+    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
15374
+      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
 
15375
    { (exit 1); exit 1; }; }
 
15376
-    ac_useropt_orig=$ac_useropt
 
15377
-    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
15378
-    case $ac_user_opts in
 
15379
-      *"
 
15380
-"enable_$ac_useropt"
 
15381
-"*) ;;
 
15382
-      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
 
15383
-        ac_unrecognized_sep=', ';;
 
15384
-    esac
 
15385
-    eval enable_$ac_useropt=\$ac_optarg ;;
 
15386
+    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
 
15387
+    eval enable_$ac_feature=\$ac_optarg ;;
 
15388
 
 
15389
   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
 
15390
   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
 
15391
@@ -1511,38 +1428,22 @@
 
15392
     ac_init_version=: ;;
 
15393
 
 
15394
   -with-* | --with-*)
 
15395
-    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
 
15396
+    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
 
15397
     # Reject names that are not valid shell variable names.
 
15398
-    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
15399
-      { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2
 
15400
+    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
15401
+      { echo "$as_me: error: invalid package name: $ac_package" >&2
 
15402
    { (exit 1); exit 1; }; }
 
15403
-    ac_useropt_orig=$ac_useropt
 
15404
-    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
15405
-    case $ac_user_opts in
 
15406
-      *"
 
15407
-"with_$ac_useropt"
 
15408
-"*) ;;
 
15409
-      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
 
15410
-        ac_unrecognized_sep=', ';;
 
15411
-    esac
 
15412
-    eval with_$ac_useropt=\$ac_optarg ;;
 
15413
+    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
 
15414
+    eval with_$ac_package=\$ac_optarg ;;
 
15415
 
 
15416
   -without-* | --without-*)
 
15417
-    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
 
15418
+    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
 
15419
     # Reject names that are not valid shell variable names.
 
15420
-    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
15421
-      { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2
 
15422
+    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
15423
+      { echo "$as_me: error: invalid package name: $ac_package" >&2
 
15424
    { (exit 1); exit 1; }; }
 
15425
-    ac_useropt_orig=$ac_useropt
 
15426
-    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
15427
-    case $ac_user_opts in
 
15428
-      *"
 
15429
-"with_$ac_useropt"
 
15430
-"*) ;;
 
15431
-      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
 
15432
-        ac_unrecognized_sep=', ';;
 
15433
-    esac
 
15434
-    eval with_$ac_useropt=no ;;
 
15435
+    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
 
15436
+    eval with_$ac_package=no ;;
 
15437
 
 
15438
   --x)
 
15439
     # Obsolete; use --with-x.
 
15440
@@ -1562,7 +1463,7 @@
 
15441
   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
 
15442
     x_libraries=$ac_optarg ;;
 
15443
 
 
15444
-  -*) { $as_echo "$as_me: error: unrecognized option: $ac_option
 
15445
+  -*) { echo "$as_me: error: unrecognized option: $ac_option
 
15446
 Try \`$0 --help' for more information." >&2
 
15447
    { (exit 1); exit 1; }; }
 
15448
     ;;
 
15449
@@ -1571,16 +1472,16 @@
 
15450
     ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
 
15451
     # Reject names that are not valid shell variable names.
 
15452
     expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
 
15453
-      { $as_echo "$as_me: error: invalid variable name: $ac_envvar" >&2
 
15454
+      { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
 
15455
    { (exit 1); exit 1; }; }
 
15456
     eval $ac_envvar=\$ac_optarg
 
15457
     export $ac_envvar ;;
 
15458
 
 
15459
   *)
 
15460
     # FIXME: should be removed in autoconf 3.0.
 
15461
-    $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
 
15462
+    echo "$as_me: WARNING: you should use --build, --host, --target" >&2
 
15463
     expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
15464
-      $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
 
15465
+      echo "$as_me: WARNING: invalid host type: $ac_option" >&2
 
15466
     : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
 
15467
     ;;
 
15468
 
 
15469
@@ -1589,38 +1490,22 @@
 
15470
 
 
15471
 if test -n "$ac_prev"; then
 
15472
   ac_option=--`echo $ac_prev | sed 's/_/-/g'`
 
15473
-  { $as_echo "$as_me: error: missing argument to $ac_option" >&2
 
15474
+  { echo "$as_me: error: missing argument to $ac_option" >&2
 
15475
    { (exit 1); exit 1; }; }
 
15476
 fi
 
15477
 
 
15478
-if test -n "$ac_unrecognized_opts"; then
 
15479
-  case $enable_option_checking in
 
15480
-    no) ;;
 
15481
-    fatal) { $as_echo "$as_me: error: unrecognized options: $ac_unrecognized_opts" >&2
 
15482
-   { (exit 1); exit 1; }; } ;;
 
15483
-    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
 
15484
-  esac
 
15485
-fi
 
15486
-
 
15487
-# Check all directory arguments for consistency.
 
15488
+# Be sure to have absolute directory names.
 
15489
 for ac_var in  exec_prefix prefix bindir sbindir libexecdir datarootdir \
 
15490
                datadir sysconfdir sharedstatedir localstatedir includedir \
 
15491
                oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
 
15492
                libdir localedir mandir
 
15493
 do
 
15494
   eval ac_val=\$$ac_var
 
15495
-  # Remove trailing slashes.
 
15496
-  case $ac_val in
 
15497
-    */ )
 
15498
-      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
 
15499
-      eval $ac_var=\$ac_val;;
 
15500
-  esac
 
15501
-  # Be sure to have absolute directory names.
 
15502
   case $ac_val in
 
15503
     [\\/$]* | ?:[\\/]* )  continue;;
 
15504
     NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
 
15505
   esac
 
15506
-  { $as_echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
 
15507
+  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
 
15508
    { (exit 1); exit 1; }; }
 
15509
 done
 
15510
 
 
15511
@@ -1635,7 +1520,7 @@
 
15512
 if test "x$host_alias" != x; then
 
15513
   if test "x$build_alias" = x; then
 
15514
     cross_compiling=maybe
 
15515
-    $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
 
15516
+    echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
 
15517
     If a cross compiler is detected then cross compile mode will be used." >&2
 
15518
   elif test "x$build_alias" != "x$host_alias"; then
 
15519
     cross_compiling=yes
 
15520
@@ -1651,10 +1536,10 @@
 
15521
 ac_pwd=`pwd` && test -n "$ac_pwd" &&
 
15522
 ac_ls_di=`ls -di .` &&
 
15523
 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
 
15524
-  { $as_echo "$as_me: error: working directory cannot be determined" >&2
 
15525
+  { echo "$as_me: error: Working directory cannot be determined" >&2
 
15526
    { (exit 1); exit 1; }; }
 
15527
 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
 
15528
-  { $as_echo "$as_me: error: pwd does not report name of working directory" >&2
 
15529
+  { echo "$as_me: error: pwd does not report name of working directory" >&2
 
15530
    { (exit 1); exit 1; }; }
 
15531
 
 
15532
 
 
15533
@@ -1662,12 +1547,12 @@
 
15534
 if test -z "$srcdir"; then
 
15535
   ac_srcdir_defaulted=yes
 
15536
   # Try the directory containing this script, then the parent directory.
 
15537
-  ac_confdir=`$as_dirname -- "$as_myself" ||
 
15538
-$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
15539
-        X"$as_myself" : 'X\(//\)[^/]' \| \
 
15540
-        X"$as_myself" : 'X\(//\)$' \| \
 
15541
-        X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
 
15542
-$as_echo X"$as_myself" |
 
15543
+  ac_confdir=`$as_dirname -- "$0" ||
 
15544
+$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
15545
+        X"$0" : 'X\(//\)[^/]' \| \
 
15546
+        X"$0" : 'X\(//\)$' \| \
 
15547
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 
15548
+echo X"$0" |
 
15549
     sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
15550
            s//\1/
 
15551
            q
 
15552
@@ -1694,12 +1579,12 @@
 
15553
 fi
 
15554
 if test ! -r "$srcdir/$ac_unique_file"; then
 
15555
   test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
 
15556
-  { $as_echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
 
15557
+  { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
 
15558
    { (exit 1); exit 1; }; }
 
15559
 fi
 
15560
 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
 
15561
 ac_abs_confdir=`(
 
15562
-       cd "$srcdir" && test -r "./$ac_unique_file" || { $as_echo "$as_me: error: $ac_msg" >&2
 
15563
+       cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2
 
15564
    { (exit 1); exit 1; }; }
 
15565
        pwd)`
 
15566
 # When building in place, set srcdir=.
 
15567
@@ -1748,9 +1633,9 @@
 
15568
 
 
15569
 Installation directories:
 
15570
   --prefix=PREFIX         install architecture-independent files in PREFIX
 
15571
-                          [$ac_default_prefix]
 
15572
+                         [$ac_default_prefix]
 
15573
   --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
 
15574
-                          [PREFIX]
 
15575
+                         [PREFIX]
 
15576
 
 
15577
 By default, \`make install' will install all the files in
 
15578
 \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
 
15579
@@ -1760,25 +1645,25 @@
 
15580
 For better control, use the options below.
 
15581
 
 
15582
 Fine tuning of the installation directories:
 
15583
-  --bindir=DIR            user executables [EPREFIX/bin]
 
15584
-  --sbindir=DIR           system admin executables [EPREFIX/sbin]
 
15585
-  --libexecdir=DIR        program executables [EPREFIX/libexec]
 
15586
-  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
 
15587
-  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
 
15588
-  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
 
15589
-  --libdir=DIR            object code libraries [EPREFIX/lib]
 
15590
-  --includedir=DIR        C header files [PREFIX/include]
 
15591
-  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
 
15592
-  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
 
15593
-  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
 
15594
-  --infodir=DIR           info documentation [DATAROOTDIR/info]
 
15595
-  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
 
15596
-  --mandir=DIR            man documentation [DATAROOTDIR/man]
 
15597
-  --docdir=DIR            documentation root [DATAROOTDIR/doc/totem]
 
15598
-  --htmldir=DIR           html documentation [DOCDIR]
 
15599
-  --dvidir=DIR            dvi documentation [DOCDIR]
 
15600
-  --pdfdir=DIR            pdf documentation [DOCDIR]
 
15601
-  --psdir=DIR             ps documentation [DOCDIR]
 
15602
+  --bindir=DIR           user executables [EPREFIX/bin]
 
15603
+  --sbindir=DIR          system admin executables [EPREFIX/sbin]
 
15604
+  --libexecdir=DIR       program executables [EPREFIX/libexec]
 
15605
+  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
 
15606
+  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
 
15607
+  --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
 
15608
+  --libdir=DIR           object code libraries [EPREFIX/lib]
 
15609
+  --includedir=DIR       C header files [PREFIX/include]
 
15610
+  --oldincludedir=DIR    C header files for non-gcc [/usr/include]
 
15611
+  --datarootdir=DIR      read-only arch.-independent data root [PREFIX/share]
 
15612
+  --datadir=DIR          read-only architecture-independent data [DATAROOTDIR]
 
15613
+  --infodir=DIR          info documentation [DATAROOTDIR/info]
 
15614
+  --localedir=DIR        locale-dependent data [DATAROOTDIR/locale]
 
15615
+  --mandir=DIR           man documentation [DATAROOTDIR/man]
 
15616
+  --docdir=DIR           documentation root [DATAROOTDIR/doc/totem]
 
15617
+  --htmldir=DIR          html documentation [DOCDIR]
 
15618
+  --dvidir=DIR           dvi documentation [DOCDIR]
 
15619
+  --pdfdir=DIR           pdf documentation [DOCDIR]
 
15620
+  --psdir=DIR            ps documentation [DOCDIR]
 
15621
 _ACEOF
 
15622
 
 
15623
   cat <<\_ACEOF
 
15624
@@ -1805,7 +1690,6 @@
 
15625
   cat <<\_ACEOF
 
15626
 
 
15627
 Optional Features:
 
15628
-  --disable-option-checking  ignore unrecognized --enable/--with options
 
15629
   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
12744
15630
   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
12745
15631
   --disable-dependency-tracking  speeds up one-time build
12746
 
   --enable-dependency-tracking   do not reject slow dependency extractors
12747
 
+  --disable-nls           do not use Native Language Support
12748
 
   --disable-scrollkeeper  do not make updates to the scrollkeeper database
12749
 
   --enable-shared[=PKGS]  build shared libraries [default=yes]
12750
 
   --enable-static[=PKGS]  build static libraries [default=yes]
12751
 
@@ -1740,16 +1745,17 @@
 
15632
@@ -1861,10 +1745,9 @@
12752
15633
   --with-omf-dir=DIR      path to OMF files
12753
15634
   --with-help-formats=FORMATS
12754
15635
                           list of formats
12760
15641
   --with-x                use the X Window System
12761
15642
   --with-plugins          Which Totem plugins to compile (default: auto;
12762
15643
                           "all", "none" and "autodetect" are valid)
12763
 
   --with-dbus             Enable D-BUS support
12764
 
-  --with-gconf-source=sourceaddress      Config database for installing schema files.
12765
 
-  --with-gconf-schema-file-dir=dir        Directory for installing schema files.
12766
 
+  --with-gconf-source=sourceaddress
12767
 
+                          Config database for installing schema files.
12768
 
+  --with-gconf-schema-file-dir=dir
12769
 
+                          Directory for installing schema files.
12770
 
 
12771
 
 Some influential environment variables:
12772
 
   CC          C compiler command
12773
 
@@ -1764,8 +1770,6 @@
 
15644
@@ -1887,8 +1770,6 @@
12774
15645
   CXX         C++ compiler command
12775
15646
   CXXFLAGS    C++ compiler flags
12776
15647
   CXXCPP      C++ preprocessor
12779
15650
   NVTV_CFLAGS C compiler flags for NVTV, overriding pkg-config
12780
15651
   NVTV_LIBS   linker flags for NVTV, overriding pkg-config
12781
15652
   MISSING_PLUGINS_CFLAGS
12782
 
@@ -1805,6 +1809,8 @@
 
15653
@@ -1928,6 +1809,8 @@
12783
15654
   GMYTH_CFLAGS
12784
15655
               C compiler flags for GMYTH, overriding pkg-config
12785
15656
   GMYTH_LIBS  linker flags for GMYTH, overriding pkg-config
12788
15659
   BEMUSED_CFLAGS
12789
15660
               C compiler flags for BEMUSED, overriding pkg-config
12790
15661
   BEMUSED_LIBS
12791
 
@@ -6013,6 +6019,21 @@
 
15662
@@ -1967,17 +1850,15 @@
 
15663
 if test "$ac_init_help" = "recursive"; then
 
15664
   # If there are subdirs, report their specific --help.
 
15665
   for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
 
15666
-    test -d "$ac_dir" ||
 
15667
-      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
 
15668
-      continue
 
15669
+    test -d "$ac_dir" || continue
 
15670
     ac_builddir=.
 
15671
 
 
15672
 case "$ac_dir" in
 
15673
 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
15674
 *)
 
15675
-  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
 
15676
+  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
 
15677
   # A ".." for each directory in $ac_dir_suffix.
 
15678
-  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
 
15679
+  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
 
15680
   case $ac_top_builddir_sub in
 
15681
   "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
15682
   *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 
15683
@@ -2013,7 +1894,7 @@
 
15684
       echo &&
 
15685
       $SHELL "$ac_srcdir/configure" --help=recursive
 
15686
     else
 
15687
-      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
 
15688
+      echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
 
15689
     fi || ac_status=$?
 
15690
     cd "$ac_pwd" || { ac_status=$?; break; }
 
15691
   done
 
15692
@@ -2023,10 +1904,10 @@
 
15693
 if $ac_init_version; then
 
15694
   cat <<\_ACEOF
 
15695
 totem configure 2.24.3
 
15696
-generated by GNU Autoconf 2.63
 
15697
+generated by GNU Autoconf 2.61
 
15698
 
 
15699
 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
 
15700
-2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
 
15701
+2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 
15702
 This configure script is free software; the Free Software Foundation
 
15703
 gives unlimited permission to copy, distribute and modify it.
 
15704
 _ACEOF
 
15705
@@ -2037,7 +1918,7 @@
 
15706
 running configure, to aid debugging if configure makes a mistake.
 
15707
 
 
15708
 It was created by totem $as_me 2.24.3, which was
 
15709
-generated by GNU Autoconf 2.63.  Invocation command line was
 
15710
+generated by GNU Autoconf 2.61.  Invocation command line was
 
15711
 
 
15712
   $ $0 $@
 
15713
 
 
15714
@@ -2073,7 +1954,7 @@
 
15715
 do
 
15716
   IFS=$as_save_IFS
 
15717
   test -z "$as_dir" && as_dir=.
 
15718
-  $as_echo "PATH: $as_dir"
 
15719
+  echo "PATH: $as_dir"
 
15720
 done
 
15721
 IFS=$as_save_IFS
 
15722
 
 
15723
@@ -2108,7 +1989,7 @@
 
15724
     | -silent | --silent | --silen | --sile | --sil)
 
15725
       continue ;;
 
15726
     *\'*)
 
15727
-      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
 
15728
+      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
 
15729
     esac
 
15730
     case $ac_pass in
 
15731
     1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
 
15732
@@ -2160,12 +2041,11 @@
 
15733
     case $ac_val in #(
 
15734
     *${as_nl}*)
 
15735
       case $ac_var in #(
 
15736
-      *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5
 
15737
-$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
 
15738
+      *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
 
15739
+echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
 
15740
       esac
 
15741
       case $ac_var in #(
 
15742
       _ | IFS | as_nl) ;; #(
 
15743
-      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
 
15744
       *) $as_unset $ac_var ;;
 
15745
       esac ;;
 
15746
     esac
 
15747
@@ -2195,9 +2075,9 @@
 
15748
     do
 
15749
       eval ac_val=\$$ac_var
 
15750
       case $ac_val in
 
15751
-      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 
15752
+      *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 
15753
       esac
 
15754
-      $as_echo "$ac_var='\''$ac_val'\''"
 
15755
+      echo "$ac_var='\''$ac_val'\''"
 
15756
     done | sort
 
15757
     echo
 
15758
 
 
15759
@@ -2212,9 +2092,9 @@
 
15760
       do
 
15761
        eval ac_val=\$$ac_var
 
15762
        case $ac_val in
 
15763
-       *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 
15764
+       *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 
15765
        esac
 
15766
-       $as_echo "$ac_var='\''$ac_val'\''"
 
15767
+       echo "$ac_var='\''$ac_val'\''"
 
15768
       done | sort
 
15769
       echo
 
15770
     fi
 
15771
@@ -2230,8 +2110,8 @@
 
15772
       echo
 
15773
     fi
 
15774
     test "$ac_signal" != 0 &&
 
15775
-      $as_echo "$as_me: caught signal $ac_signal"
 
15776
-    $as_echo "$as_me: exit $exit_status"
 
15777
+      echo "$as_me: caught signal $ac_signal"
 
15778
+    echo "$as_me: exit $exit_status"
 
15779
   } >&5
 
15780
   rm -f core *.core core.conftest.* &&
 
15781
     rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
 
15782
@@ -2273,24 +2153,21 @@
 
15783
 
 
15784
 
 
15785
 # Let the site file select an alternate cache file if it wants to.
 
15786
-# Prefer an explicitly selected file to automatically selected ones.
 
15787
-ac_site_file1=NONE
 
15788
-ac_site_file2=NONE
 
15789
+# Prefer explicitly selected file to automatically selected ones.
 
15790
 if test -n "$CONFIG_SITE"; then
 
15791
-  ac_site_file1=$CONFIG_SITE
 
15792
+  set x "$CONFIG_SITE"
 
15793
 elif test "x$prefix" != xNONE; then
 
15794
-  ac_site_file1=$prefix/share/config.site
 
15795
-  ac_site_file2=$prefix/etc/config.site
 
15796
+  set x "$prefix/share/config.site" "$prefix/etc/config.site"
 
15797
 else
 
15798
-  ac_site_file1=$ac_default_prefix/share/config.site
 
15799
-  ac_site_file2=$ac_default_prefix/etc/config.site
 
15800
+  set x "$ac_default_prefix/share/config.site" \
 
15801
+       "$ac_default_prefix/etc/config.site"
 
15802
 fi
 
15803
-for ac_site_file in "$ac_site_file1" "$ac_site_file2"
 
15804
+shift
 
15805
+for ac_site_file
 
15806
 do
 
15807
-  test "x$ac_site_file" = xNONE && continue
 
15808
   if test -r "$ac_site_file"; then
 
15809
-    { $as_echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
 
15810
-$as_echo "$as_me: loading site script $ac_site_file" >&6;}
 
15811
+    { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
 
15812
+echo "$as_me: loading site script $ac_site_file" >&6;}
 
15813
     sed 's/^/| /' "$ac_site_file" >&5
 
15814
     . "$ac_site_file"
 
15815
   fi
 
15816
@@ -2300,16 +2177,16 @@
 
15817
   # Some versions of bash will fail to source /dev/null (special
 
15818
   # files actually), so we avoid doing that.
 
15819
   if test -f "$cache_file"; then
 
15820
-    { $as_echo "$as_me:$LINENO: loading cache $cache_file" >&5
 
15821
-$as_echo "$as_me: loading cache $cache_file" >&6;}
 
15822
+    { echo "$as_me:$LINENO: loading cache $cache_file" >&5
 
15823
+echo "$as_me: loading cache $cache_file" >&6;}
 
15824
     case $cache_file in
 
15825
       [\\/]* | ?:[\\/]* ) . "$cache_file";;
 
15826
       *)                      . "./$cache_file";;
 
15827
     esac
 
15828
   fi
 
15829
 else
 
15830
-  { $as_echo "$as_me:$LINENO: creating cache $cache_file" >&5
 
15831
-$as_echo "$as_me: creating cache $cache_file" >&6;}
 
15832
+  { echo "$as_me:$LINENO: creating cache $cache_file" >&5
 
15833
+echo "$as_me: creating cache $cache_file" >&6;}
 
15834
   >$cache_file
 
15835
 fi
 
15836
 
 
15837
@@ -2323,38 +2200,29 @@
 
15838
   eval ac_new_val=\$ac_env_${ac_var}_value
 
15839
   case $ac_old_set,$ac_new_set in
 
15840
     set,)
 
15841
-      { $as_echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
 
15842
-$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
 
15843
+      { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
 
15844
+echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
 
15845
       ac_cache_corrupted=: ;;
 
15846
     ,set)
 
15847
-      { $as_echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
 
15848
-$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
 
15849
+      { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
 
15850
+echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
 
15851
       ac_cache_corrupted=: ;;
 
15852
     ,);;
 
15853
     *)
 
15854
       if test "x$ac_old_val" != "x$ac_new_val"; then
 
15855
-       # differences in whitespace do not lead to failure.
 
15856
-       ac_old_val_w=`echo x $ac_old_val`
 
15857
-       ac_new_val_w=`echo x $ac_new_val`
 
15858
-       if test "$ac_old_val_w" != "$ac_new_val_w"; then
 
15859
-         { $as_echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
 
15860
-$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
 
15861
-         ac_cache_corrupted=:
 
15862
-       else
 
15863
-         { $as_echo "$as_me:$LINENO: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
 
15864
-$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
 
15865
-         eval $ac_var=\$ac_old_val
 
15866
-       fi
 
15867
-       { $as_echo "$as_me:$LINENO:   former value:  \`$ac_old_val'" >&5
 
15868
-$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
 
15869
-       { $as_echo "$as_me:$LINENO:   current value: \`$ac_new_val'" >&5
 
15870
-$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
 
15871
+       { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
 
15872
+echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
 
15873
+       { echo "$as_me:$LINENO:   former value:  $ac_old_val" >&5
 
15874
+echo "$as_me:   former value:  $ac_old_val" >&2;}
 
15875
+       { echo "$as_me:$LINENO:   current value: $ac_new_val" >&5
 
15876
+echo "$as_me:   current value: $ac_new_val" >&2;}
 
15877
+       ac_cache_corrupted=:
 
15878
       fi;;
 
15879
   esac
 
15880
   # Pass precious variables to config.status.
 
15881
   if test "$ac_new_set" = set; then
 
15882
     case $ac_new_val in
 
15883
-    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
 
15884
+    *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
 
15885
     *) ac_arg=$ac_var=$ac_new_val ;;
 
15886
     esac
 
15887
     case " $ac_configure_args " in
 
15888
@@ -2364,12 +2232,10 @@
 
15889
   fi
 
15890
 done
 
15891
 if $ac_cache_corrupted; then
 
15892
-  { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 
15893
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
15894
-  { $as_echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
 
15895
-$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
 
15896
-  { { $as_echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
 
15897
-$as_echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
 
15898
+  { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
 
15899
+echo "$as_me: error: changes in the environment can compromise the build" >&2;}
 
15900
+  { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
 
15901
+echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
 
15902
    { (exit 1); exit 1; }; }
 
15903
 fi
 
15904
 
 
15905
@@ -2428,8 +2294,8 @@
 
15906
   fi
 
15907
 done
 
15908
 if test -z "$ac_aux_dir"; then
 
15909
-  { { $as_echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5
 
15910
-$as_echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;}
 
15911
+  { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5
 
15912
+echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;}
 
15913
    { (exit 1); exit 1; }; }
 
15914
 fi
 
15915
 
 
15916
@@ -2455,12 +2321,11 @@
 
15917
 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 
15918
 # OS/2's system install, which has a completely different semantic
 
15919
 # ./install, which can be erroneously created by make from ./install.sh.
 
15920
-# Reject install programs that cannot install multiple files.
 
15921
-{ $as_echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
 
15922
-$as_echo_n "checking for a BSD-compatible install... " >&6; }
 
15923
+{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
 
15924
+echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; }
 
15925
 if test -z "$INSTALL"; then
 
15926
 if test "${ac_cv_path_install+set}" = set; then
 
15927
-  $as_echo_n "(cached) " >&6
 
15928
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
15929
 else
 
15930
   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
15931
 for as_dir in $PATH
 
15932
@@ -2489,29 +2354,17 @@
 
15933
            # program-specific install script used by HP pwplus--don't use.
 
15934
            :
 
15935
          else
 
15936
-           rm -rf conftest.one conftest.two conftest.dir
 
15937
-           echo one > conftest.one
 
15938
-           echo two > conftest.two
 
15939
-           mkdir conftest.dir
 
15940
-           if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
 
15941
-             test -s conftest.one && test -s conftest.two &&
 
15942
-             test -s conftest.dir/conftest.one &&
 
15943
-             test -s conftest.dir/conftest.two
 
15944
-           then
 
15945
-             ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
 
15946
-             break 3
 
15947
-           fi
 
15948
+           ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
 
15949
+           break 3
 
15950
          fi
 
15951
        fi
 
15952
       done
 
15953
     done
 
15954
     ;;
 
15955
 esac
 
15956
-
 
15957
 done
 
15958
 IFS=$as_save_IFS
 
15959
 
 
15960
-rm -rf conftest.one conftest.two conftest.dir
 
15961
 
 
15962
 fi
 
15963
   if test "${ac_cv_path_install+set}" = set; then
 
15964
@@ -2524,8 +2377,8 @@
 
15965
     INSTALL=$ac_install_sh
 
15966
   fi
 
15967
 fi
 
15968
-{ $as_echo "$as_me:$LINENO: result: $INSTALL" >&5
 
15969
-$as_echo "$INSTALL" >&6; }
 
15970
+{ echo "$as_me:$LINENO: result: $INSTALL" >&5
 
15971
+echo "${ECHO_T}$INSTALL" >&6; }
 
15972
 
 
15973
 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
 
15974
 # It thinks the first close brace ends the variable substitution.
 
15975
@@ -2535,8 +2388,8 @@
 
15976
 
 
15977
 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
 
15978
 
 
15979
-{ $as_echo "$as_me:$LINENO: checking whether build environment is sane" >&5
 
15980
-$as_echo_n "checking whether build environment is sane... " >&6; }
 
15981
+{ echo "$as_me:$LINENO: checking whether build environment is sane" >&5
 
15982
+echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; }
 
15983
 # Just in case
 
15984
 sleep 1
 
15985
 echo timestamp > conftest.file
 
15986
@@ -2559,9 +2412,9 @@
 
15987
       # if, for instance, CONFIG_SHELL is bash and it inherits a
 
15988
       # broken ls alias from the environment.  This has actually
 
15989
       # happened.  Such a system could not be considered "sane".
 
15990
-      { { $as_echo "$as_me:$LINENO: error: ls -t appears to fail.  Make sure there is not a broken
 
15991
+      { { echo "$as_me:$LINENO: error: ls -t appears to fail.  Make sure there is not a broken
 
15992
 alias in your environment" >&5
 
15993
-$as_echo "$as_me: error: ls -t appears to fail.  Make sure there is not a broken
 
15994
+echo "$as_me: error: ls -t appears to fail.  Make sure there is not a broken
 
15995
 alias in your environment" >&2;}
 
15996
    { (exit 1); exit 1; }; }
 
15997
    fi
 
15998
@@ -2572,23 +2425,26 @@
 
15999
    # Ok.
 
16000
    :
 
16001
 else
 
16002
-   { { $as_echo "$as_me:$LINENO: error: newly created file is older than distributed files!
 
16003
+   { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
 
16004
 Check your system clock" >&5
 
16005
-$as_echo "$as_me: error: newly created file is older than distributed files!
 
16006
+echo "$as_me: error: newly created file is older than distributed files!
 
16007
 Check your system clock" >&2;}
 
16008
    { (exit 1); exit 1; }; }
 
16009
 fi
 
16010
-{ $as_echo "$as_me:$LINENO: result: yes" >&5
 
16011
-$as_echo "yes" >&6; }
 
16012
+{ echo "$as_me:$LINENO: result: yes" >&5
 
16013
+echo "${ECHO_T}yes" >&6; }
 
16014
 test "$program_prefix" != NONE &&
 
16015
   program_transform_name="s&^&$program_prefix&;$program_transform_name"
 
16016
 # Use a double $ so make ignores it.
 
16017
 test "$program_suffix" != NONE &&
 
16018
   program_transform_name="s&\$&$program_suffix&;$program_transform_name"
 
16019
-# Double any \ or $.
 
16020
+# Double any \ or $.  echo might interpret backslashes.
 
16021
 # By default was `s,x,x', remove it if useless.
 
16022
-ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
 
16023
-program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
 
16024
+cat <<\_ACEOF >conftest.sed
 
16025
+s/[\\$]/&&/g;s/;s,x,x,$//
 
16026
+_ACEOF
 
16027
+program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
 
16028
+rm -f conftest.sed
 
16029
 
 
16030
 # expand $ac_aux_dir to an absolute path
 
16031
 am_aux_dir=`cd $ac_aux_dir && pwd`
 
16032
@@ -2599,15 +2455,15 @@
 
16033
   am_missing_run="$MISSING --run "
 
16034
 else
 
16035
   am_missing_run=
 
16036
-  { $as_echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
 
16037
-$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
 
16038
+  { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
 
16039
+echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
 
16040
 fi
 
16041
 
 
16042
-{ $as_echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5
 
16043
-$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
 
16044
+{ echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5
 
16045
+echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; }
 
16046
 if test -z "$MKDIR_P"; then
 
16047
   if test "${ac_cv_path_mkdir+set}" = set; then
 
16048
-  $as_echo_n "(cached) " >&6
 
16049
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
16050
 else
 
16051
   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
16052
 for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
 
16053
@@ -2642,8 +2498,8 @@
 
16054
     MKDIR_P="$ac_install_sh -d"
 
16055
   fi
 
16056
 fi
 
16057
-{ $as_echo "$as_me:$LINENO: result: $MKDIR_P" >&5
 
16058
-$as_echo "$MKDIR_P" >&6; }
 
16059
+{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5
 
16060
+echo "${ECHO_T}$MKDIR_P" >&6; }
 
16061
 
 
16062
 mkdir_p="$MKDIR_P"
 
16063
 case $mkdir_p in
 
16064
@@ -2655,10 +2511,10 @@
 
16065
 do
 
16066
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 
16067
 set dummy $ac_prog; ac_word=$2
 
16068
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16069
-$as_echo_n "checking for $ac_word... " >&6; }
 
16070
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16071
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
16072
 if test "${ac_cv_prog_AWK+set}" = set; then
 
16073
-  $as_echo_n "(cached) " >&6
 
16074
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
16075
 else
 
16076
   if test -n "$AWK"; then
 
16077
   ac_cv_prog_AWK="$AWK" # Let the user override the test.
 
16078
@@ -2671,7 +2527,7 @@
 
16079
   for ac_exec_ext in '' $ac_executable_extensions; do
 
16080
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
16081
     ac_cv_prog_AWK="$ac_prog"
 
16082
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16083
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16084
     break 2
 
16085
   fi
 
16086
 done
 
16087
@@ -2682,23 +2538,22 @@
 
16088
 fi
 
16089
 AWK=$ac_cv_prog_AWK
 
16090
 if test -n "$AWK"; then
 
16091
-  { $as_echo "$as_me:$LINENO: result: $AWK" >&5
 
16092
-$as_echo "$AWK" >&6; }
 
16093
+  { echo "$as_me:$LINENO: result: $AWK" >&5
 
16094
+echo "${ECHO_T}$AWK" >&6; }
 
16095
 else
 
16096
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
16097
-$as_echo "no" >&6; }
 
16098
+  { echo "$as_me:$LINENO: result: no" >&5
 
16099
+echo "${ECHO_T}no" >&6; }
 
16100
 fi
 
16101
 
 
16102
 
 
16103
   test -n "$AWK" && break
 
16104
 done
 
16105
 
 
16106
-{ $as_echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
 
16107
-$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
 
16108
-set x ${MAKE-make}
 
16109
-ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
 
16110
+{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
 
16111
+echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
 
16112
+set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
 
16113
 if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
 
16114
-  $as_echo_n "(cached) " >&6
 
16115
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
16116
 else
 
16117
   cat >conftest.make <<\_ACEOF
 
16118
 SHELL = /bin/sh
 
16119
@@ -2715,12 +2570,12 @@
 
16120
 rm -f conftest.make
 
16121
 fi
 
16122
 if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
 
16123
-  { $as_echo "$as_me:$LINENO: result: yes" >&5
 
16124
-$as_echo "yes" >&6; }
 
16125
+  { echo "$as_me:$LINENO: result: yes" >&5
 
16126
+echo "${ECHO_T}yes" >&6; }
 
16127
   SET_MAKE=
 
16128
 else
 
16129
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
16130
-$as_echo "no" >&6; }
 
16131
+  { echo "$as_me:$LINENO: result: no" >&5
 
16132
+echo "${ECHO_T}no" >&6; }
 
16133
   SET_MAKE="MAKE=${MAKE-make}"
 
16134
 fi
 
16135
 
 
16136
@@ -2739,8 +2594,8 @@
 
16137
   am__isrc=' -I$(srcdir)'
 
16138
   # test to see if srcdir already configured
 
16139
   if test -f $srcdir/config.status; then
 
16140
-    { { $as_echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
 
16141
-$as_echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
 
16142
+    { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
 
16143
+echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
 
16144
    { (exit 1); exit 1; }; }
 
16145
   fi
 
16146
 fi
 
16147
@@ -2795,10 +2650,10 @@
 
16148
   if test -n "$ac_tool_prefix"; then
 
16149
   # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
 
16150
 set dummy ${ac_tool_prefix}strip; ac_word=$2
 
16151
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16152
-$as_echo_n "checking for $ac_word... " >&6; }
 
16153
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16154
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
16155
 if test "${ac_cv_prog_STRIP+set}" = set; then
 
16156
-  $as_echo_n "(cached) " >&6
 
16157
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
16158
 else
 
16159
   if test -n "$STRIP"; then
 
16160
   ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
 
16161
@@ -2811,7 +2666,7 @@
 
16162
   for ac_exec_ext in '' $ac_executable_extensions; do
 
16163
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
16164
     ac_cv_prog_STRIP="${ac_tool_prefix}strip"
 
16165
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16166
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16167
     break 2
 
16168
   fi
 
16169
 done
 
16170
@@ -2822,11 +2677,11 @@
 
16171
 fi
 
16172
 STRIP=$ac_cv_prog_STRIP
 
16173
 if test -n "$STRIP"; then
 
16174
-  { $as_echo "$as_me:$LINENO: result: $STRIP" >&5
 
16175
-$as_echo "$STRIP" >&6; }
 
16176
+  { echo "$as_me:$LINENO: result: $STRIP" >&5
 
16177
+echo "${ECHO_T}$STRIP" >&6; }
 
16178
 else
 
16179
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
16180
-$as_echo "no" >&6; }
 
16181
+  { echo "$as_me:$LINENO: result: no" >&5
 
16182
+echo "${ECHO_T}no" >&6; }
 
16183
 fi
 
16184
 
 
16185
 
 
16186
@@ -2835,10 +2690,10 @@
 
16187
   ac_ct_STRIP=$STRIP
 
16188
   # Extract the first word of "strip", so it can be a program name with args.
 
16189
 set dummy strip; ac_word=$2
 
16190
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16191
-$as_echo_n "checking for $ac_word... " >&6; }
 
16192
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16193
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
16194
 if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
 
16195
-  $as_echo_n "(cached) " >&6
 
16196
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
16197
 else
 
16198
   if test -n "$ac_ct_STRIP"; then
 
16199
   ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
 
16200
@@ -2851,7 +2706,7 @@
 
16201
   for ac_exec_ext in '' $ac_executable_extensions; do
 
16202
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
16203
     ac_cv_prog_ac_ct_STRIP="strip"
 
16204
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16205
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16206
     break 2
 
16207
   fi
 
16208
 done
 
16209
@@ -2862,11 +2717,11 @@
 
16210
 fi
 
16211
 ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
 
16212
 if test -n "$ac_ct_STRIP"; then
 
16213
-  { $as_echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
 
16214
-$as_echo "$ac_ct_STRIP" >&6; }
 
16215
+  { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
 
16216
+echo "${ECHO_T}$ac_ct_STRIP" >&6; }
 
16217
 else
 
16218
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
16219
-$as_echo "no" >&6; }
 
16220
+  { echo "$as_me:$LINENO: result: no" >&5
 
16221
+echo "${ECHO_T}no" >&6; }
 
16222
 fi
 
16223
 
 
16224
   if test "x$ac_ct_STRIP" = x; then
 
16225
@@ -2874,8 +2729,12 @@
 
16226
   else
 
16227
     case $cross_compiling:$ac_tool_warned in
 
16228
 yes:)
 
16229
-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
 
16230
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
16231
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
 
16232
+whose name does not start with the host triplet.  If you think this
 
16233
+configuration is useful to you, please write to autoconf@gnu.org." >&5
 
16234
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
 
16235
+whose name does not start with the host triplet.  If you think this
 
16236
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
16237
 ac_tool_warned=yes ;;
 
16238
 esac
 
16239
     STRIP=$ac_ct_STRIP
 
16240
@@ -2919,8 +2778,8 @@
 
16241
 .PHONY: am__doit
 
16242
 END
 
16243
 # If we don't find an include directive, just comment out the code.
 
16244
-{ $as_echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
 
16245
-$as_echo_n "checking for style of include used by $am_make... " >&6; }
 
16246
+{ echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
 
16247
+echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; }
 
16248
 am__include="#"
 
16249
 am__quote=
 
16250
 _am_result=none
 
16251
@@ -2947,8 +2806,8 @@
 
16252
 fi
 
16253
 
 
16254
 
 
16255
-{ $as_echo "$as_me:$LINENO: result: $_am_result" >&5
 
16256
-$as_echo "$_am_result" >&6; }
 
16257
+{ echo "$as_me:$LINENO: result: $_am_result" >&5
 
16258
+echo "${ECHO_T}$_am_result" >&6; }
 
16259
 rm -f confinc confmf
 
16260
 
 
16261
 # Check whether --enable-dependency-tracking was given.
 
16262
@@ -2977,10 +2836,10 @@
 
16263
 if test -n "$ac_tool_prefix"; then
 
16264
   # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
 
16265
 set dummy ${ac_tool_prefix}gcc; ac_word=$2
 
16266
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16267
-$as_echo_n "checking for $ac_word... " >&6; }
 
16268
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16269
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
16270
 if test "${ac_cv_prog_CC+set}" = set; then
 
16271
-  $as_echo_n "(cached) " >&6
 
16272
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
16273
 else
 
16274
   if test -n "$CC"; then
 
16275
   ac_cv_prog_CC="$CC" # Let the user override the test.
 
16276
@@ -2993,7 +2852,7 @@
 
16277
   for ac_exec_ext in '' $ac_executable_extensions; do
 
16278
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
16279
     ac_cv_prog_CC="${ac_tool_prefix}gcc"
 
16280
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16281
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16282
     break 2
 
16283
   fi
 
16284
 done
 
16285
@@ -3004,11 +2863,11 @@
 
16286
 fi
 
16287
 CC=$ac_cv_prog_CC
 
16288
 if test -n "$CC"; then
 
16289
-  { $as_echo "$as_me:$LINENO: result: $CC" >&5
 
16290
-$as_echo "$CC" >&6; }
 
16291
+  { echo "$as_me:$LINENO: result: $CC" >&5
 
16292
+echo "${ECHO_T}$CC" >&6; }
 
16293
 else
 
16294
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
16295
-$as_echo "no" >&6; }
 
16296
+  { echo "$as_me:$LINENO: result: no" >&5
 
16297
+echo "${ECHO_T}no" >&6; }
 
16298
 fi
 
16299
 
 
16300
 
 
16301
@@ -3017,10 +2876,10 @@
 
16302
   ac_ct_CC=$CC
 
16303
   # Extract the first word of "gcc", so it can be a program name with args.
 
16304
 set dummy gcc; ac_word=$2
 
16305
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16306
-$as_echo_n "checking for $ac_word... " >&6; }
 
16307
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16308
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
16309
 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
 
16310
-  $as_echo_n "(cached) " >&6
 
16311
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
16312
 else
 
16313
   if test -n "$ac_ct_CC"; then
 
16314
   ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 
16315
@@ -3033,7 +2892,7 @@
 
16316
   for ac_exec_ext in '' $ac_executable_extensions; do
 
16317
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
16318
     ac_cv_prog_ac_ct_CC="gcc"
 
16319
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16320
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16321
     break 2
 
16322
   fi
 
16323
 done
 
16324
@@ -3044,11 +2903,11 @@
 
16325
 fi
 
16326
 ac_ct_CC=$ac_cv_prog_ac_ct_CC
 
16327
 if test -n "$ac_ct_CC"; then
 
16328
-  { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 
16329
-$as_echo "$ac_ct_CC" >&6; }
 
16330
+  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 
16331
+echo "${ECHO_T}$ac_ct_CC" >&6; }
 
16332
 else
 
16333
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
16334
-$as_echo "no" >&6; }
 
16335
+  { echo "$as_me:$LINENO: result: no" >&5
 
16336
+echo "${ECHO_T}no" >&6; }
 
16337
 fi
 
16338
 
 
16339
   if test "x$ac_ct_CC" = x; then
 
16340
@@ -3056,8 +2915,12 @@
 
16341
   else
 
16342
     case $cross_compiling:$ac_tool_warned in
 
16343
 yes:)
 
16344
-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
 
16345
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
16346
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
 
16347
+whose name does not start with the host triplet.  If you think this
 
16348
+configuration is useful to you, please write to autoconf@gnu.org." >&5
 
16349
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
 
16350
+whose name does not start with the host triplet.  If you think this
 
16351
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
16352
 ac_tool_warned=yes ;;
 
16353
 esac
 
16354
     CC=$ac_ct_CC
 
16355
@@ -3070,10 +2933,10 @@
 
16356
           if test -n "$ac_tool_prefix"; then
 
16357
     # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
 
16358
 set dummy ${ac_tool_prefix}cc; ac_word=$2
 
16359
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16360
-$as_echo_n "checking for $ac_word... " >&6; }
 
16361
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16362
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
16363
 if test "${ac_cv_prog_CC+set}" = set; then
 
16364
-  $as_echo_n "(cached) " >&6
 
16365
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
16366
 else
 
16367
   if test -n "$CC"; then
 
16368
   ac_cv_prog_CC="$CC" # Let the user override the test.
 
16369
@@ -3086,7 +2949,7 @@
 
16370
   for ac_exec_ext in '' $ac_executable_extensions; do
 
16371
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
16372
     ac_cv_prog_CC="${ac_tool_prefix}cc"
 
16373
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16374
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16375
     break 2
 
16376
   fi
 
16377
 done
 
16378
@@ -3097,11 +2960,11 @@
 
16379
 fi
 
16380
 CC=$ac_cv_prog_CC
 
16381
 if test -n "$CC"; then
 
16382
-  { $as_echo "$as_me:$LINENO: result: $CC" >&5
 
16383
-$as_echo "$CC" >&6; }
 
16384
+  { echo "$as_me:$LINENO: result: $CC" >&5
 
16385
+echo "${ECHO_T}$CC" >&6; }
 
16386
 else
 
16387
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
16388
-$as_echo "no" >&6; }
 
16389
+  { echo "$as_me:$LINENO: result: no" >&5
 
16390
+echo "${ECHO_T}no" >&6; }
 
16391
 fi
 
16392
 
 
16393
 
 
16394
@@ -3110,10 +2973,10 @@
 
16395
 if test -z "$CC"; then
 
16396
   # Extract the first word of "cc", so it can be a program name with args.
 
16397
 set dummy cc; ac_word=$2
 
16398
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16399
-$as_echo_n "checking for $ac_word... " >&6; }
 
16400
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16401
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
16402
 if test "${ac_cv_prog_CC+set}" = set; then
 
16403
-  $as_echo_n "(cached) " >&6
 
16404
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
16405
 else
 
16406
   if test -n "$CC"; then
 
16407
   ac_cv_prog_CC="$CC" # Let the user override the test.
 
16408
@@ -3131,7 +2994,7 @@
 
16409
        continue
 
16410
      fi
 
16411
     ac_cv_prog_CC="cc"
 
16412
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16413
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16414
     break 2
 
16415
   fi
 
16416
 done
 
16417
@@ -3154,11 +3017,11 @@
 
16418
 fi
 
16419
 CC=$ac_cv_prog_CC
 
16420
 if test -n "$CC"; then
 
16421
-  { $as_echo "$as_me:$LINENO: result: $CC" >&5
 
16422
-$as_echo "$CC" >&6; }
 
16423
+  { echo "$as_me:$LINENO: result: $CC" >&5
 
16424
+echo "${ECHO_T}$CC" >&6; }
 
16425
 else
 
16426
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
16427
-$as_echo "no" >&6; }
 
16428
+  { echo "$as_me:$LINENO: result: no" >&5
 
16429
+echo "${ECHO_T}no" >&6; }
 
16430
 fi
 
16431
 
 
16432
 
 
16433
@@ -3169,10 +3032,10 @@
 
16434
   do
 
16435
     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
 
16436
 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 
16437
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16438
-$as_echo_n "checking for $ac_word... " >&6; }
 
16439
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16440
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
16441
 if test "${ac_cv_prog_CC+set}" = set; then
 
16442
-  $as_echo_n "(cached) " >&6
 
16443
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
16444
 else
 
16445
   if test -n "$CC"; then
 
16446
   ac_cv_prog_CC="$CC" # Let the user override the test.
 
16447
@@ -3185,7 +3048,7 @@
 
16448
   for ac_exec_ext in '' $ac_executable_extensions; do
 
16449
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
16450
     ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
 
16451
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16452
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16453
     break 2
 
16454
   fi
 
16455
 done
 
16456
@@ -3196,11 +3059,11 @@
 
16457
 fi
 
16458
 CC=$ac_cv_prog_CC
 
16459
 if test -n "$CC"; then
 
16460
-  { $as_echo "$as_me:$LINENO: result: $CC" >&5
 
16461
-$as_echo "$CC" >&6; }
 
16462
+  { echo "$as_me:$LINENO: result: $CC" >&5
 
16463
+echo "${ECHO_T}$CC" >&6; }
 
16464
 else
 
16465
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
16466
-$as_echo "no" >&6; }
 
16467
+  { echo "$as_me:$LINENO: result: no" >&5
 
16468
+echo "${ECHO_T}no" >&6; }
 
16469
 fi
 
16470
 
 
16471
 
 
16472
@@ -3213,10 +3076,10 @@
 
16473
 do
 
16474
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 
16475
 set dummy $ac_prog; ac_word=$2
 
16476
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16477
-$as_echo_n "checking for $ac_word... " >&6; }
 
16478
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
16479
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
16480
 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
 
16481
-  $as_echo_n "(cached) " >&6
 
16482
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
16483
 else
 
16484
   if test -n "$ac_ct_CC"; then
 
16485
   ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 
16486
@@ -3229,7 +3092,7 @@
 
16487
   for ac_exec_ext in '' $ac_executable_extensions; do
 
16488
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
16489
     ac_cv_prog_ac_ct_CC="$ac_prog"
 
16490
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16491
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
16492
     break 2
 
16493
   fi
 
16494
 done
 
16495
@@ -3240,11 +3103,11 @@
 
16496
 fi
 
16497
 ac_ct_CC=$ac_cv_prog_ac_ct_CC
 
16498
 if test -n "$ac_ct_CC"; then
 
16499
-  { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 
16500
-$as_echo "$ac_ct_CC" >&6; }
 
16501
+  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 
16502
+echo "${ECHO_T}$ac_ct_CC" >&6; }
 
16503
 else
 
16504
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
16505
-$as_echo "no" >&6; }
 
16506
+  { echo "$as_me:$LINENO: result: no" >&5
 
16507
+echo "${ECHO_T}no" >&6; }
 
16508
 fi
 
16509
 
 
16510
 
 
16511
@@ -3256,8 +3119,12 @@
 
16512
   else
 
16513
     case $cross_compiling:$ac_tool_warned in
 
16514
 yes:)
 
16515
-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
 
16516
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
16517
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
 
16518
+whose name does not start with the host triplet.  If you think this
 
16519
+configuration is useful to you, please write to autoconf@gnu.org." >&5
 
16520
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
 
16521
+whose name does not start with the host triplet.  If you think this
 
16522
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
16523
 ac_tool_warned=yes ;;
 
16524
 esac
 
16525
     CC=$ac_ct_CC
 
16526
@@ -3267,50 +3134,44 @@
 
16527
 fi
 
16528
 
 
16529
 
 
16530
-test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 
16531
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
16532
-{ { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
 
16533
+test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
 
16534
 See \`config.log' for more details." >&5
 
16535
-$as_echo "$as_me: error: no acceptable C compiler found in \$PATH
 
16536
+echo "$as_me: error: no acceptable C compiler found in \$PATH
 
16537
 See \`config.log' for more details." >&2;}
 
16538
-   { (exit 1); exit 1; }; }; }
 
16539
+   { (exit 1); exit 1; }; }
 
16540
 
 
16541
 # Provide some information about the compiler.
 
16542
-$as_echo "$as_me:$LINENO: checking for C compiler version" >&5
 
16543
-set X $ac_compile
 
16544
-ac_compiler=$2
 
16545
+echo "$as_me:$LINENO: checking for C compiler version" >&5
 
16546
+ac_compiler=`set X $ac_compile; echo $2`
 
16547
 { (ac_try="$ac_compiler --version >&5"
 
16548
 case "(($ac_try" in
 
16549
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
16550
   *) ac_try_echo=$ac_try;;
 
16551
 esac
 
16552
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
16553
-$as_echo "$ac_try_echo") >&5
 
16554
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
16555
   (eval "$ac_compiler --version >&5") 2>&5
 
16556
   ac_status=$?
 
16557
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16558
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16559
   (exit $ac_status); }
 
16560
 { (ac_try="$ac_compiler -v >&5"
 
16561
 case "(($ac_try" in
 
16562
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
16563
   *) ac_try_echo=$ac_try;;
 
16564
 esac
 
16565
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
16566
-$as_echo "$ac_try_echo") >&5
 
16567
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
16568
   (eval "$ac_compiler -v >&5") 2>&5
 
16569
   ac_status=$?
 
16570
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16571
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16572
   (exit $ac_status); }
 
16573
 { (ac_try="$ac_compiler -V >&5"
 
16574
 case "(($ac_try" in
 
16575
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
16576
   *) ac_try_echo=$ac_try;;
 
16577
 esac
 
16578
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
16579
-$as_echo "$ac_try_echo") >&5
 
16580
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
16581
   (eval "$ac_compiler -V >&5") 2>&5
 
16582
   ac_status=$?
 
16583
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16584
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16585
   (exit $ac_status); }
 
16586
 
 
16587
 cat >conftest.$ac_ext <<_ACEOF
 
16588
@@ -3329,22 +3190,27 @@
 
16589
 }
 
16590
 _ACEOF
 
16591
 ac_clean_files_save=$ac_clean_files
 
16592
-ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
 
16593
+ac_clean_files="$ac_clean_files a.out a.exe b.out"
 
16594
 # Try to create an executable without -o first, disregard a.out.
 
16595
 # It will help us diagnose broken compilers, and finding out an intuition
 
16596
 # of exeext.
 
16597
-{ $as_echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
 
16598
-$as_echo_n "checking for C compiler default output file name... " >&6; }
 
16599
-ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
 
16600
-
 
16601
-# The possible output files:
 
16602
-ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
 
16603
-
 
16604
+{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
 
16605
+echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; }
 
16606
+ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
 
16607
+#
 
16608
+# List of possible output files, starting from the most likely.
 
16609
+# The algorithm is not robust to junk in `.', hence go to wildcards (a.*)
 
16610
+# only as a last resort.  b.out is created by i960 compilers.
 
16611
+ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out'
 
16612
+#
 
16613
+# The IRIX 6 linker writes into existing files which may not be
 
16614
+# executable, retaining their permissions.  Remove them first so a
 
16615
+# subsequent execution test works.
 
16616
 ac_rmfiles=
 
16617
 for ac_file in $ac_files
 
16618
 do
 
16619
   case $ac_file in
 
16620
-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
 
16621
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
 
16622
     * ) ac_rmfiles="$ac_rmfiles $ac_file";;
 
16623
   esac
 
16624
 done
 
16625
@@ -3355,11 +3221,10 @@
 
16626
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
16627
   *) ac_try_echo=$ac_try;;
 
16628
 esac
 
16629
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
16630
-$as_echo "$ac_try_echo") >&5
 
16631
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
16632
   (eval "$ac_link_default") 2>&5
 
16633
   ac_status=$?
 
16634
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16635
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16636
   (exit $ac_status); }; then
 
16637
   # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
 
16638
 # So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
 
16639
@@ -3370,7 +3235,7 @@
 
16640
 do
 
16641
   test -f "$ac_file" || continue
 
16642
   case $ac_file in
 
16643
-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
 
16644
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj )
 
16645
        ;;
 
16646
     [ab].out )
 
16647
        # We found the default executable, but exeext='' is most
 
16648
@@ -3397,27 +3262,25 @@
 
16649
   ac_file=''
 
16650
 fi
 
16651
 
 
16652
-{ $as_echo "$as_me:$LINENO: result: $ac_file" >&5
 
16653
-$as_echo "$ac_file" >&6; }
 
16654
+{ echo "$as_me:$LINENO: result: $ac_file" >&5
 
16655
+echo "${ECHO_T}$ac_file" >&6; }
 
16656
 if test -z "$ac_file"; then
 
16657
-  $as_echo "$as_me: failed program was:" >&5
 
16658
+  echo "$as_me: failed program was:" >&5
 
16659
 sed 's/^/| /' conftest.$ac_ext >&5
 
16660
 
 
16661
-{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 
16662
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
16663
-{ { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables
 
16664
+{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
 
16665
 See \`config.log' for more details." >&5
 
16666
-$as_echo "$as_me: error: C compiler cannot create executables
 
16667
+echo "$as_me: error: C compiler cannot create executables
 
16668
 See \`config.log' for more details." >&2;}
 
16669
-   { (exit 77); exit 77; }; }; }
 
16670
+   { (exit 77); exit 77; }; }
 
16671
 fi
 
16672
 
 
16673
 ac_exeext=$ac_cv_exeext
 
16674
 
 
16675
 # Check that the compiler produces executables we can run.  If not, either
 
16676
 # the compiler is broken, or we cross compile.
 
16677
-{ $as_echo "$as_me:$LINENO: checking whether the C compiler works" >&5
 
16678
-$as_echo_n "checking whether the C compiler works... " >&6; }
 
16679
+{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5
 
16680
+echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; }
 
16681
 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0
 
16682
 # If not cross compiling, check that we can run a simple program.
 
16683
 if test "$cross_compiling" != yes; then
 
16684
@@ -3426,53 +3289,49 @@
 
16685
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
16686
   *) ac_try_echo=$ac_try;;
 
16687
 esac
 
16688
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
16689
-$as_echo "$ac_try_echo") >&5
 
16690
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
16691
   (eval "$ac_try") 2>&5
 
16692
   ac_status=$?
 
16693
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16694
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16695
   (exit $ac_status); }; }; then
 
16696
     cross_compiling=no
 
16697
   else
 
16698
     if test "$cross_compiling" = maybe; then
 
16699
        cross_compiling=yes
 
16700
     else
 
16701
-       { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 
16702
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
16703
-{ { $as_echo "$as_me:$LINENO: error: cannot run C compiled programs.
 
16704
+       { { echo "$as_me:$LINENO: error: cannot run C compiled programs.
 
16705
 If you meant to cross compile, use \`--host'.
 
16706
 See \`config.log' for more details." >&5
 
16707
-$as_echo "$as_me: error: cannot run C compiled programs.
 
16708
+echo "$as_me: error: cannot run C compiled programs.
 
16709
 If you meant to cross compile, use \`--host'.
 
16710
 See \`config.log' for more details." >&2;}
 
16711
-   { (exit 1); exit 1; }; }; }
 
16712
+   { (exit 1); exit 1; }; }
 
16713
     fi
 
16714
   fi
 
16715
 fi
 
16716
-{ $as_echo "$as_me:$LINENO: result: yes" >&5
 
16717
-$as_echo "yes" >&6; }
 
16718
+{ echo "$as_me:$LINENO: result: yes" >&5
 
16719
+echo "${ECHO_T}yes" >&6; }
 
16720
 
 
16721
-rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
 
16722
+rm -f a.out a.exe conftest$ac_cv_exeext b.out
 
16723
 ac_clean_files=$ac_clean_files_save
 
16724
 # Check that the compiler produces executables we can run.  If not, either
 
16725
 # the compiler is broken, or we cross compile.
 
16726
-{ $as_echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
 
16727
-$as_echo_n "checking whether we are cross compiling... " >&6; }
 
16728
-{ $as_echo "$as_me:$LINENO: result: $cross_compiling" >&5
 
16729
-$as_echo "$cross_compiling" >&6; }
 
16730
+{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
 
16731
+echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
 
16732
+{ echo "$as_me:$LINENO: result: $cross_compiling" >&5
 
16733
+echo "${ECHO_T}$cross_compiling" >&6; }
 
16734
 
 
16735
-{ $as_echo "$as_me:$LINENO: checking for suffix of executables" >&5
 
16736
-$as_echo_n "checking for suffix of executables... " >&6; }
 
16737
+{ echo "$as_me:$LINENO: checking for suffix of executables" >&5
 
16738
+echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }
 
16739
 if { (ac_try="$ac_link"
 
16740
 case "(($ac_try" in
 
16741
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
16742
   *) ac_try_echo=$ac_try;;
 
16743
 esac
 
16744
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
16745
-$as_echo "$ac_try_echo") >&5
 
16746
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
16747
   (eval "$ac_link") 2>&5
 
16748
   ac_status=$?
 
16749
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16750
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16751
   (exit $ac_status); }; then
 
16752
   # If both `conftest.exe' and `conftest' are `present' (well, observable)
 
16753
 # catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
 
16754
@@ -3481,33 +3340,31 @@
 
16755
 for ac_file in conftest.exe conftest conftest.*; do
 
16756
   test -f "$ac_file" || continue
 
16757
   case $ac_file in
 
16758
-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
 
16759
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
 
16760
     *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 
16761
          break;;
 
16762
     * ) break;;
 
16763
   esac
 
16764
 done
 
16765
 else
 
16766
-  { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 
16767
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
16768
-{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
 
16769
+  { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
 
16770
 See \`config.log' for more details." >&5
 
16771
-$as_echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
 
16772
+echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
 
16773
 See \`config.log' for more details." >&2;}
 
16774
-   { (exit 1); exit 1; }; }; }
 
16775
+   { (exit 1); exit 1; }; }
 
16776
 fi
 
16777
 
 
16778
 rm -f conftest$ac_cv_exeext
 
16779
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
 
16780
-$as_echo "$ac_cv_exeext" >&6; }
 
16781
+{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
 
16782
+echo "${ECHO_T}$ac_cv_exeext" >&6; }
 
16783
 
 
16784
 rm -f conftest.$ac_ext
 
16785
 EXEEXT=$ac_cv_exeext
 
16786
 ac_exeext=$EXEEXT
 
16787
-{ $as_echo "$as_me:$LINENO: checking for suffix of object files" >&5
 
16788
-$as_echo_n "checking for suffix of object files... " >&6; }
 
16789
+{ echo "$as_me:$LINENO: checking for suffix of object files" >&5
 
16790
+echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; }
 
16791
 if test "${ac_cv_objext+set}" = set; then
 
16792
-  $as_echo_n "(cached) " >&6
 
16793
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
16794
 else
 
16795
   cat >conftest.$ac_ext <<_ACEOF
 
16796
 /* confdefs.h.  */
 
16797
@@ -3530,43 +3387,40 @@
 
16798
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
16799
   *) ac_try_echo=$ac_try;;
 
16800
 esac
 
16801
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
16802
-$as_echo "$ac_try_echo") >&5
 
16803
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
16804
   (eval "$ac_compile") 2>&5
 
16805
   ac_status=$?
 
16806
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16807
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16808
   (exit $ac_status); }; then
 
16809
   for ac_file in conftest.o conftest.obj conftest.*; do
 
16810
   test -f "$ac_file" || continue;
 
16811
   case $ac_file in
 
16812
-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
 
16813
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;
 
16814
     *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
 
16815
        break;;
 
16816
   esac
 
16817
 done
 
16818
 else
 
16819
-  $as_echo "$as_me: failed program was:" >&5
 
16820
+  echo "$as_me: failed program was:" >&5
 
16821
 sed 's/^/| /' conftest.$ac_ext >&5
 
16822
 
 
16823
-{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 
16824
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
16825
-{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
 
16826
+{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
 
16827
 See \`config.log' for more details." >&5
 
16828
-$as_echo "$as_me: error: cannot compute suffix of object files: cannot compile
 
16829
+echo "$as_me: error: cannot compute suffix of object files: cannot compile
 
16830
 See \`config.log' for more details." >&2;}
 
16831
-   { (exit 1); exit 1; }; }; }
 
16832
+   { (exit 1); exit 1; }; }
 
16833
 fi
 
16834
 
 
16835
 rm -f conftest.$ac_cv_objext conftest.$ac_ext
 
16836
 fi
 
16837
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
 
16838
-$as_echo "$ac_cv_objext" >&6; }
 
16839
+{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
 
16840
+echo "${ECHO_T}$ac_cv_objext" >&6; }
 
16841
 OBJEXT=$ac_cv_objext
 
16842
 ac_objext=$OBJEXT
 
16843
-{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
 
16844
-$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
 
16845
+{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
 
16846
+echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; }
 
16847
 if test "${ac_cv_c_compiler_gnu+set}" = set; then
 
16848
-  $as_echo_n "(cached) " >&6
 
16849
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
16850
 else
 
16851
   cat >conftest.$ac_ext <<_ACEOF
 
16852
 /* confdefs.h.  */
 
16853
@@ -3592,21 +3446,20 @@
 
16854
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
16855
   *) ac_try_echo=$ac_try;;
 
16856
 esac
 
16857
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
16858
-$as_echo "$ac_try_echo") >&5
 
16859
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
16860
   (eval "$ac_compile") 2>conftest.er1
 
16861
   ac_status=$?
 
16862
   grep -v '^ *+' conftest.er1 >conftest.err
 
16863
   rm -f conftest.er1
 
16864
   cat conftest.err >&5
 
16865
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16866
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16867
   (exit $ac_status); } && {
 
16868
         test -z "$ac_c_werror_flag" ||
 
16869
         test ! -s conftest.err
 
16870
        } && test -s conftest.$ac_objext; then
 
16871
   ac_compiler_gnu=yes
 
16872
 else
 
16873
-  $as_echo "$as_me: failed program was:" >&5
 
16874
+  echo "$as_me: failed program was:" >&5
 
16875
 sed 's/^/| /' conftest.$ac_ext >&5
 
16876
 
 
16877
        ac_compiler_gnu=no
 
16878
@@ -3616,19 +3469,15 @@
 
16879
 ac_cv_c_compiler_gnu=$ac_compiler_gnu
 
16880
 
 
16881
 fi
 
16882
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
 
16883
-$as_echo "$ac_cv_c_compiler_gnu" >&6; }
 
16884
-if test $ac_compiler_gnu = yes; then
 
16885
-  GCC=yes
 
16886
-else
 
16887
-  GCC=
 
16888
-fi
 
16889
+{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
 
16890
+echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; }
 
16891
+GCC=`test $ac_compiler_gnu = yes && echo yes`
 
16892
 ac_test_CFLAGS=${CFLAGS+set}
 
16893
 ac_save_CFLAGS=$CFLAGS
 
16894
-{ $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
 
16895
-$as_echo_n "checking whether $CC accepts -g... " >&6; }
 
16896
+{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
 
16897
+echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; }
 
16898
 if test "${ac_cv_prog_cc_g+set}" = set; then
 
16899
-  $as_echo_n "(cached) " >&6
 
16900
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
16901
 else
 
16902
   ac_save_c_werror_flag=$ac_c_werror_flag
 
16903
    ac_c_werror_flag=yes
 
16904
@@ -3655,21 +3504,20 @@
 
16905
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
16906
   *) ac_try_echo=$ac_try;;
 
16907
 esac
 
16908
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
16909
-$as_echo "$ac_try_echo") >&5
 
16910
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
16911
   (eval "$ac_compile") 2>conftest.er1
 
16912
   ac_status=$?
 
16913
   grep -v '^ *+' conftest.er1 >conftest.err
 
16914
   rm -f conftest.er1
 
16915
   cat conftest.err >&5
 
16916
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16917
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16918
   (exit $ac_status); } && {
 
16919
         test -z "$ac_c_werror_flag" ||
 
16920
         test ! -s conftest.err
 
16921
        } && test -s conftest.$ac_objext; then
 
16922
   ac_cv_prog_cc_g=yes
 
16923
 else
 
16924
-  $as_echo "$as_me: failed program was:" >&5
 
16925
+  echo "$as_me: failed program was:" >&5
 
16926
 sed 's/^/| /' conftest.$ac_ext >&5
 
16927
 
 
16928
        CFLAGS=""
 
16929
@@ -3694,21 +3542,20 @@
 
16930
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
16931
   *) ac_try_echo=$ac_try;;
 
16932
 esac
 
16933
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
16934
-$as_echo "$ac_try_echo") >&5
 
16935
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
16936
   (eval "$ac_compile") 2>conftest.er1
 
16937
   ac_status=$?
 
16938
   grep -v '^ *+' conftest.er1 >conftest.err
 
16939
   rm -f conftest.er1
 
16940
   cat conftest.err >&5
 
16941
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16942
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16943
   (exit $ac_status); } && {
 
16944
         test -z "$ac_c_werror_flag" ||
 
16945
         test ! -s conftest.err
 
16946
        } && test -s conftest.$ac_objext; then
 
16947
   :
 
16948
 else
 
16949
-  $as_echo "$as_me: failed program was:" >&5
 
16950
+  echo "$as_me: failed program was:" >&5
 
16951
 sed 's/^/| /' conftest.$ac_ext >&5
 
16952
 
 
16953
        ac_c_werror_flag=$ac_save_c_werror_flag
 
16954
@@ -3734,21 +3581,20 @@
 
16955
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
16956
   *) ac_try_echo=$ac_try;;
 
16957
 esac
 
16958
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
16959
-$as_echo "$ac_try_echo") >&5
 
16960
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
16961
   (eval "$ac_compile") 2>conftest.er1
 
16962
   ac_status=$?
 
16963
   grep -v '^ *+' conftest.er1 >conftest.err
 
16964
   rm -f conftest.er1
 
16965
   cat conftest.err >&5
 
16966
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16967
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
16968
   (exit $ac_status); } && {
 
16969
         test -z "$ac_c_werror_flag" ||
 
16970
         test ! -s conftest.err
 
16971
        } && test -s conftest.$ac_objext; then
 
16972
   ac_cv_prog_cc_g=yes
 
16973
 else
 
16974
-  $as_echo "$as_me: failed program was:" >&5
 
16975
+  echo "$as_me: failed program was:" >&5
 
16976
 sed 's/^/| /' conftest.$ac_ext >&5
 
16977
 
 
16978
 
 
16979
@@ -3763,8 +3609,8 @@
 
16980
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
16981
    ac_c_werror_flag=$ac_save_c_werror_flag
 
16982
 fi
 
16983
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
 
16984
-$as_echo "$ac_cv_prog_cc_g" >&6; }
 
16985
+{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
 
16986
+echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }
 
16987
 if test "$ac_test_CFLAGS" = set; then
 
16988
   CFLAGS=$ac_save_CFLAGS
 
16989
 elif test $ac_cv_prog_cc_g = yes; then
 
16990
@@ -3780,10 +3626,10 @@
 
16991
     CFLAGS=
 
16992
   fi
 
16993
 fi
 
16994
-{ $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5
 
16995
-$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
 
16996
+{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5
 
16997
+echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; }
 
16998
 if test "${ac_cv_prog_cc_c89+set}" = set; then
 
16999
-  $as_echo_n "(cached) " >&6
 
17000
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17001
 else
 
17002
   ac_cv_prog_cc_c89=no
 
17003
 ac_save_CC=$CC
 
17004
@@ -3854,21 +3700,20 @@
 
17005
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17006
   *) ac_try_echo=$ac_try;;
 
17007
 esac
 
17008
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17009
-$as_echo "$ac_try_echo") >&5
 
17010
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17011
   (eval "$ac_compile") 2>conftest.er1
 
17012
   ac_status=$?
 
17013
   grep -v '^ *+' conftest.er1 >conftest.err
 
17014
   rm -f conftest.er1
 
17015
   cat conftest.err >&5
 
17016
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17017
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17018
   (exit $ac_status); } && {
 
17019
         test -z "$ac_c_werror_flag" ||
 
17020
         test ! -s conftest.err
 
17021
        } && test -s conftest.$ac_objext; then
 
17022
   ac_cv_prog_cc_c89=$ac_arg
 
17023
 else
 
17024
-  $as_echo "$as_me: failed program was:" >&5
 
17025
+  echo "$as_me: failed program was:" >&5
 
17026
 sed 's/^/| /' conftest.$ac_ext >&5
 
17027
 
 
17028
 
 
17029
@@ -3884,15 +3729,15 @@
 
17030
 # AC_CACHE_VAL
 
17031
 case "x$ac_cv_prog_cc_c89" in
 
17032
   x)
 
17033
-    { $as_echo "$as_me:$LINENO: result: none needed" >&5
 
17034
-$as_echo "none needed" >&6; } ;;
 
17035
+    { echo "$as_me:$LINENO: result: none needed" >&5
 
17036
+echo "${ECHO_T}none needed" >&6; } ;;
 
17037
   xno)
 
17038
-    { $as_echo "$as_me:$LINENO: result: unsupported" >&5
 
17039
-$as_echo "unsupported" >&6; } ;;
 
17040
+    { echo "$as_me:$LINENO: result: unsupported" >&5
 
17041
+echo "${ECHO_T}unsupported" >&6; } ;;
 
17042
   *)
 
17043
     CC="$CC $ac_cv_prog_cc_c89"
 
17044
-    { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5
 
17045
-$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
 
17046
+    { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5
 
17047
+echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;;
 
17048
 esac
 
17049
 
 
17050
 
 
17051
@@ -3904,10 +3749,10 @@
 
17052
 
 
17053
 depcc="$CC"   am_compiler_list=
 
17054
 
 
17055
-{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
 
17056
-$as_echo_n "checking dependency style of $depcc... " >&6; }
 
17057
+{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
 
17058
+echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; }
 
17059
 if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
 
17060
-  $as_echo_n "(cached) " >&6
 
17061
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17062
 else
 
17063
   if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
 
17064
   # We make a subdir and do the tests there.  Otherwise we can end up
 
17065
@@ -3995,8 +3840,8 @@
 
17066
 fi
 
17067
 
 
17068
 fi
 
17069
-{ $as_echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
 
17070
-$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
 
17071
+{ echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
 
17072
+echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
 
17073
 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
 
17074
 
 
17075
  if
 
17076
@@ -4016,15 +3861,15 @@
 
17077
 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
17078
 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
17079
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
17080
-{ $as_echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
 
17081
-$as_echo_n "checking how to run the C preprocessor... " >&6; }
 
17082
+{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
 
17083
+echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; }
 
17084
 # On Suns, sometimes $CPP names a directory.
 
17085
 if test -n "$CPP" && test -d "$CPP"; then
 
17086
   CPP=
 
17087
 fi
 
17088
 if test -z "$CPP"; then
 
17089
   if test "${ac_cv_prog_CPP+set}" = set; then
 
17090
-  $as_echo_n "(cached) " >&6
 
17091
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17092
 else
 
17093
       # Double quotes because CPP needs to be expanded
 
17094
     for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
 
17095
@@ -4056,21 +3901,20 @@
 
17096
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17097
   *) ac_try_echo=$ac_try;;
 
17098
 esac
 
17099
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17100
-$as_echo "$ac_try_echo") >&5
 
17101
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17102
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
17103
   ac_status=$?
 
17104
   grep -v '^ *+' conftest.er1 >conftest.err
 
17105
   rm -f conftest.er1
 
17106
   cat conftest.err >&5
 
17107
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17108
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17109
   (exit $ac_status); } >/dev/null && {
 
17110
         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
17111
         test ! -s conftest.err
 
17112
        }; then
 
17113
   :
 
17114
 else
 
17115
-  $as_echo "$as_me: failed program was:" >&5
 
17116
+  echo "$as_me: failed program was:" >&5
 
17117
 sed 's/^/| /' conftest.$ac_ext >&5
 
17118
 
 
17119
   # Broken: fails on valid input.
 
17120
@@ -4094,14 +3938,13 @@
 
17121
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17122
   *) ac_try_echo=$ac_try;;
 
17123
 esac
 
17124
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17125
-$as_echo "$ac_try_echo") >&5
 
17126
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17127
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
17128
   ac_status=$?
 
17129
   grep -v '^ *+' conftest.er1 >conftest.err
 
17130
   rm -f conftest.er1
 
17131
   cat conftest.err >&5
 
17132
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17133
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17134
   (exit $ac_status); } >/dev/null && {
 
17135
         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
17136
         test ! -s conftest.err
 
17137
@@ -4109,7 +3952,7 @@
 
17138
   # Broken: success on invalid input.
 
17139
 continue
 
17140
 else
 
17141
-  $as_echo "$as_me: failed program was:" >&5
 
17142
+  echo "$as_me: failed program was:" >&5
 
17143
 sed 's/^/| /' conftest.$ac_ext >&5
 
17144
 
 
17145
   # Passes both tests.
 
17146
@@ -4134,8 +3977,8 @@
 
17147
 else
 
17148
   ac_cv_prog_CPP=$CPP
 
17149
 fi
 
17150
-{ $as_echo "$as_me:$LINENO: result: $CPP" >&5
 
17151
-$as_echo "$CPP" >&6; }
 
17152
+{ echo "$as_me:$LINENO: result: $CPP" >&5
 
17153
+echo "${ECHO_T}$CPP" >&6; }
 
17154
 ac_preproc_ok=false
 
17155
 for ac_c_preproc_warn_flag in '' yes
 
17156
 do
 
17157
@@ -4163,21 +4006,20 @@
 
17158
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17159
   *) ac_try_echo=$ac_try;;
 
17160
 esac
 
17161
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17162
-$as_echo "$ac_try_echo") >&5
 
17163
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17164
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
17165
   ac_status=$?
 
17166
   grep -v '^ *+' conftest.er1 >conftest.err
 
17167
   rm -f conftest.er1
 
17168
   cat conftest.err >&5
 
17169
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17170
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17171
   (exit $ac_status); } >/dev/null && {
 
17172
         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
17173
         test ! -s conftest.err
 
17174
        }; then
 
17175
   :
 
17176
 else
 
17177
-  $as_echo "$as_me: failed program was:" >&5
 
17178
+  echo "$as_me: failed program was:" >&5
 
17179
 sed 's/^/| /' conftest.$ac_ext >&5
 
17180
 
 
17181
   # Broken: fails on valid input.
 
17182
@@ -4201,14 +4043,13 @@
 
17183
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17184
   *) ac_try_echo=$ac_try;;
 
17185
 esac
 
17186
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17187
-$as_echo "$ac_try_echo") >&5
 
17188
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17189
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
17190
   ac_status=$?
 
17191
   grep -v '^ *+' conftest.er1 >conftest.err
 
17192
   rm -f conftest.er1
 
17193
   cat conftest.err >&5
 
17194
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17195
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17196
   (exit $ac_status); } >/dev/null && {
 
17197
         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
17198
         test ! -s conftest.err
 
17199
@@ -4216,7 +4057,7 @@
 
17200
   # Broken: success on invalid input.
 
17201
 continue
 
17202
 else
 
17203
-  $as_echo "$as_me: failed program was:" >&5
 
17204
+  echo "$as_me: failed program was:" >&5
 
17205
 sed 's/^/| /' conftest.$ac_ext >&5
 
17206
 
 
17207
   # Passes both tests.
 
17208
@@ -4232,13 +4073,11 @@
 
17209
 if $ac_preproc_ok; then
 
17210
   :
 
17211
 else
 
17212
-  { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 
17213
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
17214
-{ { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
 
17215
+  { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
 
17216
 See \`config.log' for more details." >&5
 
17217
-$as_echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
 
17218
+echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
 
17219
 See \`config.log' for more details." >&2;}
 
17220
-   { (exit 1); exit 1; }; }; }
 
17221
+   { (exit 1); exit 1; }; }
 
17222
 fi
 
17223
 
 
17224
 ac_ext=c
 
17225
@@ -4248,37 +4087,42 @@
 
17226
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
17227
 
 
17228
 
 
17229
-{ $as_echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5
 
17230
-$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
 
17231
+{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5
 
17232
+echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; }
 
17233
 if test "${ac_cv_path_GREP+set}" = set; then
 
17234
-  $as_echo_n "(cached) " >&6
 
17235
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17236
+else
 
17237
+  # Extract the first word of "grep ggrep" to use in msg output
 
17238
+if test -z "$GREP"; then
 
17239
+set dummy grep ggrep; ac_prog_name=$2
 
17240
+if test "${ac_cv_path_GREP+set}" = set; then
 
17241
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17242
 else
 
17243
-  if test -z "$GREP"; then
 
17244
   ac_path_GREP_found=false
 
17245
-  # Loop through the user's path and test for each of PROGNAME-LIST
 
17246
-  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
17247
+# Loop through the user's path and test for each of PROGNAME-LIST
 
17248
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
17249
 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
 
17250
 do
 
17251
   IFS=$as_save_IFS
 
17252
   test -z "$as_dir" && as_dir=.
 
17253
   for ac_prog in grep ggrep; do
 
17254
-    for ac_exec_ext in '' $ac_executable_extensions; do
 
17255
-      ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
 
17256
-      { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
 
17257
-# Check for GNU ac_path_GREP and select it if it is found.
 
17258
+  for ac_exec_ext in '' $ac_executable_extensions; do
 
17259
+    ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
 
17260
+    { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
 
17261
+    # Check for GNU ac_path_GREP and select it if it is found.
 
17262
   # Check for GNU $ac_path_GREP
 
17263
 case `"$ac_path_GREP" --version 2>&1` in
 
17264
 *GNU*)
 
17265
   ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
 
17266
 *)
 
17267
   ac_count=0
 
17268
-  $as_echo_n 0123456789 >"conftest.in"
 
17269
+  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
 
17270
   while :
 
17271
   do
 
17272
     cat "conftest.in" "conftest.in" >"conftest.tmp"
 
17273
     mv "conftest.tmp" "conftest.in"
 
17274
     cp "conftest.in" "conftest.nl"
 
17275
-    $as_echo 'GREP' >> "conftest.nl"
 
17276
+    echo 'GREP' >> "conftest.nl"
 
17277
     "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
 
17278
     diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
 
17279
     ac_count=`expr $ac_count + 1`
 
17280
@@ -4293,60 +4137,74 @@
 
17281
   rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
 
17282
 esac
 
17283
 
 
17284
-      $ac_path_GREP_found && break 3
 
17285
-    done
 
17286
+
 
17287
+    $ac_path_GREP_found && break 3
 
17288
   done
 
17289
 done
 
17290
+
 
17291
+done
 
17292
 IFS=$as_save_IFS
 
17293
-  if test -z "$ac_cv_path_GREP"; then
 
17294
-    { { $as_echo "$as_me:$LINENO: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
 
17295
-$as_echo "$as_me: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
 
17296
+
 
17297
+
 
17298
+fi
 
17299
+
 
17300
+GREP="$ac_cv_path_GREP"
 
17301
+if test -z "$GREP"; then
 
17302
+  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
 
17303
+echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
 
17304
    { (exit 1); exit 1; }; }
 
17305
-  fi
 
17306
+fi
 
17307
+
 
17308
 else
 
17309
   ac_cv_path_GREP=$GREP
 
17310
 fi
 
17311
 
 
17312
+
 
17313
 fi
 
17314
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5
 
17315
-$as_echo "$ac_cv_path_GREP" >&6; }
 
17316
+{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5
 
17317
+echo "${ECHO_T}$ac_cv_path_GREP" >&6; }
 
17318
  GREP="$ac_cv_path_GREP"
 
17319
 
 
17320
 
 
17321
-{ $as_echo "$as_me:$LINENO: checking for egrep" >&5
 
17322
-$as_echo_n "checking for egrep... " >&6; }
 
17323
+{ echo "$as_me:$LINENO: checking for egrep" >&5
 
17324
+echo $ECHO_N "checking for egrep... $ECHO_C" >&6; }
 
17325
 if test "${ac_cv_path_EGREP+set}" = set; then
 
17326
-  $as_echo_n "(cached) " >&6
 
17327
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17328
 else
 
17329
   if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
 
17330
    then ac_cv_path_EGREP="$GREP -E"
 
17331
    else
 
17332
-     if test -z "$EGREP"; then
 
17333
+     # Extract the first word of "egrep" to use in msg output
 
17334
+if test -z "$EGREP"; then
 
17335
+set dummy egrep; ac_prog_name=$2
 
17336
+if test "${ac_cv_path_EGREP+set}" = set; then
 
17337
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17338
+else
 
17339
   ac_path_EGREP_found=false
 
17340
-  # Loop through the user's path and test for each of PROGNAME-LIST
 
17341
-  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
17342
+# Loop through the user's path and test for each of PROGNAME-LIST
 
17343
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
17344
 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
 
17345
 do
 
17346
   IFS=$as_save_IFS
 
17347
   test -z "$as_dir" && as_dir=.
 
17348
   for ac_prog in egrep; do
 
17349
-    for ac_exec_ext in '' $ac_executable_extensions; do
 
17350
-      ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
 
17351
-      { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
 
17352
-# Check for GNU ac_path_EGREP and select it if it is found.
 
17353
+  for ac_exec_ext in '' $ac_executable_extensions; do
 
17354
+    ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
 
17355
+    { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
 
17356
+    # Check for GNU ac_path_EGREP and select it if it is found.
 
17357
   # Check for GNU $ac_path_EGREP
 
17358
 case `"$ac_path_EGREP" --version 2>&1` in
 
17359
 *GNU*)
 
17360
   ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
 
17361
 *)
 
17362
   ac_count=0
 
17363
-  $as_echo_n 0123456789 >"conftest.in"
 
17364
+  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
 
17365
   while :
 
17366
   do
 
17367
     cat "conftest.in" "conftest.in" >"conftest.tmp"
 
17368
     mv "conftest.tmp" "conftest.in"
 
17369
     cp "conftest.in" "conftest.nl"
 
17370
-    $as_echo 'EGREP' >> "conftest.nl"
 
17371
+    echo 'EGREP' >> "conftest.nl"
 
17372
     "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
 
17373
     diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
 
17374
     ac_count=`expr $ac_count + 1`
 
17375
@@ -4361,31 +4219,40 @@
 
17376
   rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
 
17377
 esac
 
17378
 
 
17379
-      $ac_path_EGREP_found && break 3
 
17380
-    done
 
17381
+
 
17382
+    $ac_path_EGREP_found && break 3
 
17383
   done
 
17384
 done
 
17385
+
 
17386
+done
 
17387
 IFS=$as_save_IFS
 
17388
-  if test -z "$ac_cv_path_EGREP"; then
 
17389
-    { { $as_echo "$as_me:$LINENO: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
 
17390
-$as_echo "$as_me: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
 
17391
+
 
17392
+
 
17393
+fi
 
17394
+
 
17395
+EGREP="$ac_cv_path_EGREP"
 
17396
+if test -z "$EGREP"; then
 
17397
+  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
 
17398
+echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
 
17399
    { (exit 1); exit 1; }; }
 
17400
-  fi
 
17401
+fi
 
17402
+
 
17403
 else
 
17404
   ac_cv_path_EGREP=$EGREP
 
17405
 fi
 
17406
 
 
17407
+
 
17408
    fi
 
17409
 fi
 
17410
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5
 
17411
-$as_echo "$ac_cv_path_EGREP" >&6; }
 
17412
+{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5
 
17413
+echo "${ECHO_T}$ac_cv_path_EGREP" >&6; }
 
17414
  EGREP="$ac_cv_path_EGREP"
 
17415
 
 
17416
 
 
17417
-{ $as_echo "$as_me:$LINENO: checking for ANSI C header files" >&5
 
17418
-$as_echo_n "checking for ANSI C header files... " >&6; }
 
17419
+{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5
 
17420
+echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
 
17421
 if test "${ac_cv_header_stdc+set}" = set; then
 
17422
-  $as_echo_n "(cached) " >&6
 
17423
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17424
 else
 
17425
   cat >conftest.$ac_ext <<_ACEOF
 
17426
 /* confdefs.h.  */
 
17427
@@ -4412,21 +4279,20 @@
 
17428
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17429
   *) ac_try_echo=$ac_try;;
 
17430
 esac
 
17431
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17432
-$as_echo "$ac_try_echo") >&5
 
17433
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17434
   (eval "$ac_compile") 2>conftest.er1
 
17435
   ac_status=$?
 
17436
   grep -v '^ *+' conftest.er1 >conftest.err
 
17437
   rm -f conftest.er1
 
17438
   cat conftest.err >&5
 
17439
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17440
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17441
   (exit $ac_status); } && {
 
17442
         test -z "$ac_c_werror_flag" ||
 
17443
         test ! -s conftest.err
 
17444
        } && test -s conftest.$ac_objext; then
 
17445
   ac_cv_header_stdc=yes
 
17446
 else
 
17447
-  $as_echo "$as_me: failed program was:" >&5
 
17448
+  echo "$as_me: failed program was:" >&5
 
17449
 sed 's/^/| /' conftest.$ac_ext >&5
 
17450
 
 
17451
        ac_cv_header_stdc=no
 
17452
@@ -4518,40 +4384,37 @@
 
17453
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17454
   *) ac_try_echo=$ac_try;;
 
17455
 esac
 
17456
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17457
-$as_echo "$ac_try_echo") >&5
 
17458
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17459
   (eval "$ac_link") 2>&5
 
17460
   ac_status=$?
 
17461
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17462
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17463
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
 
17464
   { (case "(($ac_try" in
 
17465
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17466
   *) ac_try_echo=$ac_try;;
 
17467
 esac
 
17468
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17469
-$as_echo "$ac_try_echo") >&5
 
17470
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17471
   (eval "$ac_try") 2>&5
 
17472
   ac_status=$?
 
17473
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17474
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17475
   (exit $ac_status); }; }; then
 
17476
   :
 
17477
 else
 
17478
-  $as_echo "$as_me: program exited with status $ac_status" >&5
 
17479
-$as_echo "$as_me: failed program was:" >&5
 
17480
+  echo "$as_me: program exited with status $ac_status" >&5
 
17481
+echo "$as_me: failed program was:" >&5
 
17482
 sed 's/^/| /' conftest.$ac_ext >&5
 
17483
 
 
17484
 ( exit $ac_status )
 
17485
 ac_cv_header_stdc=no
 
17486
 fi
 
17487
-rm -rf conftest.dSYM
 
17488
 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 
17489
 fi
 
17490
 
 
17491
 
 
17492
 fi
 
17493
 fi
 
17494
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
 
17495
-$as_echo "$ac_cv_header_stdc" >&6; }
 
17496
+{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
 
17497
+echo "${ECHO_T}$ac_cv_header_stdc" >&6; }
 
17498
 if test $ac_cv_header_stdc = yes; then
 
17499
 
 
17500
 cat >>confdefs.h <<\_ACEOF
 
17501
@@ -4573,11 +4436,11 @@
 
17502
 for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
 
17503
                  inttypes.h stdint.h unistd.h
 
17504
 do
 
17505
-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
 
17506
-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
 
17507
-$as_echo_n "checking for $ac_header... " >&6; }
 
17508
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
 
17509
+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
 
17510
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
 
17511
 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
17512
-  $as_echo_n "(cached) " >&6
 
17513
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17514
 else
 
17515
   cat >conftest.$ac_ext <<_ACEOF
 
17516
 /* confdefs.h.  */
 
17517
@@ -4595,21 +4458,20 @@
 
17518
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17519
   *) ac_try_echo=$ac_try;;
 
17520
 esac
 
17521
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17522
-$as_echo "$ac_try_echo") >&5
 
17523
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17524
   (eval "$ac_compile") 2>conftest.er1
 
17525
   ac_status=$?
 
17526
   grep -v '^ *+' conftest.er1 >conftest.err
 
17527
   rm -f conftest.er1
 
17528
   cat conftest.err >&5
 
17529
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17530
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17531
   (exit $ac_status); } && {
 
17532
         test -z "$ac_c_werror_flag" ||
 
17533
         test ! -s conftest.err
 
17534
        } && test -s conftest.$ac_objext; then
 
17535
   eval "$as_ac_Header=yes"
 
17536
 else
 
17537
-  $as_echo "$as_me: failed program was:" >&5
 
17538
+  echo "$as_me: failed program was:" >&5
 
17539
 sed 's/^/| /' conftest.$ac_ext >&5
 
17540
 
 
17541
        eval "$as_ac_Header=no"
 
17542
@@ -4617,15 +4479,12 @@
 
17543
 
 
17544
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
17545
 fi
 
17546
-ac_res=`eval 'as_val=${'$as_ac_Header'}
 
17547
-                $as_echo "$as_val"'`
 
17548
-              { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
 
17549
-$as_echo "$ac_res" >&6; }
 
17550
-as_val=`eval 'as_val=${'$as_ac_Header'}
 
17551
-                $as_echo "$as_val"'`
 
17552
-   if test "x$as_val" = x""yes; then
 
17553
+ac_res=`eval echo '${'$as_ac_Header'}'`
 
17554
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
17555
+echo "${ECHO_T}$ac_res" >&6; }
 
17556
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
 
17557
   cat >>confdefs.h <<_ACEOF
 
17558
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
 
17559
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
 
17560
 _ACEOF
 
17561
 
 
17562
 fi
 
17563
@@ -4637,21 +4496,20 @@
 
17564
 
 
17565
 for ac_header in locale.h
 
17566
 do
 
17567
-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
 
17568
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
 
17569
 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
17570
-  { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
 
17571
-$as_echo_n "checking for $ac_header... " >&6; }
 
17572
+  { echo "$as_me:$LINENO: checking for $ac_header" >&5
 
17573
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
 
17574
 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
17575
-  $as_echo_n "(cached) " >&6
 
17576
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17577
 fi
 
17578
-ac_res=`eval 'as_val=${'$as_ac_Header'}
 
17579
-                $as_echo "$as_val"'`
 
17580
-              { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
 
17581
-$as_echo "$ac_res" >&6; }
 
17582
+ac_res=`eval echo '${'$as_ac_Header'}'`
 
17583
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
17584
+echo "${ECHO_T}$ac_res" >&6; }
 
17585
 else
 
17586
   # Is the header compilable?
 
17587
-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5
 
17588
-$as_echo_n "checking $ac_header usability... " >&6; }
 
17589
+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
 
17590
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
 
17591
 cat >conftest.$ac_ext <<_ACEOF
 
17592
 /* confdefs.h.  */
 
17593
 _ACEOF
 
17594
@@ -4667,33 +4525,32 @@
 
17595
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17596
   *) ac_try_echo=$ac_try;;
 
17597
 esac
 
17598
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17599
-$as_echo "$ac_try_echo") >&5
 
17600
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17601
   (eval "$ac_compile") 2>conftest.er1
 
17602
   ac_status=$?
 
17603
   grep -v '^ *+' conftest.er1 >conftest.err
 
17604
   rm -f conftest.er1
 
17605
   cat conftest.err >&5
 
17606
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17607
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17608
   (exit $ac_status); } && {
 
17609
         test -z "$ac_c_werror_flag" ||
 
17610
         test ! -s conftest.err
 
17611
        } && test -s conftest.$ac_objext; then
 
17612
   ac_header_compiler=yes
 
17613
 else
 
17614
-  $as_echo "$as_me: failed program was:" >&5
 
17615
+  echo "$as_me: failed program was:" >&5
 
17616
 sed 's/^/| /' conftest.$ac_ext >&5
 
17617
 
 
17618
        ac_header_compiler=no
 
17619
 fi
 
17620
 
 
17621
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
17622
-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
17623
-$as_echo "$ac_header_compiler" >&6; }
 
17624
+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
17625
+echo "${ECHO_T}$ac_header_compiler" >&6; }
 
17626
 
 
17627
 # Is the header present?
 
17628
-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5
 
17629
-$as_echo_n "checking $ac_header presence... " >&6; }
 
17630
+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
 
17631
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
 
17632
 cat >conftest.$ac_ext <<_ACEOF
 
17633
 /* confdefs.h.  */
 
17634
 _ACEOF
 
17635
@@ -4707,52 +4564,51 @@
 
17636
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17637
   *) ac_try_echo=$ac_try;;
 
17638
 esac
 
17639
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17640
-$as_echo "$ac_try_echo") >&5
 
17641
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17642
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
17643
   ac_status=$?
 
17644
   grep -v '^ *+' conftest.er1 >conftest.err
 
17645
   rm -f conftest.er1
 
17646
   cat conftest.err >&5
 
17647
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17648
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17649
   (exit $ac_status); } >/dev/null && {
 
17650
         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
17651
         test ! -s conftest.err
 
17652
        }; then
 
17653
   ac_header_preproc=yes
 
17654
 else
 
17655
-  $as_echo "$as_me: failed program was:" >&5
 
17656
+  echo "$as_me: failed program was:" >&5
 
17657
 sed 's/^/| /' conftest.$ac_ext >&5
 
17658
 
 
17659
   ac_header_preproc=no
 
17660
 fi
 
17661
 
 
17662
 rm -f conftest.err conftest.$ac_ext
 
17663
-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
17664
-$as_echo "$ac_header_preproc" >&6; }
 
17665
+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
17666
+echo "${ECHO_T}$ac_header_preproc" >&6; }
 
17667
 
 
17668
 # So?  What about this header?
 
17669
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
 
17670
   yes:no: )
 
17671
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
 
17672
-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
 
17673
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
 
17674
-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
 
17675
+    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
 
17676
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
 
17677
+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
 
17678
+echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
 
17679
     ac_header_preproc=yes
 
17680
     ;;
 
17681
   no:yes:* )
 
17682
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
 
17683
-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
 
17684
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
 
17685
-$as_echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
 
17686
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
 
17687
-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
 
17688
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
 
17689
-$as_echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
 
17690
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
 
17691
-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
 
17692
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
 
17693
-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
 
17694
+    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
 
17695
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
 
17696
+    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
 
17697
+echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
 
17698
+    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
 
17699
+echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
 
17700
+    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
 
17701
+echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
 
17702
+    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
 
17703
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
 
17704
+    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
 
17705
+echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
 
17706
     ( cat <<\_ASBOX
 
17707
 ## -------------------------------------------------------------------- ##
 
17708
 ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=totem ##
 
17709
@@ -4761,24 +4617,21 @@
 
17710
      ) | sed "s/^/$as_me: WARNING:     /" >&2
 
17711
     ;;
 
17712
 esac
 
17713
-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
 
17714
-$as_echo_n "checking for $ac_header... " >&6; }
 
17715
+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
 
17716
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
 
17717
 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
17718
-  $as_echo_n "(cached) " >&6
 
17719
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17720
 else
 
17721
   eval "$as_ac_Header=\$ac_header_preproc"
 
17722
 fi
 
17723
-ac_res=`eval 'as_val=${'$as_ac_Header'}
 
17724
-                $as_echo "$as_val"'`
 
17725
-              { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
 
17726
-$as_echo "$ac_res" >&6; }
 
17727
+ac_res=`eval echo '${'$as_ac_Header'}'`
 
17728
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
17729
+echo "${ECHO_T}$ac_res" >&6; }
 
17730
 
 
17731
 fi
 
17732
-as_val=`eval 'as_val=${'$as_ac_Header'}
 
17733
-                $as_echo "$as_val"'`
 
17734
-   if test "x$as_val" = x""yes; then
 
17735
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
 
17736
   cat >>confdefs.h <<_ACEOF
 
17737
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
 
17738
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
 
17739
 _ACEOF
 
17740
 
 
17741
 fi
 
17742
@@ -4786,10 +4639,10 @@
 
17743
 done
 
17744
 
 
17745
     if test $ac_cv_header_locale_h = yes; then
 
17746
-    { $as_echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5
 
17747
-$as_echo_n "checking for LC_MESSAGES... " >&6; }
 
17748
+    { echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5
 
17749
+echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6; }
 
17750
 if test "${am_cv_val_LC_MESSAGES+set}" = set; then
 
17751
-  $as_echo_n "(cached) " >&6
 
17752
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17753
 else
 
17754
   cat >conftest.$ac_ext <<_ACEOF
 
17755
 /* confdefs.h.  */
 
17756
@@ -4812,35 +4665,31 @@
 
17757
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17758
   *) ac_try_echo=$ac_try;;
 
17759
 esac
 
17760
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17761
-$as_echo "$ac_try_echo") >&5
 
17762
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17763
   (eval "$ac_link") 2>conftest.er1
 
17764
   ac_status=$?
 
17765
   grep -v '^ *+' conftest.er1 >conftest.err
 
17766
   rm -f conftest.er1
 
17767
   cat conftest.err >&5
 
17768
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17769
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17770
   (exit $ac_status); } && {
 
17771
         test -z "$ac_c_werror_flag" ||
 
17772
         test ! -s conftest.err
 
17773
-       } && test -s conftest$ac_exeext && {
 
17774
-        test "$cross_compiling" = yes ||
 
17775
-        $as_test_x conftest$ac_exeext
 
17776
-       }; then
 
17777
+       } && test -s conftest$ac_exeext &&
 
17778
+       $as_test_x conftest$ac_exeext; then
 
17779
   am_cv_val_LC_MESSAGES=yes
 
17780
 else
 
17781
-  $as_echo "$as_me: failed program was:" >&5
 
17782
+  echo "$as_me: failed program was:" >&5
 
17783
 sed 's/^/| /' conftest.$ac_ext >&5
 
17784
 
 
17785
        am_cv_val_LC_MESSAGES=no
 
17786
 fi
 
17787
 
 
17788
-rm -rf conftest.dSYM
 
17789
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
17790
       conftest$ac_exeext conftest.$ac_ext
 
17791
 fi
 
17792
-{ $as_echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5
 
17793
-$as_echo "$am_cv_val_LC_MESSAGES" >&6; }
 
17794
+{ echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5
 
17795
+echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6; }
 
17796
     if test $am_cv_val_LC_MESSAGES = yes; then
 
17797
 
 
17798
 cat >>confdefs.h <<\_ACEOF
 
17799
@@ -4859,17 +4708,17 @@
 
17800
     INTLLIBS=
 
17801
 
 
17802
     if test "${ac_cv_header_libintl_h+set}" = set; then
 
17803
-  { $as_echo "$as_me:$LINENO: checking for libintl.h" >&5
 
17804
-$as_echo_n "checking for libintl.h... " >&6; }
 
17805
+  { echo "$as_me:$LINENO: checking for libintl.h" >&5
 
17806
+echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6; }
 
17807
 if test "${ac_cv_header_libintl_h+set}" = set; then
 
17808
-  $as_echo_n "(cached) " >&6
 
17809
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17810
 fi
 
17811
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5
 
17812
-$as_echo "$ac_cv_header_libintl_h" >&6; }
 
17813
+{ echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5
 
17814
+echo "${ECHO_T}$ac_cv_header_libintl_h" >&6; }
 
17815
 else
 
17816
   # Is the header compilable?
 
17817
-{ $as_echo "$as_me:$LINENO: checking libintl.h usability" >&5
 
17818
-$as_echo_n "checking libintl.h usability... " >&6; }
 
17819
+{ echo "$as_me:$LINENO: checking libintl.h usability" >&5
 
17820
+echo $ECHO_N "checking libintl.h usability... $ECHO_C" >&6; }
 
17821
 cat >conftest.$ac_ext <<_ACEOF
 
17822
 /* confdefs.h.  */
 
17823
 _ACEOF
 
17824
@@ -4885,33 +4734,32 @@
 
17825
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17826
   *) ac_try_echo=$ac_try;;
 
17827
 esac
 
17828
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17829
-$as_echo "$ac_try_echo") >&5
 
17830
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17831
   (eval "$ac_compile") 2>conftest.er1
 
17832
   ac_status=$?
 
17833
   grep -v '^ *+' conftest.er1 >conftest.err
 
17834
   rm -f conftest.er1
 
17835
   cat conftest.err >&5
 
17836
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17837
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17838
   (exit $ac_status); } && {
 
17839
         test -z "$ac_c_werror_flag" ||
 
17840
         test ! -s conftest.err
 
17841
        } && test -s conftest.$ac_objext; then
 
17842
   ac_header_compiler=yes
 
17843
 else
 
17844
-  $as_echo "$as_me: failed program was:" >&5
 
17845
+  echo "$as_me: failed program was:" >&5
 
17846
 sed 's/^/| /' conftest.$ac_ext >&5
 
17847
 
 
17848
        ac_header_compiler=no
 
17849
 fi
 
17850
 
 
17851
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
17852
-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
17853
-$as_echo "$ac_header_compiler" >&6; }
 
17854
+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
17855
+echo "${ECHO_T}$ac_header_compiler" >&6; }
 
17856
 
 
17857
 # Is the header present?
 
17858
-{ $as_echo "$as_me:$LINENO: checking libintl.h presence" >&5
 
17859
-$as_echo_n "checking libintl.h presence... " >&6; }
 
17860
+{ echo "$as_me:$LINENO: checking libintl.h presence" >&5
 
17861
+echo $ECHO_N "checking libintl.h presence... $ECHO_C" >&6; }
 
17862
 cat >conftest.$ac_ext <<_ACEOF
 
17863
 /* confdefs.h.  */
 
17864
 _ACEOF
 
17865
@@ -4925,52 +4773,51 @@
 
17866
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17867
   *) ac_try_echo=$ac_try;;
 
17868
 esac
 
17869
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17870
-$as_echo "$ac_try_echo") >&5
 
17871
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17872
   (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
17873
   ac_status=$?
 
17874
   grep -v '^ *+' conftest.er1 >conftest.err
 
17875
   rm -f conftest.er1
 
17876
   cat conftest.err >&5
 
17877
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17878
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17879
   (exit $ac_status); } >/dev/null && {
 
17880
         test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
17881
         test ! -s conftest.err
 
17882
        }; then
 
17883
   ac_header_preproc=yes
 
17884
 else
 
17885
-  $as_echo "$as_me: failed program was:" >&5
 
17886
+  echo "$as_me: failed program was:" >&5
 
17887
 sed 's/^/| /' conftest.$ac_ext >&5
 
17888
 
 
17889
   ac_header_preproc=no
 
17890
 fi
 
17891
 
 
17892
 rm -f conftest.err conftest.$ac_ext
 
17893
-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
17894
-$as_echo "$ac_header_preproc" >&6; }
 
17895
+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
17896
+echo "${ECHO_T}$ac_header_preproc" >&6; }
 
17897
 
 
17898
 # So?  What about this header?
 
17899
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
 
17900
   yes:no: )
 
17901
-    { $as_echo "$as_me:$LINENO: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&5
 
17902
-$as_echo "$as_me: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
 
17903
-    { $as_echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the compiler's result" >&5
 
17904
-$as_echo "$as_me: WARNING: libintl.h: proceeding with the compiler's result" >&2;}
 
17905
+    { echo "$as_me:$LINENO: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&5
 
17906
+echo "$as_me: WARNING: libintl.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
 
17907
+    { echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the compiler's result" >&5
 
17908
+echo "$as_me: WARNING: libintl.h: proceeding with the compiler's result" >&2;}
 
17909
     ac_header_preproc=yes
 
17910
     ;;
 
17911
   no:yes:* )
 
17912
-    { $as_echo "$as_me:$LINENO: WARNING: libintl.h: present but cannot be compiled" >&5
 
17913
-$as_echo "$as_me: WARNING: libintl.h: present but cannot be compiled" >&2;}
 
17914
-    { $as_echo "$as_me:$LINENO: WARNING: libintl.h:     check for missing prerequisite headers?" >&5
 
17915
-$as_echo "$as_me: WARNING: libintl.h:     check for missing prerequisite headers?" >&2;}
 
17916
-    { $as_echo "$as_me:$LINENO: WARNING: libintl.h: see the Autoconf documentation" >&5
 
17917
-$as_echo "$as_me: WARNING: libintl.h: see the Autoconf documentation" >&2;}
 
17918
-    { $as_echo "$as_me:$LINENO: WARNING: libintl.h:     section \"Present But Cannot Be Compiled\"" >&5
 
17919
-$as_echo "$as_me: WARNING: libintl.h:     section \"Present But Cannot Be Compiled\"" >&2;}
 
17920
-    { $as_echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5
 
17921
-$as_echo "$as_me: WARNING: libintl.h: proceeding with the preprocessor's result" >&2;}
 
17922
-    { $as_echo "$as_me:$LINENO: WARNING: libintl.h: in the future, the compiler will take precedence" >&5
 
17923
-$as_echo "$as_me: WARNING: libintl.h: in the future, the compiler will take precedence" >&2;}
 
17924
+    { echo "$as_me:$LINENO: WARNING: libintl.h: present but cannot be compiled" >&5
 
17925
+echo "$as_me: WARNING: libintl.h: present but cannot be compiled" >&2;}
 
17926
+    { echo "$as_me:$LINENO: WARNING: libintl.h:     check for missing prerequisite headers?" >&5
 
17927
+echo "$as_me: WARNING: libintl.h:     check for missing prerequisite headers?" >&2;}
 
17928
+    { echo "$as_me:$LINENO: WARNING: libintl.h: see the Autoconf documentation" >&5
 
17929
+echo "$as_me: WARNING: libintl.h: see the Autoconf documentation" >&2;}
 
17930
+    { echo "$as_me:$LINENO: WARNING: libintl.h:     section \"Present But Cannot Be Compiled\"" >&5
 
17931
+echo "$as_me: WARNING: libintl.h:     section \"Present But Cannot Be Compiled\"" >&2;}
 
17932
+    { echo "$as_me:$LINENO: WARNING: libintl.h: proceeding with the preprocessor's result" >&5
 
17933
+echo "$as_me: WARNING: libintl.h: proceeding with the preprocessor's result" >&2;}
 
17934
+    { echo "$as_me:$LINENO: WARNING: libintl.h: in the future, the compiler will take precedence" >&5
 
17935
+echo "$as_me: WARNING: libintl.h: in the future, the compiler will take precedence" >&2;}
 
17936
     ( cat <<\_ASBOX
 
17937
 ## -------------------------------------------------------------------- ##
 
17938
 ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=totem ##
 
17939
@@ -4979,28 +4826,28 @@
 
17940
      ) | sed "s/^/$as_me: WARNING:     /" >&2
 
17941
     ;;
 
17942
 esac
 
17943
-{ $as_echo "$as_me:$LINENO: checking for libintl.h" >&5
 
17944
-$as_echo_n "checking for libintl.h... " >&6; }
 
17945
+{ echo "$as_me:$LINENO: checking for libintl.h" >&5
 
17946
+echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6; }
 
17947
 if test "${ac_cv_header_libintl_h+set}" = set; then
 
17948
-  $as_echo_n "(cached) " >&6
 
17949
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17950
 else
 
17951
   ac_cv_header_libintl_h=$ac_header_preproc
 
17952
 fi
 
17953
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5
 
17954
-$as_echo "$ac_cv_header_libintl_h" >&6; }
 
17955
+{ echo "$as_me:$LINENO: result: $ac_cv_header_libintl_h" >&5
 
17956
+echo "${ECHO_T}$ac_cv_header_libintl_h" >&6; }
 
17957
 
 
17958
 fi
 
17959
-if test "x$ac_cv_header_libintl_h" = x""yes; then
 
17960
+if test $ac_cv_header_libintl_h = yes; then
 
17961
   gt_cv_func_dgettext_libintl="no"
 
17962
       libintl_extra_libs=""
 
17963
 
 
17964
       #
 
17965
       # First check in libc
 
17966
       #
 
17967
-      { $as_echo "$as_me:$LINENO: checking for ngettext in libc" >&5
 
17968
-$as_echo_n "checking for ngettext in libc... " >&6; }
 
17969
+      { echo "$as_me:$LINENO: checking for ngettext in libc" >&5
 
17970
+echo $ECHO_N "checking for ngettext in libc... $ECHO_C" >&6; }
 
17971
 if test "${gt_cv_func_ngettext_libc+set}" = set; then
 
17972
-  $as_echo_n "(cached) " >&6
 
17973
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
17974
 else
 
17975
   cat >conftest.$ac_ext <<_ACEOF
 
17976
 /* confdefs.h.  */
 
17977
@@ -5025,42 +4872,38 @@
 
17978
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
17979
   *) ac_try_echo=$ac_try;;
 
17980
 esac
 
17981
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
17982
-$as_echo "$ac_try_echo") >&5
 
17983
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
17984
   (eval "$ac_link") 2>conftest.er1
 
17985
   ac_status=$?
 
17986
   grep -v '^ *+' conftest.er1 >conftest.err
 
17987
   rm -f conftest.er1
 
17988
   cat conftest.err >&5
 
17989
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17990
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
17991
   (exit $ac_status); } && {
 
17992
         test -z "$ac_c_werror_flag" ||
 
17993
         test ! -s conftest.err
 
17994
-       } && test -s conftest$ac_exeext && {
 
17995
-        test "$cross_compiling" = yes ||
 
17996
-        $as_test_x conftest$ac_exeext
 
17997
-       }; then
 
17998
+       } && test -s conftest$ac_exeext &&
 
17999
+       $as_test_x conftest$ac_exeext; then
 
18000
   gt_cv_func_ngettext_libc=yes
 
18001
 else
 
18002
-  $as_echo "$as_me: failed program was:" >&5
 
18003
+  echo "$as_me: failed program was:" >&5
 
18004
 sed 's/^/| /' conftest.$ac_ext >&5
 
18005
 
 
18006
        gt_cv_func_ngettext_libc=no
 
18007
 fi
 
18008
 
 
18009
-rm -rf conftest.dSYM
 
18010
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
18011
       conftest$ac_exeext conftest.$ac_ext
 
18012
 
 
18013
 fi
 
18014
-{ $as_echo "$as_me:$LINENO: result: $gt_cv_func_ngettext_libc" >&5
 
18015
-$as_echo "$gt_cv_func_ngettext_libc" >&6; }
 
18016
+{ echo "$as_me:$LINENO: result: $gt_cv_func_ngettext_libc" >&5
 
18017
+echo "${ECHO_T}$gt_cv_func_ngettext_libc" >&6; }
 
18018
 
 
18019
       if test "$gt_cv_func_ngettext_libc" = "yes" ; then
 
18020
-             { $as_echo "$as_me:$LINENO: checking for dgettext in libc" >&5
 
18021
-$as_echo_n "checking for dgettext in libc... " >&6; }
 
18022
+             { echo "$as_me:$LINENO: checking for dgettext in libc" >&5
 
18023
+echo $ECHO_N "checking for dgettext in libc... $ECHO_C" >&6; }
 
18024
 if test "${gt_cv_func_dgettext_libc+set}" = set; then
 
18025
-  $as_echo_n "(cached) " >&6
 
18026
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18027
 else
 
18028
   cat >conftest.$ac_ext <<_ACEOF
 
18029
 /* confdefs.h.  */
 
18030
@@ -5085,47 +4928,43 @@
 
18031
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
18032
   *) ac_try_echo=$ac_try;;
 
18033
 esac
 
18034
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
18035
-$as_echo "$ac_try_echo") >&5
 
18036
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
18037
   (eval "$ac_link") 2>conftest.er1
 
18038
   ac_status=$?
 
18039
   grep -v '^ *+' conftest.er1 >conftest.err
 
18040
   rm -f conftest.er1
 
18041
   cat conftest.err >&5
 
18042
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18043
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18044
   (exit $ac_status); } && {
 
18045
         test -z "$ac_c_werror_flag" ||
 
18046
         test ! -s conftest.err
 
18047
-       } && test -s conftest$ac_exeext && {
 
18048
-        test "$cross_compiling" = yes ||
 
18049
-        $as_test_x conftest$ac_exeext
 
18050
-       }; then
 
18051
+       } && test -s conftest$ac_exeext &&
 
18052
+       $as_test_x conftest$ac_exeext; then
 
18053
   gt_cv_func_dgettext_libc=yes
 
18054
 else
 
18055
-  $as_echo "$as_me: failed program was:" >&5
 
18056
+  echo "$as_me: failed program was:" >&5
 
18057
 sed 's/^/| /' conftest.$ac_ext >&5
 
18058
 
 
18059
        gt_cv_func_dgettext_libc=no
 
18060
 fi
 
18061
 
 
18062
-rm -rf conftest.dSYM
 
18063
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
18064
       conftest$ac_exeext conftest.$ac_ext
 
18065
 
 
18066
 fi
 
18067
-{ $as_echo "$as_me:$LINENO: result: $gt_cv_func_dgettext_libc" >&5
 
18068
-$as_echo "$gt_cv_func_dgettext_libc" >&6; }
 
18069
+{ echo "$as_me:$LINENO: result: $gt_cv_func_dgettext_libc" >&5
 
18070
+echo "${ECHO_T}$gt_cv_func_dgettext_libc" >&6; }
 
18071
       fi
 
18072
 
 
18073
       if test "$gt_cv_func_ngettext_libc" = "yes" ; then
 
18074
 
 
18075
 for ac_func in bind_textdomain_codeset
 
18076
 do
 
18077
-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
 
18078
-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5
 
18079
-$as_echo_n "checking for $ac_func... " >&6; }
 
18080
+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
 
18081
+{ echo "$as_me:$LINENO: checking for $ac_func" >&5
 
18082
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
 
18083
 if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
 
18084
-  $as_echo_n "(cached) " >&6
 
18085
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18086
 else
 
18087
   cat >conftest.$ac_ext <<_ACEOF
 
18088
 /* confdefs.h.  */
 
18089
@@ -5178,42 +5017,35 @@
 
18090
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
18091
   *) ac_try_echo=$ac_try;;
 
18092
 esac
 
18093
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
18094
-$as_echo "$ac_try_echo") >&5
 
18095
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
18096
   (eval "$ac_link") 2>conftest.er1
 
18097
   ac_status=$?
 
18098
   grep -v '^ *+' conftest.er1 >conftest.err
 
18099
   rm -f conftest.er1
 
18100
   cat conftest.err >&5
 
18101
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18102
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18103
   (exit $ac_status); } && {
 
18104
         test -z "$ac_c_werror_flag" ||
 
18105
         test ! -s conftest.err
 
18106
-       } && test -s conftest$ac_exeext && {
 
18107
-        test "$cross_compiling" = yes ||
 
18108
-        $as_test_x conftest$ac_exeext
 
18109
-       }; then
 
18110
+       } && test -s conftest$ac_exeext &&
 
18111
+       $as_test_x conftest$ac_exeext; then
 
18112
   eval "$as_ac_var=yes"
 
18113
 else
 
18114
-  $as_echo "$as_me: failed program was:" >&5
 
18115
+  echo "$as_me: failed program was:" >&5
 
18116
 sed 's/^/| /' conftest.$ac_ext >&5
 
18117
 
 
18118
        eval "$as_ac_var=no"
 
18119
 fi
 
18120
 
 
18121
-rm -rf conftest.dSYM
 
18122
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
18123
       conftest$ac_exeext conftest.$ac_ext
 
18124
 fi
 
18125
-ac_res=`eval 'as_val=${'$as_ac_var'}
 
18126
-                $as_echo "$as_val"'`
 
18127
-              { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
 
18128
-$as_echo "$ac_res" >&6; }
 
18129
-as_val=`eval 'as_val=${'$as_ac_var'}
 
18130
-                $as_echo "$as_val"'`
 
18131
-   if test "x$as_val" = x""yes; then
 
18132
+ac_res=`eval echo '${'$as_ac_var'}'`
 
18133
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
18134
+echo "${ECHO_T}$ac_res" >&6; }
 
18135
+if test `eval echo '${'$as_ac_var'}'` = yes; then
 
18136
   cat >>confdefs.h <<_ACEOF
 
18137
-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
 
18138
+#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
 
18139
 _ACEOF
 
18140
 
 
18141
 fi
 
18142
@@ -5228,10 +5060,10 @@
 
18143
         || test "$gt_cv_func_ngettext_libc" != "yes" \
 
18144
          || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then
 
18145
 
 
18146
-        { $as_echo "$as_me:$LINENO: checking for bindtextdomain in -lintl" >&5
 
18147
-$as_echo_n "checking for bindtextdomain in -lintl... " >&6; }
 
18148
+        { echo "$as_me:$LINENO: checking for bindtextdomain in -lintl" >&5
 
18149
+echo $ECHO_N "checking for bindtextdomain in -lintl... $ECHO_C" >&6; }
 
18150
 if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then
 
18151
-  $as_echo_n "(cached) " >&6
 
18152
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18153
 else
 
18154
   ac_check_lib_save_LIBS=$LIBS
 
18155
 LIBS="-lintl  $LIBS"
 
18156
@@ -5263,41 +5095,37 @@
 
18157
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
18158
   *) ac_try_echo=$ac_try;;
 
18159
 esac
 
18160
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
18161
-$as_echo "$ac_try_echo") >&5
 
18162
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
18163
   (eval "$ac_link") 2>conftest.er1
 
18164
   ac_status=$?
 
18165
   grep -v '^ *+' conftest.er1 >conftest.err
 
18166
   rm -f conftest.er1
 
18167
   cat conftest.err >&5
 
18168
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18169
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18170
   (exit $ac_status); } && {
 
18171
         test -z "$ac_c_werror_flag" ||
 
18172
         test ! -s conftest.err
 
18173
-       } && test -s conftest$ac_exeext && {
 
18174
-        test "$cross_compiling" = yes ||
 
18175
-        $as_test_x conftest$ac_exeext
 
18176
-       }; then
 
18177
+       } && test -s conftest$ac_exeext &&
 
18178
+       $as_test_x conftest$ac_exeext; then
 
18179
   ac_cv_lib_intl_bindtextdomain=yes
 
18180
 else
 
18181
-  $as_echo "$as_me: failed program was:" >&5
 
18182
+  echo "$as_me: failed program was:" >&5
 
18183
 sed 's/^/| /' conftest.$ac_ext >&5
 
18184
 
 
18185
        ac_cv_lib_intl_bindtextdomain=no
 
18186
 fi
 
18187
 
 
18188
-rm -rf conftest.dSYM
 
18189
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
18190
       conftest$ac_exeext conftest.$ac_ext
 
18191
 LIBS=$ac_check_lib_save_LIBS
 
18192
 fi
 
18193
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_bindtextdomain" >&5
 
18194
-$as_echo "$ac_cv_lib_intl_bindtextdomain" >&6; }
 
18195
-if test "x$ac_cv_lib_intl_bindtextdomain" = x""yes; then
 
18196
-  { $as_echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5
 
18197
-$as_echo_n "checking for ngettext in -lintl... " >&6; }
 
18198
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_bindtextdomain" >&5
 
18199
+echo "${ECHO_T}$ac_cv_lib_intl_bindtextdomain" >&6; }
 
18200
+if test $ac_cv_lib_intl_bindtextdomain = yes; then
 
18201
+  { echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5
 
18202
+echo $ECHO_N "checking for ngettext in -lintl... $ECHO_C" >&6; }
 
18203
 if test "${ac_cv_lib_intl_ngettext+set}" = set; then
 
18204
-  $as_echo_n "(cached) " >&6
 
18205
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18206
 else
 
18207
   ac_check_lib_save_LIBS=$LIBS
 
18208
 LIBS="-lintl  $LIBS"
 
18209
@@ -5329,41 +5157,37 @@
 
18210
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
18211
   *) ac_try_echo=$ac_try;;
 
18212
 esac
 
18213
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
18214
-$as_echo "$ac_try_echo") >&5
 
18215
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
18216
   (eval "$ac_link") 2>conftest.er1
 
18217
   ac_status=$?
 
18218
   grep -v '^ *+' conftest.er1 >conftest.err
 
18219
   rm -f conftest.er1
 
18220
   cat conftest.err >&5
 
18221
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18222
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18223
   (exit $ac_status); } && {
 
18224
         test -z "$ac_c_werror_flag" ||
 
18225
         test ! -s conftest.err
 
18226
-       } && test -s conftest$ac_exeext && {
 
18227
-        test "$cross_compiling" = yes ||
 
18228
-        $as_test_x conftest$ac_exeext
 
18229
-       }; then
 
18230
+       } && test -s conftest$ac_exeext &&
 
18231
+       $as_test_x conftest$ac_exeext; then
 
18232
   ac_cv_lib_intl_ngettext=yes
 
18233
 else
 
18234
-  $as_echo "$as_me: failed program was:" >&5
 
18235
+  echo "$as_me: failed program was:" >&5
 
18236
 sed 's/^/| /' conftest.$ac_ext >&5
 
18237
 
 
18238
        ac_cv_lib_intl_ngettext=no
 
18239
 fi
 
18240
 
 
18241
-rm -rf conftest.dSYM
 
18242
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
18243
       conftest$ac_exeext conftest.$ac_ext
 
18244
 LIBS=$ac_check_lib_save_LIBS
 
18245
 fi
 
18246
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5
 
18247
-$as_echo "$ac_cv_lib_intl_ngettext" >&6; }
 
18248
-if test "x$ac_cv_lib_intl_ngettext" = x""yes; then
 
18249
-  { $as_echo "$as_me:$LINENO: checking for dgettext in -lintl" >&5
 
18250
-$as_echo_n "checking for dgettext in -lintl... " >&6; }
 
18251
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5
 
18252
+echo "${ECHO_T}$ac_cv_lib_intl_ngettext" >&6; }
 
18253
+if test $ac_cv_lib_intl_ngettext = yes; then
 
18254
+  { echo "$as_me:$LINENO: checking for dgettext in -lintl" >&5
 
18255
+echo $ECHO_N "checking for dgettext in -lintl... $ECHO_C" >&6; }
 
18256
 if test "${ac_cv_lib_intl_dgettext+set}" = set; then
 
18257
-  $as_echo_n "(cached) " >&6
 
18258
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18259
 else
 
18260
   ac_check_lib_save_LIBS=$LIBS
 
18261
 LIBS="-lintl  $LIBS"
 
18262
@@ -5395,37 +5219,33 @@
 
18263
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
18264
   *) ac_try_echo=$ac_try;;
 
18265
 esac
 
18266
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
18267
-$as_echo "$ac_try_echo") >&5
 
18268
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
18269
   (eval "$ac_link") 2>conftest.er1
 
18270
   ac_status=$?
 
18271
   grep -v '^ *+' conftest.er1 >conftest.err
 
18272
   rm -f conftest.er1
 
18273
   cat conftest.err >&5
 
18274
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18275
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18276
   (exit $ac_status); } && {
 
18277
         test -z "$ac_c_werror_flag" ||
 
18278
         test ! -s conftest.err
 
18279
-       } && test -s conftest$ac_exeext && {
 
18280
-        test "$cross_compiling" = yes ||
 
18281
-        $as_test_x conftest$ac_exeext
 
18282
-       }; then
 
18283
+       } && test -s conftest$ac_exeext &&
 
18284
+       $as_test_x conftest$ac_exeext; then
 
18285
   ac_cv_lib_intl_dgettext=yes
 
18286
 else
 
18287
-  $as_echo "$as_me: failed program was:" >&5
 
18288
+  echo "$as_me: failed program was:" >&5
 
18289
 sed 's/^/| /' conftest.$ac_ext >&5
 
18290
 
 
18291
        ac_cv_lib_intl_dgettext=no
 
18292
 fi
 
18293
 
 
18294
-rm -rf conftest.dSYM
 
18295
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
18296
       conftest$ac_exeext conftest.$ac_ext
 
18297
 LIBS=$ac_check_lib_save_LIBS
 
18298
 fi
 
18299
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dgettext" >&5
 
18300
-$as_echo "$ac_cv_lib_intl_dgettext" >&6; }
 
18301
-if test "x$ac_cv_lib_intl_dgettext" = x""yes; then
 
18302
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dgettext" >&5
 
18303
+echo "${ECHO_T}$ac_cv_lib_intl_dgettext" >&6; }
 
18304
+if test $ac_cv_lib_intl_dgettext = yes; then
 
18305
   gt_cv_func_dgettext_libintl=yes
 
18306
 fi
 
18307
 
 
18308
@@ -5435,14 +5255,14 @@
 
18309
 
 
18310
 
 
18311
        if test "$gt_cv_func_dgettext_libintl" != "yes" ; then
 
18312
-         { $as_echo "$as_me:$LINENO: checking if -liconv is needed to use gettext" >&5
 
18313
-$as_echo_n "checking if -liconv is needed to use gettext... " >&6; }
 
18314
-         { $as_echo "$as_me:$LINENO: result: " >&5
 
18315
-$as_echo "" >&6; }
 
18316
-         { $as_echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5
 
18317
-$as_echo_n "checking for ngettext in -lintl... " >&6; }
 
18318
+         { echo "$as_me:$LINENO: checking if -liconv is needed to use gettext" >&5
 
18319
+echo $ECHO_N "checking if -liconv is needed to use gettext... $ECHO_C" >&6; }
 
18320
+         { echo "$as_me:$LINENO: result: " >&5
 
18321
+echo "${ECHO_T}" >&6; }
 
18322
+         { echo "$as_me:$LINENO: checking for ngettext in -lintl" >&5
 
18323
+echo $ECHO_N "checking for ngettext in -lintl... $ECHO_C" >&6; }
 
18324
 if test "${ac_cv_lib_intl_ngettext+set}" = set; then
 
18325
-  $as_echo_n "(cached) " >&6
 
18326
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18327
 else
 
18328
   ac_check_lib_save_LIBS=$LIBS
 
18329
 LIBS="-lintl -liconv $LIBS"
 
18330
@@ -5474,41 +5294,37 @@
 
18331
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
18332
   *) ac_try_echo=$ac_try;;
 
18333
 esac
 
18334
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
18335
-$as_echo "$ac_try_echo") >&5
 
18336
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
18337
   (eval "$ac_link") 2>conftest.er1
 
18338
   ac_status=$?
 
18339
   grep -v '^ *+' conftest.er1 >conftest.err
 
18340
   rm -f conftest.er1
 
18341
   cat conftest.err >&5
 
18342
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18343
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18344
   (exit $ac_status); } && {
 
18345
         test -z "$ac_c_werror_flag" ||
 
18346
         test ! -s conftest.err
 
18347
-       } && test -s conftest$ac_exeext && {
 
18348
-        test "$cross_compiling" = yes ||
 
18349
-        $as_test_x conftest$ac_exeext
 
18350
-       }; then
 
18351
+       } && test -s conftest$ac_exeext &&
 
18352
+       $as_test_x conftest$ac_exeext; then
 
18353
   ac_cv_lib_intl_ngettext=yes
 
18354
 else
 
18355
-  $as_echo "$as_me: failed program was:" >&5
 
18356
+  echo "$as_me: failed program was:" >&5
 
18357
 sed 's/^/| /' conftest.$ac_ext >&5
 
18358
 
 
18359
        ac_cv_lib_intl_ngettext=no
 
18360
 fi
 
18361
 
 
18362
-rm -rf conftest.dSYM
 
18363
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
18364
       conftest$ac_exeext conftest.$ac_ext
 
18365
 LIBS=$ac_check_lib_save_LIBS
 
18366
 fi
 
18367
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5
 
18368
-$as_echo "$ac_cv_lib_intl_ngettext" >&6; }
 
18369
-if test "x$ac_cv_lib_intl_ngettext" = x""yes; then
 
18370
-  { $as_echo "$as_me:$LINENO: checking for dcgettext in -lintl" >&5
 
18371
-$as_echo_n "checking for dcgettext in -lintl... " >&6; }
 
18372
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_ngettext" >&5
 
18373
+echo "${ECHO_T}$ac_cv_lib_intl_ngettext" >&6; }
 
18374
+if test $ac_cv_lib_intl_ngettext = yes; then
 
18375
+  { echo "$as_me:$LINENO: checking for dcgettext in -lintl" >&5
 
18376
+echo $ECHO_N "checking for dcgettext in -lintl... $ECHO_C" >&6; }
 
18377
 if test "${ac_cv_lib_intl_dcgettext+set}" = set; then
 
18378
-  $as_echo_n "(cached) " >&6
 
18379
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18380
 else
 
18381
   ac_check_lib_save_LIBS=$LIBS
 
18382
 LIBS="-lintl -liconv $LIBS"
 
18383
@@ -5540,37 +5356,33 @@
 
18384
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
18385
   *) ac_try_echo=$ac_try;;
 
18386
 esac
 
18387
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
18388
-$as_echo "$ac_try_echo") >&5
 
18389
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
18390
   (eval "$ac_link") 2>conftest.er1
 
18391
   ac_status=$?
 
18392
   grep -v '^ *+' conftest.er1 >conftest.err
 
18393
   rm -f conftest.er1
 
18394
   cat conftest.err >&5
 
18395
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18396
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18397
   (exit $ac_status); } && {
 
18398
         test -z "$ac_c_werror_flag" ||
 
18399
         test ! -s conftest.err
 
18400
-       } && test -s conftest$ac_exeext && {
 
18401
-        test "$cross_compiling" = yes ||
 
18402
-        $as_test_x conftest$ac_exeext
 
18403
-       }; then
 
18404
+       } && test -s conftest$ac_exeext &&
 
18405
+       $as_test_x conftest$ac_exeext; then
 
18406
   ac_cv_lib_intl_dcgettext=yes
 
18407
 else
 
18408
-  $as_echo "$as_me: failed program was:" >&5
 
18409
+  echo "$as_me: failed program was:" >&5
 
18410
 sed 's/^/| /' conftest.$ac_ext >&5
 
18411
 
 
18412
        ac_cv_lib_intl_dcgettext=no
 
18413
 fi
 
18414
 
 
18415
-rm -rf conftest.dSYM
 
18416
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
18417
       conftest$ac_exeext conftest.$ac_ext
 
18418
 LIBS=$ac_check_lib_save_LIBS
 
18419
 fi
 
18420
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dcgettext" >&5
 
18421
-$as_echo "$ac_cv_lib_intl_dcgettext" >&6; }
 
18422
-if test "x$ac_cv_lib_intl_dcgettext" = x""yes; then
 
18423
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_intl_dcgettext" >&5
 
18424
+echo "${ECHO_T}$ac_cv_lib_intl_dcgettext" >&6; }
 
18425
+if test $ac_cv_lib_intl_dcgettext = yes; then
 
18426
   gt_cv_func_dgettext_libintl=yes
 
18427
                        libintl_extra_libs=-liconv
 
18428
 else
 
18429
@@ -5595,11 +5407,11 @@
 
18430
 
 
18431
 for ac_func in bind_textdomain_codeset
 
18432
 do
 
18433
-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
 
18434
-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5
 
18435
-$as_echo_n "checking for $ac_func... " >&6; }
 
18436
+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
 
18437
+{ echo "$as_me:$LINENO: checking for $ac_func" >&5
 
18438
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
 
18439
 if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
 
18440
-  $as_echo_n "(cached) " >&6
 
18441
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18442
 else
 
18443
   cat >conftest.$ac_ext <<_ACEOF
 
18444
 /* confdefs.h.  */
 
18445
@@ -5652,42 +5464,35 @@
 
18446
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
18447
   *) ac_try_echo=$ac_try;;
 
18448
 esac
 
18449
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
18450
-$as_echo "$ac_try_echo") >&5
 
18451
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
18452
   (eval "$ac_link") 2>conftest.er1
 
18453
   ac_status=$?
 
18454
   grep -v '^ *+' conftest.er1 >conftest.err
 
18455
   rm -f conftest.er1
 
18456
   cat conftest.err >&5
 
18457
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18458
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18459
   (exit $ac_status); } && {
 
18460
         test -z "$ac_c_werror_flag" ||
 
18461
         test ! -s conftest.err
 
18462
-       } && test -s conftest$ac_exeext && {
 
18463
-        test "$cross_compiling" = yes ||
 
18464
-        $as_test_x conftest$ac_exeext
 
18465
-       }; then
 
18466
+       } && test -s conftest$ac_exeext &&
 
18467
+       $as_test_x conftest$ac_exeext; then
 
18468
   eval "$as_ac_var=yes"
 
18469
 else
 
18470
-  $as_echo "$as_me: failed program was:" >&5
 
18471
+  echo "$as_me: failed program was:" >&5
 
18472
 sed 's/^/| /' conftest.$ac_ext >&5
 
18473
 
 
18474
        eval "$as_ac_var=no"
 
18475
 fi
 
18476
 
 
18477
-rm -rf conftest.dSYM
 
18478
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
18479
       conftest$ac_exeext conftest.$ac_ext
 
18480
 fi
 
18481
-ac_res=`eval 'as_val=${'$as_ac_var'}
 
18482
-                $as_echo "$as_val"'`
 
18483
-              { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
 
18484
-$as_echo "$ac_res" >&6; }
 
18485
-as_val=`eval 'as_val=${'$as_ac_var'}
 
18486
-                $as_echo "$as_val"'`
 
18487
-   if test "x$as_val" = x""yes; then
 
18488
+ac_res=`eval echo '${'$as_ac_var'}'`
 
18489
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
18490
+echo "${ECHO_T}$ac_res" >&6; }
 
18491
+if test `eval echo '${'$as_ac_var'}'` = yes; then
 
18492
   cat >>confdefs.h <<_ACEOF
 
18493
-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
 
18494
+#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
 
18495
 _ACEOF
 
18496
 
 
18497
 fi
 
18498
@@ -5723,10 +5528,10 @@
 
18499
 
 
18500
        # Extract the first word of "msgfmt", so it can be a program name with args.
 
18501
 set dummy msgfmt; ac_word=$2
 
18502
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
18503
-$as_echo_n "checking for $ac_word... " >&6; }
 
18504
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
18505
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
18506
 if test "${ac_cv_path_MSGFMT+set}" = set; then
 
18507
-  $as_echo_n "(cached) " >&6
 
18508
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18509
 else
 
18510
   case "$MSGFMT" in
 
18511
   /*)
 
18512
@@ -5750,11 +5555,11 @@
 
18513
 fi
 
18514
 MSGFMT="$ac_cv_path_MSGFMT"
 
18515
 if test "$MSGFMT" != "no"; then
 
18516
-  { $as_echo "$as_me:$LINENO: result: $MSGFMT" >&5
 
18517
-$as_echo "$MSGFMT" >&6; }
 
18518
+  { echo "$as_me:$LINENO: result: $MSGFMT" >&5
 
18519
+echo "${ECHO_T}$MSGFMT" >&6; }
 
18520
 else
 
18521
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
18522
-$as_echo "no" >&6; }
 
18523
+  { echo "$as_me:$LINENO: result: no" >&5
 
18524
+echo "${ECHO_T}no" >&6; }
 
18525
 fi
 
18526
        if test "$MSGFMT" != "no"; then
 
18527
           glib_save_LIBS="$LIBS"
 
18528
@@ -5762,11 +5567,11 @@
 
18529
 
 
18530
 for ac_func in dcgettext
 
18531
 do
 
18532
-as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
 
18533
-{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5
 
18534
-$as_echo_n "checking for $ac_func... " >&6; }
 
18535
+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
 
18536
+{ echo "$as_me:$LINENO: checking for $ac_func" >&5
 
18537
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
 
18538
 if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
 
18539
-  $as_echo_n "(cached) " >&6
 
18540
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18541
 else
 
18542
   cat >conftest.$ac_ext <<_ACEOF
 
18543
 /* confdefs.h.  */
 
18544
@@ -5819,50 +5624,43 @@
 
18545
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
18546
   *) ac_try_echo=$ac_try;;
 
18547
 esac
 
18548
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
18549
-$as_echo "$ac_try_echo") >&5
 
18550
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
18551
   (eval "$ac_link") 2>conftest.er1
 
18552
   ac_status=$?
 
18553
   grep -v '^ *+' conftest.er1 >conftest.err
 
18554
   rm -f conftest.er1
 
18555
   cat conftest.err >&5
 
18556
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18557
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18558
   (exit $ac_status); } && {
 
18559
         test -z "$ac_c_werror_flag" ||
 
18560
         test ! -s conftest.err
 
18561
-       } && test -s conftest$ac_exeext && {
 
18562
-        test "$cross_compiling" = yes ||
 
18563
-        $as_test_x conftest$ac_exeext
 
18564
-       }; then
 
18565
+       } && test -s conftest$ac_exeext &&
 
18566
+       $as_test_x conftest$ac_exeext; then
 
18567
   eval "$as_ac_var=yes"
 
18568
 else
 
18569
-  $as_echo "$as_me: failed program was:" >&5
 
18570
+  echo "$as_me: failed program was:" >&5
 
18571
 sed 's/^/| /' conftest.$ac_ext >&5
 
18572
 
 
18573
        eval "$as_ac_var=no"
 
18574
 fi
 
18575
 
 
18576
-rm -rf conftest.dSYM
 
18577
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
18578
       conftest$ac_exeext conftest.$ac_ext
 
18579
 fi
 
18580
-ac_res=`eval 'as_val=${'$as_ac_var'}
 
18581
-                $as_echo "$as_val"'`
 
18582
-              { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
 
18583
-$as_echo "$ac_res" >&6; }
 
18584
-as_val=`eval 'as_val=${'$as_ac_var'}
 
18585
-                $as_echo "$as_val"'`
 
18586
-   if test "x$as_val" = x""yes; then
 
18587
+ac_res=`eval echo '${'$as_ac_var'}'`
 
18588
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
18589
+echo "${ECHO_T}$ac_res" >&6; }
 
18590
+if test `eval echo '${'$as_ac_var'}'` = yes; then
 
18591
   cat >>confdefs.h <<_ACEOF
 
18592
-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
 
18593
+#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
 
18594
 _ACEOF
 
18595
 
 
18596
 fi
 
18597
 done
 
18598
 
 
18599
          MSGFMT_OPTS=
 
18600
-         { $as_echo "$as_me:$LINENO: checking if msgfmt accepts -c" >&5
 
18601
-$as_echo_n "checking if msgfmt accepts -c... " >&6; }
 
18602
+         { echo "$as_me:$LINENO: checking if msgfmt accepts -c" >&5
 
18603
+echo $ECHO_N "checking if msgfmt accepts -c... $ECHO_C" >&6; }
 
18604
          cat >conftest.foo <<_ACEOF
 
18605
 
 
18606
 msgid ""
 
18607
@@ -5876,25 +5674,25 @@
 
18608
 "Content-Transfer-Encoding: 8bit\n"
 
18609
 
 
18610
 _ACEOF
 
18611
-if { ($as_echo "$as_me:$LINENO: \$MSGFMT -c -o /dev/null conftest.foo") >&5
 
18612
+if { (echo "$as_me:$LINENO: \$MSGFMT -c -o /dev/null conftest.foo") >&5
 
18613
   ($MSGFMT -c -o /dev/null conftest.foo) 2>&5
 
18614
   ac_status=$?
 
18615
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18616
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18617
   (exit $ac_status); }; then
 
18618
-  MSGFMT_OPTS=-c; { $as_echo "$as_me:$LINENO: result: yes" >&5
 
18619
-$as_echo "yes" >&6; }
 
18620
-else { $as_echo "$as_me:$LINENO: result: no" >&5
 
18621
-$as_echo "no" >&6; }
 
18622
+  MSGFMT_OPTS=-c; { echo "$as_me:$LINENO: result: yes" >&5
 
18623
+echo "${ECHO_T}yes" >&6; }
 
18624
+else { echo "$as_me:$LINENO: result: no" >&5
 
18625
+echo "${ECHO_T}no" >&6; }
 
18626
 echo "$as_me: failed input was:" >&5
 
18627
 sed 's/^/| /' conftest.foo >&5
 
18628
 fi
 
18629
 
 
18630
          # Extract the first word of "gmsgfmt", so it can be a program name with args.
 
18631
 set dummy gmsgfmt; ac_word=$2
 
18632
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
18633
-$as_echo_n "checking for $ac_word... " >&6; }
 
18634
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
18635
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
18636
 if test "${ac_cv_path_GMSGFMT+set}" = set; then
 
18637
-  $as_echo_n "(cached) " >&6
 
18638
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18639
 else
 
18640
   case $GMSGFMT in
 
18641
   [\\/]* | ?:[\\/]*)
 
18642
@@ -5909,7 +5707,7 @@
 
18643
   for ac_exec_ext in '' $ac_executable_extensions; do
 
18644
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
18645
     ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
 
18646
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
18647
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
18648
     break 2
 
18649
   fi
 
18650
 done
 
18651
@@ -5922,20 +5720,20 @@
 
18652
 fi
 
18653
 GMSGFMT=$ac_cv_path_GMSGFMT
 
18654
 if test -n "$GMSGFMT"; then
 
18655
-  { $as_echo "$as_me:$LINENO: result: $GMSGFMT" >&5
 
18656
-$as_echo "$GMSGFMT" >&6; }
 
18657
+  { echo "$as_me:$LINENO: result: $GMSGFMT" >&5
 
18658
+echo "${ECHO_T}$GMSGFMT" >&6; }
 
18659
 else
 
18660
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
18661
-$as_echo "no" >&6; }
 
18662
+  { echo "$as_me:$LINENO: result: no" >&5
 
18663
+echo "${ECHO_T}no" >&6; }
 
18664
 fi
 
18665
 
 
18666
 
 
18667
          # Extract the first word of "xgettext", so it can be a program name with args.
 
18668
 set dummy xgettext; ac_word=$2
 
18669
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
18670
-$as_echo_n "checking for $ac_word... " >&6; }
 
18671
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
18672
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
18673
 if test "${ac_cv_path_XGETTEXT+set}" = set; then
 
18674
-  $as_echo_n "(cached) " >&6
 
18675
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18676
 else
 
18677
   case "$XGETTEXT" in
 
18678
   /*)
 
18679
@@ -5959,11 +5757,11 @@
 
18680
 fi
 
18681
 XGETTEXT="$ac_cv_path_XGETTEXT"
 
18682
 if test "$XGETTEXT" != ":"; then
 
18683
-  { $as_echo "$as_me:$LINENO: result: $XGETTEXT" >&5
 
18684
-$as_echo "$XGETTEXT" >&6; }
 
18685
+  { echo "$as_me:$LINENO: result: $XGETTEXT" >&5
 
18686
+echo "${ECHO_T}$XGETTEXT" >&6; }
 
18687
 else
 
18688
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
18689
-$as_echo "no" >&6; }
 
18690
+  { echo "$as_me:$LINENO: result: no" >&5
 
18691
+echo "${ECHO_T}no" >&6; }
 
18692
 fi
 
18693
 
 
18694
          cat >conftest.$ac_ext <<_ACEOF
 
18695
@@ -5988,33 +5786,30 @@
 
18696
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
18697
   *) ac_try_echo=$ac_try;;
 
18698
 esac
 
18699
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
18700
-$as_echo "$ac_try_echo") >&5
 
18701
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
18702
   (eval "$ac_link") 2>conftest.er1
 
18703
   ac_status=$?
 
18704
   grep -v '^ *+' conftest.er1 >conftest.err
 
18705
   rm -f conftest.er1
 
18706
   cat conftest.err >&5
 
18707
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18708
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18709
   (exit $ac_status); } && {
 
18710
         test -z "$ac_c_werror_flag" ||
 
18711
         test ! -s conftest.err
 
18712
-       } && test -s conftest$ac_exeext && {
 
18713
-        test "$cross_compiling" = yes ||
 
18714
-        $as_test_x conftest$ac_exeext
 
18715
-       }; then
 
18716
+       } && test -s conftest$ac_exeext &&
 
18717
+       $as_test_x conftest$ac_exeext; then
 
18718
   CATOBJEXT=.gmo
 
18719
              DATADIRNAME=share
 
18720
 else
 
18721
-  $as_echo "$as_me: failed program was:" >&5
 
18722
+  echo "$as_me: failed program was:" >&5
 
18723
 sed 's/^/| /' conftest.$ac_ext >&5
 
18724
 
 
18725
        case $host in
 
18726
            *-*-solaris*)
 
18727
-                                                               { $as_echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5
 
18728
-$as_echo_n "checking for bind_textdomain_codeset... " >&6; }
 
18729
+                                                               { echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5
 
18730
+echo $ECHO_N "checking for bind_textdomain_codeset... $ECHO_C" >&6; }
 
18731
 if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then
 
18732
-  $as_echo_n "(cached) " >&6
 
18733
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18734
 else
 
18735
   cat >conftest.$ac_ext <<_ACEOF
 
18736
 /* confdefs.h.  */
 
18737
@@ -6067,36 +5862,32 @@
 
18738
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
18739
   *) ac_try_echo=$ac_try;;
 
18740
 esac
 
18741
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
18742
-$as_echo "$ac_try_echo") >&5
 
18743
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
18744
   (eval "$ac_link") 2>conftest.er1
 
18745
   ac_status=$?
 
18746
   grep -v '^ *+' conftest.er1 >conftest.err
 
18747
   rm -f conftest.er1
 
18748
   cat conftest.err >&5
 
18749
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18750
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
18751
   (exit $ac_status); } && {
 
18752
         test -z "$ac_c_werror_flag" ||
 
18753
         test ! -s conftest.err
 
18754
-       } && test -s conftest$ac_exeext && {
 
18755
-        test "$cross_compiling" = yes ||
 
18756
-        $as_test_x conftest$ac_exeext
 
18757
-       }; then
 
18758
+       } && test -s conftest$ac_exeext &&
 
18759
+       $as_test_x conftest$ac_exeext; then
 
18760
   ac_cv_func_bind_textdomain_codeset=yes
 
18761
 else
 
18762
-  $as_echo "$as_me: failed program was:" >&5
 
18763
+  echo "$as_me: failed program was:" >&5
 
18764
 sed 's/^/| /' conftest.$ac_ext >&5
 
18765
 
 
18766
        ac_cv_func_bind_textdomain_codeset=no
 
18767
 fi
 
18768
 
 
18769
-rm -rf conftest.dSYM
 
18770
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
18771
       conftest$ac_exeext conftest.$ac_ext
 
18772
 fi
 
18773
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5
 
18774
-$as_echo "$ac_cv_func_bind_textdomain_codeset" >&6; }
 
18775
-if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then
 
18776
+{ echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5
 
18777
+echo "${ECHO_T}$ac_cv_func_bind_textdomain_codeset" >&6; }
 
18778
+if test $ac_cv_func_bind_textdomain_codeset = yes; then
 
18779
   CATOBJEXT=.gmo
 
18780
                DATADIRNAME=share
 
18781
 else
 
18782
@@ -6112,7 +5903,6 @@
 
18783
            esac
 
18784
 fi
 
18785
 
 
18786
-rm -rf conftest.dSYM
 
18787
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
18788
       conftest$ac_exeext conftest.$ac_ext
 
18789
           LIBS="$glib_save_LIBS"
 
18790
@@ -6138,8 +5928,8 @@
 
18791
                   if $XGETTEXT --omit-header /dev/null 2> /dev/null; then
 
18792
         : ;
 
18793
       else
 
18794
-        { $as_echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5
 
18795
-$as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; }
 
18796
+        { echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5
 
18797
+echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6; }
 
18798
         XGETTEXT=":"
 
18799
       fi
 
18800
     fi
 
18801
@@ -6171,8 +5961,8 @@
 
18802
      if test "x$ALL_LINGUAS" = "x"; then
 
18803
        LINGUAS=
 
18804
      else
 
18805
-       { $as_echo "$as_me:$LINENO: checking for catalogs to be installed" >&5
 
18806
-$as_echo_n "checking for catalogs to be installed... " >&6; }
 
18807
+       { echo "$as_me:$LINENO: checking for catalogs to be installed" >&5
 
18808
+echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6; }
 
18809
        NEW_LINGUAS=
 
18810
        for presentlang in $ALL_LINGUAS; do
 
18811
          useit=no
 
18812
@@ -6196,8 +5986,8 @@
 
18813
          fi
 
18814
        done
 
18815
        LINGUAS=$NEW_LINGUAS
 
18816
-       { $as_echo "$as_me:$LINENO: result: $LINGUAS" >&5
 
18817
-$as_echo "$LINGUAS" >&6; }
 
18818
+       { echo "$as_me:$LINENO: result: $LINGUAS" >&5
 
18819
+echo "${ECHO_T}$LINGUAS" >&6; }
 
18820
      fi
 
18821
 
 
18822
           if test -n "$LINGUAS"; then
 
18823
@@ -6229,8 +6019,8 @@
12792
18824
        < $srcdir/po/POTFILES.in > po/POTFILES
12793
18825
 
12794
18826
 
 
18827
-  { $as_echo "$as_me:$LINENO: checking whether NLS is requested" >&5
 
18828
-$as_echo_n "checking whether NLS is requested... " >&6; }
12795
18829
+  { echo "$as_me:$LINENO: checking whether NLS is requested" >&5
12796
18830
+echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6; }
12797
 
+    # Check whether --enable-nls was given.
12798
 
+if test "${enable_nls+set}" = set; then
12799
 
+  enableval=$enable_nls; USE_NLS=$enableval
12800
 
+else
12801
 
+  USE_NLS=yes
12802
 
+fi
12803
 
+
 
18831
     # Check whether --enable-nls was given.
 
18832
 if test "${enable_nls+set}" = set; then
 
18833
   enableval=$enable_nls; USE_NLS=$enableval
 
18834
@@ -6238,16 +6028,16 @@
 
18835
   USE_NLS=yes
 
18836
 fi
 
18837
 
 
18838
-  { $as_echo "$as_me:$LINENO: result: $USE_NLS" >&5
 
18839
-$as_echo "$USE_NLS" >&6; }
12804
18840
+  { echo "$as_me:$LINENO: result: $USE_NLS" >&5
12805
18841
+echo "${ECHO_T}$USE_NLS" >&6; }
12806
 
+
12807
 
+
12808
 
+
12809
 
+
 
18842
 
 
18843
 
 
18844
 
 
18845
 
12810
18846
 case "$am__api_version" in
12811
18847
     1.01234)
12812
 
        { { echo "$as_me:$LINENO: error: Automake 1.5 or newer is required to use intltool" >&5
12813
 
@@ -6326,6 +6347,47 @@
12814
 
 fi
12815
 
 
12816
 
 
12817
 
+# Extract the first word of "gmsgfmt", so it can be a program name with args.
12818
 
+set dummy gmsgfmt; ac_word=$2
12819
 
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
12820
 
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
12821
 
+if test "${ac_cv_path_GMSGFMT+set}" = set; then
12822
 
+  echo $ECHO_N "(cached) $ECHO_C" >&6
12823
 
+else
12824
 
+  case $GMSGFMT in
12825
 
+  [\\/]* | ?:[\\/]*)
12826
 
+  ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
12827
 
+  ;;
12828
 
+  *)
12829
 
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
12830
 
+for as_dir in $PATH
12831
 
+do
12832
 
+  IFS=$as_save_IFS
12833
 
+  test -z "$as_dir" && as_dir=.
12834
 
+  for ac_exec_ext in '' $ac_executable_extensions; do
12835
 
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
12836
 
+    ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
12837
 
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
12838
 
+    break 2
12839
 
+  fi
12840
 
+done
12841
 
+done
12842
 
+IFS=$as_save_IFS
12843
 
+
12844
 
+  test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
12845
 
+  ;;
12846
 
+esac
12847
 
+fi
12848
 
+GMSGFMT=$ac_cv_path_GMSGFMT
12849
 
+if test -n "$GMSGFMT"; then
 
18848
-       { { $as_echo "$as_me:$LINENO: error: Automake 1.5 or newer is required to use intltool" >&5
 
18849
-$as_echo "$as_me: error: Automake 1.5 or newer is required to use intltool" >&2;}
 
18850
+       { { echo "$as_me:$LINENO: error: Automake 1.5 or newer is required to use intltool" >&5
 
18851
+echo "$as_me: error: Automake 1.5 or newer is required to use intltool" >&2;}
 
18852
    { (exit 1); exit 1; }; }
 
18853
     ;;
 
18854
     *)
 
18855
@@ -6255,27 +6045,27 @@
 
18856
 esac
 
18857
 
 
18858
 if test -n "0.40.0"; then
 
18859
-    { $as_echo "$as_me:$LINENO: checking for intltool >= 0.40.0" >&5
 
18860
-$as_echo_n "checking for intltool >= 0.40.0... " >&6; }
 
18861
+    { echo "$as_me:$LINENO: checking for intltool >= 0.40.0" >&5
 
18862
+echo $ECHO_N "checking for intltool >= 0.40.0... $ECHO_C" >&6; }
 
18863
 
 
18864
     INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.40.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
 
18865
     INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3`
 
18866
     INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
 
18867
 
 
18868
-    { $as_echo "$as_me:$LINENO: result: $INTLTOOL_APPLIED_VERSION found" >&5
 
18869
-$as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; }
 
18870
+    { echo "$as_me:$LINENO: result: $INTLTOOL_APPLIED_VERSION found" >&5
 
18871
+echo "${ECHO_T}$INTLTOOL_APPLIED_VERSION found" >&6; }
 
18872
     test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
 
18873
-       { { $as_echo "$as_me:$LINENO: error: Your intltool is too old.  You need intltool 0.40.0 or later." >&5
 
18874
-$as_echo "$as_me: error: Your intltool is too old.  You need intltool 0.40.0 or later." >&2;}
 
18875
+       { { echo "$as_me:$LINENO: error: Your intltool is too old.  You need intltool 0.40.0 or later." >&5
 
18876
+echo "$as_me: error: Your intltool is too old.  You need intltool 0.40.0 or later." >&2;}
 
18877
    { (exit 1); exit 1; }; }
 
18878
 fi
 
18879
 
 
18880
 # Extract the first word of "intltool-update", so it can be a program name with args.
 
18881
 set dummy intltool-update; ac_word=$2
 
18882
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
18883
-$as_echo_n "checking for $ac_word... " >&6; }
 
18884
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
18885
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
18886
 if test "${ac_cv_path_INTLTOOL_UPDATE+set}" = set; then
 
18887
-  $as_echo_n "(cached) " >&6
 
18888
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18889
 else
 
18890
   case $INTLTOOL_UPDATE in
 
18891
   [\\/]* | ?:[\\/]*)
 
18892
@@ -6290,7 +6080,7 @@
 
18893
   for ac_exec_ext in '' $ac_executable_extensions; do
 
18894
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
18895
     ac_cv_path_INTLTOOL_UPDATE="$as_dir/$ac_word$ac_exec_ext"
 
18896
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
18897
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
18898
     break 2
 
18899
   fi
 
18900
 done
 
18901
@@ -6302,20 +6092,20 @@
 
18902
 fi
 
18903
 INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE
 
18904
 if test -n "$INTLTOOL_UPDATE"; then
 
18905
-  { $as_echo "$as_me:$LINENO: result: $INTLTOOL_UPDATE" >&5
 
18906
-$as_echo "$INTLTOOL_UPDATE" >&6; }
 
18907
+  { echo "$as_me:$LINENO: result: $INTLTOOL_UPDATE" >&5
 
18908
+echo "${ECHO_T}$INTLTOOL_UPDATE" >&6; }
 
18909
 else
 
18910
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
18911
-$as_echo "no" >&6; }
 
18912
+  { echo "$as_me:$LINENO: result: no" >&5
 
18913
+echo "${ECHO_T}no" >&6; }
 
18914
 fi
 
18915
 
 
18916
 
 
18917
 # Extract the first word of "intltool-merge", so it can be a program name with args.
 
18918
 set dummy intltool-merge; ac_word=$2
 
18919
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
18920
-$as_echo_n "checking for $ac_word... " >&6; }
 
18921
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
18922
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
18923
 if test "${ac_cv_path_INTLTOOL_MERGE+set}" = set; then
 
18924
-  $as_echo_n "(cached) " >&6
 
18925
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18926
 else
 
18927
   case $INTLTOOL_MERGE in
 
18928
   [\\/]* | ?:[\\/]*)
 
18929
@@ -6330,7 +6120,7 @@
 
18930
   for ac_exec_ext in '' $ac_executable_extensions; do
 
18931
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
18932
     ac_cv_path_INTLTOOL_MERGE="$as_dir/$ac_word$ac_exec_ext"
 
18933
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
18934
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
18935
     break 2
 
18936
   fi
 
18937
 done
 
18938
@@ -6342,20 +6132,20 @@
 
18939
 fi
 
18940
 INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE
 
18941
 if test -n "$INTLTOOL_MERGE"; then
 
18942
-  { $as_echo "$as_me:$LINENO: result: $INTLTOOL_MERGE" >&5
 
18943
-$as_echo "$INTLTOOL_MERGE" >&6; }
 
18944
+  { echo "$as_me:$LINENO: result: $INTLTOOL_MERGE" >&5
 
18945
+echo "${ECHO_T}$INTLTOOL_MERGE" >&6; }
 
18946
 else
 
18947
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
18948
-$as_echo "no" >&6; }
 
18949
+  { echo "$as_me:$LINENO: result: no" >&5
 
18950
+echo "${ECHO_T}no" >&6; }
 
18951
 fi
 
18952
 
 
18953
 
 
18954
 # Extract the first word of "intltool-extract", so it can be a program name with args.
 
18955
 set dummy intltool-extract; ac_word=$2
 
18956
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
18957
-$as_echo_n "checking for $ac_word... " >&6; }
 
18958
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
18959
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
18960
 if test "${ac_cv_path_INTLTOOL_EXTRACT+set}" = set; then
 
18961
-  $as_echo_n "(cached) " >&6
 
18962
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
18963
 else
 
18964
   case $INTLTOOL_EXTRACT in
 
18965
   [\\/]* | ?:[\\/]*)
 
18966
@@ -6370,7 +6160,7 @@
 
18967
   for ac_exec_ext in '' $ac_executable_extensions; do
 
18968
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
18969
     ac_cv_path_INTLTOOL_EXTRACT="$as_dir/$ac_word$ac_exec_ext"
 
18970
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
18971
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
18972
     break 2
 
18973
   fi
 
18974
 done
 
18975
@@ -6382,17 +6172,17 @@
 
18976
 fi
 
18977
 INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT
 
18978
 if test -n "$INTLTOOL_EXTRACT"; then
 
18979
-  { $as_echo "$as_me:$LINENO: result: $INTLTOOL_EXTRACT" >&5
 
18980
-$as_echo "$INTLTOOL_EXTRACT" >&6; }
 
18981
+  { echo "$as_me:$LINENO: result: $INTLTOOL_EXTRACT" >&5
 
18982
+echo "${ECHO_T}$INTLTOOL_EXTRACT" >&6; }
 
18983
 else
 
18984
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
18985
-$as_echo "no" >&6; }
 
18986
+  { echo "$as_me:$LINENO: result: no" >&5
 
18987
+echo "${ECHO_T}no" >&6; }
 
18988
 fi
 
18989
 
 
18990
 
 
18991
 if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then
 
18992
-    { { $as_echo "$as_me:$LINENO: error: The intltool scripts were not found. Please install intltool." >&5
 
18993
-$as_echo "$as_me: error: The intltool scripts were not found. Please install intltool." >&2;}
 
18994
+    { { echo "$as_me:$LINENO: error: The intltool scripts were not found. Please install intltool." >&5
 
18995
+echo "$as_me: error: The intltool scripts were not found. Please install intltool." >&2;}
 
18996
    { (exit 1); exit 1; }; }
 
18997
 fi
 
18998
 
 
18999
@@ -6439,10 +6229,10 @@
 
19000
 # Check the gettext tools to make sure they are GNU
 
19001
 # Extract the first word of "xgettext", so it can be a program name with args.
 
19002
 set dummy xgettext; ac_word=$2
 
19003
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19004
-$as_echo_n "checking for $ac_word... " >&6; }
 
19005
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19006
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
19007
 if test "${ac_cv_path_XGETTEXT+set}" = set; then
 
19008
-  $as_echo_n "(cached) " >&6
 
19009
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19010
 else
 
19011
   case $XGETTEXT in
 
19012
   [\\/]* | ?:[\\/]*)
 
19013
@@ -6457,7 +6247,7 @@
 
19014
   for ac_exec_ext in '' $ac_executable_extensions; do
 
19015
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
19016
     ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext"
 
19017
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19018
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19019
     break 2
 
19020
   fi
 
19021
 done
 
19022
@@ -6469,20 +6259,20 @@
 
19023
 fi
 
19024
 XGETTEXT=$ac_cv_path_XGETTEXT
 
19025
 if test -n "$XGETTEXT"; then
 
19026
-  { $as_echo "$as_me:$LINENO: result: $XGETTEXT" >&5
 
19027
-$as_echo "$XGETTEXT" >&6; }
 
19028
+  { echo "$as_me:$LINENO: result: $XGETTEXT" >&5
 
19029
+echo "${ECHO_T}$XGETTEXT" >&6; }
 
19030
 else
 
19031
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
19032
-$as_echo "no" >&6; }
 
19033
+  { echo "$as_me:$LINENO: result: no" >&5
 
19034
+echo "${ECHO_T}no" >&6; }
 
19035
 fi
 
19036
 
 
19037
 
 
19038
 # Extract the first word of "msgmerge", so it can be a program name with args.
 
19039
 set dummy msgmerge; ac_word=$2
 
19040
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19041
-$as_echo_n "checking for $ac_word... " >&6; }
 
19042
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19043
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
19044
 if test "${ac_cv_path_MSGMERGE+set}" = set; then
 
19045
-  $as_echo_n "(cached) " >&6
 
19046
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19047
 else
 
19048
   case $MSGMERGE in
 
19049
   [\\/]* | ?:[\\/]*)
 
19050
@@ -6497,7 +6287,7 @@
 
19051
   for ac_exec_ext in '' $ac_executable_extensions; do
 
19052
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
19053
     ac_cv_path_MSGMERGE="$as_dir/$ac_word$ac_exec_ext"
 
19054
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19055
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19056
     break 2
 
19057
   fi
 
19058
 done
 
19059
@@ -6509,20 +6299,20 @@
 
19060
 fi
 
19061
 MSGMERGE=$ac_cv_path_MSGMERGE
 
19062
 if test -n "$MSGMERGE"; then
 
19063
-  { $as_echo "$as_me:$LINENO: result: $MSGMERGE" >&5
 
19064
-$as_echo "$MSGMERGE" >&6; }
 
19065
+  { echo "$as_me:$LINENO: result: $MSGMERGE" >&5
 
19066
+echo "${ECHO_T}$MSGMERGE" >&6; }
 
19067
 else
 
19068
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
19069
-$as_echo "no" >&6; }
 
19070
+  { echo "$as_me:$LINENO: result: no" >&5
 
19071
+echo "${ECHO_T}no" >&6; }
 
19072
 fi
 
19073
 
 
19074
 
 
19075
 # Extract the first word of "msgfmt", so it can be a program name with args.
 
19076
 set dummy msgfmt; ac_word=$2
 
19077
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19078
-$as_echo_n "checking for $ac_word... " >&6; }
 
19079
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19080
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
19081
 if test "${ac_cv_path_MSGFMT+set}" = set; then
 
19082
-  $as_echo_n "(cached) " >&6
 
19083
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19084
 else
 
19085
   case $MSGFMT in
 
19086
   [\\/]* | ?:[\\/]*)
 
19087
@@ -6537,7 +6327,7 @@
 
19088
   for ac_exec_ext in '' $ac_executable_extensions; do
 
19089
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
19090
     ac_cv_path_MSGFMT="$as_dir/$ac_word$ac_exec_ext"
 
19091
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19092
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19093
     break 2
 
19094
   fi
 
19095
 done
 
19096
@@ -6549,20 +6339,20 @@
 
19097
 fi
 
19098
 MSGFMT=$ac_cv_path_MSGFMT
 
19099
 if test -n "$MSGFMT"; then
 
19100
-  { $as_echo "$as_me:$LINENO: result: $MSGFMT" >&5
 
19101
-$as_echo "$MSGFMT" >&6; }
 
19102
+  { echo "$as_me:$LINENO: result: $MSGFMT" >&5
 
19103
+echo "${ECHO_T}$MSGFMT" >&6; }
 
19104
 else
 
19105
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
19106
-$as_echo "no" >&6; }
 
19107
+  { echo "$as_me:$LINENO: result: no" >&5
 
19108
+echo "${ECHO_T}no" >&6; }
 
19109
 fi
 
19110
 
 
19111
 
 
19112
 # Extract the first word of "gmsgfmt", so it can be a program name with args.
 
19113
 set dummy gmsgfmt; ac_word=$2
 
19114
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19115
-$as_echo_n "checking for $ac_word... " >&6; }
 
19116
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19117
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
19118
 if test "${ac_cv_path_GMSGFMT+set}" = set; then
 
19119
-  $as_echo_n "(cached) " >&6
 
19120
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19121
 else
 
19122
   case $GMSGFMT in
 
19123
   [\\/]* | ?:[\\/]*)
 
19124
@@ -6577,7 +6367,7 @@
 
19125
   for ac_exec_ext in '' $ac_executable_extensions; do
 
19126
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
19127
     ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
 
19128
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19129
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19130
     break 2
 
19131
   fi
 
19132
 done
 
19133
@@ -6590,34 +6380,34 @@
 
19134
 fi
 
19135
 GMSGFMT=$ac_cv_path_GMSGFMT
 
19136
 if test -n "$GMSGFMT"; then
 
19137
-  { $as_echo "$as_me:$LINENO: result: $GMSGFMT" >&5
 
19138
-$as_echo "$GMSGFMT" >&6; }
12850
19139
+  { echo "$as_me:$LINENO: result: $GMSGFMT" >&5
12851
19140
+echo "${ECHO_T}$GMSGFMT" >&6; }
12852
 
+else
 
19141
 else
 
19142
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
19143
-$as_echo "no" >&6; }
12853
19144
+  { echo "$as_me:$LINENO: result: no" >&5
12854
19145
+echo "${ECHO_T}no" >&6; }
12855
 
+fi
12856
 
+
12857
 
+
 
19146
 fi
 
19147
 
 
19148
 
12858
19149
 if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
12859
 
     { { echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5
12860
 
 echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;}
12861
 
@@ -7357,78 +7419,31 @@
 
19150
-    { { $as_echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5
 
19151
-$as_echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;}
 
19152
+    { { echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5
 
19153
+echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;}
 
19154
    { (exit 1); exit 1; }; }
 
19155
 fi
 
19156
 xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`"
 
19157
 mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`"
 
19158
 mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`"
 
19159
 if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then
 
19160
-    { { $as_echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5
 
19161
-$as_echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;}
 
19162
+    { { echo "$as_me:$LINENO: error: GNU gettext tools not found; required for intltool" >&5
 
19163
+echo "$as_me: error: GNU gettext tools not found; required for intltool" >&2;}
 
19164
    { (exit 1); exit 1; }; }
 
19165
 fi
 
19166
 
 
19167
 # Extract the first word of "perl", so it can be a program name with args.
 
19168
 set dummy perl; ac_word=$2
 
19169
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19170
-$as_echo_n "checking for $ac_word... " >&6; }
 
19171
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19172
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
19173
 if test "${ac_cv_path_INTLTOOL_PERL+set}" = set; then
 
19174
-  $as_echo_n "(cached) " >&6
 
19175
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19176
 else
 
19177
   case $INTLTOOL_PERL in
 
19178
   [\\/]* | ?:[\\/]*)
 
19179
@@ -6632,7 +6422,7 @@
 
19180
   for ac_exec_ext in '' $ac_executable_extensions; do
 
19181
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
19182
     ac_cv_path_INTLTOOL_PERL="$as_dir/$ac_word$ac_exec_ext"
 
19183
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19184
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19185
     break 2
 
19186
   fi
 
19187
 done
 
19188
@@ -6644,33 +6434,33 @@
 
19189
 fi
 
19190
 INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL
 
19191
 if test -n "$INTLTOOL_PERL"; then
 
19192
-  { $as_echo "$as_me:$LINENO: result: $INTLTOOL_PERL" >&5
 
19193
-$as_echo "$INTLTOOL_PERL" >&6; }
 
19194
+  { echo "$as_me:$LINENO: result: $INTLTOOL_PERL" >&5
 
19195
+echo "${ECHO_T}$INTLTOOL_PERL" >&6; }
 
19196
 else
 
19197
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
19198
-$as_echo "no" >&6; }
 
19199
+  { echo "$as_me:$LINENO: result: no" >&5
 
19200
+echo "${ECHO_T}no" >&6; }
 
19201
 fi
 
19202
 
 
19203
 
 
19204
 if test -z "$INTLTOOL_PERL"; then
 
19205
-   { { $as_echo "$as_me:$LINENO: error: perl not found; required for intltool" >&5
 
19206
-$as_echo "$as_me: error: perl not found; required for intltool" >&2;}
 
19207
+   { { echo "$as_me:$LINENO: error: perl not found; required for intltool" >&5
 
19208
+echo "$as_me: error: perl not found; required for intltool" >&2;}
 
19209
    { (exit 1); exit 1; }; }
 
19210
 fi
 
19211
 if test -z "`$INTLTOOL_PERL -v | fgrep '5.' 2> /dev/null`"; then
 
19212
-   { { $as_echo "$as_me:$LINENO: error: perl 5.x required for intltool" >&5
 
19213
-$as_echo "$as_me: error: perl 5.x required for intltool" >&2;}
 
19214
+   { { echo "$as_me:$LINENO: error: perl 5.x required for intltool" >&5
 
19215
+echo "$as_me: error: perl 5.x required for intltool" >&2;}
 
19216
    { (exit 1); exit 1; }; }
 
19217
 fi
 
19218
 if test "x" != "xno-xml"; then
 
19219
-   { $as_echo "$as_me:$LINENO: checking for XML::Parser" >&5
 
19220
-$as_echo_n "checking for XML::Parser... " >&6; }
 
19221
+   { echo "$as_me:$LINENO: checking for XML::Parser" >&5
 
19222
+echo $ECHO_N "checking for XML::Parser... $ECHO_C" >&6; }
 
19223
    if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
 
19224
-       { $as_echo "$as_me:$LINENO: result: ok" >&5
 
19225
-$as_echo "ok" >&6; }
 
19226
+       { echo "$as_me:$LINENO: result: ok" >&5
 
19227
+echo "${ECHO_T}ok" >&6; }
 
19228
    else
 
19229
-       { { $as_echo "$as_me:$LINENO: error: XML::Parser perl module is required for intltool" >&5
 
19230
-$as_echo "$as_me: error: XML::Parser perl module is required for intltool" >&2;}
 
19231
+       { { echo "$as_me:$LINENO: error: XML::Parser perl module is required for intltool" >&5
 
19232
+echo "$as_me: error: XML::Parser perl module is required for intltool" >&2;}
 
19233
    { (exit 1); exit 1; }; }
 
19234
    fi
 
19235
 fi
 
19236
@@ -6703,32 +6493,29 @@
 
19237
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
19238
   *) ac_try_echo=$ac_try;;
 
19239
 esac
 
19240
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
19241
-$as_echo "$ac_try_echo") >&5
 
19242
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
19243
   (eval "$ac_link") 2>conftest.er1
 
19244
   ac_status=$?
 
19245
   grep -v '^ *+' conftest.er1 >conftest.err
 
19246
   rm -f conftest.er1
 
19247
   cat conftest.err >&5
 
19248
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19249
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19250
   (exit $ac_status); } && {
 
19251
         test -z "$ac_c_werror_flag" ||
 
19252
         test ! -s conftest.err
 
19253
-       } && test -s conftest$ac_exeext && {
 
19254
-        test "$cross_compiling" = yes ||
 
19255
-        $as_test_x conftest$ac_exeext
 
19256
-       }; then
 
19257
+       } && test -s conftest$ac_exeext &&
 
19258
+       $as_test_x conftest$ac_exeext; then
 
19259
   DATADIRNAME=share
 
19260
 else
 
19261
-  $as_echo "$as_me: failed program was:" >&5
 
19262
+  echo "$as_me: failed program was:" >&5
 
19263
 sed 's/^/| /' conftest.$ac_ext >&5
 
19264
 
 
19265
        case $host in
 
19266
     *-*-solaris*)
 
19267
-                        { $as_echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5
 
19268
-$as_echo_n "checking for bind_textdomain_codeset... " >&6; }
 
19269
+                        { echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5
 
19270
+echo $ECHO_N "checking for bind_textdomain_codeset... $ECHO_C" >&6; }
 
19271
 if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then
 
19272
-  $as_echo_n "(cached) " >&6
 
19273
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19274
 else
 
19275
   cat >conftest.$ac_ext <<_ACEOF
 
19276
 /* confdefs.h.  */
 
19277
@@ -6781,36 +6568,32 @@
 
19278
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
19279
   *) ac_try_echo=$ac_try;;
 
19280
 esac
 
19281
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
19282
-$as_echo "$ac_try_echo") >&5
 
19283
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
19284
   (eval "$ac_link") 2>conftest.er1
 
19285
   ac_status=$?
 
19286
   grep -v '^ *+' conftest.er1 >conftest.err
 
19287
   rm -f conftest.er1
 
19288
   cat conftest.err >&5
 
19289
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19290
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19291
   (exit $ac_status); } && {
 
19292
         test -z "$ac_c_werror_flag" ||
 
19293
         test ! -s conftest.err
 
19294
-       } && test -s conftest$ac_exeext && {
 
19295
-        test "$cross_compiling" = yes ||
 
19296
-        $as_test_x conftest$ac_exeext
 
19297
-       }; then
 
19298
+       } && test -s conftest$ac_exeext &&
 
19299
+       $as_test_x conftest$ac_exeext; then
 
19300
   ac_cv_func_bind_textdomain_codeset=yes
 
19301
 else
 
19302
-  $as_echo "$as_me: failed program was:" >&5
 
19303
+  echo "$as_me: failed program was:" >&5
 
19304
 sed 's/^/| /' conftest.$ac_ext >&5
 
19305
 
 
19306
        ac_cv_func_bind_textdomain_codeset=no
 
19307
 fi
 
19308
 
 
19309
-rm -rf conftest.dSYM
 
19310
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
19311
       conftest$ac_exeext conftest.$ac_ext
 
19312
 fi
 
19313
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5
 
19314
-$as_echo "$ac_cv_func_bind_textdomain_codeset" >&6; }
 
19315
-if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then
 
19316
+{ echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5
 
19317
+echo "${ECHO_T}$ac_cv_func_bind_textdomain_codeset" >&6; }
 
19318
+if test $ac_cv_func_bind_textdomain_codeset = yes; then
 
19319
   DATADIRNAME=share
 
19320
 else
 
19321
   DATADIRNAME=lib
 
19322
@@ -6823,7 +6606,6 @@
 
19323
     esac
 
19324
 fi
 
19325
 
 
19326
-rm -rf conftest.dSYM
 
19327
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
19328
       conftest$ac_exeext conftest.$ac_ext
 
19329
 fi
 
19330
@@ -6839,10 +6621,10 @@
 
19331
        if test -n "$ac_tool_prefix"; then
 
19332
   # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
 
19333
 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
 
19334
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19335
-$as_echo_n "checking for $ac_word... " >&6; }
 
19336
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19337
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
19338
 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
 
19339
-  $as_echo_n "(cached) " >&6
 
19340
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19341
 else
 
19342
   case $PKG_CONFIG in
 
19343
   [\\/]* | ?:[\\/]*)
 
19344
@@ -6857,7 +6639,7 @@
 
19345
   for ac_exec_ext in '' $ac_executable_extensions; do
 
19346
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
19347
     ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
19348
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19349
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19350
     break 2
 
19351
   fi
 
19352
 done
 
19353
@@ -6869,11 +6651,11 @@
 
19354
 fi
 
19355
 PKG_CONFIG=$ac_cv_path_PKG_CONFIG
 
19356
 if test -n "$PKG_CONFIG"; then
 
19357
-  { $as_echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5
 
19358
-$as_echo "$PKG_CONFIG" >&6; }
 
19359
+  { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5
 
19360
+echo "${ECHO_T}$PKG_CONFIG" >&6; }
 
19361
 else
 
19362
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
19363
-$as_echo "no" >&6; }
 
19364
+  { echo "$as_me:$LINENO: result: no" >&5
 
19365
+echo "${ECHO_T}no" >&6; }
 
19366
 fi
 
19367
 
 
19368
 
 
19369
@@ -6882,10 +6664,10 @@
 
19370
   ac_pt_PKG_CONFIG=$PKG_CONFIG
 
19371
   # Extract the first word of "pkg-config", so it can be a program name with args.
 
19372
 set dummy pkg-config; ac_word=$2
 
19373
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19374
-$as_echo_n "checking for $ac_word... " >&6; }
 
19375
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19376
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
19377
 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then
 
19378
-  $as_echo_n "(cached) " >&6
 
19379
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19380
 else
 
19381
   case $ac_pt_PKG_CONFIG in
 
19382
   [\\/]* | ?:[\\/]*)
 
19383
@@ -6900,7 +6682,7 @@
 
19384
   for ac_exec_ext in '' $ac_executable_extensions; do
 
19385
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
19386
     ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
19387
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19388
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19389
     break 2
 
19390
   fi
 
19391
 done
 
19392
@@ -6912,11 +6694,11 @@
 
19393
 fi
 
19394
 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
 
19395
 if test -n "$ac_pt_PKG_CONFIG"; then
 
19396
-  { $as_echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5
 
19397
-$as_echo "$ac_pt_PKG_CONFIG" >&6; }
 
19398
+  { echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5
 
19399
+echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6; }
 
19400
 else
 
19401
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
19402
-$as_echo "no" >&6; }
 
19403
+  { echo "$as_me:$LINENO: result: no" >&5
 
19404
+echo "${ECHO_T}no" >&6; }
 
19405
 fi
 
19406
 
 
19407
   if test "x$ac_pt_PKG_CONFIG" = x; then
 
19408
@@ -6924,8 +6706,12 @@
 
19409
   else
 
19410
     case $cross_compiling:$ac_tool_warned in
 
19411
 yes:)
 
19412
-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
 
19413
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
19414
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
 
19415
+whose name does not start with the host triplet.  If you think this
 
19416
+configuration is useful to you, please write to autoconf@gnu.org." >&5
 
19417
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
 
19418
+whose name does not start with the host triplet.  If you think this
 
19419
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
19420
 ac_tool_warned=yes ;;
 
19421
 esac
 
19422
     PKG_CONFIG=$ac_pt_PKG_CONFIG
 
19423
@@ -6937,14 +6723,14 @@
 
19424
 fi
 
19425
 if test -n "$PKG_CONFIG"; then
 
19426
        _pkg_min_version=0.9.0
 
19427
-       { $as_echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5
 
19428
-$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
 
19429
+       { echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5
 
19430
+echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6; }
 
19431
        if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
 
19432
-               { $as_echo "$as_me:$LINENO: result: yes" >&5
 
19433
-$as_echo "yes" >&6; }
 
19434
+               { echo "$as_me:$LINENO: result: yes" >&5
 
19435
+echo "${ECHO_T}yes" >&6; }
 
19436
        else
 
19437
-               { $as_echo "$as_me:$LINENO: result: no" >&5
 
19438
-$as_echo "no" >&6; }
 
19439
+               { echo "$as_me:$LINENO: result: no" >&5
 
19440
+echo "${ECHO_T}no" >&6; }
 
19441
                PKG_CONFIG=""
 
19442
        fi
 
19443
 
 
19444
@@ -6953,10 +6739,10 @@
 
19445
 gdu_cv_version_required=0.3.2
 
19446
 
 
19447
 if test -n "$PKG_CONFIG" && \
 
19448
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gnome-doc-utils >= \$gdu_cv_version_required\"") >&5
 
19449
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gnome-doc-utils >= \$gdu_cv_version_required\"") >&5
 
19450
   ($PKG_CONFIG --exists --print-errors "gnome-doc-utils >= $gdu_cv_version_required") 2>&5
 
19451
   ac_status=$?
 
19452
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19453
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19454
   (exit $ac_status); }; then
 
19455
   gdu_cv_have_gdu=yes
 
19456
 else
 
19457
@@ -6966,8 +6752,8 @@
 
19458
 if test "$gdu_cv_have_gdu" = "yes"; then
 
19459
        :
 
19460
 else
 
19461
-       { { $as_echo "$as_me:$LINENO: error: gnome-doc-utils >= $gdu_cv_version_required not found" >&5
 
19462
-$as_echo "$as_me: error: gnome-doc-utils >= $gdu_cv_version_required not found" >&2;}
 
19463
+       { { echo "$as_me:$LINENO: error: gnome-doc-utils >= $gdu_cv_version_required not found" >&5
 
19464
+echo "$as_me: error: gnome-doc-utils >= $gdu_cv_version_required not found" >&2;}
 
19465
    { (exit 1); exit 1; }; }
 
19466
 fi
 
19467
 
 
19468
@@ -7049,10 +6835,10 @@
 
19469
   do
 
19470
     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
 
19471
 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 
19472
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19473
-$as_echo_n "checking for $ac_word... " >&6; }
 
19474
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19475
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
19476
 if test "${ac_cv_prog_CXX+set}" = set; then
 
19477
-  $as_echo_n "(cached) " >&6
 
19478
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19479
 else
 
19480
   if test -n "$CXX"; then
 
19481
   ac_cv_prog_CXX="$CXX" # Let the user override the test.
 
19482
@@ -7065,7 +6851,7 @@
 
19483
   for ac_exec_ext in '' $ac_executable_extensions; do
 
19484
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
19485
     ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
 
19486
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19487
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19488
     break 2
 
19489
   fi
 
19490
 done
 
19491
@@ -7076,11 +6862,11 @@
 
19492
 fi
 
19493
 CXX=$ac_cv_prog_CXX
 
19494
 if test -n "$CXX"; then
 
19495
-  { $as_echo "$as_me:$LINENO: result: $CXX" >&5
 
19496
-$as_echo "$CXX" >&6; }
 
19497
+  { echo "$as_me:$LINENO: result: $CXX" >&5
 
19498
+echo "${ECHO_T}$CXX" >&6; }
 
19499
 else
 
19500
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
19501
-$as_echo "no" >&6; }
 
19502
+  { echo "$as_me:$LINENO: result: no" >&5
 
19503
+echo "${ECHO_T}no" >&6; }
 
19504
 fi
 
19505
 
 
19506
 
 
19507
@@ -7093,10 +6879,10 @@
 
19508
 do
 
19509
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 
19510
 set dummy $ac_prog; ac_word=$2
 
19511
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19512
-$as_echo_n "checking for $ac_word... " >&6; }
 
19513
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
19514
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
19515
 if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then
 
19516
-  $as_echo_n "(cached) " >&6
 
19517
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19518
 else
 
19519
   if test -n "$ac_ct_CXX"; then
 
19520
   ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test.
 
19521
@@ -7109,7 +6895,7 @@
 
19522
   for ac_exec_ext in '' $ac_executable_extensions; do
 
19523
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
19524
     ac_cv_prog_ac_ct_CXX="$ac_prog"
 
19525
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19526
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
19527
     break 2
 
19528
   fi
 
19529
 done
 
19530
@@ -7120,11 +6906,11 @@
 
19531
 fi
 
19532
 ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
 
19533
 if test -n "$ac_ct_CXX"; then
 
19534
-  { $as_echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5
 
19535
-$as_echo "$ac_ct_CXX" >&6; }
 
19536
+  { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5
 
19537
+echo "${ECHO_T}$ac_ct_CXX" >&6; }
 
19538
 else
 
19539
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
19540
-$as_echo "no" >&6; }
 
19541
+  { echo "$as_me:$LINENO: result: no" >&5
 
19542
+echo "${ECHO_T}no" >&6; }
 
19543
 fi
 
19544
 
 
19545
 
 
19546
@@ -7136,8 +6922,12 @@
 
19547
   else
 
19548
     case $cross_compiling:$ac_tool_warned in
 
19549
 yes:)
 
19550
-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
 
19551
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
19552
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
 
19553
+whose name does not start with the host triplet.  If you think this
 
19554
+configuration is useful to you, please write to autoconf@gnu.org." >&5
 
19555
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
 
19556
+whose name does not start with the host triplet.  If you think this
 
19557
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
19558
 ac_tool_warned=yes ;;
 
19559
 esac
 
19560
     CXX=$ac_ct_CXX
 
19561
@@ -7147,47 +6937,43 @@
 
19562
   fi
 
19563
 fi
 
19564
 # Provide some information about the compiler.
 
19565
-$as_echo "$as_me:$LINENO: checking for C++ compiler version" >&5
 
19566
-set X $ac_compile
 
19567
-ac_compiler=$2
 
19568
+echo "$as_me:$LINENO: checking for C++ compiler version" >&5
 
19569
+ac_compiler=`set X $ac_compile; echo $2`
 
19570
 { (ac_try="$ac_compiler --version >&5"
 
19571
 case "(($ac_try" in
 
19572
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
19573
   *) ac_try_echo=$ac_try;;
 
19574
 esac
 
19575
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
19576
-$as_echo "$ac_try_echo") >&5
 
19577
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
19578
   (eval "$ac_compiler --version >&5") 2>&5
 
19579
   ac_status=$?
 
19580
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19581
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19582
   (exit $ac_status); }
 
19583
 { (ac_try="$ac_compiler -v >&5"
 
19584
 case "(($ac_try" in
 
19585
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
19586
   *) ac_try_echo=$ac_try;;
 
19587
 esac
 
19588
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
19589
-$as_echo "$ac_try_echo") >&5
 
19590
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
19591
   (eval "$ac_compiler -v >&5") 2>&5
 
19592
   ac_status=$?
 
19593
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19594
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19595
   (exit $ac_status); }
 
19596
 { (ac_try="$ac_compiler -V >&5"
 
19597
 case "(($ac_try" in
 
19598
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
19599
   *) ac_try_echo=$ac_try;;
 
19600
 esac
 
19601
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
19602
-$as_echo "$ac_try_echo") >&5
 
19603
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
19604
   (eval "$ac_compiler -V >&5") 2>&5
 
19605
   ac_status=$?
 
19606
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19607
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19608
   (exit $ac_status); }
 
19609
 
 
19610
-{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5
 
19611
-$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }
 
19612
+{ echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5
 
19613
+echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; }
 
19614
 if test "${ac_cv_cxx_compiler_gnu+set}" = set; then
 
19615
-  $as_echo_n "(cached) " >&6
 
19616
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19617
 else
 
19618
   cat >conftest.$ac_ext <<_ACEOF
 
19619
 /* confdefs.h.  */
 
19620
@@ -7213,21 +6999,20 @@
 
19621
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
19622
   *) ac_try_echo=$ac_try;;
 
19623
 esac
 
19624
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
19625
-$as_echo "$ac_try_echo") >&5
 
19626
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
19627
   (eval "$ac_compile") 2>conftest.er1
 
19628
   ac_status=$?
 
19629
   grep -v '^ *+' conftest.er1 >conftest.err
 
19630
   rm -f conftest.er1
 
19631
   cat conftest.err >&5
 
19632
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19633
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19634
   (exit $ac_status); } && {
 
19635
         test -z "$ac_cxx_werror_flag" ||
 
19636
         test ! -s conftest.err
 
19637
        } && test -s conftest.$ac_objext; then
 
19638
   ac_compiler_gnu=yes
 
19639
 else
 
19640
-  $as_echo "$as_me: failed program was:" >&5
 
19641
+  echo "$as_me: failed program was:" >&5
 
19642
 sed 's/^/| /' conftest.$ac_ext >&5
 
19643
 
 
19644
        ac_compiler_gnu=no
 
19645
@@ -7237,19 +7022,15 @@
 
19646
 ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
 
19647
 
 
19648
 fi
 
19649
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5
 
19650
-$as_echo "$ac_cv_cxx_compiler_gnu" >&6; }
 
19651
-if test $ac_compiler_gnu = yes; then
 
19652
-  GXX=yes
 
19653
-else
 
19654
-  GXX=
 
19655
-fi
 
19656
+{ echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5
 
19657
+echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; }
 
19658
+GXX=`test $ac_compiler_gnu = yes && echo yes`
 
19659
 ac_test_CXXFLAGS=${CXXFLAGS+set}
 
19660
 ac_save_CXXFLAGS=$CXXFLAGS
 
19661
-{ $as_echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5
 
19662
-$as_echo_n "checking whether $CXX accepts -g... " >&6; }
 
19663
+{ echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5
 
19664
+echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; }
 
19665
 if test "${ac_cv_prog_cxx_g+set}" = set; then
 
19666
-  $as_echo_n "(cached) " >&6
 
19667
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19668
 else
 
19669
   ac_save_cxx_werror_flag=$ac_cxx_werror_flag
 
19670
    ac_cxx_werror_flag=yes
 
19671
@@ -7276,21 +7057,20 @@
 
19672
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
19673
   *) ac_try_echo=$ac_try;;
 
19674
 esac
 
19675
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
19676
-$as_echo "$ac_try_echo") >&5
 
19677
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
19678
   (eval "$ac_compile") 2>conftest.er1
 
19679
   ac_status=$?
 
19680
   grep -v '^ *+' conftest.er1 >conftest.err
 
19681
   rm -f conftest.er1
 
19682
   cat conftest.err >&5
 
19683
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19684
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19685
   (exit $ac_status); } && {
 
19686
         test -z "$ac_cxx_werror_flag" ||
 
19687
         test ! -s conftest.err
 
19688
        } && test -s conftest.$ac_objext; then
 
19689
   ac_cv_prog_cxx_g=yes
 
19690
 else
 
19691
-  $as_echo "$as_me: failed program was:" >&5
 
19692
+  echo "$as_me: failed program was:" >&5
 
19693
 sed 's/^/| /' conftest.$ac_ext >&5
 
19694
 
 
19695
        CXXFLAGS=""
 
19696
@@ -7315,21 +7095,20 @@
 
19697
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
19698
   *) ac_try_echo=$ac_try;;
 
19699
 esac
 
19700
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
19701
-$as_echo "$ac_try_echo") >&5
 
19702
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
19703
   (eval "$ac_compile") 2>conftest.er1
 
19704
   ac_status=$?
 
19705
   grep -v '^ *+' conftest.er1 >conftest.err
 
19706
   rm -f conftest.er1
 
19707
   cat conftest.err >&5
 
19708
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19709
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19710
   (exit $ac_status); } && {
 
19711
         test -z "$ac_cxx_werror_flag" ||
 
19712
         test ! -s conftest.err
 
19713
        } && test -s conftest.$ac_objext; then
 
19714
   :
 
19715
 else
 
19716
-  $as_echo "$as_me: failed program was:" >&5
 
19717
+  echo "$as_me: failed program was:" >&5
 
19718
 sed 's/^/| /' conftest.$ac_ext >&5
 
19719
 
 
19720
        ac_cxx_werror_flag=$ac_save_cxx_werror_flag
 
19721
@@ -7355,21 +7134,20 @@
 
19722
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
19723
   *) ac_try_echo=$ac_try;;
 
19724
 esac
 
19725
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
19726
-$as_echo "$ac_try_echo") >&5
 
19727
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
19728
   (eval "$ac_compile") 2>conftest.er1
 
19729
   ac_status=$?
 
19730
   grep -v '^ *+' conftest.er1 >conftest.err
 
19731
   rm -f conftest.er1
 
19732
   cat conftest.err >&5
 
19733
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19734
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19735
   (exit $ac_status); } && {
 
19736
         test -z "$ac_cxx_werror_flag" ||
 
19737
         test ! -s conftest.err
 
19738
        } && test -s conftest.$ac_objext; then
 
19739
   ac_cv_prog_cxx_g=yes
 
19740
 else
 
19741
-  $as_echo "$as_me: failed program was:" >&5
 
19742
+  echo "$as_me: failed program was:" >&5
 
19743
 sed 's/^/| /' conftest.$ac_ext >&5
 
19744
 
 
19745
 
 
19746
@@ -7384,8 +7162,8 @@
 
19747
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
19748
    ac_cxx_werror_flag=$ac_save_cxx_werror_flag
 
19749
 fi
 
19750
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5
 
19751
-$as_echo "$ac_cv_prog_cxx_g" >&6; }
 
19752
+{ echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5
 
19753
+echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; }
 
19754
 if test "$ac_test_CXXFLAGS" = set; then
 
19755
   CXXFLAGS=$ac_save_CXXFLAGS
 
19756
 elif test $ac_cv_prog_cxx_g = yes; then
 
19757
@@ -7409,10 +7187,10 @@
 
19758
 
 
19759
 depcc="$CXX"  am_compiler_list=
 
19760
 
 
19761
-{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
 
19762
-$as_echo_n "checking dependency style of $depcc... " >&6; }
 
19763
+{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
 
19764
+echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; }
 
19765
 if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then
 
19766
-  $as_echo_n "(cached) " >&6
 
19767
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19768
 else
 
19769
   if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
 
19770
   # We make a subdir and do the tests there.  Otherwise we can end up
 
19771
@@ -7500,8 +7278,8 @@
 
19772
 fi
 
19773
 
 
19774
 fi
 
19775
-{ $as_echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5
 
19776
-$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; }
 
19777
+{ echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5
 
19778
+echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; }
 
19779
 CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type
 
19780
 
 
19781
  if
 
19782
@@ -7516,16 +7294,16 @@
 
19783
 
 
19784
 
 
19785
 if test "x$CC" != xcc; then
 
19786
-  { $as_echo "$as_me:$LINENO: checking whether $CC and cc understand -c and -o together" >&5
 
19787
-$as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; }
 
19788
+  { echo "$as_me:$LINENO: checking whether $CC and cc understand -c and -o together" >&5
 
19789
+echo $ECHO_N "checking whether $CC and cc understand -c and -o together... $ECHO_C" >&6; }
 
19790
 else
 
19791
-  { $as_echo "$as_me:$LINENO: checking whether cc understands -c and -o together" >&5
 
19792
-$as_echo_n "checking whether cc understands -c and -o together... " >&6; }
 
19793
+  { echo "$as_me:$LINENO: checking whether cc understands -c and -o together" >&5
 
19794
+echo $ECHO_N "checking whether cc understands -c and -o together... $ECHO_C" >&6; }
 
19795
 fi
 
19796
-set dummy $CC; ac_cc=`$as_echo "$2" |
 
19797
+set dummy $CC; ac_cc=`echo $2 |
 
19798
                      sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
 
19799
 if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then
 
19800
-  $as_echo_n "(cached) " >&6
 
19801
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19802
 else
 
19803
   cat >conftest.$ac_ext <<_ACEOF
 
19804
 /* confdefs.h.  */
 
19805
@@ -7551,21 +7329,19 @@
 
19806
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
19807
   *) ac_try_echo=$ac_try;;
 
19808
 esac
 
19809
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
19810
-$as_echo "$ac_try_echo") >&5
 
19811
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
19812
   (eval "$ac_try") 2>&5
 
19813
   ac_status=$?
 
19814
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19815
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19816
   (exit $ac_status); } &&
 
19817
    test -f conftest2.$ac_objext && { (case "(($ac_try" in
 
19818
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
19819
   *) ac_try_echo=$ac_try;;
 
19820
 esac
 
19821
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
19822
-$as_echo "$ac_try_echo") >&5
 
19823
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
19824
   (eval "$ac_try") 2>&5
 
19825
   ac_status=$?
 
19826
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19827
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19828
   (exit $ac_status); };
 
19829
 then
 
19830
   eval ac_cv_prog_cc_${ac_cc}_c_o=yes
 
19831
@@ -7576,11 +7352,10 @@
 
19832
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
19833
   *) ac_try_echo=$ac_try;;
 
19834
 esac
 
19835
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
19836
-$as_echo "$ac_try_echo") >&5
 
19837
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
19838
   (eval "$ac_try") 2>&5
 
19839
   ac_status=$?
 
19840
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19841
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19842
   (exit $ac_status); }; }; then
 
19843
       ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
 
19844
       rm -f conftest2.*
 
19845
@@ -7588,21 +7363,19 @@
 
19846
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
19847
   *) ac_try_echo=$ac_try;;
 
19848
 esac
 
19849
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
19850
-$as_echo "$ac_try_echo") >&5
 
19851
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
19852
   (eval "$ac_try") 2>&5
 
19853
   ac_status=$?
 
19854
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19855
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19856
   (exit $ac_status); } &&
 
19857
         test -f conftest2.$ac_objext && { (case "(($ac_try" in
 
19858
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
19859
   *) ac_try_echo=$ac_try;;
 
19860
 esac
 
19861
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
19862
-$as_echo "$ac_try_echo") >&5
 
19863
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
19864
   (eval "$ac_try") 2>&5
 
19865
   ac_status=$?
 
19866
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19867
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
19868
   (exit $ac_status); };
 
19869
       then
 
19870
        # cc works too.
 
19871
@@ -7620,11 +7393,11 @@
 
19872
 
 
19873
 fi
 
19874
 if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then
 
19875
-  { $as_echo "$as_me:$LINENO: result: yes" >&5
 
19876
-$as_echo "yes" >&6; }
 
19877
+  { echo "$as_me:$LINENO: result: yes" >&5
 
19878
+echo "${ECHO_T}yes" >&6; }
 
19879
 else
 
19880
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
19881
-$as_echo "no" >&6; }
 
19882
+  { echo "$as_me:$LINENO: result: no" >&5
 
19883
+echo "${ECHO_T}no" >&6; }
 
19884
 
 
19885
 cat >>confdefs.h <<\_ACEOF
 
19886
 #define NO_MINUS_C_MINUS_O 1
 
19887
@@ -7646,108 +7419,61 @@
12862
19888
 fi
12863
19889
 
12864
19890
 
12889
19915
+    { echo "$as_me:$LINENO: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5
12890
19916
+echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;;
12891
19917
+esac
12892
 
+
12893
 
+
12894
 
+
12895
 
+macro_version='2.2.4'
12896
 
+macro_revision='1.2976'
12897
19918
 
12898
19919
 
12899
19920
-# Check whether --enable-static was given.
12919
19940
-  enable_static=yes
12920
19941
-fi
12921
19942
 
 
19943
+macro_version='2.2.4'
 
19944
+macro_revision='1.2976'
12922
19945
 
12923
19946
-# Check whether --enable-fast-install was given.
12924
19947
-if test "${enable_fast_install+set}" = set; then
12944
19967
-fi
12945
19968
 
12946
19969
 
 
19970
-# Make sure we can run config.sub.
 
19971
+
 
19972
+
 
19973
+
12947
19974
+
12948
19975
+
12949
19976
+
12953
19980
+
12954
19981
+ltmain="$ac_aux_dir/ltmain.sh"
12955
19982
+
12956
 
 # Make sure we can run config.sub.
 
19983
+# Make sure we can run config.sub.
12957
19984
 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
12958
 
   { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5
12959
 
@@ -7514,62 +7529,202 @@
12960
 
 
12961
 
 { echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5
12962
 
 echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6; }
 
19985
-  { { $as_echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5
 
19986
-$as_echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;}
 
19987
+  { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5
 
19988
+echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;}
 
19989
    { (exit 1); exit 1; }; }
 
19990
 
 
19991
-{ $as_echo "$as_me:$LINENO: checking build system type" >&5
 
19992
-$as_echo_n "checking build system type... " >&6; }
 
19993
+{ echo "$as_me:$LINENO: checking build system type" >&5
 
19994
+echo $ECHO_N "checking build system type... $ECHO_C" >&6; }
 
19995
 if test "${ac_cv_build+set}" = set; then
 
19996
-  $as_echo_n "(cached) " >&6
 
19997
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
19998
 else
 
19999
   ac_build_alias=$build_alias
 
20000
 test "x$ac_build_alias" = x &&
 
20001
   ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
 
20002
 test "x$ac_build_alias" = x &&
 
20003
-  { { $as_echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
 
20004
-$as_echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
 
20005
+  { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
 
20006
+echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
 
20007
    { (exit 1); exit 1; }; }
 
20008
 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
 
20009
-  { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5
 
20010
-$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;}
 
20011
+  { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5
 
20012
+echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;}
 
20013
    { (exit 1); exit 1; }; }
 
20014
 
 
20015
 fi
 
20016
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_build" >&5
 
20017
-$as_echo "$ac_cv_build" >&6; }
 
20018
+{ echo "$as_me:$LINENO: result: $ac_cv_build" >&5
 
20019
+echo "${ECHO_T}$ac_cv_build" >&6; }
 
20020
 case $ac_cv_build in
 
20021
 *-*-*) ;;
 
20022
-*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical build" >&5
 
20023
-$as_echo "$as_me: error: invalid value of canonical build" >&2;}
 
20024
+*) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5
 
20025
+echo "$as_me: error: invalid value of canonical build" >&2;}
 
20026
    { (exit 1); exit 1; }; };;
 
20027
 esac
 
20028
 build=$ac_cv_build
 
20029
@@ -7764,27 +7490,27 @@
 
20030
 case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
 
20031
 
 
20032
 
 
20033
-{ $as_echo "$as_me:$LINENO: checking host system type" >&5
 
20034
-$as_echo_n "checking host system type... " >&6; }
 
20035
+{ echo "$as_me:$LINENO: checking host system type" >&5
 
20036
+echo $ECHO_N "checking host system type... $ECHO_C" >&6; }
 
20037
 if test "${ac_cv_host+set}" = set; then
 
20038
-  $as_echo_n "(cached) " >&6
 
20039
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
20040
 else
 
20041
   if test "x$host_alias" = x; then
 
20042
   ac_cv_host=$ac_cv_build
 
20043
 else
 
20044
   ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
 
20045
-    { { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5
 
20046
-$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;}
 
20047
+    { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5
 
20048
+echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;}
 
20049
    { (exit 1); exit 1; }; }
 
20050
 fi
 
20051
 
 
20052
 fi
 
20053
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_host" >&5
 
20054
-$as_echo "$ac_cv_host" >&6; }
 
20055
+{ echo "$as_me:$LINENO: result: $ac_cv_host" >&5
 
20056
+echo "${ECHO_T}$ac_cv_host" >&6; }
 
20057
 case $ac_cv_host in
 
20058
 *-*-*) ;;
 
20059
-*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical host" >&5
 
20060
-$as_echo "$as_me: error: invalid value of canonical host" >&2;}
 
20061
+*) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5
 
20062
+echo "$as_me: error: invalid value of canonical host" >&2;}
 
20063
    { (exit 1); exit 1; }; };;
 
20064
 esac
 
20065
 host=$ac_cv_host
 
20066
@@ -7801,64 +7527,204 @@
 
20067
 case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
 
20068
 
 
20069
 
 
20070
-{ $as_echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5
 
20071
-$as_echo_n "checking for a sed that does not truncate output... " >&6; }
12963
20072
-if test "${lt_cv_path_SED+set}" = set; then
 
20073
-  $as_echo_n "(cached) " >&6
 
20074
+{ echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5
 
20075
+echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6; }
12964
20076
+if test "${ac_cv_path_SED+set}" = set; then
12965
20077
+  echo $ECHO_N "(cached) $ECHO_C" >&6
12966
20078
+else
12974
20086
+if test -z "$SED"; then
12975
20087
+set dummy sed gsed; ac_prog_name=$2
12976
20088
+if test "${ac_cv_path_SED+set}" = set; then
12977
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
20089
+  echo $ECHO_N "(cached) $ECHO_C" >&6
12978
20090
 else
12979
20091
-  # Loop through the user's path and test for sed and gsed.
12980
20092
-# Then use that list of sed's as ones to test for truncation.
12986
20098
   IFS=$as_save_IFS
12987
20099
   test -z "$as_dir" && as_dir=.
12988
20100
-  for lt_ac_prog in sed gsed; do
 
20101
-    for ac_exec_ext in '' $ac_executable_extensions; do
 
20102
-      if { test -f "$as_dir/$lt_ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$lt_ac_prog$ac_exec_ext"; }; then
 
20103
-        lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
 
20104
-      fi
 
20105
-    done
12989
20106
+  for ac_prog in sed gsed; do
12990
 
     for ac_exec_ext in '' $ac_executable_extensions; do
12991
 
-      if { test -f "$as_dir/$lt_ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$lt_ac_prog$ac_exec_ext"; }; then
12992
 
-        lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
 
20107
+  for ac_exec_ext in '' $ac_executable_extensions; do
12993
20108
+    ac_path_SED="$as_dir/$ac_prog$ac_exec_ext"
12994
20109
+    { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue
12995
20110
+    # Check for GNU ac_path_SED and select it if it is found.
13013
20128
+      # Best one so far, save it but keep looking for a better one
13014
20129
+      ac_cv_path_SED="$ac_path_SED"
13015
20130
+      ac_path_SED_max=$ac_count
13016
 
       fi
 
20131
+    fi
13017
20132
+    # 10*(2^10) chars as input seems more than enough
13018
20133
+    test $ac_count -gt 10 && break
13019
 
     done
 
20134
+  done
13020
20135
+  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
13021
20136
+esac
13022
20137
+
13190
20305
 
13191
20306
-SED=$lt_cv_path_SED
13192
20307
 
13193
 
-{ echo "$as_me:$LINENO: result: $SED" >&5
13194
 
-echo "${ECHO_T}$SED" >&6; }
 
20308
-{ $as_echo "$as_me:$LINENO: result: $SED" >&5
 
20309
-$as_echo "$SED" >&6; }
13195
20310
 
13196
20311
 
13197
20312
 # Check whether --with-gnu-ld was given.
13198
 
@@ -7596,9 +7751,9 @@
 
20313
@@ -7871,8 +7737,8 @@
 
20314
 ac_prog=ld
 
20315
 if test "$GCC" = yes; then
 
20316
   # Check if gcc -print-prog-name=ld gives a path.
 
20317
-  { $as_echo "$as_me:$LINENO: checking for ld used by $CC" >&5
 
20318
-$as_echo_n "checking for ld used by $CC... " >&6; }
 
20319
+  { echo "$as_me:$LINENO: checking for ld used by $CC" >&5
 
20320
+echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; }
 
20321
   case $host in
 
20322
   *-*-mingw*)
 
20323
     # gcc leaves a trailing carriage return which upsets mingw
 
20324
@@ -7885,9 +7751,9 @@
13199
20325
     [\\/]* | ?:[\\/]*)
13200
20326
       re_direlt='/[^/][^/]*/\.\./'
13201
20327
       # Canonicalize the pathname of ld
13208
20334
       done
13209
20335
       test -z "$LD" && LD="$ac_prog"
13210
20336
       ;;
13211
 
@@ -7678,33 +7833,15 @@
 
20337
@@ -7901,14 +7767,14 @@
 
20338
     ;;
 
20339
   esac
 
20340
 elif test "$with_gnu_ld" = yes; then
 
20341
-  { $as_echo "$as_me:$LINENO: checking for GNU ld" >&5
 
20342
-$as_echo_n "checking for GNU ld... " >&6; }
 
20343
+  { echo "$as_me:$LINENO: checking for GNU ld" >&5
 
20344
+echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; }
 
20345
 else
 
20346
-  { $as_echo "$as_me:$LINENO: checking for non-GNU ld" >&5
 
20347
-$as_echo_n "checking for non-GNU ld... " >&6; }
 
20348
+  { echo "$as_me:$LINENO: checking for non-GNU ld" >&5
 
20349
+echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; }
 
20350
 fi
 
20351
 if test "${lt_cv_path_LD+set}" = set; then
 
20352
-  $as_echo_n "(cached) " >&6
 
20353
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
20354
 else
 
20355
   if test -z "$LD"; then
 
20356
   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 
20357
@@ -7938,19 +7804,19 @@
 
20358
 
 
20359
 LD="$lt_cv_path_LD"
 
20360
 if test -n "$LD"; then
 
20361
-  { $as_echo "$as_me:$LINENO: result: $LD" >&5
 
20362
-$as_echo "$LD" >&6; }
 
20363
+  { echo "$as_me:$LINENO: result: $LD" >&5
 
20364
+echo "${ECHO_T}$LD" >&6; }
 
20365
 else
 
20366
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
20367
-$as_echo "no" >&6; }
 
20368
+  { echo "$as_me:$LINENO: result: no" >&5
 
20369
+echo "${ECHO_T}no" >&6; }
 
20370
 fi
 
20371
-test -z "$LD" && { { $as_echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
 
20372
-$as_echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
 
20373
+test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
 
20374
+echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
 
20375
    { (exit 1); exit 1; }; }
 
20376
-{ $as_echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
 
20377
-$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
 
20378
+{ echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
 
20379
+echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; }
 
20380
 if test "${lt_cv_prog_gnu_ld+set}" = set; then
 
20381
-  $as_echo_n "(cached) " >&6
 
20382
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
20383
 else
 
20384
   # I'd rather use --version here, but apparently some GNU lds only accept -v.
 
20385
 case `$LD -v 2>&1 </dev/null` in
 
20386
@@ -7962,40 +7828,22 @@
 
20387
   ;;
 
20388
 esac
 
20389
 fi
 
20390
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5
 
20391
-$as_echo "$lt_cv_prog_gnu_ld" >&6; }
 
20392
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5
 
20393
+echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; }
13212
20394
 with_gnu_ld=$lt_cv_prog_gnu_ld
13213
20395
 
13214
20396
 
13215
 
-{ echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5
13216
 
-echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6; }
 
20397
-{ $as_echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5
 
20398
-$as_echo_n "checking for $LD option to reload object files... " >&6; }
13217
20399
-if test "${lt_cv_ld_reload_flag+set}" = set; then
13218
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
20400
-  $as_echo_n "(cached) " >&6
13219
20401
-else
13220
20402
-  lt_cv_ld_reload_flag='-r'
13221
20403
-fi
13222
 
-{ echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5
13223
 
-echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6; }
 
20404
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5
 
20405
-$as_echo "$lt_cv_ld_reload_flag" >&6; }
13224
20406
-reload_flag=$lt_cv_ld_reload_flag
13225
20407
-case $reload_flag in
13226
20408
-"" | " "*) ;;
13237
20419
-    ;;
13238
20420
-esac
13239
20421
 
13240
 
-{ echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5
13241
 
-echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6; }
 
20422
-{ $as_echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5
 
20423
-$as_echo_n "checking for BSD-compatible nm... " >&6; }
13242
20424
+
13243
20425
+
13244
20426
+
13248
20430
+{ echo "$as_me:$LINENO: checking for BSD- or MS-compatible name lister (nm)" >&5
13249
20431
+echo $ECHO_N "checking for BSD- or MS-compatible name lister (nm)... $ECHO_C" >&6; }
13250
20432
 if test "${lt_cv_path_NM+set}" = set; then
13251
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
20433
-  $as_echo_n "(cached) " >&6
 
20434
+  echo $ECHO_N "(cached) $ECHO_C" >&6
13252
20435
 else
13253
 
@@ -7749,12 +7886,153 @@
 
20436
   if test -n "$NM"; then
 
20437
   # Let the user override the test.
 
20438
@@ -8038,94 +7886,462 @@
13254
20439
     done
13255
20440
     IFS="$lt_save_ifs"
13256
20441
   done
13258
20443
+  : ${lt_cv_path_NM=no}
13259
20444
 fi
13260
20445
 fi
13261
 
 { echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5
13262
 
 echo "${ECHO_T}$lt_cv_path_NM" >&6; }
 
20446
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5
 
20447
-$as_echo "$lt_cv_path_NM" >&6; }
13263
20448
-NM="$lt_cv_path_NM"
 
20449
+{ echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5
 
20450
+echo "${ECHO_T}$lt_cv_path_NM" >&6; }
13264
20451
+if test "$lt_cv_path_NM" != "no"; then
13265
20452
+  NM="$lt_cv_path_NM"
13266
20453
+else
13292
20479
+done
13293
20480
+done
13294
20481
+IFS=$as_save_IFS
13295
 
+
 
20482
 
 
20483
-{ $as_echo "$as_me:$LINENO: checking whether ln -s works" >&5
 
20484
-$as_echo_n "checking whether ln -s works... " >&6; }
 
20485
-LN_S=$as_ln_s
 
20486
-if test "$LN_S" = "ln -s"; then
 
20487
-  { $as_echo "$as_me:$LINENO: result: yes" >&5
 
20488
-$as_echo "yes" >&6; }
13296
20489
+fi
13297
20490
+fi
13298
20491
+DUMPBIN=$ac_cv_prog_DUMPBIN
13299
20492
+if test -n "$DUMPBIN"; then
13300
20493
+  { echo "$as_me:$LINENO: result: $DUMPBIN" >&5
13301
20494
+echo "${ECHO_T}$DUMPBIN" >&6; }
13302
 
+else
 
20495
 else
 
20496
-  { $as_echo "$as_me:$LINENO: result: no, using $LN_S" >&5
 
20497
-$as_echo "no, using $LN_S" >&6; }
13303
20498
+  { echo "$as_me:$LINENO: result: no" >&5
13304
20499
+echo "${ECHO_T}no" >&6; }
13305
 
+fi
13306
 
+
13307
 
+
 
20500
 fi
 
20501
 
 
20502
-{ $as_echo "$as_me:$LINENO: checking how to recognize dependent libraries" >&5
 
20503
-$as_echo_n "checking how to recognize dependent libraries... " >&6; }
 
20504
-if test "${lt_cv_deplibs_check_method+set}" = set; then
 
20505
-  $as_echo_n "(cached) " >&6
 
20506
-else
 
20507
-  lt_cv_file_magic_cmd='$MAGIC_CMD'
 
20508
-lt_cv_file_magic_test_file=
 
20509
-lt_cv_deplibs_check_method='unknown'
 
20510
-# Need to set the preceding variable on all platforms that support
 
20511
-# interlibrary dependencies.
 
20512
-# 'none' -- dependencies not supported.
 
20513
-# `unknown' -- same as none, but documents that we really don't know.
 
20514
-# 'pass_all' -- all dependencies passed with no checks.
 
20515
-# 'test_compile' -- check by making test program.
 
20516
-# 'file_magic [[regex]]' -- check by looking for files in library path
 
20517
-# which responds to the $file_magic_cmd with a given extended regex.
 
20518
-# If you have `file' or equivalent on your system and you're not sure
 
20519
-# whether `pass_all' will *always* work, you probably want this one.
 
20520
 
 
20521
-case $host_os in
 
20522
-aix[4-9]*)
 
20523
-  lt_cv_deplibs_check_method=pass_all
 
20524
-  ;;
13308
20525
+    test -n "$DUMPBIN" && break
13309
20526
+  done
13310
20527
+fi
13336
20553
+done
13337
20554
+done
13338
20555
+IFS=$as_save_IFS
13339
 
+
 
20556
 
 
20557
-beos*)
 
20558
-  lt_cv_deplibs_check_method=pass_all
 
20559
-  ;;
13340
20560
+fi
13341
20561
+fi
13342
20562
+ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN
13347
20567
+  { echo "$as_me:$LINENO: result: no" >&5
13348
20568
+echo "${ECHO_T}no" >&6; }
13349
20569
+fi
13350
 
+
13351
 
+
 
20570
 
 
20571
-bsdi[45]*)
 
20572
-  lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'
 
20573
-  lt_cv_file_magic_cmd='/usr/bin/file -L'
 
20574
-  lt_cv_file_magic_test_file=/shlib/libc.so
 
20575
-  ;;
 
20576
 
 
20577
-cygwin*)
 
20578
-  # func_win32_libid is a shell function defined in ltmain.sh
 
20579
-  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
 
20580
-  lt_cv_file_magic_cmd='func_win32_libid'
 
20581
-  ;;
13352
20582
+  test -n "$ac_ct_DUMPBIN" && break
13353
20583
+done
13354
 
+
 
20584
 
 
20585
-mingw* | pw32*)
 
20586
-  # Base MSYS/MinGW do not provide the 'file' command needed by
 
20587
-  # func_win32_libid shell function, so use a weaker test based on 'objdump',
 
20588
-  # unless we find 'file', for example because we are cross-compiling.
 
20589
-  if ( file / ) >/dev/null 2>&1; then
 
20590
-    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
 
20591
-    lt_cv_file_magic_cmd='func_win32_libid'
13355
20592
+  if test "x$ac_ct_DUMPBIN" = x; then
13356
20593
+    DUMPBIN=":"
13357
 
+  else
 
20594
   else
 
20595
-    lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
 
20596
-    lt_cv_file_magic_cmd='$OBJDUMP -f'
13358
20597
+    case $cross_compiling:$ac_tool_warned in
13359
20598
+yes:)
13360
20599
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
13366
20605
+ac_tool_warned=yes ;;
13367
20606
+esac
13368
20607
+    DUMPBIN=$ac_ct_DUMPBIN
13369
 
+  fi
 
20608
   fi
 
20609
-  ;;
13370
20610
+fi
13371
 
+
13372
 
+
 
20611
 
 
20612
-darwin* | rhapsody*)
 
20613
-  lt_cv_deplibs_check_method=pass_all
 
20614
-  ;;
 
20615
 
 
20616
-freebsd* | dragonfly*)
 
20617
-  if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
 
20618
-    case $host_cpu in
 
20619
-    i*86 )
 
20620
-      # Not sure whether the presence of OpenBSD here was a mistake.
 
20621
-      # Let's accept both of them until this is cleared up.
 
20622
-      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library'
 
20623
-      lt_cv_file_magic_cmd=/usr/bin/file
 
20624
-      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
 
20625
-      ;;
 
20626
-    esac
 
20627
-  else
 
20628
-    lt_cv_deplibs_check_method=pass_all
13373
20629
+  if test "$DUMPBIN" != ":"; then
13374
20630
+    NM="$DUMPBIN"
13375
20631
+  fi
13403
20659
+fi
13404
20660
+{ echo "$as_me:$LINENO: result: $lt_cv_nm_interface" >&5
13405
20661
+echo "${ECHO_T}$lt_cv_nm_interface" >&6; }
13406
 
 
13407
 
 { echo "$as_me:$LINENO: checking whether ln -s works" >&5
13408
 
 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6; }
13409
 
@@ -7767,101 +8045,328 @@
13410
 
 echo "${ECHO_T}no, using $LN_S" >&6; }
13411
 
 fi
13412
 
 
13413
 
-{ echo "$as_me:$LINENO: checking how to recognize dependent libraries" >&5
13414
 
-echo $ECHO_N "checking how to recognize dependent libraries... $ECHO_C" >&6; }
13415
 
-if test "${lt_cv_deplibs_check_method+set}" = set; then
 
20662
+
 
20663
+{ echo "$as_me:$LINENO: checking whether ln -s works" >&5
 
20664
+echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6; }
 
20665
+LN_S=$as_ln_s
 
20666
+if test "$LN_S" = "ln -s"; then
 
20667
+  { echo "$as_me:$LINENO: result: yes" >&5
 
20668
+echo "${ECHO_T}yes" >&6; }
 
20669
+else
 
20670
+  { echo "$as_me:$LINENO: result: no, using $LN_S" >&5
 
20671
+echo "${ECHO_T}no, using $LN_S" >&6; }
 
20672
+fi
 
20673
+
13416
20674
+# find the maximum length of command line arguments
13417
20675
+{ echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5
13418
20676
+echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6; }
13419
20677
+if test "${lt_cv_sys_max_cmd_len+set}" = set; then
13420
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
13421
 
 else
13422
 
-  lt_cv_file_magic_cmd='$MAGIC_CMD'
13423
 
-lt_cv_file_magic_test_file=
13424
 
-lt_cv_deplibs_check_method='unknown'
13425
 
-# Need to set the preceding variable on all platforms that support
13426
 
-# interlibrary dependencies.
13427
 
-# 'none' -- dependencies not supported.
13428
 
-# `unknown' -- same as none, but documents that we really don't know.
13429
 
-# 'pass_all' -- all dependencies passed with no checks.
13430
 
-# 'test_compile' -- check by making test program.
13431
 
-# 'file_magic [[regex]]' -- check by looking for files in library path
13432
 
-# which responds to the $file_magic_cmd with a given extended regex.
13433
 
-# If you have `file' or equivalent on your system and you're not sure
13434
 
-# whether `pass_all' will *always* work, you probably want this one.
 
20678
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
20679
+else
13435
20680
+    i=0
13436
20681
+  teststring="ABCD"
13437
 
 
13438
 
-case $host_os in
13439
 
-aix4* | aix5*)
13440
 
-  lt_cv_deplibs_check_method=pass_all
 
20682
+
13441
20683
+  case $build_os in
13442
20684
+  msdosdjgpp*)
13443
20685
+    # On DJGPP, this test can blow up pretty badly due to problems in libc
13445
20687
+    # during glob expansion).  Even if it were fixed, the result of this
13446
20688
+    # check would be larger than it should be.
13447
20689
+    lt_cv_sys_max_cmd_len=12288;    # 12K is about right
13448
 
   ;;
13449
 
 
13450
 
-beos*)
13451
 
-  lt_cv_deplibs_check_method=pass_all
 
20690
+    ;;
 
20691
+
13452
20692
+  gnu*)
13453
20693
+    # Under GNU Hurd, this test is not required because there is
13454
20694
+    # no limit to the length of command line arguments.
13455
20695
+    # Libtool will interpret -1 as no limit whatsoever
13456
20696
+    lt_cv_sys_max_cmd_len=-1;
13457
 
   ;;
13458
 
 
13459
 
-bsdi[45]*)
13460
 
-  lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'
13461
 
-  lt_cv_file_magic_cmd='/usr/bin/file -L'
13462
 
-  lt_cv_file_magic_test_file=/shlib/libc.so
 
20697
+    ;;
 
20698
+
13463
20699
+  cygwin* | mingw*)
13464
20700
+    # On Win9x/ME, this test blows up -- it succeeds, but takes
13465
20701
+    # about 5 minutes as the teststring grows exponentially.
13469
20705
+    # Instead, let's just punt: use the minimum linelength reported by
13470
20706
+    # all of the supported platforms: 8192 (on NT/2K/XP).
13471
20707
+    lt_cv_sys_max_cmd_len=8192;
13472
 
   ;;
13473
 
 
13474
 
-cygwin*)
13475
 
-  # func_win32_libid is a shell function defined in ltmain.sh
13476
 
-  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
13477
 
-  lt_cv_file_magic_cmd='func_win32_libid'
 
20708
+    ;;
 
20709
+
13478
20710
+  amigaos*)
13479
20711
+    # On AmigaOS with pdksh, this test takes hours, literally.
13480
20712
+    # So we just punt and use a minimum line length of 8192.
13481
20713
+    lt_cv_sys_max_cmd_len=8192;
13482
 
   ;;
13483
 
 
13484
 
-mingw* | pw32*)
13485
 
-  # Base MSYS/MinGW do not provide the 'file' command needed by
13486
 
-  # func_win32_libid shell function, so use a weaker test based on 'objdump',
13487
 
-  # unless we find 'file', for example because we are cross-compiling.
13488
 
-  if ( file / ) >/dev/null 2>&1; then
13489
 
-    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
13490
 
-    lt_cv_file_magic_cmd='func_win32_libid'
 
20714
+    ;;
 
20715
+
13491
20716
+  netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
13492
20717
+    # This has been around since 386BSD, at least.  Likely further.
13493
20718
+    if test -x /sbin/sysctl; then
13494
20719
+      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
13495
20720
+    elif test -x /usr/sbin/sysctl; then
13496
20721
+      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
13497
 
   else
13498
 
-    lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
13499
 
-    lt_cv_file_magic_cmd='$OBJDUMP -f'
 
20722
+    else
13500
20723
+      lt_cv_sys_max_cmd_len=65536      # usable default for all BSDs
13501
 
   fi
 
20724
+    fi
13502
20725
+    # And add a safety zone
13503
20726
+    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
13504
20727
+    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
13505
 
   ;;
13506
 
 
13507
 
-darwin* | rhapsody*)
13508
 
-  lt_cv_deplibs_check_method=pass_all
 
20728
+    ;;
 
20729
+
13509
20730
+  interix*)
13510
20731
+    # We know the value 262144 and hardcode it with a safety zone (like BSD)
13511
20732
+    lt_cv_sys_max_cmd_len=196608
13512
 
   ;;
13513
 
 
13514
 
-freebsd* | dragonfly*)
13515
 
-  if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
13516
 
-    case $host_cpu in
13517
 
-    i*86 )
13518
 
-      # Not sure whether the presence of OpenBSD here was a mistake.
13519
 
-      # Let's accept both of them until this is cleared up.
13520
 
-      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library'
13521
 
-      lt_cv_file_magic_cmd=/usr/bin/file
13522
 
-      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
13523
 
-      ;;
 
20733
+    ;;
 
20734
+
13524
20735
+  osf*)
13525
20736
+    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
13526
20737
+    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
13531
20742
+    if test -x /sbin/sysconfig; then
13532
20743
+      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
13533
20744
+        *1*) lt_cv_sys_max_cmd_len=-1 ;;
13534
 
     esac
13535
 
-  else
13536
 
-    lt_cv_deplibs_check_method=pass_all
13537
 
   fi
13538
 
   ;;
13539
 
-
13540
 
-gnu*)
13541
 
-  lt_cv_deplibs_check_method=pass_all
13542
 
-  ;;
13543
 
-
13544
 
-hpux10.20* | hpux11*)
13545
 
-  lt_cv_file_magic_cmd=/usr/bin/file
13546
 
-  case $host_cpu in
13547
 
-  ia64*)
13548
 
-    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64'
13549
 
-    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
 
20745
+      esac
 
20746
+    fi
 
20747
+    ;;
13550
20748
+  sco3.2v5*)
13551
20749
+    lt_cv_sys_max_cmd_len=102400
13552
 
     ;;
13553
 
-  hppa*64*)
13554
 
-    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'
13555
 
-    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
 
20750
+    ;;
13556
20751
+  sysv5* | sco5v6* | sysv4.2uw2*)
13557
20752
+    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
13558
20753
+    if test -n "$kargmax"; then
13560
20755
+    else
13561
20756
+      lt_cv_sys_max_cmd_len=32768
13562
20757
+    fi
13563
 
     ;;
13564
 
   *)
13565
 
-    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library'
13566
 
-    lt_cv_file_magic_test_file=/usr/lib/libc.sl
13567
 
-    ;;
13568
 
-  esac
13569
 
-  ;;
13570
 
-
 
20758
+    ;;
 
20759
+  *)
13571
20760
+    lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
13572
20761
+    if test -n "$lt_cv_sys_max_cmd_len"; then
13573
20762
+      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
13779
20968
+    esac
13780
20969
+  else
13781
20970
+    lt_cv_deplibs_check_method=pass_all
13782
 
+  fi
13783
 
+  ;;
13784
 
+
13785
 
+gnu*)
13786
 
+  lt_cv_deplibs_check_method=pass_all
13787
 
+  ;;
13788
 
+
13789
 
+hpux10.20* | hpux11*)
13790
 
+  lt_cv_file_magic_cmd=/usr/bin/file
13791
 
+  case $host_cpu in
13792
 
+  ia64*)
13793
 
+    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64'
13794
 
+    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
13795
 
+    ;;
13796
 
+  hppa*64*)
13797
 
+    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'
13798
 
+    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
13799
 
+    ;;
13800
 
+  *)
13801
 
+    lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library'
13802
 
+    lt_cv_file_magic_test_file=/usr/lib/libc.sl
13803
 
+    ;;
13804
 
+  esac
13805
 
+  ;;
13806
 
+
13807
 
 interix[3-9]*)
13808
 
   # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here
13809
 
   lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$'
13810
 
@@ -7882,8 +8387,8 @@
 
20971
   fi
 
20972
   ;;
 
20973
 
 
20974
@@ -8171,8 +8387,8 @@
13811
20975
   lt_cv_deplibs_check_method=pass_all
13812
20976
   ;;
13813
20977
 
13818
20982
     lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$'
13819
20983
   else
13820
20984
     lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$'
13821
 
@@ -7896,12 +8401,12 @@
 
20985
@@ -8185,12 +8401,12 @@
13822
20986
   lt_cv_file_magic_test_file=/usr/lib/libnls.so
13823
20987
   ;;
13824
20988
 
13834
20998
     lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$'
13835
20999
   else
13836
21000
     lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$'
13837
 
@@ -7920,6 +8425,10 @@
 
21001
@@ -8209,6 +8425,10 @@
13838
21002
   lt_cv_deplibs_check_method=pass_all
13839
21003
   ;;
13840
21004
 
13845
21009
 sysv4 | sysv4.3*)
13846
21010
   case $host_vendor in
13847
21011
   motorola)
13848
 
@@ -7947,7 +8456,7 @@
 
21012
@@ -8236,14 +8456,14 @@
13849
21013
   esac
13850
21014
   ;;
13851
21015
 
13854
21018
   lt_cv_deplibs_check_method=pass_all
13855
21019
   ;;
13856
21020
 esac
13857
 
@@ -7962,1052 +8471,426 @@
 
21021
 
 
21022
 fi
 
21023
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5
 
21024
-$as_echo "$lt_cv_deplibs_check_method" >&6; }
 
21025
+{ echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5
 
21026
+echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6; }
 
21027
 file_magic_cmd=$lt_cv_file_magic_cmd
 
21028
 deplibs_check_method=$lt_cv_deplibs_check_method
 
21029
 test -z "$deplibs_check_method" && deplibs_check_method=unknown
 
21030
@@ -8251,1030 +8471,394 @@
13858
21031
 
13859
21032
 
13860
21033
 
13883
21056
-  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
13884
21057
-  (eval $ac_compile) 2>&5
13885
21058
-  ac_status=$?
13886
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
21059
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
13887
21060
-  (exit $ac_status); }; then
13888
21061
-    case `/usr/bin/file conftest.$ac_objext` in
13889
21062
-    *ELF-32*)
13893
21066
-      HPUX_IA64_MODE="64"
13894
21067
-      ;;
13895
21068
-    esac
13896
 
+
 
21069
-  fi
 
21070
-  rm -rf conftest*
 
21071
-  ;;
 
21072
-*-*-irix6*)
 
21073
-  # Find out which ABI we are using.
 
21074
-  echo '#line 8294 "configure"' > conftest.$ac_ext
 
21075
-  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
21076
-  (eval $ac_compile) 2>&5
 
21077
-  ac_status=$?
 
21078
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
21079
-  (exit $ac_status); }; then
 
21080
-   if test "$lt_cv_prog_gnu_ld" = yes; then
 
21081
-    case `/usr/bin/file conftest.$ac_objext` in
 
21082
-    *32-bit*)
 
21083
-      LD="${LD-ld} -melf32bsmip"
 
21084
-      ;;
 
21085
-    *N32*)
 
21086
-      LD="${LD-ld} -melf32bmipn32"
 
21087
-      ;;
 
21088
-    *64-bit*)
 
21089
-      LD="${LD-ld} -melf64bmip"
 
21090
-      ;;
 
21091
-    esac
 
21092
-   else
 
21093
-    case `/usr/bin/file conftest.$ac_objext` in
 
21094
-    *32-bit*)
 
21095
-      LD="${LD-ld} -32"
 
21096
-      ;;
 
21097
-    *N32*)
 
21098
-      LD="${LD-ld} -n32"
 
21099
-      ;;
 
21100
-    *64-bit*)
 
21101
-      LD="${LD-ld} -64"
 
21102
-      ;;
 
21103
-    esac
 
21104
-   fi
 
21105
-  fi
 
21106
-  rm -rf conftest*
 
21107
-  ;;
 
21108
 
 
21109
-x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
 
21110
-s390*-*linux*|sparc*-*linux*)
 
21111
-  # Find out which ABI we are using.
 
21112
-  echo 'int i;' > conftest.$ac_ext
 
21113
-  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
21114
-  (eval $ac_compile) 2>&5
 
21115
-  ac_status=$?
 
21116
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
21117
-  (exit $ac_status); }; then
 
21118
-    case `/usr/bin/file conftest.o` in
 
21119
-    *32-bit*)
 
21120
-      case $host in
 
21121
-        x86_64-*kfreebsd*-gnu)
 
21122
-          LD="${LD-ld} -m elf_i386_fbsd"
 
21123
-          ;;
 
21124
-        x86_64-*linux*)
 
21125
-          LD="${LD-ld} -m elf_i386"
 
21126
-          ;;
 
21127
-        ppc64-*linux*|powerpc64-*linux*)
 
21128
-          LD="${LD-ld} -m elf32ppclinux"
 
21129
-          ;;
 
21130
-        s390x-*linux*)
 
21131
-          LD="${LD-ld} -m elf_s390"
 
21132
-          ;;
 
21133
-        sparc64-*linux*)
 
21134
-          LD="${LD-ld} -m elf32_sparc"
 
21135
-          ;;
 
21136
-      esac
 
21137
-      ;;
 
21138
-    *64-bit*)
 
21139
-      libsuff=64
 
21140
-      case $host in
 
21141
-        x86_64-*kfreebsd*-gnu)
 
21142
-          LD="${LD-ld} -m elf_x86_64_fbsd"
 
21143
-          ;;
 
21144
-        x86_64-*linux*)
 
21145
-          LD="${LD-ld} -m elf_x86_64"
 
21146
-          ;;
 
21147
-        ppc*-*linux*|powerpc*-*linux*)
 
21148
-          LD="${LD-ld} -m elf64ppc"
 
21149
-          ;;
 
21150
-        s390*-*linux*)
 
21151
-          LD="${LD-ld} -m elf64_s390"
 
21152
-          ;;
 
21153
-        sparc*-*linux*)
 
21154
-          LD="${LD-ld} -m elf64_sparc"
 
21155
-          ;;
 
21156
-      esac
 
21157
-      ;;
 
21158
-    esac
13897
21159
+
13898
21160
+
13899
21161
+if test -n "$ac_tool_prefix"; then
13920
21182
   fi
13921
21183
-  rm -rf conftest*
13922
21184
-  ;;
13923
 
-*-*-irix6*)
13924
 
-  # Find out which ABI we are using.
13925
 
-  echo '#line 8005 "configure"' > conftest.$ac_ext
13926
 
-  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
13927
 
-  (eval $ac_compile) 2>&5
13928
 
-  ac_status=$?
13929
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
13930
 
-  (exit $ac_status); }; then
13931
 
-   if test "$lt_cv_prog_gnu_ld" = yes; then
13932
 
-    case `/usr/bin/file conftest.$ac_objext` in
13933
 
-    *32-bit*)
13934
 
-      LD="${LD-ld} -melf32bsmip"
13935
 
-      ;;
13936
 
-    *N32*)
13937
 
-      LD="${LD-ld} -melf32bmipn32"
13938
 
-      ;;
13939
 
-    *64-bit*)
13940
 
-      LD="${LD-ld} -melf64bmip"
13941
 
-      ;;
13942
 
-    esac
13943
 
-   else
13944
 
-    case `/usr/bin/file conftest.$ac_objext` in
13945
 
-    *32-bit*)
13946
 
-      LD="${LD-ld} -32"
13947
 
-      ;;
13948
 
-    *N32*)
13949
 
-      LD="${LD-ld} -n32"
13950
 
-      ;;
13951
 
-    *64-bit*)
13952
 
-      LD="${LD-ld} -64"
13953
 
-      ;;
13954
 
-    esac
13955
 
-   fi
13956
 
-  fi
13957
 
-  rm -rf conftest*
13958
 
-  ;;
13959
21185
+done
13960
21186
+done
13961
21187
+IFS=$as_save_IFS
13962
21188
 
13963
 
-x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
13964
 
-s390*-*linux*|sparc*-*linux*)
13965
 
-  # Find out which ABI we are using.
13966
 
-  echo 'int i;' > conftest.$ac_ext
13967
 
-  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
13968
 
-  (eval $ac_compile) 2>&5
13969
 
-  ac_status=$?
13970
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
13971
 
-  (exit $ac_status); }; then
13972
 
-    case `/usr/bin/file conftest.o` in
13973
 
-    *32-bit*)
13974
 
-      case $host in
13975
 
-        x86_64-*kfreebsd*-gnu)
13976
 
-          LD="${LD-ld} -m elf_i386_fbsd"
13977
 
-          ;;
13978
 
-        x86_64-*linux*)
13979
 
-          LD="${LD-ld} -m elf_i386"
13980
 
-          ;;
13981
 
-        ppc64-*linux*|powerpc64-*linux*)
13982
 
-          LD="${LD-ld} -m elf32ppclinux"
13983
 
-          ;;
13984
 
-        s390x-*linux*)
13985
 
-          LD="${LD-ld} -m elf_s390"
13986
 
-          ;;
13987
 
-        sparc64-*linux*)
13988
 
-          LD="${LD-ld} -m elf32_sparc"
13989
 
-          ;;
13990
 
-      esac
13991
 
-      ;;
13992
 
-    *64-bit*)
13993
 
-      libsuff=64
13994
 
-      case $host in
13995
 
-        x86_64-*kfreebsd*-gnu)
13996
 
-          LD="${LD-ld} -m elf_x86_64_fbsd"
13997
 
-          ;;
13998
 
-        x86_64-*linux*)
13999
 
-          LD="${LD-ld} -m elf_x86_64"
14000
 
-          ;;
14001
 
-        ppc*-*linux*|powerpc*-*linux*)
14002
 
-          LD="${LD-ld} -m elf64ppc"
14003
 
-          ;;
14004
 
-        s390*-*linux*)
14005
 
-          LD="${LD-ld} -m elf64_s390"
14006
 
-          ;;
14007
 
-        sparc*-*linux*)
14008
 
-          LD="${LD-ld} -m elf64_sparc"
14009
 
-          ;;
14010
 
-      esac
14011
 
-      ;;
14012
 
-    esac
14013
 
-  fi
14014
 
-  rm -rf conftest*
14015
 
-  ;;
 
21189
-*-*-sco3.2v5*)
 
21190
-  # On SCO OpenServer 5, we need -belf to get full-featured binaries.
 
21191
-  SAVE_CFLAGS="$CFLAGS"
 
21192
-  CFLAGS="$CFLAGS -belf"
 
21193
-  { $as_echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5
 
21194
-$as_echo_n "checking whether the C compiler needs -belf... " >&6; }
 
21195
-if test "${lt_cv_cc_needs_belf+set}" = set; then
 
21196
-  $as_echo_n "(cached) " >&6
14016
21197
+fi
14017
21198
+fi
14018
21199
+AR=$ac_cv_prog_AR
14019
21200
+if test -n "$AR"; then
14020
21201
+  { echo "$as_me:$LINENO: result: $AR" >&5
14021
21202
+echo "${ECHO_T}$AR" >&6; }
14022
 
+else
 
21203
 else
 
21204
-  ac_ext=c
 
21205
-ac_cpp='$CPP $CPPFLAGS'
 
21206
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
21207
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
21208
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
14023
21209
+  { echo "$as_me:$LINENO: result: no" >&5
14024
21210
+echo "${ECHO_T}no" >&6; }
14025
21211
+fi
14026
21212
 
14027
 
-*-*-sco3.2v5*)
14028
 
-  # On SCO OpenServer 5, we need -belf to get full-featured binaries.
14029
 
-  SAVE_CFLAGS="$CFLAGS"
14030
 
-  CFLAGS="$CFLAGS -belf"
14031
 
-  { echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5
14032
 
-echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6; }
14033
 
-if test "${lt_cv_cc_needs_belf+set}" = set; then
14034
 
+
 
21213
-     cat >conftest.$ac_ext <<_ACEOF
 
21214
-/* confdefs.h.  */
 
21215
-_ACEOF
 
21216
-cat confdefs.h >>conftest.$ac_ext
 
21217
-cat >>conftest.$ac_ext <<_ACEOF
 
21218
-/* end confdefs.h.  */
 
21219
 
 
21220
-int
 
21221
-main ()
 
21222
-{
14035
21223
+fi
14036
21224
+if test -z "$ac_cv_prog_AR"; then
14037
21225
+  ac_ct_AR=$AR
14040
21228
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
14041
21229
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
14042
21230
+if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
14043
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
14044
 
 else
14045
 
-  ac_ext=c
14046
 
-ac_cpp='$CPP $CPPFLAGS'
14047
 
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
14048
 
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
14049
 
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
14050
 
-
14051
 
-     cat >conftest.$ac_ext <<_ACEOF
14052
 
-/* confdefs.h.  */
14053
 
-_ACEOF
14054
 
-cat confdefs.h >>conftest.$ac_ext
14055
 
-cat >>conftest.$ac_ext <<_ACEOF
14056
 
-/* end confdefs.h.  */
 
21231
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
21232
+else
14057
21233
+  if test -n "$ac_ct_AR"; then
14058
21234
+  ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test.
14059
21235
+else
14072
21248
+done
14073
21249
+IFS=$as_save_IFS
14074
21250
 
14075
 
-int
14076
 
-main ()
14077
 
-{
 
21251
-  ;
 
21252
-  return 0;
 
21253
-}
 
21254
-_ACEOF
 
21255
-rm -f conftest.$ac_objext conftest$ac_exeext
 
21256
-if { (ac_try="$ac_link"
 
21257
-case "(($ac_try" in
 
21258
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
21259
-  *) ac_try_echo=$ac_try;;
 
21260
-esac
 
21261
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
21262
-$as_echo "$ac_try_echo") >&5
 
21263
-  (eval "$ac_link") 2>conftest.er1
 
21264
-  ac_status=$?
 
21265
-  grep -v '^ *+' conftest.er1 >conftest.err
 
21266
-  rm -f conftest.er1
 
21267
-  cat conftest.err >&5
 
21268
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
21269
-  (exit $ac_status); } && {
 
21270
-        test -z "$ac_c_werror_flag" ||
 
21271
-        test ! -s conftest.err
 
21272
-       } && test -s conftest$ac_exeext && {
 
21273
-        test "$cross_compiling" = yes ||
 
21274
-        $as_test_x conftest$ac_exeext
 
21275
-       }; then
 
21276
-  lt_cv_cc_needs_belf=yes
14078
21277
+fi
14079
21278
+fi
14080
21279
+ac_ct_AR=$ac_cv_prog_ac_ct_AR
14081
21280
+if test -n "$ac_ct_AR"; then
14082
21281
+  { echo "$as_me:$LINENO: result: $ac_ct_AR" >&5
14083
21282
+echo "${ECHO_T}$ac_ct_AR" >&6; }
14084
 
+else
 
21283
 else
 
21284
-  $as_echo "$as_me: failed program was:" >&5
 
21285
-sed 's/^/| /' conftest.$ac_ext >&5
14085
21286
+  { echo "$as_me:$LINENO: result: no" >&5
14086
21287
+echo "${ECHO_T}no" >&6; }
14087
21288
+fi
14088
21289
 
14089
 
-  ;
14090
 
-  return 0;
14091
 
-}
14092
 
-_ACEOF
14093
 
-rm -f conftest.$ac_objext conftest$ac_exeext
14094
 
-if { (ac_try="$ac_link"
14095
 
-case "(($ac_try" in
14096
 
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14097
 
-  *) ac_try_echo=$ac_try;;
 
21290
-       lt_cv_cc_needs_belf=no
14098
21291
+  if test "x$ac_ct_AR" = x; then
14099
21292
+    AR="false"
14100
21293
+  else
14107
21300
+whose name does not start with the host triplet.  If you think this
14108
21301
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
14109
21302
+ac_tool_warned=yes ;;
14110
 
 esac
14111
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14112
 
-  (eval "$ac_link") 2>conftest.er1
14113
 
-  ac_status=$?
14114
 
-  grep -v '^ *+' conftest.er1 >conftest.err
14115
 
-  rm -f conftest.er1
14116
 
-  cat conftest.err >&5
14117
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14118
 
-  (exit $ac_status); } && {
14119
 
-        test -z "$ac_c_werror_flag" ||
14120
 
-        test ! -s conftest.err
14121
 
-       } && test -s conftest$ac_exeext &&
14122
 
-       $as_test_x conftest$ac_exeext; then
14123
 
-  lt_cv_cc_needs_belf=yes
 
21303
+esac
14124
21304
+    AR=$ac_ct_AR
14125
21305
+  fi
14126
 
 else
14127
 
-  echo "$as_me: failed program was:" >&5
14128
 
-sed 's/^/| /' conftest.$ac_ext >&5
14129
 
-
14130
 
-       lt_cv_cc_needs_belf=no
 
21306
+else
14131
21307
+  AR="$ac_cv_prog_AR"
14132
21308
 fi
14133
21309
 
 
21310
-rm -rf conftest.dSYM
14134
21311
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
14135
21312
-      conftest$ac_exeext conftest.$ac_ext
14136
21313
-     ac_ext=c
14142
21319
+test -z "$AR_FLAGS" && AR_FLAGS=cru
14143
21320
 
14144
21321
-fi
14145
 
-{ echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5
14146
 
-echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6; }
 
21322
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5
 
21323
-$as_echo "$lt_cv_cc_needs_belf" >&6; }
14147
21324
-  if test x"$lt_cv_cc_needs_belf" != x"yes"; then
14148
21325
-    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
14149
21326
-    CFLAGS="$SAVE_CFLAGS"
14155
21332
-  if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
14156
21333
-  (eval $ac_compile) 2>&5
14157
21334
-  ac_status=$?
14158
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
21335
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14159
21336
-  (exit $ac_status); }; then
14160
21337
-    case `/usr/bin/file conftest.o` in
14161
21338
-    *64-bit*)
14162
21339
-      case $lt_cv_prog_gnu_ld in
14163
21340
-      yes*) LD="${LD-ld} -m elf64_sparc" ;;
14164
 
-      *)    LD="${LD-ld} -64" ;;
 
21341
-      *)
 
21342
-        if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
 
21343
-         LD="${LD-ld} -64"
 
21344
-       fi
 
21345
-       ;;
14165
21346
-      esac
14166
21347
-      ;;
14167
21348
-    esac
14178
21359
 
14179
21360
-for ac_header in dlfcn.h
14180
21361
-do
14181
 
-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
14182
 
-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
14183
 
-  { echo "$as_me:$LINENO: checking for $ac_header" >&5
14184
 
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
14185
 
-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
14186
 
+
14187
 
+
14188
 
+
 
21362
-as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
 
21363
-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
21364
-  { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
 
21365
-$as_echo_n "checking for $ac_header... " >&6; }
 
21366
-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
21367
-  $as_echo_n "(cached) " >&6
 
21368
-fi
 
21369
-ac_res=`eval 'as_val=${'$as_ac_Header'}
 
21370
-                $as_echo "$as_val"'`
 
21371
-              { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
 
21372
-$as_echo "$ac_res" >&6; }
 
21373
-else
 
21374
-  # Is the header compilable?
 
21375
-{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5
 
21376
-$as_echo_n "checking $ac_header usability... " >&6; }
 
21377
-cat >conftest.$ac_ext <<_ACEOF
 
21378
-/* confdefs.h.  */
 
21379
-_ACEOF
 
21380
-cat confdefs.h >>conftest.$ac_ext
 
21381
-cat >>conftest.$ac_ext <<_ACEOF
 
21382
-/* end confdefs.h.  */
 
21383
-$ac_includes_default
 
21384
-#include <$ac_header>
 
21385
-_ACEOF
 
21386
-rm -f conftest.$ac_objext
 
21387
-if { (ac_try="$ac_compile"
 
21388
-case "(($ac_try" in
 
21389
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
21390
-  *) ac_try_echo=$ac_try;;
 
21391
-esac
 
21392
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
21393
-$as_echo "$ac_try_echo") >&5
 
21394
-  (eval "$ac_compile") 2>conftest.er1
 
21395
-  ac_status=$?
 
21396
-  grep -v '^ *+' conftest.er1 >conftest.err
 
21397
-  rm -f conftest.er1
 
21398
-  cat conftest.err >&5
 
21399
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
21400
-  (exit $ac_status); } && {
 
21401
-        test -z "$ac_c_werror_flag" ||
 
21402
-        test ! -s conftest.err
 
21403
-       } && test -s conftest.$ac_objext; then
 
21404
-  ac_header_compiler=yes
 
21405
-else
 
21406
-  $as_echo "$as_me: failed program was:" >&5
 
21407
-sed 's/^/| /' conftest.$ac_ext >&5
 
21408
 
 
21409
-       ac_header_compiler=no
 
21410
-fi
 
21411
 
 
21412
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
21413
-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
21414
-$as_echo "$ac_header_compiler" >&6; }
 
21415
 
 
21416
-# Is the header present?
 
21417
-{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5
 
21418
-$as_echo_n "checking $ac_header presence... " >&6; }
 
21419
-cat >conftest.$ac_ext <<_ACEOF
 
21420
-/* confdefs.h.  */
 
21421
-_ACEOF
 
21422
-cat confdefs.h >>conftest.$ac_ext
 
21423
-cat >>conftest.$ac_ext <<_ACEOF
 
21424
-/* end confdefs.h.  */
 
21425
-#include <$ac_header>
 
21426
-_ACEOF
 
21427
-if { (ac_try="$ac_cpp conftest.$ac_ext"
 
21428
-case "(($ac_try" in
 
21429
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
21430
-  *) ac_try_echo=$ac_try;;
 
21431
-esac
 
21432
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
21433
-$as_echo "$ac_try_echo") >&5
 
21434
-  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
21435
-  ac_status=$?
 
21436
-  grep -v '^ *+' conftest.er1 >conftest.err
 
21437
-  rm -f conftest.er1
 
21438
-  cat conftest.err >&5
 
21439
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
21440
-  (exit $ac_status); } >/dev/null && {
 
21441
-        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
21442
-        test ! -s conftest.err
 
21443
-       }; then
 
21444
-  ac_header_preproc=yes
14189
21445
+
14190
21446
+if test -n "$ac_tool_prefix"; then
14191
21447
+  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
14193
21449
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
14194
21450
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
14195
21451
+if test "${ac_cv_prog_STRIP+set}" = set; then
14196
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
14197
 
-fi
14198
 
-ac_res=`eval echo '${'$as_ac_Header'}'`
14199
 
-              { echo "$as_me:$LINENO: result: $ac_res" >&5
14200
 
-echo "${ECHO_T}$ac_res" >&6; }
 
21452
+  echo $ECHO_N "(cached) $ECHO_C" >&6
14201
21453
 else
14202
 
-  # Is the header compilable?
14203
 
-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
14204
 
-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
14205
 
-cat >conftest.$ac_ext <<_ACEOF
14206
 
-/* confdefs.h.  */
14207
 
-_ACEOF
14208
 
-cat confdefs.h >>conftest.$ac_ext
14209
 
-cat >>conftest.$ac_ext <<_ACEOF
14210
 
-/* end confdefs.h.  */
14211
 
-$ac_includes_default
14212
 
-#include <$ac_header>
14213
 
-_ACEOF
14214
 
-rm -f conftest.$ac_objext
14215
 
-if { (ac_try="$ac_compile"
14216
 
-case "(($ac_try" in
14217
 
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14218
 
-  *) ac_try_echo=$ac_try;;
14219
 
-esac
14220
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14221
 
-  (eval "$ac_compile") 2>conftest.er1
14222
 
-  ac_status=$?
14223
 
-  grep -v '^ *+' conftest.er1 >conftest.err
14224
 
-  rm -f conftest.er1
14225
 
-  cat conftest.err >&5
14226
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14227
 
-  (exit $ac_status); } && {
14228
 
-        test -z "$ac_c_werror_flag" ||
14229
 
-        test ! -s conftest.err
14230
 
-       } && test -s conftest.$ac_objext; then
14231
 
-  ac_header_compiler=yes
 
21454
-  $as_echo "$as_me: failed program was:" >&5
 
21455
-sed 's/^/| /' conftest.$ac_ext >&5
14232
21456
+  if test -n "$STRIP"; then
14233
21457
+  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
14234
 
 else
14235
 
-  echo "$as_me: failed program was:" >&5
14236
 
-sed 's/^/| /' conftest.$ac_ext >&5
 
21458
+else
14237
21459
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
14238
21460
+for as_dir in $PATH
14239
21461
+do
14249
21471
+done
14250
21472
+IFS=$as_save_IFS
14251
21473
 
14252
 
-       ac_header_compiler=no
 
21474
-  ac_header_preproc=no
14253
21475
+fi
14254
21476
+fi
14255
21477
+STRIP=$ac_cv_prog_STRIP
14261
21483
+echo "${ECHO_T}no" >&6; }
14262
21484
 fi
14263
21485
 
14264
 
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14265
 
-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
14266
 
-echo "${ECHO_T}$ac_header_compiler" >&6; }
 
21486
-rm -f conftest.err conftest.$ac_ext
 
21487
-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
21488
-$as_echo "$ac_header_preproc" >&6; }
14267
21489
 
14268
 
-# Is the header present?
14269
 
-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
14270
 
-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
14271
 
-cat >conftest.$ac_ext <<_ACEOF
14272
 
-/* confdefs.h.  */
14273
 
-_ACEOF
14274
 
-cat confdefs.h >>conftest.$ac_ext
14275
 
-cat >>conftest.$ac_ext <<_ACEOF
14276
 
-/* end confdefs.h.  */
14277
 
-#include <$ac_header>
14278
 
-_ACEOF
14279
 
-if { (ac_try="$ac_cpp conftest.$ac_ext"
14280
 
-case "(($ac_try" in
14281
 
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14282
 
-  *) ac_try_echo=$ac_try;;
 
21490
-# So?  What about this header?
 
21491
-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
 
21492
-  yes:no: )
 
21493
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
 
21494
-$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
 
21495
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
 
21496
-$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
 
21497
-    ac_header_preproc=yes
 
21498
-    ;;
 
21499
-  no:yes:* )
 
21500
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
 
21501
-$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
 
21502
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
 
21503
-$as_echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
 
21504
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
 
21505
-$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
 
21506
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
 
21507
-$as_echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
 
21508
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
 
21509
-$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
 
21510
-    { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
 
21511
-$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
 
21512
-    ( cat <<\_ASBOX
 
21513
-## -------------------------------------------------------------------- ##
 
21514
-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=totem ##
 
21515
-## -------------------------------------------------------------------- ##
 
21516
-_ASBOX
 
21517
-     ) | sed "s/^/$as_me: WARNING:     /" >&2
 
21518
-    ;;
14283
21519
-esac
14284
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14285
 
-  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
14286
 
-  ac_status=$?
14287
 
-  grep -v '^ *+' conftest.er1 >conftest.err
14288
 
-  rm -f conftest.er1
14289
 
-  cat conftest.err >&5
14290
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14291
 
-  (exit $ac_status); } >/dev/null && {
14292
 
-        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
14293
 
-        test ! -s conftest.err
14294
 
-       }; then
14295
 
-  ac_header_preproc=yes
14296
 
+fi
 
21520
-{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
 
21521
-$as_echo_n "checking for $ac_header... " >&6; }
 
21522
-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
21523
-  $as_echo_n "(cached) " >&6
 
21524
-else
 
21525
-  eval "$as_ac_Header=\$ac_header_preproc"
 
21526
 fi
 
21527
-ac_res=`eval 'as_val=${'$as_ac_Header'}
 
21528
-                $as_echo "$as_val"'`
 
21529
-              { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
 
21530
-$as_echo "$ac_res" >&6; }
14297
21531
+if test -z "$ac_cv_prog_STRIP"; then
14298
21532
+  ac_ct_STRIP=$STRIP
14299
21533
+  # Extract the first word of "strip", so it can be a program name with args.
14302
21536
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
14303
21537
+if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
14304
21538
+  echo $ECHO_N "(cached) $ECHO_C" >&6
14305
 
 else
14306
 
-  echo "$as_me: failed program was:" >&5
14307
 
-sed 's/^/| /' conftest.$ac_ext >&5
 
21539
+else
14308
21540
+  if test -n "$ac_ct_STRIP"; then
14309
21541
+  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
14310
21542
+else
14323
21555
+done
14324
21556
+IFS=$as_save_IFS
14325
21557
 
14326
 
-  ac_header_preproc=no
14327
 
+fi
 
21558
 fi
 
21559
-as_val=`eval 'as_val=${'$as_ac_Header'}
 
21560
-                $as_echo "$as_val"'`
 
21561
-   if test "x$as_val" = x""yes; then
 
21562
-  cat >>confdefs.h <<_ACEOF
 
21563
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
 
21564
-_ACEOF
14328
21565
+fi
14329
21566
+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
14330
21567
+if test -n "$ac_ct_STRIP"; then
14333
21570
+else
14334
21571
+  { echo "$as_me:$LINENO: result: no" >&5
14335
21572
+echo "${ECHO_T}no" >&6; }
14336
 
 fi
 
21573
+fi
14337
21574
 
14338
 
-rm -f conftest.err conftest.$ac_ext
14339
 
-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
14340
 
-echo "${ECHO_T}$ac_header_preproc" >&6; }
14341
 
-
14342
 
-# So?  What about this header?
14343
 
-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
14344
 
-  yes:no: )
14345
 
-    { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
14346
 
-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
14347
 
-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
14348
 
-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
14349
 
-    ac_header_preproc=yes
14350
 
-    ;;
14351
 
-  no:yes:* )
14352
 
-    { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
14353
 
-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
14354
 
-    { echo "$as_me:$LINENO: WARNING: $ac_header:     check for missing prerequisite headers?" >&5
14355
 
-echo "$as_me: WARNING: $ac_header:     check for missing prerequisite headers?" >&2;}
14356
 
-    { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
14357
 
-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
14358
 
-    { echo "$as_me:$LINENO: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&5
14359
 
-echo "$as_me: WARNING: $ac_header:     section \"Present But Cannot Be Compiled\"" >&2;}
14360
 
-    { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
14361
 
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
14362
 
-    { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
14363
 
-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
14364
 
-    ( cat <<\_ASBOX
14365
 
-## -------------------------------------------------------------------- ##
14366
 
-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=totem ##
14367
 
-## -------------------------------------------------------------------- ##
14368
 
-_ASBOX
14369
 
-     ) | sed "s/^/$as_me: WARNING:     /" >&2
14370
 
-    ;;
14371
21575
+  if test "x$ac_ct_STRIP" = x; then
14372
21576
+    STRIP=":"
14373
21577
+  else
14380
21584
+whose name does not start with the host triplet.  If you think this
14381
21585
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
14382
21586
+ac_tool_warned=yes ;;
14383
 
 esac
14384
 
-{ echo "$as_me:$LINENO: checking for $ac_header" >&5
14385
 
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
14386
 
-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
14387
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
21587
+esac
14388
21588
+    STRIP=$ac_ct_STRIP
14389
21589
+  fi
14390
 
 else
14391
 
-  eval "$as_ac_Header=\$ac_header_preproc"
 
21590
+else
14392
21591
+  STRIP="$ac_cv_prog_STRIP"
14393
21592
 fi
14394
 
-ac_res=`eval echo '${'$as_ac_Header'}'`
14395
 
-              { echo "$as_me:$LINENO: result: $ac_res" >&5
14396
 
-echo "${ECHO_T}$ac_res" >&6; }
14397
21593
 
14398
 
-fi
14399
 
-if test `eval echo '${'$as_ac_Header'}'` = yes; then
14400
 
-  cat >>confdefs.h <<_ACEOF
14401
 
-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
14402
 
-_ACEOF
 
21594
-done
14403
21595
+test -z "$STRIP" && STRIP=:
14404
 
+
14405
 
+
14406
 
+
14407
 
 
 
21596
 
 
21597
 
 
21598
 
 
21599
-if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
 
21600
-    ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
 
21601
-    (test "X$CXX" != "Xg++"))) ; then
 
21602
-  ac_ext=cpp
 
21603
-ac_cpp='$CXXCPP $CPPFLAGS'
 
21604
-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
21605
-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
21606
-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
 
21607
-{ $as_echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5
 
21608
-$as_echo_n "checking how to run the C++ preprocessor... " >&6; }
 
21609
-if test -z "$CXXCPP"; then
 
21610
-  if test "${ac_cv_prog_CXXCPP+set}" = set; then
 
21611
-  $as_echo_n "(cached) " >&6
 
21612
-else
 
21613
-      # Double quotes because CXXCPP needs to be expanded
 
21614
-    for CXXCPP in "$CXX -E" "/lib/cpp"
 
21615
-    do
 
21616
-      ac_preproc_ok=false
 
21617
-for ac_cxx_preproc_warn_flag in '' yes
 
21618
-do
 
21619
-  # Use a header file that comes with gcc, so configuring glibc
 
21620
-  # with a fresh cross-compiler works.
 
21621
-  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
 
21622
-  # <limits.h> exists even on freestanding compilers.
 
21623
-  # On the NeXT, cc -E runs the code through the compiler's parser,
 
21624
-  # not just through cpp. "Syntax error" is here to catch this case.
 
21625
-  cat >conftest.$ac_ext <<_ACEOF
 
21626
-/* confdefs.h.  */
 
21627
-_ACEOF
 
21628
-cat confdefs.h >>conftest.$ac_ext
 
21629
-cat >>conftest.$ac_ext <<_ACEOF
 
21630
-/* end confdefs.h.  */
 
21631
-#ifdef __STDC__
 
21632
-# include <limits.h>
 
21633
-#else
 
21634
-# include <assert.h>
 
21635
-#endif
 
21636
-                    Syntax error
 
21637
-_ACEOF
 
21638
-if { (ac_try="$ac_cpp conftest.$ac_ext"
 
21639
-case "(($ac_try" in
 
21640
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
21641
-  *) ac_try_echo=$ac_try;;
 
21642
-esac
 
21643
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
21644
-$as_echo "$ac_try_echo") >&5
 
21645
-  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
21646
-  ac_status=$?
 
21647
-  grep -v '^ *+' conftest.er1 >conftest.err
 
21648
-  rm -f conftest.er1
 
21649
-  cat conftest.err >&5
 
21650
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
21651
-  (exit $ac_status); } >/dev/null && {
 
21652
-        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
 
21653
-        test ! -s conftest.err
 
21654
-       }; then
 
21655
-  :
 
21656
-else
 
21657
-  $as_echo "$as_me: failed program was:" >&5
 
21658
-sed 's/^/| /' conftest.$ac_ext >&5
 
21659
 
 
21660
-  # Broken: fails on valid input.
 
21661
-continue
14408
21662
-fi
14409
21663
 
14410
 
+
 
21664
-rm -f conftest.err conftest.$ac_ext
 
21665
 
 
21666
-  # OK, works on sane cases.  Now check whether nonexistent headers
 
21667
-  # can be detected and how.
 
21668
-  cat >conftest.$ac_ext <<_ACEOF
 
21669
-/* confdefs.h.  */
 
21670
-_ACEOF
 
21671
-cat confdefs.h >>conftest.$ac_ext
 
21672
-cat >>conftest.$ac_ext <<_ACEOF
 
21673
-/* end confdefs.h.  */
 
21674
-#include <ac_nonexistent.h>
 
21675
-_ACEOF
 
21676
-if { (ac_try="$ac_cpp conftest.$ac_ext"
 
21677
-case "(($ac_try" in
 
21678
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
21679
-  *) ac_try_echo=$ac_try;;
 
21680
-esac
 
21681
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
21682
-$as_echo "$ac_try_echo") >&5
 
21683
-  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
21684
-  ac_status=$?
 
21685
-  grep -v '^ *+' conftest.er1 >conftest.err
 
21686
-  rm -f conftest.er1
 
21687
-  cat conftest.err >&5
 
21688
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
21689
-  (exit $ac_status); } >/dev/null && {
 
21690
-        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
 
21691
-        test ! -s conftest.err
 
21692
-       }; then
 
21693
-  # Broken: success on invalid input.
 
21694
-continue
14411
21695
+if test -n "$ac_tool_prefix"; then
14412
21696
+  # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
14413
21697
+set dummy ${ac_tool_prefix}ranlib; ac_word=$2
14415
21699
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
14416
21700
+if test "${ac_cv_prog_RANLIB+set}" = set; then
14417
21701
+  echo $ECHO_N "(cached) $ECHO_C" >&6
14418
 
+else
 
21702
 else
 
21703
-  $as_echo "$as_me: failed program was:" >&5
 
21704
-sed 's/^/| /' conftest.$ac_ext >&5
14419
21705
+  if test -n "$RANLIB"; then
14420
21706
+  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
14421
21707
+else
14431
21717
+    break 2
14432
21718
+  fi
14433
21719
+done
14434
 
 done
 
21720
+done
14435
21721
+IFS=$as_save_IFS
14436
21722
 
 
21723
-  # Passes both tests.
 
21724
-ac_preproc_ok=:
 
21725
-break
14437
21726
+fi
14438
21727
+fi
14439
21728
+RANLIB=$ac_cv_prog_RANLIB
14443
21732
+else
14444
21733
+  { echo "$as_me:$LINENO: result: no" >&5
14445
21734
+echo "${ECHO_T}no" >&6; }
14446
 
+fi
14447
 
 
14448
 
 
14449
 
-if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
14450
 
-    ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
14451
 
-    (test "X$CXX" != "Xg++"))) ; then
14452
 
-  ac_ext=cpp
14453
 
-ac_cpp='$CXXCPP $CPPFLAGS'
14454
 
-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
14455
 
-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
14456
 
-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
14457
 
-{ echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5
14458
 
-echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6; }
14459
 
-if test -z "$CXXCPP"; then
14460
 
-  if test "${ac_cv_prog_CXXCPP+set}" = set; then
14461
 
+fi
 
21735
 fi
 
21736
 
 
21737
-rm -f conftest.err conftest.$ac_ext
 
21738
 
 
21739
-done
 
21740
-# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
 
21741
-rm -f conftest.err conftest.$ac_ext
 
21742
-if $ac_preproc_ok; then
 
21743
-  break
 
21744
 fi
 
21745
-
 
21746
-    done
 
21747
-    ac_cv_prog_CXXCPP=$CXXCPP
14462
21748
+if test -z "$ac_cv_prog_RANLIB"; then
14463
21749
+  ac_ct_RANLIB=$RANLIB
14464
21750
+  # Extract the first word of "ranlib", so it can be a program name with args.
14466
21752
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
14467
21753
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
14468
21754
+if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
14469
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
14470
 
 else
14471
 
-      # Double quotes because CXXCPP needs to be expanded
14472
 
-    for CXXCPP in "$CXX -E" "/lib/cpp"
14473
 
-    do
14474
 
-      ac_preproc_ok=false
14475
 
-for ac_cxx_preproc_warn_flag in '' yes
 
21755
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
21756
+else
14476
21757
+  if test -n "$ac_ct_RANLIB"; then
14477
21758
+  ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
14478
21759
+else
14479
21760
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
14480
21761
+for as_dir in $PATH
14481
 
 do
14482
 
-  # Use a header file that comes with gcc, so configuring glibc
14483
 
-  # with a fresh cross-compiler works.
14484
 
-  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
14485
 
-  # <limits.h> exists even on freestanding compilers.
14486
 
-  # On the NeXT, cc -E runs the code through the compiler's parser,
14487
 
-  # not just through cpp. "Syntax error" is here to catch this case.
14488
 
-  cat >conftest.$ac_ext <<_ACEOF
14489
 
-/* confdefs.h.  */
14490
 
-_ACEOF
14491
 
-cat confdefs.h >>conftest.$ac_ext
14492
 
-cat >>conftest.$ac_ext <<_ACEOF
14493
 
-/* end confdefs.h.  */
14494
 
-#ifdef __STDC__
14495
 
-# include <limits.h>
14496
 
-#else
14497
 
-# include <assert.h>
14498
 
-#endif
14499
 
-                    Syntax error
14500
 
-_ACEOF
14501
 
-if { (ac_try="$ac_cpp conftest.$ac_ext"
14502
 
-case "(($ac_try" in
14503
 
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14504
 
-  *) ac_try_echo=$ac_try;;
14505
 
-esac
14506
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14507
 
-  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
14508
 
-  ac_status=$?
14509
 
-  grep -v '^ *+' conftest.er1 >conftest.err
14510
 
-  rm -f conftest.er1
14511
 
-  cat conftest.err >&5
14512
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14513
 
-  (exit $ac_status); } >/dev/null && {
14514
 
-        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
14515
 
-        test ! -s conftest.err
14516
 
-       }; then
14517
 
-  :
14518
 
-else
14519
 
-  echo "$as_me: failed program was:" >&5
14520
 
-sed 's/^/| /' conftest.$ac_ext >&5
 
21762
+do
14521
21763
+  IFS=$as_save_IFS
14522
21764
+  test -z "$as_dir" && as_dir=.
14523
21765
+  for ac_exec_ext in '' $ac_executable_extensions; do
14530
21772
+done
14531
21773
+IFS=$as_save_IFS
14532
21774
 
14533
 
-  # Broken: fails on valid input.
14534
 
-continue
14535
 
+fi
 
21775
 fi
 
21776
-  CXXCPP=$ac_cv_prog_CXXCPP
14536
21777
+fi
14537
21778
+ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
14538
21779
+if test -n "$ac_ct_RANLIB"; then
14539
21780
+  { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
14540
21781
+echo "${ECHO_T}$ac_ct_RANLIB" >&6; }
14541
 
+else
 
21782
 else
 
21783
-  ac_cv_prog_CXXCPP=$CXXCPP
14542
21784
+  { echo "$as_me:$LINENO: result: no" >&5
14543
21785
+echo "${ECHO_T}no" >&6; }
14544
21786
 fi
14545
 
 
14546
 
-rm -f conftest.err conftest.$ac_ext
14547
 
-
14548
 
-  # OK, works on sane cases.  Now check whether nonexistent headers
14549
 
-  # can be detected and how.
 
21787
-{ $as_echo "$as_me:$LINENO: result: $CXXCPP" >&5
 
21788
-$as_echo "$CXXCPP" >&6; }
 
21789
-ac_preproc_ok=false
 
21790
-for ac_cxx_preproc_warn_flag in '' yes
 
21791
-do
 
21792
-  # Use a header file that comes with gcc, so configuring glibc
 
21793
-  # with a fresh cross-compiler works.
 
21794
-  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
 
21795
-  # <limits.h> exists even on freestanding compilers.
 
21796
-  # On the NeXT, cc -E runs the code through the compiler's parser,
 
21797
-  # not just through cpp. "Syntax error" is here to catch this case.
14550
21798
-  cat >conftest.$ac_ext <<_ACEOF
14551
21799
-/* confdefs.h.  */
14552
21800
-_ACEOF
14553
21801
-cat confdefs.h >>conftest.$ac_ext
14554
21802
-cat >>conftest.$ac_ext <<_ACEOF
14555
21803
-/* end confdefs.h.  */
14556
 
-#include <ac_nonexistent.h>
 
21804
-#ifdef __STDC__
 
21805
-# include <limits.h>
 
21806
-#else
 
21807
-# include <assert.h>
 
21808
-#endif
 
21809
-                    Syntax error
14557
21810
-_ACEOF
14558
21811
-if { (ac_try="$ac_cpp conftest.$ac_ext"
14559
21812
-case "(($ac_try" in
14560
21813
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14561
21814
-  *) ac_try_echo=$ac_try;;
 
21815
+
14562
21816
+  if test "x$ac_ct_RANLIB" = x; then
14563
21817
+    RANLIB=":"
14564
21818
+  else
14572
21826
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
14573
21827
+ac_tool_warned=yes ;;
14574
21828
 esac
14575
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
21829
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
21830
-$as_echo "$ac_try_echo") >&5
14576
21831
-  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
14577
21832
-  ac_status=$?
14578
21833
-  grep -v '^ *+' conftest.er1 >conftest.err
14579
21834
-  rm -f conftest.er1
14580
21835
-  cat conftest.err >&5
14581
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
21836
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14582
21837
-  (exit $ac_status); } >/dev/null && {
14583
21838
-        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
14584
21839
-        test ! -s conftest.err
14585
21840
-       }; then
14586
 
-  # Broken: success on invalid input.
14587
 
-continue
 
21841
-  :
14588
21842
+    RANLIB=$ac_ct_RANLIB
14589
21843
+  fi
14590
21844
 else
14591
 
-  echo "$as_me: failed program was:" >&5
 
21845
-  $as_echo "$as_me: failed program was:" >&5
14592
21846
-sed 's/^/| /' conftest.$ac_ext >&5
14593
21847
-
14594
 
-  # Passes both tests.
14595
 
-ac_preproc_ok=:
14596
 
-break
 
21848
-  # Broken: fails on valid input.
 
21849
-continue
14597
21850
+  RANLIB="$ac_cv_prog_RANLIB"
14598
21851
 fi
14599
21852
 
14600
21853
-rm -f conftest.err conftest.$ac_ext
14601
21854
+test -z "$RANLIB" && RANLIB=:
14602
21855
 
14603
 
-done
14604
 
-# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
14605
 
-rm -f conftest.err conftest.$ac_ext
14606
 
-if $ac_preproc_ok; then
14607
 
-  break
14608
 
-fi
14609
 
 
14610
 
-    done
14611
 
-    ac_cv_prog_CXXCPP=$CXXCPP
14612
 
 
14613
 
-fi
14614
 
-  CXXCPP=$ac_cv_prog_CXXCPP
14615
 
-else
14616
 
-  ac_cv_prog_CXXCPP=$CXXCPP
14617
 
-fi
14618
 
-{ echo "$as_me:$LINENO: result: $CXXCPP" >&5
14619
 
-echo "${ECHO_T}$CXXCPP" >&6; }
14620
 
-ac_preproc_ok=false
14621
 
-for ac_cxx_preproc_warn_flag in '' yes
14622
 
-do
14623
 
-  # Use a header file that comes with gcc, so configuring glibc
14624
 
-  # with a fresh cross-compiler works.
14625
 
-  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
14626
 
-  # <limits.h> exists even on freestanding compilers.
14627
 
-  # On the NeXT, cc -E runs the code through the compiler's parser,
14628
 
-  # not just through cpp. "Syntax error" is here to catch this case.
14629
 
-  cat >conftest.$ac_ext <<_ACEOF
14630
 
-/* confdefs.h.  */
14631
 
-_ACEOF
14632
 
-cat confdefs.h >>conftest.$ac_ext
14633
 
-cat >>conftest.$ac_ext <<_ACEOF
14634
 
-/* end confdefs.h.  */
14635
 
-#ifdef __STDC__
14636
 
-# include <limits.h>
14637
 
-#else
14638
 
-# include <assert.h>
14639
 
-#endif
14640
 
-                    Syntax error
14641
 
-_ACEOF
14642
 
-if { (ac_try="$ac_cpp conftest.$ac_ext"
14643
 
-case "(($ac_try" in
14644
 
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14645
 
-  *) ac_try_echo=$ac_try;;
14646
 
-esac
14647
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
14648
 
-  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
14649
 
-  ac_status=$?
14650
 
-  grep -v '^ *+' conftest.er1 >conftest.err
14651
 
-  rm -f conftest.er1
14652
 
-  cat conftest.err >&5
14653
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
14654
 
-  (exit $ac_status); } >/dev/null && {
14655
 
-        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
14656
 
-        test ! -s conftest.err
14657
 
-       }; then
14658
 
-  :
14659
 
-else
14660
 
-  echo "$as_me: failed program was:" >&5
14661
 
-sed 's/^/| /' conftest.$ac_ext >&5
14662
 
 
14663
 
-  # Broken: fails on valid input.
14664
 
-continue
14665
 
-fi
14666
 
 
14667
 
-rm -f conftest.err conftest.$ac_ext
14668
 
 
14669
21856
-  # OK, works on sane cases.  Now check whether nonexistent headers
14670
21857
-  # can be detected and how.
14671
21858
-  cat >conftest.$ac_ext <<_ACEOF
14681
21868
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14682
21869
-  *) ac_try_echo=$ac_try;;
14683
21870
-esac
14684
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
21871
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
21872
-$as_echo "$ac_try_echo") >&5
14685
21873
-  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
14686
21874
-  ac_status=$?
14687
21875
-  grep -v '^ *+' conftest.er1 >conftest.err
14688
21876
-  rm -f conftest.er1
14689
21877
-  cat conftest.err >&5
14690
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
21878
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14691
21879
-  (exit $ac_status); } >/dev/null && {
14692
21880
-        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
14693
21881
-        test ! -s conftest.err
14695
21883
-  # Broken: success on invalid input.
14696
21884
-continue
14697
21885
-else
14698
 
-  echo "$as_me: failed program was:" >&5
 
21886
-  $as_echo "$as_me: failed program was:" >&5
14699
21887
-sed 's/^/| /' conftest.$ac_ext >&5
 
21888
 
 
21889
-  # Passes both tests.
 
21890
-ac_preproc_ok=:
 
21891
-break
 
21892
-fi
 
21893
 
 
21894
-rm -f conftest.err conftest.$ac_ext
 
21895
 
 
21896
-done
 
21897
-# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
 
21898
-rm -f conftest.err conftest.$ac_ext
 
21899
-if $ac_preproc_ok; then
 
21900
-  :
 
21901
-else
 
21902
-  { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 
21903
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
21904
-{ { $as_echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check
 
21905
-See \`config.log' for more details." >&5
 
21906
-$as_echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check
 
21907
-See \`config.log' for more details." >&2;}
 
21908
-   { (exit 1); exit 1; }; }; }
 
21909
-fi
 
21910
 
 
21911
-ac_ext=cpp
 
21912
-ac_cpp='$CXXCPP $CPPFLAGS'
 
21913
-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
21914
-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
21915
-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
 
21916
 
14700
21917
+# Determine commands to create old-style static archives.
14701
21918
+old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'
14702
21919
+old_postinstall_cmds='chmod 644 $oldlib'
14703
21920
+old_postuninstall_cmds=
14704
 
 
14705
 
-  # Passes both tests.
14706
 
-ac_preproc_ok=:
14707
 
-break
 
21921
+
14708
21922
+if test -n "$RANLIB"; then
14709
21923
+  case $host_os in
14710
21924
+  openbsd*)
14717
21931
+  old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
14718
21932
 fi
14719
21933
 
14720
 
-rm -f conftest.err conftest.$ac_ext
14721
 
 
14722
 
-done
14723
 
-# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
14724
 
-rm -f conftest.err conftest.$ac_ext
14725
 
-if $ac_preproc_ok; then
14726
 
-  :
14727
 
-else
14728
 
-  { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check
14729
 
-See \`config.log' for more details." >&5
14730
 
-echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check
14731
 
-See \`config.log' for more details." >&2;}
14732
 
-   { (exit 1); exit 1; }; }
14733
 
-fi
14734
 
 
14735
 
-ac_ext=cpp
14736
 
-ac_cpp='$CXXCPP $CPPFLAGS'
14737
 
-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
14738
 
-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
14739
 
-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
14740
 
 
14741
 
-fi
14742
 
 
14743
21934
 
14744
21935
-ac_ext=f
14745
21936
-ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5'
14750
21941
-  do
14751
21942
-    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
14752
21943
-set dummy $ac_tool_prefix$ac_prog; ac_word=$2
14753
 
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
14754
 
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
21944
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
21945
-$as_echo_n "checking for $ac_word... " >&6; }
14755
21946
-if test "${ac_cv_prog_F77+set}" = set; then
14756
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
21947
-  $as_echo_n "(cached) " >&6
14757
21948
-else
14758
21949
-  if test -n "$F77"; then
14759
21950
-  ac_cv_prog_F77="$F77" # Let the user override the test.
14766
21957
-  for ac_exec_ext in '' $ac_executable_extensions; do
14767
21958
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
14768
21959
-    ac_cv_prog_F77="$ac_tool_prefix$ac_prog"
14769
 
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
21960
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
14770
21961
-    break 2
14771
21962
-  fi
14772
21963
-done
14777
21968
-fi
14778
21969
-F77=$ac_cv_prog_F77
14779
21970
-if test -n "$F77"; then
14780
 
-  { echo "$as_me:$LINENO: result: $F77" >&5
14781
 
-echo "${ECHO_T}$F77" >&6; }
 
21971
-  { $as_echo "$as_me:$LINENO: result: $F77" >&5
 
21972
-$as_echo "$F77" >&6; }
14782
21973
-else
14783
 
-  { echo "$as_me:$LINENO: result: no" >&5
14784
 
-echo "${ECHO_T}no" >&6; }
 
21974
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
21975
-$as_echo "no" >&6; }
14785
21976
-fi
14786
21977
 
14787
21978
 
14794
21985
-do
14795
21986
-  # Extract the first word of "$ac_prog", so it can be a program name with args.
14796
21987
-set dummy $ac_prog; ac_word=$2
14797
 
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
14798
 
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
21988
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
21989
-$as_echo_n "checking for $ac_word... " >&6; }
14799
21990
-if test "${ac_cv_prog_ac_ct_F77+set}" = set; then
14800
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
21991
-  $as_echo_n "(cached) " >&6
14801
21992
-else
14802
21993
-  if test -n "$ac_ct_F77"; then
14803
21994
-  ac_cv_prog_ac_ct_F77="$ac_ct_F77" # Let the user override the test.
14810
22001
-  for ac_exec_ext in '' $ac_executable_extensions; do
14811
22002
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
14812
22003
-    ac_cv_prog_ac_ct_F77="$ac_prog"
14813
 
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
22004
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
14814
22005
-    break 2
14815
22006
-  fi
14816
22007
-done
14821
22012
-fi
14822
22013
-ac_ct_F77=$ac_cv_prog_ac_ct_F77
14823
22014
-if test -n "$ac_ct_F77"; then
14824
 
-  { echo "$as_me:$LINENO: result: $ac_ct_F77" >&5
14825
 
-echo "${ECHO_T}$ac_ct_F77" >&6; }
 
22015
-  { $as_echo "$as_me:$LINENO: result: $ac_ct_F77" >&5
 
22016
-$as_echo "$ac_ct_F77" >&6; }
14826
22017
-else
14827
 
-  { echo "$as_me:$LINENO: result: no" >&5
14828
 
-echo "${ECHO_T}no" >&6; }
 
22018
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
22019
-$as_echo "no" >&6; }
14829
22020
-fi
14830
22021
 
14831
22022
 
14837
22028
-  else
14838
22029
-    case $cross_compiling:$ac_tool_warned in
14839
22030
-yes:)
14840
 
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
14841
 
-whose name does not start with the host triplet.  If you think this
14842
 
-configuration is useful to you, please write to autoconf@gnu.org." >&5
14843
 
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
14844
 
-whose name does not start with the host triplet.  If you think this
14845
 
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
22031
-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
 
22032
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
14846
22033
-ac_tool_warned=yes ;;
14847
22034
-esac
14848
22035
-    F77=$ac_ct_F77
14851
22038
 
14852
22039
 
14853
22040
-# Provide some information about the compiler.
14854
 
-echo "$as_me:$LINENO: checking for Fortran 77 compiler version" >&5
14855
 
-ac_compiler=`set X $ac_compile; echo $2`
 
22041
-$as_echo "$as_me:$LINENO: checking for Fortran 77 compiler version" >&5
 
22042
-set X $ac_compile
 
22043
-ac_compiler=$2
14856
22044
-{ (ac_try="$ac_compiler --version >&5"
14857
22045
-case "(($ac_try" in
14858
22046
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14859
22047
-  *) ac_try_echo=$ac_try;;
14860
22048
-esac
14861
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
22049
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
22050
-$as_echo "$ac_try_echo") >&5
14862
22051
-  (eval "$ac_compiler --version >&5") 2>&5
14863
22052
-  ac_status=$?
14864
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
22053
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14865
22054
-  (exit $ac_status); }
14866
22055
-{ (ac_try="$ac_compiler -v >&5"
14867
22056
-case "(($ac_try" in
14868
22057
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14869
22058
-  *) ac_try_echo=$ac_try;;
14870
22059
-esac
14871
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
22060
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
22061
-$as_echo "$ac_try_echo") >&5
14872
22062
-  (eval "$ac_compiler -v >&5") 2>&5
14873
22063
-  ac_status=$?
14874
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
22064
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14875
22065
-  (exit $ac_status); }
14876
22066
-{ (ac_try="$ac_compiler -V >&5"
14877
22067
-case "(($ac_try" in
14878
22068
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14879
22069
-  *) ac_try_echo=$ac_try;;
14880
22070
-esac
14881
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
22071
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
22072
-$as_echo "$ac_try_echo") >&5
14882
22073
-  (eval "$ac_compiler -V >&5") 2>&5
14883
22074
-  ac_status=$?
14884
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
22075
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14885
22076
-  (exit $ac_status); }
14886
22077
-rm -f a.out
14887
22078
 
14889
22080
-# input file.  (Note that this only needs to work for GNU compilers.)
14890
22081
-ac_save_ext=$ac_ext
14891
22082
-ac_ext=F
14892
 
-{ echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5
14893
 
-echo $ECHO_N "checking whether we are using the GNU Fortran 77 compiler... $ECHO_C" >&6; }
 
22083
-{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5
 
22084
-$as_echo_n "checking whether we are using the GNU Fortran 77 compiler... " >&6; }
14894
22085
-if test "${ac_cv_f77_compiler_gnu+set}" = set; then
14895
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
22086
-  $as_echo_n "(cached) " >&6
14896
22087
-else
14897
22088
-  cat >conftest.$ac_ext <<_ACEOF
14898
22089
-      program main
14908
22099
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14909
22100
-  *) ac_try_echo=$ac_try;;
14910
22101
-esac
14911
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
22102
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
22103
-$as_echo "$ac_try_echo") >&5
14912
22104
-  (eval "$ac_compile") 2>conftest.er1
14913
22105
-  ac_status=$?
14914
22106
-  grep -v '^ *+' conftest.er1 >conftest.err
14915
22107
-  rm -f conftest.er1
14916
22108
-  cat conftest.err >&5
14917
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
22109
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14918
22110
-  (exit $ac_status); } && {
14919
22111
-        test -z "$ac_f77_werror_flag" ||
14920
22112
-        test ! -s conftest.err
14921
22113
-       } && test -s conftest.$ac_objext; then
14922
22114
-  ac_compiler_gnu=yes
14923
22115
-else
14924
 
-  echo "$as_me: failed program was:" >&5
 
22116
-  $as_echo "$as_me: failed program was:" >&5
14925
22117
-sed 's/^/| /' conftest.$ac_ext >&5
14926
22118
 
14927
22119
-       ac_compiler_gnu=no
14931
22123
-ac_cv_f77_compiler_gnu=$ac_compiler_gnu
14932
22124
 
14933
22125
-fi
14934
 
-{ echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5
14935
 
-echo "${ECHO_T}$ac_cv_f77_compiler_gnu" >&6; }
 
22126
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5
 
22127
-$as_echo "$ac_cv_f77_compiler_gnu" >&6; }
14936
22128
-ac_ext=$ac_save_ext
14937
22129
-ac_test_FFLAGS=${FFLAGS+set}
14938
22130
-ac_save_FFLAGS=$FFLAGS
14939
22131
-FFLAGS=
14940
 
-{ echo "$as_me:$LINENO: checking whether $F77 accepts -g" >&5
14941
 
-echo $ECHO_N "checking whether $F77 accepts -g... $ECHO_C" >&6; }
 
22132
-{ $as_echo "$as_me:$LINENO: checking whether $F77 accepts -g" >&5
 
22133
-$as_echo_n "checking whether $F77 accepts -g... " >&6; }
14942
22134
-if test "${ac_cv_prog_f77_g+set}" = set; then
14943
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
22135
-  $as_echo_n "(cached) " >&6
14944
22136
-else
14945
22137
-  FFLAGS=-g
14946
22138
-cat >conftest.$ac_ext <<_ACEOF
14954
22146
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
14955
22147
-  *) ac_try_echo=$ac_try;;
14956
22148
-esac
14957
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
22149
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
22150
-$as_echo "$ac_try_echo") >&5
14958
22151
-  (eval "$ac_compile") 2>conftest.er1
14959
22152
-  ac_status=$?
14960
22153
-  grep -v '^ *+' conftest.er1 >conftest.err
14961
22154
-  rm -f conftest.er1
14962
22155
-  cat conftest.err >&5
14963
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
22156
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
14964
22157
-  (exit $ac_status); } && {
14965
22158
-        test -z "$ac_f77_werror_flag" ||
14966
22159
-        test ! -s conftest.err
14967
22160
-       } && test -s conftest.$ac_objext; then
14968
22161
-  ac_cv_prog_f77_g=yes
14969
22162
-else
14970
 
-  echo "$as_me: failed program was:" >&5
 
22163
-  $as_echo "$as_me: failed program was:" >&5
14971
22164
-sed 's/^/| /' conftest.$ac_ext >&5
14972
22165
 
14973
22166
-       ac_cv_prog_f77_g=no
14976
22169
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14977
22170
 
14978
22171
-fi
14979
 
-{ echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5
14980
 
-echo "${ECHO_T}$ac_cv_prog_f77_g" >&6; }
 
22172
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5
 
22173
-$as_echo "$ac_cv_prog_f77_g" >&6; }
14981
22174
-if test "$ac_test_FFLAGS" = set; then
14982
22175
-  FFLAGS=$ac_save_FFLAGS
14983
22176
-elif test $ac_cv_prog_f77_g = yes; then
14994
22187
-  fi
14995
22188
-fi
14996
22189
 
14997
 
-G77=`test $ac_compiler_gnu = yes && echo yes`
 
22190
-if test $ac_compiler_gnu = yes; then
 
22191
-  G77=yes
 
22192
-else
 
22193
-  G77=
 
22194
-fi
14998
22195
-ac_ext=c
14999
22196
-ac_cpp='$CPP $CPPFLAGS'
15000
22197
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
15004
22201
 
15005
22202
 
15006
22203
-# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers!
15007
 
 
15008
22204
-# find the maximum length of command line arguments
15009
 
-{ echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5
15010
 
-echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6; }
 
22205
-{ $as_echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5
 
22206
-$as_echo_n "checking the maximum length of command line arguments... " >&6; }
15011
22207
-if test "${lt_cv_sys_max_cmd_len+set}" = set; then
15012
 
+
15013
 
+
15014
 
+
15015
 
+
15016
 
+
15017
 
+# If no C compiler was specified, use CC.
15018
 
+LTCC=${LTCC-"$CC"}
15019
 
+
15020
 
+# If no C compiler flags were specified, use CFLAGS.
15021
 
+LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
15022
 
+
15023
 
+# Allow CC to be a program name with arguments.
15024
 
+compiler=$CC
15025
 
+
15026
 
+
15027
 
+# Check for command to grab the raw symbol name followed by C symbol from nm.
15028
 
+{ echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5
15029
 
+echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6; }
15030
 
+if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then
15031
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
15032
 
 else
 
22208
-  $as_echo_n "(cached) " >&6
 
22209
-else
15033
22210
-    i=0
15034
22211
-  teststring="ABCD"
15035
22212
 
15041
22218
-    # check would be larger than it should be.
15042
22219
-    lt_cv_sys_max_cmd_len=12288;    # 12K is about right
15043
22220
-    ;;
15044
 
+# These are sane defaults that work on at least a few old systems.
15045
 
+# [They come from Ultrix.  What could be older than Ultrix?!! ;)]
15046
22221
 
15047
22222
-  gnu*)
15048
22223
-    # Under GNU Hurd, this test is not required because there is
15050
22225
-    # Libtool will interpret -1 as no limit whatsoever
15051
22226
-    lt_cv_sys_max_cmd_len=-1;
15052
22227
-    ;;
15053
 
+# Character class describing NM global symbol codes.
15054
 
+symcode='[BCDEGRST]'
15055
22228
 
15056
22229
-  cygwin* | mingw*)
15057
22230
-    # On Win9x/ME, this test blows up -- it succeeds, but takes
15063
22236
-    # all of the supported platforms: 8192 (on NT/2K/XP).
15064
22237
-    lt_cv_sys_max_cmd_len=8192;
15065
22238
-    ;;
15066
 
+# Regexp to match symbols that can be accessed directly from C.
15067
 
+sympat='\([_A-Za-z][_A-Za-z0-9]*\)'
15068
22239
 
15069
22240
-  amigaos*)
15070
22241
-    # On AmigaOS with pdksh, this test takes hours, literally.
15071
22242
-    # So we just punt and use a minimum line length of 8192.
15072
22243
-    lt_cv_sys_max_cmd_len=8192;
15073
 
+# Define system-specific variables.
15074
 
+case $host_os in
15075
 
+aix*)
15076
 
+  symcode='[BCDT]'
15077
 
     ;;
15078
 
-
 
22244
-    ;;
 
22245
 
15079
22246
-  netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
15080
22247
-    # This has been around since 386BSD, at least.  Likely further.
15081
22248
-    if test -x /sbin/sysctl; then
15084
22251
-      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
15085
22252
-    else
15086
22253
-      lt_cv_sys_max_cmd_len=65536      # usable default for all BSDs
15087
 
+cygwin* | mingw* | pw32*)
15088
 
+  symcode='[ABCDGISTW]'
15089
 
+  ;;
15090
 
+hpux*)
15091
 
+  if test "$host_cpu" = ia64; then
15092
 
+    symcode='[ABCDEGRST]'
15093
 
     fi
 
22254
-    fi
15094
22255
-    # And add a safety zone
15095
22256
-    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
15096
22257
-    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
15097
 
     ;;
15098
 
-
 
22258
-    ;;
 
22259
 
15099
22260
-  interix*)
15100
22261
-    # We know the value 262144 and hardcode it with a safety zone (like BSD)
15101
22262
-    lt_cv_sys_max_cmd_len=196608
15102
 
+irix* | nonstopux*)
15103
 
+  symcode='[BCDEGRST]'
15104
 
     ;;
15105
 
-
 
22263
-    ;;
 
22264
 
15106
22265
-  osf*)
15107
22266
-    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
15108
22267
-    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
15115
22274
-        *1*) lt_cv_sys_max_cmd_len=-1 ;;
15116
22275
-      esac
15117
22276
-    fi
15118
 
+osf*)
15119
 
+  symcode='[BCDEGQRST]'
15120
 
     ;;
 
22277
-    ;;
15121
22278
-  sco3.2v5*)
15122
22279
-    lt_cv_sys_max_cmd_len=102400
15123
22280
-    ;;
15153
22310
-    fi
15154
22311
-    ;;
15155
22312
-  esac
15156
 
-
 
22313
 
15157
22314
-fi
15158
 
-
 
22315
 
15159
22316
-if test -n $lt_cv_sys_max_cmd_len ; then
15160
 
-  { echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5
15161
 
-echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6; }
 
22317
-  { $as_echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5
 
22318
-$as_echo "$lt_cv_sys_max_cmd_len" >&6; }
15162
22319
-else
15163
 
-  { echo "$as_me:$LINENO: result: none" >&5
15164
 
-echo "${ECHO_T}none" >&6; }
 
22320
-  { $as_echo "$as_me:$LINENO: result: none" >&5
 
22321
-$as_echo "none" >&6; }
15165
22322
-fi
15166
 
-
15167
 
-
15168
 
-
15169
 
-
15170
 
-
15171
 
-# Check for command to grab the raw symbol name followed by C symbol from nm.
15172
 
-{ echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5
15173
 
-echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6; }
15174
 
-if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then
15175
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
15176
 
-else
15177
 
-
15178
 
-# These are sane defaults that work on at least a few old systems.
15179
 
-# [They come from Ultrix.  What could be older than Ultrix?!! ;)]
15180
 
-
15181
 
-# Character class describing NM global symbol codes.
15182
 
-symcode='[BCDEGRST]'
15183
 
-
15184
 
-# Regexp to match symbols that can be accessed directly from C.
15185
 
-sympat='\([_A-Za-z][_A-Za-z0-9]*\)'
15186
 
-
 
22323
 
 
22324
+# If no C compiler was specified, use CC.
 
22325
+LTCC=${LTCC-"$CC"}
 
22326
 
 
22327
+# If no C compiler flags were specified, use CFLAGS.
 
22328
+LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
 
22329
 
 
22330
+# Allow CC to be a program name with arguments.
 
22331
+compiler=$CC
 
22332
 
 
22333
 
 
22334
 # Check for command to grab the raw symbol name followed by C symbol from nm.
 
22335
-{ $as_echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5
 
22336
-$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; }
 
22337
+{ echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5
 
22338
+echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6; }
 
22339
 if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then
 
22340
-  $as_echo_n "(cached) " >&6
 
22341
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
22342
 else
 
22343
 
 
22344
 # These are sane defaults that work on at least a few old systems.
 
22345
@@ -9286,12 +8870,6 @@
 
22346
 # Regexp to match symbols that can be accessed directly from C.
 
22347
 sympat='\([_A-Za-z][_A-Za-z0-9]*\)'
 
22348
 
15187
22349
-# Transform an extracted symbol line into a proper C declaration
15188
22350
-lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'"
15189
22351
-
15190
22352
-# Transform an extracted symbol line into symbol name and symbol address
15191
22353
-lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/  {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([^ ]*\) \([^ ]*\)$/  {\"\2\", (lt_ptr) \&\2},/p'"
15192
22354
-
15193
 
-# Define system-specific variables.
15194
 
-case $host_os in
15195
 
-aix*)
15196
 
-  symcode='[BCDT]'
15197
 
-  ;;
15198
 
-cygwin* | mingw* | pw32*)
15199
 
-  symcode='[ABCDGISTW]'
15200
 
-  ;;
 
22355
 # Define system-specific variables.
 
22356
 case $host_os in
 
22357
 aix*)
 
22358
@@ -9300,19 +8878,10 @@
 
22359
 cygwin* | mingw* | pw32*)
 
22360
   symcode='[ABCDGISTW]'
 
22361
   ;;
15201
22362
-hpux*) # Its linker distinguishes data from code symbols
15202
 
-  if test "$host_cpu" = ia64; then
15203
 
-    symcode='[ABCDEGRST]'
15204
 
-  fi
 
22363
+hpux*)
 
22364
   if test "$host_cpu" = ia64; then
 
22365
     symcode='[ABCDEGRST]'
 
22366
   fi
15205
22367
-  lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
15206
22368
-  lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/  {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/  {\"\2\", (lt_ptr) \&\2},/p'"
15207
22369
-  ;;
15211
22373
-    lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
15212
22374
-    lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/  {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/  {\"\2\", (lt_ptr) \&\2},/p'"
15213
22375
-  fi
15214
 
-  ;;
15215
 
-irix* | nonstopux*)
15216
 
-  symcode='[BCDEGRST]'
15217
 
-  ;;
15218
 
-osf*)
15219
 
-  symcode='[BCDEGQRST]'
15220
 
-  ;;
15221
 
-solaris*)
15222
 
-  symcode='[BDRT]'
15223
 
+solaris*)
15224
 
+  symcode='[BDRT]'
15225
22376
   ;;
15226
 
 sco3.2v5*)
15227
 
   symcode='[DT]'
15228
 
@@ -9023,44 +8906,72 @@
 
22377
 irix* | nonstopux*)
 
22378
   symcode='[BCDEGRST]'
 
22379
@@ -9337,56 +8906,84 @@
15229
22380
   ;;
15230
22381
 esac
15231
22382
 
15267
22418
   symxfrm="\\1 $ac_symprfx\\2 \\2"
15268
22419
 
15269
22420
   # Write the raw and C identifiers.
 
22421
-  lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[      ]\($symcode$symcode*\)[         ][      ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
15270
22422
+  if test "$lt_cv_nm_interface" = "MS dumpbin"; then
15271
22423
+    # Fake it for dumpbin and say T for any non-static function
15272
22424
+    # and D for any global variable.
15284
22436
+"     s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\
15285
22437
+"     ' prfx=^$ac_symprfx"
15286
22438
+  else
15287
 
   lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[      ]\($symcode$symcode*\)[         ][      ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
 
22439
+    lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[     ]\($symcode$symcode*\)[         ][      ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
15288
22440
+  fi
15289
22441
 
15290
22442
   # Check to see that the pipe works correctly.
15309
22461
 
15310
22462
   if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
15311
22463
   (eval $ac_compile) 2>&5
15312
 
@@ -9082,42 +8993,44 @@
 
22464
   ac_status=$?
 
22465
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
22466
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
22467
   (exit $ac_status); }; then
 
22468
     # Now try to grab the symbols.
 
22469
     nlist=conftest.nm
 
22470
     if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5
 
22471
   (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5
 
22472
   ac_status=$?
 
22473
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
22474
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
22475
   (exit $ac_status); } && test -s "$nlist"; then
 
22476
       # Try sorting and uniquifying the output.
 
22477
       if sort "$nlist" | uniq > "$nlist"T; then
 
22478
@@ -9396,42 +8993,44 @@
15313
22479
       fi
15314
22480
 
15315
22481
       # Make sure that we snagged all the symbols we need.
15338
22504
-#endif
15339
22505
+         cat <<_LT_EOF >> conftest.$ac_ext
15340
22506
 
15341
 
 /* The mapping between symbol names and symbols. */
 
22507
-/* The mapping between symbol names and symbols. */
 
22508
+/* The mapping between symbol names and symbols.  */
15342
22509
 const struct {
15343
22510
   const char *name;
15344
22511
-  lt_ptr_t address;
15373
22540
          # Now try linking the two files.
15374
22541
          mv conftest.$ac_objext conftstm.$ac_objext
15375
22542
          lt_save_LIBS="$LIBS"
15376
 
@@ -9146,7 +9059,7 @@
15377
 
     echo "$progname: failed program was:" >&5
15378
 
     cat conftest.$ac_ext >&5
15379
 
   fi
15380
 
-  rm -f conftest* conftst*
15381
 
+  rm -rf conftest* conftst*
15382
 
 
15383
 
   # Do not use the global_symbol_pipe unless it works.
15384
 
   if test "$pipe_works" = yes; then
15385
 
@@ -9169,177 +9082,259 @@
15386
 
 echo "${ECHO_T}ok" >&6; }
15387
 
 fi
15388
 
 
15389
 
-{ echo "$as_me:$LINENO: checking for objdir" >&5
15390
 
-echo $ECHO_N "checking for objdir... $ECHO_C" >&6; }
 
22543
@@ -9441,7 +9040,7 @@
 
22544
          if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
22545
   (eval $ac_link) 2>&5
 
22546
   ac_status=$?
 
22547
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
22548
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
22549
   (exit $ac_status); } && test -s conftest${ac_exeext}; then
 
22550
            pipe_works=yes
 
22551
          fi
 
22552
@@ -9476,189 +9075,275 @@
 
22553
   lt_cv_sys_global_symbol_to_cdecl=
 
22554
 fi
 
22555
 if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
 
22556
-  { $as_echo "$as_me:$LINENO: result: failed" >&5
 
22557
-$as_echo "failed" >&6; }
 
22558
+  { echo "$as_me:$LINENO: result: failed" >&5
 
22559
+echo "${ECHO_T}failed" >&6; }
 
22560
 else
 
22561
-  { $as_echo "$as_me:$LINENO: result: ok" >&5
 
22562
-$as_echo "ok" >&6; }
 
22563
+  { echo "$as_me:$LINENO: result: ok" >&5
 
22564
+echo "${ECHO_T}ok" >&6; }
 
22565
 fi
 
22566
 
 
22567
-{ $as_echo "$as_me:$LINENO: checking for objdir" >&5
 
22568
-$as_echo_n "checking for objdir... " >&6; }
15391
22569
-if test "${lt_cv_objdir+set}" = set; then
15392
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
22570
-  $as_echo_n "(cached) " >&6
15393
22571
-else
15394
22572
-  rm -f .libs 2>/dev/null
15395
22573
-mkdir .libs 2>/dev/null
15401
22579
-fi
15402
22580
-rmdir .libs 2>/dev/null
15403
22581
-fi
15404
 
-{ echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5
15405
 
-echo "${ECHO_T}$lt_cv_objdir" >&6; }
 
22582
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5
 
22583
-$as_echo "$lt_cv_objdir" >&6; }
15406
22584
-objdir=$lt_cv_objdir
15407
22585
 
15408
22586
 
15453
22631
-if test -n "$ac_tool_prefix"; then
15454
22632
-  # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
15455
22633
-set dummy ${ac_tool_prefix}ar; ac_word=$2
15456
 
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
15457
 
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
22634
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
22635
-$as_echo_n "checking for $ac_word... " >&6; }
15458
22636
-if test "${ac_cv_prog_AR+set}" = set; then
15459
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
22637
-  $as_echo_n "(cached) " >&6
15460
22638
-else
15461
22639
-  if test -n "$AR"; then
15462
22640
-  ac_cv_prog_AR="$AR" # Let the user override the test.
15469
22647
-  for ac_exec_ext in '' $ac_executable_extensions; do
15470
22648
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
15471
22649
-    ac_cv_prog_AR="${ac_tool_prefix}ar"
15472
 
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
22650
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
15473
22651
-    break 2
15474
22652
-  fi
15475
22653
-done
15480
22658
-fi
15481
22659
-AR=$ac_cv_prog_AR
15482
22660
-if test -n "$AR"; then
15483
 
-  { echo "$as_me:$LINENO: result: $AR" >&5
15484
 
-echo "${ECHO_T}$AR" >&6; }
 
22661
-  { $as_echo "$as_me:$LINENO: result: $AR" >&5
 
22662
-$as_echo "$AR" >&6; }
15485
22663
-else
15486
 
-  { echo "$as_me:$LINENO: result: no" >&5
15487
 
-echo "${ECHO_T}no" >&6; }
 
22664
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
22665
-$as_echo "no" >&6; }
15488
22666
-fi
15489
22667
 
15490
22668
 
15493
22671
-  ac_ct_AR=$AR
15494
22672
-  # Extract the first word of "ar", so it can be a program name with args.
15495
22673
-set dummy ar; ac_word=$2
15496
 
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
15497
 
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
22674
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
22675
-$as_echo_n "checking for $ac_word... " >&6; }
15498
22676
-if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
15499
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
22677
-  $as_echo_n "(cached) " >&6
15500
22678
-else
15501
22679
-  if test -n "$ac_ct_AR"; then
15502
22680
-  ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test.
15509
22687
-  for ac_exec_ext in '' $ac_executable_extensions; do
15510
22688
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
15511
22689
-    ac_cv_prog_ac_ct_AR="ar"
15512
 
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
22690
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
15513
22691
-    break 2
15514
22692
-  fi
15515
22693
-done
15520
22698
-fi
15521
22699
-ac_ct_AR=$ac_cv_prog_ac_ct_AR
15522
22700
-if test -n "$ac_ct_AR"; then
15523
 
-  { echo "$as_me:$LINENO: result: $ac_ct_AR" >&5
15524
 
-echo "${ECHO_T}$ac_ct_AR" >&6; }
 
22701
-  { $as_echo "$as_me:$LINENO: result: $ac_ct_AR" >&5
 
22702
-$as_echo "$ac_ct_AR" >&6; }
15525
22703
-else
15526
 
-  { echo "$as_me:$LINENO: result: no" >&5
15527
 
-echo "${ECHO_T}no" >&6; }
 
22704
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
22705
-$as_echo "no" >&6; }
15528
22706
-fi
15529
22707
 
15530
22708
-  if test "x$ac_ct_AR" = x; then
15532
22710
-  else
15533
22711
-    case $cross_compiling:$ac_tool_warned in
15534
22712
-yes:)
15535
 
-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
15536
 
-whose name does not start with the host triplet.  If you think this
15537
 
-configuration is useful to you, please write to autoconf@gnu.org." >&5
15538
 
-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
15539
 
-whose name does not start with the host triplet.  If you think this
15540
 
-configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
22713
-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
 
22714
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
15541
22715
-ac_tool_warned=yes ;;
15542
22716
-esac
15543
22717
-    AR=$ac_ct_AR
15555
22729
-if test -n "$ac_tool_prefix"; then
15556
22730
-  # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
15557
22731
-set dummy ${ac_tool_prefix}ranlib; ac_word=$2
15558
 
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
15559
 
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
22732
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
22733
-$as_echo_n "checking for $ac_word... " >&6; }
15560
22734
-if test "${ac_cv_prog_RANLIB+set}" = set; then
15561
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
22735
-  $as_echo_n "(cached) " >&6
15562
22736
-else
15563
22737
-  if test -n "$RANLIB"; then
15564
22738
-  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
15565
22739
-else
 
22740
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
22741
-for as_dir in $PATH
 
22742
-do
15566
22743
+test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
15567
22744
+
15568
22745
+# Some flags need to be propagated to the compiler or linker for good
15790
22967
+  if test -n "$DSYMUTIL"; then
15791
22968
+  ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test.
15792
22969
+else
15793
 
 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
15794
 
 for as_dir in $PATH
15795
 
 do
15796
 
@@ -9347,7 +9342,7 @@
 
22970
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
22971
+for as_dir in $PATH
 
22972
+do
 
22973
   IFS=$as_save_IFS
15797
22974
   test -z "$as_dir" && as_dir=.
15798
22975
   for ac_exec_ext in '' $ac_executable_extensions; do
15799
22976
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
15800
22977
-    ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
 
22978
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
15801
22979
+    ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil"
15802
 
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
22980
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
15803
22981
     break 2
15804
22982
   fi
15805
 
@@ -9357,10 +9352,10 @@
 
22983
 done
 
22984
@@ -9667,28 +9352,28 @@
15806
22985
 
15807
22986
 fi
15808
22987
 fi
15809
22988
-RANLIB=$ac_cv_prog_RANLIB
15810
22989
-if test -n "$RANLIB"; then
15811
 
-  { echo "$as_me:$LINENO: result: $RANLIB" >&5
15812
 
-echo "${ECHO_T}$RANLIB" >&6; }
 
22990
-  { $as_echo "$as_me:$LINENO: result: $RANLIB" >&5
 
22991
-$as_echo "$RANLIB" >&6; }
15813
22992
+DSYMUTIL=$ac_cv_prog_DSYMUTIL
15814
22993
+if test -n "$DSYMUTIL"; then
15815
22994
+  { echo "$as_me:$LINENO: result: $DSYMUTIL" >&5
15816
22995
+echo "${ECHO_T}$DSYMUTIL" >&6; }
15817
22996
 else
15818
 
   { echo "$as_me:$LINENO: result: no" >&5
15819
 
 echo "${ECHO_T}no" >&6; }
15820
 
@@ -9368,17 +9363,17 @@
 
22997
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
22998
-$as_echo "no" >&6; }
 
22999
+  { echo "$as_me:$LINENO: result: no" >&5
 
23000
+echo "${ECHO_T}no" >&6; }
 
23001
 fi
15821
23002
 
15822
23003
 
15823
23004
 fi
15825
23006
-  ac_ct_RANLIB=$RANLIB
15826
23007
-  # Extract the first word of "ranlib", so it can be a program name with args.
15827
23008
-set dummy ranlib; ac_word=$2
 
23009
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
23010
-$as_echo_n "checking for $ac_word... " >&6; }
 
23011
-if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
 
23012
-  $as_echo_n "(cached) " >&6
15828
23013
+if test -z "$ac_cv_prog_DSYMUTIL"; then
15829
23014
+  ac_ct_DSYMUTIL=$DSYMUTIL
15830
23015
+  # Extract the first word of "dsymutil", so it can be a program name with args.
15831
23016
+set dummy dsymutil; ac_word=$2
15832
 
 { echo "$as_me:$LINENO: checking for $ac_word" >&5
15833
 
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
15834
 
-if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
 
23017
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
23018
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
15835
23019
+if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then
15836
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
23020
+  echo $ECHO_N "(cached) $ECHO_C" >&6
15837
23021
 else
15838
23022
-  if test -n "$ac_ct_RANLIB"; then
15839
23023
-  ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
15842
23026
 else
15843
23027
 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
15844
23028
 for as_dir in $PATH
15845
 
@@ -9387,7 +9382,7 @@
 
23029
@@ -9697,8 +9382,8 @@
15846
23030
   test -z "$as_dir" && as_dir=.
15847
23031
   for ac_exec_ext in '' $ac_executable_extensions; do
15848
23032
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
15849
23033
-    ac_cv_prog_ac_ct_RANLIB="ranlib"
 
23034
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
15850
23035
+    ac_cv_prog_ac_ct_DSYMUTIL="dsymutil"
15851
 
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
23036
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
15852
23037
     break 2
15853
23038
   fi
15854
 
@@ -9397,17 +9392,17 @@
 
23039
 done
 
23040
@@ -9707,40 +9392,44 @@
15855
23041
 
15856
23042
 fi
15857
23043
 fi
15858
23044
-ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
15859
23045
-if test -n "$ac_ct_RANLIB"; then
15860
 
-  { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
15861
 
-echo "${ECHO_T}$ac_ct_RANLIB" >&6; }
 
23046
-  { $as_echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
 
23047
-$as_echo "$ac_ct_RANLIB" >&6; }
15862
23048
+ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL
15863
23049
+if test -n "$ac_ct_DSYMUTIL"; then
15864
23050
+  { echo "$as_me:$LINENO: result: $ac_ct_DSYMUTIL" >&5
15865
23051
+echo "${ECHO_T}$ac_ct_DSYMUTIL" >&6; }
15866
23052
 else
15867
 
   { echo "$as_me:$LINENO: result: no" >&5
15868
 
 echo "${ECHO_T}no" >&6; }
 
23053
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
23054
-$as_echo "no" >&6; }
 
23055
+  { echo "$as_me:$LINENO: result: no" >&5
 
23056
+echo "${ECHO_T}no" >&6; }
15869
23057
 fi
15870
23058
 
15871
23059
-  if test "x$ac_ct_RANLIB" = x; then
15875
23063
   else
15876
23064
     case $cross_compiling:$ac_tool_warned in
15877
23065
 yes:)
15878
 
@@ -9419,22 +9414,22 @@
15879
 
 configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
23066
-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
 
23067
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
23068
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
 
23069
+whose name does not start with the host triplet.  If you think this
 
23070
+configuration is useful to you, please write to autoconf@gnu.org." >&5
 
23071
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
 
23072
+whose name does not start with the host triplet.  If you think this
 
23073
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
15880
23074
 ac_tool_warned=yes ;;
15881
23075
 esac
15882
23076
-    RANLIB=$ac_ct_RANLIB
15890
23084
-if test -n "$ac_tool_prefix"; then
15891
23085
-  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
15892
23086
-set dummy ${ac_tool_prefix}strip; ac_word=$2
 
23087
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
23088
-$as_echo_n "checking for $ac_word... " >&6; }
 
23089
-if test "${ac_cv_prog_STRIP+set}" = set; then
 
23090
-  $as_echo_n "(cached) " >&6
15893
23091
+    if test -n "$ac_tool_prefix"; then
15894
23092
+  # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args.
15895
23093
+set dummy ${ac_tool_prefix}nmedit; ac_word=$2
15896
 
 { echo "$as_me:$LINENO: checking for $ac_word" >&5
15897
 
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
15898
 
-if test "${ac_cv_prog_STRIP+set}" = set; then
 
23094
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
23095
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
15899
23096
+if test "${ac_cv_prog_NMEDIT+set}" = set; then
15900
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
23097
+  echo $ECHO_N "(cached) $ECHO_C" >&6
15901
23098
 else
15902
23099
-  if test -n "$STRIP"; then
15903
23100
-  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
15906
23103
 else
15907
23104
 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
15908
23105
 for as_dir in $PATH
15909
 
@@ -9443,7 +9438,7 @@
 
23106
@@ -9749,8 +9438,8 @@
15910
23107
   test -z "$as_dir" && as_dir=.
15911
23108
   for ac_exec_ext in '' $ac_executable_extensions; do
15912
23109
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
15913
23110
-    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
 
23111
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
15914
23112
+    ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit"
15915
 
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
23113
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
15916
23114
     break 2
15917
23115
   fi
15918
 
@@ -9453,10 +9448,10 @@
 
23116
 done
 
23117
@@ -9759,28 +9448,28 @@
15919
23118
 
15920
23119
 fi
15921
23120
 fi
15922
23121
-STRIP=$ac_cv_prog_STRIP
15923
23122
-if test -n "$STRIP"; then
15924
 
-  { echo "$as_me:$LINENO: result: $STRIP" >&5
15925
 
-echo "${ECHO_T}$STRIP" >&6; }
 
23123
-  { $as_echo "$as_me:$LINENO: result: $STRIP" >&5
 
23124
-$as_echo "$STRIP" >&6; }
15926
23125
+NMEDIT=$ac_cv_prog_NMEDIT
15927
23126
+if test -n "$NMEDIT"; then
15928
23127
+  { echo "$as_me:$LINENO: result: $NMEDIT" >&5
15929
23128
+echo "${ECHO_T}$NMEDIT" >&6; }
15930
23129
 else
15931
 
   { echo "$as_me:$LINENO: result: no" >&5
15932
 
 echo "${ECHO_T}no" >&6; }
15933
 
@@ -9464,17 +9459,17 @@
 
23130
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
23131
-$as_echo "no" >&6; }
 
23132
+  { echo "$as_me:$LINENO: result: no" >&5
 
23133
+echo "${ECHO_T}no" >&6; }
 
23134
 fi
15934
23135
 
15935
23136
 
15936
23137
 fi
15938
23139
-  ac_ct_STRIP=$STRIP
15939
23140
-  # Extract the first word of "strip", so it can be a program name with args.
15940
23141
-set dummy strip; ac_word=$2
 
23142
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
23143
-$as_echo_n "checking for $ac_word... " >&6; }
 
23144
-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
 
23145
-  $as_echo_n "(cached) " >&6
15941
23146
+if test -z "$ac_cv_prog_NMEDIT"; then
15942
23147
+  ac_ct_NMEDIT=$NMEDIT
15943
23148
+  # Extract the first word of "nmedit", so it can be a program name with args.
15944
23149
+set dummy nmedit; ac_word=$2
15945
 
 { echo "$as_me:$LINENO: checking for $ac_word" >&5
15946
 
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
15947
 
-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
 
23150
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
23151
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
15948
23152
+if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then
15949
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
23153
+  echo $ECHO_N "(cached) $ECHO_C" >&6
15950
23154
 else
15951
23155
-  if test -n "$ac_ct_STRIP"; then
15952
23156
-  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
15955
23159
 else
15956
23160
 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
15957
23161
 for as_dir in $PATH
15958
 
@@ -9483,7 +9478,7 @@
 
23162
@@ -9789,8 +9478,8 @@
15959
23163
   test -z "$as_dir" && as_dir=.
15960
23164
   for ac_exec_ext in '' $ac_executable_extensions; do
15961
23165
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
15962
23166
-    ac_cv_prog_ac_ct_STRIP="strip"
 
23167
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
15963
23168
+    ac_cv_prog_ac_ct_NMEDIT="nmedit"
15964
 
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
23169
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
15965
23170
     break 2
15966
23171
   fi
15967
 
@@ -9493,17 +9488,17 @@
 
23172
 done
 
23173
@@ -9799,228 +9488,140 @@
15968
23174
 
15969
23175
 fi
15970
23176
 fi
15971
23177
-ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
15972
23178
-if test -n "$ac_ct_STRIP"; then
15973
 
-  { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
15974
 
-echo "${ECHO_T}$ac_ct_STRIP" >&6; }
 
23179
-  { $as_echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
 
23180
-$as_echo "$ac_ct_STRIP" >&6; }
15975
23181
+ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT
15976
23182
+if test -n "$ac_ct_NMEDIT"; then
15977
23183
+  { echo "$as_me:$LINENO: result: $ac_ct_NMEDIT" >&5
15978
23184
+echo "${ECHO_T}$ac_ct_NMEDIT" >&6; }
15979
23185
 else
15980
 
   { echo "$as_me:$LINENO: result: no" >&5
15981
 
 echo "${ECHO_T}no" >&6; }
 
23186
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
23187
-$as_echo "no" >&6; }
 
23188
+  { echo "$as_me:$LINENO: result: no" >&5
 
23189
+echo "${ECHO_T}no" >&6; }
15982
23190
 fi
15983
23191
 
15984
23192
-  if test "x$ac_ct_STRIP" = x; then
15988
23196
   else
15989
23197
     case $cross_compiling:$ac_tool_warned in
15990
23198
 yes:)
15991
 
@@ -9515,1211 +9510,799 @@
15992
 
 configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
23199
-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
 
23200
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
23201
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
 
23202
+whose name does not start with the host triplet.  If you think this
 
23203
+configuration is useful to you, please write to autoconf@gnu.org." >&5
 
23204
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
 
23205
+whose name does not start with the host triplet.  If you think this
 
23206
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
15993
23207
 ac_tool_warned=yes ;;
15994
23208
 esac
15995
23209
-    STRIP=$ac_ct_STRIP
15997
23211
   fi
15998
23212
 else
15999
23213
-  STRIP="$ac_cv_prog_STRIP"
16000
 
-fi
16001
 
-
 
23214
+  NMEDIT="$ac_cv_prog_NMEDIT"
 
23215
 fi
 
23216
 
16002
23217
-
16003
23218
-old_CC="$CC"
16004
23219
-old_CFLAGS="$CFLAGS"
16036
23251
-    ;;
16037
23252
-  esac
16038
23253
-  old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
16039
 
+  NMEDIT="$ac_cv_prog_NMEDIT"
16040
 
 fi
16041
 
 
 
23254
-fi
 
23255
-
16042
23256
-for cc_temp in $compiler""; do
16043
23257
-  case $cc_temp in
16044
23258
-    compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
16046
23260
-    \-*) ;;
16047
23261
-    *) break;;
16048
23262
-  esac
16049
 
-done
16050
 
-cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
16051
 
-
16052
 
-
16053
 
-# Only perform the check for file, if the check method requires it
16054
 
-case $deplibs_check_method in
16055
 
-file_magic*)
16056
 
-  if test "$file_magic_cmd" = '$MAGIC_CMD'; then
16057
 
-    { echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5
16058
 
-echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6; }
16059
 
-if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
16060
23263
+    if test -n "$ac_tool_prefix"; then
16061
23264
+  # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args.
16062
23265
+set dummy ${ac_tool_prefix}lipo; ac_word=$2
16063
23266
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
16064
23267
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
16065
23268
+if test "${ac_cv_prog_LIPO+set}" = set; then
16066
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
16067
 
 else
16068
 
-  case $MAGIC_CMD in
16069
 
-[\\/*] |  ?:[\\/]*)
16070
 
-  lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
16071
 
-  ;;
16072
 
-*)
16073
 
-  lt_save_MAGIC_CMD="$MAGIC_CMD"
16074
 
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
16075
 
-  ac_dummy="/usr/bin$PATH_SEPARATOR$PATH"
16076
 
-  for ac_dir in $ac_dummy; do
16077
 
-    IFS="$lt_save_ifs"
16078
 
-    test -z "$ac_dir" && ac_dir=.
16079
 
-    if test -f $ac_dir/${ac_tool_prefix}file; then
16080
 
-      lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file"
16081
 
-      if test -n "$file_magic_test_file"; then
16082
 
-       case $deplibs_check_method in
16083
 
-       "file_magic "*)
16084
 
-         file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
16085
 
-         MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
16086
 
-         if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
16087
 
-           $EGREP "$file_magic_regex" > /dev/null; then
16088
 
-           :
16089
 
-         else
16090
 
-           cat <<EOF 1>&2
16091
 
-
16092
 
-*** Warning: the command libtool uses to detect shared libraries,
16093
 
-*** $file_magic_cmd, produces output that libtool cannot recognize.
16094
 
-*** The result is that libtool may fail to recognize shared libraries
16095
 
-*** as such.  This will affect the creation of libtool libraries that
16096
 
-*** depend on shared libraries, but programs linked with such libtool
16097
 
-*** libraries will work regardless of this problem.  Nevertheless, you
16098
 
-*** may want to report the problem to your system manager and/or to
16099
 
-*** bug-libtool@gnu.org
16100
 
-
16101
 
-EOF
16102
 
-         fi ;;
16103
 
-       esac
16104
 
-      fi
16105
 
-      break
 
23269
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
23270
+else
16106
23271
+  if test -n "$LIPO"; then
16107
23272
+  ac_cv_prog_LIPO="$LIPO" # Let the user override the test.
16108
23273
+else
16116
23281
+    ac_cv_prog_LIPO="${ac_tool_prefix}lipo"
16117
23282
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
16118
23283
+    break 2
16119
 
     fi
16120
 
-  done
16121
 
-  IFS="$lt_save_ifs"
16122
 
-  MAGIC_CMD="$lt_save_MAGIC_CMD"
16123
 
-  ;;
16124
 
-esac
16125
 
-fi
16126
 
+done
 
23284
+  fi
 
23285
 done
 
23286
-cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
 
23287
-
16127
23288
+done
16128
23289
+IFS=$as_save_IFS
16129
23290
 
16130
 
-MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
16131
 
-if test -n "$MAGIC_CMD"; then
16132
 
-  { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
16133
 
-echo "${ECHO_T}$MAGIC_CMD" >&6; }
 
23291
-# Only perform the check for file, if the check method requires it
 
23292
-case $deplibs_check_method in
 
23293
-file_magic*)
 
23294
-  if test "$file_magic_cmd" = '$MAGIC_CMD'; then
 
23295
-    { $as_echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5
 
23296
-$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; }
 
23297
-if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
 
23298
-  $as_echo_n "(cached) " >&6
16134
23299
+fi
16135
23300
+fi
16136
23301
+LIPO=$ac_cv_prog_LIPO
16138
23303
+  { echo "$as_me:$LINENO: result: $LIPO" >&5
16139
23304
+echo "${ECHO_T}$LIPO" >&6; }
16140
23305
 else
16141
 
   { echo "$as_me:$LINENO: result: no" >&5
16142
 
 echo "${ECHO_T}no" >&6; }
 
23306
-  case $MAGIC_CMD in
 
23307
-[\\/*] |  ?:[\\/]*)
 
23308
-  lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
 
23309
-  ;;
 
23310
-*)
 
23311
-  lt_save_MAGIC_CMD="$MAGIC_CMD"
 
23312
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 
23313
-  ac_dummy="/usr/bin$PATH_SEPARATOR$PATH"
 
23314
-  for ac_dir in $ac_dummy; do
 
23315
-    IFS="$lt_save_ifs"
 
23316
-    test -z "$ac_dir" && ac_dir=.
 
23317
-    if test -f $ac_dir/${ac_tool_prefix}file; then
 
23318
-      lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file"
 
23319
-      if test -n "$file_magic_test_file"; then
 
23320
-       case $deplibs_check_method in
 
23321
-       "file_magic "*)
 
23322
-         file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
 
23323
-         MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
 
23324
-         if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
 
23325
-           $EGREP "$file_magic_regex" > /dev/null; then
 
23326
-           :
 
23327
-         else
 
23328
-           cat <<EOF 1>&2
 
23329
+  { echo "$as_me:$LINENO: result: no" >&5
 
23330
+echo "${ECHO_T}no" >&6; }
 
23331
+fi
 
23332
 
 
23333
-*** Warning: the command libtool uses to detect shared libraries,
 
23334
-*** $file_magic_cmd, produces output that libtool cannot recognize.
 
23335
-*** The result is that libtool may fail to recognize shared libraries
 
23336
-*** as such.  This will affect the creation of libtool libraries that
 
23337
-*** depend on shared libraries, but programs linked with such libtool
 
23338
-*** libraries will work regardless of this problem.  Nevertheless, you
 
23339
-*** may want to report the problem to your system manager and/or to
 
23340
-*** bug-libtool@gnu.org
 
23341
 
 
23342
-EOF
 
23343
-         fi ;;
 
23344
-       esac
 
23345
-      fi
 
23346
-      break
 
23347
-    fi
 
23348
-  done
 
23349
-  IFS="$lt_save_ifs"
 
23350
-  MAGIC_CMD="$lt_save_MAGIC_CMD"
 
23351
-  ;;
 
23352
-esac
16143
23353
 fi
16144
 
 
16145
 
-if test -z "$lt_cv_path_MAGIC_CMD"; then
16146
 
-  if test -n "$ac_tool_prefix"; then
16147
 
-    { echo "$as_me:$LINENO: checking for file" >&5
16148
 
-echo $ECHO_N "checking for file... $ECHO_C" >&6; }
16149
 
-if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
16150
 
+
16151
 
+fi
 
23354
-
 
23355
-MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
 
23356
-if test -n "$MAGIC_CMD"; then
 
23357
-  { $as_echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
 
23358
-$as_echo "$MAGIC_CMD" >&6; }
16152
23359
+if test -z "$ac_cv_prog_LIPO"; then
16153
23360
+  ac_ct_LIPO=$LIPO
16154
23361
+  # Extract the first word of "lipo", so it can be a program name with args.
16156
23363
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
16157
23364
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
16158
23365
+if test "${ac_cv_prog_ac_ct_LIPO+set}" = set; then
16159
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
23366
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
23367
 else
 
23368
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
23369
-$as_echo "no" >&6; }
 
23370
-fi
 
23371
-
 
23372
-if test -z "$lt_cv_path_MAGIC_CMD"; then
 
23373
-  if test -n "$ac_tool_prefix"; then
 
23374
-    { $as_echo "$as_me:$LINENO: checking for file" >&5
 
23375
-$as_echo_n "checking for file... " >&6; }
 
23376
-if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
 
23377
-  $as_echo_n "(cached) " >&6
 
23378
+  if test -n "$ac_ct_LIPO"; then
 
23379
+  ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test.
16160
23380
 else
16161
23381
-  case $MAGIC_CMD in
16162
23382
-[\\/*] |  ?:[\\/]*)
16190
23410
-*** libraries will work regardless of this problem.  Nevertheless, you
16191
23411
-*** may want to report the problem to your system manager and/or to
16192
23412
-*** bug-libtool@gnu.org
16193
 
-
16194
 
-EOF
16195
 
-         fi ;;
16196
 
-       esac
16197
 
-      fi
16198
 
-      break
16199
 
+  if test -n "$ac_ct_LIPO"; then
16200
 
+  ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test.
16201
 
+else
16202
23413
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
16203
23414
+for as_dir in $PATH
16204
23415
+do
16209
23420
+    ac_cv_prog_ac_ct_LIPO="lipo"
16210
23421
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
16211
23422
+    break 2
16212
 
     fi
 
23423
+  fi
 
23424
+done
 
23425
+done
 
23426
+IFS=$as_save_IFS
 
23427
 
 
23428
-EOF
 
23429
-         fi ;;
 
23430
-       esac
 
23431
-      fi
 
23432
-      break
 
23433
-    fi
16213
23434
-  done
16214
23435
-  IFS="$lt_save_ifs"
16215
23436
-  MAGIC_CMD="$lt_save_MAGIC_CMD"
16216
23437
-  ;;
16217
23438
-esac
16218
 
-fi
16219
 
+done
16220
 
+done
16221
 
+IFS=$as_save_IFS
16222
 
 
 
23439
 fi
 
23440
-
16223
23441
-MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
16224
23442
-if test -n "$MAGIC_CMD"; then
16225
 
-  { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
16226
 
-echo "${ECHO_T}$MAGIC_CMD" >&6; }
16227
 
+fi
 
23443
-  { $as_echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
 
23444
-$as_echo "$MAGIC_CMD" >&6; }
16228
23445
+fi
16229
23446
+ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO
16230
23447
+if test -n "$ac_ct_LIPO"; then
16231
23448
+  { echo "$as_me:$LINENO: result: $ac_ct_LIPO" >&5
16232
23449
+echo "${ECHO_T}$ac_ct_LIPO" >&6; }
16233
23450
 else
16234
 
   { echo "$as_me:$LINENO: result: no" >&5
16235
 
 echo "${ECHO_T}no" >&6; }
 
23451
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
23452
-$as_echo "no" >&6; }
 
23453
+  { echo "$as_me:$LINENO: result: no" >&5
 
23454
+echo "${ECHO_T}no" >&6; }
16236
23455
 fi
16237
23456
 
16238
23457
+  if test "x$ac_ct_LIPO" = x; then
16255
23474
+  LIPO="$ac_cv_prog_LIPO"
16256
23475
 fi
16257
23476
 
16258
 
+    if test -n "$ac_tool_prefix"; then
 
23477
-  fi
 
23478
-  ;;
 
23479
-esac
 
23480
-
 
23481
-
 
23482
-  case $host_os in
 
23483
-    rhapsody* | darwin*)
 
23484
     if test -n "$ac_tool_prefix"; then
 
23485
-  # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args.
 
23486
-set dummy ${ac_tool_prefix}dsymutil; ac_word=$2
 
23487
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
23488
-$as_echo_n "checking for $ac_word... " >&6; }
 
23489
-if test "${ac_cv_prog_DSYMUTIL+set}" = set; then
 
23490
-  $as_echo_n "(cached) " >&6
16259
23491
+  # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args.
16260
23492
+set dummy ${ac_tool_prefix}otool; ac_word=$2
16261
23493
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
16262
23494
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
16263
23495
+if test "${ac_cv_prog_OTOOL+set}" = set; then
16264
23496
+  echo $ECHO_N "(cached) $ECHO_C" >&6
16265
 
+else
 
23497
 else
 
23498
-  if test -n "$DSYMUTIL"; then
 
23499
-  ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test.
16266
23500
+  if test -n "$OTOOL"; then
16267
23501
+  ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test.
16268
 
+else
16269
 
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
16270
 
+for as_dir in $PATH
16271
 
+do
16272
 
+  IFS=$as_save_IFS
16273
 
+  test -z "$as_dir" && as_dir=.
16274
 
+  for ac_exec_ext in '' $ac_executable_extensions; do
16275
 
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
23502
 else
 
23503
 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
23504
 for as_dir in $PATH
 
23505
@@ -10029,8 +9630,8 @@
 
23506
   test -z "$as_dir" && as_dir=.
 
23507
   for ac_exec_ext in '' $ac_executable_extensions; do
 
23508
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
23509
-    ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil"
 
23510
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
16276
23511
+    ac_cv_prog_OTOOL="${ac_tool_prefix}otool"
16277
23512
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
16278
 
+    break 2
 
23513
     break 2
16279
23514
   fi
16280
 
-  ;;
16281
 
-esac
16282
 
-
16283
 
-enable_dlopen=no
16284
 
-enable_win32_dll=no
16285
 
+done
16286
 
+done
16287
 
+IFS=$as_save_IFS
 
23515
 done
 
23516
@@ -10039,28 +9640,28 @@
16288
23517
 
16289
 
-# Check whether --enable-libtool-lock was given.
16290
 
-if test "${enable_libtool_lock+set}" = set; then
16291
 
-  enableval=$enable_libtool_lock;
16292
 
 fi
16293
 
-
16294
 
-test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
16295
 
-
16296
 
-
16297
 
-# Check whether --with-pic was given.
16298
 
-if test "${with_pic+set}" = set; then
16299
 
-  withval=$with_pic; pic_mode="$withval"
16300
 
+fi
 
23518
 fi
 
23519
 fi
 
23520
-DSYMUTIL=$ac_cv_prog_DSYMUTIL
 
23521
-if test -n "$DSYMUTIL"; then
 
23522
-  { $as_echo "$as_me:$LINENO: result: $DSYMUTIL" >&5
 
23523
-$as_echo "$DSYMUTIL" >&6; }
16301
23524
+OTOOL=$ac_cv_prog_OTOOL
16302
23525
+if test -n "$OTOOL"; then
16303
23526
+  { echo "$as_me:$LINENO: result: $OTOOL" >&5
16304
23527
+echo "${ECHO_T}$OTOOL" >&6; }
16305
23528
 else
16306
 
-  pic_mode=default
 
23529
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
23530
-$as_echo "no" >&6; }
16307
23531
+  { echo "$as_me:$LINENO: result: no" >&5
16308
23532
+echo "${ECHO_T}no" >&6; }
16309
23533
 fi
16310
23534
 
16311
 
-test -z "$pic_mode" && pic_mode=default
16312
 
-
16313
 
-# Use C for the default configuration in the libtool script
16314
 
-tagname=
16315
 
-lt_save_CC="$CC"
16316
 
-ac_ext=c
16317
 
-ac_cpp='$CPP $CPPFLAGS'
16318
 
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
16319
 
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
16320
 
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
16321
 
-
16322
23535
 
16323
 
-# Source file extension for C test sources.
16324
 
-ac_ext=c
16325
 
+fi
 
23536
 fi
 
23537
-if test -z "$ac_cv_prog_DSYMUTIL"; then
 
23538
-  ac_ct_DSYMUTIL=$DSYMUTIL
 
23539
-  # Extract the first word of "dsymutil", so it can be a program name with args.
 
23540
-set dummy dsymutil; ac_word=$2
 
23541
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
23542
-$as_echo_n "checking for $ac_word... " >&6; }
 
23543
-if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then
 
23544
-  $as_echo_n "(cached) " >&6
16326
23545
+if test -z "$ac_cv_prog_OTOOL"; then
16327
23546
+  ac_ct_OTOOL=$OTOOL
16328
23547
+  # Extract the first word of "otool", so it can be a program name with args.
16331
23550
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
16332
23551
+if test "${ac_cv_prog_ac_ct_OTOOL+set}" = set; then
16333
23552
+  echo $ECHO_N "(cached) $ECHO_C" >&6
16334
 
+else
 
23553
 else
 
23554
-  if test -n "$ac_ct_DSYMUTIL"; then
 
23555
-  ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test.
16335
23556
+  if test -n "$ac_ct_OTOOL"; then
16336
23557
+  ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test.
16337
 
+else
16338
 
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
16339
 
+for as_dir in $PATH
16340
 
+do
16341
 
+  IFS=$as_save_IFS
16342
 
+  test -z "$as_dir" && as_dir=.
16343
 
+  for ac_exec_ext in '' $ac_executable_extensions; do
16344
 
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
23558
 else
 
23559
 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
23560
 for as_dir in $PATH
 
23561
@@ -10069,8 +9670,8 @@
 
23562
   test -z "$as_dir" && as_dir=.
 
23563
   for ac_exec_ext in '' $ac_executable_extensions; do
 
23564
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
23565
-    ac_cv_prog_ac_ct_DSYMUTIL="dsymutil"
 
23566
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
16345
23567
+    ac_cv_prog_ac_ct_OTOOL="otool"
16346
23568
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
16347
 
+    break 2
16348
 
+  fi
16349
 
+done
16350
 
+done
16351
 
+IFS=$as_save_IFS
 
23569
     break 2
 
23570
   fi
 
23571
 done
 
23572
@@ -10079,40 +9680,44 @@
16352
23573
 
16353
 
-# Object file extension for compiled C test sources.
16354
 
-objext=o
16355
 
-objext=$objext
16356
 
+fi
16357
 
+fi
 
23574
 fi
 
23575
 fi
 
23576
-ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL
 
23577
-if test -n "$ac_ct_DSYMUTIL"; then
 
23578
-  { $as_echo "$as_me:$LINENO: result: $ac_ct_DSYMUTIL" >&5
 
23579
-$as_echo "$ac_ct_DSYMUTIL" >&6; }
16358
23580
+ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL
16359
23581
+if test -n "$ac_ct_OTOOL"; then
16360
23582
+  { echo "$as_me:$LINENO: result: $ac_ct_OTOOL" >&5
16361
23583
+echo "${ECHO_T}$ac_ct_OTOOL" >&6; }
16362
 
+else
 
23584
 else
 
23585
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
23586
-$as_echo "no" >&6; }
16363
23587
+  { echo "$as_me:$LINENO: result: no" >&5
16364
23588
+echo "${ECHO_T}no" >&6; }
16365
 
+fi
 
23589
 fi
16366
23590
 
16367
 
-# Code to be used in simple compile tests
16368
 
-lt_simple_compile_test_code="int some_variable = 0;"
 
23591
-  if test "x$ac_ct_DSYMUTIL" = x; then
 
23592
-    DSYMUTIL=":"
16369
23593
+  if test "x$ac_ct_OTOOL" = x; then
16370
23594
+    OTOOL=":"
16371
 
+  else
16372
 
+    case $cross_compiling:$ac_tool_warned in
16373
 
+yes:)
 
23595
   else
 
23596
     case $cross_compiling:$ac_tool_warned in
 
23597
 yes:)
 
23598
-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
 
23599
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
16374
23600
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
16375
23601
+whose name does not start with the host triplet.  If you think this
16376
23602
+configuration is useful to you, please write to autoconf@gnu.org." >&5
16377
23603
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
16378
23604
+whose name does not start with the host triplet.  If you think this
16379
23605
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
16380
 
+ac_tool_warned=yes ;;
16381
 
+esac
 
23606
 ac_tool_warned=yes ;;
 
23607
 esac
 
23608
-    DSYMUTIL=$ac_ct_DSYMUTIL
16382
23609
+    OTOOL=$ac_ct_OTOOL
16383
 
+  fi
16384
 
+else
 
23610
   fi
 
23611
 else
 
23612
-  DSYMUTIL="$ac_cv_prog_DSYMUTIL"
16385
23613
+  OTOOL="$ac_cv_prog_OTOOL"
16386
 
+fi
 
23614
 fi
16387
23615
 
16388
 
-# Code to be used in simple link tests
16389
 
-lt_simple_link_test_code='int main(){return(0);}'
16390
 
+    if test -n "$ac_tool_prefix"; then
 
23616
     if test -n "$ac_tool_prefix"; then
 
23617
-  # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args.
 
23618
-set dummy ${ac_tool_prefix}nmedit; ac_word=$2
 
23619
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
23620
-$as_echo_n "checking for $ac_word... " >&6; }
 
23621
-if test "${ac_cv_prog_NMEDIT+set}" = set; then
 
23622
-  $as_echo_n "(cached) " >&6
16391
23623
+  # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args.
16392
23624
+set dummy ${ac_tool_prefix}otool64; ac_word=$2
16393
23625
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
16394
23626
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
16395
23627
+if test "${ac_cv_prog_OTOOL64+set}" = set; then
16396
23628
+  echo $ECHO_N "(cached) $ECHO_C" >&6
16397
 
+else
 
23629
 else
 
23630
-  if test -n "$NMEDIT"; then
 
23631
-  ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test.
16398
23632
+  if test -n "$OTOOL64"; then
16399
23633
+  ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test.
16400
 
+else
16401
 
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
16402
 
+for as_dir in $PATH
16403
 
+do
16404
 
+  IFS=$as_save_IFS
16405
 
+  test -z "$as_dir" && as_dir=.
16406
 
+  for ac_exec_ext in '' $ac_executable_extensions; do
16407
 
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
23634
 else
 
23635
 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
23636
 for as_dir in $PATH
 
23637
@@ -10121,8 +9726,8 @@
 
23638
   test -z "$as_dir" && as_dir=.
 
23639
   for ac_exec_ext in '' $ac_executable_extensions; do
 
23640
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
23641
-    ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit"
 
23642
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
16408
23643
+    ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64"
16409
23644
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
16410
 
+    break 2
16411
 
+  fi
16412
 
+done
16413
 
+done
16414
 
+IFS=$as_save_IFS
 
23645
     break 2
 
23646
   fi
 
23647
 done
 
23648
@@ -10131,28 +9736,28 @@
16415
23649
 
16416
 
+fi
16417
 
+fi
 
23650
 fi
 
23651
 fi
 
23652
-NMEDIT=$ac_cv_prog_NMEDIT
 
23653
-if test -n "$NMEDIT"; then
 
23654
-  { $as_echo "$as_me:$LINENO: result: $NMEDIT" >&5
 
23655
-$as_echo "$NMEDIT" >&6; }
16418
23656
+OTOOL64=$ac_cv_prog_OTOOL64
16419
23657
+if test -n "$OTOOL64"; then
16420
23658
+  { echo "$as_me:$LINENO: result: $OTOOL64" >&5
16421
23659
+echo "${ECHO_T}$OTOOL64" >&6; }
16422
 
+else
 
23660
 else
 
23661
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
23662
-$as_echo "no" >&6; }
16423
23663
+  { echo "$as_me:$LINENO: result: no" >&5
16424
23664
+echo "${ECHO_T}no" >&6; }
16425
 
+fi
16426
 
 
16427
 
-# If no C compiler was specified, use CC.
16428
 
-LTCC=${LTCC-"$CC"}
16429
 
 
16430
 
-# If no C compiler flags were specified, use CFLAGS.
16431
 
-LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
16432
 
+fi
 
23665
 fi
 
23666
 
 
23667
 
 
23668
 fi
 
23669
-if test -z "$ac_cv_prog_NMEDIT"; then
 
23670
-  ac_ct_NMEDIT=$NMEDIT
 
23671
-  # Extract the first word of "nmedit", so it can be a program name with args.
 
23672
-set dummy nmedit; ac_word=$2
 
23673
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
23674
-$as_echo_n "checking for $ac_word... " >&6; }
 
23675
-if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then
 
23676
-  $as_echo_n "(cached) " >&6
16433
23677
+if test -z "$ac_cv_prog_OTOOL64"; then
16434
23678
+  ac_ct_OTOOL64=$OTOOL64
16435
23679
+  # Extract the first word of "otool64", so it can be a program name with args.
16438
23682
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
16439
23683
+if test "${ac_cv_prog_ac_ct_OTOOL64+set}" = set; then
16440
23684
+  echo $ECHO_N "(cached) $ECHO_C" >&6
16441
 
+else
 
23685
 else
 
23686
-  if test -n "$ac_ct_NMEDIT"; then
 
23687
-  ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test.
16442
23688
+  if test -n "$ac_ct_OTOOL64"; then
16443
23689
+  ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test.
16444
 
+else
16445
 
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
16446
 
+for as_dir in $PATH
16447
 
+do
16448
 
+  IFS=$as_save_IFS
16449
 
+  test -z "$as_dir" && as_dir=.
16450
 
+  for ac_exec_ext in '' $ac_executable_extensions; do
16451
 
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
23690
 else
 
23691
 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
23692
 for as_dir in $PATH
 
23693
@@ -10161,8 +9766,8 @@
 
23694
   test -z "$as_dir" && as_dir=.
 
23695
   for ac_exec_ext in '' $ac_executable_extensions; do
 
23696
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
23697
-    ac_cv_prog_ac_ct_NMEDIT="nmedit"
 
23698
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
16452
23699
+    ac_cv_prog_ac_ct_OTOOL64="otool64"
16453
23700
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
16454
 
+    break 2
16455
 
+  fi
16456
 
+done
16457
 
+done
16458
 
+IFS=$as_save_IFS
 
23701
     break 2
 
23702
   fi
 
23703
 done
 
23704
@@ -10171,58 +9776,93 @@
16459
23705
 
16460
 
-# Allow CC to be a program name with arguments.
16461
 
-compiler=$CC
16462
 
+fi
16463
 
+fi
 
23706
 fi
 
23707
 fi
 
23708
-ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT
 
23709
-if test -n "$ac_ct_NMEDIT"; then
 
23710
-  { $as_echo "$as_me:$LINENO: result: $ac_ct_NMEDIT" >&5
 
23711
-$as_echo "$ac_ct_NMEDIT" >&6; }
16464
23712
+ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64
16465
23713
+if test -n "$ac_ct_OTOOL64"; then
16466
23714
+  { echo "$as_me:$LINENO: result: $ac_ct_OTOOL64" >&5
16467
23715
+echo "${ECHO_T}$ac_ct_OTOOL64" >&6; }
16468
 
+else
 
23716
 else
 
23717
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
23718
-$as_echo "no" >&6; }
16469
23719
+  { echo "$as_me:$LINENO: result: no" >&5
16470
23720
+echo "${ECHO_T}no" >&6; }
16471
 
+fi
 
23721
 fi
16472
23722
 
 
23723
-  if test "x$ac_ct_NMEDIT" = x; then
 
23724
-    NMEDIT=":"
16473
23725
+  if test "x$ac_ct_OTOOL64" = x; then
16474
23726
+    OTOOL64=":"
16475
 
+  else
16476
 
+    case $cross_compiling:$ac_tool_warned in
16477
 
+yes:)
 
23727
   else
 
23728
     case $cross_compiling:$ac_tool_warned in
 
23729
 yes:)
 
23730
-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
 
23731
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
16478
23732
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
16479
23733
+whose name does not start with the host triplet.  If you think this
16480
23734
+configuration is useful to you, please write to autoconf@gnu.org." >&5
16481
23735
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
16482
23736
+whose name does not start with the host triplet.  If you think this
16483
23737
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
16484
 
+ac_tool_warned=yes ;;
16485
 
+esac
 
23738
 ac_tool_warned=yes ;;
 
23739
 esac
 
23740
-    NMEDIT=$ac_ct_NMEDIT
16486
23741
+    OTOOL64=$ac_ct_OTOOL64
16487
 
+  fi
16488
 
+else
 
23742
   fi
 
23743
 else
 
23744
-  NMEDIT="$ac_cv_prog_NMEDIT"
16489
23745
+  OTOOL64="$ac_cv_prog_OTOOL64"
16490
 
+fi
16491
 
 
16492
 
-# save warnings/boilerplate of simple test code
16493
 
-ac_outfile=conftest.$ac_objext
16494
 
-echo "$lt_simple_compile_test_code" >conftest.$ac_ext
16495
 
-eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
16496
 
-_lt_compiler_boilerplate=`cat conftest.err`
16497
 
-$rm conftest*
16498
 
 
16499
 
-ac_outfile=conftest.$ac_objext
16500
 
-echo "$lt_simple_link_test_code" >conftest.$ac_ext
16501
 
-eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
16502
 
-_lt_linker_boilerplate=`cat conftest.err`
16503
 
-$rm conftest*
16504
 
 
16505
 
 
16506
 
 
16507
 
-lt_prog_compiler_no_builtin_flag=
16508
 
 
16509
 
-if test "$GCC" = yes; then
16510
 
-  lt_prog_compiler_no_builtin_flag=' -fno-builtin'
16511
 
 
16512
 
 
16513
 
-{ echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
16514
 
-echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6; }
16515
 
-if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then
16516
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
16517
 
-else
16518
 
-  lt_cv_prog_compiler_rtti_exceptions=no
16519
 
-  ac_outfile=conftest.$ac_objext
16520
 
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
16521
 
-   lt_compiler_flag="-fno-rtti -fno-exceptions"
16522
 
-   # Insert the option either (1) after the last *FLAGS variable, or
16523
 
-   # (2) before a word containing "conftest.", or (3) at the end.
16524
 
-   # Note that $ac_compile itself does not contain backslashes and begins
16525
 
-   # with a dollar sign (not a hyphen), so the echo should work correctly.
16526
 
-   # The option is referenced via a variable to avoid confusing sed.
16527
 
-   lt_compile=`echo "$ac_compile" | $SED \
16528
 
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
16529
 
-   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
16530
 
-   -e 's:$: $lt_compiler_flag:'`
16531
 
-   (eval echo "\"\$as_me:9802: $lt_compile\"" >&5)
16532
 
-   (eval "$lt_compile" 2>conftest.err)
16533
 
-   ac_status=$?
16534
 
-   cat conftest.err >&5
16535
 
-   echo "$as_me:9806: \$? = $ac_status" >&5
16536
 
-   if (exit $ac_status) && test -s "$ac_outfile"; then
16537
 
-     # The compiler can only warn and ignore the option if not recognized
16538
 
-     # So say no if there are warnings other than the usual output.
16539
 
-     $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
16540
 
-     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
16541
 
-     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
16542
 
-       lt_cv_prog_compiler_rtti_exceptions=yes
16543
 
-     fi
16544
 
-   fi
16545
 
-   $rm conftest*
16546
 
 
16547
 
-fi
16548
 
-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5
16549
 
-echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6; }
16550
 
 
16551
 
-if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then
16552
 
-    lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions"
16553
 
-else
16554
 
-    :
16555
 
-fi
16556
 
 
16557
 
-fi
16558
 
 
16559
 
-lt_prog_compiler_wl=
16560
 
-lt_prog_compiler_pic=
16561
 
-lt_prog_compiler_static=
16562
 
 
16563
 
-{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5
16564
 
-echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; }
16565
 
 
16566
 
-  if test "$GCC" = yes; then
16567
 
-    lt_prog_compiler_wl='-Wl,'
16568
 
-    lt_prog_compiler_static='-static'
16569
 
 
16570
 
-    case $host_os in
16571
 
-      aix*)
16572
 
-      # All AIX code is PIC.
16573
 
-      if test "$host_cpu" = ia64; then
16574
 
-       # AIX 5 now supports IA64 processor
16575
 
-       lt_prog_compiler_static='-Bstatic'
16576
 
-      fi
16577
 
-      ;;
16578
 
 
16579
 
-    amigaos*)
16580
 
-      # FIXME: we need at least 68020 code to build shared libraries, but
16581
 
-      # adding the `-m68020' flag to GCC prevents building anything better,
16582
 
-      # like `-m68040'.
16583
 
-      lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4'
16584
 
-      ;;
16585
 
 
16586
 
-    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
16587
 
-      # PIC is the default for these OSes.
16588
 
-      ;;
16589
 
 
16590
 
-    mingw* | cygwin* | pw32* | os2*)
16591
 
-      # This hack is so that the source file can tell whether it is being
16592
 
-      # built for inclusion in a dll (and should export symbols for example).
16593
 
-      # Although the cygwin gcc ignores -fPIC, still need this for old-style
16594
 
-      # (--disable-auto-import) libraries
16595
 
-      lt_prog_compiler_pic='-DDLL_EXPORT'
16596
 
-      ;;
16597
 
 
16598
 
-    darwin* | rhapsody*)
16599
 
-      # PIC is the default on this platform
16600
 
-      # Common symbols not allowed in MH_DYLIB files
16601
 
-      lt_prog_compiler_pic='-fno-common'
16602
 
-      ;;
16603
 
 
16604
 
-    interix[3-9]*)
16605
 
-      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
16606
 
-      # Instead, we relocate shared libraries at runtime.
16607
 
-      ;;
16608
 
 
16609
 
-    msdosdjgpp*)
16610
 
-      # Just because we use GCC doesn't mean we suddenly get shared libraries
16611
 
-      # on systems that don't support them.
16612
 
-      lt_prog_compiler_can_build_shared=no
16613
 
-      enable_shared=no
16614
 
-      ;;
16615
 
 
16616
 
-    sysv4*MP*)
16617
 
-      if test -d /usr/nec; then
16618
 
-       lt_prog_compiler_pic=-Kconform_pic
16619
 
-      fi
16620
 
-      ;;
16621
 
 
16622
 
-    hpux*)
16623
 
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
16624
 
-      # not for PA HP-UX.
16625
 
-      case $host_cpu in
16626
 
-      hppa*64*|ia64*)
16627
 
-       # +Z the default
16628
 
-       ;;
16629
 
-      *)
16630
 
-       lt_prog_compiler_pic='-fPIC'
16631
 
-       ;;
16632
 
-      esac
16633
 
-      ;;
16634
 
 
16635
 
-    *)
16636
 
-      lt_prog_compiler_pic='-fPIC'
16637
 
-      ;;
16638
 
-    esac
16639
 
-  else
16640
 
-    # PORTME Check for flag to pass linker flags through the system compiler.
16641
 
-    case $host_os in
16642
 
-    aix*)
16643
 
-      lt_prog_compiler_wl='-Wl,'
16644
 
-      if test "$host_cpu" = ia64; then
16645
 
-       # AIX 5 now supports IA64 processor
16646
 
-       lt_prog_compiler_static='-Bstatic'
 
23746
 fi
 
23747
 
 
23748
 
 
23749
-    { $as_echo "$as_me:$LINENO: checking for -single_module linker flag" >&5
 
23750
-$as_echo_n "checking for -single_module linker flag... " >&6; }
 
23751
+
 
23752
+
 
23753
+
 
23754
+
 
23755
+
 
23756
+
 
23757
+
 
23758
+
 
23759
+
 
23760
+
 
23761
+
 
23762
+
 
23763
+
 
23764
+
 
23765
+
 
23766
+
 
23767
+
 
23768
+
 
23769
+
 
23770
+
 
23771
+
 
23772
+
16647
23773
+
16648
23774
+
16649
23775
+
16650
23776
+    { echo "$as_me:$LINENO: checking for -single_module linker flag" >&5
16651
23777
+echo $ECHO_N "checking for -single_module linker flag... $ECHO_C" >&6; }
16652
 
+if test "${lt_cv_apple_cc_single_mod+set}" = set; then
 
23778
 if test "${lt_cv_apple_cc_single_mod+set}" = set; then
 
23779
-  $as_echo_n "(cached) " >&6
16653
23780
+  echo $ECHO_N "(cached) $ECHO_C" >&6
16654
 
+else
16655
 
+  lt_cv_apple_cc_single_mod=no
16656
 
+      if test -z "${LT_MULTI_MODULE}"; then
 
23781
 else
 
23782
   lt_cv_apple_cc_single_mod=no
 
23783
       if test -z "${LT_MULTI_MODULE}"; then
 
23784
-   # By default we will add the -single_module flag. You can override
 
23785
-   # by either setting the environment variable LT_MULTI_MODULE
 
23786
-   # non-empty at configure time, or by adding -multi_module to the
 
23787
-   # link flags.
 
23788
-   echo "int foo(void){return 1;}" > conftest.c
 
23789
-   $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
 
23790
-     -dynamiclib ${wl}-single_module conftest.c
 
23791
-   if test -f libconftest.dylib; then
 
23792
-     lt_cv_apple_cc_single_mod=yes
 
23793
-     rm -rf libconftest.dylib*
 
23794
-   fi
 
23795
-   rm conftest.c
16657
23796
+       # By default we will add the -single_module flag. You can override
16658
23797
+       # by either setting the environment variable LT_MULTI_MODULE
16659
23798
+       # non-empty at configure time, or by adding -multi_module to the
16667
23806
+        _lt_result=$?
16668
23807
+       if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then
16669
23808
+         lt_cv_apple_cc_single_mod=yes
16670
 
       else
16671
 
-       lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp'
 
23809
+       else
16672
23810
+         cat conftest.err >&5
16673
 
       fi
16674
 
-      ;;
16675
 
-      darwin*)
16676
 
-        # PIC is the default on this platform
16677
 
-        # Common symbols not allowed in MH_DYLIB files
16678
 
-       case $cc_basename in
16679
 
-         xlc*)
16680
 
-         lt_prog_compiler_pic='-qnocommon'
16681
 
-         lt_prog_compiler_wl='-Wl,'
16682
 
-         ;;
16683
 
-       esac
16684
 
-       ;;
 
23811
+       fi
16685
23812
+       rm -rf libconftest.dylib*
16686
23813
+       rm -f conftest.*
16687
 
+      fi
16688
 
+fi
 
23814
       fi
 
23815
 fi
 
23816
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_apple_cc_single_mod" >&5
 
23817
-$as_echo "$lt_cv_apple_cc_single_mod" >&6; }
 
23818
-    { $as_echo "$as_me:$LINENO: checking for -exported_symbols_list linker flag" >&5
 
23819
-$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; }
16689
23820
+{ echo "$as_me:$LINENO: result: $lt_cv_apple_cc_single_mod" >&5
16690
23821
+echo "${ECHO_T}$lt_cv_apple_cc_single_mod" >&6; }
16691
23822
+    { echo "$as_me:$LINENO: checking for -exported_symbols_list linker flag" >&5
16692
23823
+echo $ECHO_N "checking for -exported_symbols_list linker flag... $ECHO_C" >&6; }
16693
 
+if test "${lt_cv_ld_exported_symbols_list+set}" = set; then
 
23824
 if test "${lt_cv_ld_exported_symbols_list+set}" = set; then
 
23825
-  $as_echo_n "(cached) " >&6
16694
23826
+  echo $ECHO_N "(cached) $ECHO_C" >&6
16695
 
+else
16696
 
+  lt_cv_ld_exported_symbols_list=no
16697
 
+      save_LDFLAGS=$LDFLAGS
16698
 
+      echo "_main" > conftest.sym
16699
 
+      LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym"
16700
 
+      cat >conftest.$ac_ext <<_ACEOF
16701
 
+/* confdefs.h.  */
16702
 
+_ACEOF
16703
 
+cat confdefs.h >>conftest.$ac_ext
16704
 
+cat >>conftest.$ac_ext <<_ACEOF
16705
 
+/* end confdefs.h.  */
16706
 
 
16707
 
-    mingw* | cygwin* | pw32* | os2*)
16708
 
-      # This hack is so that the source file can tell whether it is being
16709
 
-      # built for inclusion in a dll (and should export symbols for example).
16710
 
-      lt_prog_compiler_pic='-DDLL_EXPORT'
16711
 
-      ;;
16712
 
+int
16713
 
+main ()
16714
 
+{
16715
 
 
16716
 
-    hpux9* | hpux10* | hpux11*)
16717
 
-      lt_prog_compiler_wl='-Wl,'
16718
 
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
16719
 
-      # not for PA HP-UX.
16720
 
-      case $host_cpu in
16721
 
-      hppa*64*|ia64*)
16722
 
-       # +Z the default
16723
 
-       ;;
16724
 
-      *)
16725
 
-       lt_prog_compiler_pic='+Z'
16726
 
-       ;;
16727
 
-      esac
16728
 
-      # Is there a better lt_prog_compiler_static that works with the bundled CC?
16729
 
-      lt_prog_compiler_static='${wl}-a ${wl}archive'
16730
 
-      ;;
16731
 
+  ;
16732
 
+  return 0;
16733
 
+}
16734
 
+_ACEOF
16735
 
+rm -f conftest.$ac_objext conftest$ac_exeext
16736
 
+if { (ac_try="$ac_link"
16737
 
+case "(($ac_try" in
16738
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
16739
 
+  *) ac_try_echo=$ac_try;;
16740
 
+esac
 
23827
 else
 
23828
   lt_cv_ld_exported_symbols_list=no
 
23829
       save_LDFLAGS=$LDFLAGS
 
23830
@@ -10249,53 +9889,49 @@
 
23831
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
23832
   *) ac_try_echo=$ac_try;;
 
23833
 esac
 
23834
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
23835
-$as_echo "$ac_try_echo") >&5
16741
23836
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
16742
 
+  (eval "$ac_link") 2>conftest.er1
16743
 
+  ac_status=$?
16744
 
+  grep -v '^ *+' conftest.er1 >conftest.err
16745
 
+  rm -f conftest.er1
16746
 
+  cat conftest.err >&5
 
23837
   (eval "$ac_link") 2>conftest.er1
 
23838
   ac_status=$?
 
23839
   grep -v '^ *+' conftest.er1 >conftest.err
 
23840
   rm -f conftest.er1
 
23841
   cat conftest.err >&5
 
23842
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
16747
23843
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
16748
 
+  (exit $ac_status); } && {
16749
 
+        test -z "$ac_c_werror_flag" ||
16750
 
+        test ! -s conftest.err
 
23844
   (exit $ac_status); } && {
 
23845
         test -z "$ac_c_werror_flag" ||
 
23846
         test ! -s conftest.err
 
23847
-       } && test -s conftest$ac_exeext && {
 
23848
-        test "$cross_compiling" = yes ||
 
23849
-        $as_test_x conftest$ac_exeext
 
23850
-       }; then
16751
23851
+       } && test -s conftest$ac_exeext &&
16752
23852
+       $as_test_x conftest$ac_exeext; then
16753
 
+  lt_cv_ld_exported_symbols_list=yes
16754
 
+else
 
23853
   lt_cv_ld_exported_symbols_list=yes
 
23854
 else
 
23855
-  $as_echo "$as_me: failed program was:" >&5
16755
23856
+  echo "$as_me: failed program was:" >&5
16756
 
+sed 's/^/| /' conftest.$ac_ext >&5
16757
 
 
16758
 
-    irix5* | irix6* | nonstopux*)
16759
 
-      lt_prog_compiler_wl='-Wl,'
16760
 
-      # PIC (with -KPIC) is the default.
16761
 
-      lt_prog_compiler_static='-non_shared'
16762
 
-      ;;
16763
 
+       lt_cv_ld_exported_symbols_list=no
16764
 
+fi
16765
 
 
16766
 
-    newsos6)
16767
 
-      lt_prog_compiler_pic='-KPIC'
16768
 
-      lt_prog_compiler_static='-Bstatic'
16769
 
-      ;;
16770
 
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
16771
 
+      conftest$ac_exeext conftest.$ac_ext
 
23857
 sed 's/^/| /' conftest.$ac_ext >&5
 
23858
 
 
23859
        lt_cv_ld_exported_symbols_list=no
 
23860
 fi
 
23861
 
 
23862
-rm -rf conftest.dSYM
 
23863
 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
23864
       conftest$ac_exeext conftest.$ac_ext
 
23865
-   LDFLAGS="$save_LDFLAGS"
16772
23866
+       LDFLAGS="$save_LDFLAGS"
16773
23867
 
16774
 
-    linux* | k*bsd*-gnu)
16775
 
-      case $cc_basename in
16776
 
-      icc* | ecc*)
16777
 
-       lt_prog_compiler_wl='-Wl,'
16778
 
-       lt_prog_compiler_pic='-KPIC'
16779
 
-       lt_prog_compiler_static='-static'
16780
 
-        ;;
16781
 
-      pgcc* | pgf77* | pgf90* | pgf95*)
16782
 
-        # Portland Group compilers (*not* the Pentium gcc compiler,
16783
 
-       # which looks to be a dead project)
16784
 
-       lt_prog_compiler_wl='-Wl,'
16785
 
-       lt_prog_compiler_pic='-fpic'
16786
 
-       lt_prog_compiler_static='-Bstatic'
16787
 
-        ;;
16788
 
-      ccc*)
16789
 
-        lt_prog_compiler_wl='-Wl,'
16790
 
-        # All Alpha code is PIC.
16791
 
-        lt_prog_compiler_static='-non_shared'
16792
 
-        ;;
16793
 
-      *)
16794
 
-        case `$CC -V 2>&1 | sed 5q` in
16795
 
-       *Sun\ C*)
16796
 
-         # Sun C 5.9
16797
 
-         lt_prog_compiler_pic='-KPIC'
16798
 
-         lt_prog_compiler_static='-Bstatic'
16799
 
-         lt_prog_compiler_wl='-Wl,'
16800
 
-         ;;
16801
 
-       *Sun\ F*)
16802
 
-         # Sun Fortran 8.3 passes all unrecognized flags to the linker
16803
 
-         lt_prog_compiler_pic='-KPIC'
16804
 
-         lt_prog_compiler_static='-Bstatic'
16805
 
-         lt_prog_compiler_wl=''
16806
 
-         ;;
16807
 
-       esac
16808
 
-       ;;
16809
 
+fi
 
23868
 fi
 
23869
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_ld_exported_symbols_list" >&5
 
23870
-$as_echo "$lt_cv_ld_exported_symbols_list" >&6; }
16810
23871
+{ echo "$as_me:$LINENO: result: $lt_cv_ld_exported_symbols_list" >&5
16811
23872
+echo "${ECHO_T}$lt_cv_ld_exported_symbols_list" >&6; }
16812
 
+    case $host_os in
 
23873
     case $host_os in
 
23874
-    rhapsody* | darwin1.[0123])
16813
23875
+    rhapsody* | darwin1.[012])
16814
 
+      _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
16815
 
+    darwin1.*)
 
23876
       _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
 
23877
     darwin1.*)
 
23878
-     _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
 
23879
-    darwin*)
16816
23880
+      _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
16817
23881
+    darwin*) # darwin 5.x on
16818
 
+      # if running on 10.5 or later, the deployment target defaults
16819
 
+      # to the OS version, if on x86, and 10.4, the deployment
16820
 
+      # target defaults to 10.4. Don't you love it?
16821
 
+      case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
 
23882
       # if running on 10.5 or later, the deployment target defaults
 
23883
       # to the OS version, if on x86, and 10.4, the deployment
 
23884
       # target defaults to 10.4. Don't you love it?
 
23885
       case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
 
23886
-   10.0,*86*-darwin8*|10.0,*-darwin[91]*)
 
23887
-     _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
 
23888
-   10.[012]*)
 
23889
-     _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
 
23890
-   10.*)
 
23891
-     _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
16822
23892
+       10.0,*86*-darwin8*|10.0,*-darwin[91]*)
16823
23893
+         _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
16824
23894
+       10.[012]*)
16826
23896
+       10.*)
16827
23897
+         _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
16828
23898
       esac
16829
 
       ;;
16830
 
-
16831
 
-    osf3* | osf4* | osf5*)
16832
 
-      lt_prog_compiler_wl='-Wl,'
16833
 
-      # All OSF/1 code is PIC.
16834
 
-      lt_prog_compiler_static='-non_shared'
16835
 
-      ;;
16836
 
-
16837
 
-    rdos*)
16838
 
-      lt_prog_compiler_static='-non_shared'
16839
 
-      ;;
16840
 
-
16841
 
-    solaris*)
16842
 
-      lt_prog_compiler_pic='-KPIC'
16843
 
-      lt_prog_compiler_static='-Bstatic'
16844
 
-      case $cc_basename in
16845
 
-      f77* | f90* | f95*)
16846
 
-       lt_prog_compiler_wl='-Qoption ld ';;
16847
 
-      *)
16848
 
-       lt_prog_compiler_wl='-Wl,';;
16849
 
       esac
16850
 
-      ;;
16851
 
-
16852
 
-    sunos4*)
16853
 
-      lt_prog_compiler_wl='-Qoption ld '
16854
 
-      lt_prog_compiler_pic='-PIC'
16855
 
-      lt_prog_compiler_static='-Bstatic'
16856
 
-      ;;
16857
 
-
16858
 
-    sysv4 | sysv4.2uw2* | sysv4.3*)
16859
 
-      lt_prog_compiler_wl='-Wl,'
16860
 
-      lt_prog_compiler_pic='-KPIC'
16861
 
-      lt_prog_compiler_static='-Bstatic'
16862
 
-      ;;
16863
 
-
16864
 
-    sysv4*MP*)
16865
 
-      if test -d /usr/nec ;then
16866
 
-       lt_prog_compiler_pic='-Kconform_pic'
16867
 
-       lt_prog_compiler_static='-Bstatic'
16868
 
+    if test "$lt_cv_apple_cc_single_mod" = "yes"; then
16869
 
+      _lt_dar_single_mod='$single_module'
16870
 
+    fi
16871
 
+    if test "$lt_cv_ld_exported_symbols_list" = "yes"; then
16872
 
+      _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
16873
 
+    else
 
23899
     ;;
 
23900
   esac
 
23901
@@ -10305,10 +9941,10 @@
 
23902
     if test "$lt_cv_ld_exported_symbols_list" = "yes"; then
 
23903
       _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
 
23904
     else
 
23905
-      _lt_dar_export_syms="~$NMEDIT -s \$output_objdir/\${libname}-symbols.expsym \${lib}"
16874
23906
+      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}'
16875
 
+    fi
16876
 
+    if test "$DSYMUTIL" != ":"; then
 
23907
     fi
 
23908
     if test "$DSYMUTIL" != ":"; then
 
23909
-      _lt_dsymutil="~$DSYMUTIL \$lib || :"
16877
23910
+      _lt_dsymutil='~$DSYMUTIL $lib || :'
16878
 
+    else
16879
 
+      _lt_dsymutil=
16880
 
       fi
16881
 
-      ;;
16882
 
-
16883
 
-    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
16884
 
-      lt_prog_compiler_wl='-Wl,'
16885
 
-      lt_prog_compiler_pic='-KPIC'
16886
 
-      lt_prog_compiler_static='-Bstatic'
16887
 
-      ;;
16888
 
-
16889
 
-    unicos*)
16890
 
-      lt_prog_compiler_wl='-Wl,'
16891
 
-      lt_prog_compiler_can_build_shared=no
16892
 
-      ;;
16893
 
-
16894
 
-    uts4*)
16895
 
-      lt_prog_compiler_pic='-pic'
16896
 
-      lt_prog_compiler_static='-Bstatic'
16897
 
-      ;;
16898
 
-
16899
 
-    *)
16900
 
-      lt_prog_compiler_can_build_shared=no
16901
 
       ;;
16902
 
     esac
16903
 
-  fi
16904
 
-
16905
 
-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5
16906
 
-echo "${ECHO_T}$lt_prog_compiler_pic" >&6; }
16907
 
 
16908
 
-#
16909
 
-# Check to make sure the PIC flag actually works.
16910
 
-#
16911
 
-if test -n "$lt_prog_compiler_pic"; then
16912
 
 
16913
 
-{ echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5
16914
 
-echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6; }
16915
 
-if test "${lt_prog_compiler_pic_works+set}" = set; then
 
23911
     else
 
23912
       _lt_dsymutil=
 
23913
     fi
 
23914
@@ -10316,7084 +9952,6605 @@
 
23915
   esac
 
23916
 
 
23917
 
 
23918
-enable_dlopen=no
 
23919
-enable_win32_dll=no
 
23920
-
 
23921
-# Check whether --enable-libtool-lock was given.
 
23922
-if test "${enable_libtool_lock+set}" = set; then
 
23923
-  enableval=$enable_libtool_lock;
 
23924
-fi
 
23925
-
 
23926
-test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
 
23927
-
 
23928
-
 
23929
-# Check whether --with-pic was given.
 
23930
-if test "${with_pic+set}" = set; then
 
23931
-  withval=$with_pic; pic_mode="$withval"
16916
23932
+for ac_header in dlfcn.h
16917
23933
+do
16918
23934
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
16919
23935
+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
16920
23936
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
16921
23937
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
16922
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
23938
+  echo $ECHO_N "(cached) $ECHO_C" >&6
16923
23939
 else
16924
 
-  lt_prog_compiler_pic_works=no
16925
 
-  ac_outfile=conftest.$ac_objext
16926
 
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
16927
 
-   lt_compiler_flag="$lt_prog_compiler_pic -DPIC"
16928
 
-   # Insert the option either (1) after the last *FLAGS variable, or
16929
 
-   # (2) before a word containing "conftest.", or (3) at the end.
16930
 
-   # Note that $ac_compile itself does not contain backslashes and begins
16931
 
-   # with a dollar sign (not a hyphen), so the echo should work correctly.
16932
 
-   # The option is referenced via a variable to avoid confusing sed.
16933
 
-   lt_compile=`echo "$ac_compile" | $SED \
16934
 
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
16935
 
-   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
16936
 
-   -e 's:$: $lt_compiler_flag:'`
16937
 
-   (eval echo "\"\$as_me:10092: $lt_compile\"" >&5)
16938
 
-   (eval "$lt_compile" 2>conftest.err)
 
23940
-  pic_mode=default
 
23941
-fi
 
23942
-
 
23943
-test -z "$pic_mode" && pic_mode=default
16939
23944
+  cat >conftest.$ac_ext <<_ACEOF
16940
23945
+/* confdefs.h.  */
16941
23946
+_ACEOF
16943
23948
+cat >>conftest.$ac_ext <<_ACEOF
16944
23949
+/* end confdefs.h.  */
16945
23950
+$ac_includes_default
16946
 
+
 
23951
 
 
23952
-# Use C for the default configuration in the libtool script
 
23953
-tagname=
 
23954
-lt_save_CC="$CC"
 
23955
-ac_ext=c
 
23956
-ac_cpp='$CPP $CPPFLAGS'
 
23957
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
23958
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
23959
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
16947
23960
+#include <$ac_header>
16948
23961
+_ACEOF
16949
23962
+rm -f conftest.$ac_objext
16954
23967
+esac
16955
23968
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
16956
23969
+  (eval "$ac_compile") 2>conftest.er1
16957
 
    ac_status=$?
 
23970
+  ac_status=$?
16958
23971
+  grep -v '^ *+' conftest.er1 >conftest.err
16959
23972
+  rm -f conftest.er1
16960
 
    cat conftest.err >&5
16961
 
-   echo "$as_me:10096: \$? = $ac_status" >&5
16962
 
-   if (exit $ac_status) && test -s "$ac_outfile"; then
16963
 
-     # The compiler can only warn and ignore the option if not recognized
16964
 
-     # So say no if there are warnings other than the usual output.
16965
 
-     $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
16966
 
-     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
16967
 
-     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
16968
 
-       lt_prog_compiler_pic_works=yes
16969
 
-     fi
16970
 
-   fi
16971
 
-   $rm conftest*
 
23973
+  cat conftest.err >&5
16972
23974
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
16973
23975
+  (exit $ac_status); } && {
16974
23976
+        test -z "$ac_c_werror_flag" ||
16980
23982
+sed 's/^/| /' conftest.$ac_ext >&5
16981
23983
 
16982
23984
+       eval "$as_ac_Header=no"
16983
 
 fi
16984
 
-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works" >&5
16985
 
-echo "${ECHO_T}$lt_prog_compiler_pic_works" >&6; }
 
23985
+fi
16986
23986
 
16987
 
-if test x"$lt_prog_compiler_pic_works" = xyes; then
16988
 
-    case $lt_prog_compiler_pic in
16989
 
-     "" | " "*) ;;
16990
 
-     *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;;
16991
 
-     esac
16992
 
-else
16993
 
-    lt_prog_compiler_pic=
16994
 
-     lt_prog_compiler_can_build_shared=no
 
23987
-# Source file extension for C test sources.
 
23988
-ac_ext=c
16995
23989
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
16996
 
 fi
 
23990
+fi
16997
23991
+ac_res=`eval echo '${'$as_ac_Header'}'`
16998
23992
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
16999
23993
+echo "${ECHO_T}$ac_res" >&6; }
17002
23996
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
17003
23997
+_ACEOF
17004
23998
 
17005
 
 fi
17006
 
-case $host_os in
17007
 
-  # For platforms which do not support PIC, -DPIC is meaningless:
17008
 
-  *djgpp*)
17009
 
-    lt_prog_compiler_pic=
17010
 
-    ;;
17011
 
-  *)
17012
 
-    lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC"
17013
 
-    ;;
17014
 
-esac
 
23999
-# Object file extension for compiled C test sources.
 
24000
-objext=o
 
24001
-objext=$objext
 
24002
+fi
17015
24003
 
17016
 
-#
17017
 
-# Check to make sure the static flag actually works.
17018
 
-#
17019
 
-wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
17020
 
-{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5
17021
 
-echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; }
17022
 
-if test "${lt_prog_compiler_static_works+set}" = set; then
 
24004
-# Code to be used in simple compile tests
 
24005
-lt_simple_compile_test_code="int some_variable = 0;"
17023
24006
+done
17024
 
+
17025
 
+
17026
 
+
 
24007
 
 
24008
-# Code to be used in simple link tests
 
24009
-lt_simple_link_test_code='int main(){return(0);}'
 
24010
 
 
24011
 
 
24012
-# If no C compiler was specified, use CC.
 
24013
-LTCC=${LTCC-"$CC"}
17027
24014
+ac_ext=cpp
17028
24015
+ac_cpp='$CXXCPP $CPPFLAGS'
17029
24016
+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
17041
24028
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
17042
24029
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
17043
24030
+if test "${ac_cv_prog_CXX+set}" = set; then
17044
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
17045
 
 else
17046
 
-  lt_prog_compiler_static_works=no
17047
 
-   save_LDFLAGS="$LDFLAGS"
17048
 
-   LDFLAGS="$LDFLAGS $lt_tmp_static_flag"
17049
 
-   echo "$lt_simple_link_test_code" > conftest.$ac_ext
17050
 
-   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
17051
 
-     # The linker can only warn and ignore the option if not recognized
17052
 
-     # So say no if there are warnings
17053
 
-     if test -s conftest.err; then
17054
 
-       # Append any errors to the config.log.
17055
 
-       cat conftest.err 1>&5
17056
 
-       $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
17057
 
-       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
17058
 
-       if diff conftest.exp conftest.er2 >/dev/null; then
17059
 
-         lt_prog_compiler_static_works=yes
17060
 
-       fi
17061
 
-     else
17062
 
-       lt_prog_compiler_static_works=yes
17063
 
-     fi
 
24031
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
24032
+else
17064
24033
+  if test -n "$CXX"; then
17065
24034
+  ac_cv_prog_CXX="$CXX" # Let the user override the test.
17066
24035
+else
17074
24043
+    ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
17075
24044
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
17076
24045
+    break 2
17077
 
    fi
17078
 
-   $rm conftest*
17079
 
-   LDFLAGS="$save_LDFLAGS"
 
24046
+  fi
17080
24047
+done
17081
24048
+done
17082
24049
+IFS=$as_save_IFS
17083
24050
 
17084
 
 fi
17085
 
-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works" >&5
17086
 
-echo "${ECHO_T}$lt_prog_compiler_static_works" >&6; }
17087
 
-
17088
 
-if test x"$lt_prog_compiler_static_works" = xyes; then
17089
 
-    :
 
24051
-# If no C compiler flags were specified, use CFLAGS.
 
24052
-LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
 
24053
+fi
17090
24054
+fi
17091
24055
+CXX=$ac_cv_prog_CXX
17092
24056
+if test -n "$CXX"; then
17093
24057
+  { echo "$as_me:$LINENO: result: $CXX" >&5
17094
24058
+echo "${ECHO_T}$CXX" >&6; }
17095
 
 else
17096
 
-    lt_prog_compiler_static=
 
24059
+else
17097
24060
+  { echo "$as_me:$LINENO: result: no" >&5
17098
24061
+echo "${ECHO_T}no" >&6; }
17099
 
 fi
17100
 
 
17101
 
 
17102
 
-{ echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
17103
 
-echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; }
17104
 
-if test "${lt_cv_prog_compiler_c_o+set}" = set; then
 
24062
+fi
 
24063
 
 
24064
-# Allow CC to be a program name with arguments.
 
24065
-compiler=$CC
 
24066
 
17105
24067
+    test -n "$CXX" && break
17106
24068
+  done
17107
24069
+fi
17114
24076
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
17115
24077
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
17116
24078
+if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then
17117
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
17118
 
 else
17119
 
-  lt_cv_prog_compiler_c_o=no
17120
 
-   $rm -r conftest 2>/dev/null
17121
 
-   mkdir conftest
17122
 
-   cd conftest
17123
 
-   mkdir out
17124
 
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
17125
 
-
17126
 
-   lt_compiler_flag="-o out/conftest2.$ac_objext"
17127
 
-   # Insert the option either (1) after the last *FLAGS variable, or
17128
 
-   # (2) before a word containing "conftest.", or (3) at the end.
17129
 
-   # Note that $ac_compile itself does not contain backslashes and begins
17130
 
-   # with a dollar sign (not a hyphen), so the echo should work correctly.
17131
 
-   lt_compile=`echo "$ac_compile" | $SED \
17132
 
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
17133
 
-   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
17134
 
-   -e 's:$: $lt_compiler_flag:'`
17135
 
-   (eval echo "\"\$as_me:10196: $lt_compile\"" >&5)
17136
 
-   (eval "$lt_compile" 2>out/conftest.err)
17137
 
-   ac_status=$?
17138
 
-   cat out/conftest.err >&5
17139
 
-   echo "$as_me:10200: \$? = $ac_status" >&5
17140
 
-   if (exit $ac_status) && test -s out/conftest2.$ac_objext
17141
 
-   then
17142
 
-     # The compiler can only warn and ignore the option if not recognized
17143
 
-     # So say no if there are warnings
17144
 
-     $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp
17145
 
-     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
17146
 
-     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
17147
 
-       lt_cv_prog_compiler_c_o=yes
17148
 
-     fi
 
24079
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
24080
+else
17149
24081
+  if test -n "$ac_ct_CXX"; then
17150
24082
+  ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test.
17151
24083
+else
17159
24091
+    ac_cv_prog_ac_ct_CXX="$ac_prog"
17160
24092
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
17161
24093
+    break 2
17162
 
    fi
17163
 
-   chmod u+w . 2>&5
17164
 
-   $rm conftest*
17165
 
-   # SGI C++ compiler will create directory out/ii_files/ for
17166
 
-   # template instantiation
17167
 
-   test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files
17168
 
-   $rm out/* && rmdir out
17169
 
-   cd ..
17170
 
-   rmdir conftest
17171
 
-   $rm conftest*
 
24094
+  fi
17172
24095
+done
17173
24096
+done
17174
24097
+IFS=$as_save_IFS
17175
24098
 
17176
 
 fi
17177
 
-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5
17178
 
-echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6; }
17179
 
-
17180
 
-
17181
 
-hard_links="nottested"
17182
 
-if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then
17183
 
-  # do not overwrite the value of need_locks provided by the user
17184
 
-  { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5
17185
 
-echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; }
17186
 
-  hard_links=yes
17187
 
-  $rm conftest*
17188
 
-  ln conftest.a conftest.b 2>/dev/null && hard_links=no
17189
 
-  touch conftest.a
17190
 
-  ln conftest.a conftest.b 2>&5 || hard_links=no
17191
 
-  ln conftest.a conftest.b 2>/dev/null && hard_links=no
17192
 
-  { echo "$as_me:$LINENO: result: $hard_links" >&5
17193
 
-echo "${ECHO_T}$hard_links" >&6; }
17194
 
-  if test "$hard_links" = no; then
17195
 
-    { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
17196
 
-echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
17197
 
-    need_locks=warn
17198
 
-  fi
 
24099
-# save warnings/boilerplate of simple test code
 
24100
-ac_outfile=conftest.$ac_objext
 
24101
-echo "$lt_simple_compile_test_code" >conftest.$ac_ext
 
24102
-eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
 
24103
-_lt_compiler_boilerplate=`cat conftest.err`
 
24104
-$rm conftest*
 
24105
+fi
17199
24106
+fi
17200
24107
+ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
17201
24108
+if test -n "$ac_ct_CXX"; then
17202
24109
+  { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5
17203
24110
+echo "${ECHO_T}$ac_ct_CXX" >&6; }
17204
 
 else
17205
 
-  need_locks=no
 
24111
+else
17206
24112
+  { echo "$as_me:$LINENO: result: no" >&5
17207
24113
+echo "${ECHO_T}no" >&6; }
17208
 
 fi
17209
 
 
17210
 
-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
17211
 
-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; }
17212
 
 
17213
 
-  runpath_var=
17214
 
-  allow_undefined_flag=
17215
 
-  enable_shared_with_static_runtimes=no
17216
 
-  archive_cmds=
17217
 
-  archive_expsym_cmds=
17218
 
-  old_archive_From_new_cmds=
17219
 
-  old_archive_from_expsyms_cmds=
17220
 
-  export_dynamic_flag_spec=
17221
 
-  whole_archive_flag_spec=
17222
 
-  thread_safe_flag_spec=
17223
 
-  hardcode_libdir_flag_spec=
17224
 
-  hardcode_libdir_flag_spec_ld=
17225
 
-  hardcode_libdir_separator=
17226
 
-  hardcode_direct=no
17227
 
-  hardcode_minus_L=no
17228
 
-  hardcode_shlibpath_var=unsupported
17229
 
-  link_all_deplibs=unknown
17230
 
-  hardcode_automatic=no
17231
 
-  module_cmds=
17232
 
-  module_expsym_cmds=
17233
 
-  always_export_symbols=no
17234
 
-  export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
17235
 
-  # include_expsyms should be a list of space-separated symbols to be *always*
17236
 
-  # included in the symbol list
17237
 
-  include_expsyms=
17238
 
-  # exclude_expsyms can be an extended regexp of symbols to exclude
17239
 
-  # it will be wrapped by ` (' and `)$', so one must not match beginning or
17240
 
-  # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
17241
 
-  # as well as any symbol that contains `d'.
17242
 
-  exclude_expsyms="_GLOBAL_OFFSET_TABLE_"
17243
 
-  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
17244
 
-  # platforms (ab)use it in PIC code, but their linkers get confused if
17245
 
-  # the symbol is explicitly referenced.  Since portable code cannot
17246
 
-  # rely on this symbol name, it's probably fine to never include it in
17247
 
-  # preloaded symbol tables.
17248
 
-  extract_expsyms_cmds=
17249
 
-  # Just being paranoid about ensuring that cc_basename is set.
17250
 
-  for cc_temp in $compiler""; do
17251
 
-  case $cc_temp in
17252
 
-    compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
17253
 
-    distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
17254
 
-    \-*) ;;
17255
 
-    *) break;;
17256
 
-  esac
 
24114
+fi
 
24115
 
 
24116
-ac_outfile=conftest.$ac_objext
 
24117
-echo "$lt_simple_link_test_code" >conftest.$ac_ext
 
24118
-eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
 
24119
-_lt_linker_boilerplate=`cat conftest.err`
 
24120
-$rm -r conftest*
 
24121
 
17257
24122
+  test -n "$ac_ct_CXX" && break
17258
 
 done
17259
 
-cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
17260
 
-
17261
 
-  case $host_os in
17262
 
-  cygwin* | mingw* | pw32*)
17263
 
-    # FIXME: the MSVC++ port hasn't been tested in a loooong time
17264
 
-    # When not using gcc, we currently assume that we are using
17265
 
-    # Microsoft Visual C++.
17266
 
-    if test "$GCC" != yes; then
17267
 
-      with_gnu_ld=no
17268
 
-    fi
17269
 
-    ;;
17270
 
-  interix*)
17271
 
-    # we just hope/assume this is gcc and not c89 (= MSVC++)
17272
 
-    with_gnu_ld=yes
17273
 
-    ;;
17274
 
-  openbsd*)
17275
 
-    with_gnu_ld=no
17276
 
-    ;;
17277
 
-  esac
17278
 
-
17279
 
-  ld_shlibs=yes
17280
 
-  if test "$with_gnu_ld" = yes; then
17281
 
-    # If archive_cmds runs LD, not CC, wlarc should be empty
17282
 
-    wlarc='${wl}'
 
24123
+done
17283
24124
 
17284
 
-    # Set some defaults for GNU ld with shared library support. These
17285
 
-    # are reset later if shared libraries are not supported. Putting them
17286
 
-    # here allows them to be overridden if necessary.
17287
 
-    runpath_var=LD_RUN_PATH
17288
 
-    hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir'
17289
 
-    export_dynamic_flag_spec='${wl}--export-dynamic'
17290
 
-    # ancient GNU ld didn't support --whole-archive et. al.
17291
 
-    if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then
17292
 
-       whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
17293
24125
+  if test "x$ac_ct_CXX" = x; then
17294
24126
+    CXX="g++"
17295
 
       else
17296
 
-       whole_archive_flag_spec=
 
24127
+  else
17297
24128
+    case $cross_compiling:$ac_tool_warned in
17298
24129
+yes:)
17299
24130
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
17305
24136
+ac_tool_warned=yes ;;
17306
24137
+esac
17307
24138
+    CXX=$ac_ct_CXX
17308
 
     fi
17309
 
-    supports_anon_versioning=no
17310
 
-    case `$LD -v 2>/dev/null` in
17311
 
-      *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11
17312
 
-      *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
17313
 
-      *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
17314
 
-      *\ 2.11.*) ;; # other 2.11 versions
17315
 
-      *) supports_anon_versioning=yes ;;
17316
 
-    esac
 
24139
+  fi
17317
24140
+fi
17318
24141
 
17319
 
-    # See if GNU ld supports shared libraries.
17320
 
-    case $host_os in
17321
 
-    aix3* | aix4* | aix5*)
17322
 
-      # On AIX/PPC, the GNU linker is very broken
17323
 
-      if test "$host_cpu" != ia64; then
17324
 
-       ld_shlibs=no
17325
 
-       cat <<EOF 1>&2
17326
 
-
17327
 
-*** Warning: the GNU linker, at least up to release 2.9.1, is reported
17328
 
-*** to be unable to reliably create shared libraries on AIX.
17329
 
-*** Therefore, libtool is disabling shared libraries support.  If you
17330
 
-*** really care for shared libraries, you may want to modify your PATH
17331
 
-*** so that a non-GNU linker is found, and then restart.
17332
 
-
17333
 
-EOF
17334
 
       fi
17335
 
-      ;;
17336
 
-
17337
 
-    amigaos*)
17338
 
-      archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
17339
 
-      hardcode_libdir_flag_spec='-L$libdir'
17340
 
-      hardcode_minus_L=yes
17341
 
-
17342
 
-      # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
17343
 
-      # that the semantics of dynamic libraries on AmigaOS, at least up
17344
 
-      # to version 4, is to share data among multiple programs linked
17345
 
-      # with the same dynamic library.  Since this doesn't match the
17346
 
-      # behavior of shared libraries on other platforms, we can't use
17347
 
-      # them.
17348
 
-      ld_shlibs=no
17349
 
-      ;;
 
24142
-lt_prog_compiler_no_builtin_flag=
 
24143
+  fi
17350
24144
+fi
17351
24145
+# Provide some information about the compiler.
17352
24146
+echo "$as_me:$LINENO: checking for C++ compiler version" >&5
17382
24176
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
17383
24177
+  (exit $ac_status); }
17384
24178
 
17385
 
-    beos*)
17386
 
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
17387
 
-       allow_undefined_flag=unsupported
17388
 
-       # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
17389
 
-       # support --undefined.  This deserves some investigation.  FIXME
17390
 
-       archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
17391
 
-      else
17392
 
-       ld_shlibs=no
17393
 
-      fi
17394
 
-      ;;
 
24179
-if test "$GCC" = yes; then
 
24180
-  lt_prog_compiler_no_builtin_flag=' -fno-builtin'
17395
24181
+{ echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5
17396
24182
+echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; }
17397
24183
+if test "${ac_cv_cxx_compiler_gnu+set}" = set; then
17404
24190
+cat >>conftest.$ac_ext <<_ACEOF
17405
24191
+/* end confdefs.h.  */
17406
24192
 
17407
 
-    cygwin* | mingw* | pw32*)
17408
 
-      # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless,
17409
 
-      # as there is no search path for DLLs.
17410
 
-      hardcode_libdir_flag_spec='-L$libdir'
17411
 
-      allow_undefined_flag=unsupported
17412
 
-      always_export_symbols=no
17413
 
-      enable_shared_with_static_runtimes=yes
17414
 
-      export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols'
17415
24193
+int
17416
24194
+main ()
17417
24195
+{
17419
24197
+       choke me
17420
24198
+#endif
17421
24199
 
17422
 
-      if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
17423
 
-        archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
17424
 
-       # If the export-symbols file already is a .def file (1st line
17425
 
-       # is EXPORTS), use it as is; otherwise, prepend...
17426
 
-       archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
17427
 
-         cp $export_symbols $output_objdir/$soname.def;
17428
 
-       else
17429
 
-         echo EXPORTS > $output_objdir/$soname.def;
17430
 
-         cat $export_symbols >> $output_objdir/$soname.def;
17431
 
-       fi~
17432
 
-       $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
17433
 
-      else
17434
 
-       ld_shlibs=no
17435
 
-      fi
17436
 
-      ;;
 
24200
-{ $as_echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
 
24201
-$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; }
 
24202
-if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then
 
24203
-  $as_echo_n "(cached) " >&6
17437
24204
+  ;
17438
24205
+  return 0;
17439
24206
+}
17456
24223
+        test ! -s conftest.err
17457
24224
+       } && test -s conftest.$ac_objext; then
17458
24225
+  ac_compiler_gnu=yes
17459
 
+else
 
24226
 else
 
24227
-  lt_cv_prog_compiler_rtti_exceptions=no
 
24228
-  ac_outfile=conftest.$ac_objext
 
24229
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
 
24230
-   lt_compiler_flag="-fno-rtti -fno-exceptions"
 
24231
-   # Insert the option either (1) after the last *FLAGS variable, or
 
24232
-   # (2) before a word containing "conftest.", or (3) at the end.
 
24233
-   # Note that $ac_compile itself does not contain backslashes and begins
 
24234
-   # with a dollar sign (not a hyphen), so the echo should work correctly.
 
24235
-   # The option is referenced via a variable to avoid confusing sed.
 
24236
-   lt_compile=`echo "$ac_compile" | $SED \
 
24237
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
24238
-   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
24239
-   -e 's:$: $lt_compiler_flag:'`
 
24240
-   (eval echo "\"\$as_me:10412: $lt_compile\"" >&5)
 
24241
-   (eval "$lt_compile" 2>conftest.err)
 
24242
-   ac_status=$?
 
24243
-   cat conftest.err >&5
 
24244
-   echo "$as_me:10416: \$? = $ac_status" >&5
 
24245
-   if (exit $ac_status) && test -s "$ac_outfile"; then
 
24246
-     # The compiler can only warn and ignore the option if not recognized
 
24247
-     # So say no if there are warnings other than the usual output.
 
24248
-     $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
 
24249
-     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
 
24250
-     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
 
24251
-       lt_cv_prog_compiler_rtti_exceptions=yes
 
24252
-     fi
 
24253
-   fi
 
24254
-   $rm conftest*
17460
24255
+  echo "$as_me: failed program was:" >&5
17461
24256
+sed 's/^/| /' conftest.$ac_ext >&5
17462
24257
 
17463
 
-    interix[3-9]*)
17464
 
-      hardcode_direct=no
17465
 
-      hardcode_shlibpath_var=no
17466
 
-      hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
17467
 
-      export_dynamic_flag_spec='${wl}-E'
17468
 
-      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
17469
 
-      # Instead, shared libraries are loaded at an image base (0x10000000 by
17470
 
-      # default) and relocated if they conflict, which is a slow very memory
17471
 
-      # consuming and fragmenting process.  To avoid this, we pick a random,
17472
 
-      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
17473
 
-      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
17474
 
-      archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
17475
 
-      archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
17476
 
-      ;;
17477
24258
+       ac_compiler_gnu=no
17478
 
+fi
 
24259
 fi
 
24260
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5
 
24261
-$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; }
17479
24262
 
17480
 
-    gnu* | linux* | k*bsd*-gnu)
17481
 
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
17482
 
-       tmp_addflag=
17483
 
-       case $cc_basename,$host_cpu in
17484
 
-       pgcc*)                          # Portland Group C compiler
17485
 
-         whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
17486
 
-         tmp_addflag=' $pic_flag'
17487
 
-         ;;
17488
 
-       pgf77* | pgf90* | pgf95*)       # Portland Group f77 and f90 compilers
17489
 
-         whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
17490
 
-         tmp_addflag=' $pic_flag -Mnomain' ;;
17491
 
-       ecc*,ia64* | icc*,ia64*)                # Intel C compiler on ia64
17492
 
-         tmp_addflag=' -i_dynamic' ;;
17493
 
-       efc*,ia64* | ifort*,ia64*)      # Intel Fortran compiler on ia64
17494
 
-         tmp_addflag=' -i_dynamic -nofor_main' ;;
17495
 
-       ifc* | ifort*)                  # Intel Fortran compiler
17496
 
-         tmp_addflag=' -nofor_main' ;;
17497
 
-       esac
17498
 
-       case `$CC -V 2>&1 | sed 5q` in
17499
 
-       *Sun\ C*)                       # Sun C 5.9
17500
 
-         whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
17501
 
-         tmp_sharedflag='-G' ;;
17502
 
-       *Sun\ F*)                       # Sun Fortran 8.3
17503
 
-         tmp_sharedflag='-G' ;;
17504
 
-       *)
17505
 
-         tmp_sharedflag='-shared' ;;
17506
 
-       esac
17507
 
-       archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
24263
-if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then
 
24264
-    lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions"
 
24265
-else
 
24266
-    :
 
24267
-fi
17508
24268
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
17509
24269
+ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
17510
24270
 
17511
 
-       if test $supports_anon_versioning = yes; then
17512
 
-         archive_expsym_cmds='$echo "{ global:" > $output_objdir/$libname.ver~
17513
 
-  cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
17514
 
-  $echo "local: *; };" >> $output_objdir/$libname.ver~
17515
 
-         $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
17516
 
-       fi
17517
 
-      else
17518
 
-       ld_shlibs=no
17519
 
-      fi
17520
 
-      ;;
17521
 
+fi
 
24271
 fi
17522
24272
+{ echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5
17523
24273
+echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; }
17524
24274
+GXX=`test $ac_compiler_gnu = yes && echo yes`
17540
24290
+cat >>conftest.$ac_ext <<_ACEOF
17541
24291
+/* end confdefs.h.  */
17542
24292
 
17543
 
-    netbsd*)
17544
 
-      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
17545
 
-       archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
17546
 
-       wlarc=
17547
 
-      else
17548
 
-       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
17549
 
-       archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
17550
 
-      fi
17551
 
-      ;;
 
24293
-lt_prog_compiler_wl=
 
24294
-lt_prog_compiler_pic=
 
24295
-lt_prog_compiler_static=
17552
24296
+int
17553
24297
+main ()
17554
24298
+{
17555
24299
 
17556
 
-    solaris*)
17557
 
-      if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
17558
 
-       ld_shlibs=no
17559
 
-       cat <<EOF 1>&2
 
24300
-{ $as_echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5
 
24301
-$as_echo_n "checking for $compiler option to produce PIC... " >&6; }
17560
24302
+  ;
17561
24303
+  return 0;
17562
24304
+}
17583
24325
+  echo "$as_me: failed program was:" >&5
17584
24326
+sed 's/^/| /' conftest.$ac_ext >&5
17585
24327
 
17586
 
-*** Warning: The releases 2.8.* of the GNU linker cannot reliably
17587
 
-*** create shared libraries on Solaris systems.  Therefore, libtool
17588
 
-*** is disabling shared libraries support.  We urge you to upgrade GNU
17589
 
-*** binutils to release 2.9.1 or newer.  Another option is to modify
17590
 
-*** your PATH or compiler configuration so that the native linker is
17591
 
-*** used, and then restart.
 
24328
-  if test "$GCC" = yes; then
 
24329
-    lt_prog_compiler_wl='-Wl,'
 
24330
-    lt_prog_compiler_static='-static'
17592
24331
+       CXXFLAGS=""
17593
24332
+      cat >conftest.$ac_ext <<_ACEOF
17594
24333
+/* confdefs.h.  */
17597
24336
+cat >>conftest.$ac_ext <<_ACEOF
17598
24337
+/* end confdefs.h.  */
17599
24338
 
17600
 
-EOF
17601
 
-      elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
17602
 
-       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
17603
 
-       archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
17604
 
-      else
17605
 
-       ld_shlibs=no
17606
 
-      fi
17607
 
-      ;;
17608
 
-
17609
 
-    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
17610
 
-      case `$LD -v 2>&1` in
17611
 
-        *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
17612
 
-       ld_shlibs=no
17613
 
-       cat <<_LT_EOF 1>&2
17614
 
-
17615
 
-*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
17616
 
-*** reliably create shared libraries on SCO systems.  Therefore, libtool
17617
 
-*** is disabling shared libraries support.  We urge you to upgrade GNU
17618
 
-*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify
17619
 
-*** your PATH or compiler configuration so that the native linker is
17620
 
-*** used, and then restart.
17621
 
-
17622
 
-_LT_EOF
17623
 
-       ;;
17624
 
-       *)
17625
 
-         if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
17626
 
-           hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
17627
 
-           archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib'
17628
 
-           archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib'
17629
 
-         else
17630
 
-           ld_shlibs=no
17631
 
-         fi
17632
 
-       ;;
17633
 
-      esac
17634
 
-      ;;
17635
 
-
17636
 
-    sunos4*)
17637
 
-      archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
17638
 
-      wlarc=
17639
 
-      hardcode_direct=yes
17640
 
-      hardcode_shlibpath_var=no
17641
 
-      ;;
17642
 
-
17643
 
-    *)
17644
 
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
17645
 
-       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
17646
 
-       archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
17647
 
-      else
17648
 
-       ld_shlibs=no
17649
 
-      fi
17650
 
-      ;;
17651
 
-    esac
17652
 
-
17653
 
-    if test "$ld_shlibs" = no; then
17654
 
-      runpath_var=
17655
 
-      hardcode_libdir_flag_spec=
17656
 
-      export_dynamic_flag_spec=
17657
 
-      whole_archive_flag_spec=
17658
 
-    fi
17659
 
-  else
17660
 
-    # PORTME fill in a description of your system's linker (not GNU ld)
17661
24339
-    case $host_os in
17662
 
-    aix3*)
17663
 
-      allow_undefined_flag=unsupported
17664
 
-      always_export_symbols=yes
17665
 
-      archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'
17666
 
-      # Note: this linker hardcodes the directories in LIBPATH if there
17667
 
-      # are no directories specified by -L.
17668
 
-      hardcode_minus_L=yes
17669
 
-      if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
17670
 
-       # Neither direct hardcoding nor static linking is supported with a
17671
 
-       # broken collect2.
17672
 
-       hardcode_direct=unsupported
17673
 
-      fi
17674
 
-      ;;
17675
 
-
17676
 
-    aix4* | aix5*)
 
24340
-      aix*)
 
24341
-      # All AIX code is PIC.
17677
24342
-      if test "$host_cpu" = ia64; then
17678
 
-       # On IA64, the linker does run time linking by default, so we don't
17679
 
-       # have to do anything special.
17680
 
-       aix_use_runtimelinking=no
17681
 
-       exp_sym_flag='-Bexport'
17682
 
-       no_entry_flag=""
17683
 
-      else
17684
 
-       # If we're using GNU nm, then we don't want the "-C" option.
17685
 
-       # -C means demangle to AIX nm, but means don't demangle with GNU nm
17686
 
-       if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
17687
 
-         export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols'
17688
 
-       else
17689
 
-         export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols'
17690
 
-       fi
17691
 
-       aix_use_runtimelinking=no
17692
 
-
17693
 
-       # Test if we are trying to use run time linking or normal
17694
 
-       # AIX style linking. If -brtl is somewhere in LDFLAGS, we
17695
 
-       # need to do runtime linking.
17696
 
-       case $host_os in aix4.[23]|aix4.[23].*|aix5*)
17697
 
-         for ld_flag in $LDFLAGS; do
17698
 
-         if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
17699
 
-           aix_use_runtimelinking=yes
17700
 
-           break
17701
 
-         fi
17702
 
-         done
17703
 
-         ;;
17704
 
-       esac
17705
 
-
17706
 
-       exp_sym_flag='-bexport'
17707
 
-       no_entry_flag='-bnoentry'
17708
 
-      fi
17709
 
-
17710
 
-      # When large executables or shared objects are built, AIX ld can
17711
 
-      # have problems creating the table of contents.  If linking a library
17712
 
-      # or program results in "error TOC overflow" add -mminimal-toc to
17713
 
-      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
17714
 
-      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
17715
 
-
17716
 
-      archive_cmds=''
17717
 
-      hardcode_direct=yes
17718
 
-      hardcode_libdir_separator=':'
17719
 
-      link_all_deplibs=yes
17720
 
-
17721
 
-      if test "$GCC" = yes; then
17722
 
-       case $host_os in aix4.[012]|aix4.[012].*)
17723
 
-       # We only want to do this on AIX 4.2 and lower, the check
17724
 
-       # below for broken collect2 doesn't work under 4.3+
17725
 
-         collect2name=`${CC} -print-prog-name=collect2`
17726
 
-         if test -f "$collect2name" && \
17727
 
-          strings "$collect2name" | grep resolve_lib_name >/dev/null
17728
 
-         then
17729
 
-         # We have reworked collect2
17730
 
-         :
17731
 
-         else
17732
 
-         # We have old collect2
17733
 
-         hardcode_direct=unsupported
17734
 
-         # It fails to find uninstalled libraries when the uninstalled
17735
 
-         # path is not listed in the libpath.  Setting hardcode_minus_L
17736
 
-         # to unsupported forces relinking
17737
 
-         hardcode_minus_L=yes
17738
 
-         hardcode_libdir_flag_spec='-L$libdir'
17739
 
-         hardcode_libdir_separator=
17740
 
-         fi
17741
 
-         ;;
17742
 
-       esac
17743
 
-       shared_flag='-shared'
17744
 
-       if test "$aix_use_runtimelinking" = yes; then
17745
 
-         shared_flag="$shared_flag "'${wl}-G'
17746
 
-       fi
17747
 
-      else
17748
 
-       # not using gcc
17749
 
-       if test "$host_cpu" = ia64; then
17750
 
-       # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
17751
 
-       # chokes on -Wl,-G. The following line is correct:
17752
 
-         shared_flag='-G'
17753
 
-       else
17754
 
-         if test "$aix_use_runtimelinking" = yes; then
17755
 
-           shared_flag='${wl}-G'
17756
 
-         else
17757
 
-           shared_flag='${wl}-bM:SRE'
17758
 
-         fi
17759
 
-       fi
17760
 
-      fi
17761
 
-
17762
 
-      # It seems that -bexpall does not export symbols beginning with
17763
 
-      # underscore (_), so it is better to generate a list of symbols to export.
17764
 
-      always_export_symbols=yes
17765
 
-      if test "$aix_use_runtimelinking" = yes; then
17766
 
-       # Warning - without using the other runtime loading flags (-brtl),
17767
 
-       # -berok will link without error, but may produce a broken library.
17768
 
-       allow_undefined_flag='-berok'
17769
 
-       # Determine the default libpath from the value encoded in an empty executable.
17770
 
-       cat >conftest.$ac_ext <<_ACEOF
17771
 
-/* confdefs.h.  */
17772
 
-_ACEOF
17773
 
-cat confdefs.h >>conftest.$ac_ext
17774
 
-cat >>conftest.$ac_ext <<_ACEOF
17775
 
-/* end confdefs.h.  */
17776
 
-
17777
 
-int
17778
 
-main ()
17779
 
-{
 
24343
-       # AIX 5 now supports IA64 processor
 
24344
-       lt_prog_compiler_static='-Bstatic'
 
24345
-      fi
 
24346
-      ;;
17780
24347
+int
17781
24348
+main ()
17782
24349
+{
17783
24350
 
17784
 
   ;
17785
 
   return 0;
17786
 
 }
17787
 
 _ACEOF
17788
 
-rm -f conftest.$ac_objext conftest$ac_exeext
17789
 
-if { (ac_try="$ac_link"
 
24351
-    amigaos*)
 
24352
-      # FIXME: we need at least 68020 code to build shared libraries, but
 
24353
-      # adding the `-m68020' flag to GCC prevents building anything better,
 
24354
-      # like `-m68040'.
 
24355
-      lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4'
 
24356
-      ;;
 
24357
+  ;
 
24358
+  return 0;
 
24359
+}
 
24360
+_ACEOF
17790
24361
+rm -f conftest.$ac_objext
17791
24362
+if { (ac_try="$ac_compile"
17792
 
 case "(($ac_try" in
17793
 
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
17794
 
   *) ac_try_echo=$ac_try;;
17795
 
 esac
17796
 
 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
17797
 
-  (eval "$ac_link") 2>conftest.er1
 
24363
+case "(($ac_try" in
 
24364
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
24365
+  *) ac_try_echo=$ac_try;;
 
24366
+esac
 
24367
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
17798
24368
+  (eval "$ac_compile") 2>conftest.er1
17799
 
   ac_status=$?
17800
 
   grep -v '^ *+' conftest.er1 >conftest.err
17801
 
   rm -f conftest.er1
17802
 
   cat conftest.err >&5
17803
 
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
17804
 
   (exit $ac_status); } && {
17805
 
-        test -z "$ac_c_werror_flag" ||
 
24369
+  ac_status=$?
 
24370
+  grep -v '^ *+' conftest.er1 >conftest.err
 
24371
+  rm -f conftest.er1
 
24372
+  cat conftest.err >&5
 
24373
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
24374
+  (exit $ac_status); } && {
17806
24375
+        test -z "$ac_cxx_werror_flag" ||
17807
 
         test ! -s conftest.err
17808
 
-       } && test -s conftest$ac_exeext &&
17809
 
-       $as_test_x conftest$ac_exeext; then
17810
 
-
17811
 
-lt_aix_libpath_sed='
17812
 
-    /Import File Strings/,/^$/ {
17813
 
-       /^0/ {
17814
 
-           s/^0  *\(.*\)$/\1/
17815
 
-           p
17816
 
-       }
17817
 
-    }'
17818
 
-aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
17819
 
-# Check for a 64-bit object if we didn't find anything.
17820
 
-if test -z "$aix_libpath"; then
17821
 
-  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
17822
 
-fi
 
24376
+        test ! -s conftest.err
17823
24377
+       } && test -s conftest.$ac_objext; then
17824
24378
+  :
17825
 
 else
17826
 
   echo "$as_me: failed program was:" >&5
17827
 
 sed 's/^/| /' conftest.$ac_ext >&5
 
24379
+else
 
24380
+  echo "$as_me: failed program was:" >&5
 
24381
+sed 's/^/| /' conftest.$ac_ext >&5
17828
24382
 
17829
 
-
17830
 
-fi
17831
 
-
17832
 
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
17833
 
-      conftest$ac_exeext conftest.$ac_ext
17834
 
-if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
17835
 
-
17836
 
-       hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
17837
 
-       archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
17838
 
-       else
17839
 
-       if test "$host_cpu" = ia64; then
17840
 
-         hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
17841
 
-         allow_undefined_flag="-z nodefs"
17842
 
-         archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
17843
 
-       else
17844
 
-        # Determine the default libpath from the value encoded in an empty executable.
 
24383
-    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
 
24384
-      # PIC is the default for these OSes.
 
24385
-      ;;
17845
24386
+       ac_cxx_werror_flag=$ac_save_cxx_werror_flag
17846
24387
+        CXXFLAGS="-g"
17847
 
         cat >conftest.$ac_ext <<_ACEOF
17848
 
 /* confdefs.h.  */
17849
 
 _ACEOF
17850
 
@@ -10735,37 +10318,24 @@
17851
 
   return 0;
17852
 
 }
17853
 
 _ACEOF
17854
 
-rm -f conftest.$ac_objext conftest$ac_exeext
17855
 
-if { (ac_try="$ac_link"
 
24388
+        cat >conftest.$ac_ext <<_ACEOF
 
24389
+/* confdefs.h.  */
 
24390
+_ACEOF
 
24391
+cat confdefs.h >>conftest.$ac_ext
 
24392
+cat >>conftest.$ac_ext <<_ACEOF
 
24393
+/* end confdefs.h.  */
 
24394
 
 
24395
-    mingw* | cygwin* | pw32* | os2*)
 
24396
-      # This hack is so that the source file can tell whether it is being
 
24397
-      # built for inclusion in a dll (and should export symbols for example).
 
24398
-      # Although the cygwin gcc ignores -fPIC, still need this for old-style
 
24399
-      # (--disable-auto-import) libraries
 
24400
-      lt_prog_compiler_pic='-DDLL_EXPORT'
 
24401
-      ;;
 
24402
+int
 
24403
+main ()
 
24404
+{
 
24405
 
 
24406
-    darwin* | rhapsody*)
 
24407
-      # PIC is the default on this platform
 
24408
-      # Common symbols not allowed in MH_DYLIB files
 
24409
-      lt_prog_compiler_pic='-fno-common'
 
24410
-      ;;
 
24411
+  ;
 
24412
+  return 0;
 
24413
+}
 
24414
+_ACEOF
17856
24415
+rm -f conftest.$ac_objext
17857
24416
+if { (ac_try="$ac_compile"
17858
 
 case "(($ac_try" in
17859
 
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
17860
 
   *) ac_try_echo=$ac_try;;
17861
 
 esac
17862
 
 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
17863
 
-  (eval "$ac_link") 2>conftest.er1
 
24417
+case "(($ac_try" in
 
24418
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
24419
+  *) ac_try_echo=$ac_try;;
 
24420
+esac
 
24421
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
17864
24422
+  (eval "$ac_compile") 2>conftest.er1
17865
 
   ac_status=$?
17866
 
   grep -v '^ *+' conftest.er1 >conftest.err
17867
 
   rm -f conftest.er1
17868
 
   cat conftest.err >&5
17869
 
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
17870
 
   (exit $ac_status); } && {
17871
 
-        test -z "$ac_c_werror_flag" ||
 
24423
+  ac_status=$?
 
24424
+  grep -v '^ *+' conftest.er1 >conftest.err
 
24425
+  rm -f conftest.er1
 
24426
+  cat conftest.err >&5
 
24427
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
24428
+  (exit $ac_status); } && {
17872
24429
+        test -z "$ac_cxx_werror_flag" ||
17873
 
         test ! -s conftest.err
17874
 
-       } && test -s conftest$ac_exeext &&
17875
 
-       $as_test_x conftest$ac_exeext; then
17876
 
-
17877
 
-lt_aix_libpath_sed='
17878
 
-    /Import File Strings/,/^$/ {
17879
 
-       /^0/ {
17880
 
-           s/^0  *\(.*\)$/\1/
17881
 
-           p
17882
 
-       }
17883
 
-    }'
17884
 
-aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
17885
 
-# Check for a 64-bit object if we didn't find anything.
17886
 
-if test -z "$aix_libpath"; then
17887
 
-  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
17888
 
-fi
 
24430
+        test ! -s conftest.err
17889
24431
+       } && test -s conftest.$ac_objext; then
17890
24432
+  ac_cv_prog_cxx_g=yes
17891
 
 else
17892
 
   echo "$as_me: failed program was:" >&5
17893
 
 sed 's/^/| /' conftest.$ac_ext >&5
17894
 
@@ -10773,8539 +10343,6214 @@
17895
 
 
17896
 
 fi
17897
 
 
17898
 
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
17899
 
-      conftest$ac_exeext conftest.$ac_ext
17900
 
-if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
17901
 
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
17902
 
+fi
17903
 
 
17904
 
-        hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
17905
 
-         # Warning - without using the other run time loading flags,
17906
 
-         # -berok will link without error, but may produce a broken library.
17907
 
-         no_undefined_flag=' ${wl}-bernotok'
17908
 
-         allow_undefined_flag=' ${wl}-berok'
17909
 
-         # Exported symbols can be pulled into shared objects from archives
17910
 
-         whole_archive_flag_spec='$convenience'
17911
 
-         archive_cmds_need_lc=yes
17912
 
-         # This is similar to how AIX traditionally builds its shared libraries.
17913
 
-         archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
17914
 
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
17915
 
+fi
17916
 
+
 
24433
+else
 
24434
+  echo "$as_me: failed program was:" >&5
 
24435
+sed 's/^/| /' conftest.$ac_ext >&5
 
24436
 
 
24437
-    interix[3-9]*)
 
24438
-      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
 
24439
-      # Instead, we relocate shared libraries at runtime.
 
24440
-      ;;
 
24441
 
 
24442
-    msdosdjgpp*)
 
24443
-      # Just because we use GCC doesn't mean we suddenly get shared libraries
 
24444
-      # on systems that don't support them.
 
24445
-      lt_prog_compiler_can_build_shared=no
 
24446
-      enable_shared=no
 
24447
-      ;;
 
24448
+fi
 
24449
 
 
24450
-    sysv4*MP*)
 
24451
-      if test -d /usr/nec; then
 
24452
-       lt_prog_compiler_pic=-Kconform_pic
 
24453
-      fi
 
24454
-      ;;
 
24455
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
24456
+fi
 
24457
 
 
24458
-    hpux*)
 
24459
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
 
24460
-      # not for PA HP-UX.
 
24461
-      case $host_cpu in
 
24462
-      hppa*64*|ia64*)
 
24463
-       # +Z the default
 
24464
-       ;;
 
24465
-      *)
 
24466
-       lt_prog_compiler_pic='-fPIC'
 
24467
-       ;;
 
24468
-      esac
 
24469
-      ;;
 
24470
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
24471
+fi
 
24472
 
 
24473
-    *)
 
24474
-      lt_prog_compiler_pic='-fPIC'
 
24475
-      ;;
 
24476
-    esac
17917
24477
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
17918
24478
+   ac_cxx_werror_flag=$ac_save_cxx_werror_flag
17919
24479
+fi
17924
24484
+elif test $ac_cv_prog_cxx_g = yes; then
17925
24485
+  if test "$GXX" = yes; then
17926
24486
+    CXXFLAGS="-g -O2"
17927
 
+  else
 
24487
   else
 
24488
-    # PORTME Check for flag to pass linker flags through the system compiler.
 
24489
-    case $host_os in
 
24490
-    aix*)
 
24491
-      lt_prog_compiler_wl='-Wl,'
 
24492
-      if test "$host_cpu" = ia64; then
 
24493
-       # AIX 5 now supports IA64 processor
 
24494
-       lt_prog_compiler_static='-Bstatic'
 
24495
-      else
 
24496
-       lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp'
 
24497
-      fi
 
24498
-      ;;
 
24499
-      darwin*)
 
24500
-        # PIC is the default on this platform
 
24501
-        # Common symbols not allowed in MH_DYLIB files
 
24502
-       case $cc_basename in
 
24503
-         xlc*)
 
24504
-         lt_prog_compiler_pic='-qnocommon'
 
24505
-         lt_prog_compiler_wl='-Wl,'
 
24506
-         ;;
 
24507
-       esac
 
24508
-       ;;
17928
24509
+    CXXFLAGS="-g"
17929
 
        fi
 
24510
+  fi
17930
24511
+else
17931
24512
+  if test "$GXX" = yes; then
17932
24513
+    CXXFLAGS="-O2"
17933
24514
+  else
17934
24515
+    CXXFLAGS=
17935
 
       fi
17936
 
-      ;;
17937
 
-
17938
 
-    amigaos*)
17939
 
-      archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
17940
 
-      hardcode_libdir_flag_spec='-L$libdir'
17941
 
-      hardcode_minus_L=yes
17942
 
-      # see comment about different semantics on the GNU ld section
17943
 
-      ld_shlibs=no
17944
 
-      ;;
 
24516
+  fi
17945
24517
+fi
17946
24518
+ac_ext=c
17947
24519
+ac_cpp='$CPP $CPPFLAGS'
17949
24521
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
17950
24522
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
17951
24523
 
17952
 
-    bsdi[45]*)
17953
 
-      export_dynamic_flag_spec=-rdynamic
 
24524
-    mingw* | cygwin* | pw32* | os2*)
 
24525
-      # This hack is so that the source file can tell whether it is being
 
24526
-      # built for inclusion in a dll (and should export symbols for example).
 
24527
-      lt_prog_compiler_pic='-DDLL_EXPORT'
17954
24528
-      ;;
17955
24529
+depcc="$CXX"  am_compiler_list=
17956
24530
 
17957
 
-    cygwin* | mingw* | pw32*)
17958
 
-      # When not using gcc, we currently assume that we are using
17959
 
-      # Microsoft Visual C++.
17960
 
-      # hardcode_libdir_flag_spec is actually meaningless, as there is
17961
 
-      # no search path for DLLs.
17962
 
-      hardcode_libdir_flag_spec=' '
17963
 
-      allow_undefined_flag=unsupported
17964
 
-      # Tell ltmain to make .lib files, not .a files.
17965
 
-      libext=lib
17966
 
-      # Tell ltmain to make .dll files, not .so files.
17967
 
-      shrext_cmds=".dll"
17968
 
-      # FIXME: Setting linknames here is a bad hack.
17969
 
-      archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
17970
 
-      # The linker will automatically build a .lib file if we build a DLL.
17971
 
-      old_archive_From_new_cmds='true'
17972
 
-      # FIXME: Should let the user specify the lib program.
17973
 
-      old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs'
17974
 
-      fix_srcfile_path='`cygpath -w "$srcfile"`'
17975
 
-      enable_shared_with_static_runtimes=yes
 
24531
-    hpux9* | hpux10* | hpux11*)
 
24532
-      lt_prog_compiler_wl='-Wl,'
 
24533
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
 
24534
-      # not for PA HP-UX.
 
24535
-      case $host_cpu in
 
24536
-      hppa*64*|ia64*)
 
24537
-       # +Z the default
 
24538
-       ;;
 
24539
-      *)
 
24540
-       lt_prog_compiler_pic='+Z'
 
24541
-       ;;
 
24542
-      esac
 
24543
-      # Is there a better lt_prog_compiler_static that works with the bundled CC?
 
24544
-      lt_prog_compiler_static='${wl}-a ${wl}archive'
17976
24545
-      ;;
17977
24546
+{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
17978
24547
+echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; }
17998
24567
+  # directory.
17999
24568
+  mkdir sub
18000
24569
 
18001
 
-    darwin* | rhapsody*)
18002
 
-      case $host_os in
18003
 
-        rhapsody* | darwin1.[012])
18004
 
-         allow_undefined_flag='${wl}-undefined ${wl}suppress'
18005
 
-         ;;
18006
 
-       *) # Darwin 1.3 on
18007
 
-         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
18008
 
-           allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
18009
 
-         else
18010
 
-           case ${MACOSX_DEPLOYMENT_TARGET} in
18011
 
-             10.[012])
18012
 
-               allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
18013
 
-               ;;
18014
 
-             10.*)
18015
 
-               allow_undefined_flag='${wl}-undefined ${wl}dynamic_lookup'
18016
 
-               ;;
18017
 
-           esac
 
24570
-    irix5* | irix6* | nonstopux*)
 
24571
-      lt_prog_compiler_wl='-Wl,'
 
24572
-      # PIC (with -KPIC) is the default.
 
24573
-      lt_prog_compiler_static='-non_shared'
 
24574
-      ;;
 
24575
-
 
24576
-    newsos6)
 
24577
-      lt_prog_compiler_pic='-KPIC'
 
24578
-      lt_prog_compiler_static='-Bstatic'
 
24579
-      ;;
 
24580
-
 
24581
-    linux* | k*bsd*-gnu)
 
24582
-      case $cc_basename in
 
24583
-      icc* | ecc*)
 
24584
-       lt_prog_compiler_wl='-Wl,'
 
24585
-       lt_prog_compiler_pic='-KPIC'
 
24586
-       lt_prog_compiler_static='-static'
 
24587
-        ;;
 
24588
-      pgcc* | pgf77* | pgf90* | pgf95*)
 
24589
-        # Portland Group compilers (*not* the Pentium gcc compiler,
 
24590
-       # which looks to be a dead project)
 
24591
-       lt_prog_compiler_wl='-Wl,'
 
24592
-       lt_prog_compiler_pic='-fpic'
 
24593
-       lt_prog_compiler_static='-Bstatic'
 
24594
-        ;;
 
24595
-      ccc*)
 
24596
-        lt_prog_compiler_wl='-Wl,'
 
24597
-        # All Alpha code is PIC.
 
24598
-        lt_prog_compiler_static='-non_shared'
 
24599
-        ;;
 
24600
-      *)
 
24601
-        case `$CC -V 2>&1 | sed 5q` in
 
24602
-       *Sun\ C*)
 
24603
-         # Sun C 5.9
 
24604
-         lt_prog_compiler_pic='-KPIC'
 
24605
-         lt_prog_compiler_static='-Bstatic'
 
24606
-         lt_prog_compiler_wl='-Wl,'
 
24607
-         ;;
 
24608
-       *Sun\ F*)
 
24609
-         # Sun Fortran 8.3 passes all unrecognized flags to the linker
 
24610
-         lt_prog_compiler_pic='-KPIC'
 
24611
-         lt_prog_compiler_static='-Bstatic'
 
24612
-         lt_prog_compiler_wl=''
 
24613
-         ;;
 
24614
-       esac
 
24615
-       ;;
 
24616
-      esac
 
24617
-      ;;
 
24618
-
 
24619
-    osf3* | osf4* | osf5*)
 
24620
-      lt_prog_compiler_wl='-Wl,'
 
24621
-      # All OSF/1 code is PIC.
 
24622
-      lt_prog_compiler_static='-non_shared'
 
24623
-      ;;
 
24624
-
 
24625
-    rdos*)
 
24626
-      lt_prog_compiler_static='-non_shared'
 
24627
-      ;;
 
24628
-
 
24629
-    solaris*)
 
24630
-      lt_prog_compiler_pic='-KPIC'
 
24631
-      lt_prog_compiler_static='-Bstatic'
 
24632
-      case $cc_basename in
 
24633
-      f77* | f90* | f95*)
 
24634
-       lt_prog_compiler_wl='-Qoption ld ';;
 
24635
-      *)
 
24636
-       lt_prog_compiler_wl='-Wl,';;
 
24637
-      esac
 
24638
-      ;;
 
24639
-
 
24640
-    sunos4*)
 
24641
-      lt_prog_compiler_wl='-Qoption ld '
 
24642
-      lt_prog_compiler_pic='-PIC'
 
24643
-      lt_prog_compiler_static='-Bstatic'
 
24644
-      ;;
 
24645
-
 
24646
-    sysv4 | sysv4.2uw2* | sysv4.3*)
 
24647
-      lt_prog_compiler_wl='-Wl,'
 
24648
-      lt_prog_compiler_pic='-KPIC'
 
24649
-      lt_prog_compiler_static='-Bstatic'
 
24650
-      ;;
18018
24651
+  am_cv_CXX_dependencies_compiler_type=none
18019
24652
+  if test "$am_compiler_list" = ""; then
18020
24653
+     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
18021
 
          fi
18022
 
-         ;;
18023
 
-      esac
18024
 
-      archive_cmds_need_lc=no
18025
 
-      hardcode_direct=no
18026
 
-      hardcode_automatic=yes
18027
 
-      hardcode_shlibpath_var=unsupported
18028
 
-      whole_archive_flag_spec=''
18029
 
-      link_all_deplibs=yes
18030
 
-    if test "$GCC" = yes ; then
18031
 
-       output_verbose_link_cmd='echo'
18032
 
-        archive_cmds='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
18033
 
-      module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
18034
 
-      # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
18035
 
-      archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
18036
 
-      module_expsym_cmds='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag  -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
 
24654
+  fi
18037
24655
+  for depmode in $am_compiler_list; do
18038
24656
+    # Setup a source with many dependencies, because some compilers
18039
24657
+    # like to wrap large dependency lists on column 80 (with \), and
18050
24668
+      touch sub/conftst$i.h
18051
24669
+    done
18052
24670
+    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
18053
 
+
 
24671
 
 
24672
-    sysv4*MP*)
 
24673
-      if test -d /usr/nec ;then
 
24674
-       lt_prog_compiler_pic='-Kconform_pic'
 
24675
-       lt_prog_compiler_static='-Bstatic'
18054
24676
+    case $depmode in
18055
24677
+    nosideeffect)
18056
24678
+      # after this tag, mechanisms are not by side-effect, so they'll
18057
24679
+      # only be used when explicitly requested
18058
24680
+      if test "x$enable_dependency_tracking" = xyes; then
18059
24681
+       continue
18060
 
     else
18061
 
-      case $cc_basename in
18062
 
-        xlc*)
18063
 
-         output_verbose_link_cmd='echo'
18064
 
-         archive_cmds='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring'
18065
 
-         module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
18066
 
-          # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
18067
 
-         archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
18068
 
-          module_expsym_cmds='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag  -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
18069
 
-          ;;
18070
 
-       *)
18071
 
-         ld_shlibs=no
 
24682
+      else
18072
24683
+       break
18073
 
+      fi
18074
 
           ;;
 
24684
       fi
 
24685
       ;;
 
24686
-
 
24687
-    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
 
24688
-      lt_prog_compiler_wl='-Wl,'
 
24689
-      lt_prog_compiler_pic='-KPIC'
 
24690
-      lt_prog_compiler_static='-Bstatic'
 
24691
-      ;;
 
24692
-
 
24693
-    unicos*)
 
24694
-      lt_prog_compiler_wl='-Wl,'
 
24695
-      lt_prog_compiler_can_build_shared=no
 
24696
-      ;;
 
24697
-
 
24698
-    uts4*)
 
24699
-      lt_prog_compiler_pic='-pic'
 
24700
-      lt_prog_compiler_static='-Bstatic'
 
24701
-      ;;
 
24702
-
 
24703
-    *)
 
24704
-      lt_prog_compiler_can_build_shared=no
 
24705
-      ;;
18075
24706
+    none) break ;;
18076
 
       esac
 
24707
     esac
 
24708
-  fi
 
24709
-
 
24710
-{ $as_echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5
 
24711
-$as_echo "$lt_prog_compiler_pic" >&6; }
 
24712
-
 
24713
-#
 
24714
-# Check to make sure the PIC flag actually works.
 
24715
-#
 
24716
-if test -n "$lt_prog_compiler_pic"; then
 
24717
-
 
24718
-{ $as_echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5
 
24719
-$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; }
 
24720
-if test "${lt_cv_prog_compiler_pic_works+set}" = set; then
 
24721
-  $as_echo_n "(cached) " >&6
 
24722
-else
 
24723
-  lt_cv_prog_compiler_pic_works=no
 
24724
-  ac_outfile=conftest.$ac_objext
 
24725
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
 
24726
-   lt_compiler_flag="$lt_prog_compiler_pic -DPIC"
 
24727
-   # Insert the option either (1) after the last *FLAGS variable, or
 
24728
-   # (2) before a word containing "conftest.", or (3) at the end.
 
24729
-   # Note that $ac_compile itself does not contain backslashes and begins
 
24730
-   # with a dollar sign (not a hyphen), so the echo should work correctly.
 
24731
-   # The option is referenced via a variable to avoid confusing sed.
 
24732
-   lt_compile=`echo "$ac_compile" | $SED \
 
24733
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
24734
-   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
24735
-   -e 's:$: $lt_compiler_flag:'`
 
24736
-   (eval echo "\"\$as_me:10702: $lt_compile\"" >&5)
 
24737
-   (eval "$lt_compile" 2>conftest.err)
 
24738
-   ac_status=$?
 
24739
-   cat conftest.err >&5
 
24740
-   echo "$as_me:10706: \$? = $ac_status" >&5
 
24741
-   if (exit $ac_status) && test -s "$ac_outfile"; then
 
24742
-     # The compiler can only warn and ignore the option if not recognized
 
24743
-     # So say no if there are warnings other than the usual output.
 
24744
-     $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
 
24745
-     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
 
24746
-     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
 
24747
-       lt_cv_prog_compiler_pic_works=yes
 
24748
-     fi
 
24749
-   fi
 
24750
-   $rm conftest*
 
24751
-
 
24752
-fi
 
24753
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works" >&5
 
24754
-$as_echo "$lt_cv_prog_compiler_pic_works" >&6; }
18077
24755
+    # We check with `-c' and `-o' for the sake of the "dashmstdout"
18078
24756
+    # mode.  It turns out that the SunPro C++ compiler does not properly
18079
24757
+    # handle `-M -o', and we need to detect this.
18097
24775
+          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
18098
24776
+        am_cv_CXX_dependencies_compiler_type=$depmode
18099
24777
+        break
18100
 
     fi
18101
 
-      ;;
 
24778
+      fi
18102
24779
+    fi
18103
24780
+  done
18104
24781
 
18105
 
-    dgux*)
18106
 
-      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
18107
 
-      hardcode_libdir_flag_spec='-L$libdir'
18108
 
-      hardcode_shlibpath_var=no
18109
 
-      ;;
 
24782
-if test x"$lt_cv_prog_compiler_pic_works" = xyes; then
 
24783
-    case $lt_prog_compiler_pic in
 
24784
-     "" | " "*) ;;
 
24785
-     *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;;
 
24786
-     esac
18110
24787
+  cd ..
18111
24788
+  rm -rf conftest.dir
18112
 
+else
 
24789
 else
 
24790
-    lt_prog_compiler_pic=
 
24791
-     lt_prog_compiler_can_build_shared=no
 
24792
-fi
 
24793
-
18113
24794
+  am_cv_CXX_dependencies_compiler_type=none
18114
 
+fi
 
24795
 fi
 
24796
-case $host_os in
 
24797
-  # For platforms which do not support PIC, -DPIC is meaningless:
 
24798
-  *djgpp*)
 
24799
-    lt_prog_compiler_pic=
 
24800
-    ;;
 
24801
-  *)
 
24802
-    lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC"
 
24803
-    ;;
 
24804
-esac
 
24805
-
 
24806
-#
 
24807
-# Check to make sure the static flag actually works.
 
24808
-#
 
24809
-wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
 
24810
-{ $as_echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5
 
24811
-$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
 
24812
-if test "${lt_cv_prog_compiler_static_works+set}" = set; then
 
24813
-  $as_echo_n "(cached) " >&6
 
24814
-else
 
24815
-  lt_cv_prog_compiler_static_works=no
 
24816
-   save_LDFLAGS="$LDFLAGS"
 
24817
-   LDFLAGS="$LDFLAGS $lt_tmp_static_flag"
 
24818
-   echo "$lt_simple_link_test_code" > conftest.$ac_ext
 
24819
-   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
 
24820
-     # The linker can only warn and ignore the option if not recognized
 
24821
-     # So say no if there are warnings
 
24822
-     if test -s conftest.err; then
 
24823
-       # Append any errors to the config.log.
 
24824
-       cat conftest.err 1>&5
 
24825
-       $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
 
24826
-       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
 
24827
-       if diff conftest.exp conftest.er2 >/dev/null; then
 
24828
-         lt_cv_prog_compiler_static_works=yes
 
24829
-       fi
 
24830
-     else
 
24831
-       lt_cv_prog_compiler_static_works=yes
 
24832
-     fi
 
24833
-   fi
 
24834
-   $rm -r conftest*
 
24835
-   LDFLAGS="$save_LDFLAGS"
18115
24836
 
18116
 
-    freebsd1*)
18117
 
-      ld_shlibs=no
18118
 
-      ;;
18119
 
+fi
 
24837
 fi
 
24838
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works" >&5
 
24839
-$as_echo "$lt_cv_prog_compiler_static_works" >&6; }
18120
24840
+{ echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5
18121
24841
+echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; }
18122
24842
+CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type
18123
24843
 
18124
 
-    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
18125
 
-    # support.  Future versions do this automatically, but an explicit c++rt0.o
18126
 
-    # does not break anything, and helps significantly (at the cost of a little
18127
 
-    # extra space).
18128
 
-    freebsd2.2*)
18129
 
-      archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
18130
 
-      hardcode_libdir_flag_spec='-R$libdir'
18131
 
-      hardcode_direct=yes
18132
 
-      hardcode_shlibpath_var=no
18133
 
-      ;;
 
24844
-if test x"$lt_cv_prog_compiler_static_works" = xyes; then
 
24845
-    :
18134
24846
+ if
18135
24847
+  test "x$enable_dependency_tracking" != xno \
18136
24848
+  && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then
18137
24849
+  am__fastdepCXX_TRUE=
18138
24850
+  am__fastdepCXX_FALSE='#'
18139
 
+else
 
24851
 else
 
24852
-    lt_prog_compiler_static=
18140
24853
+  am__fastdepCXX_TRUE='#'
18141
24854
+  am__fastdepCXX_FALSE=
18142
 
+fi
18143
 
 
18144
 
-    # Unfortunately, older versions of FreeBSD 2 do not have this feature.
18145
 
-    freebsd2*)
18146
 
-      archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
18147
 
-      hardcode_direct=yes
18148
 
-      hardcode_minus_L=yes
18149
 
-      hardcode_shlibpath_var=no
18150
 
-      ;;
18151
 
 
18152
 
-    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
18153
 
-    freebsd* | dragonfly*)
18154
 
-      archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
18155
 
-      hardcode_libdir_flag_spec='-R$libdir'
18156
 
-      hardcode_direct=yes
18157
 
-      hardcode_shlibpath_var=no
18158
 
-      ;;
 
24855
 fi
 
24856
 
 
24857
 
 
24858
-{ $as_echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
 
24859
-$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
 
24860
-if test "${lt_cv_prog_compiler_c_o+set}" = set; then
 
24861
-  $as_echo_n "(cached) " >&6
 
24862
-else
 
24863
-  lt_cv_prog_compiler_c_o=no
 
24864
-   $rm -r conftest 2>/dev/null
 
24865
-   mkdir conftest
 
24866
-   cd conftest
 
24867
-   mkdir out
 
24868
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
 
24869
-
 
24870
-   lt_compiler_flag="-o out/conftest2.$ac_objext"
 
24871
-   # Insert the option either (1) after the last *FLAGS variable, or
 
24872
-   # (2) before a word containing "conftest.", or (3) at the end.
 
24873
-   # Note that $ac_compile itself does not contain backslashes and begins
 
24874
-   # with a dollar sign (not a hyphen), so the echo should work correctly.
 
24875
-   lt_compile=`echo "$ac_compile" | $SED \
 
24876
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
24877
-   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
24878
-   -e 's:$: $lt_compiler_flag:'`
 
24879
-   (eval echo "\"\$as_me:10806: $lt_compile\"" >&5)
 
24880
-   (eval "$lt_compile" 2>out/conftest.err)
 
24881
-   ac_status=$?
 
24882
-   cat out/conftest.err >&5
 
24883
-   echo "$as_me:10810: \$? = $ac_status" >&5
 
24884
-   if (exit $ac_status) && test -s out/conftest2.$ac_objext
 
24885
-   then
 
24886
-     # The compiler can only warn and ignore the option if not recognized
 
24887
-     # So say no if there are warnings
 
24888
-     $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp
 
24889
-     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
 
24890
-     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
 
24891
-       lt_cv_prog_compiler_c_o=yes
 
24892
-     fi
 
24893
-   fi
 
24894
-   chmod u+w . 2>&5
 
24895
-   $rm conftest*
 
24896
-   # SGI C++ compiler will create directory out/ii_files/ for
 
24897
-   # template instantiation
 
24898
-   test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files
 
24899
-   $rm out/* && rmdir out
 
24900
-   cd ..
 
24901
-   rmdir conftest
 
24902
-   $rm conftest*
18159
24903
+if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
18160
24904
+    ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
18161
24905
+    (test "X$CXX" != "Xg++"))) ; then
18216
24960
+  echo "$as_me: failed program was:" >&5
18217
24961
+sed 's/^/| /' conftest.$ac_ext >&5
18218
24962
 
 
24963
+  # Broken: fails on valid input.
 
24964
+continue
 
24965
 fi
 
24966
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5
 
24967
-$as_echo "$lt_cv_prog_compiler_c_o" >&6; }
 
24968
 
 
24969
+rm -f conftest.err conftest.$ac_ext
 
24970
 
 
24971
-hard_links="nottested"
 
24972
-if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then
 
24973
-  # do not overwrite the value of need_locks provided by the user
 
24974
-  { $as_echo "$as_me:$LINENO: checking if we can lock with hard links" >&5
 
24975
-$as_echo_n "checking if we can lock with hard links... " >&6; }
 
24976
-  hard_links=yes
 
24977
-  $rm conftest*
 
24978
-  ln conftest.a conftest.b 2>/dev/null && hard_links=no
 
24979
-  touch conftest.a
 
24980
-  ln conftest.a conftest.b 2>&5 || hard_links=no
 
24981
-  ln conftest.a conftest.b 2>/dev/null && hard_links=no
 
24982
-  { $as_echo "$as_me:$LINENO: result: $hard_links" >&5
 
24983
-$as_echo "$hard_links" >&6; }
 
24984
-  if test "$hard_links" = no; then
 
24985
-    { $as_echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
 
24986
-$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
 
24987
-    need_locks=warn
 
24988
-  fi
 
24989
+  # OK, works on sane cases.  Now check whether nonexistent headers
 
24990
+  # can be detected and how.
 
24991
+  cat >conftest.$ac_ext <<_ACEOF
 
24992
+/* confdefs.h.  */
 
24993
+_ACEOF
 
24994
+cat confdefs.h >>conftest.$ac_ext
 
24995
+cat >>conftest.$ac_ext <<_ACEOF
 
24996
+/* end confdefs.h.  */
 
24997
+#include <ac_nonexistent.h>
 
24998
+_ACEOF
 
24999
+if { (ac_try="$ac_cpp conftest.$ac_ext"
 
25000
+case "(($ac_try" in
 
25001
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
25002
+  *) ac_try_echo=$ac_try;;
 
25003
+esac
 
25004
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
25005
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
25006
+  ac_status=$?
 
25007
+  grep -v '^ *+' conftest.er1 >conftest.err
 
25008
+  rm -f conftest.er1
 
25009
+  cat conftest.err >&5
 
25010
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
25011
+  (exit $ac_status); } >/dev/null && {
 
25012
+        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
 
25013
+        test ! -s conftest.err
 
25014
+       }; then
 
25015
+  # Broken: success on invalid input.
 
25016
+continue
 
25017
 else
 
25018
-  need_locks=no
 
25019
+  echo "$as_me: failed program was:" >&5
 
25020
+sed 's/^/| /' conftest.$ac_ext >&5
 
25021
+
 
25022
+  # Passes both tests.
 
25023
+ac_preproc_ok=:
 
25024
+break
 
25025
 fi
 
25026
 
 
25027
-{ $as_echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
 
25028
-$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; }
 
25029
+rm -f conftest.err conftest.$ac_ext
 
25030
 
 
25031
-  runpath_var=
 
25032
-  allow_undefined_flag=
 
25033
-  enable_shared_with_static_runtimes=no
 
25034
-  archive_cmds=
 
25035
-  archive_expsym_cmds=
 
25036
-  old_archive_From_new_cmds=
 
25037
-  old_archive_from_expsyms_cmds=
 
25038
-  export_dynamic_flag_spec=
 
25039
-  whole_archive_flag_spec=
 
25040
-  thread_safe_flag_spec=
 
25041
-  hardcode_libdir_flag_spec=
 
25042
-  hardcode_libdir_flag_spec_ld=
 
25043
-  hardcode_libdir_separator=
 
25044
-  hardcode_direct=no
 
25045
-  hardcode_minus_L=no
 
25046
-  hardcode_shlibpath_var=unsupported
 
25047
-  link_all_deplibs=unknown
 
25048
-  hardcode_automatic=no
 
25049
-  module_cmds=
 
25050
-  module_expsym_cmds=
 
25051
-  always_export_symbols=no
 
25052
-  export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
 
25053
-  # include_expsyms should be a list of space-separated symbols to be *always*
 
25054
-  # included in the symbol list
 
25055
-  include_expsyms=
 
25056
-  # exclude_expsyms can be an extended regexp of symbols to exclude
 
25057
-  # it will be wrapped by ` (' and `)$', so one must not match beginning or
 
25058
-  # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
 
25059
-  # as well as any symbol that contains `d'.
 
25060
-  exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
 
25061
-  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
 
25062
-  # platforms (ab)use it in PIC code, but their linkers get confused if
 
25063
-  # the symbol is explicitly referenced.  Since portable code cannot
 
25064
-  # rely on this symbol name, it's probably fine to never include it in
 
25065
-  # preloaded symbol tables.
 
25066
-  # Exclude shared library initialization/finalization symbols.
 
25067
-  extract_expsyms_cmds=
 
25068
-  # Just being paranoid about ensuring that cc_basename is set.
 
25069
-  for cc_temp in $compiler""; do
 
25070
-  case $cc_temp in
 
25071
-    compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
 
25072
-    distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
 
25073
-    \-*) ;;
 
25074
-    *) break;;
 
25075
-  esac
 
25076
 done
 
25077
-cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
 
25078
-
 
25079
-  case $host_os in
 
25080
-  cygwin* | mingw* | pw32*)
 
25081
-    # FIXME: the MSVC++ port hasn't been tested in a loooong time
 
25082
-    # When not using gcc, we currently assume that we are using
 
25083
-    # Microsoft Visual C++.
 
25084
-    if test "$GCC" != yes; then
 
25085
-      with_gnu_ld=no
 
25086
-    fi
 
25087
-    ;;
 
25088
-  interix*)
 
25089
-    # we just hope/assume this is gcc and not c89 (= MSVC++)
 
25090
-    with_gnu_ld=yes
 
25091
-    ;;
 
25092
-  openbsd*)
 
25093
-    with_gnu_ld=no
 
25094
-    ;;
 
25095
-  esac
 
25096
+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
 
25097
+rm -f conftest.err conftest.$ac_ext
 
25098
+if $ac_preproc_ok; then
 
25099
+  break
 
25100
+fi
 
25101
 
 
25102
-  ld_shlibs=yes
 
25103
-  if test "$with_gnu_ld" = yes; then
 
25104
-    # If archive_cmds runs LD, not CC, wlarc should be empty
 
25105
-    wlarc='${wl}'
 
25106
+    done
 
25107
+    ac_cv_prog_CXXCPP=$CXXCPP
 
25108
 
 
25109
-    # Set some defaults for GNU ld with shared library support. These
 
25110
-    # are reset later if shared libraries are not supported. Putting them
 
25111
-    # here allows them to be overridden if necessary.
 
25112
-    runpath_var=LD_RUN_PATH
 
25113
-    hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir'
 
25114
-    export_dynamic_flag_spec='${wl}--export-dynamic'
 
25115
-    # ancient GNU ld didn't support --whole-archive et. al.
 
25116
-    if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then
 
25117
-       whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
 
25118
-      else
 
25119
-       whole_archive_flag_spec=
 
25120
-    fi
 
25121
-    supports_anon_versioning=no
 
25122
-    case `$LD -v 2>/dev/null` in
 
25123
-      *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11
 
25124
-      *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
 
25125
-      *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
 
25126
-      *\ 2.11.*) ;; # other 2.11 versions
 
25127
-      *) supports_anon_versioning=yes ;;
 
25128
-    esac
 
25129
+fi
 
25130
+  CXXCPP=$ac_cv_prog_CXXCPP
 
25131
+else
 
25132
+  ac_cv_prog_CXXCPP=$CXXCPP
 
25133
+fi
 
25134
+{ echo "$as_me:$LINENO: result: $CXXCPP" >&5
 
25135
+echo "${ECHO_T}$CXXCPP" >&6; }
 
25136
+ac_preproc_ok=false
 
25137
+for ac_cxx_preproc_warn_flag in '' yes
 
25138
+do
 
25139
+  # Use a header file that comes with gcc, so configuring glibc
 
25140
+  # with a fresh cross-compiler works.
 
25141
+  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
 
25142
+  # <limits.h> exists even on freestanding compilers.
 
25143
+  # On the NeXT, cc -E runs the code through the compiler's parser,
 
25144
+  # not just through cpp. "Syntax error" is here to catch this case.
 
25145
+  cat >conftest.$ac_ext <<_ACEOF
 
25146
+/* confdefs.h.  */
 
25147
+_ACEOF
 
25148
+cat confdefs.h >>conftest.$ac_ext
 
25149
+cat >>conftest.$ac_ext <<_ACEOF
 
25150
+/* end confdefs.h.  */
 
25151
+#ifdef __STDC__
 
25152
+# include <limits.h>
 
25153
+#else
 
25154
+# include <assert.h>
 
25155
+#endif
 
25156
+                    Syntax error
 
25157
+_ACEOF
 
25158
+if { (ac_try="$ac_cpp conftest.$ac_ext"
 
25159
+case "(($ac_try" in
 
25160
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
25161
+  *) ac_try_echo=$ac_try;;
 
25162
+esac
 
25163
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
25164
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
25165
+  ac_status=$?
 
25166
+  grep -v '^ *+' conftest.er1 >conftest.err
 
25167
+  rm -f conftest.er1
 
25168
+  cat conftest.err >&5
 
25169
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
25170
+  (exit $ac_status); } >/dev/null && {
 
25171
+        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
 
25172
+        test ! -s conftest.err
 
25173
+       }; then
 
25174
+  :
 
25175
+else
 
25176
+  echo "$as_me: failed program was:" >&5
 
25177
+sed 's/^/| /' conftest.$ac_ext >&5
 
25178
 
 
25179
-    # See if GNU ld supports shared libraries.
 
25180
-    case $host_os in
 
25181
-    aix[3-9]*)
 
25182
-      # On AIX/PPC, the GNU linker is very broken
 
25183
-      if test "$host_cpu" != ia64; then
 
25184
-       ld_shlibs=no
 
25185
-       cat <<EOF 1>&2
 
25186
+  # Broken: fails on valid input.
 
25187
+continue
 
25188
+fi
 
25189
 
 
25190
-*** Warning: the GNU linker, at least up to release 2.9.1, is reported
 
25191
-*** to be unable to reliably create shared libraries on AIX.
 
25192
-*** Therefore, libtool is disabling shared libraries support.  If you
 
25193
-*** really care for shared libraries, you may want to modify your PATH
 
25194
-*** so that a non-GNU linker is found, and then restart.
 
25195
+rm -f conftest.err conftest.$ac_ext
 
25196
 
 
25197
-EOF
 
25198
-      fi
 
25199
-      ;;
 
25200
+  # OK, works on sane cases.  Now check whether nonexistent headers
 
25201
+  # can be detected and how.
 
25202
+  cat >conftest.$ac_ext <<_ACEOF
 
25203
+/* confdefs.h.  */
 
25204
+_ACEOF
 
25205
+cat confdefs.h >>conftest.$ac_ext
 
25206
+cat >>conftest.$ac_ext <<_ACEOF
 
25207
+/* end confdefs.h.  */
 
25208
+#include <ac_nonexistent.h>
 
25209
+_ACEOF
 
25210
+if { (ac_try="$ac_cpp conftest.$ac_ext"
 
25211
+case "(($ac_try" in
 
25212
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
25213
+  *) ac_try_echo=$ac_try;;
 
25214
+esac
 
25215
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
25216
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
25217
+  ac_status=$?
 
25218
+  grep -v '^ *+' conftest.er1 >conftest.err
 
25219
+  rm -f conftest.er1
 
25220
+  cat conftest.err >&5
 
25221
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
25222
+  (exit $ac_status); } >/dev/null && {
 
25223
+        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
 
25224
+        test ! -s conftest.err
 
25225
+       }; then
 
25226
+  # Broken: success on invalid input.
 
25227
+continue
 
25228
+else
 
25229
+  echo "$as_me: failed program was:" >&5
 
25230
+sed 's/^/| /' conftest.$ac_ext >&5
 
25231
 
 
25232
-    amigaos*)
 
25233
-      archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
 
25234
-      hardcode_libdir_flag_spec='-L$libdir'
 
25235
-      hardcode_minus_L=yes
 
25236
+  # Passes both tests.
 
25237
+ac_preproc_ok=:
 
25238
+break
 
25239
+fi
 
25240
 
 
25241
-      # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
 
25242
-      # that the semantics of dynamic libraries on AmigaOS, at least up
 
25243
-      # to version 4, is to share data among multiple programs linked
 
25244
-      # with the same dynamic library.  Since this doesn't match the
 
25245
-      # behavior of shared libraries on other platforms, we can't use
 
25246
-      # them.
 
25247
-      ld_shlibs=no
 
25248
-      ;;
 
25249
+rm -f conftest.err conftest.$ac_ext
 
25250
 
 
25251
-    beos*)
 
25252
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
25253
-       allow_undefined_flag=unsupported
 
25254
-       # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
 
25255
-       # support --undefined.  This deserves some investigation.  FIXME
 
25256
-       archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
25257
-      else
 
25258
-       ld_shlibs=no
 
25259
-      fi
 
25260
-      ;;
 
25261
+done
 
25262
+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
 
25263
+rm -f conftest.err conftest.$ac_ext
 
25264
+if $ac_preproc_ok; then
 
25265
+  :
 
25266
+else
 
25267
+  _lt_caught_CXX_error=yes
 
25268
+fi
 
25269
 
 
25270
-    cygwin* | mingw* | pw32*)
 
25271
-      # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless,
 
25272
-      # as there is no search path for DLLs.
 
25273
-      hardcode_libdir_flag_spec='-L$libdir'
 
25274
-      allow_undefined_flag=unsupported
 
25275
-      always_export_symbols=no
 
25276
-      enable_shared_with_static_runtimes=yes
 
25277
-      export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols'
 
25278
+ac_ext=c
 
25279
+ac_cpp='$CPP $CPPFLAGS'
 
25280
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
25281
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
25282
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
25283
 
 
25284
-      if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
 
25285
-        archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
 
25286
-       # If the export-symbols file already is a .def file (1st line
 
25287
-       # is EXPORTS), use it as is; otherwise, prepend...
 
25288
-       archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
 
25289
-         cp $export_symbols $output_objdir/$soname.def;
 
25290
-       else
 
25291
-         echo EXPORTS > $output_objdir/$soname.def;
 
25292
-         cat $export_symbols >> $output_objdir/$soname.def;
 
25293
-       fi~
 
25294
-       $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
 
25295
-      else
 
25296
-       ld_shlibs=no
 
25297
-      fi
 
25298
-      ;;
 
25299
+else
 
25300
+  _lt_caught_CXX_error=yes
 
25301
+fi
 
25302
 
 
25303
-    interix[3-9]*)
 
25304
-      hardcode_direct=no
 
25305
-      hardcode_shlibpath_var=no
 
25306
-      hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
 
25307
-      export_dynamic_flag_spec='${wl}-E'
 
25308
-      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
 
25309
-      # Instead, shared libraries are loaded at an image base (0x10000000 by
 
25310
-      # default) and relocated if they conflict, which is a slow very memory
 
25311
-      # consuming and fragmenting process.  To avoid this, we pick a random,
 
25312
-      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
 
25313
-      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
 
25314
-      archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
 
25315
-      archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
 
25316
-      ;;
 
25317
 
 
25318
-    gnu* | linux* | k*bsd*-gnu)
 
25319
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
25320
-       tmp_addflag=
 
25321
-       case $cc_basename,$host_cpu in
 
25322
-       pgcc*)                          # Portland Group C compiler
 
25323
-         whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
 
25324
-         tmp_addflag=' $pic_flag'
 
25325
-         ;;
 
25326
-       pgf77* | pgf90* | pgf95*)       # Portland Group f77 and f90 compilers
 
25327
-         whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
 
25328
-         tmp_addflag=' $pic_flag -Mnomain' ;;
 
25329
-       ecc*,ia64* | icc*,ia64*)                # Intel C compiler on ia64
 
25330
-         tmp_addflag=' -i_dynamic' ;;
 
25331
-       efc*,ia64* | ifort*,ia64*)      # Intel Fortran compiler on ia64
 
25332
-         tmp_addflag=' -i_dynamic -nofor_main' ;;
 
25333
-       ifc* | ifort*)                  # Intel Fortran compiler
 
25334
-         tmp_addflag=' -nofor_main' ;;
 
25335
-       esac
 
25336
-       case `$CC -V 2>&1 | sed 5q` in
 
25337
-       *Sun\ C*)                       # Sun C 5.9
 
25338
-         whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
 
25339
-         tmp_sharedflag='-G' ;;
 
25340
-       *Sun\ F*)                       # Sun Fortran 8.3
 
25341
-         tmp_sharedflag='-G' ;;
 
25342
-       *)
 
25343
-         tmp_sharedflag='-shared' ;;
 
25344
-       esac
 
25345
-       archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
25346
 
 
25347
-       if test $supports_anon_versioning = yes; then
 
25348
-         archive_expsym_cmds='$echo "{ global:" > $output_objdir/$libname.ver~
 
25349
-  cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
 
25350
-  $echo "local: *; };" >> $output_objdir/$libname.ver~
 
25351
-         $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
 
25352
-       fi
 
25353
-      else
 
25354
-       ld_shlibs=no
 
25355
-      fi
 
25356
-      ;;
 
25357
 
 
25358
-    netbsd*)
 
25359
-      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
25360
-       archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
 
25361
-       wlarc=
 
25362
-      else
 
25363
-       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
25364
-       archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
 
25365
-      fi
 
25366
-      ;;
 
25367
 
 
25368
-    solaris*)
 
25369
-      if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
 
25370
-       ld_shlibs=no
 
25371
-       cat <<EOF 1>&2
 
25372
+# Set options
 
25373
 
 
25374
-*** Warning: The releases 2.8.* of the GNU linker cannot reliably
 
25375
-*** create shared libraries on Solaris systems.  Therefore, libtool
 
25376
-*** is disabling shared libraries support.  We urge you to upgrade GNU
 
25377
-*** binutils to release 2.9.1 or newer.  Another option is to modify
 
25378
-*** your PATH or compiler configuration so that the native linker is
 
25379
-*** used, and then restart.
 
25380
 
 
25381
-EOF
 
25382
-      elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
25383
-       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
25384
-       archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
 
25385
-      else
 
25386
-       ld_shlibs=no
 
25387
-      fi
 
25388
-      ;;
 
25389
 
 
25390
-    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
 
25391
-      case `$LD -v 2>&1` in
 
25392
-        *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
 
25393
-       ld_shlibs=no
 
25394
-       cat <<_LT_EOF 1>&2
 
25395
+        enable_dlopen=no
 
25396
 
 
25397
-*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
 
25398
-*** reliably create shared libraries on SCO systems.  Therefore, libtool
 
25399
-*** is disabling shared libraries support.  We urge you to upgrade GNU
 
25400
-*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify
 
25401
-*** your PATH or compiler configuration so that the native linker is
 
25402
-*** used, and then restart.
 
25403
 
 
25404
-_LT_EOF
 
25405
-       ;;
 
25406
-       *)
 
25407
-         if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
25408
-           hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
 
25409
-           archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib'
 
25410
-           archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib'
 
25411
-         else
 
25412
-           ld_shlibs=no
 
25413
-         fi
 
25414
-       ;;
 
25415
-      esac
 
25416
-      ;;
 
25417
+  enable_win32_dll=no
 
25418
 
 
25419
-    sunos4*)
 
25420
-      archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
 
25421
-      wlarc=
 
25422
-      hardcode_direct=yes
 
25423
-      hardcode_shlibpath_var=no
 
25424
-      ;;
 
25425
 
 
25426
+            # Check whether --enable-shared was given.
 
25427
+if test "${enable_shared+set}" = set; then
 
25428
+  enableval=$enable_shared; p=${PACKAGE-default}
 
25429
+    case $enableval in
 
25430
+    yes) enable_shared=yes ;;
 
25431
+    no) enable_shared=no ;;
 
25432
     *)
 
25433
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
 
25434
-       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
25435
-       archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
 
25436
-      else
 
25437
-       ld_shlibs=no
 
25438
-      fi
 
25439
+      enable_shared=no
 
25440
+      # Look at the argument we got.  We use all the common list separators.
 
25441
+      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
 
25442
+      for pkg in $enableval; do
 
25443
+       IFS="$lt_save_ifs"
 
25444
+       if test "X$pkg" = "X$p"; then
 
25445
+         enable_shared=yes
 
25446
+       fi
 
25447
+      done
 
25448
+      IFS="$lt_save_ifs"
 
25449
       ;;
 
25450
     esac
 
25451
+else
 
25452
+  enable_shared=yes
 
25453
+fi
 
25454
 
 
25455
-    if test "$ld_shlibs" = no; then
 
25456
-      runpath_var=
 
25457
-      hardcode_libdir_flag_spec=
 
25458
-      export_dynamic_flag_spec=
 
25459
-      whole_archive_flag_spec=
 
25460
-    fi
 
25461
-  else
 
25462
-    # PORTME fill in a description of your system's linker (not GNU ld)
 
25463
-    case $host_os in
 
25464
-    aix3*)
 
25465
-      allow_undefined_flag=unsupported
 
25466
-      always_export_symbols=yes
 
25467
-      archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'
 
25468
-      # Note: this linker hardcodes the directories in LIBPATH if there
 
25469
-      # are no directories specified by -L.
 
25470
-      hardcode_minus_L=yes
 
25471
-      if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
 
25472
-       # Neither direct hardcoding nor static linking is supported with a
 
25473
-       # broken collect2.
 
25474
-       hardcode_direct=unsupported
 
25475
-      fi
 
25476
-      ;;
 
25477
 
 
25478
-    aix[4-9]*)
 
25479
-      if test "$host_cpu" = ia64; then
 
25480
-       # On IA64, the linker does run time linking by default, so we don't
 
25481
-       # have to do anything special.
 
25482
-       aix_use_runtimelinking=no
 
25483
-       exp_sym_flag='-Bexport'
 
25484
-       no_entry_flag=""
 
25485
-      else
 
25486
-       # If we're using GNU nm, then we don't want the "-C" option.
 
25487
-       # -C means demangle to AIX nm, but means don't demangle with GNU nm
 
25488
-       if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
 
25489
-         export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols'
 
25490
-       else
 
25491
-         export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols'
 
25492
-       fi
 
25493
-       aix_use_runtimelinking=no
 
25494
 
 
25495
-       # Test if we are trying to use run time linking or normal
 
25496
-       # AIX style linking. If -brtl is somewhere in LDFLAGS, we
 
25497
-       # need to do runtime linking.
 
25498
-       case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)
 
25499
-         for ld_flag in $LDFLAGS; do
 
25500
-         if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
 
25501
-           aix_use_runtimelinking=yes
 
25502
-           break
 
25503
-         fi
 
25504
-         done
 
25505
-         ;;
 
25506
-       esac
 
25507
 
 
25508
-       exp_sym_flag='-bexport'
 
25509
-       no_entry_flag='-bnoentry'
 
25510
-      fi
 
25511
 
 
25512
-      # When large executables or shared objects are built, AIX ld can
 
25513
-      # have problems creating the table of contents.  If linking a library
 
25514
-      # or program results in "error TOC overflow" add -mminimal-toc to
 
25515
-      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
 
25516
-      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
 
25517
 
 
25518
-      archive_cmds=''
 
25519
-      hardcode_direct=yes
 
25520
-      hardcode_libdir_separator=':'
 
25521
-      link_all_deplibs=yes
 
25522
 
 
25523
-      if test "$GCC" = yes; then
 
25524
-       case $host_os in aix4.[012]|aix4.[012].*)
 
25525
-       # We only want to do this on AIX 4.2 and lower, the check
 
25526
-       # below for broken collect2 doesn't work under 4.3+
 
25527
-         collect2name=`${CC} -print-prog-name=collect2`
 
25528
-         if test -f "$collect2name" && \
 
25529
-          strings "$collect2name" | grep resolve_lib_name >/dev/null
 
25530
-         then
 
25531
-         # We have reworked collect2
 
25532
-         :
 
25533
-         else
 
25534
-         # We have old collect2
 
25535
-         hardcode_direct=unsupported
 
25536
-         # It fails to find uninstalled libraries when the uninstalled
 
25537
-         # path is not listed in the libpath.  Setting hardcode_minus_L
 
25538
-         # to unsupported forces relinking
 
25539
-         hardcode_minus_L=yes
 
25540
-         hardcode_libdir_flag_spec='-L$libdir'
 
25541
-         hardcode_libdir_separator=
 
25542
-         fi
 
25543
-         ;;
 
25544
-       esac
 
25545
-       shared_flag='-shared'
 
25546
-       if test "$aix_use_runtimelinking" = yes; then
 
25547
-         shared_flag="$shared_flag "'${wl}-G'
 
25548
-       fi
 
25549
-      else
 
25550
-       # not using gcc
 
25551
-       if test "$host_cpu" = ia64; then
 
25552
-       # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
 
25553
-       # chokes on -Wl,-G. The following line is correct:
 
25554
-         shared_flag='-G'
 
25555
-       else
 
25556
-         if test "$aix_use_runtimelinking" = yes; then
 
25557
-           shared_flag='${wl}-G'
 
25558
-         else
 
25559
-           shared_flag='${wl}-bM:SRE'
 
25560
-         fi
 
25561
+
 
25562
+
 
25563
+  # Check whether --enable-static was given.
 
25564
+if test "${enable_static+set}" = set; then
 
25565
+  enableval=$enable_static; p=${PACKAGE-default}
 
25566
+    case $enableval in
 
25567
+    yes) enable_static=yes ;;
 
25568
+    no) enable_static=no ;;
 
25569
+    *)
 
25570
+     enable_static=no
 
25571
+      # Look at the argument we got.  We use all the common list separators.
 
25572
+      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
 
25573
+      for pkg in $enableval; do
 
25574
+       IFS="$lt_save_ifs"
 
25575
+       if test "X$pkg" = "X$p"; then
 
25576
+         enable_static=yes
 
25577
        fi
 
25578
-      fi
 
25579
+      done
 
25580
+      IFS="$lt_save_ifs"
 
25581
+      ;;
 
25582
+    esac
 
25583
+else
 
25584
+  enable_static=yes
 
25585
+fi
 
25586
+
 
25587
+
 
25588
+
 
25589
 
 
25590
-      # It seems that -bexpall does not export symbols beginning with
 
25591
-      # underscore (_), so it is better to generate a list of symbols to export.
 
25592
-      always_export_symbols=yes
 
25593
-      if test "$aix_use_runtimelinking" = yes; then
 
25594
-       # Warning - without using the other runtime loading flags (-brtl),
 
25595
-       # -berok will link without error, but may produce a broken library.
 
25596
-       allow_undefined_flag='-berok'
 
25597
-       # Determine the default libpath from the value encoded in an empty executable.
 
25598
-       cat >conftest.$ac_ext <<_ACEOF
 
25599
-/* confdefs.h.  */
 
25600
-_ACEOF
 
25601
-cat confdefs.h >>conftest.$ac_ext
 
25602
-cat >>conftest.$ac_ext <<_ACEOF
 
25603
-/* end confdefs.h.  */
 
25604
 
 
25605
-int
 
25606
-main ()
 
25607
-{
 
25608
 
 
25609
-  ;
 
25610
-  return 0;
 
25611
-}
 
25612
-_ACEOF
 
25613
-rm -f conftest.$ac_objext conftest$ac_exeext
 
25614
-if { (ac_try="$ac_link"
 
25615
-case "(($ac_try" in
 
25616
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
25617
-  *) ac_try_echo=$ac_try;;
 
25618
-esac
 
25619
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
25620
-$as_echo "$ac_try_echo") >&5
 
25621
-  (eval "$ac_link") 2>conftest.er1
 
25622
-  ac_status=$?
 
25623
-  grep -v '^ *+' conftest.er1 >conftest.err
 
25624
-  rm -f conftest.er1
 
25625
-  cat conftest.err >&5
 
25626
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
25627
-  (exit $ac_status); } && {
 
25628
-        test -z "$ac_c_werror_flag" ||
 
25629
-        test ! -s conftest.err
 
25630
-       } && test -s conftest$ac_exeext && {
 
25631
-        test "$cross_compiling" = yes ||
 
25632
-        $as_test_x conftest$ac_exeext
 
25633
-       }; then
 
25634
 
 
25635
-lt_aix_libpath_sed='
 
25636
-    /Import File Strings/,/^$/ {
 
25637
-       /^0/ {
 
25638
-           s/^0  *\(.*\)$/\1/
 
25639
-           p
 
25640
-       }
 
25641
-    }'
 
25642
-aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
 
25643
-# Check for a 64-bit object if we didn't find anything.
 
25644
-if test -z "$aix_libpath"; then
 
25645
-  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
 
25646
-fi
 
25647
-else
 
25648
-  $as_echo "$as_me: failed program was:" >&5
 
25649
-sed 's/^/| /' conftest.$ac_ext >&5
 
25650
 
 
25651
 
 
25652
+
 
25653
+# Check whether --with-pic was given.
 
25654
+if test "${with_pic+set}" = set; then
 
25655
+  withval=$with_pic; pic_mode="$withval"
 
25656
+else
 
25657
+  pic_mode=default
 
25658
 fi
 
25659
 
 
25660
-rm -rf conftest.dSYM
 
25661
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
25662
-      conftest$ac_exeext conftest.$ac_ext
 
25663
-if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 
25664
 
 
25665
-       hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
 
25666
-       archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
 
25667
-       else
 
25668
-       if test "$host_cpu" = ia64; then
 
25669
-         hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
 
25670
-         allow_undefined_flag="-z nodefs"
 
25671
-         archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
 
25672
-       else
 
25673
-        # Determine the default libpath from the value encoded in an empty executable.
 
25674
-        cat >conftest.$ac_ext <<_ACEOF
 
25675
-/* confdefs.h.  */
 
25676
-_ACEOF
 
25677
-cat confdefs.h >>conftest.$ac_ext
 
25678
-cat >>conftest.$ac_ext <<_ACEOF
 
25679
-/* end confdefs.h.  */
 
25680
+test -z "$pic_mode" && pic_mode=default
 
25681
 
 
25682
-int
 
25683
-main ()
 
25684
-{
 
25685
 
 
25686
-  ;
 
25687
-  return 0;
 
25688
-}
 
25689
-_ACEOF
 
25690
-rm -f conftest.$ac_objext conftest$ac_exeext
 
25691
-if { (ac_try="$ac_link"
 
25692
-case "(($ac_try" in
 
25693
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
25694
-  *) ac_try_echo=$ac_try;;
 
25695
-esac
 
25696
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
25697
-$as_echo "$ac_try_echo") >&5
 
25698
-  (eval "$ac_link") 2>conftest.er1
 
25699
-  ac_status=$?
 
25700
-  grep -v '^ *+' conftest.er1 >conftest.err
 
25701
-  rm -f conftest.er1
 
25702
-  cat conftest.err >&5
 
25703
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
25704
-  (exit $ac_status); } && {
 
25705
-        test -z "$ac_c_werror_flag" ||
 
25706
-        test ! -s conftest.err
 
25707
-       } && test -s conftest$ac_exeext && {
 
25708
-        test "$cross_compiling" = yes ||
 
25709
-        $as_test_x conftest$ac_exeext
 
25710
-       }; then
 
25711
 
 
25712
-lt_aix_libpath_sed='
 
25713
-    /Import File Strings/,/^$/ {
 
25714
-       /^0/ {
 
25715
-           s/^0  *\(.*\)$/\1/
 
25716
-           p
 
25717
-       }
 
25718
-    }'
 
25719
-aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
 
25720
-# Check for a 64-bit object if we didn't find anything.
 
25721
-if test -z "$aix_libpath"; then
 
25722
-  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
 
25723
-fi
 
25724
-else
 
25725
-  $as_echo "$as_me: failed program was:" >&5
 
25726
-sed 's/^/| /' conftest.$ac_ext >&5
 
25727
 
 
25728
 
 
25729
-fi
 
25730
 
 
25731
-rm -rf conftest.dSYM
 
25732
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
25733
-      conftest$ac_exeext conftest.$ac_ext
 
25734
-if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 
25735
 
 
25736
-        hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
 
25737
-         # Warning - without using the other run time loading flags,
 
25738
-         # -berok will link without error, but may produce a broken library.
 
25739
-         no_undefined_flag=' ${wl}-bernotok'
 
25740
-         allow_undefined_flag=' ${wl}-berok'
 
25741
-         # Exported symbols can be pulled into shared objects from archives
 
25742
-         whole_archive_flag_spec='$convenience'
 
25743
-         archive_cmds_need_lc=yes
 
25744
-         # This is similar to how AIX traditionally builds its shared libraries.
 
25745
-         archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
 
25746
+  # Check whether --enable-fast-install was given.
 
25747
+if test "${enable_fast_install+set}" = set; then
 
25748
+  enableval=$enable_fast_install; p=${PACKAGE-default}
 
25749
+    case $enableval in
 
25750
+    yes) enable_fast_install=yes ;;
 
25751
+    no) enable_fast_install=no ;;
 
25752
+    *)
 
25753
+      enable_fast_install=no
 
25754
+      # Look at the argument we got.  We use all the common list separators.
 
25755
+      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
 
25756
+      for pkg in $enableval; do
 
25757
+       IFS="$lt_save_ifs"
 
25758
+       if test "X$pkg" = "X$p"; then
 
25759
+         enable_fast_install=yes
 
25760
        fi
 
25761
-      fi
 
25762
+      done
 
25763
+      IFS="$lt_save_ifs"
 
25764
       ;;
 
25765
+    esac
 
25766
+else
 
25767
+  enable_fast_install=yes
 
25768
+fi
 
25769
 
 
25770
-    amigaos*)
 
25771
-      archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
 
25772
-      hardcode_libdir_flag_spec='-L$libdir'
 
25773
-      hardcode_minus_L=yes
 
25774
-      # see comment about different semantics on the GNU ld section
 
25775
-      ld_shlibs=no
 
25776
-      ;;
 
25777
 
 
25778
-    bsdi[45]*)
 
25779
-      export_dynamic_flag_spec=-rdynamic
 
25780
-      ;;
 
25781
 
 
25782
-    cygwin* | mingw* | pw32*)
 
25783
-      # When not using gcc, we currently assume that we are using
 
25784
-      # Microsoft Visual C++.
 
25785
-      # hardcode_libdir_flag_spec is actually meaningless, as there is
 
25786
-      # no search path for DLLs.
 
25787
-      hardcode_libdir_flag_spec=' '
 
25788
-      allow_undefined_flag=unsupported
 
25789
-      # Tell ltmain to make .lib files, not .a files.
 
25790
-      libext=lib
 
25791
-      # Tell ltmain to make .dll files, not .so files.
 
25792
-      shrext_cmds=".dll"
 
25793
-      # FIXME: Setting linknames here is a bad hack.
 
25794
-      archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
 
25795
-      # The linker will automatically build a .lib file if we build a DLL.
 
25796
-      old_archive_From_new_cmds='true'
 
25797
-      # FIXME: Should let the user specify the lib program.
 
25798
-      old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs'
 
25799
-      fix_srcfile_path='`cygpath -w "$srcfile"`'
 
25800
-      enable_shared_with_static_runtimes=yes
 
25801
-      ;;
 
25802
 
 
25803
-    darwin* | rhapsody*)
 
25804
-      case $host_os in
 
25805
-        rhapsody* | darwin1.[012])
 
25806
-         allow_undefined_flag='${wl}-undefined ${wl}suppress'
 
25807
-         ;;
 
25808
-       *) # Darwin 1.3 on
 
25809
-         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
 
25810
-           allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
 
25811
-         else
 
25812
-           case ${MACOSX_DEPLOYMENT_TARGET} in
 
25813
-             10.[012])
 
25814
-               allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
 
25815
-               ;;
 
25816
-             10.*)
 
25817
-               allow_undefined_flag='${wl}-undefined ${wl}dynamic_lookup'
 
25818
-               ;;
 
25819
-           esac
 
25820
-         fi
 
25821
-         ;;
 
25822
-      esac
 
25823
-      archive_cmds_need_lc=no
 
25824
-      hardcode_direct=no
 
25825
-      hardcode_automatic=yes
 
25826
-      hardcode_shlibpath_var=unsupported
 
25827
-      whole_archive_flag_spec=''
 
25828
-      link_all_deplibs=yes
 
25829
-    if test "$GCC" = yes ; then
 
25830
-       output_verbose_link_cmd='echo'
 
25831
-        archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
 
25832
-        module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
 
25833
-        archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
 
25834
-        module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
 
25835
-    else
 
25836
-      case $cc_basename in
 
25837
-        xlc*)
 
25838
-         output_verbose_link_cmd='echo'
 
25839
-         archive_cmds='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring'
 
25840
-         module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
 
25841
-          # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
 
25842
-         archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
 
25843
-          module_expsym_cmds='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag  -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
 
25844
-          ;;
 
25845
-       *)
 
25846
-         ld_shlibs=no
 
25847
-          ;;
 
25848
-      esac
 
25849
-    fi
 
25850
-      ;;
 
25851
 
 
25852
-    dgux*)
 
25853
-      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
 
25854
-      hardcode_libdir_flag_spec='-L$libdir'
 
25855
-      hardcode_shlibpath_var=no
 
25856
-      ;;
 
25857
 
 
25858
-    freebsd1*)
 
25859
-      ld_shlibs=no
 
25860
-      ;;
 
25861
 
 
25862
-    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
 
25863
-    # support.  Future versions do this automatically, but an explicit c++rt0.o
 
25864
-    # does not break anything, and helps significantly (at the cost of a little
 
25865
-    # extra space).
 
25866
-    freebsd2.2*)
 
25867
-      archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
 
25868
-      hardcode_libdir_flag_spec='-R$libdir'
 
25869
-      hardcode_direct=yes
 
25870
-      hardcode_shlibpath_var=no
 
25871
-      ;;
 
25872
 
 
25873
-    # Unfortunately, older versions of FreeBSD 2 do not have this feature.
 
25874
-    freebsd2*)
 
25875
-      archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
 
25876
-      hardcode_direct=yes
 
25877
-      hardcode_minus_L=yes
 
25878
-      hardcode_shlibpath_var=no
 
25879
-      ;;
 
25880
 
 
25881
-    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
 
25882
-    freebsd* | dragonfly*)
 
25883
-      archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
 
25884
-      hardcode_libdir_flag_spec='-R$libdir'
 
25885
-      hardcode_direct=yes
 
25886
-      hardcode_shlibpath_var=no
 
25887
-      ;;
 
25888
 
18219
25889
-    hpux9*)
18220
25890
-      if test "$GCC" = yes; then
18221
25891
-       archive_cmds='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
18225
25895
-      hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
18226
25896
-      hardcode_libdir_separator=:
18227
25897
-      hardcode_direct=yes
18228
 
+  # Broken: fails on valid input.
18229
 
+continue
18230
 
+fi
18231
25898
 
18232
25899
-      # hardcode_minus_L: Not really in the search PATH,
18233
25900
-      # but as the default location of the library.
18234
25901
-      hardcode_minus_L=yes
18235
25902
-      export_dynamic_flag_spec='${wl}-E'
18236
25903
-      ;;
18237
 
+rm -f conftest.err conftest.$ac_ext
 
25904
+# This can be used to rebuild libtool when needed
 
25905
+LIBTOOL_DEPS="$ltmain"
18238
25906
 
18239
25907
-    hpux10*)
18240
25908
-      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
18245
25913
-      if test "$with_gnu_ld" = no; then
18246
25914
-       hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
18247
25915
-       hardcode_libdir_separator=:
18248
 
+  # OK, works on sane cases.  Now check whether nonexistent headers
18249
 
+  # can be detected and how.
18250
 
+  cat >conftest.$ac_ext <<_ACEOF
18251
 
+/* confdefs.h.  */
18252
 
+_ACEOF
18253
 
+cat confdefs.h >>conftest.$ac_ext
18254
 
+cat >>conftest.$ac_ext <<_ACEOF
18255
 
+/* end confdefs.h.  */
18256
 
+#include <ac_nonexistent.h>
18257
 
+_ACEOF
18258
 
+if { (ac_try="$ac_cpp conftest.$ac_ext"
18259
 
+case "(($ac_try" in
18260
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
18261
 
+  *) ac_try_echo=$ac_try;;
18262
 
+esac
18263
 
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
18264
 
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
18265
 
+  ac_status=$?
18266
 
+  grep -v '^ *+' conftest.er1 >conftest.err
18267
 
+  rm -f conftest.er1
18268
 
+  cat conftest.err >&5
18269
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
18270
 
+  (exit $ac_status); } >/dev/null && {
18271
 
+        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
18272
 
+        test ! -s conftest.err
18273
 
+       }; then
18274
 
+  # Broken: success on invalid input.
18275
 
+continue
18276
 
+else
18277
 
+  echo "$as_me: failed program was:" >&5
18278
 
+sed 's/^/| /' conftest.$ac_ext >&5
 
25916
+# Always use our own libtool.
 
25917
+LIBTOOL='$(SHELL) $(top_builddir)/libtool'
18279
25918
 
18280
25919
-       hardcode_direct=yes
18281
25920
-       export_dynamic_flag_spec='${wl}-E'
18282
 
+  # Passes both tests.
18283
 
+ac_preproc_ok=:
18284
 
+break
18285
 
+fi
18286
25921
 
18287
25922
-       # hardcode_minus_L: Not really in the search PATH,
18288
25923
-       # but as the default location of the library.
18289
25924
-       hardcode_minus_L=yes
18290
25925
-      fi
18291
25926
-      ;;
18292
 
+rm -f conftest.err conftest.$ac_ext
18293
25927
 
18294
25928
-    hpux11*)
18295
25929
-      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
18320
25954
-      if test "$with_gnu_ld" = no; then
18321
25955
-       hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
18322
25956
-       hardcode_libdir_separator=:
18323
 
+done
18324
 
+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
18325
 
+rm -f conftest.err conftest.$ac_ext
18326
 
+if $ac_preproc_ok; then
18327
 
+  break
18328
 
+fi
18329
25957
 
18330
25958
-       case $host_cpu in
18331
25959
-       hppa*64*|ia64*)
18336
25964
-       *)
18337
25965
-         hardcode_direct=yes
18338
25966
-         export_dynamic_flag_spec='${wl}-E'
18339
 
+    done
18340
 
+    ac_cv_prog_CXXCPP=$CXXCPP
18341
25967
 
18342
25968
-         # hardcode_minus_L: Not really in the search PATH,
18343
25969
-         # but as the default location of the library.
18346
25972
-       esac
18347
25973
-      fi
18348
25974
-      ;;
18349
 
+fi
18350
 
+  CXXCPP=$ac_cv_prog_CXXCPP
18351
 
+else
18352
 
+  ac_cv_prog_CXXCPP=$CXXCPP
18353
 
+fi
18354
 
+{ echo "$as_me:$LINENO: result: $CXXCPP" >&5
18355
 
+echo "${ECHO_T}$CXXCPP" >&6; }
18356
 
+ac_preproc_ok=false
18357
 
+for ac_cxx_preproc_warn_flag in '' yes
18358
 
+do
18359
 
+  # Use a header file that comes with gcc, so configuring glibc
18360
 
+  # with a fresh cross-compiler works.
18361
 
+  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
18362
 
+  # <limits.h> exists even on freestanding compilers.
18363
 
+  # On the NeXT, cc -E runs the code through the compiler's parser,
18364
 
+  # not just through cpp. "Syntax error" is here to catch this case.
18365
 
+  cat >conftest.$ac_ext <<_ACEOF
18366
 
+/* confdefs.h.  */
18367
 
+_ACEOF
18368
 
+cat confdefs.h >>conftest.$ac_ext
18369
 
+cat >>conftest.$ac_ext <<_ACEOF
18370
 
+/* end confdefs.h.  */
18371
 
+#ifdef __STDC__
18372
 
+# include <limits.h>
18373
 
+#else
18374
 
+# include <assert.h>
18375
 
+#endif
18376
 
+                    Syntax error
18377
 
+_ACEOF
18378
 
+if { (ac_try="$ac_cpp conftest.$ac_ext"
18379
 
+case "(($ac_try" in
18380
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
18381
 
+  *) ac_try_echo=$ac_try;;
18382
 
+esac
18383
 
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
18384
 
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
18385
 
+  ac_status=$?
18386
 
+  grep -v '^ *+' conftest.er1 >conftest.err
18387
 
+  rm -f conftest.er1
18388
 
+  cat conftest.err >&5
18389
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
18390
 
+  (exit $ac_status); } >/dev/null && {
18391
 
+        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
18392
 
+        test ! -s conftest.err
18393
 
+       }; then
18394
 
+  :
18395
 
+else
18396
 
+  echo "$as_me: failed program was:" >&5
18397
 
+sed 's/^/| /' conftest.$ac_ext >&5
18398
25975
 
18399
25976
-    irix5* | irix6* | nonstopux*)
18400
25977
-      if test "$GCC" = yes; then
18407
25984
-      hardcode_libdir_separator=:
18408
25985
-      link_all_deplibs=yes
18409
25986
-      ;;
18410
 
+  # Broken: fails on valid input.
18411
 
+continue
18412
 
+fi
18413
25987
 
18414
25988
-    netbsd*)
18415
25989
-      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
18421
25995
-      hardcode_direct=yes
18422
25996
-      hardcode_shlibpath_var=no
18423
25997
-      ;;
18424
 
+rm -f conftest.err conftest.$ac_ext
18425
25998
 
18426
25999
-    newsos6)
18427
26000
-      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
18430
26003
-      hardcode_libdir_separator=:
18431
26004
-      hardcode_shlibpath_var=no
18432
26005
-      ;;
18433
 
+  # OK, works on sane cases.  Now check whether nonexistent headers
18434
 
+  # can be detected and how.
18435
 
+  cat >conftest.$ac_ext <<_ACEOF
18436
 
+/* confdefs.h.  */
18437
 
+_ACEOF
18438
 
+cat confdefs.h >>conftest.$ac_ext
18439
 
+cat >>conftest.$ac_ext <<_ACEOF
18440
 
+/* end confdefs.h.  */
18441
 
+#include <ac_nonexistent.h>
18442
 
+_ACEOF
18443
 
+if { (ac_try="$ac_cpp conftest.$ac_ext"
18444
 
+case "(($ac_try" in
18445
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
18446
 
+  *) ac_try_echo=$ac_try;;
18447
 
+esac
18448
 
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
18449
 
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
18450
 
+  ac_status=$?
18451
 
+  grep -v '^ *+' conftest.er1 >conftest.err
18452
 
+  rm -f conftest.er1
18453
 
+  cat conftest.err >&5
18454
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
18455
 
+  (exit $ac_status); } >/dev/null && {
18456
 
+        test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
18457
 
+        test ! -s conftest.err
18458
 
+       }; then
18459
 
+  # Broken: success on invalid input.
18460
 
+continue
18461
 
+else
18462
 
+  echo "$as_me: failed program was:" >&5
18463
 
+sed 's/^/| /' conftest.$ac_ext >&5
18464
26006
 
18465
26007
-    openbsd*)
18466
26008
-      if test -f /usr/libexec/ld.so; then
18487
26029
-       ld_shlibs=no
18488
26030
-      fi
18489
26031
-      ;;
18490
 
+  # Passes both tests.
18491
 
+ac_preproc_ok=:
18492
 
+break
18493
 
+fi
18494
26032
 
18495
26033
-    os2*)
18496
26034
-      hardcode_libdir_flag_spec='-L$libdir'
18499
26037
-      archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def'
18500
26038
-      old_archive_From_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
18501
26039
-      ;;
18502
 
+rm -f conftest.err conftest.$ac_ext
18503
26040
 
18504
26041
-    osf3*)
18505
26042
-      if test "$GCC" = yes; then
18512
26049
-      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
18513
26050
-      hardcode_libdir_separator=:
18514
26051
-      ;;
18515
 
+done
18516
 
+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
18517
 
+rm -f conftest.err conftest.$ac_ext
18518
 
+if $ac_preproc_ok; then
18519
 
+  :
18520
 
+else
18521
 
+  _lt_caught_CXX_error=yes
18522
 
+fi
18523
26052
 
18524
26053
-    osf4* | osf5*)     # as osf3* with the addition of -msym flag
18525
26054
-      if test "$GCC" = yes; then
18531
26060
-       archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
18532
26061
-       archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
18533
26062
-       $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp'
18534
 
+ac_ext=c
18535
 
+ac_cpp='$CPP $CPPFLAGS'
18536
 
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
18537
 
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
18538
 
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
18539
26063
 
18540
26064
-       # Both c and cxx compiler support -rpath directly
18541
26065
-       hardcode_libdir_flag_spec='-rpath $libdir'
18542
26066
-      fi
18543
26067
-      hardcode_libdir_separator=:
18544
26068
-      ;;
18545
 
+else
18546
 
+  _lt_caught_CXX_error=yes
18547
 
+fi
18548
26069
 
18549
26070
-    solaris*)
18550
26071
-      no_undefined_flag=' -z text'
18563
26084
-      hardcode_shlibpath_var=no
18564
26085
-      case $host_os in
18565
26086
-      solaris2.[0-5] | solaris2.[0-5].*) ;;
18566
 
+
18567
 
+
18568
 
+
18569
 
+
18570
 
+# Set options
18571
 
+
18572
 
+
18573
 
+
18574
 
+        enable_dlopen=no
18575
 
+
18576
 
+
18577
 
+  enable_win32_dll=no
18578
 
+
18579
 
+
18580
 
+            # Check whether --enable-shared was given.
18581
 
+if test "${enable_shared+set}" = set; then
18582
 
+  enableval=$enable_shared; p=${PACKAGE-default}
18583
 
+    case $enableval in
18584
 
+    yes) enable_shared=yes ;;
18585
 
+    no) enable_shared=no ;;
18586
 
       *)
 
26087
-      *)
18587
26088
-       # The compiler driver will combine and reorder linker options,
18588
26089
-       # but understands `-z linker_flag'.  GCC discards it without `$wl',
18589
26090
-       # but is careful enough not to reorder.
18592
26093
-         whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
18593
26094
-       else
18594
26095
-         whole_archive_flag_spec='-z allextract$convenience -z defaultextract'
18595
 
+      enable_shared=no
18596
 
+      # Look at the argument we got.  We use all the common list separators.
18597
 
+      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
18598
 
+      for pkg in $enableval; do
18599
 
+       IFS="$lt_save_ifs"
18600
 
+       if test "X$pkg" = "X$p"; then
18601
 
+         enable_shared=yes
18602
 
        fi
18603
 
+      done
18604
 
+      IFS="$lt_save_ifs"
18605
 
        ;;
18606
 
       esac
 
26096
-       fi
 
26097
-       ;;
 
26098
-      esac
18607
26099
-      link_all_deplibs=yes
18608
26100
-      ;;
18609
 
+else
18610
 
+  enable_shared=yes
18611
 
+fi
18612
26101
 
18613
26102
-    sunos4*)
18614
26103
-      if test "x$host_vendor" = xsequent; then
18700
26189
-      else
18701
26190
-       archive_cmds='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
18702
26191
-       archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
18703
 
+
18704
 
+  # Check whether --enable-static was given.
18705
 
+if test "${enable_static+set}" = set; then
18706
 
+  enableval=$enable_static; p=${PACKAGE-default}
18707
 
+    case $enableval in
18708
 
+    yes) enable_static=yes ;;
18709
 
+    no) enable_static=no ;;
18710
 
+    *)
18711
 
+     enable_static=no
18712
 
+      # Look at the argument we got.  We use all the common list separators.
18713
 
+      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
18714
 
+      for pkg in $enableval; do
18715
 
+       IFS="$lt_save_ifs"
18716
 
+       if test "X$pkg" = "X$p"; then
18717
 
+         enable_static=yes
18718
 
       fi
18719
 
+      done
18720
 
+      IFS="$lt_save_ifs"
18721
 
       ;;
18722
 
+    esac
18723
 
+else
18724
 
+  enable_static=yes
18725
 
+fi
18726
 
+
18727
 
+
18728
 
+
18729
 
+
18730
 
+
18731
 
+
18732
 
+
18733
 
+
 
26192
-      fi
 
26193
-      ;;
18734
26194
 
18735
26195
-    uts4*)
18736
26196
-      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
18738
26198
-      hardcode_shlibpath_var=no
18739
26199
-      ;;
18740
26200
 
18741
 
+# Check whether --with-pic was given.
18742
 
+if test "${with_pic+set}" = set; then
18743
 
+  withval=$with_pic; pic_mode="$withval"
18744
 
+else
18745
 
+  pic_mode=default
18746
 
+fi
18747
 
+
18748
 
+
18749
 
+test -z "$pic_mode" && pic_mode=default
18750
 
+
18751
 
+
18752
 
+
18753
 
+
18754
 
+
18755
 
+
18756
 
+
18757
 
+  # Check whether --enable-fast-install was given.
18758
 
+if test "${enable_fast_install+set}" = set; then
18759
 
+  enableval=$enable_fast_install; p=${PACKAGE-default}
18760
 
+    case $enableval in
18761
 
+    yes) enable_fast_install=yes ;;
18762
 
+    no) enable_fast_install=no ;;
18763
 
     *)
 
26201
-    *)
18764
26202
-      ld_shlibs=no
18765
 
+      enable_fast_install=no
18766
 
+      # Look at the argument we got.  We use all the common list separators.
18767
 
+      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
18768
 
+      for pkg in $enableval; do
18769
 
+       IFS="$lt_save_ifs"
18770
 
+       if test "X$pkg" = "X$p"; then
18771
 
+         enable_fast_install=yes
18772
 
+       fi
18773
 
+      done
18774
 
+      IFS="$lt_save_ifs"
18775
 
       ;;
18776
 
     esac
 
26203
-      ;;
 
26204
-    esac
18777
26205
-  fi
18778
 
+else
18779
 
+  enable_fast_install=yes
18780
 
+fi
18781
26206
 
18782
 
-{ echo "$as_me:$LINENO: result: $ld_shlibs" >&5
18783
 
-echo "${ECHO_T}$ld_shlibs" >&6; }
 
26207
-{ $as_echo "$as_me:$LINENO: result: $ld_shlibs" >&5
 
26208
-$as_echo "$ld_shlibs" >&6; }
18784
26209
-test "$ld_shlibs" = no && can_build_shared=no
 
26210
+test -z "$LN_S" && LN_S="ln -s"
18785
26211
 
18786
26212
-#
18787
26213
-# Do we need to explicitly link libc?
18800
26226
-      # Test whether the compiler implicitly links with -lc since on some
18801
26227
-      # systems, -lgcc has to come before -lc. If gcc already passes -lc
18802
26228
-      # to ld, don't add -lc before -lgcc.
18803
 
-      { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
18804
 
-echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; }
 
26229
-      { $as_echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
 
26230
-$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
18805
26231
-      $rm conftest*
18806
26232
-      echo "$lt_simple_compile_test_code" > conftest.$ac_ext
18807
26233
 
18808
26234
-      if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
18809
26235
-  (eval $ac_compile) 2>&5
18810
26236
-  ac_status=$?
18811
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
26237
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
18812
26238
-  (exit $ac_status); } 2>conftest.err; then
18813
26239
-        soname=conftest
18814
26240
-        lib=conftest
18826
26252
-        if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5
18827
26253
-  (eval $archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5
18828
26254
-  ac_status=$?
18829
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
26255
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
18830
26256
-  (exit $ac_status); }
18831
26257
-        then
18832
26258
-         archive_cmds_need_lc=no
18838
26264
-        cat conftest.err 1>&5
18839
26265
-      fi
18840
26266
-      $rm conftest*
18841
 
-      { echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5
18842
 
-echo "${ECHO_T}$archive_cmds_need_lc" >&6; }
 
26267
-      { $as_echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5
 
26268
-$as_echo "$archive_cmds_need_lc" >&6; }
18843
26269
-      ;;
18844
26270
-    esac
18845
26271
-  fi
18846
26272
-  ;;
18847
26273
-esac
18848
26274
 
18849
 
-{ echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
18850
 
-echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; }
 
26275
-{ $as_echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
 
26276
-$as_echo_n "checking dynamic linker characteristics... " >&6; }
18851
26277
-library_names_spec=
18852
26278
-libname_spec='lib$name'
18853
26279
-soname_spec=
18910
26336
-  if (lt_freq[lt_foo] == 1) { print lt_foo; }
18911
26337
-}'`
18912
26338
-  sys_lib_search_path_spec=`echo $lt_search_path_spec`
18913
 
-else
18914
 
-  sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
18915
 
-fi
18916
 
-need_lib_prefix=unknown
18917
 
-hardcode_into_libs=no
18918
 
 
18919
 
-# when you set need_version to no, make sure it does not cause -set_version
18920
 
-# flags to be left without arguments
18921
 
-need_version=unknown
18922
 
 
18923
 
-case $host_os in
18924
 
-aix3*)
18925
 
-  version_type=linux
18926
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
18927
 
-  shlibpath_var=LIBPATH
18928
 
 
18929
 
-  # AIX 3 has no versioning support, so we append a major version to the name.
18930
 
-  soname_spec='${libname}${release}${shared_ext}$major'
18931
 
-  ;;
18932
 
 
18933
 
-aix4* | aix5*)
18934
 
-  version_type=linux
18935
 
-  need_lib_prefix=no
18936
 
-  need_version=no
18937
 
-  hardcode_into_libs=yes
18938
 
-  if test "$host_cpu" = ia64; then
18939
 
-    # AIX 5 supports IA64
18940
 
-    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
18941
 
-    shlibpath_var=LD_LIBRARY_PATH
18942
 
-  else
18943
 
-    # With GCC up to 2.95.x, collect2 would create an import file
18944
 
-    # for dependence libraries.  The import file would start with
18945
 
-    # the line `#! .'.  This would cause the generated library to
18946
 
-    # depend on `.', always an invalid library.  This was fixed in
18947
 
-    # development snapshots of GCC prior to 3.0.
18948
 
-    case $host_os in
18949
 
-      aix4 | aix4.[01] | aix4.[01].*)
18950
 
-      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
18951
 
-          echo ' yes '
18952
 
-          echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then
18953
 
-       :
18954
 
-      else
18955
 
-       can_build_shared=no
18956
 
-      fi
18957
 
-      ;;
18958
 
-    esac
18959
 
-    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
18960
 
-    # soname into executable. Probably we can add versioning support to
18961
 
-    # collect2, so additional links can be useful in future.
18962
 
-    if test "$aix_use_runtimelinking" = yes; then
18963
 
-      # If using run time linking (on AIX 4.2 or later) use lib<name>.so
18964
 
-      # instead of lib<name>.a to let people know that these are not
18965
 
-      # typical AIX shared libraries.
18966
 
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
18967
 
-    else
18968
 
-      # We preserve .a as extension for shared libraries through AIX4.2
18969
 
-      # and later when we are not doing run time linking.
18970
 
-      library_names_spec='${libname}${release}.a $libname.a'
18971
 
-      soname_spec='${libname}${release}${shared_ext}$major'
18972
 
-    fi
18973
 
-    shlibpath_var=LIBPATH
18974
 
-  fi
18975
 
-  ;;
18976
 
 
18977
 
-amigaos*)
18978
 
-  library_names_spec='$libname.ixlibrary $libname.a'
18979
 
-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
18980
 
-  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
18981
 
-  ;;
18982
 
+# This can be used to rebuild libtool when needed
18983
 
+LIBTOOL_DEPS="$ltmain"
18984
 
 
18985
 
-beos*)
18986
 
-  library_names_spec='${libname}${shared_ext}'
18987
 
-  dynamic_linker="$host_os ld.so"
18988
 
-  shlibpath_var=LIBRARY_PATH
18989
 
-  ;;
18990
 
+# Always use our own libtool.
18991
 
+LIBTOOL='$(SHELL) $(top_builddir)/libtool'
18992
 
 
18993
 
-bsdi[45]*)
18994
 
-  version_type=linux
18995
 
-  need_version=no
18996
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
18997
 
-  soname_spec='${libname}${release}${shared_ext}$major'
18998
 
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
18999
 
-  shlibpath_var=LD_LIBRARY_PATH
19000
 
-  sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
19001
 
-  sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
19002
 
-  # the default ld.so.conf also contains /usr/contrib/lib and
19003
 
-  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
19004
 
-  # libtool to hard-code these into programs
19005
 
-  ;;
19006
 
 
19007
 
-cygwin* | mingw* | pw32*)
19008
 
-  version_type=windows
19009
 
-  shrext_cmds=".dll"
19010
 
-  need_version=no
19011
 
-  need_lib_prefix=no
19012
 
 
19013
 
-  case $GCC,$host_os in
19014
 
-  yes,cygwin* | yes,mingw* | yes,pw32*)
19015
 
-    library_names_spec='$libname.dll.a'
19016
 
-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
19017
 
-    postinstall_cmds='base_file=`basename \${file}`~
19018
 
-      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
19019
 
-      dldir=$destdir/`dirname \$dlpath`~
19020
 
-      test -d \$dldir || mkdir -p \$dldir~
19021
 
-      $install_prog $dir/$dlname \$dldir/$dlname~
19022
 
-      chmod a+x \$dldir/$dlname'
19023
 
-    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
19024
 
-      dlpath=$dir/\$dldll~
19025
 
-       $rm \$dlpath'
19026
 
-    shlibpath_overrides_runpath=yes
19027
 
 
19028
 
-    case $host_os in
19029
 
-    cygwin*)
19030
 
-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
19031
 
-      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
19032
 
-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
19033
 
-      ;;
19034
 
-    mingw*)
19035
 
-      # MinGW DLLs use traditional 'lib' prefix
19036
 
-      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
19037
 
-      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
19038
 
-      if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then
19039
 
-        # It is most probably a Windows format PATH printed by
19040
 
-        # mingw gcc, but we are running on Cygwin. Gcc prints its search
19041
 
-        # path with ; separators, and with drive letters. We can handle the
19042
 
-        # drive letters (cygwin fileutils understands them), so leave them,
19043
 
-        # especially as we might pass files found there to a mingw objdump,
19044
 
-        # which wouldn't understand a cygwinified path. Ahh.
19045
 
-        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
19046
 
-      else
19047
 
-        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
19048
 
-      fi
19049
 
-      ;;
19050
 
-    pw32*)
19051
 
-      # pw32 DLLs use 'pw' prefix rather than 'lib'
19052
 
-      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
19053
 
-      ;;
19054
 
-    esac
19055
 
-    ;;
19056
 
 
19057
 
-  *)
19058
 
-    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
19059
 
-    ;;
19060
 
-  esac
19061
 
-  dynamic_linker='Win32 ld.exe'
19062
 
-  # FIXME: first we should search . and the directory the executable is in
19063
 
-  shlibpath_var=PATH
19064
 
-  ;;
19065
 
 
19066
 
-darwin* | rhapsody*)
19067
 
-  dynamic_linker="$host_os dyld"
19068
 
-  version_type=darwin
19069
 
-  need_lib_prefix=no
19070
 
-  need_version=no
19071
 
-  library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext'
19072
 
-  soname_spec='${libname}${release}${major}$shared_ext'
19073
 
-  shlibpath_overrides_runpath=yes
19074
 
-  shlibpath_var=DYLD_LIBRARY_PATH
19075
 
-  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
19076
 
 
19077
 
-  sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"
19078
 
-  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
19079
 
-  ;;
19080
 
 
19081
 
-dgux*)
19082
 
-  version_type=linux
19083
 
-  need_lib_prefix=no
19084
 
-  need_version=no
19085
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
19086
 
-  soname_spec='${libname}${release}${shared_ext}$major'
19087
 
-  shlibpath_var=LD_LIBRARY_PATH
19088
 
-  ;;
19089
 
 
19090
 
-freebsd1*)
19091
 
-  dynamic_linker=no
19092
 
-  ;;
19093
 
 
19094
 
-freebsd* | dragonfly*)
19095
 
-  # DragonFly does not have aout.  When/if they implement a new
19096
 
-  # versioning mechanism, adjust this.
19097
 
-  if test -x /usr/bin/objformat; then
19098
 
-    objformat=`/usr/bin/objformat`
19099
 
-  else
19100
 
-    case $host_os in
19101
 
-    freebsd[123]*) objformat=aout ;;
19102
 
-    *) objformat=elf ;;
19103
 
-    esac
19104
 
-  fi
19105
 
-  version_type=freebsd-$objformat
19106
 
-  case $version_type in
19107
 
-    freebsd-elf*)
19108
 
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
19109
 
-      need_version=no
19110
 
-      need_lib_prefix=no
19111
 
-      ;;
19112
 
-    freebsd-*)
19113
 
-      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
19114
 
-      need_version=yes
19115
 
-      ;;
19116
 
-  esac
19117
 
-  shlibpath_var=LD_LIBRARY_PATH
19118
 
-  case $host_os in
19119
 
-  freebsd2*)
19120
 
-    shlibpath_overrides_runpath=yes
19121
 
-    ;;
19122
 
-  freebsd3.[01]* | freebsdelf3.[01]*)
19123
 
-    shlibpath_overrides_runpath=yes
19124
 
-    hardcode_into_libs=yes
19125
 
-    ;;
19126
 
-  freebsd3.[2-9]* | freebsdelf3.[2-9]* | \
19127
 
-  freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1)
19128
 
-    shlibpath_overrides_runpath=no
19129
 
-    hardcode_into_libs=yes
19130
 
-    ;;
19131
 
-  *) # from 4.6 on, and DragonFly
19132
 
-    shlibpath_overrides_runpath=yes
19133
 
-    hardcode_into_libs=yes
19134
 
-    ;;
19135
 
-  esac
19136
 
-  ;;
19137
 
 
19138
 
-gnu*)
19139
 
-  version_type=linux
19140
 
-  need_lib_prefix=no
19141
 
-  need_version=no
19142
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
19143
 
-  soname_spec='${libname}${release}${shared_ext}$major'
19144
 
-  shlibpath_var=LD_LIBRARY_PATH
19145
 
-  hardcode_into_libs=yes
19146
 
-  ;;
19147
 
 
19148
 
-hpux9* | hpux10* | hpux11*)
19149
 
-  # Give a soname corresponding to the major version so that dld.sl refuses to
19150
 
-  # link against other versions.
19151
 
-  version_type=sunos
19152
 
-  need_lib_prefix=no
19153
 
-  need_version=no
19154
 
-  case $host_cpu in
19155
 
-  ia64*)
19156
 
-    shrext_cmds='.so'
19157
 
-    hardcode_into_libs=yes
19158
 
-    dynamic_linker="$host_os dld.so"
19159
 
-    shlibpath_var=LD_LIBRARY_PATH
19160
 
-    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
19161
 
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
19162
 
-    soname_spec='${libname}${release}${shared_ext}$major'
19163
 
-    if test "X$HPUX_IA64_MODE" = X32; then
19164
 
-      sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
19165
 
-    else
19166
 
-      sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
19167
 
-    fi
19168
 
-    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
19169
 
-    ;;
19170
 
-   hppa*64*)
19171
 
-     shrext_cmds='.sl'
19172
 
-     hardcode_into_libs=yes
19173
 
-     dynamic_linker="$host_os dld.sl"
19174
 
-     shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
19175
 
-     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
19176
 
-     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
19177
 
-     soname_spec='${libname}${release}${shared_ext}$major'
19178
 
-     sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
19179
 
-     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
19180
 
-     ;;
19181
 
-   *)
19182
 
-    shrext_cmds='.sl'
19183
 
-    dynamic_linker="$host_os dld.sl"
19184
 
-    shlibpath_var=SHLIB_PATH
19185
 
-    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
19186
 
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
19187
 
-    soname_spec='${libname}${release}${shared_ext}$major'
19188
 
-    ;;
19189
 
-  esac
19190
 
-  # HP-UX runs *really* slowly unless shared libraries are mode 555.
19191
 
-  postinstall_cmds='chmod 555 $lib'
19192
 
-  ;;
19193
 
 
19194
 
-interix[3-9]*)
19195
 
-  version_type=linux
19196
 
-  need_lib_prefix=no
19197
 
-  need_version=no
19198
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
19199
 
-  soname_spec='${libname}${release}${shared_ext}$major'
19200
 
-  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
19201
 
-  shlibpath_var=LD_LIBRARY_PATH
19202
 
-  shlibpath_overrides_runpath=no
19203
 
-  hardcode_into_libs=yes
19204
 
-  ;;
19205
 
 
19206
 
-irix5* | irix6* | nonstopux*)
19207
 
-  case $host_os in
19208
 
-    nonstopux*) version_type=nonstopux ;;
19209
 
-    *)
19210
 
-       if test "$lt_cv_prog_gnu_ld" = yes; then
19211
 
-               version_type=linux
19212
 
-       else
19213
 
-               version_type=irix
19214
 
-       fi ;;
19215
 
-  esac
19216
 
-  need_lib_prefix=no
19217
 
-  need_version=no
19218
 
-  soname_spec='${libname}${release}${shared_ext}$major'
19219
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
19220
 
-  case $host_os in
19221
 
-  irix5* | nonstopux*)
19222
 
-    libsuff= shlibsuff=
19223
 
-    ;;
19224
 
-  *)
19225
 
-    case $LD in # libtool.m4 will add one of these switches to LD
19226
 
-    *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
19227
 
-      libsuff= shlibsuff= libmagic=32-bit;;
19228
 
-    *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
19229
 
-      libsuff=32 shlibsuff=N32 libmagic=N32;;
19230
 
-    *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
19231
 
-      libsuff=64 shlibsuff=64 libmagic=64-bit;;
19232
 
-    *) libsuff= shlibsuff= libmagic=never-match;;
19233
 
-    esac
19234
 
-    ;;
19235
 
-  esac
19236
 
-  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
19237
 
-  shlibpath_overrides_runpath=no
19238
 
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
19239
 
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
19240
 
-  hardcode_into_libs=yes
19241
 
-  ;;
19242
 
 
19243
 
-# No shared lib support for Linux oldld, aout, or coff.
19244
 
-linux*oldld* | linux*aout* | linux*coff*)
19245
 
-  dynamic_linker=no
19246
 
-  ;;
19247
 
 
19248
 
-# This must be Linux ELF.
19249
 
-linux* | k*bsd*-gnu)
19250
 
-  version_type=linux
19251
 
-  need_lib_prefix=no
19252
 
-  need_version=no
19253
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
19254
 
-  soname_spec='${libname}${release}${shared_ext}$major'
19255
 
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
19256
 
-  shlibpath_var=LD_LIBRARY_PATH
19257
 
-  shlibpath_overrides_runpath=no
19258
 
-  # This implies no fast_install, which is unacceptable.
19259
 
-  # Some rework will be needed to allow for fast_install
19260
 
-  # before this can be enabled.
19261
 
-  hardcode_into_libs=yes
19262
 
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
19263
 
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
19264
 
 
19265
 
-  # Append ld.so.conf contents to the search path
19266
 
-  if test -f /etc/ld.so.conf; then
19267
 
-    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[     ]*hwcap[        ]/d;s/[:,       ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
19268
 
-    sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra"
19269
 
-  fi
19270
 
 
19271
 
-  # We used to test for /lib/ld.so.1 and disable shared libraries on
19272
 
-  # powerpc, because MkLinux only supported shared libraries with the
19273
 
-  # GNU dynamic linker.  Since this was broken with cross compilers,
19274
 
-  # most powerpc-linux boxes support dynamic linking these days and
19275
 
-  # people can always --disable-shared, the test was removed, and we
19276
 
-  # assume the GNU/Linux dynamic linker is in use.
19277
 
-  dynamic_linker='GNU/Linux ld.so'
19278
 
-  ;;
19279
 
 
19280
 
-netbsd*)
19281
 
-  version_type=sunos
19282
 
-  need_lib_prefix=no
19283
 
-  need_version=no
19284
 
-  if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
19285
 
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
19286
 
-    finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
19287
 
-    dynamic_linker='NetBSD (a.out) ld.so'
19288
 
-  else
19289
 
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
19290
 
-    soname_spec='${libname}${release}${shared_ext}$major'
19291
 
-    dynamic_linker='NetBSD ld.elf_so'
19292
 
-  fi
19293
 
-  shlibpath_var=LD_LIBRARY_PATH
19294
 
-  shlibpath_overrides_runpath=yes
19295
 
-  hardcode_into_libs=yes
19296
 
-  ;;
19297
 
 
19298
 
-newsos6)
19299
 
-  version_type=linux
19300
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
19301
 
-  shlibpath_var=LD_LIBRARY_PATH
19302
 
-  shlibpath_overrides_runpath=yes
19303
 
-  ;;
19304
 
 
19305
 
-nto-qnx*)
19306
 
-  version_type=linux
19307
 
-  need_lib_prefix=no
19308
 
-  need_version=no
19309
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
19310
 
-  soname_spec='${libname}${release}${shared_ext}$major'
19311
 
-  shlibpath_var=LD_LIBRARY_PATH
19312
 
-  shlibpath_overrides_runpath=yes
19313
 
-  ;;
19314
 
 
19315
 
-openbsd*)
19316
 
-  version_type=sunos
19317
 
-  sys_lib_dlsearch_path_spec="/usr/lib"
19318
 
-  need_lib_prefix=no
19319
 
-  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
19320
 
-  case $host_os in
19321
 
-    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
19322
 
-    *)                         need_version=no  ;;
19323
 
-  esac
19324
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
19325
 
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
19326
 
-  shlibpath_var=LD_LIBRARY_PATH
19327
 
-  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
19328
 
-    case $host_os in
19329
 
-      openbsd2.[89] | openbsd2.[89].*)
19330
 
-       shlibpath_overrides_runpath=no
19331
 
-       ;;
19332
 
-      *)
19333
 
-       shlibpath_overrides_runpath=yes
19334
 
-       ;;
19335
 
-      esac
19336
 
-  else
19337
 
-    shlibpath_overrides_runpath=yes
19338
 
-  fi
19339
 
-  ;;
19340
 
 
19341
 
-os2*)
19342
 
-  libname_spec='$name'
19343
 
-  shrext_cmds=".dll"
19344
 
-  need_lib_prefix=no
19345
 
-  library_names_spec='$libname${shared_ext} $libname.a'
19346
 
-  dynamic_linker='OS/2 ld.exe'
19347
 
-  shlibpath_var=LIBPATH
19348
 
-  ;;
19349
 
 
19350
 
-osf3* | osf4* | osf5*)
19351
 
-  version_type=osf
19352
 
-  need_lib_prefix=no
19353
 
-  need_version=no
19354
 
-  soname_spec='${libname}${release}${shared_ext}$major'
19355
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
19356
 
-  shlibpath_var=LD_LIBRARY_PATH
19357
 
-  sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
19358
 
-  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
19359
 
-  ;;
19360
 
 
19361
 
-rdos*)
19362
 
-  dynamic_linker=no
19363
 
-  ;;
19364
 
+test -z "$LN_S" && LN_S="ln -s"
19365
 
 
19366
 
-solaris*)
19367
 
-  version_type=linux
19368
 
-  need_lib_prefix=no
19369
 
-  need_version=no
19370
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
19371
 
-  soname_spec='${libname}${release}${shared_ext}$major'
19372
 
-  shlibpath_var=LD_LIBRARY_PATH
19373
 
-  shlibpath_overrides_runpath=yes
19374
 
-  hardcode_into_libs=yes
19375
 
-  # ldd complains unless libraries are executable
19376
 
-  postinstall_cmds='chmod +x $lib'
19377
 
-  ;;
19378
 
 
19379
 
-sunos4*)
19380
 
-  version_type=sunos
19381
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
19382
 
-  finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
19383
 
-  shlibpath_var=LD_LIBRARY_PATH
19384
 
-  shlibpath_overrides_runpath=yes
19385
 
-  if test "$with_gnu_ld" = yes; then
19386
 
-    need_lib_prefix=no
19387
 
-  fi
19388
 
-  need_version=yes
19389
 
-  ;;
19390
 
 
19391
 
-sysv4 | sysv4.3*)
19392
 
-  version_type=linux
19393
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
19394
 
-  soname_spec='${libname}${release}${shared_ext}$major'
19395
 
-  shlibpath_var=LD_LIBRARY_PATH
19396
 
-  case $host_vendor in
19397
 
-    sni)
19398
 
-      shlibpath_overrides_runpath=no
19399
 
-      need_lib_prefix=no
19400
 
-      export_dynamic_flag_spec='${wl}-Blargedynsym'
19401
 
-      runpath_var=LD_RUN_PATH
19402
 
-      ;;
19403
 
-    siemens)
19404
 
-      need_lib_prefix=no
19405
 
-      ;;
19406
 
-    motorola)
19407
 
-      need_lib_prefix=no
19408
 
-      need_version=no
19409
 
-      shlibpath_overrides_runpath=no
19410
 
-      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
19411
 
-      ;;
19412
 
-  esac
19413
 
-  ;;
19414
 
 
19415
 
-sysv4*MP*)
19416
 
-  if test -d /usr/nec ;then
19417
 
-    version_type=linux
19418
 
-    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
19419
 
-    soname_spec='$libname${shared_ext}.$major'
19420
 
-    shlibpath_var=LD_LIBRARY_PATH
19421
 
-  fi
19422
 
-  ;;
19423
 
 
19424
 
-sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
19425
 
-  version_type=freebsd-elf
19426
 
-  need_lib_prefix=no
19427
 
-  need_version=no
19428
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
19429
 
-  soname_spec='${libname}${release}${shared_ext}$major'
19430
 
-  shlibpath_var=LD_LIBRARY_PATH
19431
 
-  hardcode_into_libs=yes
19432
 
-  if test "$with_gnu_ld" = yes; then
19433
 
-    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
19434
 
-    shlibpath_overrides_runpath=no
19435
 
-  else
19436
 
-    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
19437
 
-    shlibpath_overrides_runpath=yes
19438
 
-    case $host_os in
19439
 
-      sco3.2v5*)
19440
 
-        sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
19441
 
-       ;;
19442
 
-    esac
19443
 
-  fi
19444
 
-  sys_lib_dlsearch_path_spec='/usr/lib'
19445
 
-  ;;
19446
 
 
19447
 
-uts4*)
19448
 
-  version_type=linux
19449
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
19450
 
-  soname_spec='${libname}${release}${shared_ext}$major'
19451
 
-  shlibpath_var=LD_LIBRARY_PATH
19452
 
-  ;;
19453
 
 
19454
 
-*)
19455
 
-  dynamic_linker=no
19456
 
-  ;;
19457
 
-esac
19458
 
-{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5
19459
 
-echo "${ECHO_T}$dynamic_linker" >&6; }
19460
 
-test "$dynamic_linker" = no && can_build_shared=no
19461
 
 
19462
 
-variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
19463
 
-if test "$GCC" = yes; then
19464
 
-  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
19465
 
-fi
19466
 
 
19467
 
-{ echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
19468
 
-echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; }
19469
 
-hardcode_action=
19470
 
-if test -n "$hardcode_libdir_flag_spec" || \
19471
 
-   test -n "$runpath_var" || \
19472
 
-   test "X$hardcode_automatic" = "Xyes" ; then
19473
 
 
19474
 
-  # We can hardcode non-existant directories.
19475
 
-  if test "$hardcode_direct" != no &&
19476
 
-     # If the only mechanism to avoid hardcoding is shlibpath_var, we
19477
 
-     # have to relink, otherwise we might link with an installed library
19478
 
-     # when we should be linking with a yet-to-be-installed one
19479
 
-     ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, )" != no &&
19480
 
-     test "$hardcode_minus_L" != no; then
19481
 
-    # Linking always hardcodes the temporary library directory.
19482
 
-    hardcode_action=relink
19483
 
-  else
19484
 
-    # We can link without hardcoding, and we can hardcode nonexisting dirs.
19485
 
-    hardcode_action=immediate
19486
 
-  fi
19487
 
-else
19488
 
-  # We cannot hardcode anything, or else we can only hardcode existing
19489
 
-  # directories.
19490
 
-  hardcode_action=unsupported
19491
 
-fi
19492
 
-{ echo "$as_me:$LINENO: result: $hardcode_action" >&5
19493
 
-echo "${ECHO_T}$hardcode_action" >&6; }
19494
 
 
19495
 
-if test "$hardcode_action" = relink; then
19496
 
-  # Fast installation is not supported
19497
 
-  enable_fast_install=no
19498
 
-elif test "$shlibpath_overrides_runpath" = yes ||
19499
 
-     test "$enable_shared" = no; then
19500
 
-  # Fast installation is not necessary
19501
 
-  enable_fast_install=needless
 
26339
+
 
26340
+
 
26341
+
 
26342
+
 
26343
+
 
26344
+
19502
26345
+
19503
26346
+
19504
26347
+
19505
26348
+if test -n "${ZSH_VERSION+set}" ; then
19506
26349
+   setopt NO_GLOB_SUBST
19507
 
 fi
19508
 
 
19509
 
-striplib=
19510
 
-old_striplib=
19511
 
-{ echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5
19512
 
-echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6; }
19513
 
-if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then
19514
 
-  test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
19515
 
-  test -z "$striplib" && striplib="$STRIP --strip-unneeded"
19516
 
-  { echo "$as_me:$LINENO: result: yes" >&5
19517
 
-echo "${ECHO_T}yes" >&6; }
 
26350
+fi
 
26351
+
19518
26352
+{ echo "$as_me:$LINENO: checking for objdir" >&5
19519
26353
+echo $ECHO_N "checking for objdir... $ECHO_C" >&6; }
19520
26354
+if test "${lt_cv_objdir+set}" = set; then
19521
26355
+  echo $ECHO_N "(cached) $ECHO_C" >&6
19522
26356
 else
19523
 
-# FIXME - insert some real tests, host_os isn't really good enough
19524
 
-  case $host_os in
19525
 
-   darwin*)
19526
 
-       if test -n "$STRIP" ; then
19527
 
-         striplib="$STRIP -x"
19528
 
-         old_striplib="$STRIP -S"
19529
 
-         { echo "$as_me:$LINENO: result: yes" >&5
19530
 
-echo "${ECHO_T}yes" >&6; }
19531
 
-       else
19532
 
-  { echo "$as_me:$LINENO: result: no" >&5
19533
 
-echo "${ECHO_T}no" >&6; }
 
26357
-  sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
19534
26358
+  rm -f .libs 2>/dev/null
19535
26359
+mkdir .libs 2>/dev/null
19536
26360
+if test -d .libs; then
19539
26363
+  # MS-DOS does not allow filenames that begin with a dot.
19540
26364
+  lt_cv_objdir=_libs
19541
26365
 fi
19542
 
-       ;;
19543
 
-   *)
19544
 
-  { echo "$as_me:$LINENO: result: no" >&5
19545
 
-echo "${ECHO_T}no" >&6; }
19546
 
-    ;;
19547
 
-  esac
 
26366
-need_lib_prefix=unknown
 
26367
-hardcode_into_libs=no
19548
26368
+rmdir .libs 2>/dev/null
19549
 
 fi
 
26369
+fi
19550
26370
+{ echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5
19551
26371
+echo "${ECHO_T}$lt_cv_objdir" >&6; }
19552
26372
+objdir=$lt_cv_objdir
19553
26373
 
19554
 
-if test "x$enable_dlopen" != xyes; then
19555
 
-  enable_dlopen=unknown
19556
 
-  enable_dlopen_self=unknown
19557
 
-  enable_dlopen_self_static=unknown
19558
 
-else
19559
 
-  lt_cv_dlopen=no
19560
 
-  lt_cv_dlopen_libs=
19561
 
 
19562
 
-  case $host_os in
19563
 
-  beos*)
19564
 
-    lt_cv_dlopen="load_add_on"
19565
 
-    lt_cv_dlopen_libs=
19566
 
-    lt_cv_dlopen_self=yes
19567
 
-    ;;
19568
 
 
19569
 
-  mingw* | pw32*)
19570
 
-    lt_cv_dlopen="LoadLibrary"
19571
 
-    lt_cv_dlopen_libs=
19572
 
-   ;;
19573
 
 
19574
 
-  cygwin*)
19575
 
-    lt_cv_dlopen="dlopen"
19576
 
-    lt_cv_dlopen_libs=
19577
 
-   ;;
19578
 
 
19579
 
-  darwin*)
19580
 
-  # if libdl is installed we need to link against it
19581
 
-    { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
19582
 
-echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; }
19583
 
-if test "${ac_cv_lib_dl_dlopen+set}" = set; then
19584
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
19585
 
-else
19586
 
-  ac_check_lib_save_LIBS=$LIBS
19587
 
-LIBS="-ldl  $LIBS"
19588
 
-cat >conftest.$ac_ext <<_ACEOF
19589
 
-/* confdefs.h.  */
 
26374
-# when you set need_version to no, make sure it does not cause -set_version
 
26375
-# flags to be left without arguments
 
26376
-need_version=unknown
 
26377
 
 
26378
-case $host_os in
 
26379
-aix3*)
 
26380
-  version_type=linux
 
26381
-  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
 
26382
-  shlibpath_var=LIBPATH
 
26383
 
 
26384
-  # AIX 3 has no versioning support, so we append a major version to the name.
 
26385
-  soname_spec='${libname}${release}${shared_ext}$major'
 
26386
-  ;;
 
26387
 
 
26388
-aix[4-9]*)
 
26389
-  version_type=linux
 
26390
-  need_lib_prefix=no
 
26391
-  need_version=no
 
26392
-  hardcode_into_libs=yes
 
26393
-  if test "$host_cpu" = ia64; then
 
26394
-    # AIX 5 supports IA64
 
26395
-    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
 
26396
-    shlibpath_var=LD_LIBRARY_PATH
 
26397
-  else
 
26398
-    # With GCC up to 2.95.x, collect2 would create an import file
 
26399
-    # for dependence libraries.  The import file would start with
 
26400
-    # the line `#! .'.  This would cause the generated library to
 
26401
-    # depend on `.', always an invalid library.  This was fixed in
 
26402
-    # development snapshots of GCC prior to 3.0.
 
26403
-    case $host_os in
 
26404
-      aix4 | aix4.[01] | aix4.[01].*)
 
26405
-      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
 
26406
-          echo ' yes '
 
26407
-          echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then
 
26408
-       :
 
26409
-      else
 
26410
-       can_build_shared=no
 
26411
-      fi
 
26412
-      ;;
 
26413
-    esac
 
26414
-    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
 
26415
-    # soname into executable. Probably we can add versioning support to
 
26416
-    # collect2, so additional links can be useful in future.
 
26417
-    if test "$aix_use_runtimelinking" = yes; then
 
26418
-      # If using run time linking (on AIX 4.2 or later) use lib<name>.so
 
26419
-      # instead of lib<name>.a to let people know that these are not
 
26420
-      # typical AIX shared libraries.
 
26421
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
26422
-    else
 
26423
-      # We preserve .a as extension for shared libraries through AIX4.2
 
26424
-      # and later when we are not doing run time linking.
 
26425
-      library_names_spec='${libname}${release}.a $libname.a'
 
26426
-      soname_spec='${libname}${release}${shared_ext}$major'
 
26427
-    fi
 
26428
-    shlibpath_var=LIBPATH
 
26429
-  fi
 
26430
-  ;;
 
26431
 
 
26432
-amigaos*)
 
26433
-  library_names_spec='$libname.ixlibrary $libname.a'
 
26434
-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
 
26435
-  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
 
26436
-  ;;
19590
26437
+cat >>confdefs.h <<_ACEOF
19591
26438
+#define LT_OBJDIR "$lt_cv_objdir/"
19592
 
 _ACEOF
19593
 
-cat confdefs.h >>conftest.$ac_ext
19594
 
-cat >>conftest.$ac_ext <<_ACEOF
19595
 
-/* end confdefs.h.  */
19596
 
 
19597
 
-/* Override any GCC internal prototype to avoid an error.
19598
 
-   Use char because int might match the return type of a GCC
19599
 
-   builtin and then its argument prototype would still apply.  */
19600
 
-#ifdef __cplusplus
19601
 
-extern "C"
19602
 
-#endif
19603
 
-char dlopen ();
19604
 
-int
19605
 
-main ()
19606
 
-{
19607
 
-return dlopen ();
19608
 
-  ;
19609
 
-  return 0;
19610
 
-}
19611
 
-_ACEOF
19612
 
-rm -f conftest.$ac_objext conftest$ac_exeext
19613
 
-if { (ac_try="$ac_link"
19614
 
-case "(($ac_try" in
19615
 
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
19616
 
-  *) ac_try_echo=$ac_try;;
19617
 
-esac
19618
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
19619
 
-  (eval "$ac_link") 2>conftest.er1
19620
 
-  ac_status=$?
19621
 
-  grep -v '^ *+' conftest.er1 >conftest.err
19622
 
-  rm -f conftest.er1
19623
 
-  cat conftest.err >&5
19624
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19625
 
-  (exit $ac_status); } && {
19626
 
-        test -z "$ac_c_werror_flag" ||
19627
 
-        test ! -s conftest.err
19628
 
-       } && test -s conftest$ac_exeext &&
19629
 
-       $as_test_x conftest$ac_exeext; then
19630
 
-  ac_cv_lib_dl_dlopen=yes
19631
 
-else
19632
 
-  echo "$as_me: failed program was:" >&5
19633
 
-sed 's/^/| /' conftest.$ac_ext >&5
19634
 
 
19635
 
-       ac_cv_lib_dl_dlopen=no
19636
 
-fi
19637
 
 
19638
 
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
19639
 
-      conftest$ac_exeext conftest.$ac_ext
19640
 
-LIBS=$ac_check_lib_save_LIBS
19641
 
-fi
19642
 
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
19643
 
-echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; }
19644
 
-if test $ac_cv_lib_dl_dlopen = yes; then
19645
 
-  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
19646
 
-else
19647
 
 
19648
 
-    lt_cv_dlopen="dyld"
19649
 
-    lt_cv_dlopen_libs=
19650
 
-    lt_cv_dlopen_self=yes
19651
 
 
19652
 
-fi
19653
 
 
19654
 
-   ;;
19655
 
 
19656
 
-  *)
19657
 
-    { echo "$as_me:$LINENO: checking for shl_load" >&5
19658
 
-echo $ECHO_N "checking for shl_load... $ECHO_C" >&6; }
19659
 
-if test "${ac_cv_func_shl_load+set}" = set; then
19660
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
19661
 
-else
19662
 
-  cat >conftest.$ac_ext <<_ACEOF
19663
 
-/* confdefs.h.  */
19664
 
-_ACEOF
19665
 
-cat confdefs.h >>conftest.$ac_ext
19666
 
-cat >>conftest.$ac_ext <<_ACEOF
19667
 
-/* end confdefs.h.  */
19668
 
-/* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load.
19669
 
-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
19670
 
-#define shl_load innocuous_shl_load
19671
 
 
19672
 
-/* System header to define __stub macros and hopefully few prototypes,
19673
 
-    which can conflict with char shl_load (); below.
19674
 
-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
19675
 
-    <limits.h> exists even on freestanding compilers.  */
19676
 
 
19677
 
-#ifdef __STDC__
19678
 
-# include <limits.h>
19679
 
-#else
19680
 
-# include <assert.h>
19681
 
-#endif
19682
 
 
19683
 
-#undef shl_load
19684
 
 
19685
 
-/* Override any GCC internal prototype to avoid an error.
19686
 
-   Use char because int might match the return type of a GCC
19687
 
-   builtin and then its argument prototype would still apply.  */
19688
 
-#ifdef __cplusplus
19689
 
-extern "C"
19690
 
-#endif
19691
 
-char shl_load ();
19692
 
-/* The GNU C library defines this for functions which it implements
19693
 
-    to always fail with ENOSYS.  Some functions are actually named
19694
 
-    something starting with __ and the normal name is an alias.  */
19695
 
-#if defined __stub_shl_load || defined __stub___shl_load
19696
 
-choke me
19697
 
-#endif
19698
 
 
19699
 
-int
19700
 
-main ()
19701
 
-{
19702
 
-return shl_load ();
19703
 
-  ;
19704
 
-  return 0;
19705
 
-}
19706
 
-_ACEOF
19707
 
-rm -f conftest.$ac_objext conftest$ac_exeext
19708
 
-if { (ac_try="$ac_link"
19709
 
-case "(($ac_try" in
19710
 
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
19711
 
-  *) ac_try_echo=$ac_try;;
19712
 
-esac
19713
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
19714
 
-  (eval "$ac_link") 2>conftest.er1
19715
 
-  ac_status=$?
19716
 
-  grep -v '^ *+' conftest.er1 >conftest.err
19717
 
-  rm -f conftest.er1
19718
 
-  cat conftest.err >&5
19719
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19720
 
-  (exit $ac_status); } && {
19721
 
-        test -z "$ac_c_werror_flag" ||
19722
 
-        test ! -s conftest.err
19723
 
-       } && test -s conftest$ac_exeext &&
19724
 
-       $as_test_x conftest$ac_exeext; then
19725
 
-  ac_cv_func_shl_load=yes
19726
 
-else
19727
 
-  echo "$as_me: failed program was:" >&5
19728
 
-sed 's/^/| /' conftest.$ac_ext >&5
19729
 
 
19730
 
-       ac_cv_func_shl_load=no
19731
 
-fi
19732
 
 
19733
 
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
19734
 
-      conftest$ac_exeext conftest.$ac_ext
19735
 
-fi
19736
 
-{ echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
19737
 
-echo "${ECHO_T}$ac_cv_func_shl_load" >&6; }
19738
 
-if test $ac_cv_func_shl_load = yes; then
19739
 
-  lt_cv_dlopen="shl_load"
19740
 
-else
19741
 
-  { echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5
19742
 
-echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6; }
19743
 
-if test "${ac_cv_lib_dld_shl_load+set}" = set; then
19744
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
19745
 
-else
19746
 
-  ac_check_lib_save_LIBS=$LIBS
19747
 
-LIBS="-ldld  $LIBS"
19748
 
-cat >conftest.$ac_ext <<_ACEOF
19749
 
-/* confdefs.h.  */
19750
 
-_ACEOF
19751
 
-cat confdefs.h >>conftest.$ac_ext
19752
 
-cat >>conftest.$ac_ext <<_ACEOF
19753
 
-/* end confdefs.h.  */
19754
 
 
19755
 
-/* Override any GCC internal prototype to avoid an error.
19756
 
-   Use char because int might match the return type of a GCC
19757
 
-   builtin and then its argument prototype would still apply.  */
19758
 
-#ifdef __cplusplus
19759
 
-extern "C"
19760
 
-#endif
19761
 
-char shl_load ();
19762
 
-int
19763
 
-main ()
19764
 
-{
19765
 
-return shl_load ();
19766
 
-  ;
19767
 
-  return 0;
19768
 
-}
19769
 
-_ACEOF
19770
 
-rm -f conftest.$ac_objext conftest$ac_exeext
19771
 
-if { (ac_try="$ac_link"
19772
 
-case "(($ac_try" in
19773
 
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
19774
 
-  *) ac_try_echo=$ac_try;;
19775
 
+
 
26439
+_ACEOF
 
26440
 
 
26441
-beos*)
 
26442
-  library_names_spec='${libname}${shared_ext}'
 
26443
-  dynamic_linker="$host_os ld.so"
 
26444
-  shlibpath_var=LIBRARY_PATH
 
26445
-  ;;
 
26446
 
 
26447
-bsdi[45]*)
 
26448
-  version_type=linux
 
26449
-  need_version=no
 
26450
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
26451
-  soname_spec='${libname}${release}${shared_ext}$major'
 
26452
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
 
26453
-  shlibpath_var=LD_LIBRARY_PATH
 
26454
-  sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
 
26455
-  sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
 
26456
-  # the default ld.so.conf also contains /usr/contrib/lib and
 
26457
-  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
 
26458
-  # libtool to hard-code these into programs
 
26459
-  ;;
 
26460
 
 
26461
-cygwin* | mingw* | pw32*)
 
26462
-  version_type=windows
 
26463
-  shrext_cmds=".dll"
 
26464
-  need_version=no
 
26465
-  need_lib_prefix=no
 
26466
 
 
26467
-  case $GCC,$host_os in
 
26468
-  yes,cygwin* | yes,mingw* | yes,pw32*)
 
26469
-    library_names_spec='$libname.dll.a'
 
26470
-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
 
26471
-    postinstall_cmds='base_file=`basename \${file}`~
 
26472
-      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
 
26473
-      dldir=$destdir/`dirname \$dlpath`~
 
26474
-      test -d \$dldir || mkdir -p \$dldir~
 
26475
-      $install_prog $dir/$dlname \$dldir/$dlname~
 
26476
-      chmod a+x \$dldir/$dlname'
 
26477
-    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
 
26478
-      dlpath=$dir/\$dldll~
 
26479
-       $rm \$dlpath'
 
26480
-    shlibpath_overrides_runpath=yes
 
26481
 
 
26482
-    case $host_os in
 
26483
-    cygwin*)
 
26484
-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
 
26485
-      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
 
26486
-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
 
26487
-      ;;
 
26488
-    mingw*)
 
26489
-      # MinGW DLLs use traditional 'lib' prefix
 
26490
-      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
 
26491
-      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
 
26492
-      if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then
 
26493
-        # It is most probably a Windows format PATH printed by
 
26494
-        # mingw gcc, but we are running on Cygwin. Gcc prints its search
 
26495
-        # path with ; separators, and with drive letters. We can handle the
 
26496
-        # drive letters (cygwin fileutils understands them), so leave them,
 
26497
-        # especially as we might pass files found there to a mingw objdump,
 
26498
-        # which wouldn't understand a cygwinified path. Ahh.
 
26499
-        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
 
26500
-      else
 
26501
-        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
 
26502
-      fi
 
26503
-      ;;
 
26504
-    pw32*)
 
26505
-      # pw32 DLLs use 'pw' prefix rather than 'lib'
 
26506
-      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
 
26507
-      ;;
 
26508
-    esac
 
26509
-    ;;
 
26510
 
 
26511
-  *)
 
26512
-    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
 
26513
-    ;;
 
26514
-  esac
 
26515
-  dynamic_linker='Win32 ld.exe'
 
26516
-  # FIXME: first we should search . and the directory the executable is in
 
26517
-  shlibpath_var=PATH
 
26518
-  ;;
 
26519
 
 
26520
-darwin* | rhapsody*)
 
26521
-  dynamic_linker="$host_os dyld"
 
26522
-  version_type=darwin
 
26523
-  need_lib_prefix=no
 
26524
-  need_version=no
 
26525
-  library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext'
 
26526
-  soname_spec='${libname}${release}${major}$shared_ext'
 
26527
-  shlibpath_overrides_runpath=yes
 
26528
-  shlibpath_var=DYLD_LIBRARY_PATH
 
26529
-  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
 
26530
 
 
26531
-  sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"
 
26532
-  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
 
26533
-  ;;
 
26534
 
 
26535
-dgux*)
 
26536
-  version_type=linux
 
26537
-  need_lib_prefix=no
 
26538
-  need_version=no
 
26539
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
 
26540
-  soname_spec='${libname}${release}${shared_ext}$major'
 
26541
-  shlibpath_var=LD_LIBRARY_PATH
 
26542
-  ;;
 
26543
 
 
26544
-freebsd1*)
 
26545
-  dynamic_linker=no
 
26546
-  ;;
 
26547
 
 
26548
-freebsd* | dragonfly*)
 
26549
-  # DragonFly does not have aout.  When/if they implement a new
 
26550
-  # versioning mechanism, adjust this.
 
26551
-  if test -x /usr/bin/objformat; then
 
26552
-    objformat=`/usr/bin/objformat`
 
26553
-  else
 
26554
-    case $host_os in
 
26555
-    freebsd[123]*) objformat=aout ;;
 
26556
-    *) objformat=elf ;;
 
26557
-    esac
 
26558
-  fi
 
26559
-  version_type=freebsd-$objformat
 
26560
-  case $version_type in
 
26561
-    freebsd-elf*)
 
26562
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
 
26563
-      need_version=no
 
26564
-      need_lib_prefix=no
 
26565
-      ;;
 
26566
-    freebsd-*)
 
26567
-      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
 
26568
-      need_version=yes
 
26569
-      ;;
 
26570
-  esac
 
26571
-  shlibpath_var=LD_LIBRARY_PATH
 
26572
-  case $host_os in
 
26573
-  freebsd2*)
 
26574
-    shlibpath_overrides_runpath=yes
 
26575
-    ;;
 
26576
-  freebsd3.[01]* | freebsdelf3.[01]*)
 
26577
-    shlibpath_overrides_runpath=yes
 
26578
-    hardcode_into_libs=yes
 
26579
-    ;;
 
26580
-  freebsd3.[2-9]* | freebsdelf3.[2-9]* | \
 
26581
-  freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1)
 
26582
-    shlibpath_overrides_runpath=no
 
26583
-    hardcode_into_libs=yes
 
26584
-    ;;
 
26585
-  *) # from 4.6 on, and DragonFly
 
26586
-    shlibpath_overrides_runpath=yes
 
26587
-    hardcode_into_libs=yes
 
26588
-    ;;
 
26589
-  esac
 
26590
-  ;;
 
26591
 
 
26592
-gnu*)
 
26593
-  version_type=linux
 
26594
-  need_lib_prefix=no
 
26595
-  need_version=no
 
26596
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
 
26597
-  soname_spec='${libname}${release}${shared_ext}$major'
 
26598
-  shlibpath_var=LD_LIBRARY_PATH
 
26599
-  hardcode_into_libs=yes
 
26600
-  ;;
 
26601
 
 
26602
-hpux9* | hpux10* | hpux11*)
 
26603
-  # Give a soname corresponding to the major version so that dld.sl refuses to
 
26604
-  # link against other versions.
 
26605
-  version_type=sunos
 
26606
-  need_lib_prefix=no
 
26607
-  need_version=no
 
26608
-  case $host_cpu in
 
26609
-  ia64*)
 
26610
-    shrext_cmds='.so'
 
26611
-    hardcode_into_libs=yes
 
26612
-    dynamic_linker="$host_os dld.so"
 
26613
-    shlibpath_var=LD_LIBRARY_PATH
 
26614
-    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
 
26615
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
26616
-    soname_spec='${libname}${release}${shared_ext}$major'
 
26617
-    if test "X$HPUX_IA64_MODE" = X32; then
 
26618
-      sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
 
26619
-    else
 
26620
-      sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
 
26621
-    fi
 
26622
-    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
 
26623
-    ;;
 
26624
-   hppa*64*)
 
26625
-     shrext_cmds='.sl'
 
26626
-     hardcode_into_libs=yes
 
26627
-     dynamic_linker="$host_os dld.sl"
 
26628
-     shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
 
26629
-     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
 
26630
-     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
26631
-     soname_spec='${libname}${release}${shared_ext}$major'
 
26632
-     sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
 
26633
-     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
 
26634
-     ;;
 
26635
-   *)
 
26636
-    shrext_cmds='.sl'
 
26637
-    dynamic_linker="$host_os dld.sl"
 
26638
-    shlibpath_var=SHLIB_PATH
 
26639
-    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
 
26640
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
26641
-    soname_spec='${libname}${release}${shared_ext}$major'
 
26642
-    ;;
 
26643
-  esac
 
26644
-  # HP-UX runs *really* slowly unless shared libraries are mode 555.
 
26645
-  postinstall_cmds='chmod 555 $lib'
 
26646
-  ;;
 
26647
 
 
26648
-interix[3-9]*)
 
26649
-  version_type=linux
 
26650
-  need_lib_prefix=no
 
26651
-  need_version=no
 
26652
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
26653
-  soname_spec='${libname}${release}${shared_ext}$major'
 
26654
-  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
 
26655
-  shlibpath_var=LD_LIBRARY_PATH
 
26656
-  shlibpath_overrides_runpath=no
 
26657
-  hardcode_into_libs=yes
 
26658
-  ;;
 
26659
 
 
26660
-irix5* | irix6* | nonstopux*)
 
26661
-  case $host_os in
 
26662
-    nonstopux*) version_type=nonstopux ;;
 
26663
-    *)
 
26664
-       if test "$lt_cv_prog_gnu_ld" = yes; then
 
26665
-               version_type=linux
 
26666
-       else
 
26667
-               version_type=irix
 
26668
-       fi ;;
 
26669
-  esac
 
26670
-  need_lib_prefix=no
 
26671
-  need_version=no
 
26672
-  soname_spec='${libname}${release}${shared_ext}$major'
 
26673
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
 
26674
-  case $host_os in
 
26675
-  irix5* | nonstopux*)
 
26676
-    libsuff= shlibsuff=
 
26677
-    ;;
 
26678
-  *)
 
26679
-    case $LD in # libtool.m4 will add one of these switches to LD
 
26680
-    *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
 
26681
-      libsuff= shlibsuff= libmagic=32-bit;;
 
26682
-    *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
 
26683
-      libsuff=32 shlibsuff=N32 libmagic=N32;;
 
26684
-    *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
 
26685
-      libsuff=64 shlibsuff=64 libmagic=64-bit;;
 
26686
-    *) libsuff= shlibsuff= libmagic=never-match;;
 
26687
-    esac
 
26688
-    ;;
 
26689
-  esac
 
26690
-  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
 
26691
-  shlibpath_overrides_runpath=no
 
26692
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
 
26693
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
 
26694
-  hardcode_into_libs=yes
 
26695
-  ;;
 
26696
 
 
26697
-# No shared lib support for Linux oldld, aout, or coff.
 
26698
-linux*oldld* | linux*aout* | linux*coff*)
 
26699
-  dynamic_linker=no
19776
26700
+
19777
26701
+case $host_os in
19778
26702
+aix3*)
19783
26707
+    COLLECT_NAMES=
19784
26708
+    export COLLECT_NAMES
19785
26709
+  fi
19786
 
+  ;;
19787
 
 esac
19788
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
19789
 
-  (eval "$ac_link") 2>conftest.er1
19790
 
-  ac_status=$?
19791
 
-  grep -v '^ *+' conftest.er1 >conftest.err
19792
 
-  rm -f conftest.er1
19793
 
-  cat conftest.err >&5
19794
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19795
 
-  (exit $ac_status); } && {
19796
 
-        test -z "$ac_c_werror_flag" ||
19797
 
-        test ! -s conftest.err
19798
 
-       } && test -s conftest$ac_exeext &&
19799
 
-       $as_test_x conftest$ac_exeext; then
19800
 
-  ac_cv_lib_dld_shl_load=yes
19801
 
-else
19802
 
-  echo "$as_me: failed program was:" >&5
19803
 
-sed 's/^/| /' conftest.$ac_ext >&5
 
26710
   ;;
 
26711
+esac
19804
26712
 
19805
 
-       ac_cv_lib_dld_shl_load=no
19806
 
-fi
 
26713
-# This must be Linux ELF.
 
26714
-linux* | k*bsd*-gnu)
 
26715
-  version_type=linux
 
26716
-  need_lib_prefix=no
 
26717
-  need_version=no
 
26718
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
26719
-  soname_spec='${libname}${release}${shared_ext}$major'
 
26720
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
 
26721
-  shlibpath_var=LD_LIBRARY_PATH
 
26722
-  shlibpath_overrides_runpath=no
 
26723
-  # This implies no fast_install, which is unacceptable.
 
26724
-  # Some rework will be needed to allow for fast_install
 
26725
-  # before this can be enabled.
 
26726
-  hardcode_into_libs=yes
 
26727
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
 
26728
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
19807
26729
+# Sed substitution that helps us do robust quoting.  It backslashifies
19808
26730
+# metacharacters that are still active within double-quoted strings.
19809
26731
+sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
19810
26732
 
19811
 
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
19812
 
-      conftest$ac_exeext conftest.$ac_ext
19813
 
-LIBS=$ac_check_lib_save_LIBS
19814
 
-fi
19815
 
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5
19816
 
-echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6; }
19817
 
-if test $ac_cv_lib_dld_shl_load = yes; then
19818
 
-  lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"
19819
 
-else
19820
 
-  { echo "$as_me:$LINENO: checking for dlopen" >&5
19821
 
-echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; }
19822
 
-if test "${ac_cv_func_dlopen+set}" = set; then
19823
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
19824
 
-else
19825
 
-  cat >conftest.$ac_ext <<_ACEOF
19826
 
-/* confdefs.h.  */
19827
 
-_ACEOF
19828
 
-cat confdefs.h >>conftest.$ac_ext
19829
 
-cat >>conftest.$ac_ext <<_ACEOF
19830
 
-/* end confdefs.h.  */
19831
 
-/* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
19832
 
-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
19833
 
-#define dlopen innocuous_dlopen
 
26733
-  # Append ld.so.conf contents to the search path
 
26734
-  if test -f /etc/ld.so.conf; then
 
26735
-    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[     ]*hwcap[        ]/d;s/[:,       ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
 
26736
-    sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra"
 
26737
-  fi
19834
26738
+# Same as above, but do not quote variable references.
19835
26739
+double_quote_subst='s/\(["`\\]\)/\\\1/g'
19836
26740
 
19837
 
-/* System header to define __stub macros and hopefully few prototypes,
19838
 
-    which can conflict with char dlopen (); below.
19839
 
-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
19840
 
-    <limits.h> exists even on freestanding compilers.  */
 
26741
-  # We used to test for /lib/ld.so.1 and disable shared libraries on
 
26742
-  # powerpc, because MkLinux only supported shared libraries with the
 
26743
-  # GNU dynamic linker.  Since this was broken with cross compilers,
 
26744
-  # most powerpc-linux boxes support dynamic linking these days and
 
26745
-  # people can always --disable-shared, the test was removed, and we
 
26746
-  # assume the GNU/Linux dynamic linker is in use.
 
26747
-  dynamic_linker='GNU/Linux ld.so'
 
26748
-  ;;
19841
26749
+# Sed substitution to delay expansion of an escaped shell variable in a
19842
26750
+# double_quote_subst'ed string.
19843
26751
+delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
19844
26752
 
19845
 
-#ifdef __STDC__
19846
 
-# include <limits.h>
19847
 
-#else
19848
 
-# include <assert.h>
19849
 
-#endif
 
26753
-netbsd*)
 
26754
-  version_type=sunos
 
26755
-  need_lib_prefix=no
 
26756
-  need_version=no
 
26757
-  if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
 
26758
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
26759
-    finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
 
26760
-    dynamic_linker='NetBSD (a.out) ld.so'
 
26761
-  else
 
26762
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
26763
-    soname_spec='${libname}${release}${shared_ext}$major'
 
26764
-    dynamic_linker='NetBSD ld.elf_so'
 
26765
-  fi
 
26766
-  shlibpath_var=LD_LIBRARY_PATH
 
26767
-  shlibpath_overrides_runpath=yes
 
26768
-  hardcode_into_libs=yes
 
26769
-  ;;
19850
26770
+# Sed substitution to delay expansion of an escaped single quote.
19851
26771
+delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g'
19852
26772
 
19853
 
-#undef dlopen
 
26773
-newsos6)
 
26774
-  version_type=linux
 
26775
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
26776
-  shlibpath_var=LD_LIBRARY_PATH
 
26777
-  shlibpath_overrides_runpath=yes
 
26778
-  ;;
19854
26779
+# Sed substitution to avoid accidental globbing in evaled expressions
19855
26780
+no_glob_subst='s/\*/\\\*/g'
19856
26781
 
19857
 
-/* Override any GCC internal prototype to avoid an error.
19858
 
-   Use char because int might match the return type of a GCC
19859
 
-   builtin and then its argument prototype would still apply.  */
19860
 
-#ifdef __cplusplus
19861
 
-extern "C"
19862
 
-#endif
19863
 
-char dlopen ();
19864
 
-/* The GNU C library defines this for functions which it implements
19865
 
-    to always fail with ENOSYS.  Some functions are actually named
19866
 
-    something starting with __ and the normal name is an alias.  */
19867
 
-#if defined __stub_dlopen || defined __stub___dlopen
19868
 
-choke me
19869
 
-#endif
 
26782
-nto-qnx*)
 
26783
-  version_type=linux
 
26784
-  need_lib_prefix=no
 
26785
-  need_version=no
 
26786
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
26787
-  soname_spec='${libname}${release}${shared_ext}$major'
 
26788
-  shlibpath_var=LD_LIBRARY_PATH
 
26789
-  shlibpath_overrides_runpath=yes
 
26790
-  ;;
19870
26791
+# Global variables:
19871
26792
+ofile=libtool
19872
26793
+can_build_shared=yes
19873
26794
 
19874
 
-int
19875
 
-main ()
19876
 
-{
19877
 
-return dlopen ();
19878
 
-  ;
19879
 
-  return 0;
19880
 
-}
19881
 
-_ACEOF
19882
 
-rm -f conftest.$ac_objext conftest$ac_exeext
19883
 
-if { (ac_try="$ac_link"
19884
 
-case "(($ac_try" in
19885
 
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
19886
 
-  *) ac_try_echo=$ac_try;;
19887
 
-esac
19888
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
19889
 
-  (eval "$ac_link") 2>conftest.er1
19890
 
-  ac_status=$?
19891
 
-  grep -v '^ *+' conftest.er1 >conftest.err
19892
 
-  rm -f conftest.er1
19893
 
-  cat conftest.err >&5
19894
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
19895
 
-  (exit $ac_status); } && {
19896
 
-        test -z "$ac_c_werror_flag" ||
19897
 
-        test ! -s conftest.err
19898
 
-       } && test -s conftest$ac_exeext &&
19899
 
-       $as_test_x conftest$ac_exeext; then
19900
 
-  ac_cv_func_dlopen=yes
19901
 
-else
19902
 
-  echo "$as_me: failed program was:" >&5
19903
 
-sed 's/^/| /' conftest.$ac_ext >&5
 
26795
-openbsd*)
 
26796
-  version_type=sunos
 
26797
-  sys_lib_dlsearch_path_spec="/usr/lib"
 
26798
-  need_lib_prefix=no
 
26799
-  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
 
26800
-  case $host_os in
 
26801
-    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
 
26802
-    *)                         need_version=no  ;;
19904
26803
+# All known linkers require a `.a' archive for static linking (except MSVC,
19905
26804
+# which needs '.lib').
19906
26805
+libext=a
19907
 
 
19908
 
-       ac_cv_func_dlopen=no
19909
 
-fi
 
26806
+
19910
26807
+with_gnu_ld="$lt_cv_prog_gnu_ld"
19911
 
 
19912
 
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
19913
 
-      conftest$ac_exeext conftest.$ac_ext
19914
 
-fi
19915
 
-{ echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
19916
 
-echo "${ECHO_T}$ac_cv_func_dlopen" >&6; }
19917
 
-if test $ac_cv_func_dlopen = yes; then
19918
 
-  lt_cv_dlopen="dlopen"
19919
 
-else
19920
 
-  { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
19921
 
-echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; }
19922
 
-if test "${ac_cv_lib_dl_dlopen+set}" = set; then
 
26808
+
19923
26809
+old_CC="$CC"
19924
26810
+old_CFLAGS="$CFLAGS"
19925
26811
+
19936
26822
+    distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
19937
26823
+    \-*) ;;
19938
26824
+    *) break;;
19939
 
+  esac
 
26825
   esac
 
26826
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
26827
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
 
26828
-  shlibpath_var=LD_LIBRARY_PATH
 
26829
-  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
 
26830
-    case $host_os in
 
26831
-      openbsd2.[89] | openbsd2.[89].*)
 
26832
-       shlibpath_overrides_runpath=no
 
26833
-       ;;
 
26834
-      *)
 
26835
-       shlibpath_overrides_runpath=yes
 
26836
-       ;;
 
26837
-      esac
 
26838
-  else
 
26839
-    shlibpath_overrides_runpath=yes
 
26840
-  fi
 
26841
-  ;;
19940
26842
+done
19941
26843
+cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
19942
 
+
19943
 
+
 
26844
 
 
26845
-os2*)
 
26846
-  libname_spec='$name'
 
26847
-  shrext_cmds=".dll"
 
26848
-  need_lib_prefix=no
 
26849
-  library_names_spec='$libname${shared_ext} $libname.a'
 
26850
-  dynamic_linker='OS/2 ld.exe'
 
26851
-  shlibpath_var=LIBPATH
 
26852
-  ;;
 
26853
 
 
26854
-osf3* | osf4* | osf5*)
 
26855
-  version_type=osf
 
26856
-  need_lib_prefix=no
 
26857
-  need_version=no
 
26858
-  soname_spec='${libname}${release}${shared_ext}$major'
 
26859
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
26860
-  shlibpath_var=LD_LIBRARY_PATH
 
26861
-  sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
 
26862
-  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
19944
26863
+# Only perform the check for file, if the check method requires it
19945
26864
+test -z "$MAGIC_CMD" && MAGIC_CMD=file
19946
26865
+case $deplibs_check_method in
19949
26868
+    { echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5
19950
26869
+echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6; }
19951
26870
+if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
19952
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
19953
 
 else
19954
 
-  ac_check_lib_save_LIBS=$LIBS
19955
 
-LIBS="-ldl  $LIBS"
19956
 
-cat >conftest.$ac_ext <<_ACEOF
19957
 
-/* confdefs.h.  */
19958
 
-_ACEOF
19959
 
-cat confdefs.h >>conftest.$ac_ext
19960
 
-cat >>conftest.$ac_ext <<_ACEOF
19961
 
-/* end confdefs.h.  */
 
26871
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
26872
+else
19962
26873
+  case $MAGIC_CMD in
19963
26874
+[\\/*] |  ?:[\\/]*)
19964
26875
+  lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
19965
 
+  ;;
 
26876
   ;;
19966
26877
+*)
19967
26878
+  lt_save_MAGIC_CMD="$MAGIC_CMD"
19968
26879
+  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
19983
26894
+         else
19984
26895
+           cat <<_LT_EOF 1>&2
19985
26896
 
19986
 
-/* Override any GCC internal prototype to avoid an error.
19987
 
-   Use char because int might match the return type of a GCC
19988
 
-   builtin and then its argument prototype would still apply.  */
19989
 
-#ifdef __cplusplus
19990
 
-extern "C"
19991
 
-#endif
19992
 
-char dlopen ();
19993
 
-int
19994
 
-main ()
19995
 
-{
19996
 
-return dlopen ();
19997
 
-  ;
19998
 
-  return 0;
19999
 
-}
20000
 
-_ACEOF
20001
 
-rm -f conftest.$ac_objext conftest$ac_exeext
20002
 
-if { (ac_try="$ac_link"
20003
 
-case "(($ac_try" in
20004
 
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
20005
 
-  *) ac_try_echo=$ac_try;;
20006
 
-esac
20007
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
20008
 
-  (eval "$ac_link") 2>conftest.er1
20009
 
-  ac_status=$?
20010
 
-  grep -v '^ *+' conftest.er1 >conftest.err
20011
 
-  rm -f conftest.er1
20012
 
-  cat conftest.err >&5
20013
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
20014
 
-  (exit $ac_status); } && {
20015
 
-        test -z "$ac_c_werror_flag" ||
20016
 
-        test ! -s conftest.err
20017
 
-       } && test -s conftest$ac_exeext &&
20018
 
-       $as_test_x conftest$ac_exeext; then
20019
 
-  ac_cv_lib_dl_dlopen=yes
20020
 
-else
20021
 
-  echo "$as_me: failed program was:" >&5
20022
 
-sed 's/^/| /' conftest.$ac_ext >&5
 
26897
-rdos*)
 
26898
-  dynamic_linker=no
 
26899
-  ;;
20023
26900
+*** Warning: the command libtool uses to detect shared libraries,
20024
26901
+*** $file_magic_cmd, produces output that libtool cannot recognize.
20025
26902
+*** The result is that libtool may fail to recognize shared libraries
20029
26906
+*** may want to report the problem to your system manager and/or to
20030
26907
+*** bug-libtool@gnu.org
20031
26908
 
20032
 
-       ac_cv_lib_dl_dlopen=no
 
26909
-solaris*)
 
26910
-  version_type=linux
 
26911
-  need_lib_prefix=no
 
26912
-  need_version=no
 
26913
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
26914
-  soname_spec='${libname}${release}${shared_ext}$major'
 
26915
-  shlibpath_var=LD_LIBRARY_PATH
 
26916
-  shlibpath_overrides_runpath=yes
 
26917
-  hardcode_into_libs=yes
 
26918
-  # ldd complains unless libraries are executable
 
26919
-  postinstall_cmds='chmod +x $lib'
20033
26920
+_LT_EOF
20034
26921
+         fi ;;
20035
26922
+       esac
20039
26926
+  done
20040
26927
+  IFS="$lt_save_ifs"
20041
26928
+  MAGIC_CMD="$lt_save_MAGIC_CMD"
20042
 
+  ;;
 
26929
   ;;
20043
26930
+esac
20044
 
 fi
 
26931
+fi
20045
26932
 
20046
 
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
20047
 
-      conftest$ac_exeext conftest.$ac_ext
20048
 
-LIBS=$ac_check_lib_save_LIBS
20049
 
-fi
20050
 
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
20051
 
-echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; }
20052
 
-if test $ac_cv_lib_dl_dlopen = yes; then
20053
 
-  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
 
26933
-sunos4*)
 
26934
-  version_type=sunos
 
26935
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
26936
-  finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
 
26937
-  shlibpath_var=LD_LIBRARY_PATH
 
26938
-  shlibpath_overrides_runpath=yes
 
26939
-  if test "$with_gnu_ld" = yes; then
 
26940
-    need_lib_prefix=no
 
26941
-  fi
 
26942
-  need_version=yes
 
26943
-  ;;
20054
26944
+MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
20055
26945
+if test -n "$MAGIC_CMD"; then
20056
26946
+  { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
20057
26947
+echo "${ECHO_T}$MAGIC_CMD" >&6; }
20058
 
 else
20059
 
-  { echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5
20060
 
-echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6; }
20061
 
-if test "${ac_cv_lib_svld_dlopen+set}" = set; then
 
26948
+else
20062
26949
+  { echo "$as_me:$LINENO: result: no" >&5
20063
26950
+echo "${ECHO_T}no" >&6; }
20064
26951
+fi
20065
 
+
20066
 
+
20067
 
+
20068
 
+
20069
 
+
 
26952
 
 
26953
-sysv4 | sysv4.3*)
 
26954
-  version_type=linux
 
26955
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
26956
-  soname_spec='${libname}${release}${shared_ext}$major'
 
26957
-  shlibpath_var=LD_LIBRARY_PATH
 
26958
-  case $host_vendor in
 
26959
-    sni)
 
26960
-      shlibpath_overrides_runpath=no
 
26961
-      need_lib_prefix=no
 
26962
-      export_dynamic_flag_spec='${wl}-Blargedynsym'
 
26963
-      runpath_var=LD_RUN_PATH
 
26964
-      ;;
 
26965
-    siemens)
 
26966
-      need_lib_prefix=no
 
26967
-      ;;
 
26968
-    motorola)
 
26969
-      need_lib_prefix=no
 
26970
-      need_version=no
 
26971
-      shlibpath_overrides_runpath=no
 
26972
-      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
 
26973
-      ;;
 
26974
-  esac
 
26975
-  ;;
 
26976
 
 
26977
-sysv4*MP*)
 
26978
-  if test -d /usr/nec ;then
 
26979
-    version_type=linux
 
26980
-    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
 
26981
-    soname_spec='$libname${shared_ext}.$major'
 
26982
-    shlibpath_var=LD_LIBRARY_PATH
 
26983
-  fi
 
26984
-  ;;
 
26985
 
 
26986
-sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
 
26987
-  version_type=freebsd-elf
 
26988
-  need_lib_prefix=no
 
26989
-  need_version=no
 
26990
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
 
26991
-  soname_spec='${libname}${release}${shared_ext}$major'
 
26992
-  shlibpath_var=LD_LIBRARY_PATH
 
26993
-  hardcode_into_libs=yes
 
26994
-  if test "$with_gnu_ld" = yes; then
 
26995
-    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
 
26996
-    shlibpath_overrides_runpath=no
 
26997
-  else
 
26998
-    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
 
26999
-    shlibpath_overrides_runpath=yes
 
27000
-    case $host_os in
 
27001
-      sco3.2v5*)
 
27002
-        sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
 
27003
-       ;;
 
27004
-    esac
 
27005
-  fi
 
27006
-  sys_lib_dlsearch_path_spec='/usr/lib'
 
27007
-  ;;
 
27008
 
 
27009
-uts4*)
 
27010
-  version_type=linux
 
27011
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
27012
-  soname_spec='${libname}${release}${shared_ext}$major'
 
27013
-  shlibpath_var=LD_LIBRARY_PATH
 
27014
-  ;;
 
27015
 
20070
27016
+if test -z "$lt_cv_path_MAGIC_CMD"; then
20071
27017
+  if test -n "$ac_tool_prefix"; then
20072
27018
+    { echo "$as_me:$LINENO: checking for file" >&5
20073
27019
+echo $ECHO_N "checking for file... $ECHO_C" >&6; }
20074
27020
+if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
20075
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
20076
 
 else
20077
 
-  ac_check_lib_save_LIBS=$LIBS
20078
 
-LIBS="-lsvld  $LIBS"
20079
 
-cat >conftest.$ac_ext <<_ACEOF
20080
 
-/* confdefs.h.  */
20081
 
-_ACEOF
20082
 
-cat confdefs.h >>conftest.$ac_ext
20083
 
-cat >>conftest.$ac_ext <<_ACEOF
20084
 
-/* end confdefs.h.  */
 
27021
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
27022
+else
20085
27023
+  case $MAGIC_CMD in
20086
27024
+[\\/*] |  ?:[\\/]*)
20087
27025
+  lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
20088
27026
+  ;;
20089
 
+*)
 
27027
 *)
 
27028
-  dynamic_linker=no
20090
27029
+  lt_save_MAGIC_CMD="$MAGIC_CMD"
20091
27030
+  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
20092
27031
+  ac_dummy="/usr/bin$PATH_SEPARATOR$PATH"
20105
27044
+           :
20106
27045
+         else
20107
27046
+           cat <<_LT_EOF 1>&2
20108
 
 
20109
 
-/* Override any GCC internal prototype to avoid an error.
20110
 
-   Use char because int might match the return type of a GCC
20111
 
-   builtin and then its argument prototype would still apply.  */
20112
 
-#ifdef __cplusplus
20113
 
-extern "C"
20114
 
-#endif
20115
 
-char dlopen ();
20116
 
-int
20117
 
-main ()
20118
 
-{
20119
 
-return dlopen ();
20120
 
-  ;
20121
 
-  return 0;
20122
 
-}
20123
 
-_ACEOF
20124
 
-rm -f conftest.$ac_objext conftest$ac_exeext
20125
 
-if { (ac_try="$ac_link"
20126
 
-case "(($ac_try" in
20127
 
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
20128
 
-  *) ac_try_echo=$ac_try;;
 
27047
+
20129
27048
+*** Warning: the command libtool uses to detect shared libraries,
20130
27049
+*** $file_magic_cmd, produces output that libtool cannot recognize.
20131
27050
+*** The result is that libtool may fail to recognize shared libraries
20144
27063
+  done
20145
27064
+  IFS="$lt_save_ifs"
20146
27065
+  MAGIC_CMD="$lt_save_MAGIC_CMD"
20147
 
+  ;;
 
27066
   ;;
20148
27067
 esac
20149
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
20150
 
-  (eval "$ac_link") 2>conftest.er1
20151
 
-  ac_status=$?
20152
 
-  grep -v '^ *+' conftest.er1 >conftest.err
20153
 
-  rm -f conftest.er1
20154
 
-  cat conftest.err >&5
20155
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
20156
 
-  (exit $ac_status); } && {
20157
 
-        test -z "$ac_c_werror_flag" ||
20158
 
-        test ! -s conftest.err
20159
 
-       } && test -s conftest$ac_exeext &&
20160
 
-       $as_test_x conftest$ac_exeext; then
20161
 
-  ac_cv_lib_svld_dlopen=yes
 
27068
-{ $as_echo "$as_me:$LINENO: result: $dynamic_linker" >&5
 
27069
-$as_echo "$dynamic_linker" >&6; }
 
27070
-test "$dynamic_linker" = no && can_build_shared=no
 
27071
-
 
27072
-if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
 
27073
-  $as_echo_n "(cached) " >&6
20162
27074
-else
20163
 
-  echo "$as_me: failed program was:" >&5
20164
 
-sed 's/^/| /' conftest.$ac_ext >&5
20165
 
+fi
 
27075
-  lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec"
 
27076
 fi
20166
27077
 
20167
 
-       ac_cv_lib_svld_dlopen=no
 
27078
-sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
 
27079
-if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
 
27080
-  $as_echo_n "(cached) " >&6
20168
27081
+MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
20169
27082
+if test -n "$MAGIC_CMD"; then
20170
27083
+  { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
20171
27084
+echo "${ECHO_T}$MAGIC_CMD" >&6; }
20172
 
+else
 
27085
 else
 
27086
-  lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec"
20173
27087
+  { echo "$as_me:$LINENO: result: no" >&5
20174
27088
+echo "${ECHO_T}no" >&6; }
20175
27089
 fi
20176
27090
 
20177
 
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
20178
 
-      conftest$ac_exeext conftest.$ac_ext
20179
 
-LIBS=$ac_check_lib_save_LIBS
20180
 
+
 
27091
-sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
 
27092
 
 
27093
-variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
 
27094
-if test "$GCC" = yes; then
 
27095
-  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
20181
27096
+  else
20182
27097
+    MAGIC_CMD=:
20183
27098
+  fi
20184
27099
 fi
20185
 
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5
20186
 
-echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6; }
20187
 
-if test $ac_cv_lib_svld_dlopen = yes; then
20188
 
-  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
20189
 
-else
20190
 
-  { echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5
20191
 
-echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6; }
20192
 
-if test "${ac_cv_lib_dld_dld_link+set}" = set; then
20193
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
20194
 
-else
20195
 
-  ac_check_lib_save_LIBS=$LIBS
20196
 
-LIBS="-ldld  $LIBS"
20197
 
-cat >conftest.$ac_ext <<_ACEOF
20198
 
-/* confdefs.h.  */
20199
 
-_ACEOF
20200
 
-cat confdefs.h >>conftest.$ac_ext
20201
 
-cat >>conftest.$ac_ext <<_ACEOF
20202
 
-/* end confdefs.h.  */
20203
27100
 
20204
 
-/* Override any GCC internal prototype to avoid an error.
20205
 
-   Use char because int might match the return type of a GCC
20206
 
-   builtin and then its argument prototype would still apply.  */
20207
 
-#ifdef __cplusplus
20208
 
-extern "C"
20209
 
-#endif
20210
 
-char dld_link ();
20211
 
-int
20212
 
-main ()
20213
 
-{
20214
 
-return dld_link ();
20215
 
-  ;
20216
 
-  return 0;
20217
 
-}
20218
 
-_ACEOF
20219
 
-rm -f conftest.$ac_objext conftest$ac_exeext
20220
 
-if { (ac_try="$ac_link"
20221
 
-case "(($ac_try" in
20222
 
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
20223
 
-  *) ac_try_echo=$ac_try;;
 
27101
-{ $as_echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
 
27102
-$as_echo_n "checking how to hardcode library paths into programs... " >&6; }
 
27103
-hardcode_action=
 
27104
-if test -n "$hardcode_libdir_flag_spec" || \
 
27105
-   test -n "$runpath_var" || \
 
27106
-   test "X$hardcode_automatic" = "Xyes" ; then
20224
27107
+  fi
20225
27108
+  ;;
20226
 
 esac
20227
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
20228
 
-  (eval "$ac_link") 2>conftest.er1
20229
 
-  ac_status=$?
20230
 
-  grep -v '^ *+' conftest.er1 >conftest.err
20231
 
-  rm -f conftest.er1
20232
 
-  cat conftest.err >&5
20233
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
20234
 
-  (exit $ac_status); } && {
20235
 
-        test -z "$ac_c_werror_flag" ||
20236
 
-        test ! -s conftest.err
20237
 
-       } && test -s conftest$ac_exeext &&
20238
 
-       $as_test_x conftest$ac_exeext; then
20239
 
-  ac_cv_lib_dld_dld_link=yes
 
27109
+esac
 
27110
 
 
27111
-  # We can hardcode non-existant directories.
 
27112
-  if test "$hardcode_direct" != no &&
 
27113
-     # If the only mechanism to avoid hardcoding is shlibpath_var, we
 
27114
-     # have to relink, otherwise we might link with an installed library
 
27115
-     # when we should be linking with a yet-to-be-installed one
 
27116
-     ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, )" != no &&
 
27117
-     test "$hardcode_minus_L" != no; then
 
27118
-    # Linking always hardcodes the temporary library directory.
 
27119
-    hardcode_action=relink
 
27120
-  else
 
27121
-    # We can link without hardcoding, and we can hardcode nonexisting dirs.
 
27122
-    hardcode_action=immediate
 
27123
-  fi
20240
27124
-else
20241
 
-  echo "$as_me: failed program was:" >&5
20242
 
-sed 's/^/| /' conftest.$ac_ext >&5
20243
 
-
20244
 
-       ac_cv_lib_dld_dld_link=no
20245
 
-fi
20246
 
-
20247
 
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
20248
 
-      conftest$ac_exeext conftest.$ac_ext
20249
 
-LIBS=$ac_check_lib_save_LIBS
20250
 
-fi
20251
 
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5
20252
 
-echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6; }
20253
 
-if test $ac_cv_lib_dld_dld_link = yes; then
20254
 
-  lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"
20255
 
-fi
20256
 
 
 
27125
-  # We cannot hardcode anything, or else we can only hardcode existing
 
27126
-  # directories.
 
27127
-  hardcode_action=unsupported
 
27128
-fi
 
27129
-{ $as_echo "$as_me:$LINENO: result: $hardcode_action" >&5
 
27130
-$as_echo "$hardcode_action" >&6; }
20257
27131
+# Use C for the default configuration in the libtool script
20258
27132
 
 
27133
-if test "$hardcode_action" = relink; then
 
27134
-  # Fast installation is not supported
 
27135
-  enable_fast_install=no
 
27136
-elif test "$shlibpath_overrides_runpath" = yes ||
 
27137
-     test "$enable_shared" = no; then
 
27138
-  # Fast installation is not necessary
 
27139
-  enable_fast_install=needless
20259
27140
-fi
20260
27141
+lt_save_CC="$CC"
20261
27142
+ac_ext=c
20264
27145
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
20265
27146
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
20266
27147
 
 
27148
-striplib=
 
27149
-old_striplib=
 
27150
-{ $as_echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5
 
27151
-$as_echo_n "checking whether stripping libraries is possible... " >&6; }
 
27152
-if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then
 
27153
-  test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
 
27154
-  test -z "$striplib" && striplib="$STRIP --strip-unneeded"
 
27155
-  { $as_echo "$as_me:$LINENO: result: yes" >&5
 
27156
-$as_echo "yes" >&6; }
 
27157
-else
 
27158
-# FIXME - insert some real tests, host_os isn't really good enough
 
27159
-  case $host_os in
 
27160
-   darwin*)
 
27161
-       if test -n "$STRIP" ; then
 
27162
-         striplib="$STRIP -x"
 
27163
-         old_striplib="$STRIP -S"
 
27164
-         { $as_echo "$as_me:$LINENO: result: yes" >&5
 
27165
-$as_echo "yes" >&6; }
 
27166
-       else
 
27167
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
27168
-$as_echo "no" >&6; }
 
27169
-fi
 
27170
-       ;;
 
27171
-   *)
 
27172
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
27173
-$as_echo "no" >&6; }
 
27174
-    ;;
 
27175
-  esac
 
27176
-fi
20267
27177
 
20268
 
-fi
 
27178
-if test "x$enable_dlopen" != xyes; then
 
27179
-  enable_dlopen=unknown
 
27180
-  enable_dlopen_self=unknown
 
27181
-  enable_dlopen_self_static=unknown
 
27182
-else
 
27183
-  lt_cv_dlopen=no
 
27184
-  lt_cv_dlopen_libs=
20269
27185
+# Source file extension for C test sources.
20270
27186
+ac_ext=c
20271
27187
 
 
27188
-  case $host_os in
 
27189
-  beos*)
 
27190
-    lt_cv_dlopen="load_add_on"
 
27191
-    lt_cv_dlopen_libs=
 
27192
-    lt_cv_dlopen_self=yes
 
27193
-    ;;
20272
27194
+# Object file extension for compiled C test sources.
20273
27195
+objext=o
20274
27196
+objext=$objext
20275
27197
 
20276
 
-fi
 
27198
-  mingw* | pw32*)
 
27199
-    lt_cv_dlopen="LoadLibrary"
 
27200
-    lt_cv_dlopen_libs=
 
27201
-   ;;
20277
27202
+# Code to be used in simple compile tests
20278
27203
+lt_simple_compile_test_code="int some_variable = 0;"
20279
27204
 
 
27205
-  cygwin*)
 
27206
-    lt_cv_dlopen="dlopen"
 
27207
-    lt_cv_dlopen_libs=
 
27208
-   ;;
20280
27209
+# Code to be used in simple link tests
20281
27210
+lt_simple_link_test_code='int main(){return(0);}'
20282
27211
 
20283
 
-fi
20284
 
 
20285
 
 
20286
 
-fi
20287
 
 
20288
 
-    ;;
20289
 
-  esac
20290
 
 
20291
 
-  if test "x$lt_cv_dlopen" != xno; then
20292
 
-    enable_dlopen=yes
20293
 
-  else
20294
 
-    enable_dlopen=no
20295
 
-  fi
20296
 
 
20297
 
-  case $lt_cv_dlopen in
20298
 
-  dlopen)
20299
 
-    save_CPPFLAGS="$CPPFLAGS"
20300
 
-    test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
20301
 
 
20302
 
-    save_LDFLAGS="$LDFLAGS"
20303
 
-    wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
 
27212
-  darwin*)
 
27213
-  # if libdl is installed we need to link against it
 
27214
-    { $as_echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
 
27215
-$as_echo_n "checking for dlopen in -ldl... " >&6; }
 
27216
-if test "${ac_cv_lib_dl_dlopen+set}" = set; then
 
27217
-  $as_echo_n "(cached) " >&6
 
27218
-else
 
27219
-  ac_check_lib_save_LIBS=$LIBS
 
27220
-LIBS="-ldl  $LIBS"
 
27221
-cat >conftest.$ac_ext <<_ACEOF
 
27222
-/* confdefs.h.  */
 
27223
-_ACEOF
 
27224
-cat confdefs.h >>conftest.$ac_ext
 
27225
-cat >>conftest.$ac_ext <<_ACEOF
 
27226
-/* end confdefs.h.  */
 
27227
 
 
27228
-/* Override any GCC internal prototype to avoid an error.
 
27229
-   Use char because int might match the return type of a GCC
 
27230
-   builtin and then its argument prototype would still apply.  */
 
27231
-#ifdef __cplusplus
 
27232
-extern "C"
 
27233
-#endif
 
27234
-char dlopen ();
 
27235
-int
 
27236
-main ()
 
27237
-{
 
27238
-return dlopen ();
 
27239
-  ;
 
27240
-  return 0;
 
27241
-}
 
27242
-_ACEOF
 
27243
-rm -f conftest.$ac_objext conftest$ac_exeext
 
27244
-if { (ac_try="$ac_link"
 
27245
-case "(($ac_try" in
 
27246
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
27247
-  *) ac_try_echo=$ac_try;;
 
27248
-esac
 
27249
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
27250
-$as_echo "$ac_try_echo") >&5
 
27251
-  (eval "$ac_link") 2>conftest.er1
 
27252
-  ac_status=$?
 
27253
-  grep -v '^ *+' conftest.er1 >conftest.err
 
27254
-  rm -f conftest.er1
 
27255
-  cat conftest.err >&5
 
27256
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
27257
-  (exit $ac_status); } && {
 
27258
-        test -z "$ac_c_werror_flag" ||
 
27259
-        test ! -s conftest.err
 
27260
-       } && test -s conftest$ac_exeext && {
 
27261
-        test "$cross_compiling" = yes ||
 
27262
-        $as_test_x conftest$ac_exeext
 
27263
-       }; then
 
27264
-  ac_cv_lib_dl_dlopen=yes
 
27265
-else
 
27266
-  $as_echo "$as_me: failed program was:" >&5
 
27267
-sed 's/^/| /' conftest.$ac_ext >&5
 
27268
 
 
27269
-       ac_cv_lib_dl_dlopen=no
 
27270
-fi
 
27271
 
 
27272
-rm -rf conftest.dSYM
 
27273
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
27274
-      conftest$ac_exeext conftest.$ac_ext
 
27275
-LIBS=$ac_check_lib_save_LIBS
 
27276
-fi
 
27277
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
 
27278
-$as_echo "$ac_cv_lib_dl_dlopen" >&6; }
 
27279
-if test "x$ac_cv_lib_dl_dlopen" = x""yes; then
 
27280
-  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
 
27281
-else
 
27282
 
 
27283
-    lt_cv_dlopen="dyld"
 
27284
-    lt_cv_dlopen_libs=
 
27285
-    lt_cv_dlopen_self=yes
 
27286
 
 
27287
-fi
 
27288
 
 
27289
-   ;;
20304
27290
+# If no C compiler was specified, use CC.
20305
27291
+LTCC=${LTCC-"$CC"}
20306
27292
 
20307
 
-    save_LIBS="$LIBS"
20308
 
-    LIBS="$lt_cv_dlopen_libs $LIBS"
 
27293
-  *)
 
27294
-    { $as_echo "$as_me:$LINENO: checking for shl_load" >&5
 
27295
-$as_echo_n "checking for shl_load... " >&6; }
 
27296
-if test "${ac_cv_func_shl_load+set}" = set; then
 
27297
-  $as_echo_n "(cached) " >&6
 
27298
-else
 
27299
-  cat >conftest.$ac_ext <<_ACEOF
 
27300
-/* confdefs.h.  */
 
27301
-_ACEOF
 
27302
-cat confdefs.h >>conftest.$ac_ext
 
27303
-cat >>conftest.$ac_ext <<_ACEOF
 
27304
-/* end confdefs.h.  */
 
27305
-/* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load.
 
27306
-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
 
27307
-#define shl_load innocuous_shl_load
20309
27308
+# If no C compiler flags were specified, use CFLAGS.
20310
27309
+LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
20311
27310
 
20312
 
-    { echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5
20313
 
-echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6; }
20314
 
-if test "${lt_cv_dlopen_self+set}" = set; then
20315
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
20316
 
-else
20317
 
-         if test "$cross_compiling" = yes; then :
20318
 
-  lt_cv_dlopen_self=cross
20319
 
-else
20320
 
-  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
20321
 
-  lt_status=$lt_dlunknown
20322
 
-  cat > conftest.$ac_ext <<EOF
20323
 
-#line 12547 "configure"
20324
 
-#include "confdefs.h"
 
27311
-/* System header to define __stub macros and hopefully few prototypes,
 
27312
-    which can conflict with char shl_load (); below.
 
27313
-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
 
27314
-    <limits.h> exists even on freestanding compilers.  */
20325
27315
+# Allow CC to be a program name with arguments.
20326
27316
+compiler=$CC
20327
27317
 
20328
 
-#if HAVE_DLFCN_H
20329
 
-#include <dlfcn.h>
 
27318
-#ifdef __STDC__
 
27319
-# include <limits.h>
 
27320
-#else
 
27321
-# include <assert.h>
20330
27322
-#endif
20331
27323
+# Save the default compiler, since it gets overwritten when the other
20332
27324
+# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.
20333
27325
+compiler_DEFAULT=$CC
20334
27326
 
20335
 
-#include <stdio.h>
 
27327
-#undef shl_load
20336
27328
+# save warnings/boilerplate of simple test code
20337
27329
+ac_outfile=conftest.$ac_objext
20338
27330
+echo "$lt_simple_compile_test_code" >conftest.$ac_ext
20340
27332
+_lt_compiler_boilerplate=`cat conftest.err`
20341
27333
+$RM conftest*
20342
27334
 
20343
 
-#ifdef RTLD_GLOBAL
20344
 
-#  define LT_DLGLOBAL          RTLD_GLOBAL
20345
 
-#else
20346
 
-#  ifdef DL_GLOBAL
20347
 
-#    define LT_DLGLOBAL                DL_GLOBAL
20348
 
-#  else
20349
 
-#    define LT_DLGLOBAL                0
20350
 
-#  endif
 
27335
-/* Override any GCC internal prototype to avoid an error.
 
27336
-   Use char because int might match the return type of a GCC
 
27337
-   builtin and then its argument prototype would still apply.  */
 
27338
-#ifdef __cplusplus
 
27339
-extern "C"
 
27340
-#endif
 
27341
-char shl_load ();
 
27342
-/* The GNU C library defines this for functions which it implements
 
27343
-    to always fail with ENOSYS.  Some functions are actually named
 
27344
-    something starting with __ and the normal name is an alias.  */
 
27345
-#if defined __stub_shl_load || defined __stub___shl_load
 
27346
-choke me
20351
27347
-#endif
20352
27348
+ac_outfile=conftest.$ac_objext
20353
27349
+echo "$lt_simple_link_test_code" >conftest.$ac_ext
20355
27351
+_lt_linker_boilerplate=`cat conftest.err`
20356
27352
+$RM -r conftest*
20357
27353
 
20358
 
-/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
20359
 
-   find out it does not work in some platform. */
20360
 
-#ifndef LT_DLLAZY_OR_NOW
20361
 
-#  ifdef RTLD_LAZY
20362
 
-#    define LT_DLLAZY_OR_NOW           RTLD_LAZY
20363
 
-#  else
20364
 
-#    ifdef DL_LAZY
20365
 
-#      define LT_DLLAZY_OR_NOW         DL_LAZY
20366
 
-#    else
20367
 
-#      ifdef RTLD_NOW
20368
 
-#        define LT_DLLAZY_OR_NOW       RTLD_NOW
20369
 
-#      else
20370
 
-#        ifdef DL_NOW
20371
 
-#          define LT_DLLAZY_OR_NOW     DL_NOW
20372
 
-#        else
20373
 
-#          define LT_DLLAZY_OR_NOW     0
20374
 
-#        endif
20375
 
-#      endif
20376
 
-#    endif
20377
 
-#  endif
20378
 
-#endif
20379
 
 
20380
 
-#ifdef __cplusplus
20381
 
-extern "C" void exit (int);
20382
 
-#endif
 
27354
-int
 
27355
-main ()
 
27356
-{
 
27357
-return shl_load ();
 
27358
-  ;
 
27359
-  return 0;
 
27360
-}
 
27361
-_ACEOF
 
27362
-rm -f conftest.$ac_objext conftest$ac_exeext
 
27363
-if { (ac_try="$ac_link"
 
27364
-case "(($ac_try" in
 
27365
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
27366
-  *) ac_try_echo=$ac_try;;
 
27367
-esac
 
27368
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
27369
-$as_echo "$ac_try_echo") >&5
 
27370
-  (eval "$ac_link") 2>conftest.er1
 
27371
-  ac_status=$?
 
27372
-  grep -v '^ *+' conftest.er1 >conftest.err
 
27373
-  rm -f conftest.er1
 
27374
-  cat conftest.err >&5
 
27375
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
27376
-  (exit $ac_status); } && {
 
27377
-        test -z "$ac_c_werror_flag" ||
 
27378
-        test ! -s conftest.err
 
27379
-       } && test -s conftest$ac_exeext && {
 
27380
-        test "$cross_compiling" = yes ||
 
27381
-        $as_test_x conftest$ac_exeext
 
27382
-       }; then
 
27383
-  ac_cv_func_shl_load=yes
 
27384
+
20383
27385
+if test -n "$compiler"; then
20384
 
 
20385
 
-void fnord() { int i=42;}
20386
 
-int main ()
20387
 
-{
20388
 
-  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
20389
 
-  int status = $lt_dlunknown;
 
27386
+
20390
27387
+lt_prog_compiler_no_builtin_flag=
20391
 
 
20392
 
-  if (self)
20393
 
-    {
20394
 
-      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
20395
 
-      else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
20396
 
-      /* dlclose (self); */
20397
 
-    }
20398
 
-  else
20399
 
-    puts (dlerror ());
 
27388
+
20400
27389
+if test "$GCC" = yes; then
20401
27390
+  lt_prog_compiler_no_builtin_flag=' -fno-builtin'
20402
 
 
20403
 
-    exit (status);
20404
 
-}
20405
 
-EOF
20406
 
-  if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
20407
 
-  (eval $ac_link) 2>&5
 
27391
+
20408
27392
+  { echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
20409
27393
+echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6; }
20410
27394
+if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then
20411
27395
+  echo $ECHO_N "(cached) $ECHO_C" >&6
20412
 
+else
 
27396
 else
 
27397
-  $as_echo "$as_me: failed program was:" >&5
 
27398
-sed 's/^/| /' conftest.$ac_ext >&5
20413
27399
+  lt_cv_prog_compiler_rtti_exceptions=no
20414
27400
+   ac_outfile=conftest.$ac_objext
20415
27401
+   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
20425
27411
+   -e 's:$: $lt_compiler_flag:'`
20426
27412
+   (eval echo "\"\$as_me:11215: $lt_compile\"" >&5)
20427
27413
+   (eval "$lt_compile" 2>conftest.err)
20428
 
   ac_status=$?
20429
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
20430
 
-  (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
20431
 
-    (./conftest; exit; ) >&5 2>/dev/null
20432
 
-    lt_status=$?
20433
 
-    case x$lt_status in
20434
 
-      x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;;
20435
 
-      x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;;
20436
 
-      x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;;
20437
 
-    esac
20438
 
-  else :
20439
 
-    # compilation failed
20440
 
-    lt_cv_dlopen_self=no
 
27414
+   ac_status=$?
20441
27415
+   cat conftest.err >&5
20442
27416
+   echo "$as_me:11219: \$? = $ac_status" >&5
20443
27417
+   if (exit $ac_status) && test -s "$ac_outfile"; then
20447
27421
+     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
20448
27422
+     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
20449
27423
+       lt_cv_prog_compiler_rtti_exceptions=yes
20450
 
   fi
20451
 
-fi
20452
 
-rm -fr conftest*
20453
 
-
 
27424
+     fi
20454
27425
+   fi
20455
27426
+   $RM conftest*
20456
27427
 
 
27428
-       ac_cv_func_shl_load=no
20457
27429
 fi
20458
 
-{ echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5
20459
 
-echo "${ECHO_T}$lt_cv_dlopen_self" >&6; }
20460
27430
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5
20461
27431
+echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6; }
20462
27432
 
20463
 
-    if test "x$lt_cv_dlopen_self" = xyes; then
20464
 
-      wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
20465
 
-      { echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5
20466
 
-echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6; }
20467
 
-if test "${lt_cv_dlopen_self_static+set}" = set; then
20468
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
27433
-rm -rf conftest.dSYM
 
27434
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
27435
-      conftest$ac_exeext conftest.$ac_ext
 
27436
-fi
 
27437
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
 
27438
-$as_echo "$ac_cv_func_shl_load" >&6; }
 
27439
-if test "x$ac_cv_func_shl_load" = x""yes; then
 
27440
-  lt_cv_dlopen="shl_load"
20469
27441
-else
20470
 
-         if test "$cross_compiling" = yes; then :
20471
 
-  lt_cv_dlopen_self_static=cross
 
27442
-  { $as_echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5
 
27443
-$as_echo_n "checking for shl_load in -ldld... " >&6; }
 
27444
-if test "${ac_cv_lib_dld_shl_load+set}" = set; then
 
27445
-  $as_echo_n "(cached) " >&6
20472
27446
+if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then
20473
27447
+    lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions"
20474
27448
 else
20475
 
-  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
20476
 
-  lt_status=$lt_dlunknown
20477
 
-  cat > conftest.$ac_ext <<EOF
20478
 
-#line 12647 "configure"
20479
 
-#include "confdefs.h"
 
27449
-  ac_check_lib_save_LIBS=$LIBS
 
27450
-LIBS="-ldld  $LIBS"
 
27451
-cat >conftest.$ac_ext <<_ACEOF
 
27452
-/* confdefs.h.  */
 
27453
-_ACEOF
 
27454
-cat confdefs.h >>conftest.$ac_ext
 
27455
-cat >>conftest.$ac_ext <<_ACEOF
 
27456
-/* end confdefs.h.  */
20480
27457
+    :
20481
27458
+fi
20482
27459
 
20483
 
-#if HAVE_DLFCN_H
20484
 
-#include <dlfcn.h>
 
27460
-/* Override any GCC internal prototype to avoid an error.
 
27461
-   Use char because int might match the return type of a GCC
 
27462
-   builtin and then its argument prototype would still apply.  */
 
27463
-#ifdef __cplusplus
 
27464
-extern "C"
20485
27465
-#endif
20486
 
+fi
20487
 
 
20488
 
-#include <stdio.h>
20489
 
 
20490
 
-#ifdef RTLD_GLOBAL
20491
 
-#  define LT_DLGLOBAL          RTLD_GLOBAL
 
27466
-char shl_load ();
 
27467
-int
 
27468
-main ()
 
27469
-{
 
27470
-return shl_load ();
 
27471
-  ;
 
27472
-  return 0;
 
27473
-}
 
27474
-_ACEOF
 
27475
-rm -f conftest.$ac_objext conftest$ac_exeext
 
27476
-if { (ac_try="$ac_link"
 
27477
-case "(($ac_try" in
 
27478
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
27479
-  *) ac_try_echo=$ac_try;;
 
27480
-esac
 
27481
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
27482
-$as_echo "$ac_try_echo") >&5
 
27483
-  (eval "$ac_link") 2>conftest.er1
 
27484
-  ac_status=$?
 
27485
-  grep -v '^ *+' conftest.er1 >conftest.err
 
27486
-  rm -f conftest.er1
 
27487
-  cat conftest.err >&5
 
27488
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
27489
-  (exit $ac_status); } && {
 
27490
-        test -z "$ac_c_werror_flag" ||
 
27491
-        test ! -s conftest.err
 
27492
-       } && test -s conftest$ac_exeext && {
 
27493
-        test "$cross_compiling" = yes ||
 
27494
-        $as_test_x conftest$ac_exeext
 
27495
-       }; then
 
27496
-  ac_cv_lib_dld_shl_load=yes
 
27497
-else
 
27498
-  $as_echo "$as_me: failed program was:" >&5
 
27499
-sed 's/^/| /' conftest.$ac_ext >&5
 
27500
-
 
27501
-       ac_cv_lib_dld_shl_load=no
 
27502
 fi
 
27503
 
 
27504
-rm -rf conftest.dSYM
 
27505
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
27506
-      conftest$ac_exeext conftest.$ac_ext
 
27507
-LIBS=$ac_check_lib_save_LIBS
 
27508
-fi
 
27509
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5
 
27510
-$as_echo "$ac_cv_lib_dld_shl_load" >&6; }
 
27511
-if test "x$ac_cv_lib_dld_shl_load" = x""yes; then
 
27512
-  lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"
 
27513
-else
 
27514
-  { $as_echo "$as_me:$LINENO: checking for dlopen" >&5
 
27515
-$as_echo_n "checking for dlopen... " >&6; }
 
27516
-if test "${ac_cv_func_dlopen+set}" = set; then
 
27517
-  $as_echo_n "(cached) " >&6
 
27518
-else
 
27519
-  cat >conftest.$ac_ext <<_ACEOF
 
27520
-/* confdefs.h.  */
 
27521
-_ACEOF
 
27522
-cat confdefs.h >>conftest.$ac_ext
 
27523
-cat >>conftest.$ac_ext <<_ACEOF
 
27524
-/* end confdefs.h.  */
 
27525
-/* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
 
27526
-   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
 
27527
-#define dlopen innocuous_dlopen
 
27528
-
 
27529
-/* System header to define __stub macros and hopefully few prototypes,
 
27530
-    which can conflict with char dlopen (); below.
 
27531
-    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
 
27532
-    <limits.h> exists even on freestanding compilers.  */
 
27533
 
 
27534
-#ifdef __STDC__
 
27535
-# include <limits.h>
20492
27536
-#else
20493
 
-#  ifdef DL_GLOBAL
20494
 
-#    define LT_DLGLOBAL                DL_GLOBAL
20495
 
-#  else
20496
 
-#    define LT_DLGLOBAL                0
20497
 
-#  endif
20498
 
-#endif
20499
 
 
20500
 
-/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
20501
 
-   find out it does not work in some platform. */
20502
 
-#ifndef LT_DLLAZY_OR_NOW
20503
 
-#  ifdef RTLD_LAZY
20504
 
-#    define LT_DLLAZY_OR_NOW           RTLD_LAZY
20505
 
-#  else
20506
 
-#    ifdef DL_LAZY
20507
 
-#      define LT_DLLAZY_OR_NOW         DL_LAZY
20508
 
-#    else
20509
 
-#      ifdef RTLD_NOW
20510
 
-#        define LT_DLLAZY_OR_NOW       RTLD_NOW
20511
 
-#      else
20512
 
-#        ifdef DL_NOW
20513
 
-#          define LT_DLLAZY_OR_NOW     DL_NOW
20514
 
-#        else
20515
 
-#          define LT_DLLAZY_OR_NOW     0
20516
 
-#        endif
20517
 
-#      endif
20518
 
-#    endif
20519
 
-#  endif
20520
 
-#endif
20521
 
 
 
27537
-# include <assert.h>
 
27538
-#endif
 
27539
 
 
27540
-#undef dlopen
 
27541
 
 
27542
-/* Override any GCC internal prototype to avoid an error.
 
27543
-   Use char because int might match the return type of a GCC
 
27544
-   builtin and then its argument prototype would still apply.  */
20522
27545
-#ifdef __cplusplus
20523
 
-extern "C" void exit (int);
 
27546
-extern "C"
 
27547
-#endif
 
27548
-char dlopen ();
 
27549
-/* The GNU C library defines this for functions which it implements
 
27550
-    to always fail with ENOSYS.  Some functions are actually named
 
27551
-    something starting with __ and the normal name is an alias.  */
 
27552
-#if defined __stub_dlopen || defined __stub___dlopen
 
27553
-choke me
20524
27554
-#endif
20525
27555
 
20526
 
-void fnord() { int i=42;}
20527
 
-int main ()
 
27556
-int
 
27557
-main ()
20528
27558
-{
20529
 
-  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
20530
 
-  int status = $lt_dlunknown;
 
27559
-return dlopen ();
 
27560
-  ;
 
27561
-  return 0;
 
27562
-}
 
27563
-_ACEOF
 
27564
-rm -f conftest.$ac_objext conftest$ac_exeext
 
27565
-if { (ac_try="$ac_link"
 
27566
-case "(($ac_try" in
 
27567
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
27568
-  *) ac_try_echo=$ac_try;;
 
27569
-esac
 
27570
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
27571
-$as_echo "$ac_try_echo") >&5
 
27572
-  (eval "$ac_link") 2>conftest.er1
 
27573
-  ac_status=$?
 
27574
-  grep -v '^ *+' conftest.er1 >conftest.err
 
27575
-  rm -f conftest.er1
 
27576
-  cat conftest.err >&5
 
27577
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
27578
-  (exit $ac_status); } && {
 
27579
-        test -z "$ac_c_werror_flag" ||
 
27580
-        test ! -s conftest.err
 
27581
-       } && test -s conftest$ac_exeext && {
 
27582
-        test "$cross_compiling" = yes ||
 
27583
-        $as_test_x conftest$ac_exeext
 
27584
-       }; then
 
27585
-  ac_cv_func_dlopen=yes
 
27586
-else
 
27587
-  $as_echo "$as_me: failed program was:" >&5
 
27588
-sed 's/^/| /' conftest.$ac_ext >&5
20531
27589
 
20532
 
-  if (self)
20533
 
-    {
20534
 
-      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
20535
 
-      else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
20536
 
-      /* dlclose (self); */
20537
 
-    }
20538
 
-  else
20539
 
-    puts (dlerror ());
 
27590
-       ac_cv_func_dlopen=no
 
27591
-fi
20540
27592
+  lt_prog_compiler_wl=
20541
27593
+lt_prog_compiler_pic=
20542
27594
+lt_prog_compiler_static=
20543
27595
 
20544
 
-    exit (status);
20545
 
-}
20546
 
-EOF
20547
 
-  if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
20548
 
-  (eval $ac_link) 2>&5
20549
 
-  ac_status=$?
20550
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
20551
 
-  (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
20552
 
-    (./conftest; exit; ) >&5 2>/dev/null
20553
 
-    lt_status=$?
20554
 
-    case x$lt_status in
20555
 
-      x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;;
20556
 
-      x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;;
20557
 
-      x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;;
20558
 
-    esac
20559
 
-  else :
20560
 
-    # compilation failed
20561
 
-    lt_cv_dlopen_self_static=no
20562
 
-  fi
 
27596
-rm -rf conftest.dSYM
 
27597
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
27598
-      conftest$ac_exeext conftest.$ac_ext
20563
27599
-fi
20564
 
-rm -fr conftest*
 
27600
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
 
27601
-$as_echo "$ac_cv_func_dlopen" >&6; }
 
27602
-if test "x$ac_cv_func_dlopen" = x""yes; then
 
27603
-  lt_cv_dlopen="dlopen"
 
27604
-else
 
27605
-  { $as_echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
 
27606
-$as_echo_n "checking for dlopen in -ldl... " >&6; }
 
27607
-if test "${ac_cv_lib_dl_dlopen+set}" = set; then
 
27608
-  $as_echo_n "(cached) " >&6
 
27609
-else
 
27610
-  ac_check_lib_save_LIBS=$LIBS
 
27611
-LIBS="-ldl  $LIBS"
 
27612
-cat >conftest.$ac_ext <<_ACEOF
 
27613
-/* confdefs.h.  */
 
27614
-_ACEOF
 
27615
-cat confdefs.h >>conftest.$ac_ext
 
27616
-cat >>conftest.$ac_ext <<_ACEOF
 
27617
-/* end confdefs.h.  */
20565
27618
+{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5
20566
27619
+echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; }
20567
27620
 
 
27621
-/* Override any GCC internal prototype to avoid an error.
 
27622
-   Use char because int might match the return type of a GCC
 
27623
-   builtin and then its argument prototype would still apply.  */
 
27624
-#ifdef __cplusplus
 
27625
-extern "C"
 
27626
-#endif
 
27627
-char dlopen ();
 
27628
-int
 
27629
-main ()
 
27630
-{
 
27631
-return dlopen ();
 
27632
-  ;
 
27633
-  return 0;
 
27634
-}
 
27635
-_ACEOF
 
27636
-rm -f conftest.$ac_objext conftest$ac_exeext
 
27637
-if { (ac_try="$ac_link"
 
27638
-case "(($ac_try" in
 
27639
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
27640
-  *) ac_try_echo=$ac_try;;
 
27641
-esac
 
27642
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
27643
-$as_echo "$ac_try_echo") >&5
 
27644
-  (eval "$ac_link") 2>conftest.er1
 
27645
-  ac_status=$?
 
27646
-  grep -v '^ *+' conftest.er1 >conftest.err
 
27647
-  rm -f conftest.er1
 
27648
-  cat conftest.err >&5
 
27649
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
27650
-  (exit $ac_status); } && {
 
27651
-        test -z "$ac_c_werror_flag" ||
 
27652
-        test ! -s conftest.err
 
27653
-       } && test -s conftest$ac_exeext && {
 
27654
-        test "$cross_compiling" = yes ||
 
27655
-        $as_test_x conftest$ac_exeext
 
27656
-       }; then
 
27657
-  ac_cv_lib_dl_dlopen=yes
 
27658
-else
 
27659
-  $as_echo "$as_me: failed program was:" >&5
 
27660
-sed 's/^/| /' conftest.$ac_ext >&5
20568
27661
+  if test "$GCC" = yes; then
20569
27662
+    lt_prog_compiler_wl='-Wl,'
20570
27663
+    lt_prog_compiler_static='-static'
20571
27664
 
 
27665
-       ac_cv_lib_dl_dlopen=no
20572
27666
-fi
20573
 
-{ echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5
20574
 
-echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6; }
20575
27667
+    case $host_os in
20576
27668
+      aix*)
20577
27669
+      # All AIX code is PIC.
20578
27670
+      if test "$host_cpu" = ia64; then
20579
27671
+       # AIX 5 now supports IA64 processor
20580
27672
+       lt_prog_compiler_static='-Bstatic'
20581
 
     fi
 
27673
+      fi
20582
27674
+      ;;
20583
27675
 
20584
 
-    CPPFLAGS="$save_CPPFLAGS"
20585
 
-    LDFLAGS="$save_LDFLAGS"
20586
 
-    LIBS="$save_LIBS"
 
27676
-rm -rf conftest.dSYM
 
27677
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
27678
-      conftest$ac_exeext conftest.$ac_ext
 
27679
-LIBS=$ac_check_lib_save_LIBS
 
27680
-fi
 
27681
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
 
27682
-$as_echo "$ac_cv_lib_dl_dlopen" >&6; }
 
27683
-if test "x$ac_cv_lib_dl_dlopen" = x""yes; then
 
27684
-  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
 
27685
-else
 
27686
-  { $as_echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5
 
27687
-$as_echo_n "checking for dlopen in -lsvld... " >&6; }
 
27688
-if test "${ac_cv_lib_svld_dlopen+set}" = set; then
 
27689
-  $as_echo_n "(cached) " >&6
 
27690
-else
 
27691
-  ac_check_lib_save_LIBS=$LIBS
 
27692
-LIBS="-lsvld  $LIBS"
 
27693
-cat >conftest.$ac_ext <<_ACEOF
 
27694
-/* confdefs.h.  */
 
27695
-_ACEOF
 
27696
-cat confdefs.h >>conftest.$ac_ext
 
27697
-cat >>conftest.$ac_ext <<_ACEOF
 
27698
-/* end confdefs.h.  */
20587
27699
+    amigaos*)
20588
27700
+      case $host_cpu in
20589
27701
+      powerpc)
20595
27707
+            # adding the `-m68020' flag to GCC prevents building anything better,
20596
27708
+            # like `-m68040'.
20597
27709
+            lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4'
20598
 
     ;;
20599
 
   esac
 
27710
+        ;;
 
27711
+      esac
20600
27712
+      ;;
20601
27713
 
20602
 
-  case $lt_cv_dlopen_self in
20603
 
-  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
20604
 
-  *) enable_dlopen_self=unknown ;;
20605
 
-  esac
 
27714
-/* Override any GCC internal prototype to avoid an error.
 
27715
-   Use char because int might match the return type of a GCC
 
27716
-   builtin and then its argument prototype would still apply.  */
 
27717
-#ifdef __cplusplus
 
27718
-extern "C"
 
27719
-#endif
 
27720
-char dlopen ();
 
27721
-int
 
27722
-main ()
 
27723
-{
 
27724
-return dlopen ();
 
27725
-  ;
 
27726
-  return 0;
 
27727
-}
 
27728
-_ACEOF
 
27729
-rm -f conftest.$ac_objext conftest$ac_exeext
 
27730
-if { (ac_try="$ac_link"
 
27731
-case "(($ac_try" in
 
27732
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
27733
-  *) ac_try_echo=$ac_try;;
 
27734
-esac
 
27735
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
27736
-$as_echo "$ac_try_echo") >&5
 
27737
-  (eval "$ac_link") 2>conftest.er1
 
27738
-  ac_status=$?
 
27739
-  grep -v '^ *+' conftest.er1 >conftest.err
 
27740
-  rm -f conftest.er1
 
27741
-  cat conftest.err >&5
 
27742
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
27743
-  (exit $ac_status); } && {
 
27744
-        test -z "$ac_c_werror_flag" ||
 
27745
-        test ! -s conftest.err
 
27746
-       } && test -s conftest$ac_exeext && {
 
27747
-        test "$cross_compiling" = yes ||
 
27748
-        $as_test_x conftest$ac_exeext
 
27749
-       }; then
 
27750
-  ac_cv_lib_svld_dlopen=yes
 
27751
-else
 
27752
-  $as_echo "$as_me: failed program was:" >&5
 
27753
-sed 's/^/| /' conftest.$ac_ext >&5
20606
27754
+    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
20607
27755
+      # PIC is the default for these OSes.
20608
27756
+      ;;
20609
27757
 
20610
 
-  case $lt_cv_dlopen_self_static in
20611
 
-  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
20612
 
-  *) enable_dlopen_self_static=unknown ;;
 
27758
-       ac_cv_lib_svld_dlopen=no
 
27759
-fi
20613
27760
+    mingw* | cygwin* | pw32* | os2*)
20614
27761
+      # This hack is so that the source file can tell whether it is being
20615
27762
+      # built for inclusion in a dll (and should export symbols for example).
20617
27764
+      # (--disable-auto-import) libraries
20618
27765
+      lt_prog_compiler_pic='-DDLL_EXPORT'
20619
27766
+      ;;
20620
 
+
 
27767
 
 
27768
-rm -rf conftest.dSYM
 
27769
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
27770
-      conftest$ac_exeext conftest.$ac_ext
 
27771
-LIBS=$ac_check_lib_save_LIBS
 
27772
-fi
 
27773
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5
 
27774
-$as_echo "$ac_cv_lib_svld_dlopen" >&6; }
 
27775
-if test "x$ac_cv_lib_svld_dlopen" = x""yes; then
 
27776
-  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
 
27777
-else
 
27778
-  { $as_echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5
 
27779
-$as_echo_n "checking for dld_link in -ldld... " >&6; }
 
27780
-if test "${ac_cv_lib_dld_dld_link+set}" = set; then
 
27781
-  $as_echo_n "(cached) " >&6
 
27782
-else
 
27783
-  ac_check_lib_save_LIBS=$LIBS
 
27784
-LIBS="-ldld  $LIBS"
 
27785
-cat >conftest.$ac_ext <<_ACEOF
 
27786
-/* confdefs.h.  */
 
27787
-_ACEOF
 
27788
-cat confdefs.h >>conftest.$ac_ext
 
27789
-cat >>conftest.$ac_ext <<_ACEOF
 
27790
-/* end confdefs.h.  */
20621
27791
+    darwin* | rhapsody*)
20622
27792
+      # PIC is the default on this platform
20623
27793
+      # Common symbols not allowed in MH_DYLIB files
20624
27794
+      lt_prog_compiler_pic='-fno-common'
20625
27795
+      ;;
20626
 
+
 
27796
 
 
27797
-/* Override any GCC internal prototype to avoid an error.
 
27798
-   Use char because int might match the return type of a GCC
 
27799
-   builtin and then its argument prototype would still apply.  */
 
27800
-#ifdef __cplusplus
 
27801
-extern "C"
 
27802
-#endif
 
27803
-char dld_link ();
 
27804
-int
 
27805
-main ()
 
27806
-{
 
27807
-return dld_link ();
 
27808
-  ;
 
27809
-  return 0;
 
27810
-}
 
27811
-_ACEOF
 
27812
-rm -f conftest.$ac_objext conftest$ac_exeext
 
27813
-if { (ac_try="$ac_link"
 
27814
-case "(($ac_try" in
 
27815
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
27816
-  *) ac_try_echo=$ac_try;;
 
27817
-esac
 
27818
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
27819
-$as_echo "$ac_try_echo") >&5
 
27820
-  (eval "$ac_link") 2>conftest.er1
 
27821
-  ac_status=$?
 
27822
-  grep -v '^ *+' conftest.er1 >conftest.err
 
27823
-  rm -f conftest.er1
 
27824
-  cat conftest.err >&5
 
27825
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
27826
-  (exit $ac_status); } && {
 
27827
-        test -z "$ac_c_werror_flag" ||
 
27828
-        test ! -s conftest.err
 
27829
-       } && test -s conftest$ac_exeext && {
 
27830
-        test "$cross_compiling" = yes ||
 
27831
-        $as_test_x conftest$ac_exeext
 
27832
-       }; then
 
27833
-  ac_cv_lib_dld_dld_link=yes
 
27834
-else
 
27835
-  $as_echo "$as_me: failed program was:" >&5
 
27836
-sed 's/^/| /' conftest.$ac_ext >&5
20627
27837
+    hpux*)
20628
27838
+      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
20629
27839
+      # not for PA HP-UX.
20634
27844
+      *)
20635
27845
+       lt_prog_compiler_pic='-fPIC'
20636
27846
+       ;;
20637
 
   esac
20638
 
-fi
 
27847
+      esac
20639
27848
+      ;;
20640
27849
 
 
27850
-       ac_cv_lib_dld_dld_link=no
 
27851
-fi
20641
27852
+    interix[3-9]*)
20642
27853
+      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
20643
27854
+      # Instead, we relocate shared libraries at runtime.
20644
27855
+      ;;
20645
27856
 
20646
 
-# Report which library types will actually be built
20647
 
-{ echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5
20648
 
-echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; }
20649
 
-{ echo "$as_me:$LINENO: result: $can_build_shared" >&5
20650
 
-echo "${ECHO_T}$can_build_shared" >&6; }
 
27857
-rm -rf conftest.dSYM
 
27858
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
27859
-      conftest$ac_exeext conftest.$ac_ext
 
27860
-LIBS=$ac_check_lib_save_LIBS
 
27861
-fi
 
27862
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5
 
27863
-$as_echo "$ac_cv_lib_dld_dld_link" >&6; }
 
27864
-if test "x$ac_cv_lib_dld_dld_link" = x""yes; then
 
27865
-  lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"
 
27866
-fi
20651
27867
+    msdosdjgpp*)
20652
27868
+      # Just because we use GCC doesn't mean we suddenly get shared libraries
20653
27869
+      # on systems that don't support them.
20655
27871
+      enable_shared=no
20656
27872
+      ;;
20657
27873
 
20658
 
-{ echo "$as_me:$LINENO: checking whether to build shared libraries" >&5
20659
 
-echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; }
20660
 
-test "$can_build_shared" = "no" && enable_shared=no
20661
27874
+    *nto* | *qnx*)
20662
27875
+      # QNX uses GNU C++, but need to define -shared option too, otherwise
20663
27876
+      # it will coredump.
20664
27877
+      lt_prog_compiler_pic='-fPIC -shared'
20665
27878
+      ;;
20666
27879
 
20667
 
-# On AIX, shared libraries and static libraries use the same namespace, and
20668
 
-# are all built from PIC.
20669
 
-case $host_os in
20670
 
-aix3*)
20671
 
-  test "$enable_shared" = yes && enable_static=no
20672
 
-  if test -n "$RANLIB"; then
20673
 
-    archive_cmds="$archive_cmds~\$RANLIB \$lib"
20674
 
-    postinstall_cmds='$RANLIB $lib'
 
27880
-fi
20675
27881
+    sysv4*MP*)
20676
27882
+      if test -d /usr/nec; then
20677
27883
+       lt_prog_compiler_pic=-Kconform_pic
20678
 
   fi
20679
 
   ;;
 
27884
+      fi
 
27885
+      ;;
20680
27886
 
20681
 
-aix4* | aix5*)
20682
 
-  if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
20683
 
-    test "$enable_shared" = yes && enable_static=no
20684
27887
+    *)
20685
27888
+      lt_prog_compiler_pic='-fPIC'
20686
27889
+      ;;
20695
27898
+       lt_prog_compiler_static='-Bstatic'
20696
27899
+      else
20697
27900
+       lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp'
20698
 
   fi
20699
 
     ;;
20700
 
-esac
20701
 
-{ echo "$as_me:$LINENO: result: $enable_shared" >&5
20702
 
-echo "${ECHO_T}$enable_shared" >&6; }
 
27901
+      fi
 
27902
+      ;;
20703
27903
 
20704
 
-{ echo "$as_me:$LINENO: checking whether to build static libraries" >&5
20705
 
-echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; }
20706
 
-# Make sure either enable_shared or enable_static is yes.
20707
 
-test "$enable_shared" = yes || enable_static=yes
20708
 
-{ echo "$as_me:$LINENO: result: $enable_static" >&5
20709
 
-echo "${ECHO_T}$enable_static" >&6; }
 
27904
-fi
20710
27905
+    mingw* | cygwin* | pw32* | os2*)
20711
27906
+      # This hack is so that the source file can tell whether it is being
20712
27907
+      # built for inclusion in a dll (and should export symbols for example).
20713
27908
+      lt_prog_compiler_pic='-DDLL_EXPORT'
20714
27909
+      ;;
20715
27910
 
 
27911
+    hpux9* | hpux10* | hpux11*)
 
27912
+      lt_prog_compiler_wl='-Wl,'
 
27913
+      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
 
27914
+      # not for PA HP-UX.
 
27915
+      case $host_cpu in
 
27916
+      hppa*64*|ia64*)
 
27917
+       # +Z the default
 
27918
+       ;;
 
27919
+      *)
 
27920
+       lt_prog_compiler_pic='+Z'
 
27921
+       ;;
 
27922
+      esac
 
27923
+      # Is there a better lt_prog_compiler_static that works with the bundled CC?
 
27924
+      lt_prog_compiler_static='${wl}-a ${wl}archive'
 
27925
+      ;;
 
27926
 
 
27927
-fi
 
27928
+    irix5* | irix6* | nonstopux*)
 
27929
+      lt_prog_compiler_wl='-Wl,'
 
27930
+      # PIC (with -KPIC) is the default.
 
27931
+      lt_prog_compiler_static='-non_shared'
 
27932
+      ;;
 
27933
 
 
27934
+    linux* | k*bsd*-gnu)
 
27935
+      case $cc_basename in
 
27936
+      icc* | ecc* | ifort*)
 
27937
+       lt_prog_compiler_wl='-Wl,'
 
27938
+       lt_prog_compiler_pic='-KPIC'
 
27939
+       lt_prog_compiler_static='-static'
 
27940
+        ;;
 
27941
+      pgcc* | pgf77* | pgf90* | pgf95*)
 
27942
+        # Portland Group compilers (*not* the Pentium gcc compiler,
 
27943
+       # which looks to be a dead project)
 
27944
+       lt_prog_compiler_wl='-Wl,'
 
27945
+       lt_prog_compiler_pic='-fpic'
 
27946
+       lt_prog_compiler_static='-Bstatic'
 
27947
+        ;;
 
27948
+      ccc*)
 
27949
+        lt_prog_compiler_wl='-Wl,'
 
27950
+        # All Alpha code is PIC.
 
27951
+        lt_prog_compiler_static='-non_shared'
 
27952
+        ;;
 
27953
+      xl*)
 
27954
+       # IBM XL C 8.0/Fortran 10.1 on PPC
 
27955
+       lt_prog_compiler_wl='-Wl,'
 
27956
+       lt_prog_compiler_pic='-qpic'
 
27957
+       lt_prog_compiler_static='-qstaticlink'
 
27958
+       ;;
 
27959
+      *)
 
27960
+       case `$CC -V 2>&1 | sed 5q` in
 
27961
+       *Sun\ C*)
 
27962
+         # Sun C 5.9
 
27963
+         lt_prog_compiler_pic='-KPIC'
 
27964
+         lt_prog_compiler_static='-Bstatic'
 
27965
+         lt_prog_compiler_wl='-Wl,'
 
27966
+         ;;
 
27967
+       *Sun\ F*)
 
27968
+         # Sun Fortran 8.3 passes all unrecognized flags to the linker
 
27969
+         lt_prog_compiler_pic='-KPIC'
 
27970
+         lt_prog_compiler_static='-Bstatic'
 
27971
+         lt_prog_compiler_wl=''
 
27972
+         ;;
 
27973
+       esac
 
27974
+       ;;
 
27975
+      esac
 
27976
+      ;;
 
27977
 
 
27978
-fi
 
27979
+    newsos6)
 
27980
+      lt_prog_compiler_pic='-KPIC'
 
27981
+      lt_prog_compiler_static='-Bstatic'
 
27982
+      ;;
 
27983
 
 
27984
+    *nto* | *qnx*)
 
27985
+      # QNX uses GNU C++, but need to define -shared option too, otherwise
 
27986
+      # it will coredump.
 
27987
+      lt_prog_compiler_pic='-fPIC -shared'
 
27988
+      ;;
 
27989
 
 
27990
-fi
 
27991
+    osf3* | osf4* | osf5*)
 
27992
+      lt_prog_compiler_wl='-Wl,'
 
27993
+      # All OSF/1 code is PIC.
 
27994
+      lt_prog_compiler_static='-non_shared'
 
27995
+      ;;
 
27996
 
 
27997
-    ;;
 
27998
-  esac
 
27999
+    rdos*)
 
28000
+      lt_prog_compiler_static='-non_shared'
 
28001
+      ;;
 
28002
 
 
28003
-  if test "x$lt_cv_dlopen" != xno; then
 
28004
-    enable_dlopen=yes
 
28005
-  else
 
28006
-    enable_dlopen=no
 
28007
-  fi
 
28008
+    solaris*)
 
28009
+      lt_prog_compiler_pic='-KPIC'
 
28010
+      lt_prog_compiler_static='-Bstatic'
 
28011
+      case $cc_basename in
 
28012
+      f77* | f90* | f95*)
 
28013
+       lt_prog_compiler_wl='-Qoption ld ';;
 
28014
+      *)
 
28015
+       lt_prog_compiler_wl='-Wl,';;
 
28016
+      esac
 
28017
+      ;;
 
28018
 
 
28019
-  case $lt_cv_dlopen in
 
28020
-  dlopen)
 
28021
-    save_CPPFLAGS="$CPPFLAGS"
 
28022
-    test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
 
28023
+    sunos4*)
 
28024
+      lt_prog_compiler_wl='-Qoption ld '
 
28025
+      lt_prog_compiler_pic='-PIC'
 
28026
+      lt_prog_compiler_static='-Bstatic'
 
28027
+      ;;
 
28028
 
 
28029
-    save_LDFLAGS="$LDFLAGS"
 
28030
-    wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
 
28031
+    sysv4 | sysv4.2uw2* | sysv4.3*)
 
28032
+      lt_prog_compiler_wl='-Wl,'
 
28033
+      lt_prog_compiler_pic='-KPIC'
 
28034
+      lt_prog_compiler_static='-Bstatic'
 
28035
+      ;;
 
28036
 
 
28037
-    save_LIBS="$LIBS"
 
28038
-    LIBS="$lt_cv_dlopen_libs $LIBS"
 
28039
+    sysv4*MP*)
 
28040
+      if test -d /usr/nec ;then
 
28041
+       lt_prog_compiler_pic='-Kconform_pic'
 
28042
+       lt_prog_compiler_static='-Bstatic'
 
28043
+      fi
 
28044
+      ;;
 
28045
 
 
28046
-    { $as_echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5
 
28047
-$as_echo_n "checking whether a program can dlopen itself... " >&6; }
 
28048
-if test "${lt_cv_dlopen_self+set}" = set; then
 
28049
-  $as_echo_n "(cached) " >&6
 
28050
-else
 
28051
-         if test "$cross_compiling" = yes; then :
 
28052
-  lt_cv_dlopen_self=cross
 
28053
-else
 
28054
-  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
28055
-  lt_status=$lt_dlunknown
 
28056
-  cat > conftest.$ac_ext <<EOF
 
28057
-#line 13208 "configure"
 
28058
-#include "confdefs.h"
 
28059
+    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
 
28060
+      lt_prog_compiler_wl='-Wl,'
 
28061
+      lt_prog_compiler_pic='-KPIC'
 
28062
+      lt_prog_compiler_static='-Bstatic'
 
28063
+      ;;
 
28064
 
 
28065
-#if HAVE_DLFCN_H
 
28066
-#include <dlfcn.h>
 
28067
-#endif
 
28068
+    unicos*)
 
28069
+      lt_prog_compiler_wl='-Wl,'
 
28070
+      lt_prog_compiler_can_build_shared=no
 
28071
+      ;;
 
28072
 
 
28073
-#include <stdio.h>
 
28074
+    uts4*)
 
28075
+      lt_prog_compiler_pic='-pic'
 
28076
+      lt_prog_compiler_static='-Bstatic'
 
28077
+      ;;
 
28078
 
 
28079
-#ifdef RTLD_GLOBAL
 
28080
-#  define LT_DLGLOBAL          RTLD_GLOBAL
 
28081
-#else
 
28082
-#  ifdef DL_GLOBAL
 
28083
-#    define LT_DLGLOBAL                DL_GLOBAL
 
28084
-#  else
 
28085
-#    define LT_DLGLOBAL                0
 
28086
-#  endif
 
28087
-#endif
 
28088
+    *)
 
28089
+      lt_prog_compiler_can_build_shared=no
 
28090
+      ;;
 
28091
+    esac
 
28092
+  fi
 
28093
 
 
28094
-/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
 
28095
-   find out it does not work in some platform. */
 
28096
-#ifndef LT_DLLAZY_OR_NOW
 
28097
-#  ifdef RTLD_LAZY
 
28098
-#    define LT_DLLAZY_OR_NOW           RTLD_LAZY
 
28099
-#  else
 
28100
-#    ifdef DL_LAZY
 
28101
-#      define LT_DLLAZY_OR_NOW         DL_LAZY
 
28102
-#    else
 
28103
-#      ifdef RTLD_NOW
 
28104
-#        define LT_DLLAZY_OR_NOW       RTLD_NOW
 
28105
-#      else
 
28106
-#        ifdef DL_NOW
 
28107
-#          define LT_DLLAZY_OR_NOW     DL_NOW
 
28108
-#        else
 
28109
-#          define LT_DLLAZY_OR_NOW     0
 
28110
-#        endif
 
28111
-#      endif
 
28112
-#    endif
 
28113
-#  endif
 
28114
-#endif
 
28115
-
 
28116
-#ifdef __cplusplus
 
28117
-extern "C" void exit (int);
 
28118
-#endif
 
28119
+case $host_os in
 
28120
+  # For platforms which do not support PIC, -DPIC is meaningless:
 
28121
+  *djgpp*)
 
28122
+    lt_prog_compiler_pic=
 
28123
+    ;;
 
28124
+  *)
 
28125
+    lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC"
 
28126
+    ;;
 
28127
+esac
 
28128
+{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5
 
28129
+echo "${ECHO_T}$lt_prog_compiler_pic" >&6; }
 
28130
 
 
28131
-void fnord() { int i=42;}
 
28132
-int main ()
 
28133
-{
 
28134
-  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
 
28135
-  int status = $lt_dlunknown;
 
28136
 
 
28137
-  if (self)
 
28138
-    {
 
28139
-      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
 
28140
-      else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
 
28141
-      /* dlclose (self); */
 
28142
-    }
 
28143
-  else
 
28144
-    puts (dlerror ());
 
28145
 
 
28146
-    exit (status);
 
28147
-}
 
28148
-EOF
 
28149
-  if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
28150
-  (eval $ac_link) 2>&5
 
28151
-  ac_status=$?
 
28152
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
28153
-  (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
 
28154
-    (./conftest; exit; ) >&5 2>/dev/null
 
28155
-    lt_status=$?
 
28156
-    case x$lt_status in
 
28157
-      x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;;
 
28158
-      x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;;
 
28159
-      x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;;
 
28160
-    esac
 
28161
-  else :
 
28162
-    # compilation failed
 
28163
-    lt_cv_dlopen_self=no
 
28164
-  fi
 
28165
-fi
 
28166
-rm -fr conftest*
 
28167
 
 
28168
 
 
28169
-fi
 
28170
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5
 
28171
-$as_echo "$lt_cv_dlopen_self" >&6; }
 
28172
 
 
28173
-    if test "x$lt_cv_dlopen_self" = xyes; then
 
28174
-      wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
 
28175
-      { $as_echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5
 
28176
-$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; }
 
28177
-if test "${lt_cv_dlopen_self_static+set}" = set; then
 
28178
-  $as_echo_n "(cached) " >&6
 
28179
-else
 
28180
-         if test "$cross_compiling" = yes; then :
 
28181
-  lt_cv_dlopen_self_static=cross
 
28182
+#
 
28183
+# Check to make sure the PIC flag actually works.
 
28184
+#
 
28185
+if test -n "$lt_prog_compiler_pic"; then
 
28186
+  { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5
 
28187
+echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6; }
 
28188
+if test "${lt_cv_prog_compiler_pic_works+set}" = set; then
 
28189
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
28190
 else
 
28191
-  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
28192
-  lt_status=$lt_dlunknown
 
28193
-  cat > conftest.$ac_ext <<EOF
 
28194
-#line 13308 "configure"
 
28195
-#include "confdefs.h"
 
28196
-
 
28197
-#if HAVE_DLFCN_H
 
28198
-#include <dlfcn.h>
 
28199
-#endif
 
28200
-
 
28201
-#include <stdio.h>
 
28202
-
 
28203
-#ifdef RTLD_GLOBAL
 
28204
-#  define LT_DLGLOBAL          RTLD_GLOBAL
 
28205
-#else
 
28206
-#  ifdef DL_GLOBAL
 
28207
-#    define LT_DLGLOBAL                DL_GLOBAL
 
28208
-#  else
 
28209
-#    define LT_DLGLOBAL                0
 
28210
-#  endif
 
28211
-#endif
 
28212
-
 
28213
-/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
 
28214
-   find out it does not work in some platform. */
 
28215
-#ifndef LT_DLLAZY_OR_NOW
 
28216
-#  ifdef RTLD_LAZY
 
28217
-#    define LT_DLLAZY_OR_NOW           RTLD_LAZY
 
28218
-#  else
 
28219
-#    ifdef DL_LAZY
 
28220
-#      define LT_DLLAZY_OR_NOW         DL_LAZY
 
28221
-#    else
 
28222
-#      ifdef RTLD_NOW
 
28223
-#        define LT_DLLAZY_OR_NOW       RTLD_NOW
 
28224
-#      else
 
28225
-#        ifdef DL_NOW
 
28226
-#          define LT_DLLAZY_OR_NOW     DL_NOW
 
28227
-#        else
 
28228
-#          define LT_DLLAZY_OR_NOW     0
 
28229
-#        endif
 
28230
-#      endif
 
28231
-#    endif
 
28232
-#  endif
 
28233
-#endif
 
28234
-
 
28235
-#ifdef __cplusplus
 
28236
-extern "C" void exit (int);
 
28237
-#endif
 
28238
-
 
28239
-void fnord() { int i=42;}
 
28240
-int main ()
 
28241
-{
 
28242
-  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
 
28243
-  int status = $lt_dlunknown;
 
28244
-
 
28245
-  if (self)
 
28246
-    {
 
28247
-      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
 
28248
-      else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
 
28249
-      /* dlclose (self); */
 
28250
-    }
 
28251
-  else
 
28252
-    puts (dlerror ());
 
28253
+  lt_cv_prog_compiler_pic_works=no
 
28254
+   ac_outfile=conftest.$ac_objext
 
28255
+   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
 
28256
+   lt_compiler_flag="$lt_prog_compiler_pic -DPIC"
 
28257
+   # Insert the option either (1) after the last *FLAGS variable, or
 
28258
+   # (2) before a word containing "conftest.", or (3) at the end.
 
28259
+   # Note that $ac_compile itself does not contain backslashes and begins
 
28260
+   # with a dollar sign (not a hyphen), so the echo should work correctly.
 
28261
+   # The option is referenced via a variable to avoid confusing sed.
 
28262
+   lt_compile=`echo "$ac_compile" | $SED \
 
28263
+   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
28264
+   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
28265
+   -e 's:$: $lt_compiler_flag:'`
 
28266
+   (eval echo "\"\$as_me:11539: $lt_compile\"" >&5)
 
28267
+   (eval "$lt_compile" 2>conftest.err)
 
28268
+   ac_status=$?
 
28269
+   cat conftest.err >&5
 
28270
+   echo "$as_me:11543: \$? = $ac_status" >&5
 
28271
+   if (exit $ac_status) && test -s "$ac_outfile"; then
 
28272
+     # The compiler can only warn and ignore the option if not recognized
 
28273
+     # So say no if there are warnings other than the usual output.
 
28274
+     $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
 
28275
+     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
 
28276
+     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
 
28277
+       lt_cv_prog_compiler_pic_works=yes
 
28278
+     fi
 
28279
+   fi
 
28280
+   $RM conftest*
 
28281
 
 
28282
-    exit (status);
 
28283
-}
 
28284
-EOF
 
28285
-  if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
28286
-  (eval $ac_link) 2>&5
 
28287
-  ac_status=$?
 
28288
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
28289
-  (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
 
28290
-    (./conftest; exit; ) >&5 2>/dev/null
 
28291
-    lt_status=$?
 
28292
-    case x$lt_status in
 
28293
-      x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;;
 
28294
-      x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;;
 
28295
-      x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;;
 
28296
-    esac
 
28297
-  else :
 
28298
-    # compilation failed
 
28299
-    lt_cv_dlopen_self_static=no
 
28300
-  fi
 
28301
 fi
 
28302
-rm -fr conftest*
 
28303
-
 
28304
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works" >&5
 
28305
+echo "${ECHO_T}$lt_cv_prog_compiler_pic_works" >&6; }
 
28306
 
 
28307
+if test x"$lt_cv_prog_compiler_pic_works" = xyes; then
 
28308
+    case $lt_prog_compiler_pic in
 
28309
+     "" | " "*) ;;
 
28310
+     *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;;
 
28311
+     esac
 
28312
+else
 
28313
+    lt_prog_compiler_pic=
 
28314
+     lt_prog_compiler_can_build_shared=no
 
28315
 fi
 
28316
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5
 
28317
-$as_echo "$lt_cv_dlopen_self_static" >&6; }
 
28318
-    fi
 
28319
-
 
28320
-    CPPFLAGS="$save_CPPFLAGS"
 
28321
-    LDFLAGS="$save_LDFLAGS"
 
28322
-    LIBS="$save_LIBS"
 
28323
-    ;;
 
28324
-  esac
 
28325
-
 
28326
-  case $lt_cv_dlopen_self in
 
28327
-  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
 
28328
-  *) enable_dlopen_self=unknown ;;
 
28329
-  esac
 
28330
 
 
28331
-  case $lt_cv_dlopen_self_static in
 
28332
-  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
 
28333
-  *) enable_dlopen_self_static=unknown ;;
 
28334
-  esac
 
28335
 fi
 
28336
 
 
28337
 
 
28338
-# Report which library types will actually be built
 
28339
-{ $as_echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5
 
28340
-$as_echo_n "checking if libtool supports shared libraries... " >&6; }
 
28341
-{ $as_echo "$as_me:$LINENO: result: $can_build_shared" >&5
 
28342
-$as_echo "$can_build_shared" >&6; }
 
28343
-
 
28344
-{ $as_echo "$as_me:$LINENO: checking whether to build shared libraries" >&5
 
28345
-$as_echo_n "checking whether to build shared libraries... " >&6; }
 
28346
-test "$can_build_shared" = "no" && enable_shared=no
 
28347
-
 
28348
-# On AIX, shared libraries and static libraries use the same namespace, and
 
28349
-# are all built from PIC.
 
28350
-case $host_os in
 
28351
-aix3*)
 
28352
-  test "$enable_shared" = yes && enable_static=no
 
28353
-  if test -n "$RANLIB"; then
 
28354
-    archive_cmds="$archive_cmds~\$RANLIB \$lib"
 
28355
-    postinstall_cmds='$RANLIB $lib'
 
28356
-  fi
 
28357
-  ;;
 
28358
-
 
28359
-aix[4-9]*)
 
28360
-  if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
 
28361
-    test "$enable_shared" = yes && enable_static=no
 
28362
-  fi
 
28363
-    ;;
 
28364
-esac
 
28365
-{ $as_echo "$as_me:$LINENO: result: $enable_shared" >&5
 
28366
-$as_echo "$enable_shared" >&6; }
 
28367
-
 
28368
-{ $as_echo "$as_me:$LINENO: checking whether to build static libraries" >&5
 
28369
-$as_echo_n "checking whether to build static libraries... " >&6; }
 
28370
-# Make sure either enable_shared or enable_static is yes.
 
28371
-test "$enable_shared" = yes || enable_static=yes
 
28372
-{ $as_echo "$as_me:$LINENO: result: $enable_static" >&5
 
28373
-$as_echo "$enable_static" >&6; }
 
28374
-
20716
28375
-# The else clause should only fire when bootstrapping the
20717
28376
-# libtool distribution, otherwise you forgot to ship ltmain.sh
20718
28377
-# with your package, and you will get complaints that there are
20753
28412
-    predeps \
20754
28413
-    postdeps \
20755
28414
-    compiler_lib_search_path \
 
28415
-    compiler_lib_search_dirs \
20756
28416
-    archive_cmds \
20757
28417
-    archive_expsym_cmds \
20758
28418
-    postinstall_cmds \
20787
28447
-    sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
20788
28448
-      # Double-quote double-evaled strings.
20789
28449
-      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
20790
 
+    hpux9* | hpux10* | hpux11*)
20791
 
+      lt_prog_compiler_wl='-Wl,'
20792
 
+      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
20793
 
+      # not for PA HP-UX.
20794
 
+      case $host_cpu in
20795
 
+      hppa*64*|ia64*)
20796
 
+       # +Z the default
20797
 
       ;;
20798
 
     *)
 
28450
-      ;;
 
28451
-    *)
20799
28452
-      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
20800
 
+       lt_prog_compiler_pic='+Z'
20801
 
       ;;
20802
 
     esac
 
28453
-      ;;
 
28454
-    esac
20803
28455
-  done
20804
 
+      # Is there a better lt_prog_compiler_static that works with the bundled CC?
20805
 
+      lt_prog_compiler_static='${wl}-a ${wl}archive'
20806
 
+      ;;
20807
28456
 
20808
28457
-  case $lt_echo in
20809
28458
-  *'\$0 --fallback-echo"')
20810
28459
-    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
20811
 
+    irix5* | irix6* | nonstopux*)
20812
 
+      lt_prog_compiler_wl='-Wl,'
20813
 
+      # PIC (with -KPIC) is the default.
20814
 
+      lt_prog_compiler_static='-non_shared'
20815
 
     ;;
 
28460
-    ;;
20816
28461
-  esac
20817
28462
 
20818
28463
-cfgfile="${ofile}T"
20819
28464
-  trap "$rm \"$cfgfile\"; exit 1" 1 2 15
20820
28465
-  $rm -f "$cfgfile"
20821
 
-  { echo "$as_me:$LINENO: creating $ofile" >&5
20822
 
-echo "$as_me: creating $ofile" >&6;}
20823
 
+    linux* | k*bsd*-gnu)
20824
 
+      case $cc_basename in
20825
 
+      icc* | ecc* | ifort*)
20826
 
+       lt_prog_compiler_wl='-Wl,'
20827
 
+       lt_prog_compiler_pic='-KPIC'
20828
 
+       lt_prog_compiler_static='-static'
20829
 
+        ;;
20830
 
+      pgcc* | pgf77* | pgf90* | pgf95*)
20831
 
+        # Portland Group compilers (*not* the Pentium gcc compiler,
20832
 
+       # which looks to be a dead project)
20833
 
+       lt_prog_compiler_wl='-Wl,'
20834
 
+       lt_prog_compiler_pic='-fpic'
20835
 
+       lt_prog_compiler_static='-Bstatic'
20836
 
+        ;;
20837
 
+      ccc*)
20838
 
+        lt_prog_compiler_wl='-Wl,'
20839
 
+        # All Alpha code is PIC.
20840
 
+        lt_prog_compiler_static='-non_shared'
20841
 
+        ;;
20842
 
+      xl*)
20843
 
+       # IBM XL C 8.0/Fortran 10.1 on PPC
20844
 
+       lt_prog_compiler_wl='-Wl,'
20845
 
+       lt_prog_compiler_pic='-qpic'
20846
 
+       lt_prog_compiler_static='-qstaticlink'
20847
 
+       ;;
20848
 
+      *)
20849
 
+       case `$CC -V 2>&1 | sed 5q` in
20850
 
+       *Sun\ C*)
20851
 
+         # Sun C 5.9
20852
 
+         lt_prog_compiler_pic='-KPIC'
20853
 
+         lt_prog_compiler_static='-Bstatic'
20854
 
+         lt_prog_compiler_wl='-Wl,'
20855
 
+         ;;
20856
 
+       *Sun\ F*)
20857
 
+         # Sun Fortran 8.3 passes all unrecognized flags to the linker
20858
 
+         lt_prog_compiler_pic='-KPIC'
20859
 
+         lt_prog_compiler_static='-Bstatic'
20860
 
+         lt_prog_compiler_wl=''
20861
 
+         ;;
20862
 
+       esac
20863
 
+       ;;
20864
 
+      esac
20865
 
+      ;;
 
28466
-  { $as_echo "$as_me:$LINENO: creating $ofile" >&5
 
28467
-$as_echo "$as_me: creating $ofile" >&6;}
20866
28468
 
20867
28469
-  cat <<__EOF__ >> "$cfgfile"
20868
28470
-#! $SHELL
20869
 
+    newsos6)
20870
 
+      lt_prog_compiler_pic='-KPIC'
20871
 
+      lt_prog_compiler_static='-Bstatic'
20872
 
+      ;;
20873
28471
 
20874
28472
-# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
20875
28473
-# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
20876
28474
-# NOTE: Changes made to this file will be lost: look at ltmain.sh.
20877
28475
-#
20878
 
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
 
28476
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
20879
28477
-# Free Software Foundation, Inc.
20880
28478
-#
20881
28479
-# This file is part of GNU Libtool:
20890
28488
-# WITHOUT ANY WARRANTY; without even the implied warranty of
20891
28489
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20892
28490
-# General Public License for more details.
20893
 
-#
 
28491
 #
20894
28492
-# You should have received a copy of the GNU General Public License
20895
28493
-# along with this program; if not, write to the Free Software
20896
28494
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20897
 
-#
 
28495
+# Check to make sure the static flag actually works.
 
28496
 #
20898
28497
-# As a special exception to the GNU General Public License, if you
20899
28498
-# distribute this file as part of a program that contains a
20900
28499
-# configuration script generated by Autoconf, you may include it under
20901
28500
-# the same distribution terms that you use for the rest of that program.
20902
 
+    *nto* | *qnx*)
20903
 
+      # QNX uses GNU C++, but need to define -shared option too, otherwise
20904
 
+      # it will coredump.
20905
 
+      lt_prog_compiler_pic='-fPIC -shared'
20906
 
+      ;;
20907
 
 
20908
 
-# A sed program that does not truncate output.
20909
 
-SED=$lt_SED
20910
 
+    osf3* | osf4* | osf5*)
20911
 
+      lt_prog_compiler_wl='-Wl,'
20912
 
+      # All OSF/1 code is PIC.
20913
 
+      lt_prog_compiler_static='-non_shared'
20914
 
+      ;;
20915
 
 
20916
 
-# Sed that helps us avoid accidentally triggering echo(1) options like -n.
20917
 
-Xsed="$SED -e 1s/^X//"
20918
 
+    rdos*)
20919
 
+      lt_prog_compiler_static='-non_shared'
20920
 
+      ;;
20921
 
 
20922
 
-# The HP-UX ksh and POSIX shell print the target directory to stdout
20923
 
-# if CDPATH is set.
20924
 
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
20925
 
+    solaris*)
20926
 
+      lt_prog_compiler_pic='-KPIC'
20927
 
+      lt_prog_compiler_static='-Bstatic'
20928
 
+      case $cc_basename in
20929
 
+      f77* | f90* | f95*)
20930
 
+       lt_prog_compiler_wl='-Qoption ld ';;
20931
 
+      *)
20932
 
+       lt_prog_compiler_wl='-Wl,';;
20933
 
+      esac
20934
 
+      ;;
20935
 
 
20936
 
-# The names of the tagged configurations supported by this script.
20937
 
-available_tags=
20938
 
+    sunos4*)
20939
 
+      lt_prog_compiler_wl='-Qoption ld '
20940
 
+      lt_prog_compiler_pic='-PIC'
20941
 
+      lt_prog_compiler_static='-Bstatic'
20942
 
+      ;;
20943
 
 
20944
 
-# ### BEGIN LIBTOOL CONFIG
20945
 
+    sysv4 | sysv4.2uw2* | sysv4.3*)
20946
 
+      lt_prog_compiler_wl='-Wl,'
20947
 
+      lt_prog_compiler_pic='-KPIC'
20948
 
+      lt_prog_compiler_static='-Bstatic'
20949
 
+      ;;
20950
 
 
20951
 
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
20952
 
+    sysv4*MP*)
20953
 
+      if test -d /usr/nec ;then
20954
 
+       lt_prog_compiler_pic='-Kconform_pic'
20955
 
+       lt_prog_compiler_static='-Bstatic'
20956
 
+      fi
20957
 
+      ;;
20958
 
 
20959
 
-# Shell to use when invoking shell scripts.
20960
 
-SHELL=$lt_SHELL
20961
 
+    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
20962
 
+      lt_prog_compiler_wl='-Wl,'
20963
 
+      lt_prog_compiler_pic='-KPIC'
20964
 
+      lt_prog_compiler_static='-Bstatic'
20965
 
+      ;;
20966
 
 
20967
 
-# Whether or not to build shared libraries.
20968
 
-build_libtool_libs=$enable_shared
20969
 
+    unicos*)
20970
 
+      lt_prog_compiler_wl='-Wl,'
20971
 
+      lt_prog_compiler_can_build_shared=no
20972
 
+      ;;
20973
 
 
20974
 
-# Whether or not to build static libraries.
20975
 
-build_old_libs=$enable_static
20976
 
+    uts4*)
20977
 
+      lt_prog_compiler_pic='-pic'
20978
 
+      lt_prog_compiler_static='-Bstatic'
20979
 
+      ;;
20980
 
 
20981
 
-# Whether or not to add -lc for building shared libraries.
20982
 
-build_libtool_need_lc=$archive_cmds_need_lc
20983
 
+    *)
20984
 
+      lt_prog_compiler_can_build_shared=no
20985
 
+      ;;
20986
 
+    esac
20987
 
+  fi
20988
 
 
20989
 
-# Whether or not to disallow shared libs when runtime libs are static
20990
 
-allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
20991
 
+case $host_os in
20992
 
+  # For platforms which do not support PIC, -DPIC is meaningless:
20993
 
+  *djgpp*)
20994
 
+    lt_prog_compiler_pic=
20995
 
+    ;;
20996
 
+  *)
20997
 
+    lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC"
20998
 
+    ;;
20999
 
+esac
21000
 
+{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5
21001
 
+echo "${ECHO_T}$lt_prog_compiler_pic" >&6; }
21002
 
 
21003
 
-# Whether or not to optimize for fast installation.
21004
 
-fast_install=$enable_fast_install
21005
 
 
21006
 
-# The host system.
21007
 
-host_alias=$host_alias
21008
 
-host=$host
21009
 
-host_os=$host_os
21010
 
 
21011
 
-# The build system.
21012
 
-build_alias=$build_alias
21013
 
-build=$build
21014
 
-build_os=$build_os
21015
 
 
21016
 
-# An echo program that does not interpret backslashes.
21017
 
-echo=$lt_echo
21018
 
 
21019
 
-# The archiver.
21020
 
-AR=$lt_AR
21021
 
-AR_FLAGS=$lt_AR_FLAGS
21022
 
 
21023
 
-# A C compiler.
21024
 
-LTCC=$lt_LTCC
21025
 
+#
21026
 
+# Check to make sure the PIC flag actually works.
21027
 
+#
21028
 
+if test -n "$lt_prog_compiler_pic"; then
21029
 
+  { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5
21030
 
+echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6; }
21031
 
+if test "${lt_cv_prog_compiler_pic_works+set}" = set; then
21032
 
+  echo $ECHO_N "(cached) $ECHO_C" >&6
21033
 
+else
21034
 
+  lt_cv_prog_compiler_pic_works=no
21035
 
+   ac_outfile=conftest.$ac_objext
21036
 
+   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
21037
 
+   lt_compiler_flag="$lt_prog_compiler_pic -DPIC"
21038
 
+   # Insert the option either (1) after the last *FLAGS variable, or
21039
 
+   # (2) before a word containing "conftest.", or (3) at the end.
21040
 
+   # Note that $ac_compile itself does not contain backslashes and begins
21041
 
+   # with a dollar sign (not a hyphen), so the echo should work correctly.
21042
 
+   # The option is referenced via a variable to avoid confusing sed.
21043
 
+   lt_compile=`echo "$ac_compile" | $SED \
21044
 
+   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
21045
 
+   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
21046
 
+   -e 's:$: $lt_compiler_flag:'`
21047
 
+   (eval echo "\"\$as_me:11539: $lt_compile\"" >&5)
21048
 
+   (eval "$lt_compile" 2>conftest.err)
21049
 
+   ac_status=$?
21050
 
+   cat conftest.err >&5
21051
 
+   echo "$as_me:11543: \$? = $ac_status" >&5
21052
 
+   if (exit $ac_status) && test -s "$ac_outfile"; then
21053
 
+     # The compiler can only warn and ignore the option if not recognized
21054
 
+     # So say no if there are warnings other than the usual output.
21055
 
+     $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
21056
 
+     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
21057
 
+     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
21058
 
+       lt_cv_prog_compiler_pic_works=yes
21059
 
+     fi
21060
 
+   fi
21061
 
+   $RM conftest*
21062
 
 
21063
 
-# LTCC compiler flags.
21064
 
-LTCFLAGS=$lt_LTCFLAGS
21065
 
+fi
21066
 
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works" >&5
21067
 
+echo "${ECHO_T}$lt_cv_prog_compiler_pic_works" >&6; }
21068
 
 
21069
 
-# A language-specific compiler.
21070
 
-CC=$lt_compiler
21071
 
+if test x"$lt_cv_prog_compiler_pic_works" = xyes; then
21072
 
+    case $lt_prog_compiler_pic in
21073
 
+     "" | " "*) ;;
21074
 
+     *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;;
21075
 
+     esac
21076
 
+else
21077
 
+    lt_prog_compiler_pic=
21078
 
+     lt_prog_compiler_can_build_shared=no
21079
 
+fi
21080
 
 
21081
 
-# Is the compiler the GNU C compiler?
21082
 
-with_gcc=$GCC
21083
 
+fi
21084
 
 
21085
 
-# An ERE matcher.
21086
 
-EGREP=$lt_EGREP
21087
 
 
21088
 
-# The linker used to build libraries.
21089
 
-LD=$lt_LD
21090
 
 
21091
 
-# Whether we need hard or soft links.
21092
 
-LN_S=$lt_LN_S
21093
 
 
21094
 
-# A BSD-compatible nm program.
21095
 
-NM=$lt_NM
21096
 
 
21097
 
-# A symbol stripping program
21098
 
-STRIP=$lt_STRIP
21099
 
 
21100
 
-# Used to examine libraries when file_magic_cmd begins "file"
21101
 
-MAGIC_CMD=$MAGIC_CMD
21102
 
+#
21103
 
+# Check to make sure the static flag actually works.
21104
 
+#
21105
28501
+wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
21106
28502
+{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5
21107
28503
+echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; }
21130
28526
+   $RM -r conftest*
21131
28527
+   LDFLAGS="$save_LDFLAGS"
21132
28528
 
21133
 
-# Used on cygwin: DLL creation program.
21134
 
-DLLTOOL="$DLLTOOL"
 
28529
-# A sed program that does not truncate output.
 
28530
-SED=$lt_SED
21135
28531
+fi
21136
28532
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works" >&5
21137
28533
+echo "${ECHO_T}$lt_cv_prog_compiler_static_works" >&6; }
21138
28534
 
21139
 
-# Used on cygwin: object dumper.
21140
 
-OBJDUMP="$OBJDUMP"
 
28535
-# Sed that helps us avoid accidentally triggering echo(1) options like -n.
 
28536
-Xsed="$SED -e 1s/^X//"
21141
28537
+if test x"$lt_cv_prog_compiler_static_works" = xyes; then
21142
28538
+    :
21143
28539
+else
21144
28540
+    lt_prog_compiler_static=
21145
28541
+fi
21146
28542
 
21147
 
-# Used on cygwin: assembler.
21148
 
-AS="$AS"
21149
 
 
21150
 
-# The name of the directory that contains temporary libtool files.
21151
 
-objdir=$objdir
21152
 
 
21153
 
-# How to create reloadable object files.
21154
 
-reload_flag=$lt_reload_flag
21155
 
-reload_cmds=$lt_reload_cmds
21156
 
 
21157
 
-# How to pass a linker flag through the compiler.
21158
 
-wl=$lt_lt_prog_compiler_wl
21159
 
 
21160
 
-# Object file suffix (normally "o").
21161
 
-objext="$ac_objext"
21162
 
 
21163
 
-# Old archive suffix (normally "a").
21164
 
-libext="$libext"
21165
 
 
21166
 
-# Shared library suffix (normally ".so").
21167
 
-shrext_cmds='$shrext_cmds'
 
28543
-# The HP-UX ksh and POSIX shell print the target directory to stdout
 
28544
-# if CDPATH is set.
 
28545
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
28546
 
 
28547
-# The names of the tagged configurations supported by this script.
 
28548
-available_tags=
 
28549
 
 
28550
-# ### BEGIN LIBTOOL CONFIG
 
28551
 
 
28552
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
 
28553
 
 
28554
-# Shell to use when invoking shell scripts.
 
28555
-SHELL=$lt_SHELL
 
28556
-
 
28557
-# Whether or not to build shared libraries.
 
28558
-build_libtool_libs=$enable_shared
 
28559
-
 
28560
-# Whether or not to build static libraries.
 
28561
-build_old_libs=$enable_static
 
28562
-
 
28563
-# Whether or not to add -lc for building shared libraries.
 
28564
-build_libtool_need_lc=$archive_cmds_need_lc
 
28565
-
 
28566
-# Whether or not to disallow shared libs when runtime libs are static
 
28567
-allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
 
28568
-
 
28569
-# Whether or not to optimize for fast installation.
 
28570
-fast_install=$enable_fast_install
 
28571
 
 
28572
-# The host system.
 
28573
-host_alias=$host_alias
 
28574
-host=$host
 
28575
-host_os=$host_os
 
28576
 
 
28577
-# The build system.
 
28578
-build_alias=$build_alias
 
28579
-build=$build
 
28580
-build_os=$build_os
21168
28581
+  { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
21169
28582
+echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; }
21170
28583
+if test "${lt_cv_prog_compiler_c_o+set}" = set; then
21177
28590
+   mkdir out
21178
28591
+   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
21179
28592
 
21180
 
-# Executable file suffix (normally "").
21181
 
-exeext="$exeext"
 
28593
-# An echo program that does not interpret backslashes.
 
28594
-echo=$lt_echo
21182
28595
+   lt_compiler_flag="-o out/conftest2.$ac_objext"
21183
28596
+   # Insert the option either (1) after the last *FLAGS variable, or
21184
28597
+   # (2) before a word containing "conftest.", or (3) at the end.
21213
28626
+   $RM -r conftest
21214
28627
+   $RM conftest*
21215
28628
 
21216
 
-# Additional compiler flags for building library objects.
21217
 
-pic_flag=$lt_lt_prog_compiler_pic
21218
 
-pic_mode=$pic_mode
 
28629
-# The archiver.
 
28630
-AR=$lt_AR
 
28631
-AR_FLAGS=$lt_AR_FLAGS
21219
28632
+fi
21220
28633
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5
21221
28634
+echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6; }
21222
28635
 
21223
 
-# What is the maximum length of a command?
21224
 
-max_cmd_len=$lt_cv_sys_max_cmd_len
21225
 
 
21226
 
-# Does compiler simultaneously support -c and -o options?
21227
 
-compiler_c_o=$lt_lt_cv_prog_compiler_c_o
21228
 
 
21229
 
-# Must we lock files when doing compilation?
21230
 
-need_locks=$lt_need_locks
21231
 
 
21232
 
-# Do we need the lib prefix for modules?
21233
 
-need_lib_prefix=$need_lib_prefix
21234
 
 
21235
 
-# Do we need a version for libraries?
21236
 
-need_version=$need_version
21237
 
 
21238
 
-# Whether dlopen is supported.
21239
 
-dlopen_support=$enable_dlopen
 
28636
-# A C compiler.
 
28637
-LTCC=$lt_LTCC
 
28638
 
 
28639
-# LTCC compiler flags.
 
28640
-LTCFLAGS=$lt_LTCFLAGS
 
28641
 
 
28642
-# A language-specific compiler.
 
28643
-CC=$lt_compiler
 
28644
 
 
28645
-# Is the compiler the GNU C compiler?
 
28646
-with_gcc=$GCC
 
28647
 
 
28648
-# An ERE matcher.
 
28649
-EGREP=$lt_EGREP
 
28650
 
 
28651
-# The linker used to build libraries.
 
28652
-LD=$lt_LD
21240
28653
+  { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
21241
28654
+echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; }
21242
28655
+if test "${lt_cv_prog_compiler_c_o+set}" = set; then
21249
28662
+   mkdir out
21250
28663
+   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
21251
28664
 
21252
 
-# Whether dlopen of programs is supported.
21253
 
-dlopen_self=$enable_dlopen_self
 
28665
-# Whether we need hard or soft links.
 
28666
-LN_S=$lt_LN_S
21254
28667
+   lt_compiler_flag="-o out/conftest2.$ac_objext"
21255
28668
+   # Insert the option either (1) after the last *FLAGS variable, or
21256
28669
+   # (2) before a word containing "conftest.", or (3) at the end.
21285
28698
+   $RM -r conftest
21286
28699
+   $RM conftest*
21287
28700
 
21288
 
-# Whether dlopen of statically linked programs is supported.
21289
 
-dlopen_self_static=$enable_dlopen_self_static
 
28701
-# A BSD-compatible nm program.
 
28702
-NM=$lt_NM
21290
28703
+fi
21291
28704
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5
21292
28705
+echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6; }
21293
28706
 
21294
 
-# Compiler flag to prevent dynamic linking.
21295
 
-link_static_flag=$lt_lt_prog_compiler_static
21296
 
 
21297
 
-# Compiler flag to turn off builtin functions.
21298
 
-no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
21299
 
 
21300
 
-# Compiler flag to allow reflexive dlopens.
21301
 
-export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
21302
 
 
21303
 
-# Compiler flag to generate shared objects directly from archives.
21304
 
-whole_archive_flag_spec=$lt_whole_archive_flag_spec
 
28707
-# A symbol stripping program
 
28708
-STRIP=$lt_STRIP
 
28709
 
 
28710
-# Used to examine libraries when file_magic_cmd begins "file"
 
28711
-MAGIC_CMD=$MAGIC_CMD
 
28712
 
 
28713
-# Used on cygwin: DLL creation program.
 
28714
-DLLTOOL="$DLLTOOL"
 
28715
 
 
28716
-# Used on cygwin: object dumper.
 
28717
-OBJDUMP="$OBJDUMP"
21305
28718
+hard_links="nottested"
21306
28719
+if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then
21307
28720
+  # do not overwrite the value of need_locks provided by the user
21324
28737
+  need_locks=no
21325
28738
+fi
21326
28739
 
21327
 
-# Compiler flag to generate thread-safe objects.
21328
 
-thread_safe_flag_spec=$lt_thread_safe_flag_spec
21329
 
 
21330
 
-# Library versioning type.
21331
 
-version_type=$version_type
21332
 
-
21333
 
-# Format of library name prefix.
21334
 
-libname_spec=$lt_libname_spec
21335
 
 
21336
 
-# List of archive names.  First name is the real one, the rest are links.
21337
 
-# The last name is the one that the linker finds with -lNAME.
21338
 
-library_names_spec=$lt_library_names_spec
21339
 
 
21340
 
-# The coded name of the library, if different from the real name.
21341
 
-soname_spec=$lt_soname_spec
21342
 
 
21343
 
-# Commands used to build and install an old-style archive.
21344
 
-RANLIB=$lt_RANLIB
21345
 
-old_archive_cmds=$lt_old_archive_cmds
21346
 
-old_postinstall_cmds=$lt_old_postinstall_cmds
21347
 
-old_postuninstall_cmds=$lt_old_postuninstall_cmds
21348
 
 
21349
 
-# Create an old-style archive from a shared archive.
21350
 
-old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
 
28740
-# Used on cygwin: assembler.
 
28741
-AS="$AS"
 
28742
 
 
28743
-# The name of the directory that contains temporary libtool files.
 
28744
-objdir=$objdir
 
28745
 
 
28746
-# How to create reloadable object files.
 
28747
-reload_flag=$lt_reload_flag
 
28748
-reload_cmds=$lt_reload_cmds
 
28749
 
 
28750
-# How to pass a linker flag through the compiler.
 
28751
-wl=$lt_lt_prog_compiler_wl
 
28752
 
 
28753
-# Object file suffix (normally "o").
 
28754
-objext="$ac_objext"
 
28755
 
 
28756
-# Old archive suffix (normally "a").
 
28757
-libext="$libext"
21351
28758
+  { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
21352
28759
+echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; }
21353
28760
 
21354
 
-# Create a temporary old-style archive to link instead of a shared archive.
21355
 
-old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
 
28761
-# Shared library suffix (normally ".so").
 
28762
-shrext_cmds='$shrext_cmds'
21356
28763
+  runpath_var=
21357
28764
+  allow_undefined_flag=
21358
28765
+  always_export_symbols=no
21394
28801
+  # Exclude shared library initialization/finalization symbols.
21395
28802
+  extract_expsyms_cmds=
21396
28803
 
21397
 
-# Commands used to build and install a shared archive.
21398
 
-archive_cmds=$lt_archive_cmds
21399
 
-archive_expsym_cmds=$lt_archive_expsym_cmds
21400
 
-postinstall_cmds=$lt_postinstall_cmds
21401
 
-postuninstall_cmds=$lt_postuninstall_cmds
 
28804
-# Executable file suffix (normally "").
 
28805
-exeext="$exeext"
21402
28806
+  case $host_os in
21403
28807
+  cygwin* | mingw* | pw32*)
21404
28808
+    # FIXME: the MSVC++ port hasn't been tested in a loooong time
21417
28821
+    ;;
21418
28822
+  esac
21419
28823
 
21420
 
-# Commands used to build a loadable module (assumed same as above if empty)
21421
 
-module_cmds=$lt_module_cmds
21422
 
-module_expsym_cmds=$lt_module_expsym_cmds
 
28824
-# Additional compiler flags for building library objects.
 
28825
-pic_flag=$lt_lt_prog_compiler_pic
 
28826
-pic_mode=$pic_mode
21423
28827
+  ld_shlibs=yes
21424
28828
+  if test "$with_gnu_ld" = yes; then
21425
28829
+    # If archive_cmds runs LD, not CC, wlarc should be empty
21426
28830
+    wlarc='${wl}'
21427
28831
 
21428
 
-# Commands to strip libraries.
21429
 
-old_striplib=$lt_old_striplib
21430
 
-striplib=$lt_striplib
 
28832
-# What is the maximum length of a command?
 
28833
-max_cmd_len=$lt_cv_sys_max_cmd_len
21431
28834
+    # Set some defaults for GNU ld with shared library support. These
21432
28835
+    # are reset later if shared libraries are not supported. Putting them
21433
28836
+    # here allows them to be overridden if necessary.
21449
28852
+      *) supports_anon_versioning=yes ;;
21450
28853
+    esac
21451
28854
 
21452
 
-# Dependencies to place before the objects being linked to create a
21453
 
-# shared library.
21454
 
-predep_objects=$lt_predep_objects
 
28855
-# Does compiler simultaneously support -c and -o options?
 
28856
-compiler_c_o=$lt_lt_cv_prog_compiler_c_o
21455
28857
+    # See if GNU ld supports shared libraries.
21456
28858
+    case $host_os in
21457
28859
+    aix[3-9]*)
21460
28862
+       ld_shlibs=no
21461
28863
+       cat <<_LT_EOF 1>&2
21462
28864
 
21463
 
-# Dependencies to place after the objects being linked to create a
21464
 
-# shared library.
21465
 
-postdep_objects=$lt_postdep_objects
 
28865
-# Must we lock files when doing compilation?
 
28866
-need_locks=$lt_need_locks
21466
28867
+*** Warning: the GNU linker, at least up to release 2.9.1, is reported
21467
28868
+*** to be unable to reliably create shared libraries on AIX.
21468
28869
+*** Therefore, libtool is disabling shared libraries support.  If you
21469
28870
+*** really care for shared libraries, you may want to modify your PATH
21470
28871
+*** so that a non-GNU linker is found, and then restart.
21471
28872
 
21472
 
-# Dependencies to place before the objects being linked to create a
21473
 
-# shared library.
21474
 
-predeps=$lt_predeps
 
28873
-# Do we need the lib prefix for modules?
 
28874
-need_lib_prefix=$need_lib_prefix
21475
28875
+_LT_EOF
21476
28876
+      fi
21477
28877
+      ;;
21478
28878
 
21479
 
-# Dependencies to place after the objects being linked to create a
21480
 
-# shared library.
21481
 
-postdeps=$lt_postdeps
 
28879
-# Do we need a version for libraries?
 
28880
-need_version=$need_version
21482
28881
+    amigaos*)
21483
28882
+      case $host_cpu in
21484
28883
+      powerpc)
21494
28893
+      esac
21495
28894
+      ;;
21496
28895
 
21497
 
-# The library search path used internally by the compiler when linking
21498
 
-# a shared library.
21499
 
-compiler_lib_search_path=$lt_compiler_lib_search_path
 
28896
-# Whether dlopen is supported.
 
28897
-dlopen_support=$enable_dlopen
21500
28898
+    beos*)
21501
28899
+      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
21502
28900
+       allow_undefined_flag=unsupported
21508
28906
+      fi
21509
28907
+      ;;
21510
28908
 
21511
 
-# Method to check whether dependent libraries are shared objects.
21512
 
-deplibs_check_method=$lt_deplibs_check_method
 
28909
-# Whether dlopen of programs is supported.
 
28910
-dlopen_self=$enable_dlopen_self
21513
28911
+    cygwin* | mingw* | pw32*)
21514
28912
+      # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless,
21515
28913
+      # as there is no search path for DLLs.
21519
28917
+      enable_shared_with_static_runtimes=yes
21520
28918
+      export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols'
21521
28919
 
21522
 
-# Command to use when deplibs_check_method == file_magic.
21523
 
-file_magic_cmd=$lt_file_magic_cmd
 
28920
-# Whether dlopen of statically linked programs is supported.
 
28921
-dlopen_self_static=$enable_dlopen_self_static
 
28922
-
 
28923
-# Compiler flag to prevent dynamic linking.
 
28924
-link_static_flag=$lt_lt_prog_compiler_static
 
28925
-
 
28926
-# Compiler flag to turn off builtin functions.
 
28927
-no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
21524
28928
+      if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
21525
28929
+        archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
21526
28930
+       # If the export-symbols file already is a .def file (1st line
21537
28941
+      fi
21538
28942
+      ;;
21539
28943
 
21540
 
-# Flag that allows shared libraries with undefined symbols to be built.
21541
 
-allow_undefined_flag=$lt_allow_undefined_flag
 
28944
-# Compiler flag to allow reflexive dlopens.
 
28945
-export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
21542
28946
+    interix[3-9]*)
21543
28947
+      hardcode_direct=no
21544
28948
+      hardcode_shlibpath_var=no
21554
28958
+      archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
21555
28959
+      ;;
21556
28960
 
21557
 
-# Flag that forces no undefined symbols.
21558
 
-no_undefined_flag=$lt_no_undefined_flag
 
28961
-# Compiler flag to generate shared objects directly from archives.
 
28962
-whole_archive_flag_spec=$lt_whole_archive_flag_spec
21559
28963
+    gnu* | linux* | tpf* | k*bsd*-gnu)
21560
28964
+      tmp_diet=no
21561
28965
+      if test "$host_os" = linux-dietlibc; then
21596
29000
+       esac
21597
29001
+       archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
21598
29002
 
21599
 
-# Commands used to finish a libtool library installation in a directory.
21600
 
-finish_cmds=$lt_finish_cmds
 
29003
-# Compiler flag to generate thread-safe objects.
 
29004
-thread_safe_flag_spec=$lt_thread_safe_flag_spec
21601
29005
+        if test "x$supports_anon_versioning" = xyes; then
21602
29006
+          archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
21603
29007
+           cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
21605
29009
+           $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
21606
29010
+        fi
21607
29011
 
21608
 
-# Same as above, but a single script fragment to be evaled but not shown.
21609
 
-finish_eval=$lt_finish_eval
 
29012
-# Library versioning type.
 
29013
-version_type=$version_type
21610
29014
+       case $cc_basename in
21611
29015
+       xlf*)
21612
29016
+         # IBM XL Fortran 10.1 on PPC cannot create shared libs itself
21627
29031
+      fi
21628
29032
+      ;;
21629
29033
 
21630
 
-# Take the output of nm and produce a listing of raw symbols and C names.
21631
 
-global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
 
29034
-# Format of library name prefix.
 
29035
-libname_spec=$lt_libname_spec
21632
29036
+    netbsd* | netbsdelf*-gnu)
21633
29037
+      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
21634
29038
+       archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
21639
29043
+      fi
21640
29044
+      ;;
21641
29045
 
21642
 
-# Transform the output of nm in a proper C declaration
21643
 
-global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
 
29046
-# List of archive names.  First name is the real one, the rest are links.
 
29047
-# The last name is the one that the linker finds with -lNAME.
 
29048
-library_names_spec=$lt_library_names_spec
21644
29049
+    solaris*)
21645
29050
+      if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then
21646
29051
+       ld_shlibs=no
21647
29052
+       cat <<_LT_EOF 1>&2
21648
29053
 
21649
 
-# Transform the output of nm in a C name address pair
21650
 
-global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
 
29054
-# The coded name of the library, if different from the real name.
 
29055
-soname_spec=$lt_soname_spec
21651
29056
+*** Warning: The releases 2.8.* of the GNU linker cannot reliably
21652
29057
+*** create shared libraries on Solaris systems.  Therefore, libtool
21653
29058
+*** is disabling shared libraries support.  We urge you to upgrade GNU
21655
29060
+*** your PATH or compiler configuration so that the native linker is
21656
29061
+*** used, and then restart.
21657
29062
 
21658
 
-# This is the shared library runtime path variable.
21659
 
-runpath_var=$runpath_var
 
29063
-# Commands used to build and install an old-style archive.
 
29064
-RANLIB=$lt_RANLIB
 
29065
-old_archive_cmds=$lt_old_archive_cmds
 
29066
-old_postinstall_cmds=$lt_old_postinstall_cmds
 
29067
-old_postuninstall_cmds=$lt_old_postuninstall_cmds
21660
29068
+_LT_EOF
21661
29069
+      elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
21662
29070
+       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
21666
29074
+      fi
21667
29075
+      ;;
21668
29076
 
21669
 
-# This is the shared library path variable.
21670
 
-shlibpath_var=$shlibpath_var
 
29077
-# Create an old-style archive from a shared archive.
 
29078
-old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
21671
29079
+    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
21672
29080
+      case `$LD -v 2>&1` in
21673
29081
+        *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
21674
29082
+       ld_shlibs=no
21675
29083
+       cat <<_LT_EOF 1>&2
21676
29084
 
21677
 
-# Is shlibpath searched before the hard-coded library search path?
21678
 
-shlibpath_overrides_runpath=$shlibpath_overrides_runpath
21679
 
-
21680
 
-# How to hardcode a shared library path into an executable.
21681
 
-hardcode_action=$hardcode_action
21682
 
-
21683
 
-# Whether we should hardcode library paths into libraries.
21684
 
-hardcode_into_libs=$hardcode_into_libs
21685
 
-
21686
 
-# Flag to hardcode \$libdir into a binary during linking.
21687
 
-# This must work even if \$libdir does not exist.
21688
 
-hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
21689
 
-
21690
 
-# If ld is used when linking, flag to hardcode \$libdir into
21691
 
-# a binary during linking. This must work even if \$libdir does
21692
 
-# not exist.
21693
 
-hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
21694
 
-
21695
 
-# Whether we need a single -rpath flag with a separated argument.
21696
 
-hardcode_libdir_separator=$lt_hardcode_libdir_separator
21697
 
-
21698
 
-# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the
21699
 
-# resulting binary.
21700
 
-hardcode_direct=$hardcode_direct
21701
 
-
21702
 
-# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
21703
 
-# resulting binary.
21704
 
-hardcode_minus_L=$hardcode_minus_L
21705
 
-
21706
 
-# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
21707
 
-# the resulting binary.
21708
 
-hardcode_shlibpath_var=$hardcode_shlibpath_var
21709
 
-
21710
 
-# Set to yes if building a shared library automatically hardcodes DIR into the library
21711
 
-# and all subsequent libraries and executables linked against it.
21712
 
-hardcode_automatic=$hardcode_automatic
21713
 
-
21714
 
-# Variables whose values should be saved in libtool wrapper scripts and
21715
 
-# restored at relink time.
21716
 
-variables_saved_for_relink="$variables_saved_for_relink"
21717
 
-
21718
 
-# Whether libtool must link a program against all its dependency libraries.
21719
 
-link_all_deplibs=$link_all_deplibs
21720
 
-
21721
 
-# Compile-time system search path for libraries
21722
 
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
21723
 
-
21724
 
-# Run-time system search path for libraries
21725
 
-sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
21726
 
-
21727
 
-# Fix the shell variable \$srcfile for the compiler.
21728
 
-fix_srcfile_path=$lt_fix_srcfile_path
21729
 
-
21730
 
-# Set to yes if exported symbols are required.
21731
 
-always_export_symbols=$always_export_symbols
21732
 
-
21733
 
-# The commands to list exported symbols.
21734
 
-export_symbols_cmds=$lt_export_symbols_cmds
21735
 
-
21736
 
-# The commands to extract the exported symbol list from a shared archive.
21737
 
-extract_expsyms_cmds=$lt_extract_expsyms_cmds
21738
 
-
21739
 
-# Symbols that should not be listed in the preloaded symbols.
21740
 
-exclude_expsyms=$lt_exclude_expsyms
21741
 
-
21742
 
-# Symbols that must always be exported.
21743
 
-include_expsyms=$lt_include_expsyms
 
29085
-# Create a temporary old-style archive to link instead of a shared archive.
 
29086
-old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
21744
29087
+*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
21745
29088
+*** reliably create shared libraries on SCO systems.  Therefore, libtool
21746
29089
+*** is disabling shared libraries support.  We urge you to upgrade GNU
21748
29091
+*** your PATH or compiler configuration so that the native linker is
21749
29092
+*** used, and then restart.
21750
29093
 
21751
 
-# ### END LIBTOOL CONFIG
 
29094
-# Commands used to build and install a shared archive.
 
29095
-archive_cmds=$lt_archive_cmds
 
29096
-archive_expsym_cmds=$lt_archive_expsym_cmds
 
29097
-postinstall_cmds=$lt_postinstall_cmds
 
29098
-postuninstall_cmds=$lt_postuninstall_cmds
21752
29099
+_LT_EOF
21753
29100
+       ;;
21754
29101
+       *)
21767
29114
+      esac
21768
29115
+      ;;
21769
29116
 
21770
 
-__EOF__
 
29117
-# Commands used to build a loadable module (assumed same as above if empty)
 
29118
-module_cmds=$lt_module_cmds
 
29119
-module_expsym_cmds=$lt_module_expsym_cmds
21771
29120
+    sunos4*)
21772
29121
+      archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
21773
29122
+      wlarc=
21775
29124
+      hardcode_shlibpath_var=no
21776
29125
+      ;;
21777
29126
 
 
29127
-# Commands to strip libraries.
 
29128
-old_striplib=$lt_old_striplib
 
29129
-striplib=$lt_striplib
21778
29130
+    *)
21779
29131
+      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
21780
29132
+       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
21785
29137
+      ;;
21786
29138
+    esac
21787
29139
 
 
29140
-# Dependencies to place before the objects being linked to create a
 
29141
-# shared library.
 
29142
-predep_objects=$lt_predep_objects
21788
29143
+    if test "$ld_shlibs" = no; then
21789
29144
+      runpath_var=
21790
29145
+      hardcode_libdir_flag_spec=
21793
29148
+    fi
21794
29149
+  else
21795
29150
+    # PORTME fill in a description of your system's linker (not GNU ld)
21796
 
   case $host_os in
21797
 
   aix3*)
21798
 
-    cat <<\EOF >> "$cfgfile"
21799
 
-
21800
 
-# AIX sometimes has problems with the GCC collect2 program.  For some
21801
 
-# reason, if we set the COLLECT_NAMES environment variable, the problems
21802
 
-# vanish in a puff of smoke.
21803
 
-if test "X${COLLECT_NAMES+set}" != Xset; then
21804
 
-  COLLECT_NAMES=
21805
 
-  export COLLECT_NAMES
21806
 
-fi
21807
 
-EOF
 
29151
+    case $host_os in
 
29152
+    aix3*)
21808
29153
+      allow_undefined_flag=unsupported
21809
29154
+      always_export_symbols=yes
21810
29155
+      archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'
21816
29161
+       # broken collect2.
21817
29162
+       hardcode_direct=unsupported
21818
29163
+      fi
21819
 
     ;;
21820
 
-  esac
21821
 
-
21822
 
-  # We use sed instead of cat because bash on DJGPP gets confused if
21823
 
-  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
21824
 
-  # text mode, it properly converts lines to CR/LF.  This bash problem
21825
 
-  # is reportedly fixed, but why not run on old versions too?
21826
 
-  sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1)
21827
 
-
21828
 
-  mv -f "$cfgfile" "$ofile" || \
21829
 
-    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
21830
 
-  chmod +x "$ofile"
 
29164
+      ;;
21831
29165
 
21832
 
-else
21833
 
-  # If there is no Makefile yet, we rely on a make rule to execute
21834
 
-  # `config.status --recheck' to rerun these tests and create the
21835
 
-  # libtool script then.
21836
 
-  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
21837
 
-  if test -f "$ltmain_in"; then
21838
 
-    test -f Makefile && make "$ltmain"
 
29166
-# Dependencies to place after the objects being linked to create a
 
29167
-# shared library.
 
29168
-postdep_objects=$lt_postdep_objects
21839
29169
+    aix[4-9]*)
21840
29170
+      if test "$host_cpu" = ia64; then
21841
29171
+       # On IA64, the linker does run time linking by default, so we don't
21850
29180
+         export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
21851
29181
+       else
21852
29182
+         export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
21853
 
   fi
21854
 
-fi
21855
 
-
21856
 
-
21857
 
-ac_ext=c
21858
 
-ac_cpp='$CPP $CPPFLAGS'
21859
 
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
21860
 
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
21861
 
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
21862
 
-
21863
 
-CC="$lt_save_CC"
 
29183
+       fi
21864
29184
+       aix_use_runtimelinking=no
21865
29185
 
 
29186
-# Dependencies to place before the objects being linked to create a
 
29187
-# shared library.
 
29188
-predeps=$lt_predeps
21866
29189
+       # Test if we are trying to use run time linking or normal
21867
29190
+       # AIX style linking. If -brtl is somewhere in LDFLAGS, we
21868
29191
+       # need to do runtime linking.
21876
29199
+         ;;
21877
29200
+       esac
21878
29201
 
21879
 
-# Check whether --with-tags was given.
21880
 
-if test "${with_tags+set}" = set; then
21881
 
-  withval=$with_tags; tagnames="$withval"
21882
 
-fi
 
29202
-# Dependencies to place after the objects being linked to create a
 
29203
-# shared library.
 
29204
-postdeps=$lt_postdeps
21883
29205
+       exp_sym_flag='-bexport'
21884
29206
+       no_entry_flag='-bnoentry'
21885
29207
+      fi
21886
29208
 
 
29209
-# The directories searched by this compiler when creating a shared
 
29210
-# library
 
29211
-compiler_lib_search_dirs=$lt_compiler_lib_search_dirs
21887
29212
+      # When large executables or shared objects are built, AIX ld can
21888
29213
+      # have problems creating the table of contents.  If linking a library
21889
29214
+      # or program results in "error TOC overflow" add -mminimal-toc to
21890
29215
+      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
21891
29216
+      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
21892
29217
 
21893
 
-if test -f "$ltmain" && test -n "$tagnames"; then
21894
 
-  if test ! -f "${ofile}"; then
21895
 
-    { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not exist" >&5
21896
 
-echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;}
21897
 
-  fi
 
29218
-# The library search path used internally by the compiler when linking
 
29219
-# a shared library.
 
29220
-compiler_lib_search_path=$lt_compiler_lib_search_path
21898
29221
+      archive_cmds=''
21899
29222
+      hardcode_direct=yes
21900
29223
+      hardcode_direct_absolute=yes
21902
29225
+      link_all_deplibs=yes
21903
29226
+      file_list_spec='${wl}-f,'
21904
29227
 
21905
 
-  if test -z "$LTCC"; then
21906
 
-    eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
21907
 
-    if test -z "$LTCC"; then
21908
 
-      { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not look like a libtool script" >&5
21909
 
-echo "$as_me: WARNING: output file \`$ofile' does not look like a libtool script" >&2;}
 
29228
-# Method to check whether dependent libraries are shared objects.
 
29229
-deplibs_check_method=$lt_deplibs_check_method
21910
29230
+      if test "$GCC" = yes; then
21911
29231
+       case $host_os in aix4.[012]|aix4.[012].*)
21912
29232
+       # We only want to do this on AIX 4.2 and lower, the check
21917
29237
+         then
21918
29238
+         # We have reworked collect2
21919
29239
+         :
21920
 
     else
21921
 
-      { echo "$as_me:$LINENO: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5
21922
 
-echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;}
21923
 
-    fi
21924
 
-  fi
21925
 
-  if test -z "$LTCFLAGS"; then
21926
 
-    eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`"
 
29240
+         else
21927
29241
+         # We have old collect2
21928
29242
+         hardcode_direct=unsupported
21929
29243
+         # It fails to find uninstalled libraries when the uninstalled
21932
29246
+         hardcode_minus_L=yes
21933
29247
+         hardcode_libdir_flag_spec='-L$libdir'
21934
29248
+         hardcode_libdir_separator=
21935
 
   fi
21936
 
-
21937
 
-  # Extract list of available tagged configurations in $ofile.
21938
 
-  # Note that this assumes the entire list is on one line.
21939
 
-  available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'`
21940
 
-
21941
 
-  lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
21942
 
-  for tagname in $tagnames; do
21943
 
-    IFS="$lt_save_ifs"
21944
 
-    # Check whether tagname contains only valid characters
21945
 
-    case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in
21946
 
-    "") ;;
21947
 
-    *)  { { echo "$as_me:$LINENO: error: invalid tag name: $tagname" >&5
21948
 
-echo "$as_me: error: invalid tag name: $tagname" >&2;}
21949
 
-   { (exit 1); exit 1; }; }
21950
 
        ;;
21951
 
     esac
21952
 
-
21953
 
-    if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null
21954
 
-    then
21955
 
-      { { echo "$as_me:$LINENO: error: tag name \"$tagname\" already exists" >&5
21956
 
-echo "$as_me: error: tag name \"$tagname\" already exists" >&2;}
21957
 
-   { (exit 1); exit 1; }; }
 
29249
+         fi
 
29250
+         ;;
 
29251
+       esac
21958
29252
+       shared_flag='-shared'
21959
29253
+       if test "$aix_use_runtimelinking" = yes; then
21960
29254
+         shared_flag="$shared_flag "'${wl}-G'
21973
29267
+           shared_flag='${wl}-bM:SRE'
21974
29268
+         fi
21975
29269
+       fi
21976
 
     fi
 
29270
+      fi
21977
29271
 
21978
 
-    # Update the list of available tags.
21979
 
-    if test -n "$tagname"; then
21980
 
-      echo appending configuration tag \"$tagname\" to $ofile
21981
 
-
21982
 
-      case $tagname in
21983
 
-      CXX)
21984
 
-       if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
21985
 
-           ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
21986
 
-           (test "X$CXX" != "Xg++"))) ; then
21987
 
-         ac_ext=cpp
21988
 
-ac_cpp='$CXXCPP $CPPFLAGS'
21989
 
-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
21990
 
-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
21991
 
-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
 
29272
-# Command to use when deplibs_check_method == file_magic.
 
29273
-file_magic_cmd=$lt_file_magic_cmd
 
29274
-
 
29275
-# Flag that allows shared libraries with undefined symbols to be built.
 
29276
-allow_undefined_flag=$lt_allow_undefined_flag
 
29277
-
 
29278
-# Flag that forces no undefined symbols.
 
29279
-no_undefined_flag=$lt_no_undefined_flag
21992
29280
+      # It seems that -bexpall does not export symbols beginning with
21993
29281
+      # underscore (_), so it is better to generate a list of symbols to export.
21994
29282
+      always_export_symbols=yes
22005
29293
+cat >>conftest.$ac_ext <<_ACEOF
22006
29294
+/* end confdefs.h.  */
22007
29295
 
 
29296
-# Commands used to finish a libtool library installation in a directory.
 
29297
-finish_cmds=$lt_finish_cmds
22008
29298
+int
22009
29299
+main ()
22010
29300
+{
22011
29301
 
 
29302
-# Same as above, but a single script fragment to be evaled but not shown.
 
29303
-finish_eval=$lt_finish_eval
22012
29304
+  ;
22013
29305
+  return 0;
22014
29306
+}
22032
29324
+       } && test -s conftest$ac_exeext &&
22033
29325
+       $as_test_x conftest$ac_exeext; then
22034
29326
 
 
29327
-# Take the output of nm and produce a listing of raw symbols and C names.
 
29328
-global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
22035
29329
+lt_aix_libpath_sed='
22036
29330
+    /Import File Strings/,/^$/ {
22037
29331
+       /^0/ {
22048
29342
+  echo "$as_me: failed program was:" >&5
22049
29343
+sed 's/^/| /' conftest.$ac_ext >&5
22050
29344
 
22051
 
-archive_cmds_need_lc_CXX=no
22052
 
-allow_undefined_flag_CXX=
22053
 
-always_export_symbols_CXX=no
22054
 
-archive_expsym_cmds_CXX=
22055
 
-export_dynamic_flag_spec_CXX=
22056
 
-hardcode_direct_CXX=no
22057
 
-hardcode_libdir_flag_spec_CXX=
22058
 
-hardcode_libdir_flag_spec_ld_CXX=
22059
 
-hardcode_libdir_separator_CXX=
22060
 
-hardcode_minus_L_CXX=no
22061
 
-hardcode_shlibpath_var_CXX=unsupported
22062
 
-hardcode_automatic_CXX=no
22063
 
-module_cmds_CXX=
22064
 
-module_expsym_cmds_CXX=
22065
 
-link_all_deplibs_CXX=unknown
22066
 
-old_archive_cmds_CXX=$old_archive_cmds
22067
 
-no_undefined_flag_CXX=
22068
 
-whole_archive_flag_spec_CXX=
22069
 
-enable_shared_with_static_runtimes_CXX=no
 
29345
-# Transform the output of nm in a proper C declaration
 
29346
-global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
22070
29347
 
22071
 
-# Dependencies to place before and after the object being linked:
22072
 
-predep_objects_CXX=
22073
 
-postdep_objects_CXX=
22074
 
-predeps_CXX=
22075
 
-postdeps_CXX=
22076
 
-compiler_lib_search_path_CXX=
 
29348
-# Transform the output of nm in a C name address pair
 
29349
-global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
22077
29350
+fi
22078
29351
 
22079
 
-# Source file extension for C++ test sources.
22080
 
-ac_ext=cpp
 
29352
-# This is the shared library runtime path variable.
 
29353
-runpath_var=$runpath_var
22081
29354
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
22082
29355
+      conftest$ac_exeext conftest.$ac_ext
22083
29356
+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
22084
29357
 
22085
 
-# Object file extension for compiled C++ test sources.
22086
 
-objext=o
22087
 
-objext_CXX=$objext
 
29358
-# This is the shared library path variable.
 
29359
-shlibpath_var=$shlibpath_var
22088
29360
+        hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
22089
29361
+        archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
22090
29362
+      else
22102
29374
+cat >>conftest.$ac_ext <<_ACEOF
22103
29375
+/* end confdefs.h.  */
22104
29376
 
22105
 
-# Code to be used in simple compile tests
22106
 
-lt_simple_compile_test_code="int some_variable = 0;"
 
29377
-# Is shlibpath searched before the hard-coded library search path?
 
29378
-shlibpath_overrides_runpath=$shlibpath_overrides_runpath
22107
29379
+int
22108
29380
+main ()
22109
29381
+{
22110
29382
 
22111
 
-# Code to be used in simple link tests
22112
 
-lt_simple_link_test_code='int main(int, char *[]) { return(0); }'
 
29383
-# How to hardcode a shared library path into an executable.
 
29384
-hardcode_action=$hardcode_action
22113
29385
+  ;
22114
29386
+  return 0;
22115
29387
+}
22133
29405
+       } && test -s conftest$ac_exeext &&
22134
29406
+       $as_test_x conftest$ac_exeext; then
22135
29407
 
22136
 
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
 
29408
-# Whether we should hardcode library paths into libraries.
 
29409
-hardcode_into_libs=$hardcode_into_libs
22137
29410
+lt_aix_libpath_sed='
22138
29411
+    /Import File Strings/,/^$/ {
22139
29412
+       /^0/ {
22150
29423
+  echo "$as_me: failed program was:" >&5
22151
29424
+sed 's/^/| /' conftest.$ac_ext >&5
22152
29425
 
22153
 
-# If no C compiler was specified, use CC.
22154
 
-LTCC=${LTCC-"$CC"}
 
29426
-# Flag to hardcode \$libdir into a binary during linking.
 
29427
-# This must work even if \$libdir does not exist.
 
29428
-hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
22155
29429
 
22156
 
-# If no C compiler flags were specified, use CFLAGS.
22157
 
-LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
 
29430
-# If ld is used when linking, flag to hardcode \$libdir into
 
29431
-# a binary during linking. This must work even if \$libdir does
 
29432
-# not exist.
 
29433
-hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
22158
29434
+fi
22159
29435
 
22160
 
-# Allow CC to be a program name with arguments.
22161
 
-compiler=$CC
 
29436
-# Whether we need a single -rpath flag with a separated argument.
 
29437
-hardcode_libdir_separator=$lt_hardcode_libdir_separator
22162
29438
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
22163
29439
+      conftest$ac_exeext conftest.$ac_ext
22164
29440
+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
22165
29441
 
 
29442
-# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the
 
29443
-# resulting binary.
 
29444
-hardcode_direct=$hardcode_direct
22166
29445
+        hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
22167
29446
+         # Warning - without using the other run time loading flags,
22168
29447
+         # -berok will link without error, but may produce a broken library.
22177
29456
+      fi
22178
29457
+      ;;
22179
29458
 
22180
 
-# save warnings/boilerplate of simple test code
22181
 
-ac_outfile=conftest.$ac_objext
22182
 
-echo "$lt_simple_compile_test_code" >conftest.$ac_ext
22183
 
-eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
22184
 
-_lt_compiler_boilerplate=`cat conftest.err`
22185
 
-$rm conftest*
 
29459
-# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
 
29460
-# resulting binary.
 
29461
-hardcode_minus_L=$hardcode_minus_L
22186
29462
+    amigaos*)
22187
29463
+      case $host_cpu in
22188
29464
+      powerpc)
22198
29474
+      esac
22199
29475
+      ;;
22200
29476
 
22201
 
-ac_outfile=conftest.$ac_objext
22202
 
-echo "$lt_simple_link_test_code" >conftest.$ac_ext
22203
 
-eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
22204
 
-_lt_linker_boilerplate=`cat conftest.err`
22205
 
-$rm conftest*
 
29477
-# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
 
29478
-# the resulting binary.
 
29479
-hardcode_shlibpath_var=$hardcode_shlibpath_var
22206
29480
+    bsdi[45]*)
22207
29481
+      export_dynamic_flag_spec=-rdynamic
22208
29482
+      ;;
22209
29483
 
 
29484
-# Set to yes if building a shared library automatically hardcodes DIR into the library
 
29485
-# and all subsequent libraries and executables linked against it.
 
29486
-hardcode_automatic=$hardcode_automatic
22210
29487
+    cygwin* | mingw* | pw32*)
22211
29488
+      # When not using gcc, we currently assume that we are using
22212
29489
+      # Microsoft Visual C++.
22228
29505
+      enable_shared_with_static_runtimes=yes
22229
29506
+      ;;
22230
29507
 
22231
 
-# Allow CC to be a program name with arguments.
22232
 
-lt_save_CC=$CC
22233
 
-lt_save_LD=$LD
22234
 
-lt_save_GCC=$GCC
22235
 
-GCC=$GXX
22236
 
-lt_save_with_gnu_ld=$with_gnu_ld
22237
 
-lt_save_path_LD=$lt_cv_path_LD
22238
 
-if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
22239
 
-  lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
22240
 
-else
22241
 
-  $as_unset lt_cv_prog_gnu_ld
22242
 
-fi
22243
 
-if test -n "${lt_cv_path_LDCXX+set}"; then
22244
 
-  lt_cv_path_LD=$lt_cv_path_LDCXX
22245
 
-else
22246
 
-  $as_unset lt_cv_path_LD
22247
 
-fi
22248
 
-test -z "${LDCXX+set}" || LD=$LDCXX
22249
 
-CC=${CXX-"c++"}
22250
 
-compiler=$CC
22251
 
-compiler_CXX=$CC
22252
 
-for cc_temp in $compiler""; do
22253
 
-  case $cc_temp in
22254
 
-    compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
22255
 
-    distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
22256
 
-    \-*) ;;
22257
 
-    *) break;;
22258
 
-  esac
22259
 
-done
22260
 
-cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
 
29508
-# Variables whose values should be saved in libtool wrapper scripts and
 
29509
-# restored at relink time.
 
29510
-variables_saved_for_relink="$variables_saved_for_relink"
22261
29511
+    darwin* | rhapsody*)
22262
29512
 
 
29513
-# Whether libtool must link a program against all its dependency libraries.
 
29514
-link_all_deplibs=$link_all_deplibs
22263
29515
 
22264
 
-# We don't want -fno-exception wen compiling C++ code, so set the
22265
 
-# no_builtin_flag separately
22266
 
-if test "$GXX" = yes; then
22267
 
-  lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin'
22268
 
-else
22269
 
-  lt_prog_compiler_no_builtin_flag_CXX=
22270
 
-fi
 
29516
-# Compile-time system search path for libraries
 
29517
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
22271
29518
+  archive_cmds_need_lc=no
22272
29519
+  hardcode_direct=no
22273
29520
+  hardcode_automatic=yes
22282
29529
+    archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
22283
29530
+    module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
22284
29531
 
22285
 
-if test "$GXX" = yes; then
22286
 
-  # Set up default GNU C++ configuration
 
29532
-# Run-time system search path for libraries
 
29533
-sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
22287
29534
+  else
22288
29535
+  ld_shlibs=no
22289
29536
+  fi
22290
29537
 
 
29538
-# Fix the shell variable \$srcfile for the compiler.
 
29539
-fix_srcfile_path=$lt_fix_srcfile_path
22291
29540
+      ;;
22292
29541
 
22293
 
-# Check whether --with-gnu-ld was given.
22294
 
-if test "${with_gnu_ld+set}" = set; then
22295
 
-  withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes
22296
 
-else
22297
 
-  with_gnu_ld=no
22298
 
-fi
 
29542
-# Set to yes if exported symbols are required.
 
29543
-always_export_symbols=$always_export_symbols
22299
29544
+    dgux*)
22300
29545
+      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
22301
29546
+      hardcode_libdir_flag_spec='-L$libdir'
22302
29547
+      hardcode_shlibpath_var=no
22303
29548
+      ;;
22304
29549
 
22305
 
-ac_prog=ld
22306
 
-if test "$GCC" = yes; then
22307
 
-  # Check if gcc -print-prog-name=ld gives a path.
22308
 
-  { echo "$as_me:$LINENO: checking for ld used by $CC" >&5
22309
 
-echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; }
22310
 
-  case $host in
22311
 
-  *-*-mingw*)
22312
 
-    # gcc leaves a trailing carriage return which upsets mingw
22313
 
-    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
22314
 
-  *)
22315
 
-    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
22316
 
-  esac
22317
 
-  case $ac_prog in
22318
 
-    # Accept absolute paths.
22319
 
-    [\\/]* | ?:[\\/]*)
22320
 
-      re_direlt='/[^/][^/]*/\.\./'
22321
 
-      # Canonicalize the pathname of ld
22322
 
-      ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'`
22323
 
-      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
22324
 
-       ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
22325
 
-      done
22326
 
-      test -z "$LD" && LD="$ac_prog"
 
29550
-# The commands to list exported symbols.
 
29551
-export_symbols_cmds=$lt_export_symbols_cmds
22327
29552
+    freebsd1*)
22328
29553
+      ld_shlibs=no
22329
 
       ;;
22330
 
-  "")
22331
 
-    # If it fails, then pretend we aren't using GCC.
22332
 
-    ac_prog=ld
22333
 
+
 
29554
+      ;;
 
29555
 
 
29556
-# The commands to extract the exported symbol list from a shared archive.
 
29557
-extract_expsyms_cmds=$lt_extract_expsyms_cmds
22334
29558
+    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
22335
29559
+    # support.  Future versions do this automatically, but an explicit c++rt0.o
22336
29560
+    # does not break anything, and helps significantly (at the cost of a little
22340
29564
+      hardcode_libdir_flag_spec='-R$libdir'
22341
29565
+      hardcode_direct=yes
22342
29566
+      hardcode_shlibpath_var=no
22343
 
     ;;
22344
 
-  *)
22345
 
-    # If it is relative, then search for the first ld in PATH.
22346
 
-    with_gnu_ld=unknown
22347
 
+
 
29567
+      ;;
 
29568
 
 
29569
-# Symbols that should not be listed in the preloaded symbols.
 
29570
-exclude_expsyms=$lt_exclude_expsyms
22348
29571
+    # Unfortunately, older versions of FreeBSD 2 do not have this feature.
22349
29572
+    freebsd2*)
22350
29573
+      archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
22352
29575
+      hardcode_minus_L=yes
22353
29576
+      hardcode_shlibpath_var=no
22354
29577
+      ;;
22355
 
+
 
29578
 
 
29579
-# Symbols that must always be exported.
 
29580
-include_expsyms=$lt_include_expsyms
22356
29581
+    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
22357
29582
+    freebsd* | dragonfly*)
22358
29583
+      archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
22360
29585
+      hardcode_direct=yes
22361
29586
+      hardcode_shlibpath_var=no
22362
29587
+      ;;
22363
 
+
 
29588
 
 
29589
-# ### END LIBTOOL CONFIG
22364
29590
+    hpux9*)
22365
29591
+      if test "$GCC" = yes; then
22366
29592
+       archive_cmds='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
22370
29596
+      hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
22371
29597
+      hardcode_libdir_separator=:
22372
29598
+      hardcode_direct=yes
22373
 
+
 
29599
 
 
29600
-__EOF__
22374
29601
+      # hardcode_minus_L: Not really in the search PATH,
22375
29602
+      # but as the default location of the library.
22376
29603
+      hardcode_minus_L=yes
22377
29604
+      export_dynamic_flag_spec='${wl}-E'
22378
29605
+      ;;
22379
 
+
 
29606
 
22380
29607
+    hpux10*)
22381
29608
+      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
22382
29609
+       archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
22395
29622
+       hardcode_minus_L=yes
22396
29623
+      fi
22397
29624
+      ;;
22398
 
+
 
29625
 
 
29626
-  case $host_os in
 
29627
-  aix3*)
 
29628
-    cat <<\EOF >> "$cfgfile"
22399
29629
+    hpux11*)
22400
29630
+      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
22401
29631
+       case $host_cpu in
22407
29637
+         ;;
22408
29638
+       *)
22409
29639
+         archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
22410
 
     ;;
22411
 
   esac
22412
 
-elif test "$with_gnu_ld" = yes; then
22413
 
-  { echo "$as_me:$LINENO: checking for GNU ld" >&5
22414
 
-echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; }
22415
 
-else
22416
 
-  { echo "$as_me:$LINENO: checking for non-GNU ld" >&5
22417
 
-echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; }
22418
 
-fi
22419
 
-if test "${lt_cv_path_LD+set}" = set; then
22420
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
22421
 
-else
22422
 
-  if test -z "$LD"; then
22423
 
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
22424
 
-  for ac_dir in $PATH; do
22425
 
-    IFS="$lt_save_ifs"
22426
 
-    test -z "$ac_dir" && ac_dir=.
22427
 
-    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
22428
 
-      lt_cv_path_LD="$ac_dir/$ac_prog"
22429
 
-      # Check to see if the program is GNU ld.  I'd rather use --version,
22430
 
-      # but apparently some variants of GNU ld only accept -v.
22431
 
-      # Break only if it was the GNU/non-GNU ld that we prefer.
22432
 
-      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
22433
 
-      *GNU* | *'with BFD'*)
22434
 
-       test "$with_gnu_ld" != no && break
 
29640
+         ;;
 
29641
+       esac
22435
29642
+      else
22436
29643
+       case $host_cpu in
22437
29644
+       hppa*64*)
22439
29646
+         ;;
22440
29647
+       ia64*)
22441
29648
+         archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
22442
 
        ;;
22443
 
       *)
22444
 
-       test "$with_gnu_ld" != yes && break
 
29649
+         ;;
 
29650
+       *)
22445
29651
+         archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
22446
 
        ;;
22447
 
       esac
22448
 
     fi
22449
 
-  done
22450
 
-  IFS="$lt_save_ifs"
22451
 
-else
22452
 
-  lt_cv_path_LD="$LD" # Let the user override the test with a path.
22453
 
-fi
22454
 
-fi
 
29652
+         ;;
 
29653
+       esac
 
29654
+      fi
22455
29655
+      if test "$with_gnu_ld" = no; then
22456
29656
+       hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
22457
29657
+       hardcode_libdir_separator=:
22458
29658
 
22459
 
-LD="$lt_cv_path_LD"
22460
 
-if test -n "$LD"; then
22461
 
-  { echo "$as_me:$LINENO: result: $LD" >&5
22462
 
-echo "${ECHO_T}$LD" >&6; }
22463
 
-else
22464
 
-  { echo "$as_me:$LINENO: result: no" >&5
22465
 
-echo "${ECHO_T}no" >&6; }
 
29659
-# AIX sometimes has problems with the GCC collect2 program.  For some
 
29660
-# reason, if we set the COLLECT_NAMES environment variable, the problems
 
29661
-# vanish in a puff of smoke.
 
29662
-if test "X${COLLECT_NAMES+set}" != Xset; then
 
29663
-  COLLECT_NAMES=
 
29664
-  export COLLECT_NAMES
22466
29665
-fi
22467
 
-test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
22468
 
-echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
22469
 
-   { (exit 1); exit 1; }; }
22470
 
-{ echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
22471
 
-echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; }
22472
 
-if test "${lt_cv_prog_gnu_ld+set}" = set; then
22473
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
22474
 
-else
22475
 
-  # I'd rather use --version here, but apparently some GNU lds only accept -v.
22476
 
-case `$LD -v 2>&1 </dev/null` in
22477
 
-*GNU* | *'with BFD'*)
22478
 
-  lt_cv_prog_gnu_ld=yes
22479
 
-  ;;
22480
 
-*)
22481
 
-  lt_cv_prog_gnu_ld=no
 
29666
-EOF
 
29667
-    ;;
 
29668
-  esac
22482
29669
+       case $host_cpu in
22483
29670
+       hppa*64*|ia64*)
22484
29671
+         hardcode_direct=no
22485
29672
+         hardcode_shlibpath_var=no
22486
 
   ;;
22487
 
-esac
22488
 
-fi
22489
 
-{ echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5
22490
 
-echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; }
22491
 
-with_gnu_ld=$lt_cv_prog_gnu_ld
 
29673
+         ;;
22492
29674
+       *)
22493
29675
+         hardcode_direct=yes
22494
29676
+         hardcode_direct_absolute=yes
22495
29677
+         export_dynamic_flag_spec='${wl}-E'
22496
29678
 
 
29679
-  # We use sed instead of cat because bash on DJGPP gets confused if
 
29680
-  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
 
29681
-  # text mode, it properly converts lines to CR/LF.  This bash problem
 
29682
-  # is reportedly fixed, but why not run on old versions too?
 
29683
-  sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1)
22497
29684
+         # hardcode_minus_L: Not really in the search PATH,
22498
29685
+         # but as the default location of the library.
22499
29686
+         hardcode_minus_L=yes
22502
29689
+      fi
22503
29690
+      ;;
22504
29691
 
 
29692
-  mv -f "$cfgfile" "$ofile" || \
 
29693
-    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
 
29694
-  chmod +x "$ofile"
22505
29695
+    irix5* | irix6* | nonstopux*)
22506
29696
+      if test "$GCC" = yes; then
22507
29697
+       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
22533
29723
+       $as_test_x conftest$ac_exeext; then
22534
29724
+  archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib'
22535
29725
 
22536
 
-  # Check if GNU C++ uses GNU ld as the underlying linker, since the
22537
 
-  # archiving commands below assume that GNU ld is being used.
22538
 
-  if test "$with_gnu_ld" = yes; then
22539
 
-    archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
22540
 
-    archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
22541
 
+else
 
29726
 else
 
29727
-  # If there is no Makefile yet, we rely on a make rule to execute
 
29728
-  # `config.status --recheck' to rerun these tests and create the
 
29729
-  # libtool script then.
 
29730
-  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
 
29731
-  if test -f "$ltmain_in"; then
 
29732
-    test -f Makefile && make "$ltmain"
 
29733
-  fi
22542
29734
+  echo "$as_me: failed program was:" >&5
22543
29735
+sed 's/^/| /' conftest.$ac_ext >&5
22544
 
 
22545
 
-    hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir'
22546
 
-    export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
22547
 
 
22548
 
-    # If archive_cmds runs LD, not CC, wlarc should be empty
22549
 
-    # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
22550
 
-    #     investigate it a little bit more. (MM)
22551
 
-    wlarc='${wl}'
22552
 
+fi
22553
 
 
22554
 
-    # ancient GNU ld didn't support --whole-archive et. al.
22555
 
-    if eval "`$CC -print-prog-name=ld` --help 2>&1" | \
22556
 
-       grep 'no-whole-archive' > /dev/null; then
22557
 
-      whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
 
29736
+
 
29737
+
 
29738
 fi
 
29739
 
22558
29740
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
22559
29741
+      conftest$ac_exeext conftest.$ac_ext
22560
29742
+        LDFLAGS="$save_LDFLAGS"
22561
 
     else
22562
 
-      whole_archive_flag_spec_CXX=
 
29743
+      else
22563
29744
+       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
22564
29745
+       archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib'
22565
 
     fi
22566
 
-  else
22567
 
-    with_gnu_ld=no
22568
 
-    wlarc=
 
29746
+      fi
22569
29747
+      archive_cmds_need_lc='no'
22570
29748
+      hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
22571
29749
+      hardcode_libdir_separator=:
22573
29751
+      link_all_deplibs=yes
22574
29752
+      ;;
22575
29753
 
22576
 
-    # A generic and very simple default shared library creation
22577
 
-    # command for GNU C++ for the case where it uses the native
22578
 
-    # linker, instead of GNU ld.  If possible, this setting should
22579
 
-    # overridden to take advantage of the native linker features on
22580
 
-    # the platform it is being used on.
22581
 
-    archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
 
29754
-ac_ext=c
 
29755
-ac_cpp='$CPP $CPPFLAGS'
 
29756
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
29757
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
29758
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
22582
29759
+    netbsd* | netbsdelf*-gnu)
22583
29760
+      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
22584
29761
+       archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
22585
29762
+      else
22586
29763
+       archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF
22587
 
   fi
 
29764
+      fi
22588
29765
+      hardcode_libdir_flag_spec='-R$libdir'
22589
29766
+      hardcode_direct=yes
22590
29767
+      hardcode_shlibpath_var=no
22591
29768
+      ;;
22592
29769
 
22593
 
-  # Commands to make compiler produce verbose output that lists
22594
 
-  # what "hidden" libraries, object files and flags are used when
22595
 
-  # linking a shared library.
22596
 
-  output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
22597
 
-
22598
 
-else
22599
 
-  GXX=no
22600
 
-  with_gnu_ld=no
22601
 
-  wlarc=
22602
 
-fi
 
29770
-CC="$lt_save_CC"
22603
29771
+    newsos6)
22604
29772
+      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
22605
29773
+      hardcode_direct=yes
22608
29776
+      hardcode_shlibpath_var=no
22609
29777
+      ;;
22610
29778
 
22611
 
-# PORTME: fill in a description of your system's C++ link characteristics
22612
 
-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
22613
 
-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; }
22614
 
-ld_shlibs_CXX=yes
22615
 
-case $host_os in
22616
 
-  aix3*)
22617
 
-    # FIXME: insert proper C++ library support
22618
 
-    ld_shlibs_CXX=no
22619
29779
+    *nto* | *qnx*)
22620
 
     ;;
22621
 
-  aix4* | aix5*)
22622
 
-    if test "$host_cpu" = ia64; then
22623
 
-      # On IA64, the linker does run time linking by default, so we don't
22624
 
-      # have to do anything special.
22625
 
-      aix_use_runtimelinking=no
22626
 
-      exp_sym_flag='-Bexport'
22627
 
-      no_entry_flag=""
22628
 
-    else
22629
 
-      aix_use_runtimelinking=no
 
29780
+      ;;
22630
29781
 
22631
 
-      # Test if we are trying to use run time linking or normal
22632
 
-      # AIX style linking. If -brtl is somewhere in LDFLAGS, we
22633
 
-      # need to do runtime linking.
22634
 
-      case $host_os in aix4.[23]|aix4.[23].*|aix5*)
22635
 
-       for ld_flag in $LDFLAGS; do
22636
 
-         case $ld_flag in
22637
 
-         *-brtl*)
22638
 
-           aix_use_runtimelinking=yes
22639
 
-           break
 
29782
-# Check whether --with-tags was given.
 
29783
-if test "${with_tags+set}" = set; then
 
29784
-  withval=$with_tags; tagnames="$withval"
 
29785
-fi
22640
29786
+    openbsd*)
22641
29787
+      if test -f /usr/libexec/ld.so; then
22642
29788
+       hardcode_direct=yes
22652
29798
+          openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
22653
29799
+            archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
22654
29800
+            hardcode_libdir_flag_spec='-R$libdir'
22655
 
            ;;
22656
 
-         esac
22657
 
-       done
 
29801
+            ;;
22658
29802
+          *)
22659
29803
+            archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
22660
29804
+            hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
22661
 
        ;;
22662
 
       esac
22663
 
-
22664
 
-      exp_sym_flag='-bexport'
22665
 
-      no_entry_flag='-bnoentry'
22666
 
     fi
 
29805
+            ;;
 
29806
+         esac
 
29807
+       fi
22667
29808
+      else
22668
29809
+       ld_shlibs=no
22669
29810
+      fi
22670
29811
+      ;;
22671
29812
 
22672
 
-    # When large executables or shared objects are built, AIX ld can
22673
 
-    # have problems creating the table of contents.  If linking a library
22674
 
-    # or program results in "error TOC overflow" add -mminimal-toc to
22675
 
-    # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
22676
 
-    # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
22677
29813
+    os2*)
22678
29814
+      hardcode_libdir_flag_spec='-L$libdir'
22679
29815
+      hardcode_minus_L=yes
22682
29818
+      old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
22683
29819
+      ;;
22684
29820
 
22685
 
-    archive_cmds_CXX=''
22686
 
-    hardcode_direct_CXX=yes
22687
 
-    hardcode_libdir_separator_CXX=':'
22688
 
-    link_all_deplibs_CXX=yes
 
29821
-if test -f "$ltmain" && test -n "$tagnames"; then
 
29822
-  if test ! -f "${ofile}"; then
 
29823
-    { $as_echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not exist" >&5
 
29824
-$as_echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;}
 
29825
-  fi
22689
29826
+    osf3*)
22690
29827
+      if test "$GCC" = yes; then
22691
29828
+       allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
22699
29836
+      hardcode_libdir_separator=:
22700
29837
+      ;;
22701
29838
 
22702
 
-    if test "$GXX" = yes; then
22703
 
-      case $host_os in aix4.[012]|aix4.[012].*)
22704
 
-      # We only want to do this on AIX 4.2 and lower, the check
22705
 
-      # below for broken collect2 doesn't work under 4.3+
22706
 
-       collect2name=`${CC} -print-prog-name=collect2`
22707
 
-       if test -f "$collect2name" && \
22708
 
-          strings "$collect2name" | grep resolve_lib_name >/dev/null
22709
 
-       then
22710
 
-         # We have reworked collect2
22711
 
-         :
 
29839
-  if test -z "$LTCC"; then
 
29840
-    eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
 
29841
-    if test -z "$LTCC"; then
 
29842
-      { $as_echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not look like a libtool script" >&5
 
29843
-$as_echo "$as_me: WARNING: output file \`$ofile' does not look like a libtool script" >&2;}
 
29844
-    else
 
29845
-      { $as_echo "$as_me:$LINENO: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5
 
29846
-$as_echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;}
 
29847
-    fi
 
29848
-  fi
 
29849
-  if test -z "$LTCFLAGS"; then
 
29850
-    eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`"
 
29851
-  fi
22712
29852
+    osf4* | osf5*)     # as osf3* with the addition of -msym flag
22713
29853
+      if test "$GCC" = yes; then
22714
29854
+       allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
22715
29855
+       archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
22716
29856
+       hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
22717
 
        else
22718
 
-         # We have old collect2
22719
 
-         hardcode_direct_CXX=unsupported
22720
 
-         # It fails to find uninstalled libraries when the uninstalled
22721
 
-         # path is not listed in the libpath.  Setting hardcode_minus_L
22722
 
-         # to unsupported forces relinking
22723
 
-         hardcode_minus_L_CXX=yes
22724
 
-         hardcode_libdir_flag_spec_CXX='-L$libdir'
22725
 
-         hardcode_libdir_separator_CXX=
 
29857
+      else
22726
29858
+       allow_undefined_flag=' -expect_unresolved \*'
22727
29859
+       archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
22728
29860
+       archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~
22729
29861
+       $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp'
22730
 
+
 
29862
 
 
29863
-  # Extract list of available tagged configurations in $ofile.
 
29864
-  # Note that this assumes the entire list is on one line.
 
29865
-  available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'`
22731
29866
+       # Both c and cxx compiler support -rpath directly
22732
29867
+       hardcode_libdir_flag_spec='-rpath $libdir'
22733
 
        fi
 
29868
+      fi
22734
29869
+      archive_cmds_need_lc='no'
22735
29870
+      hardcode_libdir_separator=:
22736
29871
+      ;;
22737
 
+
 
29872
 
 
29873
-  lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
 
29874
-  for tagname in $tagnames; do
 
29875
-    IFS="$lt_save_ifs"
 
29876
-    # Check whether tagname contains only valid characters
 
29877
-    case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in
 
29878
-    "") ;;
 
29879
-    *)  { { $as_echo "$as_me:$LINENO: error: invalid tag name: $tagname" >&5
 
29880
-$as_echo "$as_me: error: invalid tag name: $tagname" >&2;}
 
29881
-   { (exit 1); exit 1; }; }
22738
29882
+    solaris*)
22739
29883
+      no_undefined_flag=' -z defs'
22740
29884
+      if test "$GCC" = yes; then
22755
29899
+         archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags'
22756
29900
+         archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
22757
29901
+         $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
22758
 
        ;;
22759
 
       esac
22760
 
-      shared_flag='-shared'
22761
 
-      if test "$aix_use_runtimelinking" = yes; then
22762
 
-       shared_flag="$shared_flag "'${wl}-G'
22763
 
       fi
 
29902
+         ;;
 
29903
+       esac
 
29904
+      fi
22764
29905
+      hardcode_libdir_flag_spec='-R$libdir'
22765
29906
+      hardcode_shlibpath_var=no
22766
29907
+      case $host_os in
22772
29913
+       # Supported since Solaris 2.6 (maybe 2.5.1?)
22773
29914
+       if test "$GCC" = yes; then
22774
29915
+         whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
22775
 
     else
22776
 
-      # not using gcc
22777
 
-      if test "$host_cpu" = ia64; then
22778
 
-       # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
22779
 
-       # chokes on -Wl,-G. The following line is correct:
22780
 
-       shared_flag='-G'
22781
 
-      else
22782
 
-       if test "$aix_use_runtimelinking" = yes; then
22783
 
-         shared_flag='${wl}-G'
 
29916
+       else
22784
29917
+         whole_archive_flag_spec='-z allextract$convenience -z defaultextract'
22785
29918
+       fi
22786
 
+       ;;
 
29919
        ;;
 
29920
-    esac
22787
29921
+      esac
22788
29922
+      link_all_deplibs=yes
22789
29923
+      ;;
22790
 
+
 
29924
 
 
29925
-    if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null
 
29926
-    then
 
29927
-      { { $as_echo "$as_me:$LINENO: error: tag name \"$tagname\" already exists" >&5
 
29928
-$as_echo "$as_me: error: tag name \"$tagname\" already exists" >&2;}
 
29929
-   { (exit 1); exit 1; }; }
 
29930
-    fi
22791
29931
+    sunos4*)
22792
29932
+      if test "x$host_vendor" = xsequent; then
22793
29933
+       # Use $CC to link under sequent, because it throws in some extra .o
22794
29934
+       # files that make .init and .fini sections work.
22795
29935
+       archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
22796
 
        else
22797
 
-         shared_flag='${wl}-bM:SRE'
 
29936
+      else
22798
29937
+       archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
22799
 
        fi
 
29938
+      fi
22800
29939
+      hardcode_libdir_flag_spec='-L$libdir'
22801
29940
+      hardcode_direct=yes
22802
29941
+      hardcode_minus_L=yes
22803
29942
+      hardcode_shlibpath_var=no
22804
29943
+      ;;
22805
 
+
 
29944
 
 
29945
-    # Update the list of available tags.
 
29946
-    if test -n "$tagname"; then
 
29947
-      echo appending configuration tag \"$tagname\" to $ofile
 
29948
-
 
29949
-      case $tagname in
 
29950
-      CXX)
 
29951
-       if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
 
29952
-           ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
 
29953
-           (test "X$CXX" != "Xg++"))) ; then
 
29954
-         ac_ext=cpp
 
29955
-ac_cpp='$CXXCPP $CPPFLAGS'
 
29956
-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
29957
-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
29958
-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
22806
29959
+    sysv4)
22807
29960
+      case $host_vendor in
22808
29961
+       sni)
22824
29977
+      runpath_var='LD_RUN_PATH'
22825
29978
+      hardcode_shlibpath_var=no
22826
29979
+      ;;
22827
 
+
 
29980
 
22828
29981
+    sysv4.3*)
22829
29982
+      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
22830
29983
+      hardcode_shlibpath_var=no
22831
29984
+      export_dynamic_flag_spec='-Bexport'
22832
29985
+      ;;
22833
 
+
 
29986
 
22834
29987
+    sysv4*MP*)
22835
29988
+      if test -d /usr/nec; then
22836
29989
+       archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
22838
29991
+       runpath_var=LD_RUN_PATH
22839
29992
+       hardcode_runpath_var=yes
22840
29993
+       ld_shlibs=yes
22841
 
       fi
 
29994
+      fi
22842
29995
+      ;;
22843
 
+
 
29996
 
22844
29997
+    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)
22845
29998
+      no_undefined_flag='${wl}-z,text'
22846
29999
+      archive_cmds_need_lc=no
22847
30000
+      hardcode_shlibpath_var=no
22848
30001
+      runpath_var='LD_RUN_PATH'
22849
 
+
 
30002
 
 
30003
-archive_cmds_need_lc_CXX=no
 
30004
-allow_undefined_flag_CXX=
 
30005
-always_export_symbols_CXX=no
 
30006
-archive_expsym_cmds_CXX=
 
30007
-export_dynamic_flag_spec_CXX=
 
30008
-hardcode_direct_CXX=no
 
30009
-hardcode_libdir_flag_spec_CXX=
 
30010
-hardcode_libdir_flag_spec_ld_CXX=
 
30011
-hardcode_libdir_separator_CXX=
 
30012
-hardcode_minus_L_CXX=no
 
30013
-hardcode_shlibpath_var_CXX=unsupported
 
30014
-hardcode_automatic_CXX=no
 
30015
-module_cmds_CXX=
 
30016
-module_expsym_cmds_CXX=
 
30017
-link_all_deplibs_CXX=unknown
 
30018
-old_archive_cmds_CXX=$old_archive_cmds
 
30019
-no_undefined_flag_CXX=
 
30020
-whole_archive_flag_spec_CXX=
 
30021
-enable_shared_with_static_runtimes_CXX=no
22850
30022
+      if test "$GCC" = yes; then
22851
30023
+       archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
22852
30024
+       archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
22853
30025
+      else
22854
30026
+       archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
22855
30027
+       archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
22856
 
     fi
 
30028
+      fi
22857
30029
+      ;;
22858
30030
 
22859
 
-    # It seems that -bexpall does not export symbols beginning with
22860
 
-    # underscore (_), so it is better to generate a list of symbols to export.
22861
 
-    always_export_symbols_CXX=yes
22862
 
-    if test "$aix_use_runtimelinking" = yes; then
22863
 
-      # Warning - without using the other runtime loading flags (-brtl),
22864
 
-      # -berok will link without error, but may produce a broken library.
22865
 
-      allow_undefined_flag_CXX='-berok'
22866
 
-      # Determine the default libpath from the value encoded in an empty executable.
22867
 
-      cat >conftest.$ac_ext <<_ACEOF
22868
 
-/* confdefs.h.  */
22869
 
-_ACEOF
22870
 
-cat confdefs.h >>conftest.$ac_ext
22871
 
-cat >>conftest.$ac_ext <<_ACEOF
22872
 
-/* end confdefs.h.  */
 
30031
-# Dependencies to place before and after the object being linked:
 
30032
-predep_objects_CXX=
 
30033
-postdep_objects_CXX=
 
30034
-predeps_CXX=
 
30035
-postdeps_CXX=
 
30036
-compiler_lib_search_path_CXX=
 
30037
-compiler_lib_search_dirs_CXX=
22873
30038
+    sysv5* | sco3.2v5* | sco5v6*)
22874
30039
+      # Note: We can NOT use -z defs as we might desire, because we do not
22875
30040
+      # link with -lc, and that would cause any symbols used from libc to
22887
30052
+      export_dynamic_flag_spec='${wl}-Bexport'
22888
30053
+      runpath_var='LD_RUN_PATH'
22889
30054
 
22890
 
-int
22891
 
-main ()
22892
 
-{
 
30055
-# Source file extension for C++ test sources.
 
30056
-ac_ext=cpp
22893
30057
+      if test "$GCC" = yes; then
22894
30058
+       archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
22895
30059
+       archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
22899
30063
+      fi
22900
30064
+      ;;
22901
30065
 
22902
 
-  ;
22903
 
-  return 0;
22904
 
-}
22905
 
-_ACEOF
22906
 
-rm -f conftest.$ac_objext conftest$ac_exeext
22907
 
-if { (ac_try="$ac_link"
22908
 
-case "(($ac_try" in
22909
 
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
22910
 
-  *) ac_try_echo=$ac_try;;
22911
 
-esac
22912
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
22913
 
-  (eval "$ac_link") 2>conftest.er1
22914
 
-  ac_status=$?
22915
 
-  grep -v '^ *+' conftest.er1 >conftest.err
22916
 
-  rm -f conftest.er1
22917
 
-  cat conftest.err >&5
22918
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
22919
 
-  (exit $ac_status); } && {
22920
 
-        test -z "$ac_cxx_werror_flag" ||
22921
 
-        test ! -s conftest.err
22922
 
-       } && test -s conftest$ac_exeext &&
22923
 
-       $as_test_x conftest$ac_exeext; then
 
30066
-# Object file extension for compiled C++ test sources.
 
30067
-objext=o
 
30068
-objext_CXX=$objext
22924
30069
+    uts4*)
22925
30070
+      archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
22926
30071
+      hardcode_libdir_flag_spec='-L$libdir'
22927
30072
+      hardcode_shlibpath_var=no
22928
30073
+      ;;
22929
30074
 
22930
 
-lt_aix_libpath_sed='
22931
 
-    /Import File Strings/,/^$/ {
22932
 
-       /^0/ {
22933
 
-           s/^0  *\(.*\)$/\1/
22934
 
-           p
22935
 
-       }
22936
 
-    }'
22937
 
-aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
22938
 
-# Check for a 64-bit object if we didn't find anything.
22939
 
-if test -z "$aix_libpath"; then
22940
 
-  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
22941
 
-fi
22942
 
-else
22943
 
-  echo "$as_me: failed program was:" >&5
22944
 
-sed 's/^/| /' conftest.$ac_ext >&5
 
30075
-# Code to be used in simple compile tests
 
30076
-lt_simple_compile_test_code="int some_variable = 0;"
22945
30077
+    *)
22946
30078
+      ld_shlibs=no
22947
30079
+      ;;
22948
30080
+    esac
22949
30081
 
 
30082
-# Code to be used in simple link tests
 
30083
-lt_simple_link_test_code='int main(int, char *[]) { return(0); }'
22950
30084
+    if test x$host_vendor = xsni; then
22951
30085
+      case $host in
22952
30086
+      sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
22956
30090
+    fi
22957
30091
+  fi
22958
30092
 
22959
 
-fi
 
30093
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
22960
30094
+{ echo "$as_me:$LINENO: result: $ld_shlibs" >&5
22961
30095
+echo "${ECHO_T}$ld_shlibs" >&6; }
22962
30096
+test "$ld_shlibs" = no && can_build_shared=no
22963
30097
 
22964
 
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
22965
 
-      conftest$ac_exeext conftest.$ac_ext
22966
 
-if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 
30098
-# If no C compiler was specified, use CC.
 
30099
-LTCC=${LTCC-"$CC"}
22967
30100
+with_gnu_ld=$with_gnu_ld
22968
30101
 
 
30102
-# If no C compiler flags were specified, use CFLAGS.
 
30103
-LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
 
30104
 
 
30105
-# Allow CC to be a program name with arguments.
 
30106
-compiler=$CC
 
30107
 
 
30108
 
 
30109
-# save warnings/boilerplate of simple test code
 
30110
-ac_outfile=conftest.$ac_objext
 
30111
-echo "$lt_simple_compile_test_code" >conftest.$ac_ext
 
30112
-eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
 
30113
-_lt_compiler_boilerplate=`cat conftest.err`
 
30114
-$rm conftest*
 
30115
 
 
30116
-ac_outfile=conftest.$ac_objext
 
30117
-echo "$lt_simple_link_test_code" >conftest.$ac_ext
 
30118
-eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
 
30119
-_lt_linker_boilerplate=`cat conftest.err`
 
30120
-$rm -r conftest*
 
30121
 
 
30122
 
 
30123
-# Allow CC to be a program name with arguments.
 
30124
-lt_save_CC=$CC
 
30125
-lt_save_LD=$LD
 
30126
-lt_save_GCC=$GCC
 
30127
-GCC=$GXX
 
30128
-lt_save_with_gnu_ld=$with_gnu_ld
 
30129
-lt_save_path_LD=$lt_cv_path_LD
 
30130
-if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
 
30131
-  lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
 
30132
-else
 
30133
-  $as_unset lt_cv_prog_gnu_ld
 
30134
-fi
 
30135
-if test -n "${lt_cv_path_LDCXX+set}"; then
 
30136
-  lt_cv_path_LD=$lt_cv_path_LDCXX
 
30137
-else
 
30138
-  $as_unset lt_cv_path_LD
 
30139
-fi
 
30140
-test -z "${LDCXX+set}" || LD=$LDCXX
 
30141
-CC=${CXX-"c++"}
 
30142
-compiler=$CC
 
30143
-compiler_CXX=$CC
 
30144
-for cc_temp in $compiler""; do
 
30145
-  case $cc_temp in
 
30146
-    compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
 
30147
-    distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
 
30148
-    \-*) ;;
 
30149
-    *) break;;
 
30150
-  esac
 
30151
-done
 
30152
-cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
 
30153
 
 
30154
 
 
30155
-# We don't want -fno-exception wen compiling C++ code, so set the
 
30156
-# no_builtin_flag separately
 
30157
-if test "$GXX" = yes; then
 
30158
-  lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin'
 
30159
-else
 
30160
-  lt_prog_compiler_no_builtin_flag_CXX=
 
30161
-fi
 
30162
 
 
30163
-if test "$GXX" = yes; then
 
30164
-  # Set up default GNU C++ configuration
 
30165
 
 
30166
 
 
30167
-# Check whether --with-gnu-ld was given.
 
30168
-if test "${with_gnu_ld+set}" = set; then
 
30169
-  withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes
 
30170
-else
 
30171
-  with_gnu_ld=no
 
30172
-fi
 
30173
 
 
30174
-ac_prog=ld
 
30175
-if test "$GCC" = yes; then
 
30176
-  # Check if gcc -print-prog-name=ld gives a path.
 
30177
-  { $as_echo "$as_me:$LINENO: checking for ld used by $CC" >&5
 
30178
-$as_echo_n "checking for ld used by $CC... " >&6; }
 
30179
-  case $host in
 
30180
-  *-*-mingw*)
 
30181
-    # gcc leaves a trailing carriage return which upsets mingw
 
30182
-    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
 
30183
-  *)
 
30184
-    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
 
30185
-  esac
 
30186
-  case $ac_prog in
 
30187
-    # Accept absolute paths.
 
30188
-    [\\/]* | ?:[\\/]*)
 
30189
-      re_direlt='/[^/][^/]*/\.\./'
 
30190
-      # Canonicalize the pathname of ld
 
30191
-      ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'`
 
30192
-      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
 
30193
-       ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
 
30194
-      done
 
30195
-      test -z "$LD" && LD="$ac_prog"
 
30196
+
 
30197
+
 
30198
+#
 
30199
+# Do we need to explicitly link libc?
 
30200
+#
 
30201
+case "x$archive_cmds_need_lc" in
 
30202
+x|xyes)
 
30203
+  # Assume -lc should be added
 
30204
+  archive_cmds_need_lc=yes
 
30205
+
 
30206
+  if test "$enable_shared" = yes && test "$GCC" = yes; then
 
30207
+    case $archive_cmds in
 
30208
+    *'~'*)
 
30209
+      # FIXME: we may have to deal with multi-command sequences.
 
30210
       ;;
 
30211
-  "")
 
30212
-    # If it fails, then pretend we aren't using GCC.
 
30213
-    ac_prog=ld
 
30214
-    ;;
 
30215
-  *)
 
30216
-    # If it is relative, then search for the first ld in PATH.
 
30217
-    with_gnu_ld=unknown
 
30218
-    ;;
 
30219
-  esac
 
30220
-elif test "$with_gnu_ld" = yes; then
 
30221
-  { $as_echo "$as_me:$LINENO: checking for GNU ld" >&5
 
30222
-$as_echo_n "checking for GNU ld... " >&6; }
 
30223
-else
 
30224
-  { $as_echo "$as_me:$LINENO: checking for non-GNU ld" >&5
 
30225
-$as_echo_n "checking for non-GNU ld... " >&6; }
 
30226
-fi
 
30227
-if test "${lt_cv_path_LD+set}" = set; then
 
30228
-  $as_echo_n "(cached) " >&6
 
30229
-else
 
30230
-  if test -z "$LD"; then
 
30231
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 
30232
-  for ac_dir in $PATH; do
 
30233
-    IFS="$lt_save_ifs"
 
30234
-    test -z "$ac_dir" && ac_dir=.
 
30235
-    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
 
30236
-      lt_cv_path_LD="$ac_dir/$ac_prog"
 
30237
-      # Check to see if the program is GNU ld.  I'd rather use --version,
 
30238
-      # but apparently some variants of GNU ld only accept -v.
 
30239
-      # Break only if it was the GNU/non-GNU ld that we prefer.
 
30240
-      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
 
30241
-      *GNU* | *'with BFD'*)
 
30242
-       test "$with_gnu_ld" != no && break
 
30243
-       ;;
 
30244
-      *)
 
30245
-       test "$with_gnu_ld" != yes && break
 
30246
-       ;;
 
30247
-      esac
 
30248
-    fi
 
30249
-  done
 
30250
-  IFS="$lt_save_ifs"
 
30251
-else
 
30252
-  lt_cv_path_LD="$LD" # Let the user override the test with a path.
 
30253
-fi
 
30254
-fi
 
30255
+    '$CC '*)
 
30256
+      # Test whether the compiler implicitly links with -lc since on some
 
30257
+      # systems, -lgcc has to come before -lc. If gcc already passes -lc
 
30258
+      # to ld, don't add -lc before -lgcc.
 
30259
+      { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
 
30260
+echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; }
 
30261
+      $RM conftest*
 
30262
+      echo "$lt_simple_compile_test_code" > conftest.$ac_ext
 
30263
 
 
30264
-LD="$lt_cv_path_LD"
 
30265
-if test -n "$LD"; then
 
30266
-  { $as_echo "$as_me:$LINENO: result: $LD" >&5
 
30267
-$as_echo "$LD" >&6; }
 
30268
-else
 
30269
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
30270
-$as_echo "no" >&6; }
 
30271
-fi
 
30272
-test -z "$LD" && { { $as_echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
 
30273
-$as_echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
 
30274
-   { (exit 1); exit 1; }; }
 
30275
-{ $as_echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
 
30276
-$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
 
30277
-if test "${lt_cv_prog_gnu_ld+set}" = set; then
 
30278
-  $as_echo_n "(cached) " >&6
 
30279
-else
 
30280
-  # I'd rather use --version here, but apparently some GNU lds only accept -v.
 
30281
-case `$LD -v 2>&1 </dev/null` in
 
30282
-*GNU* | *'with BFD'*)
 
30283
-  lt_cv_prog_gnu_ld=yes
 
30284
-  ;;
 
30285
-*)
 
30286
-  lt_cv_prog_gnu_ld=no
 
30287
+      if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
30288
+  (eval $ac_compile) 2>&5
 
30289
+  ac_status=$?
 
30290
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
30291
+  (exit $ac_status); } 2>conftest.err; then
 
30292
+        soname=conftest
 
30293
+        lib=conftest
 
30294
+        libobjs=conftest.$ac_objext
 
30295
+        deplibs=
 
30296
+        wl=$lt_prog_compiler_wl
 
30297
+       pic_flag=$lt_prog_compiler_pic
 
30298
+        compiler_flags=-v
 
30299
+        linker_flags=-v
 
30300
+        verstring=
 
30301
+        output_objdir=.
 
30302
+        libname=conftest
 
30303
+        lt_save_allow_undefined_flag=$allow_undefined_flag
 
30304
+        allow_undefined_flag=
 
30305
+        if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\"") >&5
 
30306
+  (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5
 
30307
+  ac_status=$?
 
30308
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
30309
+  (exit $ac_status); }
 
30310
+        then
 
30311
+         archive_cmds_need_lc=no
 
30312
+        else
 
30313
+         archive_cmds_need_lc=yes
 
30314
+        fi
 
30315
+        allow_undefined_flag=$lt_save_allow_undefined_flag
 
30316
+      else
 
30317
+        cat conftest.err 1>&5
 
30318
+      fi
 
30319
+      $RM conftest*
 
30320
+      { echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5
 
30321
+echo "${ECHO_T}$archive_cmds_need_lc" >&6; }
 
30322
+      ;;
 
30323
+    esac
 
30324
+  fi
 
30325
   ;;
 
30326
 esac
 
30327
-fi
 
30328
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5
 
30329
-$as_echo "$lt_cv_prog_gnu_ld" >&6; }
 
30330
-with_gnu_ld=$lt_cv_prog_gnu_ld
 
30331
 
 
30332
 
 
30333
 
 
30334
-  # Check if GNU C++ uses GNU ld as the underlying linker, since the
 
30335
-  # archiving commands below assume that GNU ld is being used.
 
30336
-  if test "$with_gnu_ld" = yes; then
 
30337
-    archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
30338
-    archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
 
30339
 
 
30340
-    hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir'
 
30341
-    export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
 
30342
 
 
30343
-    # If archive_cmds runs LD, not CC, wlarc should be empty
 
30344
-    # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
 
30345
-    #     investigate it a little bit more. (MM)
 
30346
-    wlarc='${wl}'
 
30347
 
 
30348
-    # ancient GNU ld didn't support --whole-archive et. al.
 
30349
-    if eval "`$CC -print-prog-name=ld` --help 2>&1" | \
 
30350
-       grep 'no-whole-archive' > /dev/null; then
 
30351
-      whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
 
30352
-    else
 
30353
-      whole_archive_flag_spec_CXX=
 
30354
-    fi
 
30355
-  else
 
30356
-    with_gnu_ld=no
 
30357
-    wlarc=
 
30358
 
 
30359
-    # A generic and very simple default shared library creation
 
30360
-    # command for GNU C++ for the case where it uses the native
 
30361
-    # linker, instead of GNU ld.  If possible, this setting should
 
30362
-    # overridden to take advantage of the native linker features on
 
30363
-    # the platform it is being used on.
 
30364
-    archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
 
30365
-  fi
 
30366
 
 
30367
-  # Commands to make compiler produce verbose output that lists
 
30368
-  # what "hidden" libraries, object files and flags are used when
 
30369
-  # linking a shared library.
 
30370
-  output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
 
30371
 
 
30372
-else
 
30373
-  GXX=no
 
30374
-  with_gnu_ld=no
 
30375
-  wlarc=
 
30376
-fi
 
30377
 
 
30378
-# PORTME: fill in a description of your system's C++ link characteristics
 
30379
-{ $as_echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
 
30380
-$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; }
 
30381
-ld_shlibs_CXX=yes
 
30382
-case $host_os in
 
30383
-  aix3*)
 
30384
-    # FIXME: insert proper C++ library support
 
30385
-    ld_shlibs_CXX=no
 
30386
-    ;;
 
30387
-  aix[4-9]*)
 
30388
-    if test "$host_cpu" = ia64; then
 
30389
-      # On IA64, the linker does run time linking by default, so we don't
 
30390
-      # have to do anything special.
 
30391
-      aix_use_runtimelinking=no
 
30392
-      exp_sym_flag='-Bexport'
 
30393
-      no_entry_flag=""
 
30394
-    else
 
30395
-      aix_use_runtimelinking=no
 
30396
 
 
30397
-      # Test if we are trying to use run time linking or normal
 
30398
-      # AIX style linking. If -brtl is somewhere in LDFLAGS, we
 
30399
-      # need to do runtime linking.
 
30400
-      case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)
 
30401
-       for ld_flag in $LDFLAGS; do
 
30402
-         case $ld_flag in
 
30403
-         *-brtl*)
 
30404
-           aix_use_runtimelinking=yes
 
30405
-           break
 
30406
-           ;;
 
30407
-         esac
 
30408
-       done
 
30409
-       ;;
 
30410
-      esac
 
30411
 
 
30412
-      exp_sym_flag='-bexport'
 
30413
-      no_entry_flag='-bnoentry'
 
30414
-    fi
 
30415
 
 
30416
-    # When large executables or shared objects are built, AIX ld can
 
30417
-    # have problems creating the table of contents.  If linking a library
 
30418
-    # or program results in "error TOC overflow" add -mminimal-toc to
 
30419
-    # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
 
30420
-    # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
 
30421
-
 
30422
-    archive_cmds_CXX=''
 
30423
-    hardcode_direct_CXX=yes
 
30424
-    hardcode_libdir_separator_CXX=':'
 
30425
-    link_all_deplibs_CXX=yes
 
30426
 
 
30427
-    if test "$GXX" = yes; then
 
30428
-      case $host_os in aix4.[012]|aix4.[012].*)
 
30429
-      # We only want to do this on AIX 4.2 and lower, the check
 
30430
-      # below for broken collect2 doesn't work under 4.3+
 
30431
-       collect2name=`${CC} -print-prog-name=collect2`
 
30432
-       if test -f "$collect2name" && \
 
30433
-          strings "$collect2name" | grep resolve_lib_name >/dev/null
 
30434
-       then
 
30435
-         # We have reworked collect2
 
30436
-         :
 
30437
-       else
 
30438
-         # We have old collect2
 
30439
-         hardcode_direct_CXX=unsupported
 
30440
-         # It fails to find uninstalled libraries when the uninstalled
 
30441
-         # path is not listed in the libpath.  Setting hardcode_minus_L
 
30442
-         # to unsupported forces relinking
 
30443
-         hardcode_minus_L_CXX=yes
 
30444
-         hardcode_libdir_flag_spec_CXX='-L$libdir'
 
30445
-         hardcode_libdir_separator_CXX=
 
30446
-       fi
 
30447
-       ;;
 
30448
-      esac
 
30449
-      shared_flag='-shared'
 
30450
-      if test "$aix_use_runtimelinking" = yes; then
 
30451
-       shared_flag="$shared_flag "'${wl}-G'
 
30452
-      fi
 
30453
-    else
 
30454
-      # not using gcc
 
30455
-      if test "$host_cpu" = ia64; then
 
30456
-       # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
 
30457
-       # chokes on -Wl,-G. The following line is correct:
 
30458
-       shared_flag='-G'
 
30459
-      else
 
30460
-       if test "$aix_use_runtimelinking" = yes; then
 
30461
-         shared_flag='${wl}-G'
 
30462
-       else
 
30463
-         shared_flag='${wl}-bM:SRE'
 
30464
-       fi
 
30465
-      fi
 
30466
-    fi
 
30467
 
 
30468
-    # It seems that -bexpall does not export symbols beginning with
 
30469
-    # underscore (_), so it is better to generate a list of symbols to export.
 
30470
-    always_export_symbols_CXX=yes
 
30471
-    if test "$aix_use_runtimelinking" = yes; then
 
30472
-      # Warning - without using the other runtime loading flags (-brtl),
 
30473
-      # -berok will link without error, but may produce a broken library.
 
30474
-      allow_undefined_flag_CXX='-berok'
 
30475
-      # Determine the default libpath from the value encoded in an empty executable.
 
30476
-      cat >conftest.$ac_ext <<_ACEOF
 
30477
-/* confdefs.h.  */
 
30478
-_ACEOF
 
30479
-cat confdefs.h >>conftest.$ac_ext
 
30480
-cat >>conftest.$ac_ext <<_ACEOF
 
30481
-/* end confdefs.h.  */
 
30482
 
 
30483
-int
 
30484
-main ()
 
30485
-{
 
30486
 
 
30487
-  ;
 
30488
-  return 0;
 
30489
-}
 
30490
-_ACEOF
 
30491
-rm -f conftest.$ac_objext conftest$ac_exeext
 
30492
-if { (ac_try="$ac_link"
 
30493
-case "(($ac_try" in
 
30494
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
30495
-  *) ac_try_echo=$ac_try;;
 
30496
-esac
 
30497
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
30498
-$as_echo "$ac_try_echo") >&5
 
30499
-  (eval "$ac_link") 2>conftest.er1
 
30500
-  ac_status=$?
 
30501
-  grep -v '^ *+' conftest.er1 >conftest.err
 
30502
-  rm -f conftest.er1
 
30503
-  cat conftest.err >&5
 
30504
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
30505
-  (exit $ac_status); } && {
 
30506
-        test -z "$ac_cxx_werror_flag" ||
 
30507
-        test ! -s conftest.err
 
30508
-       } && test -s conftest$ac_exeext && {
 
30509
-        test "$cross_compiling" = yes ||
 
30510
-        $as_test_x conftest$ac_exeext
 
30511
-       }; then
 
30512
 
 
30513
-lt_aix_libpath_sed='
 
30514
-    /Import File Strings/,/^$/ {
 
30515
-       /^0/ {
 
30516
-           s/^0  *\(.*\)$/\1/
 
30517
-           p
 
30518
-       }
 
30519
-    }'
 
30520
-aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
 
30521
-# Check for a 64-bit object if we didn't find anything.
 
30522
-if test -z "$aix_libpath"; then
 
30523
-  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
 
30524
-fi
 
30525
-else
 
30526
-  $as_echo "$as_me: failed program was:" >&5
 
30527
-sed 's/^/| /' conftest.$ac_ext >&5
 
30528
 
 
30529
 
 
30530
-fi
 
30531
 
 
30532
-rm -rf conftest.dSYM
 
30533
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
30534
-      conftest$ac_exeext conftest.$ac_ext
 
30535
-if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 
30536
 
22969
30537
-      hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath"
22970
30538
 
22971
30539
-      archive_expsym_cmds_CXX="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
22997
30565
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
22998
30566
-  *) ac_try_echo=$ac_try;;
22999
30567
-esac
23000
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
30568
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
30569
-$as_echo "$ac_try_echo") >&5
23001
30570
-  (eval "$ac_link") 2>conftest.er1
23002
30571
-  ac_status=$?
23003
30572
-  grep -v '^ *+' conftest.er1 >conftest.err
23004
30573
-  rm -f conftest.er1
23005
30574
-  cat conftest.err >&5
23006
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
30575
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
23007
30576
-  (exit $ac_status); } && {
23008
30577
-        test -z "$ac_cxx_werror_flag" ||
23009
30578
-        test ! -s conftest.err
23010
 
-       } && test -s conftest$ac_exeext &&
23011
 
-       $as_test_x conftest$ac_exeext; then
 
30579
-       } && test -s conftest$ac_exeext && {
 
30580
-        test "$cross_compiling" = yes ||
 
30581
-        $as_test_x conftest$ac_exeext
 
30582
-       }; then
23012
30583
 
23013
30584
-lt_aix_libpath_sed='
23014
30585
-    /Import File Strings/,/^$/ {
23023
30594
-  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
23024
30595
-fi
23025
30596
-else
23026
 
-  echo "$as_me: failed program was:" >&5
 
30597
-  $as_echo "$as_me: failed program was:" >&5
23027
30598
-sed 's/^/| /' conftest.$ac_ext >&5
23028
30599
 
23029
30600
 
23030
30601
-fi
23031
30602
 
 
30603
-rm -rf conftest.dSYM
23032
30604
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
23033
30605
-      conftest$ac_exeext conftest.$ac_ext
23034
30606
-if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
23074
30646
-    allow_undefined_flag_CXX=unsupported
23075
30647
-    always_export_symbols_CXX=no
23076
30648
-    enable_shared_with_static_runtimes_CXX=yes
23077
 
 
 
30649
-
23078
30650
-    if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
23079
30651
-      archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
23080
30652
-      # If the export-symbols file already is a .def file (1st line
23091
30663
-    fi
23092
30664
-  ;;
23093
30665
-      darwin* | rhapsody*)
23094
 
-        case $host_os in
23095
 
-        rhapsody* | darwin1.[012])
23096
 
-         allow_undefined_flag_CXX='${wl}-undefined ${wl}suppress'
23097
 
-         ;;
23098
 
-       *) # Darwin 1.3 on
23099
 
-         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
23100
 
-           allow_undefined_flag_CXX='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
23101
 
-         else
23102
 
-           case ${MACOSX_DEPLOYMENT_TARGET} in
23103
 
-             10.[012])
23104
 
-               allow_undefined_flag_CXX='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
23105
 
-               ;;
23106
 
-             10.*)
23107
 
-               allow_undefined_flag_CXX='${wl}-undefined ${wl}dynamic_lookup'
23108
 
-               ;;
23109
 
-           esac
23110
 
-         fi
23111
 
+
23112
 
+
23113
 
+#
23114
 
+# Do we need to explicitly link libc?
23115
 
+#
23116
 
+case "x$archive_cmds_need_lc" in
23117
 
+x|xyes)
23118
 
+  # Assume -lc should be added
23119
 
+  archive_cmds_need_lc=yes
23120
 
+
23121
 
+  if test "$enable_shared" = yes && test "$GCC" = yes; then
23122
 
+    case $archive_cmds in
23123
 
+    *'~'*)
23124
 
+      # FIXME: we may have to deal with multi-command sequences.
23125
 
          ;;
23126
 
-        esac
23127
30666
-      archive_cmds_need_lc_CXX=no
23128
30667
-      hardcode_direct_CXX=no
23129
30668
-      hardcode_automatic_CXX=yes
23130
30669
-      hardcode_shlibpath_var_CXX=unsupported
23131
30670
-      whole_archive_flag_spec_CXX=''
23132
30671
-      link_all_deplibs_CXX=yes
23133
 
+    '$CC '*)
23134
 
+      # Test whether the compiler implicitly links with -lc since on some
23135
 
+      # systems, -lgcc has to come before -lc. If gcc already passes -lc
23136
 
+      # to ld, don't add -lc before -lgcc.
23137
 
+      { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
23138
 
+echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; }
23139
 
+      $RM conftest*
23140
 
+      echo "$lt_simple_compile_test_code" > conftest.$ac_ext
23141
 
 
23142
 
-    if test "$GXX" = yes ; then
23143
 
-      lt_int_apple_cc_single_mod=no
 
30672
-      allow_undefined_flag_CXX="$_lt_dar_allow_undefined"
 
30673
-      if test "$GXX" = yes ; then
23144
30674
-      output_verbose_link_cmd='echo'
23145
 
-      if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then
23146
 
-       lt_int_apple_cc_single_mod=yes
 
30675
-      archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
 
30676
-      module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
 
30677
-      archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
 
30678
-      module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
 
30679
-      if test "$lt_cv_apple_cc_single_mod" != "yes"; then
 
30680
-        archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}"
 
30681
-        archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}"
23147
30682
-      fi
23148
 
-      if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
23149
 
-       archive_cmds_CXX='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
23150
 
+      if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
23151
 
+  (eval $ac_compile) 2>&5
23152
 
+  ac_status=$?
23153
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
23154
 
+  (exit $ac_status); } 2>conftest.err; then
23155
 
+        soname=conftest
23156
 
+        lib=conftest
23157
 
+        libobjs=conftest.$ac_objext
23158
 
+        deplibs=
23159
 
+        wl=$lt_prog_compiler_wl
23160
 
+       pic_flag=$lt_prog_compiler_pic
23161
 
+        compiler_flags=-v
23162
 
+        linker_flags=-v
23163
 
+        verstring=
23164
 
+        output_objdir=.
23165
 
+        libname=conftest
23166
 
+        lt_save_allow_undefined_flag=$allow_undefined_flag
23167
 
+        allow_undefined_flag=
23168
 
+        if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\"") >&5
23169
 
+  (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5
23170
 
+  ac_status=$?
23171
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
23172
 
+  (exit $ac_status); }
23173
 
+        then
23174
 
+         archive_cmds_need_lc=no
23175
 
       else
23176
 
-          archive_cmds_CXX='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
23177
 
+         archive_cmds_need_lc=yes
23178
 
         fi
23179
 
-        module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
23180
 
-        # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
23181
 
-          if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
23182
 
-            archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
23183
 
+        allow_undefined_flag=$lt_save_allow_undefined_flag
23184
 
           else
23185
 
-            archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
23186
 
+        cat conftest.err 1>&5
23187
 
           fi
23188
 
-            module_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag  -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
23189
30683
-      else
23190
30684
-      case $cc_basename in
23191
30685
-        xlc*)
23198
30692
-          ;;
23199
30693
-       *)
23200
30694
-         ld_shlibs_CXX=no
23201
 
+      $RM conftest*
23202
 
+      { echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5
23203
 
+echo "${ECHO_T}$archive_cmds_need_lc" >&6; }
23204
 
           ;;
23205
 
       esac
23206
 
       fi
23207
 
         ;;
23208
 
+esac
23209
 
+
23210
 
+
23211
 
+
23212
 
+
23213
 
+
23214
 
+
23215
 
+
23216
 
+
23217
 
+
23218
 
+
23219
 
+
23220
 
+
23221
 
+
23222
 
+
23223
 
+
23224
 
+
23225
 
+
23226
 
+
23227
 
+
23228
 
+
23229
 
+
23230
 
+
23231
 
+
23232
 
+
23233
 
+
23234
 
+
 
30695
-          ;;
 
30696
-      esac
 
30697
-      fi
 
30698
-        ;;
23235
30699
 
23236
30700
-  dgux*)
23237
30701
-    case $cc_basename in
23272
30736
-    hardcode_minus_L_CXX=yes # Not in the search PATH,
23273
30737
-                               # but as the default
23274
30738
-                               # location of the library.
23275
 
 
 
30739
-
23276
30740
-    case $cc_basename in
23277
30741
-    CC*)
23278
30742
-      # FIXME: insert proper C++ library support
23393
30857
-      CC*)
23394
30858
-       # SGI C++
23395
30859
-       archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
23396
 
 
 
30860
-
23397
30861
-       # Archives containing C++ object files must be created using
23398
30862
-       # "CC -ar", where "CC" is the IRIX C++ compiler.  This is
23399
30863
-       # necessary to make sure instantiated templates are included
23418
30882
-    case $cc_basename in
23419
30883
-      KCC*)
23420
30884
-       # Kuck and Associates, Inc. (KAI) C++ Compiler
23421
 
 
 
30885
-
23422
30886
-       # KCC will only create a shared library if the output file
23423
30887
-       # ends with ".so" (or ".sl" for HP-UX), so rename the library
23424
30888
-       # to its proper name (with version) after linking.
23433
30897
-       # from the output so that they don't get included in the library
23434
30898
-       # dependencies.
23435
30899
-       output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
23436
 
 
 
30900
-
23437
30901
-       hardcode_libdir_flag_spec_CXX='${wl}--rpath,$libdir'
23438
30902
-       export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
23439
 
 
 
30903
-
23440
30904
-       # Archives containing C++ object files must be created using
23441
30905
-       # "CC -Bstatic", where "CC" is the KAI C++ compiler.
23442
30906
-       old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs'
23466
30930
-       export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
23467
30931
-       whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
23468
30932
-       ;;
23469
 
-      pgCC*)
 
30933
-      pgCC* | pgcpp*)
23470
30934
-        # Portland Group C++ compiler
23471
30935
-       archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
23472
30936
-       archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
23473
 
 
 
30937
-
23474
30938
-       hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir'
23475
30939
-       export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
23476
30940
-       whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
23508
30972
-         # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1
23509
30973
-         # would be better.
23510
30974
-         output_verbose_link_cmd='echo'
23511
 
 
 
30975
-
23512
30976
-         # Archives containing C++ object files must be created using
23513
30977
-         # "CC -xar", where "CC" is the Sun C++ compiler.  This is
23514
30978
-         # necessary to make sure instantiated templates are included
23574
31038
-    case $cc_basename in
23575
31039
-      KCC*)
23576
31040
-       # Kuck and Associates, Inc. (KAI) C++ Compiler
23577
 
 
 
31041
-
23578
31042
-       # KCC will only create a shared library if the output file
23579
31043
-       # ends with ".so" (or ".sl" for HP-UX), so rename the library
23580
31044
-       # to its proper name (with version) after linking.
23596
31060
-      cxx*)
23597
31061
-       allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*'
23598
31062
-       archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
23599
 
 
 
31063
-
23600
31064
-       hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
23601
31065
-       hardcode_libdir_separator_CXX=:
23602
 
 
 
31066
-
23603
31067
-       # Commands to make compiler produce verbose output that lists
23604
31068
-       # what "hidden" libraries, object files and flags are used when
23605
31069
-       # linking a shared library.
23634
31098
-    case $cc_basename in
23635
31099
-      KCC*)
23636
31100
-       # Kuck and Associates, Inc. (KAI) C++ Compiler
23637
 
 
 
31101
-
23638
31102
-       # KCC will only create a shared library if the output file
23639
31103
-       # ends with ".so" (or ".sl" for HP-UX), so rename the library
23640
31104
-       # to its proper name (with version) after linking.
23659
31123
-         echo "-hidden">> $lib.exp~
23660
31124
-         $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp  `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~
23661
31125
-         $rm $lib.exp'
23662
 
 
 
31126
-
23663
31127
-       hardcode_libdir_flag_spec_CXX='-rpath $libdir'
23664
31128
-       hardcode_libdir_separator_CXX=:
23665
 
 
 
31129
-
23666
31130
-       # Commands to make compiler produce verbose output that lists
23667
31131
-       # what "hidden" libraries, object files and flags are used when
23668
31132
-       # linking a shared library.
23795
31259
-    archive_cmds_need_lc_CXX=no
23796
31260
-    hardcode_shlibpath_var_CXX=no
23797
31261
-    runpath_var='LD_RUN_PATH'
23798
 
 
 
31262
-
23799
31263
-    case $cc_basename in
23800
31264
-      CC*)
23801
31265
-       archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
23832
31296
-    link_all_deplibs_CXX=yes
23833
31297
-    export_dynamic_flag_spec_CXX='${wl}-Bexport'
23834
31298
-    runpath_var='LD_RUN_PATH'
23835
 
 
 
31299
-
23836
31300
-    case $cc_basename in
23837
31301
-      CC*)
23838
31302
-       archive_cmds_CXX='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
23866
31330
-    ld_shlibs_CXX=no
23867
31331
-    ;;
23868
31332
-esac
23869
 
-{ echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5
23870
 
-echo "${ECHO_T}$ld_shlibs_CXX" >&6; }
 
31333
-{ $as_echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5
 
31334
-$as_echo "$ld_shlibs_CXX" >&6; }
23871
31335
-test "$ld_shlibs_CXX" = no && can_build_shared=no
23872
31336
 
23873
31337
-GCC_CXX="$GXX"
23874
31338
-LD_CXX="$LD"
23875
31339
 
23876
 
 
23877
31340
-cat > conftest.$ac_ext <<EOF
23878
31341
-class Foo
23879
31342
-{
23887
31350
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
23888
31351
-  (eval $ac_compile) 2>&5
23889
31352
-  ac_status=$?
23890
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
31353
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
23891
31354
-  (exit $ac_status); }; then
23892
31355
-  # Parse the compiler output and extract the necessary
23893
31356
-  # objects, libraries and library flags.
23975
31438
 
23976
31439
-$rm -f confest.$objext
23977
31440
 
 
31441
-compiler_lib_search_dirs_CXX=
 
31442
-if test -n "$compiler_lib_search_path_CXX"; then
 
31443
-  compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'`
 
31444
-fi
 
31445
 
23978
31446
-# PORTME: override above test on systems where it is broken
23979
31447
-case $host_os in
23980
31448
-interix[3-9]*)
24030
31498
-  ;;
24031
31499
-esac
24032
31500
 
24033
 
 
24034
31501
-case " $postdeps_CXX " in
24035
31502
-*" -lc "*) archive_cmds_need_lc_CXX=no ;;
24036
31503
-esac
24039
31506
-lt_prog_compiler_pic_CXX=
24040
31507
-lt_prog_compiler_static_CXX=
24041
31508
 
24042
 
-{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5
24043
 
-echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; }
 
31509
-{ $as_echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5
 
31510
-$as_echo_n "checking for $compiler option to produce PIC... " >&6; }
24044
31511
 
24045
31512
-  # C++ specific cases for pic, static, wl, etc.
24046
31513
-  if test "$GXX" = yes; then
24047
31514
-    lt_prog_compiler_wl_CXX='-Wl,'
24048
31515
-    lt_prog_compiler_static_CXX='-static'
24049
31516
 
24050
 
+
24051
 
+
24052
 
+
24053
 
+
24054
 
+
24055
 
+
24056
 
+
24057
 
+
24058
 
+
24059
 
+
24060
 
+
24061
 
+
24062
 
+
24063
 
+
24064
 
+
24065
 
+
24066
 
+
24067
 
+
24068
 
+
24069
 
+
24070
 
+
24071
 
+
24072
 
+
24073
 
+
24074
 
+
24075
 
+
24076
 
+
24077
 
+
24078
 
+
24079
 
+
24080
 
+
24081
 
+
24082
 
+
24083
 
+
24084
 
+
24085
 
+
24086
 
+
24087
 
+
24088
 
+
24089
 
+
24090
 
+
24091
 
+
24092
 
+
24093
 
+
24094
 
+
24095
 
+
24096
 
+
24097
 
+
24098
 
+
24099
 
+
24100
 
+
24101
 
+
24102
 
+
24103
 
+
24104
 
+
24105
 
+
24106
 
+
24107
 
+
24108
 
+
24109
 
+
24110
 
+
24111
 
+
24112
 
+
24113
 
+
24114
 
+
24115
 
+
24116
 
+
24117
 
+  { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
24118
 
+echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; }
24119
 
+
24120
 
+if test "$GCC" = yes; then
24121
 
     case $host_os in
 
31517
-    case $host_os in
24122
31518
-    aix*)
24123
31519
-      # All AIX code is PIC.
24124
31520
-      if test "$host_cpu" = ia64; then
24125
31521
-       # AIX 5 now supports IA64 processor
24126
31522
-       lt_prog_compiler_static_CXX='-Bstatic'
24127
 
+    darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
24128
 
+    *) lt_awk_arg="/^libraries:/" ;;
24129
 
+  esac
24130
 
+  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"`
24131
 
+  if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then
24132
 
+    # if the path contains ";" then we assume it to be the separator
24133
 
+    # otherwise default to the standard path separator (i.e. ":") - it is
24134
 
+    # assumed that no part of a normal pathname contains ";" but that should
24135
 
+    # okay in the real world where ";" in dirpaths is itself problematic.
24136
 
+    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'`
24137
 
+  else
24138
 
+    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
24139
 
       fi
 
31523
-      fi
24140
31524
-      ;;
24141
31525
-    amigaos*)
24142
31526
-      # FIXME: we need at least 68020 code to build shared libraries, but
24170
31554
-    sysv4*MP*)
24171
31555
-      if test -d /usr/nec; then
24172
31556
-       lt_prog_compiler_pic_CXX=-Kconform_pic
 
31557
+
 
31558
+
 
31559
+
 
31560
+
 
31561
+
 
31562
+
 
31563
+
 
31564
+
 
31565
+
 
31566
+
 
31567
+
 
31568
+
 
31569
+
 
31570
+
 
31571
+
 
31572
+
 
31573
+
 
31574
+
 
31575
+
 
31576
+
 
31577
+
 
31578
+
 
31579
+
 
31580
+
 
31581
+
 
31582
+
 
31583
+
 
31584
+
 
31585
+
 
31586
+
 
31587
+
 
31588
+
 
31589
+
 
31590
+
 
31591
+
 
31592
+
 
31593
+
 
31594
+
 
31595
+
 
31596
+
 
31597
+
 
31598
+
 
31599
+
 
31600
+
 
31601
+
 
31602
+
 
31603
+
 
31604
+
 
31605
+
 
31606
+
 
31607
+
 
31608
+
 
31609
+
 
31610
+
 
31611
+
 
31612
+
 
31613
+
 
31614
+
 
31615
+
 
31616
+
 
31617
+
 
31618
+
 
31619
+
 
31620
+
 
31621
+
 
31622
+
 
31623
+
 
31624
+
 
31625
+
 
31626
+
 
31627
+
 
31628
+
 
31629
+
 
31630
+
 
31631
+
 
31632
+
 
31633
+  { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
 
31634
+echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; }
 
31635
+
 
31636
+if test "$GCC" = yes; then
 
31637
+  case $host_os in
 
31638
+    darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
 
31639
+    *) lt_awk_arg="/^libraries:/" ;;
 
31640
+  esac
 
31641
+  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"`
 
31642
+  if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then
 
31643
+    # if the path contains ";" then we assume it to be the separator
 
31644
+    # otherwise default to the standard path separator (i.e. ":") - it is
 
31645
+    # assumed that no part of a normal pathname contains ";" but that should
 
31646
+    # okay in the real world where ";" in dirpaths is itself problematic.
 
31647
+    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'`
 
31648
+  else
 
31649
+    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
 
31650
+  fi
24173
31651
+  # Ok, now we have the path, separated by spaces, we can step through it
24174
31652
+  # and add multilib dir if necessary.
24175
31653
+  lt_tmp_lt_search_path_spec=
24180
31658
+    else
24181
31659
+      test -d "$lt_sys_path" && \
24182
31660
+       lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
24183
 
       fi
 
31661
+    fi
24184
31662
+  done
24185
31663
+  lt_search_path_spec=`$ECHO $lt_tmp_lt_search_path_spec | awk '
24186
31664
+BEGIN {RS=" "; FS="/|\n";} {
24234
31712
+
24235
31713
+  # AIX 3 has no versioning support, so we append a major version to the name.
24236
31714
+  soname_spec='${libname}${release}${shared_ext}$major'
 
31715
+  ;;
 
31716
+
 
31717
+aix[4-9]*)
 
31718
+  version_type=linux
 
31719
+  need_lib_prefix=no
 
31720
+  need_version=no
 
31721
+  hardcode_into_libs=yes
 
31722
+  if test "$host_cpu" = ia64; then
 
31723
+    # AIX 5 supports IA64
 
31724
+    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
 
31725
+    shlibpath_var=LD_LIBRARY_PATH
 
31726
+  else
 
31727
+    # With GCC up to 2.95.x, collect2 would create an import file
 
31728
+    # for dependence libraries.  The import file would start with
 
31729
+    # the line `#! .'.  This would cause the generated library to
 
31730
+    # depend on `.', always an invalid library.  This was fixed in
 
31731
+    # development snapshots of GCC prior to 3.0.
 
31732
+    case $host_os in
 
31733
+      aix4 | aix4.[01] | aix4.[01].*)
 
31734
+      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
 
31735
+          echo ' yes '
 
31736
+          echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
 
31737
+       :
 
31738
+      else
 
31739
+       can_build_shared=no
 
31740
       fi
24237
31741
       ;;
24238
31742
-    hpux*)
24239
31743
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
24250
31754
-      lt_prog_compiler_pic_CXX='-fPIC'
24251
31755
-      ;;
24252
31756
-    esac
24253
 
+
24254
 
+aix[4-9]*)
24255
 
+  version_type=linux
24256
 
+  need_lib_prefix=no
24257
 
+  need_version=no
24258
 
+  hardcode_into_libs=yes
24259
 
+  if test "$host_cpu" = ia64; then
24260
 
+    # AIX 5 supports IA64
24261
 
+    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
24262
 
+    shlibpath_var=LD_LIBRARY_PATH
24263
 
   else
24264
 
+    # With GCC up to 2.95.x, collect2 would create an import file
24265
 
+    # for dependence libraries.  The import file would start with
24266
 
+    # the line `#! .'.  This would cause the generated library to
24267
 
+    # depend on `.', always an invalid library.  This was fixed in
24268
 
+    # development snapshots of GCC prior to 3.0.
24269
 
     case $host_os in
24270
 
-      aix4* | aix5*)
 
31757
-  else
 
31758
-    case $host_os in
 
31759
-      aix[4-9]*)
24271
31760
-       # All AIX code is PIC.
24272
31761
-       if test "$host_cpu" = ia64; then
24273
31762
-         # AIX 5 now supports IA64 processor
24274
31763
-         lt_prog_compiler_static_CXX='-Bstatic'
24275
 
+      aix4 | aix4.[01] | aix4.[01].*)
24276
 
+      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
24277
 
+          echo ' yes '
24278
 
+          echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
24279
 
+       :
24280
 
        else
 
31764
-       else
24281
31765
-         lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp'
24282
 
+       can_build_shared=no
24283
 
        fi
24284
 
        ;;
 
31766
-       fi
 
31767
-       ;;
24285
31768
-      chorus*)
24286
31769
-       case $cc_basename in
24287
31770
-       cxch68*)
24288
31771
-         # Green Hills C++ Compiler
24289
31772
-         # _LT_AC_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a"
24290
31773
-         ;;
24291
 
        esac
24292
 
+    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
24293
 
+    # soname into executable. Probably we can add versioning support to
24294
 
+    # collect2, so additional links can be useful in future.
24295
 
+    if test "$aix_use_runtimelinking" = yes; then
24296
 
+      # If using run time linking (on AIX 4.2 or later) use lib<name>.so
24297
 
+      # instead of lib<name>.a to let people know that these are not
24298
 
+      # typical AIX shared libraries.
24299
 
+      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
24300
 
+    else
24301
 
+      # We preserve .a as extension for shared libraries through AIX4.2
24302
 
+      # and later when we are not doing run time linking.
24303
 
+      library_names_spec='${libname}${release}.a $libname.a'
24304
 
+      soname_spec='${libname}${release}${shared_ext}$major'
24305
 
+    fi
24306
 
+    shlibpath_var=LIBPATH
24307
 
+  fi
24308
 
        ;;
 
31774
-       esac
 
31775
-       ;;
24309
31776
-       darwin*)
24310
31777
-         # PIC is the default on this platform
24311
31778
-         # Common symbols not allowed in MH_DYLIB files
24315
31782
-           lt_prog_compiler_wl_CXX='-Wl,'
24316
31783
-           ;;
24317
31784
-         esac
24318
 
+
24319
 
+amigaos*)
24320
 
+  case $host_cpu in
24321
 
+  powerpc)
24322
 
+    # Since July 2007 AmigaOS4 officially supports .so libraries.
24323
 
+    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
24324
 
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
24325
 
        ;;
 
31785
-       ;;
24326
31786
-      dgux*)
24327
31787
-       case $cc_basename in
24328
31788
-         ec++*)
24329
31789
-           lt_prog_compiler_pic_CXX='-KPIC'
24330
 
+  m68k)
24331
 
+    library_names_spec='$libname.ixlibrary $libname.a'
24332
 
+    # Create ${libname}_ixlibrary.a entries in /sys/libs.
24333
 
+    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
24334
 
            ;;
 
31790
-           ;;
24335
31791
-         ghcx*)
24336
31792
-           # Green Hills C++ Compiler
24337
31793
-           lt_prog_compiler_pic_CXX='-pic'
24338
 
+  esac
24339
 
            ;;
 
31794
-           ;;
24340
31795
-         *)
24341
 
+
24342
 
+beos*)
24343
 
+  library_names_spec='${libname}${shared_ext}'
24344
 
+  dynamic_linker="$host_os ld.so"
24345
 
+  shlibpath_var=LIBRARY_PATH
24346
 
            ;;
 
31796
-           ;;
24347
31797
-       esac
24348
 
+
24349
 
+bsdi[45]*)
24350
 
+  version_type=linux
24351
 
+  need_version=no
24352
 
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
24353
 
+  soname_spec='${libname}${release}${shared_ext}$major'
24354
 
+  finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
24355
 
+  shlibpath_var=LD_LIBRARY_PATH
24356
 
+  sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
24357
 
+  sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
24358
 
+  # the default ld.so.conf also contains /usr/contrib/lib and
24359
 
+  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
24360
 
+  # libtool to hard-code these into programs
24361
 
        ;;
 
31798
-       ;;
24362
31799
-      freebsd* | dragonfly*)
24363
31800
-       # FreeBSD uses GNU C++
24364
 
+
24365
 
+cygwin* | mingw* | pw32*)
24366
 
+  version_type=windows
24367
 
+  shrext_cmds=".dll"
24368
 
+  need_version=no
24369
 
+  need_lib_prefix=no
24370
 
+
24371
 
+  case $GCC,$host_os in
24372
 
+  yes,cygwin* | yes,mingw* | yes,pw32*)
24373
 
+    library_names_spec='$libname.dll.a'
24374
 
+    # DLL is installed to $(libdir)/../bin by postinstall_cmds
24375
 
+    postinstall_cmds='base_file=`basename \${file}`~
24376
 
+      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
24377
 
+      dldir=$destdir/`dirname \$dlpath`~
24378
 
+      test -d \$dldir || mkdir -p \$dldir~
24379
 
+      $install_prog $dir/$dlname \$dldir/$dlname~
24380
 
+      chmod a+x \$dldir/$dlname~
24381
 
+      if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
24382
 
+        eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
24383
 
+      fi'
24384
 
+    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
24385
 
+      dlpath=$dir/\$dldll~
24386
 
+       $RM \$dlpath'
24387
 
+    shlibpath_overrides_runpath=yes
24388
 
+
24389
 
+    case $host_os in
24390
 
+    cygwin*)
24391
 
+      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
24392
 
+      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
24393
 
+      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
24394
 
        ;;
 
31801
-       ;;
24395
31802
-      hpux9* | hpux10* | hpux11*)
24396
31803
-       case $cc_basename in
24397
31804
-         CC*)
24399
31806
-           lt_prog_compiler_static_CXX='${wl}-a ${wl}archive'
24400
31807
-           if test "$host_cpu" != ia64; then
24401
31808
-             lt_prog_compiler_pic_CXX='+Z'
24402
 
+    mingw*)
24403
 
+      # MinGW DLLs use traditional 'lib' prefix
24404
 
+      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
24405
 
+      sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
24406
 
+      if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then
24407
 
+        # It is most probably a Windows format PATH printed by
24408
 
+        # mingw gcc, but we are running on Cygwin. Gcc prints its search
24409
 
+        # path with ; separators, and with drive letters. We can handle the
24410
 
+        # drive letters (cygwin fileutils understands them), so leave them,
24411
 
+        # especially as we might pass files found there to a mingw objdump,
24412
 
+        # which wouldn't understand a cygwinified path. Ahh.
24413
 
+        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
24414
 
+      else
24415
 
+        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
24416
 
            fi
24417
 
            ;;
 
31809
-           fi
 
31810
-           ;;
24418
31811
-         aCC*)
24419
31812
-           lt_prog_compiler_wl_CXX='-Wl,'
24420
31813
-           lt_prog_compiler_static_CXX='${wl}-a ${wl}archive'
24424
31817
-             ;;
24425
31818
-           *)
24426
31819
-             lt_prog_compiler_pic_CXX='+Z'
24427
 
+    pw32*)
24428
 
+      # pw32 DLLs use 'pw' prefix rather than 'lib'
24429
 
+      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
24430
 
              ;;
24431
 
            esac
24432
 
            ;;
24433
 
+
24434
 
          *)
24435
 
+    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
24436
 
            ;;
24437
 
        esac
24438
 
+  dynamic_linker='Win32 ld.exe'
24439
 
+  # FIXME: first we should search . and the directory the executable is in
24440
 
+  shlibpath_var=PATH
24441
 
        ;;
 
31820
-             ;;
 
31821
-           esac
 
31822
-           ;;
 
31823
-         *)
 
31824
-           ;;
 
31825
-       esac
 
31826
-       ;;
24442
31827
-      interix*)
24443
31828
-       # This is c89, which is MS Visual C++ (no shared libs)
24444
31829
-       # Anyone wants to do a port?
24445
 
+
24446
 
+darwin* | rhapsody*)
24447
 
+  dynamic_linker="$host_os dyld"
24448
 
+  version_type=darwin
24449
 
+  need_lib_prefix=no
24450
 
+  need_version=no
24451
 
+  library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
24452
 
+  soname_spec='${libname}${release}${major}$shared_ext'
24453
 
+  shlibpath_overrides_runpath=yes
24454
 
+  shlibpath_var=DYLD_LIBRARY_PATH
24455
 
+  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
24456
 
+
24457
 
+  sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"
24458
 
+  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
24459
 
        ;;
 
31830
-       ;;
24460
31831
-      irix5* | irix6* | nonstopux*)
24461
31832
-       case $cc_basename in
24462
31833
-         CC*)
24463
31834
-           lt_prog_compiler_wl_CXX='-Wl,'
24464
31835
-           lt_prog_compiler_static_CXX='-non_shared'
24465
31836
-           # CC pic flag -KPIC is the default.
24466
 
+
24467
 
+dgux*)
24468
 
+  version_type=linux
24469
 
+  need_lib_prefix=no
24470
 
+  need_version=no
24471
 
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
24472
 
+  soname_spec='${libname}${release}${shared_ext}$major'
24473
 
+  shlibpath_var=LD_LIBRARY_PATH
24474
 
            ;;
 
31837
-           ;;
24475
31838
-         *)
24476
 
+
24477
 
+freebsd1*)
24478
 
+  dynamic_linker=no
24479
 
            ;;
24480
 
+
24481
 
+freebsd* | dragonfly*)
24482
 
+  # DragonFly does not have aout.  When/if they implement a new
24483
 
+  # versioning mechanism, adjust this.
24484
 
+  if test -x /usr/bin/objformat; then
24485
 
+    objformat=`/usr/bin/objformat`
24486
 
+  else
24487
 
+    case $host_os in
24488
 
+    freebsd[123]*) objformat=aout ;;
24489
 
+    *) objformat=elf ;;
24490
 
        esac
24491
 
+  fi
24492
 
+  version_type=freebsd-$objformat
24493
 
+  case $version_type in
24494
 
+    freebsd-elf*)
24495
 
+      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
24496
 
+      need_version=no
24497
 
+      need_lib_prefix=no
24498
 
        ;;
 
31839
-           ;;
 
31840
-       esac
 
31841
-       ;;
24499
31842
-      linux* | k*bsd*-gnu)
24500
31843
-       case $cc_basename in
24501
31844
-         KCC*)
24509
31852
-           lt_prog_compiler_pic_CXX='-KPIC'
24510
31853
-           lt_prog_compiler_static_CXX='-static'
24511
31854
-           ;;
24512
 
-         pgCC*)
 
31855
-         pgCC* | pgcpp*)
24513
31856
-           # Portland Group C++ compiler.
24514
31857
-           lt_prog_compiler_wl_CXX='-Wl,'
24515
31858
-           lt_prog_compiler_pic_CXX='-fpic'
24544
31887
-           lt_prog_compiler_pic_CXX='-W c,exportall'
24545
31888
-           ;;
24546
31889
-         *)
24547
 
+    freebsd-*)
24548
 
+      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
24549
 
+      need_version=yes
24550
 
            ;;
24551
 
        esac
24552
 
+  shlibpath_var=LD_LIBRARY_PATH
24553
 
+  case $host_os in
24554
 
+  freebsd2*)
24555
 
+    shlibpath_overrides_runpath=yes
24556
 
        ;;
 
31890
-           ;;
 
31891
-       esac
 
31892
-       ;;
24557
31893
-      netbsd*)
24558
31894
-       ;;
24559
31895
-      osf3* | osf4* | osf5*)
24564
31900
-         RCC*)
24565
31901
-           # Rational C++ 2.4.1
24566
31902
-           lt_prog_compiler_pic_CXX='-pic'
 
31903
-           ;;
 
31904
-         cxx*)
 
31905
-           # Digital/Compaq C++
 
31906
-           lt_prog_compiler_wl_CXX='-Wl,'
 
31907
-           # Make sure the PIC flag is empty.  It appears that all Alpha
 
31908
-           # Linux and Compaq Tru64 Unix objects are PIC.
 
31909
-           lt_prog_compiler_pic_CXX=
 
31910
-           lt_prog_compiler_static_CXX='-non_shared'
 
31911
-           ;;
 
31912
-         *)
 
31913
-           ;;
 
31914
-       esac
 
31915
-       ;;
 
31916
-      psos*)
 
31917
-       ;;
 
31918
-      solaris*)
 
31919
-       case $cc_basename in
 
31920
-         CC*)
 
31921
-           # Sun C++ 4.2, 5.x and Centerline C++
 
31922
-           lt_prog_compiler_pic_CXX='-KPIC'
 
31923
-           lt_prog_compiler_static_CXX='-Bstatic'
 
31924
-           lt_prog_compiler_wl_CXX='-Qoption ld '
 
31925
-           ;;
 
31926
-         gcx*)
 
31927
-           # Green Hills C++ Compiler
 
31928
-           lt_prog_compiler_pic_CXX='-PIC'
 
31929
-           ;;
 
31930
-         *)
 
31931
-           ;;
 
31932
-       esac
 
31933
-       ;;
 
31934
-      sunos4*)
 
31935
-       case $cc_basename in
 
31936
-         CC*)
 
31937
-           # Sun C++ 4.x
 
31938
-           lt_prog_compiler_pic_CXX='-pic'
 
31939
-           lt_prog_compiler_static_CXX='-Bstatic'
 
31940
-           ;;
 
31941
-         lcc*)
 
31942
-           # Lucid
 
31943
-           lt_prog_compiler_pic_CXX='-pic'
 
31944
-           ;;
 
31945
-         *)
 
31946
-           ;;
 
31947
-       esac
 
31948
-       ;;
 
31949
-      tandem*)
 
31950
-       case $cc_basename in
 
31951
-         NCC*)
 
31952
-           # NonStop-UX NCC 3.20
 
31953
-           lt_prog_compiler_pic_CXX='-KPIC'
 
31954
-           ;;
 
31955
-         *)
 
31956
-           ;;
 
31957
-       esac
 
31958
-       ;;
 
31959
-      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
 
31960
-       case $cc_basename in
 
31961
-         CC*)
 
31962
-           lt_prog_compiler_wl_CXX='-Wl,'
 
31963
-           lt_prog_compiler_pic_CXX='-KPIC'
 
31964
-           lt_prog_compiler_static_CXX='-Bstatic'
 
31965
-           ;;
 
31966
-       esac
 
31967
-       ;;
 
31968
-      vxworks*)
 
31969
-       ;;
 
31970
-      *)
 
31971
-       lt_prog_compiler_can_build_shared_CXX=no
 
31972
-       ;;
 
31973
     esac
 
31974
+    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
 
31975
+    # soname into executable. Probably we can add versioning support to
 
31976
+    # collect2, so additional links can be useful in future.
 
31977
+    if test "$aix_use_runtimelinking" = yes; then
 
31978
+      # If using run time linking (on AIX 4.2 or later) use lib<name>.so
 
31979
+      # instead of lib<name>.a to let people know that these are not
 
31980
+      # typical AIX shared libraries.
 
31981
+      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
31982
+    else
 
31983
+      # We preserve .a as extension for shared libraries through AIX4.2
 
31984
+      # and later when we are not doing run time linking.
 
31985
+      library_names_spec='${libname}${release}.a $libname.a'
 
31986
+      soname_spec='${libname}${release}${shared_ext}$major'
 
31987
+    fi
 
31988
+    shlibpath_var=LIBPATH
 
31989
   fi
 
31990
+  ;;
 
31991
+
 
31992
+amigaos*)
 
31993
+  case $host_cpu in
 
31994
+  powerpc)
 
31995
+    # Since July 2007 AmigaOS4 officially supports .so libraries.
 
31996
+    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
 
31997
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
31998
+    ;;
 
31999
+  m68k)
 
32000
+    library_names_spec='$libname.ixlibrary $libname.a'
 
32001
+    # Create ${libname}_ixlibrary.a entries in /sys/libs.
 
32002
+    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
 
32003
+    ;;
 
32004
+  esac
 
32005
+  ;;
 
32006
+
 
32007
+beos*)
 
32008
+  library_names_spec='${libname}${shared_ext}'
 
32009
+  dynamic_linker="$host_os ld.so"
 
32010
+  shlibpath_var=LIBRARY_PATH
 
32011
+  ;;
 
32012
+
 
32013
+bsdi[45]*)
 
32014
+  version_type=linux
 
32015
+  need_version=no
 
32016
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
32017
+  soname_spec='${libname}${release}${shared_ext}$major'
 
32018
+  finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
 
32019
+  shlibpath_var=LD_LIBRARY_PATH
 
32020
+  sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
 
32021
+  sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
 
32022
+  # the default ld.so.conf also contains /usr/contrib/lib and
 
32023
+  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
 
32024
+  # libtool to hard-code these into programs
 
32025
+  ;;
 
32026
+
 
32027
+cygwin* | mingw* | pw32*)
 
32028
+  version_type=windows
 
32029
+  shrext_cmds=".dll"
 
32030
+  need_version=no
 
32031
+  need_lib_prefix=no
 
32032
+
 
32033
+  case $GCC,$host_os in
 
32034
+  yes,cygwin* | yes,mingw* | yes,pw32*)
 
32035
+    library_names_spec='$libname.dll.a'
 
32036
+    # DLL is installed to $(libdir)/../bin by postinstall_cmds
 
32037
+    postinstall_cmds='base_file=`basename \${file}`~
 
32038
+      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
 
32039
+      dldir=$destdir/`dirname \$dlpath`~
 
32040
+      test -d \$dldir || mkdir -p \$dldir~
 
32041
+      $install_prog $dir/$dlname \$dldir/$dlname~
 
32042
+      chmod a+x \$dldir/$dlname~
 
32043
+      if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
 
32044
+        eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
 
32045
+      fi'
 
32046
+    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
 
32047
+      dlpath=$dir/\$dldll~
 
32048
+       $RM \$dlpath'
 
32049
+    shlibpath_overrides_runpath=yes
 
32050
+
 
32051
+    case $host_os in
 
32052
+    cygwin*)
 
32053
+      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
 
32054
+      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
 
32055
+      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
 
32056
+      ;;
 
32057
+    mingw*)
 
32058
+      # MinGW DLLs use traditional 'lib' prefix
 
32059
+      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
 
32060
+      sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
 
32061
+      if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then
 
32062
+        # It is most probably a Windows format PATH printed by
 
32063
+        # mingw gcc, but we are running on Cygwin. Gcc prints its search
 
32064
+        # path with ; separators, and with drive letters. We can handle the
 
32065
+        # drive letters (cygwin fileutils understands them), so leave them,
 
32066
+        # especially as we might pass files found there to a mingw objdump,
 
32067
+        # which wouldn't understand a cygwinified path. Ahh.
 
32068
+        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
 
32069
+      else
 
32070
+        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
 
32071
+      fi
 
32072
+      ;;
 
32073
+    pw32*)
 
32074
+      # pw32 DLLs use 'pw' prefix rather than 'lib'
 
32075
+      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
 
32076
+      ;;
 
32077
+    esac
 
32078
+    ;;
 
32079
+
 
32080
+  *)
 
32081
+    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
 
32082
+    ;;
 
32083
+  esac
 
32084
+  dynamic_linker='Win32 ld.exe'
 
32085
+  # FIXME: first we should search . and the directory the executable is in
 
32086
+  shlibpath_var=PATH
 
32087
+  ;;
 
32088
+
 
32089
+darwin* | rhapsody*)
 
32090
+  dynamic_linker="$host_os dyld"
 
32091
+  version_type=darwin
 
32092
+  need_lib_prefix=no
 
32093
+  need_version=no
 
32094
+  library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
 
32095
+  soname_spec='${libname}${release}${major}$shared_ext'
 
32096
+  shlibpath_overrides_runpath=yes
 
32097
+  shlibpath_var=DYLD_LIBRARY_PATH
 
32098
+  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
 
32099
+
 
32100
+  sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"
 
32101
+  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
 
32102
+  ;;
 
32103
+
 
32104
+dgux*)
 
32105
+  version_type=linux
 
32106
+  need_lib_prefix=no
 
32107
+  need_version=no
 
32108
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
 
32109
+  soname_spec='${libname}${release}${shared_ext}$major'
 
32110
+  shlibpath_var=LD_LIBRARY_PATH
 
32111
+  ;;
 
32112
+
 
32113
+freebsd1*)
 
32114
+  dynamic_linker=no
 
32115
+  ;;
 
32116
+
 
32117
+freebsd* | dragonfly*)
 
32118
+  # DragonFly does not have aout.  When/if they implement a new
 
32119
+  # versioning mechanism, adjust this.
 
32120
+  if test -x /usr/bin/objformat; then
 
32121
+    objformat=`/usr/bin/objformat`
 
32122
+  else
 
32123
+    case $host_os in
 
32124
+    freebsd[123]*) objformat=aout ;;
 
32125
+    *) objformat=elf ;;
 
32126
+    esac
 
32127
+  fi
 
32128
+  version_type=freebsd-$objformat
 
32129
+  case $version_type in
 
32130
+    freebsd-elf*)
 
32131
+      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
 
32132
+      need_version=no
 
32133
+      need_lib_prefix=no
 
32134
+      ;;
 
32135
+    freebsd-*)
 
32136
+      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
 
32137
+      need_version=yes
 
32138
+      ;;
 
32139
+  esac
 
32140
+  shlibpath_var=LD_LIBRARY_PATH
 
32141
+  case $host_os in
 
32142
+  freebsd2*)
 
32143
+    shlibpath_overrides_runpath=yes
 
32144
+    ;;
24567
32145
+  freebsd3.[01]* | freebsdelf3.[01]*)
24568
32146
+    shlibpath_overrides_runpath=yes
24569
32147
+    hardcode_into_libs=yes
24570
 
            ;;
24571
 
-         cxx*)
24572
 
-           # Digital/Compaq C++
24573
 
-           lt_prog_compiler_wl_CXX='-Wl,'
24574
 
-           # Make sure the PIC flag is empty.  It appears that all Alpha
24575
 
-           # Linux and Compaq Tru64 Unix objects are PIC.
24576
 
-           lt_prog_compiler_pic_CXX=
24577
 
-           lt_prog_compiler_static_CXX='-non_shared'
 
32148
+    ;;
24578
32149
+  freebsd3.[2-9]* | freebsdelf3.[2-9]* | \
24579
32150
+  freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1)
24580
32151
+    shlibpath_overrides_runpath=no
24581
32152
+    hardcode_into_libs=yes
24582
 
            ;;
24583
 
-         *)
 
32153
+    ;;
24584
32154
+  *) # from 4.6 on, and DragonFly
24585
32155
+    shlibpath_overrides_runpath=yes
24586
32156
+    hardcode_into_libs=yes
24587
 
            ;;
24588
 
        esac
24589
 
        ;;
24590
 
-      psos*)
 
32157
+    ;;
 
32158
+  esac
 
32159
+  ;;
24591
32160
+
24592
32161
+gnu*)
24593
32162
+  version_type=linux
24597
32166
+  soname_spec='${libname}${release}${shared_ext}$major'
24598
32167
+  shlibpath_var=LD_LIBRARY_PATH
24599
32168
+  hardcode_into_libs=yes
24600
 
        ;;
24601
 
-      solaris*)
24602
 
-       case $cc_basename in
24603
 
-         CC*)
24604
 
-           # Sun C++ 4.2, 5.x and Centerline C++
24605
 
-           lt_prog_compiler_pic_CXX='-KPIC'
24606
 
-           lt_prog_compiler_static_CXX='-Bstatic'
24607
 
-           lt_prog_compiler_wl_CXX='-Qoption ld '
 
32169
+  ;;
24608
32170
+
24609
32171
+hpux9* | hpux10* | hpux11*)
24610
32172
+  # Give a soname corresponding to the major version so that dld.sl refuses to
24627
32189
+      sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
24628
32190
+    fi
24629
32191
+    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
24630
 
            ;;
24631
 
-         gcx*)
24632
 
-           # Green Hills C++ Compiler
24633
 
-           lt_prog_compiler_pic_CXX='-PIC'
 
32192
+    ;;
24634
32193
+  hppa*64*)
24635
32194
+    shrext_cmds='.sl'
24636
32195
+    hardcode_into_libs=yes
24641
32200
+    soname_spec='${libname}${release}${shared_ext}$major'
24642
32201
+    sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
24643
32202
+    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
24644
 
            ;;
24645
 
          *)
 
32203
+    ;;
 
32204
+  *)
24646
32205
+    shrext_cmds='.sl'
24647
32206
+    dynamic_linker="$host_os dld.sl"
24648
32207
+    shlibpath_var=SHLIB_PATH
24649
32208
+    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
24650
32209
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
24651
32210
+    soname_spec='${libname}${release}${shared_ext}$major'
24652
 
            ;;
24653
 
        esac
 
32211
+    ;;
 
32212
+  esac
24654
32213
+  # HP-UX runs *really* slowly unless shared libraries are mode 555.
24655
32214
+  postinstall_cmds='chmod 555 $lib'
24656
 
        ;;
24657
 
-      sunos4*)
24658
 
-       case $cc_basename in
24659
 
-         CC*)
24660
 
-           # Sun C++ 4.x
24661
 
-           lt_prog_compiler_pic_CXX='-pic'
24662
 
-           lt_prog_compiler_static_CXX='-Bstatic'
24663
 
-           ;;
24664
 
-         lcc*)
24665
 
-           # Lucid
24666
 
-           lt_prog_compiler_pic_CXX='-pic'
 
32215
+  ;;
24667
32216
+
24668
32217
+interix[3-9]*)
24669
32218
+  version_type=linux
24675
32224
+  shlibpath_var=LD_LIBRARY_PATH
24676
32225
+  shlibpath_overrides_runpath=no
24677
32226
+  hardcode_into_libs=yes
24678
 
            ;;
 
32227
+  ;;
24679
32228
+
24680
32229
+irix5* | irix6* | nonstopux*)
24681
32230
+  case $host_os in
24682
32231
+    nonstopux*) version_type=nonstopux ;;
24683
 
          *)
24684
 
-           ;;
 
32232
+    *)
24685
32233
+       if test "$lt_cv_prog_gnu_ld" = yes; then
24686
32234
+               version_type=linux
24687
32235
+       else
24688
32236
+               version_type=irix
24689
32237
+       fi ;;
24690
 
        esac
24691
 
-       ;;
24692
 
-      tandem*)
24693
 
-       case $cc_basename in
24694
 
-         NCC*)
24695
 
-           # NonStop-UX NCC 3.20
24696
 
-           lt_prog_compiler_pic_CXX='-KPIC'
 
32238
+  esac
24697
32239
+  need_lib_prefix=no
24698
32240
+  need_version=no
24699
32241
+  soname_spec='${libname}${release}${shared_ext}$major'
24701
32243
+  case $host_os in
24702
32244
+  irix5* | nonstopux*)
24703
32245
+    libsuff= shlibsuff=
24704
 
            ;;
24705
 
          *)
24706
 
-           ;;
 
32246
+    ;;
 
32247
+  *)
24707
32248
+    case $LD in # libtool.m4 will add one of these switches to LD
24708
32249
+    *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
24709
32250
+      libsuff= shlibsuff= libmagic=32-bit;;
24712
32253
+    *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
24713
32254
+      libsuff=64 shlibsuff=64 libmagic=64-bit;;
24714
32255
+    *) libsuff= shlibsuff= libmagic=never-match;;
24715
 
        esac
24716
 
        ;;
24717
 
-      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
24718
 
-       case $cc_basename in
24719
 
-         CC*)
24720
 
-           lt_prog_compiler_wl_CXX='-Wl,'
24721
 
-           lt_prog_compiler_pic_CXX='-KPIC'
24722
 
-           lt_prog_compiler_static_CXX='-Bstatic'
24723
 
-           ;;
24724
 
        esac
 
32256
+    esac
 
32257
+    ;;
 
32258
+  esac
24725
32259
+  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
24726
32260
+  shlibpath_overrides_runpath=no
24727
32261
+  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
24728
32262
+  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
24729
32263
+  hardcode_into_libs=yes
24730
 
        ;;
24731
 
-      vxworks*)
24732
 
-       ;;
24733
 
-      *)
24734
 
-       lt_prog_compiler_can_build_shared_CXX=no
 
32264
+  ;;
24735
32265
+
24736
32266
+# No shared lib support for Linux oldld, aout, or coff.
24737
32267
+linux*oldld* | linux*aout* | linux*coff*)
24738
32268
+  dynamic_linker=no
24739
 
        ;;
24740
 
-    esac
24741
 
-  fi
24742
 
 
24743
 
-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX" >&5
24744
 
-echo "${ECHO_T}$lt_prog_compiler_pic_CXX" >&6; }
 
32269
+  ;;
 
32270
+
24745
32271
+# This must be Linux ELF.
24746
32272
+linux* | k*bsd*-gnu)
24747
32273
+  version_type=linux
24763
32289
+cat confdefs.h >>conftest.$ac_ext
24764
32290
+cat >>conftest.$ac_ext <<_ACEOF
24765
32291
+/* end confdefs.h.  */
 
32292
+
 
32293
+int
 
32294
+main ()
 
32295
+{
 
32296
+
 
32297
+  ;
 
32298
+  return 0;
 
32299
+}
 
32300
+_ACEOF
 
32301
+rm -f conftest.$ac_objext conftest$ac_exeext
 
32302
+if { (ac_try="$ac_link"
 
32303
+case "(($ac_try" in
 
32304
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
32305
+  *) ac_try_echo=$ac_try;;
 
32306
+esac
 
32307
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
32308
+  (eval "$ac_link") 2>conftest.er1
 
32309
+  ac_status=$?
 
32310
+  grep -v '^ *+' conftest.er1 >conftest.err
 
32311
+  rm -f conftest.er1
 
32312
+  cat conftest.err >&5
 
32313
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
32314
+  (exit $ac_status); } && {
 
32315
+        test -z "$ac_c_werror_flag" ||
 
32316
+        test ! -s conftest.err
 
32317
+       } && test -s conftest$ac_exeext &&
 
32318
+       $as_test_x conftest$ac_exeext; then
 
32319
+  if  ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then
 
32320
+  shlibpath_overrides_runpath=yes
 
32321
+fi
 
32322
+
 
32323
+else
 
32324
+  echo "$as_me: failed program was:" >&5
 
32325
+sed 's/^/| /' conftest.$ac_ext >&5
 
32326
+
 
32327
+
 
32328
+fi
 
32329
+
 
32330
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
32331
+      conftest$ac_exeext conftest.$ac_ext
 
32332
+  LDFLAGS=$save_LDFLAGS
 
32333
+  libdir=$save_libdir
 
32334
+
 
32335
+  # This implies no fast_install, which is unacceptable.
 
32336
+  # Some rework will be needed to allow for fast_install
 
32337
+  # before this can be enabled.
 
32338
+  hardcode_into_libs=yes
 
32339
+
 
32340
+  # Append ld.so.conf contents to the search path
 
32341
+  if test -f /etc/ld.so.conf; then
 
32342
+    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[      ]*hwcap[        ]/d;s/[:,      ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
 
32343
+    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
 
32344
+  fi
 
32345
+
 
32346
+  # We used to test for /lib/ld.so.1 and disable shared libraries on
 
32347
+  # powerpc, because MkLinux only supported shared libraries with the
 
32348
+  # GNU dynamic linker.  Since this was broken with cross compilers,
 
32349
+  # most powerpc-linux boxes support dynamic linking these days and
 
32350
+  # people can always --disable-shared, the test was removed, and we
 
32351
+  # assume the GNU/Linux dynamic linker is in use.
 
32352
+  dynamic_linker='GNU/Linux ld.so'
 
32353
+  ;;
 
32354
+
 
32355
+netbsdelf*-gnu)
 
32356
+  version_type=linux
 
32357
+  need_lib_prefix=no
 
32358
+  need_version=no
 
32359
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
32360
+  soname_spec='${libname}${release}${shared_ext}$major'
 
32361
+  shlibpath_var=LD_LIBRARY_PATH
 
32362
+  shlibpath_overrides_runpath=no
 
32363
+  hardcode_into_libs=yes
 
32364
+  dynamic_linker='NetBSD ld.elf_so'
 
32365
+  ;;
 
32366
+
 
32367
+netbsd*)
 
32368
+  version_type=sunos
 
32369
+  need_lib_prefix=no
 
32370
+  need_version=no
 
32371
+  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
 
32372
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
32373
+    finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
 
32374
+    dynamic_linker='NetBSD (a.out) ld.so'
 
32375
+  else
 
32376
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
32377
+    soname_spec='${libname}${release}${shared_ext}$major'
 
32378
+    dynamic_linker='NetBSD ld.elf_so'
 
32379
+  fi
 
32380
+  shlibpath_var=LD_LIBRARY_PATH
 
32381
+  shlibpath_overrides_runpath=yes
 
32382
+  hardcode_into_libs=yes
 
32383
+  ;;
 
32384
+
 
32385
+newsos6)
 
32386
+  version_type=linux
 
32387
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
32388
+  shlibpath_var=LD_LIBRARY_PATH
 
32389
+  shlibpath_overrides_runpath=yes
 
32390
+  ;;
 
32391
+
 
32392
+*nto* | *qnx*)
 
32393
+  version_type=qnx
 
32394
+  need_lib_prefix=no
 
32395
+  need_version=no
 
32396
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
32397
+  soname_spec='${libname}${release}${shared_ext}$major'
 
32398
+  shlibpath_var=LD_LIBRARY_PATH
 
32399
+  shlibpath_overrides_runpath=no
 
32400
+  hardcode_into_libs=yes
 
32401
+  dynamic_linker='ldqnx.so'
 
32402
+  ;;
 
32403
+
 
32404
+openbsd*)
 
32405
+  version_type=sunos
 
32406
+  sys_lib_dlsearch_path_spec="/usr/lib"
 
32407
+  need_lib_prefix=no
 
32408
+  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
 
32409
+  case $host_os in
 
32410
+    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
 
32411
+    *)                         need_version=no  ;;
 
32412
+  esac
 
32413
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
32414
+  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
 
32415
+  shlibpath_var=LD_LIBRARY_PATH
 
32416
+  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
 
32417
+    case $host_os in
 
32418
+      openbsd2.[89] | openbsd2.[89].*)
 
32419
+       shlibpath_overrides_runpath=no
 
32420
+       ;;
 
32421
+      *)
 
32422
+       shlibpath_overrides_runpath=yes
 
32423
+       ;;
 
32424
+      esac
 
32425
+  else
 
32426
+    shlibpath_overrides_runpath=yes
 
32427
+  fi
 
32428
+  ;;
 
32429
+
 
32430
+os2*)
 
32431
+  libname_spec='$name'
 
32432
+  shrext_cmds=".dll"
 
32433
+  need_lib_prefix=no
 
32434
+  library_names_spec='$libname${shared_ext} $libname.a'
 
32435
+  dynamic_linker='OS/2 ld.exe'
 
32436
+  shlibpath_var=LIBPATH
 
32437
+  ;;
 
32438
+
 
32439
+osf3* | osf4* | osf5*)
 
32440
+  version_type=osf
 
32441
+  need_lib_prefix=no
 
32442
+  need_version=no
 
32443
+  soname_spec='${libname}${release}${shared_ext}$major'
 
32444
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
32445
+  shlibpath_var=LD_LIBRARY_PATH
 
32446
+  sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
 
32447
+  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
 
32448
+  ;;
 
32449
+
 
32450
+rdos*)
 
32451
+  dynamic_linker=no
 
32452
+  ;;
 
32453
+
 
32454
+solaris*)
 
32455
+  version_type=linux
 
32456
+  need_lib_prefix=no
 
32457
+  need_version=no
 
32458
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
32459
+  soname_spec='${libname}${release}${shared_ext}$major'
 
32460
+  shlibpath_var=LD_LIBRARY_PATH
 
32461
+  shlibpath_overrides_runpath=yes
 
32462
+  hardcode_into_libs=yes
 
32463
+  # ldd complains unless libraries are executable
 
32464
+  postinstall_cmds='chmod +x $lib'
 
32465
+  ;;
 
32466
+
 
32467
+sunos4*)
 
32468
+  version_type=sunos
 
32469
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
32470
+  finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
 
32471
+  shlibpath_var=LD_LIBRARY_PATH
 
32472
+  shlibpath_overrides_runpath=yes
 
32473
+  if test "$with_gnu_ld" = yes; then
 
32474
+    need_lib_prefix=no
 
32475
+  fi
 
32476
+  need_version=yes
 
32477
+  ;;
 
32478
+
 
32479
+sysv4 | sysv4.3*)
 
32480
+  version_type=linux
 
32481
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
32482
+  soname_spec='${libname}${release}${shared_ext}$major'
 
32483
+  shlibpath_var=LD_LIBRARY_PATH
 
32484
+  case $host_vendor in
 
32485
+    sni)
 
32486
+      shlibpath_overrides_runpath=no
 
32487
+      need_lib_prefix=no
 
32488
+      runpath_var=LD_RUN_PATH
 
32489
+      ;;
 
32490
+    siemens)
 
32491
+      need_lib_prefix=no
 
32492
+      ;;
 
32493
+    motorola)
 
32494
+      need_lib_prefix=no
 
32495
+      need_version=no
 
32496
+      shlibpath_overrides_runpath=no
 
32497
+      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
 
32498
+      ;;
 
32499
+  esac
 
32500
+  ;;
 
32501
+
 
32502
+sysv4*MP*)
 
32503
+  if test -d /usr/nec ;then
 
32504
+    version_type=linux
 
32505
+    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
 
32506
+    soname_spec='$libname${shared_ext}.$major'
 
32507
+    shlibpath_var=LD_LIBRARY_PATH
 
32508
+  fi
 
32509
+  ;;
 
32510
+
 
32511
+sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
 
32512
+  version_type=freebsd-elf
 
32513
+  need_lib_prefix=no
 
32514
+  need_version=no
 
32515
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
 
32516
+  soname_spec='${libname}${release}${shared_ext}$major'
 
32517
+  shlibpath_var=LD_LIBRARY_PATH
 
32518
+  shlibpath_overrides_runpath=yes
 
32519
+  hardcode_into_libs=yes
 
32520
+  if test "$with_gnu_ld" = yes; then
 
32521
+    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
 
32522
+  else
 
32523
+    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
 
32524
+    case $host_os in
 
32525
+      sco3.2v5*)
 
32526
+        sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
 
32527
+       ;;
 
32528
+    esac
 
32529
+  fi
 
32530
+  sys_lib_dlsearch_path_spec='/usr/lib'
 
32531
+  ;;
 
32532
+
 
32533
+tpf*)
 
32534
+  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.
 
32535
+  version_type=linux
 
32536
+  need_lib_prefix=no
 
32537
+  need_version=no
 
32538
+  library_name_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
32539
+  shlibpath_var=LD_LIBRARY_PATH
 
32540
+  shlibpath_overrides_runpath=no
 
32541
+  hardcode_into_libs=yes
 
32542
+  ;;
 
32543
+
 
32544
+uts4*)
 
32545
+  version_type=linux
 
32546
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
32547
+  soname_spec='${libname}${release}${shared_ext}$major'
 
32548
+  shlibpath_var=LD_LIBRARY_PATH
 
32549
+  ;;
 
32550
+
 
32551
+*)
 
32552
+  dynamic_linker=no
 
32553
+  ;;
 
32554
+esac
 
32555
+{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5
 
32556
+echo "${ECHO_T}$dynamic_linker" >&6; }
 
32557
+test "$dynamic_linker" = no && can_build_shared=no
 
32558
+
 
32559
+variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
 
32560
+if test "$GCC" = yes; then
 
32561
+  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
 
32562
+fi
 
32563
+
 
32564
+if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
 
32565
+  sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
 
32566
+fi
 
32567
+if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
 
32568
+  sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
 
32569
+fi
 
32570
+
 
32571
+
 
32572
+
 
32573
+
 
32574
+
 
32575
+
 
32576
+
 
32577
+
 
32578
+
 
32579
+
 
32580
+
 
32581
+
 
32582
+
 
32583
+
 
32584
+
 
32585
+
 
32586
+
 
32587
+
 
32588
+
 
32589
+
 
32590
+
 
32591
+
 
32592
+
 
32593
+
 
32594
+
 
32595
+
 
32596
+
 
32597
+
 
32598
+
 
32599
+
 
32600
+
 
32601
+
 
32602
+
 
32603
+
 
32604
+
 
32605
+
 
32606
+
 
32607
+
 
32608
+
 
32609
+
 
32610
+
 
32611
+
 
32612
+
 
32613
+
 
32614
+
 
32615
+
 
32616
+
 
32617
+
 
32618
+
 
32619
+
 
32620
+
 
32621
+
 
32622
+
 
32623
+
 
32624
+
 
32625
+
 
32626
+
 
32627
+
 
32628
+
 
32629
+
 
32630
+
 
32631
+
 
32632
+
 
32633
+
 
32634
+
 
32635
+
 
32636
+
 
32637
+
 
32638
+
 
32639
+
 
32640
+
 
32641
+
 
32642
+
 
32643
+
 
32644
+
 
32645
+
 
32646
+
 
32647
+
 
32648
+
 
32649
+
 
32650
+
 
32651
+
 
32652
+
 
32653
+
 
32654
+
 
32655
+
 
32656
+
 
32657
+  { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
 
32658
+echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; }
 
32659
+hardcode_action=
 
32660
+if test -n "$hardcode_libdir_flag_spec" ||
 
32661
+   test -n "$runpath_var" ||
 
32662
+   test "X$hardcode_automatic" = "Xyes" ; then
 
32663
+
 
32664
+  # We can hardcode non-existent directories.
 
32665
+  if test "$hardcode_direct" != no &&
 
32666
+     # If the only mechanism to avoid hardcoding is shlibpath_var, we
 
32667
+     # have to relink, otherwise we might link with an installed library
 
32668
+     # when we should be linking with a yet-to-be-installed one
 
32669
+     ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no &&
 
32670
+     test "$hardcode_minus_L" != no; then
 
32671
+    # Linking always hardcodes the temporary library directory.
 
32672
+    hardcode_action=relink
 
32673
+  else
 
32674
+    # We can link without hardcoding, and we can hardcode nonexisting dirs.
 
32675
+    hardcode_action=immediate
 
32676
+  fi
 
32677
+else
 
32678
+  # We cannot hardcode anything, or else we can only hardcode existing
 
32679
+  # directories.
 
32680
+  hardcode_action=unsupported
 
32681
+fi
 
32682
+{ echo "$as_me:$LINENO: result: $hardcode_action" >&5
 
32683
+echo "${ECHO_T}$hardcode_action" >&6; }
 
32684
+
 
32685
+if test "$hardcode_action" = relink ||
 
32686
+   test "$inherit_rpath" = yes; then
 
32687
+  # Fast installation is not supported
 
32688
+  enable_fast_install=no
 
32689
+elif test "$shlibpath_overrides_runpath" = yes ||
 
32690
+     test "$enable_shared" = no; then
 
32691
+  # Fast installation is not necessary
 
32692
+  enable_fast_install=needless
 
32693
+fi
 
32694
+
 
32695
+
 
32696
+
 
32697
+
 
32698
+
 
32699
+
 
32700
+  if test "x$enable_dlopen" != xyes; then
 
32701
+  enable_dlopen=unknown
 
32702
+  enable_dlopen_self=unknown
 
32703
+  enable_dlopen_self_static=unknown
 
32704
+else
 
32705
+  lt_cv_dlopen=no
 
32706
+  lt_cv_dlopen_libs=
 
32707
+
 
32708
+  case $host_os in
 
32709
+  beos*)
 
32710
+    lt_cv_dlopen="load_add_on"
 
32711
+    lt_cv_dlopen_libs=
 
32712
+    lt_cv_dlopen_self=yes
 
32713
+    ;;
 
32714
+
 
32715
+  mingw* | pw32*)
 
32716
+    lt_cv_dlopen="LoadLibrary"
 
32717
+    lt_cv_dlopen_libs=
 
32718
+    ;;
 
32719
+
 
32720
+  cygwin*)
 
32721
+    lt_cv_dlopen="dlopen"
 
32722
+    lt_cv_dlopen_libs=
 
32723
+    ;;
 
32724
+
 
32725
+  darwin*)
 
32726
+  # if libdl is installed we need to link against it
 
32727
+    { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
 
32728
+echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; }
 
32729
+if test "${ac_cv_lib_dl_dlopen+set}" = set; then
 
32730
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
32731
+else
 
32732
+  ac_check_lib_save_LIBS=$LIBS
 
32733
+LIBS="-ldl  $LIBS"
 
32734
+cat >conftest.$ac_ext <<_ACEOF
 
32735
+/* confdefs.h.  */
 
32736
+_ACEOF
 
32737
+cat confdefs.h >>conftest.$ac_ext
 
32738
+cat >>conftest.$ac_ext <<_ACEOF
 
32739
+/* end confdefs.h.  */
 
32740
+
 
32741
+/* Override any GCC internal prototype to avoid an error.
 
32742
+   Use char because int might match the return type of a GCC
 
32743
+   builtin and then its argument prototype would still apply.  */
 
32744
+#ifdef __cplusplus
 
32745
+extern "C"
 
32746
+#endif
 
32747
+char dlopen ();
 
32748
+int
 
32749
+main ()
 
32750
+{
 
32751
+return dlopen ();
 
32752
+  ;
 
32753
+  return 0;
 
32754
+}
 
32755
+_ACEOF
 
32756
+rm -f conftest.$ac_objext conftest$ac_exeext
 
32757
+if { (ac_try="$ac_link"
 
32758
+case "(($ac_try" in
 
32759
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
32760
+  *) ac_try_echo=$ac_try;;
 
32761
+esac
 
32762
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
32763
+  (eval "$ac_link") 2>conftest.er1
 
32764
+  ac_status=$?
 
32765
+  grep -v '^ *+' conftest.er1 >conftest.err
 
32766
+  rm -f conftest.er1
 
32767
+  cat conftest.err >&5
 
32768
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
32769
+  (exit $ac_status); } && {
 
32770
+        test -z "$ac_c_werror_flag" ||
 
32771
+        test ! -s conftest.err
 
32772
+       } && test -s conftest$ac_exeext &&
 
32773
+       $as_test_x conftest$ac_exeext; then
 
32774
+  ac_cv_lib_dl_dlopen=yes
 
32775
+else
 
32776
+  echo "$as_me: failed program was:" >&5
 
32777
+sed 's/^/| /' conftest.$ac_ext >&5
 
32778
+
 
32779
+       ac_cv_lib_dl_dlopen=no
 
32780
+fi
 
32781
+
 
32782
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
32783
+      conftest$ac_exeext conftest.$ac_ext
 
32784
+LIBS=$ac_check_lib_save_LIBS
 
32785
+fi
 
32786
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
 
32787
+echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; }
 
32788
+if test $ac_cv_lib_dl_dlopen = yes; then
 
32789
+  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
 
32790
+else
 
32791
+
 
32792
+    lt_cv_dlopen="dyld"
 
32793
+    lt_cv_dlopen_libs=
 
32794
+    lt_cv_dlopen_self=yes
 
32795
+
 
32796
+fi
 
32797
+
 
32798
+    ;;
 
32799
+
 
32800
+  *)
 
32801
+    { echo "$as_me:$LINENO: checking for shl_load" >&5
 
32802
+echo $ECHO_N "checking for shl_load... $ECHO_C" >&6; }
 
32803
+if test "${ac_cv_func_shl_load+set}" = set; then
 
32804
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
32805
+else
 
32806
+  cat >conftest.$ac_ext <<_ACEOF
 
32807
+/* confdefs.h.  */
 
32808
+_ACEOF
 
32809
+cat confdefs.h >>conftest.$ac_ext
 
32810
+cat >>conftest.$ac_ext <<_ACEOF
 
32811
+/* end confdefs.h.  */
 
32812
+/* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load.
 
32813
+   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
 
32814
+#define shl_load innocuous_shl_load
 
32815
+
 
32816
+/* System header to define __stub macros and hopefully few prototypes,
 
32817
+    which can conflict with char shl_load (); below.
 
32818
+    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
 
32819
+    <limits.h> exists even on freestanding compilers.  */
 
32820
+
 
32821
+#ifdef __STDC__
 
32822
+# include <limits.h>
 
32823
+#else
 
32824
+# include <assert.h>
 
32825
+#endif
 
32826
+
 
32827
+#undef shl_load
 
32828
+
 
32829
+/* Override any GCC internal prototype to avoid an error.
 
32830
+   Use char because int might match the return type of a GCC
 
32831
+   builtin and then its argument prototype would still apply.  */
 
32832
+#ifdef __cplusplus
 
32833
+extern "C"
 
32834
+#endif
 
32835
+char shl_load ();
 
32836
+/* The GNU C library defines this for functions which it implements
 
32837
+    to always fail with ENOSYS.  Some functions are actually named
 
32838
+    something starting with __ and the normal name is an alias.  */
 
32839
+#if defined __stub_shl_load || defined __stub___shl_load
 
32840
+choke me
 
32841
+#endif
 
32842
+
 
32843
+int
 
32844
+main ()
 
32845
+{
 
32846
+return shl_load ();
 
32847
+  ;
 
32848
+  return 0;
 
32849
+}
 
32850
+_ACEOF
 
32851
+rm -f conftest.$ac_objext conftest$ac_exeext
 
32852
+if { (ac_try="$ac_link"
 
32853
+case "(($ac_try" in
 
32854
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
32855
+  *) ac_try_echo=$ac_try;;
 
32856
+esac
 
32857
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
32858
+  (eval "$ac_link") 2>conftest.er1
 
32859
+  ac_status=$?
 
32860
+  grep -v '^ *+' conftest.er1 >conftest.err
 
32861
+  rm -f conftest.er1
 
32862
+  cat conftest.err >&5
 
32863
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
32864
+  (exit $ac_status); } && {
 
32865
+        test -z "$ac_c_werror_flag" ||
 
32866
+        test ! -s conftest.err
 
32867
+       } && test -s conftest$ac_exeext &&
 
32868
+       $as_test_x conftest$ac_exeext; then
 
32869
+  ac_cv_func_shl_load=yes
 
32870
+else
 
32871
+  echo "$as_me: failed program was:" >&5
 
32872
+sed 's/^/| /' conftest.$ac_ext >&5
 
32873
+
 
32874
+       ac_cv_func_shl_load=no
 
32875
+fi
 
32876
+
 
32877
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
32878
+      conftest$ac_exeext conftest.$ac_ext
 
32879
+fi
 
32880
+{ echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
 
32881
+echo "${ECHO_T}$ac_cv_func_shl_load" >&6; }
 
32882
+if test $ac_cv_func_shl_load = yes; then
 
32883
+  lt_cv_dlopen="shl_load"
 
32884
+else
 
32885
+  { echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5
 
32886
+echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6; }
 
32887
+if test "${ac_cv_lib_dld_shl_load+set}" = set; then
 
32888
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
32889
+else
 
32890
+  ac_check_lib_save_LIBS=$LIBS
 
32891
+LIBS="-ldld  $LIBS"
 
32892
+cat >conftest.$ac_ext <<_ACEOF
 
32893
+/* confdefs.h.  */
 
32894
+_ACEOF
 
32895
+cat confdefs.h >>conftest.$ac_ext
 
32896
+cat >>conftest.$ac_ext <<_ACEOF
 
32897
+/* end confdefs.h.  */
 
32898
+
 
32899
+/* Override any GCC internal prototype to avoid an error.
 
32900
+   Use char because int might match the return type of a GCC
 
32901
+   builtin and then its argument prototype would still apply.  */
 
32902
+#ifdef __cplusplus
 
32903
+extern "C"
 
32904
+#endif
 
32905
+char shl_load ();
 
32906
+int
 
32907
+main ()
 
32908
+{
 
32909
+return shl_load ();
 
32910
+  ;
 
32911
+  return 0;
 
32912
+}
 
32913
+_ACEOF
 
32914
+rm -f conftest.$ac_objext conftest$ac_exeext
 
32915
+if { (ac_try="$ac_link"
 
32916
+case "(($ac_try" in
 
32917
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
32918
+  *) ac_try_echo=$ac_try;;
 
32919
+esac
 
32920
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
32921
+  (eval "$ac_link") 2>conftest.er1
 
32922
+  ac_status=$?
 
32923
+  grep -v '^ *+' conftest.er1 >conftest.err
 
32924
+  rm -f conftest.er1
 
32925
+  cat conftest.err >&5
 
32926
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
32927
+  (exit $ac_status); } && {
 
32928
+        test -z "$ac_c_werror_flag" ||
 
32929
+        test ! -s conftest.err
 
32930
+       } && test -s conftest$ac_exeext &&
 
32931
+       $as_test_x conftest$ac_exeext; then
 
32932
+  ac_cv_lib_dld_shl_load=yes
 
32933
+else
 
32934
+  echo "$as_me: failed program was:" >&5
 
32935
+sed 's/^/| /' conftest.$ac_ext >&5
 
32936
+
 
32937
+       ac_cv_lib_dld_shl_load=no
 
32938
+fi
 
32939
+
 
32940
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
32941
+      conftest$ac_exeext conftest.$ac_ext
 
32942
+LIBS=$ac_check_lib_save_LIBS
 
32943
+fi
 
32944
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5
 
32945
+echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6; }
 
32946
+if test $ac_cv_lib_dld_shl_load = yes; then
 
32947
+  lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"
 
32948
+else
 
32949
+  { echo "$as_me:$LINENO: checking for dlopen" >&5
 
32950
+echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; }
 
32951
+if test "${ac_cv_func_dlopen+set}" = set; then
 
32952
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
32953
+else
 
32954
+  cat >conftest.$ac_ext <<_ACEOF
 
32955
+/* confdefs.h.  */
 
32956
+_ACEOF
 
32957
+cat confdefs.h >>conftest.$ac_ext
 
32958
+cat >>conftest.$ac_ext <<_ACEOF
 
32959
+/* end confdefs.h.  */
 
32960
+/* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
 
32961
+   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
 
32962
+#define dlopen innocuous_dlopen
 
32963
+
 
32964
+/* System header to define __stub macros and hopefully few prototypes,
 
32965
+    which can conflict with char dlopen (); below.
 
32966
+    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
 
32967
+    <limits.h> exists even on freestanding compilers.  */
 
32968
+
 
32969
+#ifdef __STDC__
 
32970
+# include <limits.h>
 
32971
+#else
 
32972
+# include <assert.h>
 
32973
+#endif
 
32974
+
 
32975
+#undef dlopen
 
32976
+
 
32977
+/* Override any GCC internal prototype to avoid an error.
 
32978
+   Use char because int might match the return type of a GCC
 
32979
+   builtin and then its argument prototype would still apply.  */
 
32980
+#ifdef __cplusplus
 
32981
+extern "C"
 
32982
+#endif
 
32983
+char dlopen ();
 
32984
+/* The GNU C library defines this for functions which it implements
 
32985
+    to always fail with ENOSYS.  Some functions are actually named
 
32986
+    something starting with __ and the normal name is an alias.  */
 
32987
+#if defined __stub_dlopen || defined __stub___dlopen
 
32988
+choke me
 
32989
+#endif
 
32990
+
 
32991
+int
 
32992
+main ()
 
32993
+{
 
32994
+return dlopen ();
 
32995
+  ;
 
32996
+  return 0;
 
32997
+}
 
32998
+_ACEOF
 
32999
+rm -f conftest.$ac_objext conftest$ac_exeext
 
33000
+if { (ac_try="$ac_link"
 
33001
+case "(($ac_try" in
 
33002
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
33003
+  *) ac_try_echo=$ac_try;;
 
33004
+esac
 
33005
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
33006
+  (eval "$ac_link") 2>conftest.er1
 
33007
+  ac_status=$?
 
33008
+  grep -v '^ *+' conftest.er1 >conftest.err
 
33009
+  rm -f conftest.er1
 
33010
+  cat conftest.err >&5
 
33011
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
33012
+  (exit $ac_status); } && {
 
33013
+        test -z "$ac_c_werror_flag" ||
 
33014
+        test ! -s conftest.err
 
33015
+       } && test -s conftest$ac_exeext &&
 
33016
+       $as_test_x conftest$ac_exeext; then
 
33017
+  ac_cv_func_dlopen=yes
 
33018
+else
 
33019
+  echo "$as_me: failed program was:" >&5
 
33020
+sed 's/^/| /' conftest.$ac_ext >&5
 
33021
+
 
33022
+       ac_cv_func_dlopen=no
 
33023
+fi
 
33024
+
 
33025
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
33026
+      conftest$ac_exeext conftest.$ac_ext
 
33027
+fi
 
33028
+{ echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
 
33029
+echo "${ECHO_T}$ac_cv_func_dlopen" >&6; }
 
33030
+if test $ac_cv_func_dlopen = yes; then
 
33031
+  lt_cv_dlopen="dlopen"
 
33032
+else
 
33033
+  { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
 
33034
+echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; }
 
33035
+if test "${ac_cv_lib_dl_dlopen+set}" = set; then
 
33036
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
33037
+else
 
33038
+  ac_check_lib_save_LIBS=$LIBS
 
33039
+LIBS="-ldl  $LIBS"
 
33040
+cat >conftest.$ac_ext <<_ACEOF
 
33041
+/* confdefs.h.  */
 
33042
+_ACEOF
 
33043
+cat confdefs.h >>conftest.$ac_ext
 
33044
+cat >>conftest.$ac_ext <<_ACEOF
 
33045
+/* end confdefs.h.  */
 
33046
+
 
33047
+/* Override any GCC internal prototype to avoid an error.
 
33048
+   Use char because int might match the return type of a GCC
 
33049
+   builtin and then its argument prototype would still apply.  */
 
33050
+#ifdef __cplusplus
 
33051
+extern "C"
 
33052
+#endif
 
33053
+char dlopen ();
 
33054
+int
 
33055
+main ()
 
33056
+{
 
33057
+return dlopen ();
 
33058
+  ;
 
33059
+  return 0;
 
33060
+}
 
33061
+_ACEOF
 
33062
+rm -f conftest.$ac_objext conftest$ac_exeext
 
33063
+if { (ac_try="$ac_link"
 
33064
+case "(($ac_try" in
 
33065
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
33066
+  *) ac_try_echo=$ac_try;;
 
33067
+esac
 
33068
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
33069
+  (eval "$ac_link") 2>conftest.er1
 
33070
+  ac_status=$?
 
33071
+  grep -v '^ *+' conftest.er1 >conftest.err
 
33072
+  rm -f conftest.er1
 
33073
+  cat conftest.err >&5
 
33074
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
33075
+  (exit $ac_status); } && {
 
33076
+        test -z "$ac_c_werror_flag" ||
 
33077
+        test ! -s conftest.err
 
33078
+       } && test -s conftest$ac_exeext &&
 
33079
+       $as_test_x conftest$ac_exeext; then
 
33080
+  ac_cv_lib_dl_dlopen=yes
 
33081
+else
 
33082
+  echo "$as_me: failed program was:" >&5
 
33083
+sed 's/^/| /' conftest.$ac_ext >&5
 
33084
+
 
33085
+       ac_cv_lib_dl_dlopen=no
 
33086
+fi
 
33087
+
 
33088
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
33089
+      conftest$ac_exeext conftest.$ac_ext
 
33090
+LIBS=$ac_check_lib_save_LIBS
 
33091
+fi
 
33092
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
 
33093
+echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; }
 
33094
+if test $ac_cv_lib_dl_dlopen = yes; then
 
33095
+  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
 
33096
+else
 
33097
+  { echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5
 
33098
+echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6; }
 
33099
+if test "${ac_cv_lib_svld_dlopen+set}" = set; then
 
33100
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
33101
+else
 
33102
+  ac_check_lib_save_LIBS=$LIBS
 
33103
+LIBS="-lsvld  $LIBS"
 
33104
+cat >conftest.$ac_ext <<_ACEOF
 
33105
+/* confdefs.h.  */
 
33106
+_ACEOF
 
33107
+cat confdefs.h >>conftest.$ac_ext
 
33108
+cat >>conftest.$ac_ext <<_ACEOF
 
33109
+/* end confdefs.h.  */
 
33110
+
 
33111
+/* Override any GCC internal prototype to avoid an error.
 
33112
+   Use char because int might match the return type of a GCC
 
33113
+   builtin and then its argument prototype would still apply.  */
 
33114
+#ifdef __cplusplus
 
33115
+extern "C"
 
33116
+#endif
 
33117
+char dlopen ();
 
33118
+int
 
33119
+main ()
 
33120
+{
 
33121
+return dlopen ();
 
33122
+  ;
 
33123
+  return 0;
 
33124
+}
 
33125
+_ACEOF
 
33126
+rm -f conftest.$ac_objext conftest$ac_exeext
 
33127
+if { (ac_try="$ac_link"
 
33128
+case "(($ac_try" in
 
33129
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
33130
+  *) ac_try_echo=$ac_try;;
 
33131
+esac
 
33132
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
33133
+  (eval "$ac_link") 2>conftest.er1
 
33134
+  ac_status=$?
 
33135
+  grep -v '^ *+' conftest.er1 >conftest.err
 
33136
+  rm -f conftest.er1
 
33137
+  cat conftest.err >&5
 
33138
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
33139
+  (exit $ac_status); } && {
 
33140
+        test -z "$ac_c_werror_flag" ||
 
33141
+        test ! -s conftest.err
 
33142
+       } && test -s conftest$ac_exeext &&
 
33143
+       $as_test_x conftest$ac_exeext; then
 
33144
+  ac_cv_lib_svld_dlopen=yes
 
33145
+else
 
33146
+  echo "$as_me: failed program was:" >&5
 
33147
+sed 's/^/| /' conftest.$ac_ext >&5
 
33148
 
 
33149
-{ $as_echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX" >&5
 
33150
-$as_echo "$lt_prog_compiler_pic_CXX" >&6; }
 
33151
+       ac_cv_lib_svld_dlopen=no
 
33152
+fi
24766
33153
 
24767
33154
-#
24768
33155
-# Check to make sure the PIC flag actually works.
24769
33156
-#
24770
33157
-if test -n "$lt_prog_compiler_pic_CXX"; then
 
33158
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
33159
+      conftest$ac_exeext conftest.$ac_ext
 
33160
+LIBS=$ac_check_lib_save_LIBS
 
33161
+fi
 
33162
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5
 
33163
+echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6; }
 
33164
+if test $ac_cv_lib_svld_dlopen = yes; then
 
33165
+  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
 
33166
+else
 
33167
+  { echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5
 
33168
+echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6; }
 
33169
+if test "${ac_cv_lib_dld_dld_link+set}" = set; then
 
33170
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
33171
+else
 
33172
+  ac_check_lib_save_LIBS=$LIBS
 
33173
+LIBS="-ldld  $LIBS"
 
33174
+cat >conftest.$ac_ext <<_ACEOF
 
33175
+/* confdefs.h.  */
 
33176
+_ACEOF
 
33177
+cat confdefs.h >>conftest.$ac_ext
 
33178
+cat >>conftest.$ac_ext <<_ACEOF
 
33179
+/* end confdefs.h.  */
 
33180
 
 
33181
-{ $as_echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5
 
33182
-$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; }
 
33183
-if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then
 
33184
-  $as_echo_n "(cached) " >&6
 
33185
+/* Override any GCC internal prototype to avoid an error.
 
33186
+   Use char because int might match the return type of a GCC
 
33187
+   builtin and then its argument prototype would still apply.  */
 
33188
+#ifdef __cplusplus
 
33189
+extern "C"
 
33190
+#endif
 
33191
+char dld_link ();
24771
33192
+int
24772
33193
+main ()
24773
33194
+{
24774
 
 
24775
 
-{ echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5
24776
 
-echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... $ECHO_C" >&6; }
24777
 
-if test "${lt_prog_compiler_pic_works_CXX+set}" = set; then
24778
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
24779
 
-else
24780
 
-  lt_prog_compiler_pic_works_CXX=no
 
33195
+return dld_link ();
 
33196
+  ;
 
33197
+  return 0;
 
33198
+}
 
33199
+_ACEOF
 
33200
+rm -f conftest.$ac_objext conftest$ac_exeext
 
33201
+if { (ac_try="$ac_link"
 
33202
+case "(($ac_try" in
 
33203
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
33204
+  *) ac_try_echo=$ac_try;;
 
33205
+esac
 
33206
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
33207
+  (eval "$ac_link") 2>conftest.er1
 
33208
+  ac_status=$?
 
33209
+  grep -v '^ *+' conftest.er1 >conftest.err
 
33210
+  rm -f conftest.er1
 
33211
+  cat conftest.err >&5
 
33212
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
33213
+  (exit $ac_status); } && {
 
33214
+        test -z "$ac_c_werror_flag" ||
 
33215
+        test ! -s conftest.err
 
33216
+       } && test -s conftest$ac_exeext &&
 
33217
+       $as_test_x conftest$ac_exeext; then
 
33218
+  ac_cv_lib_dld_dld_link=yes
 
33219
 else
 
33220
-  lt_cv_prog_compiler_pic_works_CXX=no
24781
33221
-  ac_outfile=conftest.$ac_objext
24782
33222
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
24783
33223
-   lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC"
24790
33230
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
24791
33231
-   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
24792
33232
-   -e 's:$: $lt_compiler_flag:'`
24793
 
-   (eval echo "\"\$as_me:15067: $lt_compile\"" >&5)
 
33233
-   (eval echo "\"\$as_me:15717: $lt_compile\"" >&5)
24794
33234
-   (eval "$lt_compile" 2>conftest.err)
24795
 
+  ;
24796
 
+  return 0;
24797
 
+}
24798
 
+_ACEOF
24799
 
+rm -f conftest.$ac_objext conftest$ac_exeext
24800
 
+if { (ac_try="$ac_link"
24801
 
+case "(($ac_try" in
24802
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
24803
 
+  *) ac_try_echo=$ac_try;;
24804
 
+esac
24805
 
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
24806
 
+  (eval "$ac_link") 2>conftest.er1
24807
 
    ac_status=$?
24808
 
+  grep -v '^ *+' conftest.er1 >conftest.err
24809
 
+  rm -f conftest.er1
24810
 
    cat conftest.err >&5
24811
 
-   echo "$as_me:15071: \$? = $ac_status" >&5
 
33235
-   ac_status=$?
 
33236
-   cat conftest.err >&5
 
33237
-   echo "$as_me:15721: \$? = $ac_status" >&5
24812
33238
-   if (exit $ac_status) && test -s "$ac_outfile"; then
24813
33239
-     # The compiler can only warn and ignore the option if not recognized
24814
33240
-     # So say no if there are warnings other than the usual output.
24815
33241
-     $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
24816
33242
-     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
24817
33243
-     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
24818
 
-       lt_prog_compiler_pic_works_CXX=yes
 
33244
-       lt_cv_prog_compiler_pic_works_CXX=yes
24819
33245
-     fi
24820
33246
-   fi
24821
33247
-   $rm conftest*
24822
 
-
24823
 
-fi
24824
 
-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_CXX" >&5
24825
 
-echo "${ECHO_T}$lt_prog_compiler_pic_works_CXX" >&6; }
24826
 
-
24827
 
-if test x"$lt_prog_compiler_pic_works_CXX" = xyes; then
 
33248
+  echo "$as_me: failed program was:" >&5
 
33249
+sed 's/^/| /' conftest.$ac_ext >&5
 
33250
 
 
33251
+       ac_cv_lib_dld_dld_link=no
 
33252
 fi
 
33253
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_CXX" >&5
 
33254
-$as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; }
 
33255
 
 
33256
-if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then
24828
33257
-    case $lt_prog_compiler_pic_CXX in
24829
33258
-     "" | " "*) ;;
24830
33259
-     *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;;
24832
33261
-else
24833
33262
-    lt_prog_compiler_pic_CXX=
24834
33263
-     lt_prog_compiler_can_build_shared_CXX=no
24835
 
-fi
24836
 
-
24837
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
24838
 
+  (exit $ac_status); } && {
24839
 
+        test -z "$ac_c_werror_flag" ||
24840
 
+        test ! -s conftest.err
24841
 
+       } && test -s conftest$ac_exeext &&
24842
 
+       $as_test_x conftest$ac_exeext; then
24843
 
+  if  ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then
24844
 
+  shlibpath_overrides_runpath=yes
 
33264
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
33265
+      conftest$ac_exeext conftest.$ac_ext
 
33266
+LIBS=$ac_check_lib_save_LIBS
 
33267
+fi
 
33268
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5
 
33269
+echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6; }
 
33270
+if test $ac_cv_lib_dld_dld_link = yes; then
 
33271
+  lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"
 
33272
 fi
 
33273
 
 
33274
+
24845
33275
 fi
24846
33276
-case $host_os in
24847
33277
-  # For platforms which do not support PIC, -DPIC is meaningless:
24857
33287
-# Check to make sure the static flag actually works.
24858
33288
-#
24859
33289
-wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\"
24860
 
-{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5
24861
 
-echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; }
24862
 
-if test "${lt_prog_compiler_static_works_CXX+set}" = set; then
24863
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
24864
 
 else
24865
 
-  lt_prog_compiler_static_works_CXX=no
 
33290
-{ $as_echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5
 
33291
-$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
 
33292
-if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then
 
33293
-  $as_echo_n "(cached) " >&6
 
33294
-else
 
33295
-  lt_cv_prog_compiler_static_works_CXX=no
24866
33296
-   save_LDFLAGS="$LDFLAGS"
24867
33297
-   LDFLAGS="$LDFLAGS $lt_tmp_static_flag"
24868
33298
-   echo "$lt_simple_link_test_code" > conftest.$ac_ext
24875
33305
-       $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
24876
33306
-       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
24877
33307
-       if diff conftest.exp conftest.er2 >/dev/null; then
24878
 
-         lt_prog_compiler_static_works_CXX=yes
 
33308
-         lt_cv_prog_compiler_static_works_CXX=yes
24879
33309
-       fi
24880
33310
-     else
24881
 
-       lt_prog_compiler_static_works_CXX=yes
 
33311
-       lt_cv_prog_compiler_static_works_CXX=yes
24882
33312
-     fi
24883
33313
-   fi
24884
 
-   $rm conftest*
 
33314
-   $rm -r conftest*
24885
33315
-   LDFLAGS="$save_LDFLAGS"
24886
 
+  echo "$as_me: failed program was:" >&5
24887
 
+sed 's/^/| /' conftest.$ac_ext >&5
24888
 
 
24889
 
-fi
24890
 
-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_CXX" >&5
24891
 
-echo "${ECHO_T}$lt_prog_compiler_static_works_CXX" >&6; }
24892
 
 
24893
 
-if test x"$lt_prog_compiler_static_works_CXX" = xyes; then
 
33316
 
 
33317
 fi
 
33318
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_CXX" >&5
 
33319
-$as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; }
 
33320
 
 
33321
-if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then
24894
33322
-    :
24895
33323
-else
24896
33324
-    lt_prog_compiler_static_CXX=
 
33325
+
24897
33326
 fi
24898
33327
 
24899
 
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
24900
 
+      conftest$ac_exeext conftest.$ac_ext
24901
 
+  LDFLAGS=$save_LDFLAGS
24902
 
+  libdir=$save_libdir
24903
33328
 
24904
 
-{ echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
24905
 
-echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; }
 
33329
-{ $as_echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
 
33330
-$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
24906
33331
-if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then
24907
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
33332
-  $as_echo_n "(cached) " >&6
24908
33333
-else
24909
33334
-  lt_cv_prog_compiler_c_o_CXX=no
24910
33335
-   $rm -r conftest 2>/dev/null
24912
33337
-   cd conftest
24913
33338
-   mkdir out
24914
33339
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
24915
 
+  # This implies no fast_install, which is unacceptable.
24916
 
+  # Some rework will be needed to allow for fast_install
24917
 
+  # before this can be enabled.
24918
 
+  hardcode_into_libs=yes
 
33340
+fi
24919
33341
 
24920
33342
-   lt_compiler_flag="-o out/conftest2.$ac_objext"
24921
33343
-   # Insert the option either (1) after the last *FLAGS variable, or
24926
33348
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
24927
33349
-   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
24928
33350
-   -e 's:$: $lt_compiler_flag:'`
24929
 
-   (eval echo "\"\$as_me:15171: $lt_compile\"" >&5)
 
33351
-   (eval echo "\"\$as_me:15821: $lt_compile\"" >&5)
24930
33352
-   (eval "$lt_compile" 2>out/conftest.err)
24931
33353
-   ac_status=$?
24932
33354
-   cat out/conftest.err >&5
24933
 
-   echo "$as_me:15175: \$? = $ac_status" >&5
 
33355
-   echo "$as_me:15825: \$? = $ac_status" >&5
24934
33356
-   if (exit $ac_status) && test -s out/conftest2.$ac_objext
24935
33357
-   then
24936
33358
-     # The compiler can only warn and ignore the option if not recognized
24940
33362
-     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
24941
33363
-       lt_cv_prog_compiler_c_o_CXX=yes
24942
33364
-     fi
24943
 
+  # Append ld.so.conf contents to the search path
24944
 
+  if test -f /etc/ld.so.conf; then
24945
 
+    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[      ]*hwcap[        ]/d;s/[:,      ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
24946
 
+    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
24947
 
    fi
 
33365
-   fi
24948
33366
-   chmod u+w . 2>&5
24949
33367
-   $rm conftest*
24950
33368
-   # SGI C++ compiler will create directory out/ii_files/ for
24954
33372
-   cd ..
24955
33373
-   rmdir conftest
24956
33374
-   $rm conftest*
24957
 
-
24958
 
-fi
24959
 
-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5
24960
 
-echo "${ECHO_T}$lt_cv_prog_compiler_c_o_CXX" >&6; }
24961
 
 
24962
 
+  # We used to test for /lib/ld.so.1 and disable shared libraries on
24963
 
+  # powerpc, because MkLinux only supported shared libraries with the
24964
 
+  # GNU dynamic linker.  Since this was broken with cross compilers,
24965
 
+  # most powerpc-linux boxes support dynamic linking these days and
24966
 
+  # people can always --disable-shared, the test was removed, and we
24967
 
+  # assume the GNU/Linux dynamic linker is in use.
24968
 
+  dynamic_linker='GNU/Linux ld.so'
24969
 
+  ;;
 
33375
 
 
33376
 fi
 
33377
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5
 
33378
-$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; }
 
33379
 
 
33380
+    ;;
 
33381
+  esac
 
33382
+
 
33383
+  if test "x$lt_cv_dlopen" != xno; then
 
33384
+    enable_dlopen=yes
 
33385
+  else
 
33386
+    enable_dlopen=no
 
33387
+  fi
 
33388
+
 
33389
+  case $lt_cv_dlopen in
 
33390
+  dlopen)
 
33391
+    save_CPPFLAGS="$CPPFLAGS"
 
33392
+    test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
 
33393
+
 
33394
+    save_LDFLAGS="$LDFLAGS"
 
33395
+    wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
 
33396
+
 
33397
+    save_LIBS="$LIBS"
 
33398
+    LIBS="$lt_cv_dlopen_libs $LIBS"
 
33399
+
 
33400
+    { echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5
 
33401
+echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6; }
 
33402
+if test "${lt_cv_dlopen_self+set}" = set; then
 
33403
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
33404
+else
 
33405
+         if test "$cross_compiling" = yes; then :
 
33406
+  lt_cv_dlopen_self=cross
 
33407
+else
 
33408
+  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
33409
+  lt_status=$lt_dlunknown
 
33410
+  cat > conftest.$ac_ext <<_LT_EOF
 
33411
+#line 14460 "configure"
 
33412
+#include "confdefs.h"
 
33413
+
 
33414
+#if HAVE_DLFCN_H
 
33415
+#include <dlfcn.h>
 
33416
+#endif
 
33417
+
 
33418
+#include <stdio.h>
 
33419
+
 
33420
+#ifdef RTLD_GLOBAL
 
33421
+#  define LT_DLGLOBAL          RTLD_GLOBAL
 
33422
+#else
 
33423
+#  ifdef DL_GLOBAL
 
33424
+#    define LT_DLGLOBAL                DL_GLOBAL
 
33425
+#  else
 
33426
+#    define LT_DLGLOBAL                0
 
33427
+#  endif
 
33428
+#endif
 
33429
+
 
33430
+/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
 
33431
+   find out it does not work in some platform. */
 
33432
+#ifndef LT_DLLAZY_OR_NOW
 
33433
+#  ifdef RTLD_LAZY
 
33434
+#    define LT_DLLAZY_OR_NOW           RTLD_LAZY
 
33435
+#  else
 
33436
+#    ifdef DL_LAZY
 
33437
+#      define LT_DLLAZY_OR_NOW         DL_LAZY
 
33438
+#    else
 
33439
+#      ifdef RTLD_NOW
 
33440
+#        define LT_DLLAZY_OR_NOW       RTLD_NOW
 
33441
+#      else
 
33442
+#        ifdef DL_NOW
 
33443
+#          define LT_DLLAZY_OR_NOW     DL_NOW
 
33444
+#        else
 
33445
+#          define LT_DLLAZY_OR_NOW     0
 
33446
+#        endif
 
33447
+#      endif
 
33448
+#    endif
 
33449
+#  endif
 
33450
+#endif
 
33451
+
 
33452
+#ifdef __cplusplus
 
33453
+extern "C" void exit (int);
 
33454
+#endif
 
33455
+
 
33456
+void fnord() { int i=42;}
 
33457
+int main ()
 
33458
+{
 
33459
+  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
 
33460
+  int status = $lt_dlunknown;
 
33461
+
 
33462
+  if (self)
 
33463
+    {
 
33464
+      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
 
33465
+      else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
 
33466
+      /* dlclose (self); */
 
33467
+    }
 
33468
+  else
 
33469
+    puts (dlerror ());
24970
33470
 
24971
33471
-hard_links="nottested"
24972
33472
-if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then
24973
33473
-  # do not overwrite the value of need_locks provided by the user
24974
 
-  { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5
24975
 
-echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; }
 
33474
-  { $as_echo "$as_me:$LINENO: checking if we can lock with hard links" >&5
 
33475
-$as_echo_n "checking if we can lock with hard links... " >&6; }
24976
33476
-  hard_links=yes
24977
33477
-  $rm conftest*
24978
33478
-  ln conftest.a conftest.b 2>/dev/null && hard_links=no
24979
33479
-  touch conftest.a
24980
33480
-  ln conftest.a conftest.b 2>&5 || hard_links=no
24981
33481
-  ln conftest.a conftest.b 2>/dev/null && hard_links=no
24982
 
-  { echo "$as_me:$LINENO: result: $hard_links" >&5
24983
 
-echo "${ECHO_T}$hard_links" >&6; }
 
33482
-  { $as_echo "$as_me:$LINENO: result: $hard_links" >&5
 
33483
-$as_echo "$hard_links" >&6; }
24984
33484
-  if test "$hard_links" = no; then
24985
 
-    { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
24986
 
-echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
 
33485
-    { $as_echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
 
33486
-$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
24987
33487
-    need_locks=warn
24988
 
-  fi
 
33488
+    exit (status);
 
33489
+}
 
33490
+_LT_EOF
 
33491
+  if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
33492
+  (eval $ac_link) 2>&5
 
33493
+  ac_status=$?
 
33494
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
33495
+  (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
 
33496
+    (./conftest; exit; ) >&5 2>/dev/null
 
33497
+    lt_status=$?
 
33498
+    case x$lt_status in
 
33499
+      x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;;
 
33500
+      x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;;
 
33501
+      x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;;
 
33502
+    esac
 
33503
+  else :
 
33504
+    # compilation failed
 
33505
+    lt_cv_dlopen_self=no
 
33506
   fi
24989
33507
-else
24990
33508
-  need_locks=no
24991
 
-fi
 
33509
 fi
 
33510
+rm -fr conftest*
 
33511
 
 
33512
-{ $as_echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
 
33513
-$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; }
24992
33514
-
24993
 
-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
24994
 
-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; }
24995
 
+netbsdelf*-gnu)
24996
 
+  version_type=linux
24997
 
+  need_lib_prefix=no
24998
 
+  need_version=no
24999
 
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
25000
 
+  soname_spec='${libname}${release}${shared_ext}$major'
25001
 
+  shlibpath_var=LD_LIBRARY_PATH
25002
 
+  shlibpath_overrides_runpath=no
25003
 
+  hardcode_into_libs=yes
25004
 
+  dynamic_linker='NetBSD ld.elf_so'
25005
 
+  ;;
25006
 
 
25007
33515
-  export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
25008
33516
-  case $host_os in
25009
 
-  aix4* | aix5*)
 
33517
-  aix[4-9]*)
25010
33518
-    # If we're using GNU nm, then we don't want the "-C" option.
25011
33519
-    # -C means demangle to AIX nm, but means don't demangle with GNU nm
25012
33520
-    if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
25013
33521
-      export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols'
25014
 
+netbsd*)
25015
 
+  version_type=sunos
25016
 
+  need_lib_prefix=no
25017
 
+  need_version=no
25018
 
+  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
25019
 
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
25020
 
+    finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
25021
 
+    dynamic_linker='NetBSD (a.out) ld.so'
25022
 
     else
 
33522
-    else
25023
33523
-      export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols'
25024
 
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
25025
 
+    soname_spec='${libname}${release}${shared_ext}$major'
25026
 
+    dynamic_linker='NetBSD ld.elf_so'
25027
 
     fi
25028
 
+  shlibpath_var=LD_LIBRARY_PATH
25029
 
+  shlibpath_overrides_runpath=yes
25030
 
+  hardcode_into_libs=yes
25031
 
     ;;
 
33524
-    fi
 
33525
-    ;;
25032
33526
-  pw32*)
25033
33527
-    export_symbols_cmds_CXX="$ltdll_cmds"
25034
 
+
25035
 
+newsos6)
25036
 
+  version_type=linux
25037
 
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
25038
 
+  shlibpath_var=LD_LIBRARY_PATH
25039
 
+  shlibpath_overrides_runpath=yes
25040
 
   ;;
 
33528
-  ;;
25041
33529
-  cygwin* | mingw*)
25042
33530
-    export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;/^.*[ ]__nm__/s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols'
25043
 
+
25044
 
+*nto* | *qnx*)
25045
 
+  version_type=qnx
25046
 
+  need_lib_prefix=no
25047
 
+  need_version=no
25048
 
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
25049
 
+  soname_spec='${libname}${release}${shared_ext}$major'
25050
 
+  shlibpath_var=LD_LIBRARY_PATH
25051
 
+  shlibpath_overrides_runpath=no
25052
 
+  hardcode_into_libs=yes
25053
 
+  dynamic_linker='ldqnx.so'
25054
 
+  ;;
25055
 
+
25056
 
+openbsd*)
25057
 
+  version_type=sunos
25058
 
+  sys_lib_dlsearch_path_spec="/usr/lib"
25059
 
+  need_lib_prefix=no
25060
 
+  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
25061
 
+  case $host_os in
25062
 
+    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
25063
 
+    *)                         need_version=no  ;;
25064
 
+  esac
25065
 
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
25066
 
+  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
25067
 
+  shlibpath_var=LD_LIBRARY_PATH
25068
 
+  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
25069
 
+    case $host_os in
25070
 
+      openbsd2.[89] | openbsd2.[89].*)
25071
 
+       shlibpath_overrides_runpath=no
25072
 
   ;;
25073
 
   *)
 
33531
-  ;;
 
33532
-  *)
25074
33533
-    export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
25075
 
+       shlibpath_overrides_runpath=yes
25076
 
   ;;
25077
 
   esac
25078
 
+  else
25079
 
+    shlibpath_overrides_runpath=yes
25080
 
+  fi
25081
 
+  ;;
25082
 
 
25083
 
-{ echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5
25084
 
-echo "${ECHO_T}$ld_shlibs_CXX" >&6; }
 
33534
-  ;;
 
33535
-  esac
 
33536
-  exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
 
33537
-
 
33538
-{ $as_echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5
 
33539
-$as_echo "$ld_shlibs_CXX" >&6; }
25085
33540
-test "$ld_shlibs_CXX" = no && can_build_shared=no
25086
 
+os2*)
25087
 
+  libname_spec='$name'
25088
 
+  shrext_cmds=".dll"
25089
 
+  need_lib_prefix=no
25090
 
+  library_names_spec='$libname${shared_ext} $libname.a'
25091
 
+  dynamic_linker='OS/2 ld.exe'
25092
 
+  shlibpath_var=LIBPATH
25093
 
+  ;;
25094
33541
 
25095
33542
-#
25096
33543
-# Do we need to explicitly link libc?
25099
33546
-x|xyes)
25100
33547
-  # Assume -lc should be added
25101
33548
-  archive_cmds_need_lc_CXX=yes
25102
 
+osf3* | osf4* | osf5*)
25103
 
+  version_type=osf
25104
 
+  need_lib_prefix=no
25105
 
+  need_version=no
25106
 
+  soname_spec='${libname}${release}${shared_ext}$major'
25107
 
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
25108
 
+  shlibpath_var=LD_LIBRARY_PATH
25109
 
+  sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
25110
 
+  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
25111
 
+  ;;
 
33549
+fi
 
33550
+{ echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5
 
33551
+echo "${ECHO_T}$lt_cv_dlopen_self" >&6; }
25112
33552
 
25113
33553
-  if test "$enable_shared" = yes && test "$GCC" = yes; then
25114
33554
-    case $archive_cmds_CXX in
25119
33559
-      # Test whether the compiler implicitly links with -lc since on some
25120
33560
-      # systems, -lgcc has to come before -lc. If gcc already passes -lc
25121
33561
-      # to ld, don't add -lc before -lgcc.
25122
 
-      { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
25123
 
-echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; }
 
33562
-      { $as_echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
 
33563
-$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
25124
33564
-      $rm conftest*
25125
33565
-      echo "$lt_simple_compile_test_code" > conftest.$ac_ext
25126
 
-
 
33566
+    if test "x$lt_cv_dlopen_self" = xyes; then
 
33567
+      wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
 
33568
+      { echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5
 
33569
+echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6; }
 
33570
+if test "${lt_cv_dlopen_self_static+set}" = set; then
 
33571
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
33572
+else
 
33573
+         if test "$cross_compiling" = yes; then :
 
33574
+  lt_cv_dlopen_self_static=cross
 
33575
+else
 
33576
+  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
 
33577
+  lt_status=$lt_dlunknown
 
33578
+  cat > conftest.$ac_ext <<_LT_EOF
 
33579
+#line 14560 "configure"
 
33580
+#include "confdefs.h"
 
33581
 
25127
33582
-      if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
25128
33583
-  (eval $ac_compile) 2>&5
25129
33584
-  ac_status=$?
25130
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
33585
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
25131
33586
-  (exit $ac_status); } 2>conftest.err; then
25132
33587
-        soname=conftest
25133
33588
-        lib=conftest
25145
33600
-        if { (eval echo "$as_me:$LINENO: \"$archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5
25146
33601
-  (eval $archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5
25147
33602
-  ac_status=$?
25148
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
33603
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
25149
33604
-  (exit $ac_status); }
25150
33605
-        then
25151
33606
-         archive_cmds_need_lc_CXX=no
25157
33612
-        cat conftest.err 1>&5
25158
33613
-      fi
25159
33614
-      $rm conftest*
25160
 
-      { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_CXX" >&5
25161
 
-echo "${ECHO_T}$archive_cmds_need_lc_CXX" >&6; }
 
33615
-      { $as_echo "$as_me:$LINENO: result: $archive_cmds_need_lc_CXX" >&5
 
33616
-$as_echo "$archive_cmds_need_lc_CXX" >&6; }
25162
33617
-      ;;
25163
33618
-    esac
25164
33619
-  fi
25165
33620
-  ;;
25166
33621
-esac
25167
 
-
25168
 
-{ echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
25169
 
-echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; }
 
33622
+#if HAVE_DLFCN_H
 
33623
+#include <dlfcn.h>
 
33624
+#endif
 
33625
 
 
33626
-{ $as_echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
 
33627
-$as_echo_n "checking dynamic linker characteristics... " >&6; }
25170
33628
-library_names_spec=
25171
33629
-libname_spec='lib$name'
25172
33630
-soname_spec=
25180
33638
-version_type=none
25181
33639
-dynamic_linker="$host_os ld.so"
25182
33640
-sys_lib_dlsearch_path_spec="/lib /usr/lib"
25183
 
-
 
33641
+#include <stdio.h>
 
33642
 
25184
33643
-need_lib_prefix=unknown
25185
33644
-hardcode_into_libs=no
25186
 
-
 
33645
+#ifdef RTLD_GLOBAL
 
33646
+#  define LT_DLGLOBAL          RTLD_GLOBAL
 
33647
+#else
 
33648
+#  ifdef DL_GLOBAL
 
33649
+#    define LT_DLGLOBAL                DL_GLOBAL
 
33650
+#  else
 
33651
+#    define LT_DLGLOBAL                0
 
33652
+#  endif
 
33653
+#endif
 
33654
 
25187
33655
-# when you set need_version to no, make sure it does not cause -set_version
25188
33656
-# flags to be left without arguments
25189
33657
-need_version=unknown
25190
 
-
 
33658
+/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
 
33659
+   find out it does not work in some platform. */
 
33660
+#ifndef LT_DLLAZY_OR_NOW
 
33661
+#  ifdef RTLD_LAZY
 
33662
+#    define LT_DLLAZY_OR_NOW           RTLD_LAZY
 
33663
+#  else
 
33664
+#    ifdef DL_LAZY
 
33665
+#      define LT_DLLAZY_OR_NOW         DL_LAZY
 
33666
+#    else
 
33667
+#      ifdef RTLD_NOW
 
33668
+#        define LT_DLLAZY_OR_NOW       RTLD_NOW
 
33669
+#      else
 
33670
+#        ifdef DL_NOW
 
33671
+#          define LT_DLLAZY_OR_NOW     DL_NOW
 
33672
+#        else
 
33673
+#          define LT_DLLAZY_OR_NOW     0
 
33674
+#        endif
 
33675
+#      endif
 
33676
+#    endif
 
33677
+#  endif
 
33678
+#endif
 
33679
 
25191
33680
-case $host_os in
25192
33681
-aix3*)
25193
33682
-  version_type=linux
25194
33683
-  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
25195
33684
-  shlibpath_var=LIBPATH
25196
 
-
 
33685
+#ifdef __cplusplus
 
33686
+extern "C" void exit (int);
 
33687
+#endif
 
33688
 
25197
33689
-  # AIX 3 has no versioning support, so we append a major version to the name.
25198
33690
-  soname_spec='${libname}${release}${shared_ext}$major'
25199
 
+rdos*)
25200
 
+  dynamic_linker=no
25201
 
   ;;
 
33691
-  ;;
 
33692
+void fnord() { int i=42;}
 
33693
+int main ()
 
33694
+{
 
33695
+  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
 
33696
+  int status = $lt_dlunknown;
25202
33697
 
25203
 
-aix4* | aix5*)
25204
 
+solaris*)
25205
 
   version_type=linux
25206
 
   need_lib_prefix=no
25207
 
   need_version=no
 
33698
-aix[4-9]*)
 
33699
-  version_type=linux
 
33700
-  need_lib_prefix=no
 
33701
-  need_version=no
25208
33702
-  hardcode_into_libs=yes
25209
33703
-  if test "$host_cpu" = ia64; then
25210
33704
-    # AIX 5 supports IA64
25211
33705
-    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
25212
33706
-    shlibpath_var=LD_LIBRARY_PATH
25213
 
-  else
 
33707
+  if (self)
 
33708
+    {
 
33709
+      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
 
33710
+      else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
 
33711
+      /* dlclose (self); */
 
33712
+    }
 
33713
   else
25214
33714
-    # With GCC up to 2.95.x, collect2 would create an import file
25215
33715
-    # for dependence libraries.  The import file would start with
25216
33716
-    # the line `#! .'.  This would cause the generated library to
25226
33726
-       can_build_shared=no
25227
33727
-      fi
25228
33728
-      ;;
25229
 
-    esac
 
33729
+    puts (dlerror ());
 
33730
+
 
33731
+    exit (status);
 
33732
+}
 
33733
+_LT_EOF
 
33734
+  if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
33735
+  (eval $ac_link) 2>&5
 
33736
+  ac_status=$?
 
33737
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
33738
+  (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
 
33739
+    (./conftest; exit; ) >&5 2>/dev/null
 
33740
+    lt_status=$?
 
33741
+    case x$lt_status in
 
33742
+      x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;;
 
33743
+      x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;;
 
33744
+      x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;;
 
33745
     esac
25230
33746
-    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
25231
33747
-    # soname into executable. Probably we can add versioning support to
25232
33748
-    # collect2, so additional links can be useful in future.
25234
33750
-      # If using run time linking (on AIX 4.2 or later) use lib<name>.so
25235
33751
-      # instead of lib<name>.a to let people know that these are not
25236
33752
-      # typical AIX shared libraries.
25237
 
       library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
33753
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
25238
33754
-    else
25239
33755
-      # We preserve .a as extension for shared libraries through AIX4.2
25240
33756
-      # and later when we are not doing run time linking.
25241
33757
-      library_names_spec='${libname}${release}.a $libname.a'
25242
 
       soname_spec='${libname}${release}${shared_ext}$major'
25243
 
-    fi
 
33758
-      soname_spec='${libname}${release}${shared_ext}$major'
 
33759
+  else :
 
33760
+    # compilation failed
 
33761
+    lt_cv_dlopen_self_static=no
 
33762
+  fi
 
33763
+fi
 
33764
+rm -fr conftest*
 
33765
+
 
33766
+
 
33767
+fi
 
33768
+{ echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5
 
33769
+echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6; }
 
33770
     fi
25244
33771
-    shlibpath_var=LIBPATH
25245
33772
-  fi
25246
33773
-  ;;
25247
 
-
 
33774
 
25248
33775
-amigaos*)
25249
33776
-  library_names_spec='$libname.ixlibrary $libname.a'
25250
33777
-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
25251
33778
-  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
25252
 
+  shlibpath_var=LD_LIBRARY_PATH
25253
 
+  shlibpath_overrides_runpath=yes
25254
 
+  hardcode_into_libs=yes
25255
 
+  # ldd complains unless libraries are executable
25256
 
+  postinstall_cmds='chmod +x $lib'
25257
 
   ;;
 
33779
-  ;;
 
33780
+    CPPFLAGS="$save_CPPFLAGS"
 
33781
+    LDFLAGS="$save_LDFLAGS"
 
33782
+    LIBS="$save_LIBS"
 
33783
+    ;;
 
33784
+  esac
25258
33785
 
25259
33786
-beos*)
25260
33787
-  library_names_spec='${libname}${shared_ext}'
25261
33788
-  dynamic_linker="$host_os ld.so"
25262
33789
-  shlibpath_var=LIBRARY_PATH
25263
 
+sunos4*)
25264
 
+  version_type=sunos
25265
 
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
25266
 
+  finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
25267
 
+  shlibpath_var=LD_LIBRARY_PATH
25268
 
+  shlibpath_overrides_runpath=yes
25269
 
+  if test "$with_gnu_ld" = yes; then
25270
 
+    need_lib_prefix=no
25271
 
+  fi
25272
 
+  need_version=yes
25273
 
   ;;
 
33790
-  ;;
 
33791
+  case $lt_cv_dlopen_self in
 
33792
+  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
 
33793
+  *) enable_dlopen_self=unknown ;;
 
33794
+  esac
25274
33795
 
25275
33796
-bsdi[45]*)
25276
 
+sysv4 | sysv4.3*)
25277
 
   version_type=linux
 
33797
-  version_type=linux
25278
33798
-  need_version=no
25279
 
   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
25280
 
   soname_spec='${libname}${release}${shared_ext}$major'
 
33799
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
33800
-  soname_spec='${libname}${release}${shared_ext}$major'
25281
33801
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
25282
 
   shlibpath_var=LD_LIBRARY_PATH
 
33802
-  shlibpath_var=LD_LIBRARY_PATH
25283
33803
-  sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
25284
33804
-  sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
25285
33805
-  # the default ld.so.conf also contains /usr/contrib/lib and
25286
33806
-  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
25287
33807
-  # libtool to hard-code these into programs
25288
33808
-  ;;
25289
 
-
 
33809
+  case $lt_cv_dlopen_self_static in
 
33810
+  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
 
33811
+  *) enable_dlopen_self_static=unknown ;;
 
33812
+  esac
 
33813
+fi
 
33814
 
25290
33815
-cygwin* | mingw* | pw32*)
25291
33816
-  version_type=windows
25292
33817
-  shrext_cmds=".dll"
25293
33818
-  need_version=no
25294
 
+  case $host_vendor in
25295
 
+    sni)
25296
 
+      shlibpath_overrides_runpath=no
25297
 
   need_lib_prefix=no
25298
 
-
 
33819
-  need_lib_prefix=no
 
33820
 
25299
33821
-  case $GCC,$host_os in
25300
33822
-  yes,cygwin* | yes,mingw* | yes,pw32*)
25301
33823
-    library_names_spec='$libname.dll.a'
25310
33832
-      dlpath=$dir/\$dldll~
25311
33833
-       $rm \$dlpath'
25312
33834
-    shlibpath_overrides_runpath=yes
25313
 
-
 
33835
 
25314
33836
-    case $host_os in
25315
33837
-    cygwin*)
25316
33838
-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
25317
33839
-      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
25318
33840
-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
25319
 
+      runpath_var=LD_RUN_PATH
25320
 
       ;;
 
33841
-      ;;
25321
33842
-    mingw*)
25322
33843
-      # MinGW DLLs use traditional 'lib' prefix
25323
33844
-      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
25333
33854
-      else
25334
33855
-        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
25335
33856
-      fi
25336
 
+    siemens)
25337
 
+      need_lib_prefix=no
25338
 
       ;;
 
33857
-      ;;
25339
33858
-    pw32*)
25340
33859
-      # pw32 DLLs use 'pw' prefix rather than 'lib'
25341
33860
-      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
25342
 
+    motorola)
25343
 
+      need_lib_prefix=no
25344
 
+      need_version=no
25345
 
+      shlibpath_overrides_runpath=no
25346
 
+      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
25347
 
       ;;
25348
 
     esac
25349
 
     ;;
 
33861
-      ;;
 
33862
-    esac
 
33863
-    ;;
25350
33864
 
25351
33865
-  *)
25352
33866
-    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
25355
33869
-  dynamic_linker='Win32 ld.exe'
25356
33870
-  # FIXME: first we should search . and the directory the executable is in
25357
33871
-  shlibpath_var=PATH
25358
 
+sysv4*MP*)
25359
 
+  if test -d /usr/nec ;then
25360
 
+    version_type=linux
25361
 
+    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
25362
 
+    soname_spec='$libname${shared_ext}.$major'
25363
 
+    shlibpath_var=LD_LIBRARY_PATH
25364
 
+  fi
25365
 
   ;;
 
33872
-  ;;
25366
33873
 
25367
33874
-darwin* | rhapsody*)
25368
33875
-  dynamic_linker="$host_os dyld"
25369
33876
-  version_type=darwin
25370
 
+sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
25371
 
+  version_type=freebsd-elf
25372
 
   need_lib_prefix=no
25373
 
   need_version=no
 
33877
-  need_lib_prefix=no
 
33878
-  need_version=no
25374
33879
-  library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext'
25375
33880
-  soname_spec='${libname}${release}${major}$shared_ext'
25376
 
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
25377
 
+  soname_spec='${libname}${release}${shared_ext}$major'
25378
 
+  shlibpath_var=LD_LIBRARY_PATH
25379
 
   shlibpath_overrides_runpath=yes
 
33881
-  shlibpath_overrides_runpath=yes
25380
33882
-  shlibpath_var=DYLD_LIBRARY_PATH
25381
33883
-  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
25382
 
-
 
33884
 
25383
33885
-  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
25384
 
+  hardcode_into_libs=yes
25385
 
+  if test "$with_gnu_ld" = yes; then
25386
 
+    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
25387
 
+  else
25388
 
+    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
25389
 
+    case $host_os in
25390
 
+      sco3.2v5*)
25391
 
+        sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
25392
 
+       ;;
25393
 
+    esac
25394
 
+  fi
25395
 
+  sys_lib_dlsearch_path_spec='/usr/lib'
25396
 
   ;;
 
33886
-  ;;
25397
33887
 
25398
33888
-dgux*)
25399
 
+tpf*)
25400
 
+  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.
25401
 
   version_type=linux
25402
 
   need_lib_prefix=no
25403
 
   need_version=no
 
33889
-  version_type=linux
 
33890
-  need_lib_prefix=no
 
33891
-  need_version=no
25404
33892
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
25405
 
+  library_name_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
25406
 
+  shlibpath_var=LD_LIBRARY_PATH
25407
 
+  shlibpath_overrides_runpath=no
25408
 
+  hardcode_into_libs=yes
25409
 
+  ;;
25410
 
+
25411
 
+uts4*)
25412
 
+  version_type=linux
25413
 
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
25414
 
   soname_spec='${libname}${release}${shared_ext}$major'
25415
 
   shlibpath_var=LD_LIBRARY_PATH
25416
 
   ;;
 
33893
-  soname_spec='${libname}${release}${shared_ext}$major'
 
33894
-  shlibpath_var=LD_LIBRARY_PATH
 
33895
-  ;;
25417
33896
 
25418
33897
-freebsd1*)
25419
 
+*)
25420
 
   dynamic_linker=no
25421
 
   ;;
25422
 
+esac
25423
 
+{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5
25424
 
+echo "${ECHO_T}$dynamic_linker" >&6; }
25425
 
+test "$dynamic_linker" = no && can_build_shared=no
 
33898
-  dynamic_linker=no
 
33899
-  ;;
25426
33900
 
25427
33901
-freebsd* | dragonfly*)
25428
33902
-  # DragonFly does not have aout.  When/if they implement a new
25467
33941
-    ;;
25468
33942
-  esac
25469
33943
-  ;;
25470
 
+variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
25471
 
+if test "$GCC" = yes; then
25472
 
+  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
25473
 
+fi
25474
33944
 
25475
33945
-gnu*)
25476
33946
-  version_type=linux
25481
33951
-  shlibpath_var=LD_LIBRARY_PATH
25482
33952
-  hardcode_into_libs=yes
25483
33953
-  ;;
25484
 
+if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
25485
 
+  sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
25486
 
+fi
25487
 
+if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
25488
 
+  sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
25489
 
+fi
25490
33954
 
25491
33955
-hpux9* | hpux10* | hpux11*)
25492
33956
-  # Give a soname corresponding to the major version so that dld.sl refuses to
25505
33969
-    soname_spec='${libname}${release}${shared_ext}$major'
25506
33970
-    if test "X$HPUX_IA64_MODE" = X32; then
25507
33971
-      sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
25508
 
-    else
 
33972
+
 
33973
+
 
33974
+
 
33975
+
 
33976
+
 
33977
+
 
33978
+striplib=
 
33979
+old_striplib=
 
33980
+{ echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5
 
33981
+echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6; }
 
33982
+if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
 
33983
+  test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
 
33984
+  test -z "$striplib" && striplib="$STRIP --strip-unneeded"
 
33985
+  { echo "$as_me:$LINENO: result: yes" >&5
 
33986
+echo "${ECHO_T}yes" >&6; }
 
33987
+else
 
33988
+# FIXME - insert some real tests, host_os isn't really good enough
 
33989
+  case $host_os in
 
33990
+  darwin*)
 
33991
+    if test -n "$STRIP" ; then
 
33992
+      striplib="$STRIP -x"
 
33993
+      old_striplib="$STRIP -S"
 
33994
+      { echo "$as_me:$LINENO: result: yes" >&5
 
33995
+echo "${ECHO_T}yes" >&6; }
 
33996
     else
25509
33997
-      sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
25510
 
-    fi
 
33998
+      { echo "$as_me:$LINENO: result: no" >&5
 
33999
+echo "${ECHO_T}no" >&6; }
 
34000
     fi
25511
34001
-    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
25512
 
-    ;;
 
34002
     ;;
25513
34003
-   hppa*64*)
25514
34004
-     shrext_cmds='.sl'
25515
34005
-     hardcode_into_libs=yes
25528
34018
-    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
25529
34019
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
25530
34020
-    soname_spec='${libname}${release}${shared_ext}$major'
25531
 
-    ;;
25532
 
-  esac
 
34021
+  *)
 
34022
+    { echo "$as_me:$LINENO: result: no" >&5
 
34023
+echo "${ECHO_T}no" >&6; }
 
34024
     ;;
 
34025
   esac
25533
34026
-  # HP-UX runs *really* slowly unless shared libraries are mode 555.
25534
34027
-  postinstall_cmds='chmod 555 $lib'
25535
34028
-  ;;
 
34029
+fi
25536
34030
 
25537
34031
-interix[3-9]*)
25538
34032
-  version_type=linux
25560
34054
-  need_version=no
25561
34055
-  soname_spec='${libname}${release}${shared_ext}$major'
25562
34056
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
25563
 
-  case $host_os in
 
34057
+
 
34058
+
 
34059
+
 
34060
+
 
34061
+
 
34062
+
 
34063
+
 
34064
+
 
34065
+
 
34066
+
 
34067
+  # Report which library types will actually be built
 
34068
+  { echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5
 
34069
+echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; }
 
34070
+  { echo "$as_me:$LINENO: result: $can_build_shared" >&5
 
34071
+echo "${ECHO_T}$can_build_shared" >&6; }
 
34072
+
 
34073
+  { echo "$as_me:$LINENO: checking whether to build shared libraries" >&5
 
34074
+echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; }
 
34075
+  test "$can_build_shared" = "no" && enable_shared=no
 
34076
+
 
34077
+  # On AIX, shared libraries and static libraries use the same namespace, and
 
34078
+  # are all built from PIC.
 
34079
   case $host_os in
25564
34080
-  irix5* | nonstopux*)
25565
34081
-    libsuff= shlibsuff=
25566
34082
-    ;;
25574
34090
-      libsuff=64 shlibsuff=64 libmagic=64-bit;;
25575
34091
-    *) libsuff= shlibsuff= libmagic=never-match;;
25576
34092
-    esac
25577
 
-    ;;
25578
 
-  esac
 
34093
+  aix3*)
 
34094
+    test "$enable_shared" = yes && enable_static=no
 
34095
+    if test -n "$RANLIB"; then
 
34096
+      archive_cmds="$archive_cmds~\$RANLIB \$lib"
 
34097
+      postinstall_cmds='$RANLIB $lib'
 
34098
+    fi
 
34099
+    ;;
 
34100
+
 
34101
+  aix[4-9]*)
 
34102
+    if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
 
34103
+      test "$enable_shared" = yes && enable_static=no
 
34104
+    fi
 
34105
     ;;
 
34106
   esac
25579
34107
-  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
25580
34108
-  shlibpath_overrides_runpath=no
25581
34109
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
25582
34110
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
25583
34111
-  hardcode_into_libs=yes
25584
34112
-  ;;
 
34113
+  { echo "$as_me:$LINENO: result: $enable_shared" >&5
 
34114
+echo "${ECHO_T}$enable_shared" >&6; }
25585
34115
 
25586
34116
-# No shared lib support for Linux oldld, aout, or coff.
25587
34117
-linux*oldld* | linux*aout* | linux*coff*)
25588
34118
-  dynamic_linker=no
25589
34119
-  ;;
 
34120
+  { echo "$as_me:$LINENO: checking whether to build static libraries" >&5
 
34121
+echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; }
 
34122
+  # Make sure either enable_shared or enable_static is yes.
 
34123
+  test "$enable_shared" = yes || enable_static=yes
 
34124
+  { echo "$as_me:$LINENO: result: $enable_static" >&5
 
34125
+echo "${ECHO_T}$enable_static" >&6; }
25590
34126
 
25591
34127
-# This must be Linux ELF.
25592
34128
-linux* | k*bsd*-gnu)
25637
34173
-  shlibpath_overrides_runpath=yes
25638
34174
-  hardcode_into_libs=yes
25639
34175
-  ;;
 
34176
+fi
 
34177
+ac_ext=c
 
34178
+ac_cpp='$CPP $CPPFLAGS'
 
34179
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
34180
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
34181
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
25640
34182
 
25641
34183
-newsos6)
25642
34184
-  version_type=linux
25644
34186
-  shlibpath_var=LD_LIBRARY_PATH
25645
34187
-  shlibpath_overrides_runpath=yes
25646
34188
-  ;;
 
34189
+CC="$lt_save_CC"
25647
34190
 
25648
34191
-nto-qnx*)
25649
34192
-  version_type=linux
25680
34223
-    shlibpath_overrides_runpath=yes
25681
34224
-  fi
25682
34225
-  ;;
 
34226
+ac_ext=cpp
 
34227
+ac_cpp='$CXXCPP $CPPFLAGS'
 
34228
+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
34229
+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
34230
+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
25683
34231
 
25684
34232
-os2*)
25685
34233
-  libname_spec='$name'
25689
34237
-  dynamic_linker='OS/2 ld.exe'
25690
34238
-  shlibpath_var=LIBPATH
25691
34239
-  ;;
 
34240
+archive_cmds_need_lc_CXX=no
 
34241
+allow_undefined_flag_CXX=
 
34242
+always_export_symbols_CXX=no
 
34243
+archive_expsym_cmds_CXX=
 
34244
+compiler_needs_object_CXX=no
 
34245
+export_dynamic_flag_spec_CXX=
 
34246
+hardcode_direct_CXX=no
 
34247
+hardcode_direct_absolute_CXX=no
 
34248
+hardcode_libdir_flag_spec_CXX=
 
34249
+hardcode_libdir_flag_spec_ld_CXX=
 
34250
+hardcode_libdir_separator_CXX=
 
34251
+hardcode_minus_L_CXX=no
 
34252
+hardcode_shlibpath_var_CXX=unsupported
 
34253
+hardcode_automatic_CXX=no
 
34254
+inherit_rpath_CXX=no
 
34255
+module_cmds_CXX=
 
34256
+module_expsym_cmds_CXX=
 
34257
+link_all_deplibs_CXX=unknown
 
34258
+old_archive_cmds_CXX=$old_archive_cmds
 
34259
+no_undefined_flag_CXX=
 
34260
+whole_archive_flag_spec_CXX=
 
34261
+enable_shared_with_static_runtimes_CXX=no
25692
34262
 
25693
34263
-osf3* | osf4* | osf5*)
25694
34264
-  version_type=osf
25700
34270
-  sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
25701
34271
-  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
25702
34272
-  ;;
 
34273
+# Source file extension for C++ test sources.
 
34274
+ac_ext=cpp
25703
34275
 
25704
34276
-rdos*)
25705
34277
-  dynamic_linker=no
25706
34278
-  ;;
25707
 
-
 
34279
+# Object file extension for compiled C++ test sources.
 
34280
+objext=o
 
34281
+objext_CXX=$objext
 
34282
 
25708
34283
-solaris*)
25709
34284
-  version_type=linux
25710
34285
-  need_lib_prefix=no
25717
34292
-  # ldd complains unless libraries are executable
25718
34293
-  postinstall_cmds='chmod +x $lib'
25719
34294
-  ;;
 
34295
+# No sense in running all these tests if we already determined that
 
34296
+# the CXX compiler isn't working.  Some variables (like enable_shared)
 
34297
+# are currently assumed to apply to all compilers on this platform,
 
34298
+# and will be corrupted by setting them based on a non-working compiler.
 
34299
+if test "$_lt_caught_CXX_error" != yes; then
 
34300
+  # Code to be used in simple compile tests
 
34301
+  lt_simple_compile_test_code="int some_variable = 0;"
25720
34302
 
25721
34303
-sunos4*)
25722
34304
-  version_type=sunos
25729
34311
-  fi
25730
34312
-  need_version=yes
25731
34313
-  ;;
 
34314
+  # Code to be used in simple link tests
 
34315
+  lt_simple_link_test_code='int main(int, char *[]) { return(0); }'
25732
34316
 
25733
34317
-sysv4 | sysv4.3*)
25734
34318
-  version_type=linux
25753
34337
-      ;;
25754
34338
-  esac
25755
34339
-  ;;
 
34340
+  # ltmain only uses $CC for tagged configurations so make sure $CC is set.
25756
34341
 
25757
34342
-sysv4*MP*)
25758
34343
-  if test -d /usr/nec ;then
25774
34359
-  if test "$with_gnu_ld" = yes; then
25775
34360
-    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
25776
34361
-    shlibpath_overrides_runpath=no
25777
 
-  else
 
34362
+
 
34363
+
 
34364
+
 
34365
+
 
34366
+# If no C compiler was specified, use CC.
 
34367
+LTCC=${LTCC-"$CC"}
 
34368
+
 
34369
+# If no C compiler flags were specified, use CFLAGS.
 
34370
+LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
 
34371
+
 
34372
+# Allow CC to be a program name with arguments.
 
34373
+compiler=$CC
 
34374
+
 
34375
+
 
34376
+  # save warnings/boilerplate of simple test code
 
34377
+  ac_outfile=conftest.$ac_objext
 
34378
+echo "$lt_simple_compile_test_code" >conftest.$ac_ext
 
34379
+eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
 
34380
+_lt_compiler_boilerplate=`cat conftest.err`
 
34381
+$RM conftest*
 
34382
+
 
34383
+  ac_outfile=conftest.$ac_objext
 
34384
+echo "$lt_simple_link_test_code" >conftest.$ac_ext
 
34385
+eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
 
34386
+_lt_linker_boilerplate=`cat conftest.err`
 
34387
+$RM -r conftest*
 
34388
+
 
34389
+
 
34390
+  # Allow CC to be a program name with arguments.
 
34391
+  lt_save_CC=$CC
 
34392
+  lt_save_LD=$LD
 
34393
+  lt_save_GCC=$GCC
 
34394
+  GCC=$GXX
 
34395
+  lt_save_with_gnu_ld=$with_gnu_ld
 
34396
+  lt_save_path_LD=$lt_cv_path_LD
 
34397
+  if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
 
34398
+    lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
 
34399
   else
25778
34400
-    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
25779
34401
-    shlibpath_overrides_runpath=yes
25780
34402
-    case $host_os in
25782
34404
-        sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
25783
34405
-       ;;
25784
34406
-    esac
25785
 
-  fi
 
34407
+    $as_unset lt_cv_prog_gnu_ld
 
34408
   fi
25786
34409
-  sys_lib_dlsearch_path_spec='/usr/lib'
25787
34410
-  ;;
 
34411
+  if test -n "${lt_cv_path_LDCXX+set}"; then
 
34412
+    lt_cv_path_LD=$lt_cv_path_LDCXX
 
34413
+  else
 
34414
+    $as_unset lt_cv_path_LD
 
34415
+  fi
 
34416
+  test -z "${LDCXX+set}" || LD=$LDCXX
 
34417
+  CC=${CXX-"c++"}
 
34418
+  compiler=$CC
 
34419
+  compiler_CXX=$CC
 
34420
+  for cc_temp in $compiler""; do
 
34421
+  case $cc_temp in
 
34422
+    compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
 
34423
+    distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
 
34424
+    \-*) ;;
 
34425
+    *) break;;
 
34426
+  esac
 
34427
+done
 
34428
+cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
25788
34429
 
25789
34430
-uts4*)
25790
34431
-  version_type=linux
25797
34438
-  dynamic_linker=no
25798
34439
-  ;;
25799
34440
-esac
25800
 
-{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5
25801
 
-echo "${ECHO_T}$dynamic_linker" >&6; }
 
34441
-{ $as_echo "$as_me:$LINENO: result: $dynamic_linker" >&5
 
34442
-$as_echo "$dynamic_linker" >&6; }
25802
34443
-test "$dynamic_linker" = no && can_build_shared=no
25803
 
 
 
34444
+  if test -n "$compiler"; then
 
34445
+    # We don't want -fno-exception when compiling C++ code, so set the
 
34446
+    # no_builtin_flag separately
 
34447
+    if test "$GXX" = yes; then
 
34448
+      lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin'
 
34449
+    else
 
34450
+      lt_prog_compiler_no_builtin_flag_CXX=
 
34451
+    fi
 
34452
 
 
34453
-if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
 
34454
-  $as_echo_n "(cached) " >&6
 
34455
-else
 
34456
-  lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec"
 
34457
-fi
 
34458
+    if test "$GXX" = yes; then
 
34459
+      # Set up default GNU C++ configuration
 
34460
 
 
34461
-sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
 
34462
-if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
 
34463
-  $as_echo_n "(cached) " >&6
 
34464
+
 
34465
+
 
34466
+# Check whether --with-gnu-ld was given.
 
34467
+if test "${with_gnu_ld+set}" = set; then
 
34468
+  withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes
 
34469
 else
 
34470
-  lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec"
 
34471
+  with_gnu_ld=no
 
34472
 fi
 
34473
 
 
34474
-sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
 
34475
-
25804
34476
-variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
25805
 
-if test "$GCC" = yes; then
 
34477
+ac_prog=ld
 
34478
 if test "$GCC" = yes; then
25806
34479
-  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
25807
 
-fi
25808
 
 
25809
 
-{ echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
25810
 
-echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; }
 
34480
+  # Check if gcc -print-prog-name=ld gives a path.
 
34481
+  { echo "$as_me:$LINENO: checking for ld used by $CC" >&5
 
34482
+echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; }
 
34483
+  case $host in
 
34484
+  *-*-mingw*)
 
34485
+    # gcc leaves a trailing carriage return which upsets mingw
 
34486
+    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
 
34487
+  *)
 
34488
+    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
 
34489
+  esac
 
34490
+  case $ac_prog in
 
34491
+    # Accept absolute paths.
 
34492
+    [\\/]* | ?:[\\/]*)
 
34493
+      re_direlt='/[^/][^/]*/\.\./'
 
34494
+      # Canonicalize the pathname of ld
 
34495
+      ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
 
34496
+      while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
 
34497
+       ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
 
34498
+      done
 
34499
+      test -z "$LD" && LD="$ac_prog"
 
34500
+      ;;
 
34501
+  "")
 
34502
+    # If it fails, then pretend we aren't using GCC.
 
34503
+    ac_prog=ld
 
34504
+    ;;
 
34505
+  *)
 
34506
+    # If it is relative, then search for the first ld in PATH.
 
34507
+    with_gnu_ld=unknown
 
34508
+    ;;
 
34509
+  esac
 
34510
+elif test "$with_gnu_ld" = yes; then
 
34511
+  { echo "$as_me:$LINENO: checking for GNU ld" >&5
 
34512
+echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; }
 
34513
+else
 
34514
+  { echo "$as_me:$LINENO: checking for non-GNU ld" >&5
 
34515
+echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; }
 
34516
 fi
 
34517
-
 
34518
-{ $as_echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
 
34519
-$as_echo_n "checking how to hardcode library paths into programs... " >&6; }
25811
34520
-hardcode_action_CXX=
25812
34521
-if test -n "$hardcode_libdir_flag_spec_CXX" || \
25813
34522
-   test -n "$runpath_var_CXX" || \
25814
34523
-   test "X$hardcode_automatic_CXX" = "Xyes" ; then
25815
 
 
 
34524
-
25816
34525
-  # We can hardcode non-existant directories.
25817
34526
-  if test "$hardcode_direct_CXX" != no &&
25818
34527
-     # If the only mechanism to avoid hardcoding is shlibpath_var, we
25826
34535
-    # We can link without hardcoding, and we can hardcode nonexisting dirs.
25827
34536
-    hardcode_action_CXX=immediate
25828
34537
-  fi
25829
 
-else
 
34538
+if test "${lt_cv_path_LD+set}" = set; then
 
34539
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
34540
 else
25830
34541
-  # We cannot hardcode anything, or else we can only hardcode existing
25831
34542
-  # directories.
25832
34543
-  hardcode_action_CXX=unsupported
25833
 
-fi
25834
 
-{ echo "$as_me:$LINENO: result: $hardcode_action_CXX" >&5
25835
 
-echo "${ECHO_T}$hardcode_action_CXX" >&6; }
25836
 
 
 
34544
+  if test -z "$LD"; then
 
34545
+  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
 
34546
+  for ac_dir in $PATH; do
 
34547
+    IFS="$lt_save_ifs"
 
34548
+    test -z "$ac_dir" && ac_dir=.
 
34549
+    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
 
34550
+      lt_cv_path_LD="$ac_dir/$ac_prog"
 
34551
+      # Check to see if the program is GNU ld.  I'd rather use --version,
 
34552
+      # but apparently some variants of GNU ld only accept -v.
 
34553
+      # Break only if it was the GNU/non-GNU ld that we prefer.
 
34554
+      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
 
34555
+      *GNU* | *'with BFD'*)
 
34556
+       test "$with_gnu_ld" != no && break
 
34557
+       ;;
 
34558
+      *)
 
34559
+       test "$with_gnu_ld" != yes && break
 
34560
+       ;;
 
34561
+      esac
 
34562
+    fi
 
34563
+  done
 
34564
+  IFS="$lt_save_ifs"
 
34565
+else
 
34566
+  lt_cv_path_LD="$LD" # Let the user override the test with a path.
 
34567
 fi
 
34568
-{ $as_echo "$as_me:$LINENO: result: $hardcode_action_CXX" >&5
 
34569
-$as_echo "$hardcode_action_CXX" >&6; }
 
34570
-
25837
34571
-if test "$hardcode_action_CXX" = relink; then
25838
34572
-  # Fast installation is not supported
25839
34573
-  enable_fast_install=no
25841
34575
-     test "$enable_shared" = no; then
25842
34576
-  # Fast installation is not necessary
25843
34577
-  enable_fast_install=needless
25844
 
-fi
 
34578
 fi
25845
34579
 
 
34580
+LD="$lt_cv_path_LD"
 
34581
+if test -n "$LD"; then
 
34582
+  { echo "$as_me:$LINENO: result: $LD" >&5
 
34583
+echo "${ECHO_T}$LD" >&6; }
 
34584
+else
 
34585
+  { echo "$as_me:$LINENO: result: no" >&5
 
34586
+echo "${ECHO_T}no" >&6; }
 
34587
+fi
 
34588
+test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
 
34589
+echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
 
34590
+   { (exit 1); exit 1; }; }
 
34591
+{ echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
 
34592
+echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; }
 
34593
+if test "${lt_cv_prog_gnu_ld+set}" = set; then
 
34594
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
34595
+else
 
34596
+  # I'd rather use --version here, but apparently some GNU lds only accept -v.
 
34597
+case `$LD -v 2>&1 </dev/null` in
 
34598
+*GNU* | *'with BFD'*)
 
34599
+  lt_cv_prog_gnu_ld=yes
 
34600
+  ;;
 
34601
+*)
 
34602
+  lt_cv_prog_gnu_ld=no
 
34603
+  ;;
 
34604
+esac
 
34605
+fi
 
34606
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5
 
34607
+echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; }
 
34608
+with_gnu_ld=$lt_cv_prog_gnu_ld
25846
34609
 
25847
34610
-# The else clause should only fire when bootstrapping the
25848
34611
-# libtool distribution, otherwise you forgot to ship ltmain.sh
25884
34647
-    predeps_CXX \
25885
34648
-    postdeps_CXX \
25886
34649
-    compiler_lib_search_path_CXX \
 
34650
-    compiler_lib_search_dirs_CXX \
25887
34651
-    archive_cmds_CXX \
25888
34652
-    archive_expsym_cmds_CXX \
25889
34653
-    postinstall_cmds_CXX \
25924
34688
-      ;;
25925
34689
-    esac
25926
34690
-  done
25927
 
 
 
34691
-
25928
34692
-  case $lt_echo in
25929
34693
-  *'\$0 --fallback-echo"')
25930
34694
-    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
25946
34710
 
25947
34711
-# Whether or not to build static libraries.
25948
34712
-build_old_libs=$enable_static
 
34713
+      # Check if GNU C++ uses GNU ld as the underlying linker, since the
 
34714
+      # archiving commands below assume that GNU ld is being used.
 
34715
+      if test "$with_gnu_ld" = yes; then
 
34716
+        archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
34717
+        archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
 
34718
+
 
34719
+        hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
 
34720
+        export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
 
34721
+
 
34722
+        # If archive_cmds runs LD, not CC, wlarc should be empty
 
34723
+        # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
 
34724
+        #     investigate it a little bit more. (MM)
 
34725
+        wlarc='${wl}'
 
34726
+
 
34727
+        # ancient GNU ld didn't support --whole-archive et. al.
 
34728
+        if eval "`$CC -print-prog-name=ld` --help 2>&1" |
 
34729
+         $GREP 'no-whole-archive' > /dev/null; then
 
34730
+          whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
 
34731
+        else
 
34732
+          whole_archive_flag_spec_CXX=
 
34733
+        fi
 
34734
+      else
 
34735
+        with_gnu_ld=no
 
34736
+        wlarc=
25949
34737
 
25950
34738
-# Whether or not to add -lc for building shared libraries.
25951
34739
-build_libtool_need_lc=$archive_cmds_need_lc_CXX
 
34740
+        # A generic and very simple default shared library creation
 
34741
+        # command for GNU C++ for the case where it uses the native
 
34742
+        # linker, instead of GNU ld.  If possible, this setting should
 
34743
+        # overridden to take advantage of the native linker features on
 
34744
+        # the platform it is being used on.
 
34745
+        archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
 
34746
+      fi
25952
34747
 
25953
34748
-# Whether or not to disallow shared libs when runtime libs are static
25954
34749
-allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX
 
34750
+      # Commands to make compiler produce verbose output that lists
 
34751
+      # what "hidden" libraries, object files and flags are used when
 
34752
+      # linking a shared library.
 
34753
+      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"'
25955
34754
 
25956
34755
-# Whether or not to optimize for fast installation.
25957
34756
-fast_install=$enable_fast_install
 
34757
+    else
 
34758
+      GXX=no
 
34759
+      with_gnu_ld=no
 
34760
+      wlarc=
 
34761
+    fi
25958
34762
 
25959
34763
-# The host system.
25960
34764
-host_alias=$host_alias
25961
34765
-host=$host
25962
34766
-host_os=$host_os
 
34767
+    # PORTME: fill in a description of your system's C++ link characteristics
 
34768
+    { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
 
34769
+echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; }
 
34770
+    ld_shlibs_CXX=yes
 
34771
+    case $host_os in
 
34772
+      aix3*)
 
34773
+        # FIXME: insert proper C++ library support
 
34774
+        ld_shlibs_CXX=no
 
34775
+        ;;
 
34776
+      aix[4-9]*)
 
34777
+        if test "$host_cpu" = ia64; then
 
34778
+          # On IA64, the linker does run time linking by default, so we don't
 
34779
+          # have to do anything special.
 
34780
+          aix_use_runtimelinking=no
 
34781
+          exp_sym_flag='-Bexport'
 
34782
+          no_entry_flag=""
 
34783
+        else
 
34784
+          aix_use_runtimelinking=no
25963
34785
 
25964
34786
-# The build system.
25965
34787
-build_alias=$build_alias
25966
34788
-build=$build
25967
34789
-build_os=$build_os
 
34790
+          # Test if we are trying to use run time linking or normal
 
34791
+          # AIX style linking. If -brtl is somewhere in LDFLAGS, we
 
34792
+          # need to do runtime linking.
 
34793
+          case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)
 
34794
+           for ld_flag in $LDFLAGS; do
 
34795
+             case $ld_flag in
 
34796
+             *-brtl*)
 
34797
+               aix_use_runtimelinking=yes
 
34798
+               break
 
34799
+               ;;
 
34800
+             esac
 
34801
+           done
 
34802
+           ;;
 
34803
+          esac
25968
34804
 
25969
34805
-# An echo program that does not interpret backslashes.
25970
34806
-echo=$lt_echo
 
34807
+          exp_sym_flag='-bexport'
 
34808
+          no_entry_flag='-bnoentry'
 
34809
+        fi
25971
34810
 
25972
34811
-# The archiver.
25973
34812
-AR=$lt_AR
25974
34813
-AR_FLAGS=$lt_AR_FLAGS
 
34814
+        # When large executables or shared objects are built, AIX ld can
 
34815
+        # have problems creating the table of contents.  If linking a library
 
34816
+        # or program results in "error TOC overflow" add -mminimal-toc to
 
34817
+        # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
 
34818
+        # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
 
34819
+
 
34820
+        archive_cmds_CXX=''
 
34821
+        hardcode_direct_CXX=yes
 
34822
+        hardcode_direct_absolute_CXX=yes
 
34823
+        hardcode_libdir_separator_CXX=':'
 
34824
+        link_all_deplibs_CXX=yes
 
34825
+        file_list_spec_CXX='${wl}-f,'
 
34826
+
 
34827
+        if test "$GXX" = yes; then
 
34828
+          case $host_os in aix4.[012]|aix4.[012].*)
 
34829
+          # We only want to do this on AIX 4.2 and lower, the check
 
34830
+          # below for broken collect2 doesn't work under 4.3+
 
34831
+         collect2name=`${CC} -print-prog-name=collect2`
 
34832
+         if test -f "$collect2name" &&
 
34833
+            strings "$collect2name" | $GREP resolve_lib_name >/dev/null
 
34834
+         then
 
34835
+           # We have reworked collect2
 
34836
+           :
 
34837
+         else
 
34838
+           # We have old collect2
 
34839
+           hardcode_direct_CXX=unsupported
 
34840
+           # It fails to find uninstalled libraries when the uninstalled
 
34841
+           # path is not listed in the libpath.  Setting hardcode_minus_L
 
34842
+           # to unsupported forces relinking
 
34843
+           hardcode_minus_L_CXX=yes
 
34844
+           hardcode_libdir_flag_spec_CXX='-L$libdir'
 
34845
+           hardcode_libdir_separator_CXX=
 
34846
+         fi
 
34847
+          esac
 
34848
+          shared_flag='-shared'
 
34849
+         if test "$aix_use_runtimelinking" = yes; then
 
34850
+           shared_flag="$shared_flag "'${wl}-G'
 
34851
+         fi
 
34852
+        else
 
34853
+          # not using gcc
 
34854
+          if test "$host_cpu" = ia64; then
 
34855
+         # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
 
34856
+         # chokes on -Wl,-G. The following line is correct:
 
34857
+         shared_flag='-G'
 
34858
+          else
 
34859
+           if test "$aix_use_runtimelinking" = yes; then
 
34860
+             shared_flag='${wl}-G'
 
34861
+           else
 
34862
+             shared_flag='${wl}-bM:SRE'
 
34863
+           fi
 
34864
+          fi
 
34865
+        fi
25975
34866
 
25976
34867
-# A C compiler.
25977
34868
-LTCC=$lt_LTCC
 
34869
+        # It seems that -bexpall does not export symbols beginning with
 
34870
+        # underscore (_), so it is better to generate a list of symbols to
 
34871
+       # export.
 
34872
+        always_export_symbols_CXX=yes
 
34873
+        if test "$aix_use_runtimelinking" = yes; then
 
34874
+          # Warning - without using the other runtime loading flags (-brtl),
 
34875
+          # -berok will link without error, but may produce a broken library.
 
34876
+          allow_undefined_flag_CXX='-berok'
 
34877
+          # Determine the default libpath from the value encoded in an empty
 
34878
+          # executable.
 
34879
+          cat >conftest.$ac_ext <<_ACEOF
 
34880
+/* confdefs.h.  */
 
34881
+_ACEOF
 
34882
+cat confdefs.h >>conftest.$ac_ext
 
34883
+cat >>conftest.$ac_ext <<_ACEOF
 
34884
+/* end confdefs.h.  */
25978
34885
 
25979
34886
-# LTCC compiler flags.
25980
34887
-LTCFLAGS=$lt_LTCFLAGS
 
34888
+int
 
34889
+main ()
 
34890
+{
25981
34891
 
25982
34892
-# A language-specific compiler.
25983
34893
-CC=$lt_compiler_CXX
 
34894
+  ;
 
34895
+  return 0;
 
34896
+}
 
34897
+_ACEOF
 
34898
+rm -f conftest.$ac_objext conftest$ac_exeext
 
34899
+if { (ac_try="$ac_link"
 
34900
+case "(($ac_try" in
 
34901
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
34902
+  *) ac_try_echo=$ac_try;;
 
34903
+esac
 
34904
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
34905
+  (eval "$ac_link") 2>conftest.er1
 
34906
+  ac_status=$?
 
34907
+  grep -v '^ *+' conftest.er1 >conftest.err
 
34908
+  rm -f conftest.er1
 
34909
+  cat conftest.err >&5
 
34910
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
34911
+  (exit $ac_status); } && {
 
34912
+        test -z "$ac_cxx_werror_flag" ||
 
34913
+        test ! -s conftest.err
 
34914
+       } && test -s conftest$ac_exeext &&
 
34915
+       $as_test_x conftest$ac_exeext; then
25984
34916
 
25985
34917
-# Is the compiler the GNU C compiler?
25986
34918
-with_gcc=$GCC_CXX
 
34919
+lt_aix_libpath_sed='
 
34920
+    /Import File Strings/,/^$/ {
 
34921
+       /^0/ {
 
34922
+           s/^0  *\(.*\)$/\1/
 
34923
+           p
 
34924
+       }
 
34925
+    }'
 
34926
+aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
 
34927
+# Check for a 64-bit object if we didn't find anything.
 
34928
+if test -z "$aix_libpath"; then
 
34929
+  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
 
34930
+fi
 
34931
+else
 
34932
+  echo "$as_me: failed program was:" >&5
 
34933
+sed 's/^/| /' conftest.$ac_ext >&5
25987
34934
 
25988
34935
-# An ERE matcher.
25989
34936
-EGREP=$lt_EGREP
25990
34937
 
25991
34938
-# The linker used to build libraries.
25992
34939
-LD=$lt_LD_CXX
 
34940
+fi
25993
34941
 
25994
34942
-# Whether we need hard or soft links.
25995
34943
-LN_S=$lt_LN_S
 
34944
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
34945
+      conftest$ac_exeext conftest.$ac_ext
 
34946
+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
25996
34947
 
25997
34948
-# A BSD-compatible nm program.
25998
34949
-NM=$lt_NM
 
34950
+          hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath"
25999
34951
 
26000
34952
-# A symbol stripping program
26001
34953
-STRIP=$lt_STRIP
 
34954
+          archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
 
34955
+        else
 
34956
+          if test "$host_cpu" = ia64; then
 
34957
+           hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib'
 
34958
+           allow_undefined_flag_CXX="-z nodefs"
 
34959
+           archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
 
34960
+          else
 
34961
+           # Determine the default libpath from the value encoded in an
 
34962
+           # empty executable.
 
34963
+           cat >conftest.$ac_ext <<_ACEOF
 
34964
+/* confdefs.h.  */
 
34965
+_ACEOF
 
34966
+cat confdefs.h >>conftest.$ac_ext
 
34967
+cat >>conftest.$ac_ext <<_ACEOF
 
34968
+/* end confdefs.h.  */
26002
34969
 
26003
34970
-# Used to examine libraries when file_magic_cmd begins "file"
26004
34971
-MAGIC_CMD=$MAGIC_CMD
 
34972
+int
 
34973
+main ()
 
34974
+{
26005
34975
 
26006
34976
-# Used on cygwin: DLL creation program.
26007
34977
-DLLTOOL="$DLLTOOL"
 
34978
+  ;
 
34979
+  return 0;
 
34980
+}
 
34981
+_ACEOF
 
34982
+rm -f conftest.$ac_objext conftest$ac_exeext
 
34983
+if { (ac_try="$ac_link"
 
34984
+case "(($ac_try" in
 
34985
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
34986
+  *) ac_try_echo=$ac_try;;
 
34987
+esac
 
34988
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
34989
+  (eval "$ac_link") 2>conftest.er1
 
34990
+  ac_status=$?
 
34991
+  grep -v '^ *+' conftest.er1 >conftest.err
 
34992
+  rm -f conftest.er1
 
34993
+  cat conftest.err >&5
 
34994
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
34995
+  (exit $ac_status); } && {
 
34996
+        test -z "$ac_cxx_werror_flag" ||
 
34997
+        test ! -s conftest.err
 
34998
+       } && test -s conftest$ac_exeext &&
 
34999
+       $as_test_x conftest$ac_exeext; then
26008
35000
 
26009
35001
-# Used on cygwin: object dumper.
26010
35002
-OBJDUMP="$OBJDUMP"
 
35003
+lt_aix_libpath_sed='
 
35004
+    /Import File Strings/,/^$/ {
 
35005
+       /^0/ {
 
35006
+           s/^0  *\(.*\)$/\1/
 
35007
+           p
 
35008
+       }
 
35009
+    }'
 
35010
+aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
 
35011
+# Check for a 64-bit object if we didn't find anything.
 
35012
+if test -z "$aix_libpath"; then
 
35013
+  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
 
35014
+fi
 
35015
+else
 
35016
+  echo "$as_me: failed program was:" >&5
 
35017
+sed 's/^/| /' conftest.$ac_ext >&5
26011
35018
 
26012
35019
-# Used on cygwin: assembler.
26013
35020
-AS="$AS"
26014
35021
 
26015
35022
-# The name of the directory that contains temporary libtool files.
26016
35023
-objdir=$objdir
 
35024
+fi
26017
35025
 
26018
35026
-# How to create reloadable object files.
26019
35027
-reload_flag=$lt_reload_flag
26020
35028
-reload_cmds=$lt_reload_cmds
 
35029
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
35030
+      conftest$ac_exeext conftest.$ac_ext
 
35031
+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
26021
35032
 
26022
35033
-# How to pass a linker flag through the compiler.
26023
35034
-wl=$lt_lt_prog_compiler_wl_CXX
 
35035
+           hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath"
 
35036
+           # Warning - without using the other run time loading flags,
 
35037
+           # -berok will link without error, but may produce a broken library.
 
35038
+           no_undefined_flag_CXX=' ${wl}-bernotok'
 
35039
+           allow_undefined_flag_CXX=' ${wl}-berok'
 
35040
+           # Exported symbols can be pulled into shared objects from archives
 
35041
+           whole_archive_flag_spec_CXX='$convenience'
 
35042
+           archive_cmds_need_lc_CXX=yes
 
35043
+           # This is similar to how AIX traditionally builds its shared
 
35044
+           # libraries.
 
35045
+           archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
 
35046
+          fi
 
35047
+        fi
 
35048
+        ;;
26024
35049
 
26025
35050
-# Object file suffix (normally "o").
26026
35051
-objext="$ac_objext"
 
35052
+      beos*)
 
35053
+       if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
 
35054
+         allow_undefined_flag_CXX=unsupported
 
35055
+         # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
 
35056
+         # support --undefined.  This deserves some investigation.  FIXME
 
35057
+         archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
35058
+       else
 
35059
+         ld_shlibs_CXX=no
 
35060
+       fi
 
35061
+       ;;
26027
35062
 
26028
35063
-# Old archive suffix (normally "a").
26029
35064
-libext="$libext"
 
35065
+      chorus*)
 
35066
+        case $cc_basename in
 
35067
+          *)
 
35068
+         # FIXME: insert proper C++ library support
 
35069
+         ld_shlibs_CXX=no
 
35070
+         ;;
 
35071
+        esac
 
35072
+        ;;
26030
35073
 
26031
35074
-# Shared library suffix (normally ".so").
26032
35075
-shrext_cmds='$shrext_cmds'
 
35076
+      cygwin* | mingw* | pw32*)
 
35077
+        # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless,
 
35078
+        # as there is no search path for DLLs.
 
35079
+        hardcode_libdir_flag_spec_CXX='-L$libdir'
 
35080
+        allow_undefined_flag_CXX=unsupported
 
35081
+        always_export_symbols_CXX=no
 
35082
+        enable_shared_with_static_runtimes_CXX=yes
 
35083
+
 
35084
+        if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
 
35085
+          archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
 
35086
+          # If the export-symbols file already is a .def file (1st line
 
35087
+          # is EXPORTS), use it as is; otherwise, prepend...
 
35088
+          archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
 
35089
+           cp $export_symbols $output_objdir/$soname.def;
 
35090
+          else
 
35091
+           echo EXPORTS > $output_objdir/$soname.def;
 
35092
+           cat $export_symbols >> $output_objdir/$soname.def;
 
35093
+          fi~
 
35094
+          $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
 
35095
+        else
 
35096
+          ld_shlibs_CXX=no
 
35097
+        fi
 
35098
+        ;;
 
35099
+      darwin* | rhapsody*)
26033
35100
 
26034
35101
-# Executable file suffix (normally "").
26035
35102
-exeext="$exeext"
26037
35104
-# Additional compiler flags for building library objects.
26038
35105
-pic_flag=$lt_lt_prog_compiler_pic_CXX
26039
35106
-pic_mode=$pic_mode
 
35107
+  archive_cmds_need_lc_CXX=no
 
35108
+  hardcode_direct_CXX=no
 
35109
+  hardcode_automatic_CXX=yes
 
35110
+  hardcode_shlibpath_var_CXX=unsupported
 
35111
+  whole_archive_flag_spec_CXX=''
 
35112
+  link_all_deplibs_CXX=yes
 
35113
+  allow_undefined_flag_CXX="$_lt_dar_allow_undefined"
 
35114
+  if test "$GCC" = "yes"; then
 
35115
+    output_verbose_link_cmd=echo
 
35116
+    archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
 
35117
+    module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
 
35118
+    archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
 
35119
+    module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
 
35120
+       if test "$lt_cv_apple_cc_single_mod" != "yes"; then
 
35121
+      archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}"
 
35122
+      archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}"
 
35123
+    fi
26040
35124
 
26041
35125
-# What is the maximum length of a command?
26042
35126
-max_cmd_len=$lt_cv_sys_max_cmd_len
 
35127
+  else
 
35128
+  ld_shlibs_CXX=no
 
35129
+  fi
26043
35130
 
26044
35131
-# Does compiler simultaneously support -c and -o options?
26045
35132
-compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX
 
35133
+       ;;
26046
35134
 
26047
35135
-# Must we lock files when doing compilation?
26048
35136
-need_locks=$lt_need_locks
 
35137
+      dgux*)
 
35138
+        case $cc_basename in
 
35139
+          ec++*)
 
35140
+           # FIXME: insert proper C++ library support
 
35141
+           ld_shlibs_CXX=no
 
35142
+           ;;
 
35143
+          ghcx*)
 
35144
+           # Green Hills C++ Compiler
 
35145
+           # FIXME: insert proper C++ library support
 
35146
+           ld_shlibs_CXX=no
 
35147
+           ;;
 
35148
+          *)
 
35149
+           # FIXME: insert proper C++ library support
 
35150
+           ld_shlibs_CXX=no
 
35151
+           ;;
 
35152
+        esac
 
35153
+        ;;
26049
35154
 
26050
35155
-# Do we need the lib prefix for modules?
26051
35156
-need_lib_prefix=$need_lib_prefix
 
35157
+      freebsd[12]*)
 
35158
+        # C++ shared libraries reported to be fairly broken before
 
35159
+       # switch to ELF
 
35160
+        ld_shlibs_CXX=no
 
35161
+        ;;
26052
35162
 
26053
35163
-# Do we need a version for libraries?
26054
35164
-need_version=$need_version
 
35165
+      freebsd-elf*)
 
35166
+        archive_cmds_need_lc_CXX=no
 
35167
+        ;;
26055
35168
 
26056
35169
-# Whether dlopen is supported.
26057
35170
-dlopen_support=$enable_dlopen
 
35171
+      freebsd* | dragonfly*)
 
35172
+        # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
 
35173
+        # conventions
 
35174
+        ld_shlibs_CXX=yes
 
35175
+        ;;
26058
35176
 
26059
35177
-# Whether dlopen of programs is supported.
26060
35178
-dlopen_self=$enable_dlopen_self
 
35179
+      gnu*)
 
35180
+        ;;
26061
35181
 
26062
35182
-# Whether dlopen of statically linked programs is supported.
26063
35183
-dlopen_self_static=$enable_dlopen_self_static
 
35184
+      hpux9*)
 
35185
+        hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir'
 
35186
+        hardcode_libdir_separator_CXX=:
 
35187
+        export_dynamic_flag_spec_CXX='${wl}-E'
 
35188
+        hardcode_direct_CXX=yes
 
35189
+        hardcode_minus_L_CXX=yes # Not in the search PATH,
 
35190
+                                            # but as the default
 
35191
+                                            # location of the library.
 
35192
+
 
35193
+        case $cc_basename in
 
35194
+          CC*)
 
35195
+            # FIXME: insert proper C++ library support
 
35196
+            ld_shlibs_CXX=no
 
35197
+            ;;
 
35198
+          aCC*)
 
35199
+            archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
 
35200
+            # Commands to make compiler produce verbose output that lists
 
35201
+            # what "hidden" libraries, object files and flags are used when
 
35202
+            # linking a shared library.
 
35203
+            #
 
35204
+            # There doesn't appear to be a way to prevent this compiler from
 
35205
+            # explicitly linking system object files so we need to strip them
 
35206
+            # from the output so that they don't get included in the library
 
35207
+            # dependencies.
 
35208
+            output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed'
 
35209
+            ;;
 
35210
+          *)
 
35211
+            if test "$GXX" = yes; then
 
35212
+              archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
 
35213
+            else
 
35214
+              # FIXME: insert proper C++ library support
 
35215
+              ld_shlibs_CXX=no
 
35216
+            fi
 
35217
+            ;;
 
35218
+        esac
 
35219
+        ;;
26064
35220
 
26065
35221
-# Compiler flag to prevent dynamic linking.
26066
35222
-link_static_flag=$lt_lt_prog_compiler_static_CXX
 
35223
+      hpux10*|hpux11*)
 
35224
+        if test $with_gnu_ld = no; then
 
35225
+         hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir'
 
35226
+         hardcode_libdir_separator_CXX=:
26067
35227
 
26068
35228
-# Compiler flag to turn off builtin functions.
26069
35229
-no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX
 
35230
+          case $host_cpu in
 
35231
+            hppa*64*|ia64*)
 
35232
+              ;;
 
35233
+            *)
 
35234
+             export_dynamic_flag_spec_CXX='${wl}-E'
 
35235
+              ;;
 
35236
+          esac
 
35237
+        fi
 
35238
+        case $host_cpu in
 
35239
+          hppa*64*|ia64*)
 
35240
+            hardcode_direct_CXX=no
 
35241
+            hardcode_shlibpath_var_CXX=no
 
35242
+            ;;
 
35243
+          *)
 
35244
+            hardcode_direct_CXX=yes
 
35245
+            hardcode_direct_absolute_CXX=yes
 
35246
+            hardcode_minus_L_CXX=yes # Not in the search PATH,
 
35247
+                                                # but as the default
 
35248
+                                                # location of the library.
 
35249
+            ;;
 
35250
+        esac
 
35251
+
 
35252
+        case $cc_basename in
 
35253
+          CC*)
 
35254
+           # FIXME: insert proper C++ library support
 
35255
+           ld_shlibs_CXX=no
 
35256
+           ;;
 
35257
+          aCC*)
 
35258
+           case $host_cpu in
 
35259
+             hppa*64*)
 
35260
+               archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
 
35261
+               ;;
 
35262
+             ia64*)
 
35263
+               archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
 
35264
+               ;;
 
35265
+             *)
 
35266
+               archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
 
35267
+               ;;
 
35268
+           esac
 
35269
+           # Commands to make compiler produce verbose output that lists
 
35270
+           # what "hidden" libraries, object files and flags are used when
 
35271
+           # linking a shared library.
 
35272
+           #
 
35273
+           # There doesn't appear to be a way to prevent this compiler from
 
35274
+           # explicitly linking system object files so we need to strip them
 
35275
+           # from the output so that they don't get included in the library
 
35276
+           # dependencies.
 
35277
+           output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed'
 
35278
+           ;;
 
35279
+          *)
 
35280
+           if test "$GXX" = yes; then
 
35281
+             if test $with_gnu_ld = no; then
 
35282
+               case $host_cpu in
 
35283
+                 hppa*64*)
 
35284
+                   archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
 
35285
+                   ;;
 
35286
+                 ia64*)
 
35287
+                   archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
 
35288
+                   ;;
 
35289
+                 *)
 
35290
+                   archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
 
35291
+                   ;;
 
35292
+               esac
 
35293
+             fi
 
35294
+           else
 
35295
+             # FIXME: insert proper C++ library support
 
35296
+             ld_shlibs_CXX=no
 
35297
+           fi
 
35298
+           ;;
 
35299
+        esac
 
35300
+        ;;
26070
35301
 
26071
35302
-# Compiler flag to allow reflexive dlopens.
26072
35303
-export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX
 
35304
+      interix[3-9]*)
 
35305
+       hardcode_direct_CXX=no
 
35306
+       hardcode_shlibpath_var_CXX=no
 
35307
+       hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
 
35308
+       export_dynamic_flag_spec_CXX='${wl}-E'
 
35309
+       # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
 
35310
+       # Instead, shared libraries are loaded at an image base (0x10000000 by
 
35311
+       # default) and relocated if they conflict, which is a slow very memory
 
35312
+       # consuming and fragmenting process.  To avoid this, we pick a random,
 
35313
+       # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
 
35314
+       # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
 
35315
+       archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
 
35316
+       archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
 
35317
+       ;;
 
35318
+      irix5* | irix6*)
 
35319
+        case $cc_basename in
 
35320
+          CC*)
 
35321
+           # SGI C++
 
35322
+           archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
 
35323
+
 
35324
+           # Archives containing C++ object files must be created using
 
35325
+           # "CC -ar", where "CC" is the IRIX C++ compiler.  This is
 
35326
+           # necessary to make sure instantiated templates are included
 
35327
+           # in the archive.
 
35328
+           old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs'
 
35329
+           ;;
 
35330
+          *)
 
35331
+           if test "$GXX" = yes; then
 
35332
+             if test "$with_gnu_ld" = no; then
 
35333
+               archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
 
35334
+             else
 
35335
+               archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` -o $lib'
 
35336
+             fi
 
35337
+           fi
 
35338
+           link_all_deplibs_CXX=yes
 
35339
+           ;;
 
35340
+        esac
 
35341
+        hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
 
35342
+        hardcode_libdir_separator_CXX=:
 
35343
+        inherit_rpath_CXX=yes
 
35344
+        ;;
26073
35345
 
26074
35346
-# Compiler flag to generate shared objects directly from archives.
26075
35347
-whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX
 
35348
+      linux* | k*bsd*-gnu)
 
35349
+        case $cc_basename in
 
35350
+          KCC*)
 
35351
+           # Kuck and Associates, Inc. (KAI) C++ Compiler
 
35352
+
 
35353
+           # KCC will only create a shared library if the output file
 
35354
+           # ends with ".so" (or ".sl" for HP-UX), so rename the library
 
35355
+           # to its proper name (with version) after linking.
 
35356
+           archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
 
35357
+           archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib'
 
35358
+           # Commands to make compiler produce verbose output that lists
 
35359
+           # what "hidden" libraries, object files and flags are used when
 
35360
+           # linking a shared library.
 
35361
+           #
 
35362
+           # There doesn't appear to be a way to prevent this compiler from
 
35363
+           # explicitly linking system object files so we need to strip them
 
35364
+           # from the output so that they don't get included in the library
 
35365
+           # dependencies.
 
35366
+           output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed'
 
35367
+
 
35368
+           hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
 
35369
+           export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
 
35370
+
 
35371
+           # Archives containing C++ object files must be created using
 
35372
+           # "CC -Bstatic", where "CC" is the KAI C++ compiler.
 
35373
+           old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs'
 
35374
+           ;;
 
35375
+         icpc* | ecpc* )
 
35376
+           # Intel C++
 
35377
+           with_gnu_ld=yes
 
35378
+           # version 8.0 and above of icpc choke on multiply defined symbols
 
35379
+           # if we add $predep_objects and $postdep_objects, however 7.1 and
 
35380
+           # earlier do not add the objects themselves.
 
35381
+           case `$CC -V 2>&1` in
 
35382
+             *"Version 7."*)
 
35383
+               archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
35384
+               archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
 
35385
+               ;;
 
35386
+             *)  # Version 8.0 or newer
 
35387
+               tmp_idyn=
 
35388
+               case $host_cpu in
 
35389
+                 ia64*) tmp_idyn=' -i_dynamic';;
 
35390
+               esac
 
35391
+               archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
35392
+               archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
 
35393
+               ;;
 
35394
+           esac
 
35395
+           archive_cmds_need_lc_CXX=no
 
35396
+           hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
 
35397
+           export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
 
35398
+           whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
 
35399
+           ;;
 
35400
+          pgCC* | pgcpp*)
 
35401
+            # Portland Group C++ compiler
 
35402
+           case `$CC -V` in
 
35403
+           *pgCC\ [1-5]* | *pgcpp\ [1-5]*)
 
35404
+             prelink_cmds_CXX='tpldir=Template.dir~
 
35405
+               rm -rf $tpldir~
 
35406
+               $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~
 
35407
+               compile_command="$compile_command `find $tpldir -name \*.o | $NL2SP`"'
 
35408
+             old_archive_cmds_CXX='tpldir=Template.dir~
 
35409
+               rm -rf $tpldir~
 
35410
+               $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~
 
35411
+               $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | $NL2SP`~
 
35412
+               $RANLIB $oldlib'
 
35413
+             archive_cmds_CXX='tpldir=Template.dir~
 
35414
+               rm -rf $tpldir~
 
35415
+               $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
 
35416
+               $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
 
35417
+             archive_expsym_cmds_CXX='tpldir=Template.dir~
 
35418
+               rm -rf $tpldir~
 
35419
+               $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
 
35420
+               $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
 
35421
+             ;;
 
35422
+           *) # Version 6 will use weak symbols
 
35423
+             archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
 
35424
+             archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
 
35425
+             ;;
 
35426
+           esac
26076
35427
 
26077
35428
-# Compiler flag to generate thread-safe objects.
26078
35429
-thread_safe_flag_spec=$lt_thread_safe_flag_spec_CXX
 
35430
+           hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir'
 
35431
+           export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
 
35432
+           whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive'
 
35433
+            ;;
 
35434
+         cxx*)
 
35435
+           # Compaq C++
 
35436
+           archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
35437
+           archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname  -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
26079
35438
 
26080
35439
-# Library versioning type.
26081
35440
-version_type=$version_type
 
35441
+           runpath_var=LD_RUN_PATH
 
35442
+           hardcode_libdir_flag_spec_CXX='-rpath $libdir'
 
35443
+           hardcode_libdir_separator_CXX=:
26082
35444
 
26083
35445
-# Format of library name prefix.
26084
35446
-libname_spec=$lt_libname_spec
 
35447
+           # Commands to make compiler produce verbose output that lists
 
35448
+           # what "hidden" libraries, object files and flags are used when
 
35449
+           # linking a shared library.
 
35450
+           #
 
35451
+           # There doesn't appear to be a way to prevent this compiler from
 
35452
+           # explicitly linking system object files so we need to strip them
 
35453
+           # from the output so that they don't get included in the library
 
35454
+           # dependencies.
 
35455
+           output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed'
 
35456
+           ;;
 
35457
+         xl*)
 
35458
+           # IBM XL 8.0 on PPC, with GNU ld
 
35459
+           hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
 
35460
+           export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
 
35461
+           archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
35462
+           if test "x$supports_anon_versioning" = xyes; then
 
35463
+             archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~
 
35464
+               cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
 
35465
+               echo "local: *; };" >> $output_objdir/$libname.ver~
 
35466
+               $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
 
35467
+           fi
 
35468
+           ;;
 
35469
+         *)
 
35470
+           case `$CC -V 2>&1 | sed 5q` in
 
35471
+           *Sun\ C*)
 
35472
+             # Sun C++ 5.9
 
35473
+             no_undefined_flag_CXX=' -zdefs'
 
35474
+             archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
 
35475
+             archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols'
 
35476
+             hardcode_libdir_flag_spec_CXX='-R$libdir'
 
35477
+             whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive'
 
35478
+             compiler_needs_object_CXX=yes
 
35479
+
 
35480
+             # Not sure whether something based on
 
35481
+             # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1
 
35482
+             # would be better.
 
35483
+             output_verbose_link_cmd='echo'
 
35484
+
 
35485
+             # Archives containing C++ object files must be created using
 
35486
+             # "CC -xar", where "CC" is the Sun C++ compiler.  This is
 
35487
+             # necessary to make sure instantiated templates are included
 
35488
+             # in the archive.
 
35489
+             old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs'
 
35490
+             ;;
 
35491
+           esac
 
35492
+           ;;
 
35493
+       esac
 
35494
+       ;;
26085
35495
 
26086
35496
-# List of archive names.  First name is the real one, the rest are links.
26087
35497
-# The last name is the one that the linker finds with -lNAME.
26088
35498
-library_names_spec=$lt_library_names_spec
 
35499
+      lynxos*)
 
35500
+        # FIXME: insert proper C++ library support
 
35501
+       ld_shlibs_CXX=no
 
35502
+       ;;
26089
35503
 
26090
35504
-# The coded name of the library, if different from the real name.
26091
35505
-soname_spec=$lt_soname_spec
 
35506
+      m88k*)
 
35507
+        # FIXME: insert proper C++ library support
 
35508
+        ld_shlibs_CXX=no
 
35509
+       ;;
26092
35510
 
26093
35511
-# Commands used to build and install an old-style archive.
26094
35512
-RANLIB=$lt_RANLIB
26095
35513
-old_archive_cmds=$lt_old_archive_cmds_CXX
26096
35514
-old_postinstall_cmds=$lt_old_postinstall_cmds
26097
35515
-old_postuninstall_cmds=$lt_old_postuninstall_cmds
 
35516
+      mvs*)
 
35517
+        case $cc_basename in
 
35518
+          cxx*)
 
35519
+           # FIXME: insert proper C++ library support
 
35520
+           ld_shlibs_CXX=no
 
35521
+           ;;
 
35522
+         *)
 
35523
+           # FIXME: insert proper C++ library support
 
35524
+           ld_shlibs_CXX=no
 
35525
+           ;;
 
35526
+       esac
 
35527
+       ;;
26098
35528
 
26099
35529
-# Create an old-style archive from a shared archive.
26100
35530
-old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX
 
35531
+      netbsd*)
 
35532
+        if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
 
35533
+         archive_cmds_CXX='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
 
35534
+         wlarc=
 
35535
+         hardcode_libdir_flag_spec_CXX='-R$libdir'
 
35536
+         hardcode_direct_CXX=yes
 
35537
+         hardcode_shlibpath_var_CXX=no
 
35538
+       fi
 
35539
+       # Workaround some broken pre-1.5 toolchains
 
35540
+       output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
 
35541
+       ;;
26101
35542
 
26102
35543
-# Create a temporary old-style archive to link instead of a shared archive.
26103
35544
-old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX
 
35545
+      *nto* | *qnx*)
 
35546
+        ld_shlibs_CXX=yes
 
35547
+       ;;
26104
35548
 
26105
35549
-# Commands used to build and install a shared archive.
26106
35550
-archive_cmds=$lt_archive_cmds_CXX
26107
35551
-archive_expsym_cmds=$lt_archive_expsym_cmds_CXX
26108
35552
-postinstall_cmds=$lt_postinstall_cmds
26109
35553
-postuninstall_cmds=$lt_postuninstall_cmds
 
35554
+      openbsd2*)
 
35555
+        # C++ shared libraries are fairly broken
 
35556
+       ld_shlibs_CXX=no
 
35557
+       ;;
26110
35558
 
26111
35559
-# Commands used to build a loadable module (assumed same as above if empty)
26112
35560
-module_cmds=$lt_module_cmds_CXX
26113
35561
-module_expsym_cmds=$lt_module_expsym_cmds_CXX
 
35562
+      openbsd*)
 
35563
+       if test -f /usr/libexec/ld.so; then
 
35564
+         hardcode_direct_CXX=yes
 
35565
+         hardcode_shlibpath_var_CXX=no
 
35566
+         hardcode_direct_absolute_CXX=yes
 
35567
+         archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
 
35568
+         hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
 
35569
+         if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
 
35570
+           archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
 
35571
+           export_dynamic_flag_spec_CXX='${wl}-E'
 
35572
+           whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
 
35573
+         fi
 
35574
+         output_verbose_link_cmd=echo
 
35575
+       else
 
35576
+         ld_shlibs_CXX=no
 
35577
+       fi
 
35578
+       ;;
26114
35579
 
26115
35580
-# Commands to strip libraries.
26116
35581
-old_striplib=$lt_old_striplib
26117
35582
-striplib=$lt_striplib
 
35583
+      osf3* | osf4* | osf5*)
 
35584
+        case $cc_basename in
 
35585
+          KCC*)
 
35586
+           # Kuck and Associates, Inc. (KAI) C++ Compiler
 
35587
+
 
35588
+           # KCC will only create a shared library if the output file
 
35589
+           # ends with ".so" (or ".sl" for HP-UX), so rename the library
 
35590
+           # to its proper name (with version) after linking.
 
35591
+           archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
 
35592
+
 
35593
+           hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
 
35594
+           hardcode_libdir_separator_CXX=:
 
35595
+
 
35596
+           # Archives containing C++ object files must be created using
 
35597
+           # the KAI C++ compiler.
 
35598
+           case $host in
 
35599
+             osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;;
 
35600
+             *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;;
 
35601
+           esac
 
35602
+           ;;
 
35603
+          RCC*)
 
35604
+           # Rational C++ 2.4.1
 
35605
+           # FIXME: insert proper C++ library support
 
35606
+           ld_shlibs_CXX=no
 
35607
+           ;;
 
35608
+          cxx*)
 
35609
+           case $host in
 
35610
+             osf3*)
 
35611
+               allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*'
 
35612
+               archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && $ECHO "X${wl}-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
 
35613
+               hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
 
35614
+               ;;
 
35615
+             *)
 
35616
+               allow_undefined_flag_CXX=' -expect_unresolved \*'
 
35617
+               archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
 
35618
+               archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
 
35619
+                 echo "-hidden">> $lib.exp~
 
35620
+                 $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp  `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~
 
35621
+                 $RM $lib.exp'
 
35622
+               hardcode_libdir_flag_spec_CXX='-rpath $libdir'
 
35623
+               ;;
 
35624
+           esac
26118
35625
 
26119
35626
-# Dependencies to place before the objects being linked to create a
26120
35627
-# shared library.
26121
35628
-predep_objects=$lt_predep_objects_CXX
 
35629
+           hardcode_libdir_separator_CXX=:
26122
35630
 
26123
35631
-# Dependencies to place after the objects being linked to create a
26124
35632
-# shared library.
26125
35633
-postdep_objects=$lt_postdep_objects_CXX
 
35634
+           # Commands to make compiler produce verbose output that lists
 
35635
+           # what "hidden" libraries, object files and flags are used when
 
35636
+           # linking a shared library.
 
35637
+           #
 
35638
+           # There doesn't appear to be a way to prevent this compiler from
 
35639
+           # explicitly linking system object files so we need to strip them
 
35640
+           # from the output so that they don't get included in the library
 
35641
+           # dependencies.
 
35642
+           output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed'
 
35643
+           ;;
 
35644
+         *)
 
35645
+           if test "$GXX" = yes && test "$with_gnu_ld" = no; then
 
35646
+             allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*'
 
35647
+             case $host in
 
35648
+               osf3*)
 
35649
+                 archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
 
35650
+                 ;;
 
35651
+               *)
 
35652
+                 archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
 
35653
+                 ;;
 
35654
+             esac
 
35655
+
 
35656
+             hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
 
35657
+             hardcode_libdir_separator_CXX=:
 
35658
+
 
35659
+             # Commands to make compiler produce verbose output that lists
 
35660
+             # what "hidden" libraries, object files and flags are used when
 
35661
+             # linking a shared library.
 
35662
+             output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"'
 
35663
+
 
35664
+           else
 
35665
+             # FIXME: insert proper C++ library support
 
35666
+             ld_shlibs_CXX=no
 
35667
+           fi
 
35668
+           ;;
 
35669
+        esac
 
35670
+        ;;
26126
35671
 
26127
35672
-# Dependencies to place before the objects being linked to create a
26128
35673
-# shared library.
26129
35674
-predeps=$lt_predeps_CXX
26130
 
+  { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
26131
 
+echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; }
26132
 
+hardcode_action=
26133
 
+if test -n "$hardcode_libdir_flag_spec" ||
26134
 
+   test -n "$runpath_var" ||
26135
 
+   test "X$hardcode_automatic" = "Xyes" ; then
 
35675
+      psos*)
 
35676
+        # FIXME: insert proper C++ library support
 
35677
+        ld_shlibs_CXX=no
 
35678
+        ;;
26136
35679
 
26137
35680
-# Dependencies to place after the objects being linked to create a
26138
35681
-# shared library.
26139
35682
-postdeps=$lt_postdeps_CXX
26140
 
+  # We can hardcode non-existent directories.
26141
 
+  if test "$hardcode_direct" != no &&
26142
 
+     # If the only mechanism to avoid hardcoding is shlibpath_var, we
26143
 
+     # have to relink, otherwise we might link with an installed library
26144
 
+     # when we should be linking with a yet-to-be-installed one
26145
 
+     ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no &&
26146
 
+     test "$hardcode_minus_L" != no; then
26147
 
+    # Linking always hardcodes the temporary library directory.
26148
 
+    hardcode_action=relink
26149
 
+  else
26150
 
+    # We can link without hardcoding, and we can hardcode nonexisting dirs.
26151
 
+    hardcode_action=immediate
26152
 
+  fi
26153
 
+else
26154
 
+  # We cannot hardcode anything, or else we can only hardcode existing
26155
 
+  # directories.
26156
 
+  hardcode_action=unsupported
26157
 
+fi
26158
 
+{ echo "$as_me:$LINENO: result: $hardcode_action" >&5
26159
 
+echo "${ECHO_T}$hardcode_action" >&6; }
 
35683
+      sunos4*)
 
35684
+        case $cc_basename in
 
35685
+          CC*)
 
35686
+           # Sun C++ 4.x
 
35687
+           # FIXME: insert proper C++ library support
 
35688
+           ld_shlibs_CXX=no
 
35689
+           ;;
 
35690
+          lcc*)
 
35691
+           # Lucid
 
35692
+           # FIXME: insert proper C++ library support
 
35693
+           ld_shlibs_CXX=no
 
35694
+           ;;
 
35695
+          *)
 
35696
+           # FIXME: insert proper C++ library support
 
35697
+           ld_shlibs_CXX=no
 
35698
+           ;;
 
35699
+        esac
 
35700
+        ;;
 
35701
 
 
35702
-# The directories searched by this compiler when creating a shared
 
35703
-# library
 
35704
-compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX
 
35705
+      solaris*)
 
35706
+        case $cc_basename in
 
35707
+          CC*)
 
35708
+           # Sun C++ 4.2, 5.x and Centerline C++
 
35709
+            archive_cmds_need_lc_CXX=yes
 
35710
+           no_undefined_flag_CXX=' -zdefs'
 
35711
+           archive_cmds_CXX='$CC -G${allow_undefined_flag}  -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
 
35712
+           archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
 
35713
+             $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
 
35714
+
 
35715
+           hardcode_libdir_flag_spec_CXX='-R$libdir'
 
35716
+           hardcode_shlibpath_var_CXX=no
 
35717
+           case $host_os in
 
35718
+             solaris2.[0-5] | solaris2.[0-5].*) ;;
 
35719
+             *)
 
35720
+               # The compiler driver will combine and reorder linker options,
 
35721
+               # but understands `-z linker_flag'.
 
35722
+               # Supported since Solaris 2.6 (maybe 2.5.1?)
 
35723
+               whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract'
 
35724
+               ;;
 
35725
+           esac
 
35726
+           link_all_deplibs_CXX=yes
26160
35727
 
26161
35728
-# The library search path used internally by the compiler when linking
26162
35729
-# a shared library.
26163
35730
-compiler_lib_search_path=$lt_compiler_lib_search_path_CXX
26164
 
-
 
35731
+           output_verbose_link_cmd='echo'
 
35732
 
26165
35733
-# Method to check whether dependent libraries are shared objects.
26166
35734
-deplibs_check_method=$lt_deplibs_check_method
26167
 
-
 
35735
+           # Archives containing C++ object files must be created using
 
35736
+           # "CC -xar", where "CC" is the Sun C++ compiler.  This is
 
35737
+           # necessary to make sure instantiated templates are included
 
35738
+           # in the archive.
 
35739
+           old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs'
 
35740
+           ;;
 
35741
+          gcx*)
 
35742
+           # Green Hills C++ Compiler
 
35743
+           archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
 
35744
 
26168
35745
-# Command to use when deplibs_check_method == file_magic.
26169
35746
-file_magic_cmd=$lt_file_magic_cmd
26170
 
-
 
35747
+           # The C++ compiler must be used to create the archive.
 
35748
+           old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
 
35749
+           ;;
 
35750
+          *)
 
35751
+           # GNU C++ compiler with Solaris linker
 
35752
+           if test "$GXX" = yes && test "$with_gnu_ld" = no; then
 
35753
+             no_undefined_flag_CXX=' ${wl}-z ${wl}defs'
 
35754
+             if $CC --version | $GREP -v '^2\.7' > /dev/null; then
 
35755
+               archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
 
35756
+               archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
 
35757
+                 $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
 
35758
+
 
35759
+               # Commands to make compiler produce verbose output that lists
 
35760
+               # what "hidden" libraries, object files and flags are used when
 
35761
+               # linking a shared library.
 
35762
+               output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"'
 
35763
+             else
 
35764
+               # g++ 2.7 appears to require `-G' NOT `-shared' on this
 
35765
+               # platform.
 
35766
+               archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
 
35767
+               archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
 
35768
+                 $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
 
35769
+
 
35770
+               # Commands to make compiler produce verbose output that lists
 
35771
+               # what "hidden" libraries, object files and flags are used when
 
35772
+               # linking a shared library.
 
35773
+               output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"'
 
35774
+             fi
 
35775
+
 
35776
+             hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir'
 
35777
+             case $host_os in
 
35778
+               solaris2.[0-5] | solaris2.[0-5].*) ;;
 
35779
+               *)
 
35780
+                 whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
 
35781
+                 ;;
 
35782
+             esac
 
35783
+           fi
 
35784
+           ;;
 
35785
+        esac
 
35786
+        ;;
 
35787
 
26171
35788
-# Flag that allows shared libraries with undefined symbols to be built.
26172
35789
-allow_undefined_flag=$lt_allow_undefined_flag_CXX
26173
 
-
 
35790
+    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)
 
35791
+      no_undefined_flag_CXX='${wl}-z,text'
 
35792
+      archive_cmds_need_lc_CXX=no
 
35793
+      hardcode_shlibpath_var_CXX=no
 
35794
+      runpath_var='LD_RUN_PATH'
 
35795
 
26174
35796
-# Flag that forces no undefined symbols.
26175
35797
-no_undefined_flag=$lt_no_undefined_flag_CXX
26176
 
-
 
35798
+      case $cc_basename in
 
35799
+        CC*)
 
35800
+         archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
 
35801
+         archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
 
35802
+         ;;
 
35803
+       *)
 
35804
+         archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
 
35805
+         archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
 
35806
+         ;;
 
35807
+      esac
 
35808
+      ;;
 
35809
 
26177
35810
-# Commands used to finish a libtool library installation in a directory.
26178
35811
-finish_cmds=$lt_finish_cmds
26179
 
-
 
35812
+      sysv5* | sco3.2v5* | sco5v6*)
 
35813
+       # Note: We can NOT use -z defs as we might desire, because we do not
 
35814
+       # link with -lc, and that would cause any symbols used from libc to
 
35815
+       # always be unresolved, which means just about no library would
 
35816
+       # ever link correctly.  If we're not using GNU ld we use -z text
 
35817
+       # though, which does catch some bad symbols but isn't as heavy-handed
 
35818
+       # as -z defs.
 
35819
+       no_undefined_flag_CXX='${wl}-z,text'
 
35820
+       allow_undefined_flag_CXX='${wl}-z,nodefs'
 
35821
+       archive_cmds_need_lc_CXX=no
 
35822
+       hardcode_shlibpath_var_CXX=no
 
35823
+       hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir'
 
35824
+       hardcode_libdir_separator_CXX=':'
 
35825
+       link_all_deplibs_CXX=yes
 
35826
+       export_dynamic_flag_spec_CXX='${wl}-Bexport'
 
35827
+       runpath_var='LD_RUN_PATH'
 
35828
 
26180
35829
-# Same as above, but a single script fragment to be evaled but not shown.
26181
35830
-finish_eval=$lt_finish_eval
26182
 
-
 
35831
+       case $cc_basename in
 
35832
+          CC*)
 
35833
+           archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
 
35834
+           archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
 
35835
+           ;;
 
35836
+         *)
 
35837
+           archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
 
35838
+           archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
 
35839
+           ;;
 
35840
+       esac
 
35841
+      ;;
 
35842
 
26183
35843
-# Take the output of nm and produce a listing of raw symbols and C names.
26184
35844
-global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
26185
 
-
 
35845
+      tandem*)
 
35846
+        case $cc_basename in
 
35847
+          NCC*)
 
35848
+           # NonStop-UX NCC 3.20
 
35849
+           # FIXME: insert proper C++ library support
 
35850
+           ld_shlibs_CXX=no
 
35851
+           ;;
 
35852
+          *)
 
35853
+           # FIXME: insert proper C++ library support
 
35854
+           ld_shlibs_CXX=no
 
35855
+           ;;
 
35856
+        esac
 
35857
+        ;;
 
35858
 
26186
35859
-# Transform the output of nm in a proper C declaration
26187
35860
-global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
26188
 
-
 
35861
+      vxworks*)
 
35862
+        # FIXME: insert proper C++ library support
 
35863
+        ld_shlibs_CXX=no
 
35864
+        ;;
 
35865
 
26189
35866
-# Transform the output of nm in a C name address pair
26190
35867
-global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
26191
 
-
 
35868
+      *)
 
35869
+        # FIXME: insert proper C++ library support
 
35870
+        ld_shlibs_CXX=no
 
35871
+        ;;
 
35872
+    esac
 
35873
 
26192
35874
-# This is the shared library runtime path variable.
26193
35875
-runpath_var=$runpath_var
26194
 
-
 
35876
+    { echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5
 
35877
+echo "${ECHO_T}$ld_shlibs_CXX" >&6; }
 
35878
+    test "$ld_shlibs_CXX" = no && can_build_shared=no
 
35879
+
 
35880
+    GCC_CXX="$GXX"
 
35881
+    LD_CXX="$LD"
 
35882
+
 
35883
+    ## CAVEAT EMPTOR:
 
35884
+    ## There is no encapsulation within the following macros, do not change
 
35885
+    ## the running order or otherwise move them around unless you know exactly
 
35886
+    ## what you are doing...
 
35887
+    # Dependencies to place before and after the object being linked:
 
35888
+predep_objects_CXX=
 
35889
+postdep_objects_CXX=
 
35890
+predeps_CXX=
 
35891
+postdeps_CXX=
 
35892
+compiler_lib_search_path_CXX=
 
35893
 
26195
35894
-# This is the shared library path variable.
26196
35895
-shlibpath_var=$shlibpath_var
26197
 
-
 
35896
+cat > conftest.$ac_ext <<_LT_EOF
 
35897
+class Foo
 
35898
+{
 
35899
+public:
 
35900
+  Foo (void) { a = 0; }
 
35901
+private:
 
35902
+  int a;
 
35903
+};
 
35904
+_LT_EOF
 
35905
 
26198
35906
-# Is shlibpath searched before the hard-coded library search path?
26199
35907
-shlibpath_overrides_runpath=$shlibpath_overrides_runpath
26200
 
-
 
35908
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
35909
+  (eval $ac_compile) 2>&5
 
35910
+  ac_status=$?
 
35911
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
35912
+  (exit $ac_status); }; then
 
35913
+  # Parse the compiler output and extract the necessary
 
35914
+  # objects, libraries and library flags.
 
35915
 
26201
35916
-# How to hardcode a shared library path into an executable.
26202
35917
-hardcode_action=$hardcode_action_CXX
26203
 
-
 
35918
+  # Sentinel used to keep track of whether or not we are before
 
35919
+  # the conftest object file.
 
35920
+  pre_test_object_deps_done=no
 
35921
 
26204
35922
-# Whether we should hardcode library paths into libraries.
26205
35923
-hardcode_into_libs=$hardcode_into_libs
26206
 
-
 
35924
+  for p in `eval "$output_verbose_link_cmd"`; do
 
35925
+    case $p in
 
35926
 
26207
35927
-# Flag to hardcode \$libdir into a binary during linking.
26208
35928
-# This must work even if \$libdir does not exist.
26209
35929
-hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX
26210
 
-
 
35930
+    -L* | -R* | -l*)
 
35931
+       # Some compilers place space between "-{L,R}" and the path.
 
35932
+       # Remove the space.
 
35933
+       if test $p = "-L" ||
 
35934
+          test $p = "-R"; then
 
35935
+        prev=$p
 
35936
+        continue
 
35937
+       else
 
35938
+        prev=
 
35939
+       fi
 
35940
 
26211
35941
-# If ld is used when linking, flag to hardcode \$libdir into
26212
35942
-# a binary during linking. This must work even if \$libdir does
26213
35943
-# not exist.
26214
35944
-hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX
26215
 
-
 
35945
+       if test "$pre_test_object_deps_done" = no; then
 
35946
+        case $p in
 
35947
+        -L* | -R*)
 
35948
+          # Internal compiler library paths should come after those
 
35949
+          # provided the user.  The postdeps already come after the
 
35950
+          # user supplied libs so there is no need to process them.
 
35951
+          if test -z "$compiler_lib_search_path_CXX"; then
 
35952
+            compiler_lib_search_path_CXX="${prev}${p}"
 
35953
+          else
 
35954
+            compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}"
 
35955
+          fi
 
35956
+          ;;
 
35957
+        # The "-l" case would never come before the object being
 
35958
+        # linked, so don't bother handling this case.
 
35959
+        esac
 
35960
+       else
 
35961
+        if test -z "$postdeps_CXX"; then
 
35962
+          postdeps_CXX="${prev}${p}"
 
35963
+        else
 
35964
+          postdeps_CXX="${postdeps_CXX} ${prev}${p}"
 
35965
+        fi
 
35966
+       fi
 
35967
+       ;;
 
35968
 
26216
35969
-# Whether we need a single -rpath flag with a separated argument.
26217
35970
-hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX
26218
 
-
 
35971
+    *.$objext)
 
35972
+       # This assumes that the test object file only shows up
 
35973
+       # once in the compiler output.
 
35974
+       if test "$p" = "conftest.$objext"; then
 
35975
+        pre_test_object_deps_done=yes
 
35976
+        continue
 
35977
+       fi
 
35978
 
26219
35979
-# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the
26220
35980
-# resulting binary.
26221
35981
-hardcode_direct=$hardcode_direct_CXX
26222
 
-
 
35982
+       if test "$pre_test_object_deps_done" = no; then
 
35983
+        if test -z "$predep_objects_CXX"; then
 
35984
+          predep_objects_CXX="$p"
 
35985
+        else
 
35986
+          predep_objects_CXX="$predep_objects_CXX $p"
 
35987
+        fi
 
35988
+       else
 
35989
+        if test -z "$postdep_objects_CXX"; then
 
35990
+          postdep_objects_CXX="$p"
 
35991
+        else
 
35992
+          postdep_objects_CXX="$postdep_objects_CXX $p"
 
35993
+        fi
 
35994
+       fi
 
35995
+       ;;
 
35996
 
26223
35997
-# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
26224
35998
-# resulting binary.
26225
35999
-hardcode_minus_L=$hardcode_minus_L_CXX
26226
 
-
 
36000
+    *) ;; # Ignore the rest.
 
36001
 
26227
36002
-# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
26228
36003
-# the resulting binary.
26229
36004
-hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX
26230
 
-
 
36005
+    esac
 
36006
+  done
 
36007
 
26231
36008
-# Set to yes if building a shared library automatically hardcodes DIR into the library
26232
36009
-# and all subsequent libraries and executables linked against it.
26233
36010
-hardcode_automatic=$hardcode_automatic_CXX
26234
 
-
 
36011
+  # Clean up.
 
36012
+  rm -f a.out a.exe
 
36013
+else
 
36014
+  echo "libtool.m4: error: problem compiling CXX test program"
 
36015
+fi
 
36016
 
26235
36017
-# Variables whose values should be saved in libtool wrapper scripts and
26236
36018
-# restored at relink time.
26237
36019
-variables_saved_for_relink="$variables_saved_for_relink"
26238
 
+if test "$hardcode_action" = relink ||
26239
 
+   test "$inherit_rpath" = yes; then
26240
 
+  # Fast installation is not supported
26241
 
+  enable_fast_install=no
26242
 
+elif test "$shlibpath_overrides_runpath" = yes ||
26243
 
+     test "$enable_shared" = no; then
26244
 
+  # Fast installation is not necessary
26245
 
+  enable_fast_install=needless
26246
 
+fi
 
36020
+$RM -f confest.$objext
26247
36021
 
26248
36022
-# Whether libtool must link a program against all its dependency libraries.
26249
36023
-link_all_deplibs=$link_all_deplibs_CXX
 
36024
+# PORTME: override above test on systems where it is broken
 
36025
+case $host_os in
 
36026
+interix[3-9]*)
 
36027
+  # Interix 3.5 installs completely hosed .la files for C++, so rather than
 
36028
+  # hack all around it, let's just trust "g++" to DTRT.
 
36029
+  predep_objects_CXX=
 
36030
+  postdep_objects_CXX=
 
36031
+  postdeps_CXX=
 
36032
+  ;;
26250
36033
 
26251
36034
-# Compile-time system search path for libraries
26252
36035
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
 
36036
+linux*)
 
36037
+  case `$CC -V 2>&1 | sed 5q` in
 
36038
+  *Sun\ C*)
 
36039
+    # Sun C++ 5.9
26253
36040
 
26254
36041
-# Run-time system search path for libraries
26255
36042
-sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
 
36043
+    # The more standards-conforming stlport4 library is
 
36044
+    # incompatible with the Cstd library. Avoid specifying
 
36045
+    # it if it's in CXXFLAGS. Ignore libCrun as
 
36046
+    # -library=stlport4 depends on it.
 
36047
+    case " $CXX $CXXFLAGS " in
 
36048
+    *" -library=stlport4 "*)
 
36049
+      solaris_use_stlport4=yes
 
36050
+      ;;
 
36051
+    esac
26256
36052
 
26257
36053
-# Fix the shell variable \$srcfile for the compiler.
26258
36054
-fix_srcfile_path=$lt_fix_srcfile_path
 
36055
+    if test "$solaris_use_stlport4" != yes; then
 
36056
+      postdeps_CXX='-library=Cstd -library=Crun'
 
36057
+    fi
 
36058
+    ;;
 
36059
+  esac
 
36060
+  ;;
26259
36061
 
26260
36062
-# Set to yes if exported symbols are required.
26261
36063
-always_export_symbols=$always_export_symbols_CXX
 
36064
+solaris*)
 
36065
+  case $cc_basename in
 
36066
+  CC*)
 
36067
+    # The more standards-conforming stlport4 library is
 
36068
+    # incompatible with the Cstd library. Avoid specifying
 
36069
+    # it if it's in CXXFLAGS. Ignore libCrun as
 
36070
+    # -library=stlport4 depends on it.
 
36071
+    case " $CXX $CXXFLAGS " in
 
36072
+    *" -library=stlport4 "*)
 
36073
+      solaris_use_stlport4=yes
 
36074
+      ;;
 
36075
+    esac
26262
36076
 
26263
36077
-# The commands to list exported symbols.
26264
36078
-export_symbols_cmds=$lt_export_symbols_cmds_CXX
26265
 
+  if test "x$enable_dlopen" != xyes; then
26266
 
+  enable_dlopen=unknown
26267
 
+  enable_dlopen_self=unknown
26268
 
+  enable_dlopen_self_static=unknown
26269
 
+else
26270
 
+  lt_cv_dlopen=no
26271
 
+  lt_cv_dlopen_libs=
 
36079
+    # Adding this requires a known-good setup of shared libraries for
 
36080
+    # Sun compiler versions before 5.6, else PIC objects from an old
 
36081
+    # archive will be linked into the output, leading to subtle bugs.
 
36082
+    if test "$solaris_use_stlport4" != yes; then
 
36083
+      postdeps_CXX='-library=Cstd -library=Crun'
 
36084
+    fi
 
36085
+    ;;
 
36086
+  esac
 
36087
+  ;;
 
36088
+esac
26272
36089
 
26273
36090
-# The commands to extract the exported symbol list from a shared archive.
26274
36091
-extract_expsyms_cmds=$lt_extract_expsyms_cmds
26275
 
+  case $host_os in
26276
 
+  beos*)
26277
 
+    lt_cv_dlopen="load_add_on"
26278
 
+    lt_cv_dlopen_libs=
26279
 
+    lt_cv_dlopen_self=yes
26280
 
+    ;;
26281
36092
 
26282
36093
-# Symbols that should not be listed in the preloaded symbols.
26283
36094
-exclude_expsyms=$lt_exclude_expsyms_CXX
26284
 
+  mingw* | pw32*)
26285
 
+    lt_cv_dlopen="LoadLibrary"
26286
 
+    lt_cv_dlopen_libs=
26287
 
+    ;;
 
36095
+case " $postdeps_CXX " in
 
36096
+*" -lc "*) archive_cmds_need_lc_CXX=no ;;
 
36097
+esac
 
36098
+ compiler_lib_search_dirs_CXX=
 
36099
+if test -n "${compiler_lib_search_path_CXX}"; then
 
36100
+ compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'`
 
36101
+fi
26288
36102
 
26289
36103
-# Symbols that must always be exported.
26290
36104
-include_expsyms=$lt_include_expsyms_CXX
26291
 
+  cygwin*)
26292
 
+    lt_cv_dlopen="dlopen"
26293
 
+    lt_cv_dlopen_libs=
26294
 
+    ;;
26295
36105
 
26296
36106
-# ### END LIBTOOL TAG CONFIG: $tagname
26297
 
+  darwin*)
26298
 
+  # if libdl is installed we need to link against it
26299
 
+    { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
26300
 
+echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; }
26301
 
+if test "${ac_cv_lib_dl_dlopen+set}" = set; then
26302
 
+  echo $ECHO_N "(cached) $ECHO_C" >&6
26303
 
+else
26304
 
+  ac_check_lib_save_LIBS=$LIBS
26305
 
+LIBS="-ldl  $LIBS"
26306
 
+cat >conftest.$ac_ext <<_ACEOF
26307
 
+/* confdefs.h.  */
26308
 
+_ACEOF
26309
 
+cat confdefs.h >>conftest.$ac_ext
26310
 
+cat >>conftest.$ac_ext <<_ACEOF
26311
 
+/* end confdefs.h.  */
26312
36107
 
26313
36108
-__EOF__
26314
 
+/* Override any GCC internal prototype to avoid an error.
26315
 
+   Use char because int might match the return type of a GCC
26316
 
+   builtin and then its argument prototype would still apply.  */
26317
 
+#ifdef __cplusplus
26318
 
+extern "C"
26319
 
+#endif
26320
 
+char dlopen ();
26321
 
+int
26322
 
+main ()
26323
 
+{
26324
 
+return dlopen ();
26325
 
+  ;
26326
 
+  return 0;
26327
 
+}
26328
 
+_ACEOF
26329
 
+rm -f conftest.$ac_objext conftest$ac_exeext
26330
 
+if { (ac_try="$ac_link"
26331
 
+case "(($ac_try" in
26332
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
26333
 
+  *) ac_try_echo=$ac_try;;
26334
 
+esac
26335
 
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
26336
 
+  (eval "$ac_link") 2>conftest.er1
26337
 
+  ac_status=$?
26338
 
+  grep -v '^ *+' conftest.er1 >conftest.err
26339
 
+  rm -f conftest.er1
26340
 
+  cat conftest.err >&5
26341
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
26342
 
+  (exit $ac_status); } && {
26343
 
+        test -z "$ac_c_werror_flag" ||
26344
 
+        test ! -s conftest.err
26345
 
+       } && test -s conftest$ac_exeext &&
26346
 
+       $as_test_x conftest$ac_exeext; then
26347
 
+  ac_cv_lib_dl_dlopen=yes
26348
 
+else
26349
 
+  echo "$as_me: failed program was:" >&5
26350
 
+sed 's/^/| /' conftest.$ac_ext >&5
26351
36109
 
26352
 
+       ac_cv_lib_dl_dlopen=no
26353
 
+fi
26354
36110
 
26355
36111
-else
26356
36112
-  # If there is no Makefile yet, we rely on a make rule to execute
26360
36116
-  if test -f "$ltmain_in"; then
26361
36117
-    test -f Makefile && make "$ltmain"
26362
36118
-  fi
26363
 
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
26364
 
+      conftest$ac_exeext conftest.$ac_ext
26365
 
+LIBS=$ac_check_lib_save_LIBS
26366
 
 fi
26367
 
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
26368
 
+echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; }
26369
 
+if test $ac_cv_lib_dl_dlopen = yes; then
26370
 
+  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
26371
 
+else
 
36119
-fi
26372
36120
 
26373
 
+    lt_cv_dlopen="dyld"
26374
 
+    lt_cv_dlopen_libs=
26375
 
+    lt_cv_dlopen_self=yes
26376
36121
 
26377
36122
-ac_ext=c
26378
36123
-ac_cpp='$CPP $CPPFLAGS'
26379
36124
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
26380
36125
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
26381
36126
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
26382
 
+fi
26383
36127
 
26384
36128
-CC=$lt_save_CC
26385
36129
-LDCXX=$LD
26391
36135
-lt_cv_path_LD=$lt_save_path_LD
26392
36136
-lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
26393
36137
-lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
26394
 
-
 
36138
 
26395
36139
-       else
26396
36140
-         tagname=""
26397
36141
-       fi
26398
 
        ;;
 
36142
-       ;;
26399
36143
 
26400
36144
-      F77)
26401
36145
-       if test -n "$F77" && test "X$F77" != "Xno"; then
26402
 
-
 
36146
 
26403
36147
-ac_ext=f
26404
36148
-ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5'
26405
36149
-ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
26424
36168
-no_undefined_flag_F77=
26425
36169
-whole_archive_flag_spec_F77=
26426
36170
-enable_shared_with_static_runtimes_F77=no
26427
 
-
 
36171
 
26428
36172
-# Source file extension for f77 test sources.
26429
36173
-ac_ext=f
26430
 
-
 
36174
 
26431
36175
-# Object file extension for compiled f77 test sources.
26432
36176
-objext=o
26433
36177
-objext_F77=$objext
26434
 
-
 
36178
 
26435
36179
-# Code to be used in simple compile tests
26436
36180
-lt_simple_compile_test_code="\
26437
36181
-      subroutine t
26438
36182
-      return
26439
36183
-      end
26440
36184
-"
26441
 
+  *)
26442
 
+    { echo "$as_me:$LINENO: checking for shl_load" >&5
26443
 
+echo $ECHO_N "checking for shl_load... $ECHO_C" >&6; }
26444
 
+if test "${ac_cv_func_shl_load+set}" = set; then
26445
 
+  echo $ECHO_N "(cached) $ECHO_C" >&6
26446
 
+else
26447
 
+  cat >conftest.$ac_ext <<_ACEOF
26448
 
+/* confdefs.h.  */
26449
 
+_ACEOF
26450
 
+cat confdefs.h >>conftest.$ac_ext
26451
 
+cat >>conftest.$ac_ext <<_ACEOF
26452
 
+/* end confdefs.h.  */
26453
 
+/* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load.
26454
 
+   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
26455
 
+#define shl_load innocuous_shl_load
26456
36185
 
26457
36186
-# Code to be used in simple link tests
26458
36187
-lt_simple_link_test_code="\
26459
36188
-      program t
26460
36189
-      end
26461
36190
-"
26462
 
+/* System header to define __stub macros and hopefully few prototypes,
26463
 
+    which can conflict with char shl_load (); below.
26464
 
+    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
26465
 
+    <limits.h> exists even on freestanding compilers.  */
26466
36191
 
26467
36192
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
26468
 
+#ifdef __STDC__
26469
 
+# include <limits.h>
26470
 
+#else
26471
 
+# include <assert.h>
26472
 
+#endif
26473
36193
 
26474
36194
-# If no C compiler was specified, use CC.
26475
36195
-LTCC=${LTCC-"$CC"}
26476
 
+#undef shl_load
26477
36196
 
26478
36197
-# If no C compiler flags were specified, use CFLAGS.
26479
36198
-LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
26480
 
+/* Override any GCC internal prototype to avoid an error.
26481
 
+   Use char because int might match the return type of a GCC
26482
 
+   builtin and then its argument prototype would still apply.  */
26483
 
+#ifdef __cplusplus
26484
 
+extern "C"
26485
 
+#endif
26486
 
+char shl_load ();
26487
 
+/* The GNU C library defines this for functions which it implements
26488
 
+    to always fail with ENOSYS.  Some functions are actually named
26489
 
+    something starting with __ and the normal name is an alias.  */
26490
 
+#if defined __stub_shl_load || defined __stub___shl_load
26491
 
+choke me
26492
 
+#endif
26493
36199
 
26494
36200
-# Allow CC to be a program name with arguments.
26495
36201
-compiler=$CC
26496
 
+int
26497
 
+main ()
26498
 
+{
26499
 
+return shl_load ();
26500
 
+  ;
26501
 
+  return 0;
26502
 
+}
26503
 
+_ACEOF
26504
 
+rm -f conftest.$ac_objext conftest$ac_exeext
26505
 
+if { (ac_try="$ac_link"
26506
 
+case "(($ac_try" in
26507
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
26508
 
+  *) ac_try_echo=$ac_try;;
26509
 
+esac
26510
 
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
26511
 
+  (eval "$ac_link") 2>conftest.er1
26512
 
+  ac_status=$?
26513
 
+  grep -v '^ *+' conftest.er1 >conftest.err
26514
 
+  rm -f conftest.er1
26515
 
+  cat conftest.err >&5
26516
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
26517
 
+  (exit $ac_status); } && {
26518
 
+        test -z "$ac_c_werror_flag" ||
26519
 
+        test ! -s conftest.err
26520
 
+       } && test -s conftest$ac_exeext &&
26521
 
+       $as_test_x conftest$ac_exeext; then
26522
 
+  ac_cv_func_shl_load=yes
26523
 
+else
26524
 
+  echo "$as_me: failed program was:" >&5
26525
 
+sed 's/^/| /' conftest.$ac_ext >&5
26526
36202
 
26527
 
+       ac_cv_func_shl_load=no
26528
 
+fi
26529
36203
 
26530
36204
-# save warnings/boilerplate of simple test code
26531
36205
-ac_outfile=conftest.$ac_objext
26533
36207
-eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
26534
36208
-_lt_compiler_boilerplate=`cat conftest.err`
26535
36209
-$rm conftest*
26536
 
-
 
36210
 
26537
36211
-ac_outfile=conftest.$ac_objext
26538
36212
-echo "$lt_simple_link_test_code" >conftest.$ac_ext
26539
36213
-eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
26540
36214
-_lt_linker_boilerplate=`cat conftest.err`
26541
 
-$rm conftest*
26542
 
-
26543
 
-
 
36215
-$rm -r conftest*
 
36216
 
 
36217
 
26544
36218
-# Allow CC to be a program name with arguments.
26545
36219
-lt_save_CC="$CC"
26546
36220
-CC=${F77-"f77"}
26555
36229
-  esac
26556
36230
-done
26557
36231
-cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
26558
 
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
26559
 
+      conftest$ac_exeext conftest.$ac_ext
26560
 
+fi
26561
 
+{ echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
26562
 
+echo "${ECHO_T}$ac_cv_func_shl_load" >&6; }
26563
 
+if test $ac_cv_func_shl_load = yes; then
26564
 
+  lt_cv_dlopen="shl_load"
26565
 
+else
26566
 
+  { echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5
26567
 
+echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6; }
26568
 
+if test "${ac_cv_lib_dld_shl_load+set}" = set; then
26569
 
+  echo $ECHO_N "(cached) $ECHO_C" >&6
26570
 
+else
26571
 
+  ac_check_lib_save_LIBS=$LIBS
26572
 
+LIBS="-ldld  $LIBS"
26573
 
+cat >conftest.$ac_ext <<_ACEOF
26574
 
+/* confdefs.h.  */
26575
 
+_ACEOF
26576
 
+cat confdefs.h >>conftest.$ac_ext
26577
 
+cat >>conftest.$ac_ext <<_ACEOF
26578
 
+/* end confdefs.h.  */
26579
 
 
26580
 
+/* Override any GCC internal prototype to avoid an error.
26581
 
+   Use char because int might match the return type of a GCC
26582
 
+   builtin and then its argument prototype would still apply.  */
26583
 
+#ifdef __cplusplus
26584
 
+extern "C"
26585
 
+#endif
26586
 
+char shl_load ();
26587
 
+int
26588
 
+main ()
26589
 
+{
26590
 
+return shl_load ();
26591
 
+  ;
26592
 
+  return 0;
26593
 
+}
26594
 
+_ACEOF
26595
 
+rm -f conftest.$ac_objext conftest$ac_exeext
26596
 
+if { (ac_try="$ac_link"
26597
 
+case "(($ac_try" in
26598
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
26599
 
+  *) ac_try_echo=$ac_try;;
26600
 
+esac
26601
 
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
26602
 
+  (eval "$ac_link") 2>conftest.er1
26603
 
+  ac_status=$?
26604
 
+  grep -v '^ *+' conftest.er1 >conftest.err
26605
 
+  rm -f conftest.er1
26606
 
+  cat conftest.err >&5
26607
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
26608
 
+  (exit $ac_status); } && {
26609
 
+        test -z "$ac_c_werror_flag" ||
26610
 
+        test ! -s conftest.err
26611
 
+       } && test -s conftest$ac_exeext &&
26612
 
+       $as_test_x conftest$ac_exeext; then
26613
 
+  ac_cv_lib_dld_shl_load=yes
26614
 
+else
26615
 
+  echo "$as_me: failed program was:" >&5
26616
 
+sed 's/^/| /' conftest.$ac_ext >&5
26617
 
 
26618
 
-{ echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5
26619
 
-echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; }
26620
 
-{ echo "$as_me:$LINENO: result: $can_build_shared" >&5
26621
 
-echo "${ECHO_T}$can_build_shared" >&6; }
26622
 
+       ac_cv_lib_dld_shl_load=no
26623
 
+fi
26624
 
 
26625
 
-{ echo "$as_me:$LINENO: checking whether to build shared libraries" >&5
26626
 
-echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; }
 
36232
 
 
36233
 
 
36234
-{ $as_echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5
 
36235
-$as_echo_n "checking if libtool supports shared libraries... " >&6; }
 
36236
-{ $as_echo "$as_me:$LINENO: result: $can_build_shared" >&5
 
36237
-$as_echo "$can_build_shared" >&6; }
 
36238
 
 
36239
-{ $as_echo "$as_me:$LINENO: checking whether to build shared libraries" >&5
 
36240
-$as_echo_n "checking whether to build shared libraries... " >&6; }
26627
36241
-test "$can_build_shared" = "no" && enable_shared=no
26628
 
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
26629
 
+      conftest$ac_exeext conftest.$ac_ext
26630
 
+LIBS=$ac_check_lib_save_LIBS
26631
 
+fi
26632
 
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5
26633
 
+echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6; }
26634
 
+if test $ac_cv_lib_dld_shl_load = yes; then
26635
 
+  lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"
26636
 
+else
26637
 
+  { echo "$as_me:$LINENO: checking for dlopen" >&5
26638
 
+echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; }
26639
 
+if test "${ac_cv_func_dlopen+set}" = set; then
26640
 
+  echo $ECHO_N "(cached) $ECHO_C" >&6
26641
 
+else
26642
 
+  cat >conftest.$ac_ext <<_ACEOF
26643
 
+/* confdefs.h.  */
26644
 
+_ACEOF
26645
 
+cat confdefs.h >>conftest.$ac_ext
26646
 
+cat >>conftest.$ac_ext <<_ACEOF
26647
 
+/* end confdefs.h.  */
26648
 
+/* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
26649
 
+   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
26650
 
+#define dlopen innocuous_dlopen
26651
36242
 
26652
36243
-# On AIX, shared libraries and static libraries use the same namespace, and
26653
36244
-# are all built from PIC.
26659
36250
-    postinstall_cmds='$RANLIB $lib'
26660
36251
-  fi
26661
36252
-  ;;
26662
 
-aix4* | aix5*)
 
36253
-aix[4-9]*)
26663
36254
-  if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
26664
36255
-    test "$enable_shared" = yes && enable_static=no
26665
36256
-  fi
26666
36257
-  ;;
26667
36258
-esac
26668
 
-{ echo "$as_me:$LINENO: result: $enable_shared" >&5
26669
 
-echo "${ECHO_T}$enable_shared" >&6; }
26670
 
+/* System header to define __stub macros and hopefully few prototypes,
26671
 
+    which can conflict with char dlopen (); below.
26672
 
+    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
26673
 
+    <limits.h> exists even on freestanding compilers.  */
 
36259
-{ $as_echo "$as_me:$LINENO: result: $enable_shared" >&5
 
36260
-$as_echo "$enable_shared" >&6; }
26674
36261
 
26675
 
-{ echo "$as_me:$LINENO: checking whether to build static libraries" >&5
26676
 
-echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; }
 
36262
-{ $as_echo "$as_me:$LINENO: checking whether to build static libraries" >&5
 
36263
-$as_echo_n "checking whether to build static libraries... " >&6; }
26677
36264
-# Make sure either enable_shared or enable_static is yes.
26678
36265
-test "$enable_shared" = yes || enable_static=yes
26679
 
-{ echo "$as_me:$LINENO: result: $enable_static" >&5
26680
 
-echo "${ECHO_T}$enable_static" >&6; }
26681
 
+#ifdef __STDC__
26682
 
+# include <limits.h>
26683
 
+#else
26684
 
+# include <assert.h>
26685
 
+#endif
26686
 
 
 
36266
-{ $as_echo "$as_me:$LINENO: result: $enable_static" >&5
 
36267
-$as_echo "$enable_static" >&6; }
 
36268
-
26687
36269
-GCC_F77="$G77"
26688
36270
-LD_F77="$LD"
26689
 
+#undef dlopen
26690
 
 
 
36271
-
26691
36272
-lt_prog_compiler_wl_F77=
26692
36273
-lt_prog_compiler_pic_F77=
26693
36274
-lt_prog_compiler_static_F77=
26694
 
+/* Override any GCC internal prototype to avoid an error.
26695
 
+   Use char because int might match the return type of a GCC
26696
 
+   builtin and then its argument prototype would still apply.  */
26697
 
+#ifdef __cplusplus
26698
 
+extern "C"
26699
 
+#endif
26700
 
+char dlopen ();
26701
 
+/* The GNU C library defines this for functions which it implements
26702
 
+    to always fail with ENOSYS.  Some functions are actually named
26703
 
+    something starting with __ and the normal name is an alias.  */
26704
 
+#if defined __stub_dlopen || defined __stub___dlopen
26705
 
+choke me
26706
 
+#endif
26707
36275
 
26708
 
-{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5
26709
 
-echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; }
26710
 
+int
26711
 
+main ()
26712
 
+{
26713
 
+return dlopen ();
26714
 
+  ;
26715
 
+  return 0;
26716
 
+}
26717
 
+_ACEOF
26718
 
+rm -f conftest.$ac_objext conftest$ac_exeext
26719
 
+if { (ac_try="$ac_link"
26720
 
+case "(($ac_try" in
26721
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
26722
 
+  *) ac_try_echo=$ac_try;;
26723
 
+esac
26724
 
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
26725
 
+  (eval "$ac_link") 2>conftest.er1
26726
 
+  ac_status=$?
26727
 
+  grep -v '^ *+' conftest.er1 >conftest.err
26728
 
+  rm -f conftest.er1
26729
 
+  cat conftest.err >&5
26730
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
26731
 
+  (exit $ac_status); } && {
26732
 
+        test -z "$ac_c_werror_flag" ||
26733
 
+        test ! -s conftest.err
26734
 
+       } && test -s conftest$ac_exeext &&
26735
 
+       $as_test_x conftest$ac_exeext; then
26736
 
+  ac_cv_func_dlopen=yes
26737
 
+else
26738
 
+  echo "$as_me: failed program was:" >&5
26739
 
+sed 's/^/| /' conftest.$ac_ext >&5
 
36276
-{ $as_echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5
 
36277
-$as_echo_n "checking for $compiler option to produce PIC... " >&6; }
26740
36278
 
26741
36279
-  if test "$GCC" = yes; then
26742
36280
-    lt_prog_compiler_wl_F77='-Wl,'
26743
36281
-    lt_prog_compiler_static_F77='-static'
26744
 
+       ac_cv_func_dlopen=no
26745
 
+fi
 
36282
+    lt_prog_compiler_wl_CXX=
 
36283
+lt_prog_compiler_pic_CXX=
 
36284
+lt_prog_compiler_static_CXX=
 
36285
+
 
36286
+{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5
 
36287
+echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; }
 
36288
+
 
36289
+  # C++ specific cases for pic, static, wl, etc.
 
36290
+  if test "$GXX" = yes; then
 
36291
+    lt_prog_compiler_wl_CXX='-Wl,'
 
36292
+    lt_prog_compiler_static_CXX='-static'
26746
36293
 
26747
 
-    case $host_os in
 
36294
     case $host_os in
26748
36295
-      aix*)
26749
 
-      # All AIX code is PIC.
26750
 
-      if test "$host_cpu" = ia64; then
26751
 
-       # AIX 5 now supports IA64 processor
 
36296
+    aix*)
 
36297
       # All AIX code is PIC.
 
36298
       if test "$host_cpu" = ia64; then
 
36299
        # AIX 5 now supports IA64 processor
26752
36300
-       lt_prog_compiler_static_F77='-Bstatic'
26753
 
-      fi
26754
 
-      ;;
26755
 
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
26756
 
+      conftest$ac_exeext conftest.$ac_ext
26757
 
+fi
26758
 
+{ echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
26759
 
+echo "${ECHO_T}$ac_cv_func_dlopen" >&6; }
26760
 
+if test $ac_cv_func_dlopen = yes; then
26761
 
+  lt_cv_dlopen="dlopen"
26762
 
+else
26763
 
+  { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
26764
 
+echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; }
26765
 
+if test "${ac_cv_lib_dl_dlopen+set}" = set; then
26766
 
+  echo $ECHO_N "(cached) $ECHO_C" >&6
26767
 
+else
26768
 
+  ac_check_lib_save_LIBS=$LIBS
26769
 
+LIBS="-ldl  $LIBS"
26770
 
+cat >conftest.$ac_ext <<_ACEOF
26771
 
+/* confdefs.h.  */
26772
 
+_ACEOF
26773
 
+cat confdefs.h >>conftest.$ac_ext
26774
 
+cat >>conftest.$ac_ext <<_ACEOF
26775
 
+/* end confdefs.h.  */
 
36301
+       lt_prog_compiler_static_CXX='-Bstatic'
 
36302
       fi
 
36303
       ;;
26776
36304
 
26777
 
-    amigaos*)
 
36305
     amigaos*)
26778
36306
-      # FIXME: we need at least 68020 code to build shared libraries, but
26779
36307
-      # adding the `-m68020' flag to GCC prevents building anything better,
26780
36308
-      # like `-m68040'.
26781
36309
-      lt_prog_compiler_pic_F77='-m68020 -resident32 -malways-restore-a4'
26782
 
-      ;;
26783
 
+/* Override any GCC internal prototype to avoid an error.
26784
 
+   Use char because int might match the return type of a GCC
26785
 
+   builtin and then its argument prototype would still apply.  */
26786
 
+#ifdef __cplusplus
26787
 
+extern "C"
26788
 
+#endif
26789
 
+char dlopen ();
26790
 
+int
26791
 
+main ()
26792
 
+{
26793
 
+return dlopen ();
26794
 
+  ;
26795
 
+  return 0;
26796
 
+}
26797
 
+_ACEOF
26798
 
+rm -f conftest.$ac_objext conftest$ac_exeext
26799
 
+if { (ac_try="$ac_link"
26800
 
+case "(($ac_try" in
26801
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
26802
 
+  *) ac_try_echo=$ac_try;;
26803
 
+esac
26804
 
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
26805
 
+  (eval "$ac_link") 2>conftest.er1
26806
 
+  ac_status=$?
26807
 
+  grep -v '^ *+' conftest.er1 >conftest.err
26808
 
+  rm -f conftest.er1
26809
 
+  cat conftest.err >&5
26810
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
26811
 
+  (exit $ac_status); } && {
26812
 
+        test -z "$ac_c_werror_flag" ||
26813
 
+        test ! -s conftest.err
26814
 
+       } && test -s conftest$ac_exeext &&
26815
 
+       $as_test_x conftest$ac_exeext; then
26816
 
+  ac_cv_lib_dl_dlopen=yes
26817
 
+else
26818
 
+  echo "$as_me: failed program was:" >&5
26819
 
+sed 's/^/| /' conftest.$ac_ext >&5
26820
 
 
26821
 
-    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
26822
 
-      # PIC is the default for these OSes.
26823
 
-      ;;
26824
 
+       ac_cv_lib_dl_dlopen=no
26825
 
+fi
26826
 
 
 
36310
+      case $host_cpu in
 
36311
+      powerpc)
 
36312
+            # see comment about AmigaOS4 .so support
 
36313
+            lt_prog_compiler_pic_CXX='-fPIC'
 
36314
+        ;;
 
36315
+      m68k)
 
36316
+            # FIXME: we need at least 68020 code to build shared libraries, but
 
36317
+            # adding the `-m68020' flag to GCC prevents building anything better,
 
36318
+            # like `-m68040'.
 
36319
+            lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4'
 
36320
+        ;;
 
36321
+      esac
 
36322
       ;;
 
36323
 
 
36324
     beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
 
36325
       # PIC is the default for these OSes.
 
36326
       ;;
 
36327
-
26827
36328
-    mingw* | cygwin* | pw32* | os2*)
26828
 
-      # This hack is so that the source file can tell whether it is being
26829
 
-      # built for inclusion in a dll (and should export symbols for example).
26830
 
-      # Although the cygwin gcc ignores -fPIC, still need this for old-style
26831
 
-      # (--disable-auto-import) libraries
 
36329
+    mingw* | cygwin* | os2* | pw32*)
 
36330
       # This hack is so that the source file can tell whether it is being
 
36331
       # built for inclusion in a dll (and should export symbols for example).
 
36332
       # Although the cygwin gcc ignores -fPIC, still need this for old-style
 
36333
       # (--disable-auto-import) libraries
26832
36334
-      lt_prog_compiler_pic_F77='-DDLL_EXPORT'
26833
 
-      ;;
26834
 
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
26835
 
+      conftest$ac_exeext conftest.$ac_ext
26836
 
+LIBS=$ac_check_lib_save_LIBS
26837
 
+fi
26838
 
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
26839
 
+echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; }
26840
 
+if test $ac_cv_lib_dl_dlopen = yes; then
26841
 
+  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
26842
 
+else
26843
 
+  { echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5
26844
 
+echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6; }
26845
 
+if test "${ac_cv_lib_svld_dlopen+set}" = set; then
26846
 
+  echo $ECHO_N "(cached) $ECHO_C" >&6
26847
 
+else
26848
 
+  ac_check_lib_save_LIBS=$LIBS
26849
 
+LIBS="-lsvld  $LIBS"
26850
 
+cat >conftest.$ac_ext <<_ACEOF
26851
 
+/* confdefs.h.  */
26852
 
+_ACEOF
26853
 
+cat confdefs.h >>conftest.$ac_ext
26854
 
+cat >>conftest.$ac_ext <<_ACEOF
26855
 
+/* end confdefs.h.  */
26856
 
 
26857
 
-    darwin* | rhapsody*)
26858
 
-      # PIC is the default on this platform
26859
 
-      # Common symbols not allowed in MH_DYLIB files
 
36335
+      lt_prog_compiler_pic_CXX='-DDLL_EXPORT'
 
36336
       ;;
 
36337
-
 
36338
     darwin* | rhapsody*)
 
36339
       # PIC is the default on this platform
 
36340
       # Common symbols not allowed in MH_DYLIB files
26860
36341
-      lt_prog_compiler_pic_F77='-fno-common'
26861
 
-      ;;
26862
 
+/* Override any GCC internal prototype to avoid an error.
26863
 
+   Use char because int might match the return type of a GCC
26864
 
+   builtin and then its argument prototype would still apply.  */
26865
 
+#ifdef __cplusplus
26866
 
+extern "C"
26867
 
+#endif
26868
 
+char dlopen ();
26869
 
+int
26870
 
+main ()
26871
 
+{
26872
 
+return dlopen ();
26873
 
+  ;
26874
 
+  return 0;
26875
 
+}
26876
 
+_ACEOF
26877
 
+rm -f conftest.$ac_objext conftest$ac_exeext
26878
 
+if { (ac_try="$ac_link"
26879
 
+case "(($ac_try" in
26880
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
26881
 
+  *) ac_try_echo=$ac_try;;
26882
 
+esac
26883
 
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
26884
 
+  (eval "$ac_link") 2>conftest.er1
26885
 
+  ac_status=$?
26886
 
+  grep -v '^ *+' conftest.er1 >conftest.err
26887
 
+  rm -f conftest.er1
26888
 
+  cat conftest.err >&5
26889
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
26890
 
+  (exit $ac_status); } && {
26891
 
+        test -z "$ac_c_werror_flag" ||
26892
 
+        test ! -s conftest.err
26893
 
+       } && test -s conftest$ac_exeext &&
26894
 
+       $as_test_x conftest$ac_exeext; then
26895
 
+  ac_cv_lib_svld_dlopen=yes
26896
 
+else
26897
 
+  echo "$as_me: failed program was:" >&5
26898
 
+sed 's/^/| /' conftest.$ac_ext >&5
26899
 
 
26900
 
-    interix[3-9]*)
26901
 
-      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
26902
 
-      # Instead, we relocate shared libraries at runtime.
26903
 
-      ;;
26904
 
+       ac_cv_lib_svld_dlopen=no
26905
 
+fi
26906
 
 
 
36342
+      lt_prog_compiler_pic_CXX='-fno-common'
 
36343
+      ;;
 
36344
+    *djgpp*)
 
36345
+      # DJGPP does not support shared libraries at all
 
36346
+      lt_prog_compiler_pic_CXX=
 
36347
       ;;
 
36348
-
 
36349
     interix[3-9]*)
 
36350
       # Interix 3.x gcc -fpic/-fPIC options generate broken code.
 
36351
       # Instead, we relocate shared libraries at runtime.
 
36352
       ;;
 
36353
-
26907
36354
-    msdosdjgpp*)
26908
36355
-      # Just because we use GCC doesn't mean we suddenly get shared libraries
26909
36356
-      # on systems that don't support them.
26910
36357
-      lt_prog_compiler_can_build_shared_F77=no
26911
36358
-      enable_shared=no
26912
36359
-      ;;
26913
 
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
26914
 
+      conftest$ac_exeext conftest.$ac_ext
26915
 
+LIBS=$ac_check_lib_save_LIBS
26916
 
+fi
26917
 
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5
26918
 
+echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6; }
26919
 
+if test $ac_cv_lib_svld_dlopen = yes; then
26920
 
+  lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
26921
 
+else
26922
 
+  { echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5
26923
 
+echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6; }
26924
 
+if test "${ac_cv_lib_dld_dld_link+set}" = set; then
26925
 
+  echo $ECHO_N "(cached) $ECHO_C" >&6
26926
 
+else
26927
 
+  ac_check_lib_save_LIBS=$LIBS
26928
 
+LIBS="-ldld  $LIBS"
26929
 
+cat >conftest.$ac_ext <<_ACEOF
26930
 
+/* confdefs.h.  */
26931
 
+_ACEOF
26932
 
+cat confdefs.h >>conftest.$ac_ext
26933
 
+cat >>conftest.$ac_ext <<_ACEOF
26934
 
+/* end confdefs.h.  */
26935
 
 
26936
 
-    sysv4*MP*)
26937
 
-      if test -d /usr/nec; then
 
36360
-
 
36361
     sysv4*MP*)
 
36362
       if test -d /usr/nec; then
26938
36363
-       lt_prog_compiler_pic_F77=-Kconform_pic
26939
 
-      fi
26940
 
-      ;;
26941
 
+/* Override any GCC internal prototype to avoid an error.
26942
 
+   Use char because int might match the return type of a GCC
26943
 
+   builtin and then its argument prototype would still apply.  */
26944
 
+#ifdef __cplusplus
26945
 
+extern "C"
26946
 
+#endif
26947
 
+char dld_link ();
26948
 
+int
26949
 
+main ()
26950
 
+{
26951
 
+return dld_link ();
26952
 
+  ;
26953
 
+  return 0;
26954
 
+}
26955
 
+_ACEOF
26956
 
+rm -f conftest.$ac_objext conftest$ac_exeext
26957
 
+if { (ac_try="$ac_link"
26958
 
+case "(($ac_try" in
26959
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
26960
 
+  *) ac_try_echo=$ac_try;;
26961
 
+esac
26962
 
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
26963
 
+  (eval "$ac_link") 2>conftest.er1
26964
 
+  ac_status=$?
26965
 
+  grep -v '^ *+' conftest.er1 >conftest.err
26966
 
+  rm -f conftest.er1
26967
 
+  cat conftest.err >&5
26968
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
26969
 
+  (exit $ac_status); } && {
26970
 
+        test -z "$ac_c_werror_flag" ||
26971
 
+        test ! -s conftest.err
26972
 
+       } && test -s conftest$ac_exeext &&
26973
 
+       $as_test_x conftest$ac_exeext; then
26974
 
+  ac_cv_lib_dld_dld_link=yes
26975
 
+else
26976
 
+  echo "$as_me: failed program was:" >&5
26977
 
+sed 's/^/| /' conftest.$ac_ext >&5
26978
 
 
26979
 
-    hpux*)
26980
 
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
26981
 
-      # not for PA HP-UX.
26982
 
-      case $host_cpu in
26983
 
-      hppa*64*|ia64*)
 
36364
+       lt_prog_compiler_pic_CXX=-Kconform_pic
 
36365
       fi
 
36366
       ;;
 
36367
-
 
36368
     hpux*)
 
36369
       # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
 
36370
       # not for PA HP-UX.
 
36371
       case $host_cpu in
 
36372
       hppa*64*|ia64*)
26984
36373
-       # +Z the default
26985
 
-       ;;
26986
 
-      *)
 
36374
        ;;
 
36375
       *)
26987
36376
-       lt_prog_compiler_pic_F77='-fPIC'
26988
 
-       ;;
26989
 
-      esac
26990
 
-      ;;
26991
 
+       ac_cv_lib_dld_dld_link=no
26992
 
+fi
26993
 
 
26994
 
-    *)
 
36377
+       lt_prog_compiler_pic_CXX='-fPIC'
 
36378
        ;;
 
36379
       esac
 
36380
       ;;
 
36381
-
 
36382
+    *qnx* | *nto*)
 
36383
+      # QNX uses GNU C++, but need to define -shared option too, otherwise
 
36384
+      # it will coredump.
 
36385
+      lt_prog_compiler_pic_CXX='-fPIC -shared'
 
36386
+      ;;
 
36387
     *)
26995
36388
-      lt_prog_compiler_pic_F77='-fPIC'
26996
 
-      ;;
26997
 
-    esac
26998
 
-  else
 
36389
+      lt_prog_compiler_pic_CXX='-fPIC'
 
36390
       ;;
 
36391
     esac
 
36392
   else
26999
36393
-    # PORTME Check for flag to pass linker flags through the system compiler.
27000
 
-    case $host_os in
 
36394
     case $host_os in
27001
36395
-    aix*)
27002
36396
-      lt_prog_compiler_wl_F77='-Wl,'
27003
36397
-      if test "$host_cpu" = ia64; then
27017
36411
-         ;;
27018
36412
-       esac
27019
36413
-       ;;
27020
 
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
27021
 
+      conftest$ac_exeext conftest.$ac_ext
27022
 
+LIBS=$ac_check_lib_save_LIBS
27023
 
+fi
27024
 
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5
27025
 
+echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6; }
27026
 
+if test $ac_cv_lib_dld_dld_link = yes; then
27027
 
+  lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"
27028
 
+fi
27029
 
 
 
36414
-
27030
36415
-    mingw* | cygwin* | pw32* | os2*)
27031
36416
-      # This hack is so that the source file can tell whether it is being
27032
36417
-      # built for inclusion in a dll (and should export symbols for example).
27033
36418
-      lt_prog_compiler_pic_F77='-DDLL_EXPORT'
27034
36419
-      ;;
27035
 
 
 
36420
-
27036
36421
-    hpux9* | hpux10* | hpux11*)
27037
36422
-      lt_prog_compiler_wl_F77='-Wl,'
27038
36423
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
27040
36425
-      case $host_cpu in
27041
36426
-      hppa*64*|ia64*)
27042
36427
-       # +Z the default
27043
 
-       ;;
 
36428
+      aix[4-9]*)
 
36429
+       # All AIX code is PIC.
 
36430
+       if test "$host_cpu" = ia64; then
 
36431
+         # AIX 5 now supports IA64 processor
 
36432
+         lt_prog_compiler_static_CXX='-Bstatic'
 
36433
+       else
 
36434
+         lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp'
 
36435
+       fi
 
36436
        ;;
27044
36437
-      *)
27045
36438
-       lt_prog_compiler_pic_F77='+Z'
27046
 
-       ;;
 
36439
+      chorus*)
 
36440
+       case $cc_basename in
 
36441
+       cxch68*)
 
36442
+         # Green Hills C++ Compiler
 
36443
+         # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a"
 
36444
+         ;;
 
36445
+       esac
 
36446
+       ;;
 
36447
+      dgux*)
 
36448
+       case $cc_basename in
 
36449
+         ec++*)
 
36450
+           lt_prog_compiler_pic_CXX='-KPIC'
 
36451
+           ;;
 
36452
+         ghcx*)
 
36453
+           # Green Hills C++ Compiler
 
36454
+           lt_prog_compiler_pic_CXX='-pic'
 
36455
+           ;;
 
36456
+         *)
 
36457
+           ;;
 
36458
+       esac
 
36459
+       ;;
 
36460
+      freebsd* | dragonfly*)
 
36461
+       # FreeBSD uses GNU C++
 
36462
+       ;;
 
36463
+      hpux9* | hpux10* | hpux11*)
 
36464
+       case $cc_basename in
 
36465
+         CC*)
 
36466
+           lt_prog_compiler_wl_CXX='-Wl,'
 
36467
+           lt_prog_compiler_static_CXX='${wl}-a ${wl}archive'
 
36468
+           if test "$host_cpu" != ia64; then
 
36469
+             lt_prog_compiler_pic_CXX='+Z'
 
36470
+           fi
 
36471
+           ;;
 
36472
+         aCC*)
 
36473
+           lt_prog_compiler_wl_CXX='-Wl,'
 
36474
+           lt_prog_compiler_static_CXX='${wl}-a ${wl}archive'
 
36475
+           case $host_cpu in
 
36476
+           hppa*64*|ia64*)
 
36477
+             # +Z the default
 
36478
+             ;;
 
36479
+           *)
 
36480
+             lt_prog_compiler_pic_CXX='+Z'
 
36481
+             ;;
 
36482
+           esac
 
36483
+           ;;
 
36484
+         *)
 
36485
+           ;;
 
36486
+       esac
 
36487
+       ;;
 
36488
+      interix*)
 
36489
+       # This is c89, which is MS Visual C++ (no shared libs)
 
36490
+       # Anyone wants to do a port?
 
36491
+       ;;
 
36492
+      irix5* | irix6* | nonstopux*)
 
36493
+       case $cc_basename in
 
36494
+         CC*)
 
36495
+           lt_prog_compiler_wl_CXX='-Wl,'
 
36496
+           lt_prog_compiler_static_CXX='-non_shared'
 
36497
+           # CC pic flag -KPIC is the default.
 
36498
+           ;;
 
36499
+         *)
 
36500
+           ;;
 
36501
+       esac
 
36502
+       ;;
 
36503
+      linux* | k*bsd*-gnu)
 
36504
+       case $cc_basename in
 
36505
+         KCC*)
 
36506
+           # KAI C++ Compiler
 
36507
+           lt_prog_compiler_wl_CXX='--backend -Wl,'
 
36508
+           lt_prog_compiler_pic_CXX='-fPIC'
 
36509
+           ;;
 
36510
+         icpc* | ecpc* )
 
36511
+           # Intel C++
 
36512
+           lt_prog_compiler_wl_CXX='-Wl,'
 
36513
+           lt_prog_compiler_pic_CXX='-KPIC'
 
36514
+           lt_prog_compiler_static_CXX='-static'
 
36515
+           ;;
 
36516
+         pgCC* | pgcpp*)
 
36517
+           # Portland Group C++ compiler
 
36518
+           lt_prog_compiler_wl_CXX='-Wl,'
 
36519
+           lt_prog_compiler_pic_CXX='-fpic'
 
36520
+           lt_prog_compiler_static_CXX='-Bstatic'
 
36521
+           ;;
 
36522
+         cxx*)
 
36523
+           # Compaq C++
 
36524
+           # Make sure the PIC flag is empty.  It appears that all Alpha
 
36525
+           # Linux and Compaq Tru64 Unix objects are PIC.
 
36526
+           lt_prog_compiler_pic_CXX=
 
36527
+           lt_prog_compiler_static_CXX='-non_shared'
 
36528
+           ;;
 
36529
+         xlc* | xlC*)
 
36530
+           # IBM XL 8.0 on PPC
 
36531
+           lt_prog_compiler_wl_CXX='-Wl,'
 
36532
+           lt_prog_compiler_pic_CXX='-qpic'
 
36533
+           lt_prog_compiler_static_CXX='-qstaticlink'
 
36534
+           ;;
 
36535
+         *)
 
36536
+           case `$CC -V 2>&1 | sed 5q` in
 
36537
+           *Sun\ C*)
 
36538
+             # Sun C++ 5.9
 
36539
+             lt_prog_compiler_pic_CXX='-KPIC'
 
36540
+             lt_prog_compiler_static_CXX='-Bstatic'
 
36541
+             lt_prog_compiler_wl_CXX='-Qoption ld '
 
36542
+             ;;
 
36543
+           esac
 
36544
+           ;;
 
36545
+       esac
 
36546
+       ;;
 
36547
+      lynxos*)
 
36548
+       ;;
 
36549
+      m88k*)
 
36550
+       ;;
 
36551
+      mvs*)
 
36552
+       case $cc_basename in
 
36553
+         cxx*)
 
36554
+           lt_prog_compiler_pic_CXX='-W c,exportall'
 
36555
+           ;;
 
36556
+         *)
 
36557
+           ;;
 
36558
+       esac
 
36559
+       ;;
 
36560
+      netbsd* | netbsdelf*-gnu)
 
36561
+       ;;
 
36562
+      *qnx* | *nto*)
 
36563
+        # QNX uses GNU C++, but need to define -shared option too, otherwise
 
36564
+        # it will coredump.
 
36565
+        lt_prog_compiler_pic_CXX='-fPIC -shared'
 
36566
+        ;;
 
36567
+      osf3* | osf4* | osf5*)
 
36568
+       case $cc_basename in
 
36569
+         KCC*)
 
36570
+           lt_prog_compiler_wl_CXX='--backend -Wl,'
 
36571
+           ;;
 
36572
+         RCC*)
 
36573
+           # Rational C++ 2.4.1
 
36574
+           lt_prog_compiler_pic_CXX='-pic'
 
36575
+           ;;
 
36576
+         cxx*)
 
36577
+           # Digital/Compaq C++
 
36578
+           lt_prog_compiler_wl_CXX='-Wl,'
 
36579
+           # Make sure the PIC flag is empty.  It appears that all Alpha
 
36580
+           # Linux and Compaq Tru64 Unix objects are PIC.
 
36581
+           lt_prog_compiler_pic_CXX=
 
36582
+           lt_prog_compiler_static_CXX='-non_shared'
 
36583
+           ;;
 
36584
+         *)
 
36585
+           ;;
 
36586
+       esac
 
36587
+       ;;
 
36588
+      psos*)
 
36589
+       ;;
 
36590
+      solaris*)
 
36591
+       case $cc_basename in
 
36592
+         CC*)
 
36593
+           # Sun C++ 4.2, 5.x and Centerline C++
 
36594
+           lt_prog_compiler_pic_CXX='-KPIC'
 
36595
+           lt_prog_compiler_static_CXX='-Bstatic'
 
36596
+           lt_prog_compiler_wl_CXX='-Qoption ld '
 
36597
+           ;;
 
36598
+         gcx*)
 
36599
+           # Green Hills C++ Compiler
 
36600
+           lt_prog_compiler_pic_CXX='-PIC'
 
36601
+           ;;
 
36602
+         *)
 
36603
+           ;;
 
36604
+       esac
 
36605
+       ;;
 
36606
+      sunos4*)
 
36607
+       case $cc_basename in
 
36608
+         CC*)
 
36609
+           # Sun C++ 4.x
 
36610
+           lt_prog_compiler_pic_CXX='-pic'
 
36611
+           lt_prog_compiler_static_CXX='-Bstatic'
 
36612
+           ;;
 
36613
+         lcc*)
 
36614
+           # Lucid
 
36615
+           lt_prog_compiler_pic_CXX='-pic'
 
36616
+           ;;
 
36617
+         *)
 
36618
+           ;;
 
36619
+       esac
 
36620
+       ;;
 
36621
+      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
 
36622
+       case $cc_basename in
 
36623
+         CC*)
 
36624
+           lt_prog_compiler_wl_CXX='-Wl,'
 
36625
+           lt_prog_compiler_pic_CXX='-KPIC'
 
36626
+           lt_prog_compiler_static_CXX='-Bstatic'
 
36627
+           ;;
 
36628
+       esac
 
36629
        ;;
27047
36630
-      esac
27048
36631
-      # Is there a better lt_prog_compiler_static that works with the bundled CC?
27049
36632
-      lt_prog_compiler_static_F77='${wl}-a ${wl}archive'
27050
36633
-      ;;
27051
 
+fi
27052
 
 
 
36634
-
27053
36635
-    irix5* | irix6* | nonstopux*)
27054
36636
-      lt_prog_compiler_wl_F77='-Wl,'
27055
36637
-      # PIC (with -KPIC) is the default.
27056
36638
-      lt_prog_compiler_static_F77='-non_shared'
27057
36639
-      ;;
27058
 
 
 
36640
-
27059
36641
-    newsos6)
27060
36642
-      lt_prog_compiler_pic_F77='-KPIC'
27061
36643
-      lt_prog_compiler_static_F77='-Bstatic'
27062
36644
-      ;;
27063
 
+fi
27064
 
 
 
36645
-
27065
36646
-    linux* | k*bsd*-gnu)
27066
36647
-      case $cc_basename in
27067
36648
-      icc* | ecc*)
27095
36676
-         lt_prog_compiler_static_F77='-Bstatic'
27096
36677
-         lt_prog_compiler_wl_F77=''
27097
36678
-         ;;
27098
 
-       esac
27099
 
-       ;;
 
36679
+      tandem*)
 
36680
+       case $cc_basename in
 
36681
+         NCC*)
 
36682
+           # NonStop-UX NCC 3.20
 
36683
+           lt_prog_compiler_pic_CXX='-KPIC'
 
36684
+           ;;
 
36685
+         *)
 
36686
+           ;;
 
36687
        esac
 
36688
        ;;
27100
36689
-      esac
27101
36690
-      ;;
27102
 
 
 
36691
-
27103
36692
-    osf3* | osf4* | osf5*)
27104
36693
-      lt_prog_compiler_wl_F77='-Wl,'
27105
36694
-      # All OSF/1 code is PIC.
27106
36695
-      lt_prog_compiler_static_F77='-non_shared'
27107
36696
-      ;;
27108
 
+fi
27109
 
 
 
36697
-
27110
36698
-    rdos*)
27111
36699
-      lt_prog_compiler_static_F77='-non_shared'
27112
36700
-      ;;
27113
 
 
 
36701
-
27114
36702
-    solaris*)
27115
36703
-      lt_prog_compiler_pic_F77='-KPIC'
27116
36704
-      lt_prog_compiler_static_F77='-Bstatic'
27117
36705
-      case $cc_basename in
27118
36706
-      f77* | f90* | f95*)
27119
36707
-       lt_prog_compiler_wl_F77='-Qoption ld ';;
27120
 
-      *)
 
36708
+      vxworks*)
 
36709
+       ;;
 
36710
       *)
27121
36711
-       lt_prog_compiler_wl_F77='-Wl,';;
27122
36712
-      esac
27123
36713
-      ;;
27124
 
+fi
27125
 
 
 
36714
-
27126
36715
-    sunos4*)
27127
36716
-      lt_prog_compiler_wl_F77='-Qoption ld '
27128
36717
-      lt_prog_compiler_pic_F77='-PIC'
27129
36718
-      lt_prog_compiler_static_F77='-Bstatic'
27130
36719
-      ;;
27131
 
 
 
36720
-
27132
36721
-    sysv4 | sysv4.2uw2* | sysv4.3*)
27133
36722
-      lt_prog_compiler_wl_F77='-Wl,'
27134
36723
-      lt_prog_compiler_pic_F77='-KPIC'
27135
36724
-      lt_prog_compiler_static_F77='-Bstatic'
27136
 
+fi
27137
 
+
27138
 
       ;;
27139
 
+  esac
27140
 
 
 
36725
-      ;;
 
36726
-
27141
36727
-    sysv4*MP*)
27142
36728
-      if test -d /usr/nec ;then
27143
36729
-       lt_prog_compiler_pic_F77='-Kconform_pic'
27144
36730
-       lt_prog_compiler_static_F77='-Bstatic'
27145
 
+  if test "x$lt_cv_dlopen" != xno; then
27146
 
+    enable_dlopen=yes
27147
 
+  else
27148
 
+    enable_dlopen=no
27149
 
       fi
 
36731
-      fi
27150
36732
-      ;;
27151
 
 
 
36733
-
27152
36734
-    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
27153
36735
-      lt_prog_compiler_wl_F77='-Wl,'
27154
36736
-      lt_prog_compiler_pic_F77='-KPIC'
27155
36737
-      lt_prog_compiler_static_F77='-Bstatic'
27156
36738
-      ;;
27157
 
+  case $lt_cv_dlopen in
27158
 
+  dlopen)
27159
 
+    save_CPPFLAGS="$CPPFLAGS"
27160
 
+    test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
27161
 
 
 
36739
-
27162
36740
-    unicos*)
27163
36741
-      lt_prog_compiler_wl_F77='-Wl,'
27164
36742
-      lt_prog_compiler_can_build_shared_F77=no
27165
36743
-      ;;
27166
 
+    save_LDFLAGS="$LDFLAGS"
27167
 
+    wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
27168
 
 
 
36744
-
27169
36745
-    uts4*)
27170
36746
-      lt_prog_compiler_pic_F77='-pic'
27171
36747
-      lt_prog_compiler_static_F77='-Bstatic'
27172
36748
-      ;;
27173
 
+    save_LIBS="$LIBS"
27174
 
+    LIBS="$lt_cv_dlopen_libs $LIBS"
27175
 
 
 
36749
-
27176
36750
-    *)
27177
36751
-      lt_prog_compiler_can_build_shared_F77=no
27178
36752
-      ;;
27179
 
-    esac
27180
 
-  fi
27181
 
+    { echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5
27182
 
+echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6; }
27183
 
+if test "${lt_cv_dlopen_self+set}" = set; then
27184
 
+  echo $ECHO_N "(cached) $ECHO_C" >&6
27185
 
+else
27186
 
+         if test "$cross_compiling" = yes; then :
27187
 
+  lt_cv_dlopen_self=cross
27188
 
+else
27189
 
+  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
27190
 
+  lt_status=$lt_dlunknown
27191
 
+  cat > conftest.$ac_ext <<_LT_EOF
27192
 
+#line 14460 "configure"
27193
 
+#include "confdefs.h"
27194
 
 
27195
 
-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_F77" >&5
27196
 
-echo "${ECHO_T}$lt_prog_compiler_pic_F77" >&6; }
27197
 
+#if HAVE_DLFCN_H
27198
 
+#include <dlfcn.h>
27199
 
+#endif
27200
 
 
27201
 
-#
27202
 
-# Check to make sure the PIC flag actually works.
27203
 
-#
 
36753
+       lt_prog_compiler_can_build_shared_CXX=no
 
36754
+       ;;
 
36755
     esac
 
36756
   fi
 
36757
 
 
36758
-{ $as_echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_F77" >&5
 
36759
-$as_echo "$lt_prog_compiler_pic_F77" >&6; }
 
36760
+case $host_os in
 
36761
+  # For platforms which do not support PIC, -DPIC is meaningless:
 
36762
+  *djgpp*)
 
36763
+    lt_prog_compiler_pic_CXX=
 
36764
+    ;;
 
36765
+  *)
 
36766
+    lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC"
 
36767
+    ;;
 
36768
+esac
 
36769
+{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX" >&5
 
36770
+echo "${ECHO_T}$lt_prog_compiler_pic_CXX" >&6; }
 
36771
+
 
36772
+
 
36773
 
 
36774
 #
 
36775
 # Check to make sure the PIC flag actually works.
 
36776
 #
27204
36777
-if test -n "$lt_prog_compiler_pic_F77"; then
27205
 
+#include <stdio.h>
27206
 
 
27207
 
-{ echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5
27208
 
-echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... $ECHO_C" >&6; }
27209
 
-if test "${lt_prog_compiler_pic_works_F77+set}" = set; then
27210
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
27211
 
-else
27212
 
-  lt_prog_compiler_pic_works_F77=no
 
36778
-
 
36779
-{ $as_echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5
 
36780
-$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... " >&6; }
 
36781
-if test "${lt_cv_prog_compiler_pic_works_F77+set}" = set; then
 
36782
-  $as_echo_n "(cached) " >&6
 
36783
+if test -n "$lt_prog_compiler_pic_CXX"; then
 
36784
+  { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5
 
36785
+echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... $ECHO_C" >&6; }
 
36786
+if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then
 
36787
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
36788
 else
 
36789
-  lt_cv_prog_compiler_pic_works_F77=no
27213
36790
-  ac_outfile=conftest.$ac_objext
27214
 
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
 
36791
+  lt_cv_prog_compiler_pic_works_CXX=no
 
36792
+   ac_outfile=conftest.$ac_objext
 
36793
    echo "$lt_simple_compile_test_code" > conftest.$ac_ext
27215
36794
-   lt_compiler_flag="$lt_prog_compiler_pic_F77"
27216
 
-   # Insert the option either (1) after the last *FLAGS variable, or
27217
 
-   # (2) before a word containing "conftest.", or (3) at the end.
27218
 
-   # Note that $ac_compile itself does not contain backslashes and begins
27219
 
-   # with a dollar sign (not a hyphen), so the echo should work correctly.
27220
 
-   # The option is referenced via a variable to avoid confusing sed.
27221
 
-   lt_compile=`echo "$ac_compile" | $SED \
27222
 
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
27223
 
-   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
27224
 
-   -e 's:$: $lt_compiler_flag:'`
27225
 
-   (eval echo "\"\$as_me:16735: $lt_compile\"" >&5)
27226
 
-   (eval "$lt_compile" 2>conftest.err)
27227
 
-   ac_status=$?
27228
 
-   cat conftest.err >&5
27229
 
-   echo "$as_me:16739: \$? = $ac_status" >&5
27230
 
-   if (exit $ac_status) && test -s "$ac_outfile"; then
27231
 
-     # The compiler can only warn and ignore the option if not recognized
27232
 
-     # So say no if there are warnings other than the usual output.
 
36795
+   lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC"
 
36796
    # Insert the option either (1) after the last *FLAGS variable, or
 
36797
    # (2) before a word containing "conftest.", or (3) at the end.
 
36798
    # Note that $ac_compile itself does not contain backslashes and begins
 
36799
@@ -17403,57 +16560,50 @@
 
36800
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
36801
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
36802
    -e 's:$: $lt_compiler_flag:'`
 
36803
-   (eval echo "\"\$as_me:17406: $lt_compile\"" >&5)
 
36804
+   (eval echo "\"\$as_me:16563: $lt_compile\"" >&5)
 
36805
    (eval "$lt_compile" 2>conftest.err)
 
36806
    ac_status=$?
 
36807
    cat conftest.err >&5
 
36808
-   echo "$as_me:17410: \$? = $ac_status" >&5
 
36809
+   echo "$as_me:16567: \$? = $ac_status" >&5
 
36810
    if (exit $ac_status) && test -s "$ac_outfile"; then
 
36811
      # The compiler can only warn and ignore the option if not recognized
 
36812
      # So say no if there are warnings other than the usual output.
27233
36813
-     $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
27234
 
-     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
27235
 
-     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
27236
 
-       lt_prog_compiler_pic_works_F77=yes
27237
 
-     fi
27238
 
-   fi
 
36814
+     $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
 
36815
      $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
 
36816
      if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
 
36817
-       lt_cv_prog_compiler_pic_works_F77=yes
 
36818
+       lt_cv_prog_compiler_pic_works_CXX=yes
 
36819
      fi
 
36820
    fi
27239
36821
-   $rm conftest*
27240
 
+#ifdef RTLD_GLOBAL
27241
 
+#  define LT_DLGLOBAL          RTLD_GLOBAL
27242
 
+#else
27243
 
+#  ifdef DL_GLOBAL
27244
 
+#    define LT_DLGLOBAL                DL_GLOBAL
27245
 
+#  else
27246
 
+#    define LT_DLGLOBAL                0
27247
 
+#  endif
27248
 
+#endif
27249
 
 
27250
 
-fi
27251
 
-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_F77" >&5
27252
 
-echo "${ECHO_T}$lt_prog_compiler_pic_works_F77" >&6; }
27253
 
+/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
27254
 
+   find out it does not work in some platform. */
27255
 
+#ifndef LT_DLLAZY_OR_NOW
27256
 
+#  ifdef RTLD_LAZY
27257
 
+#    define LT_DLLAZY_OR_NOW           RTLD_LAZY
27258
 
+#  else
27259
 
+#    ifdef DL_LAZY
27260
 
+#      define LT_DLLAZY_OR_NOW         DL_LAZY
27261
 
+#    else
27262
 
+#      ifdef RTLD_NOW
27263
 
+#        define LT_DLLAZY_OR_NOW       RTLD_NOW
27264
 
+#      else
27265
 
+#        ifdef DL_NOW
27266
 
+#          define LT_DLLAZY_OR_NOW     DL_NOW
27267
 
+#        else
27268
 
+#          define LT_DLLAZY_OR_NOW     0
27269
 
+#        endif
27270
 
+#      endif
27271
 
+#    endif
27272
 
+#  endif
27273
 
+#endif
27274
 
 
27275
 
-if test x"$lt_prog_compiler_pic_works_F77" = xyes; then
 
36822
+   $RM conftest*
 
36823
 
 
36824
 fi
 
36825
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_F77" >&5
 
36826
-$as_echo "$lt_cv_prog_compiler_pic_works_F77" >&6; }
 
36827
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_CXX" >&5
 
36828
+echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_CXX" >&6; }
 
36829
 
 
36830
-if test x"$lt_cv_prog_compiler_pic_works_F77" = xyes; then
27276
36831
-    case $lt_prog_compiler_pic_F77 in
27277
 
-     "" | " "*) ;;
 
36832
+if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then
 
36833
+    case $lt_prog_compiler_pic_CXX in
 
36834
      "" | " "*) ;;
27278
36835
-     *) lt_prog_compiler_pic_F77=" $lt_prog_compiler_pic_F77" ;;
27279
 
+#ifdef __cplusplus
27280
 
+extern "C" void exit (int);
27281
 
+#endif
27282
 
+
27283
 
+void fnord() { int i=42;}
27284
 
+int main ()
27285
 
+{
27286
 
+  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
27287
 
+  int status = $lt_dlunknown;
27288
 
+
27289
 
+  if (self)
27290
 
+    {
27291
 
+      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
27292
 
+      else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
27293
 
+      /* dlclose (self); */
27294
 
+    }
27295
 
+  else
27296
 
+    puts (dlerror ());
27297
 
+
27298
 
+    exit (status);
27299
 
+}
27300
 
+_LT_EOF
27301
 
+  if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
27302
 
+  (eval $ac_link) 2>&5
27303
 
+  ac_status=$?
27304
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
27305
 
+  (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
27306
 
+    (./conftest; exit; ) >&5 2>/dev/null
27307
 
+    lt_status=$?
27308
 
+    case x$lt_status in
27309
 
+      x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;;
27310
 
+      x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;;
27311
 
+      x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;;
 
36836
+     *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;;
27312
36837
      esac
27313
 
-else
 
36838
 else
27314
36839
-    lt_prog_compiler_pic_F77=
27315
36840
-     lt_prog_compiler_can_build_shared_F77=no
27316
 
+  else :
27317
 
+    # compilation failed
27318
 
+    lt_cv_dlopen_self=no
27319
 
+  fi
 
36841
+    lt_prog_compiler_pic_CXX=
 
36842
+     lt_prog_compiler_can_build_shared_CXX=no
27320
36843
 fi
27321
 
+rm -fr conftest*
27322
 
+
27323
36844
 
27324
36845
 fi
27325
36846
-case $host_os in
27331
36852
-    lt_prog_compiler_pic_F77="$lt_prog_compiler_pic_F77"
27332
36853
-    ;;
27333
36854
-esac
27334
 
+{ echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5
27335
 
+echo "${ECHO_T}$lt_cv_dlopen_self" >&6; }
 
36855
+
 
36856
+
27336
36857
 
27337
 
-#
27338
 
-# Check to make sure the static flag actually works.
27339
 
-#
 
36858
 #
 
36859
 # Check to make sure the static flag actually works.
 
36860
 #
27340
36861
-wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\"
27341
 
-{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5
27342
 
-echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; }
27343
 
-if test "${lt_prog_compiler_static_works_F77+set}" = set; then
27344
 
+    if test "x$lt_cv_dlopen_self" = xyes; then
27345
 
+      wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
27346
 
+      { echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5
27347
 
+echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6; }
27348
 
+if test "${lt_cv_dlopen_self_static+set}" = set; then
27349
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
36862
-{ $as_echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5
 
36863
-$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
 
36864
-if test "${lt_cv_prog_compiler_static_works_F77+set}" = set; then
 
36865
-  $as_echo_n "(cached) " >&6
 
36866
+wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\"
 
36867
+{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5
 
36868
+echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; }
 
36869
+if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then
 
36870
+  echo $ECHO_N "(cached) $ECHO_C" >&6
27350
36871
 else
27351
 
-  lt_prog_compiler_static_works_F77=no
27352
 
-   save_LDFLAGS="$LDFLAGS"
27353
 
-   LDFLAGS="$LDFLAGS $lt_tmp_static_flag"
27354
 
-   echo "$lt_simple_link_test_code" > conftest.$ac_ext
27355
 
-   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
27356
 
-     # The linker can only warn and ignore the option if not recognized
27357
 
-     # So say no if there are warnings
27358
 
-     if test -s conftest.err; then
27359
 
-       # Append any errors to the config.log.
27360
 
-       cat conftest.err 1>&5
 
36872
-  lt_cv_prog_compiler_static_works_F77=no
 
36873
+  lt_cv_prog_compiler_static_works_CXX=no
 
36874
    save_LDFLAGS="$LDFLAGS"
 
36875
    LDFLAGS="$LDFLAGS $lt_tmp_static_flag"
 
36876
    echo "$lt_simple_link_test_code" > conftest.$ac_ext
 
36877
@@ -17463,36 +16613,90 @@
 
36878
      if test -s conftest.err; then
 
36879
        # Append any errors to the config.log.
 
36880
        cat conftest.err 1>&5
27361
36881
-       $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
27362
 
-       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
27363
 
-       if diff conftest.exp conftest.er2 >/dev/null; then
27364
 
-         lt_prog_compiler_static_works_F77=yes
27365
 
-       fi
27366
 
-     else
27367
 
-       lt_prog_compiler_static_works_F77=yes
27368
 
-     fi
27369
 
-   fi
27370
 
-   $rm conftest*
27371
 
-   LDFLAGS="$save_LDFLAGS"
27372
 
+         if test "$cross_compiling" = yes; then :
27373
 
+  lt_cv_dlopen_self_static=cross
27374
 
+else
27375
 
+  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
27376
 
+  lt_status=$lt_dlunknown
27377
 
+  cat > conftest.$ac_ext <<_LT_EOF
27378
 
+#line 14560 "configure"
27379
 
+#include "confdefs.h"
27380
 
 
27381
 
-fi
27382
 
-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_F77" >&5
27383
 
-echo "${ECHO_T}$lt_prog_compiler_static_works_F77" >&6; }
27384
 
+#if HAVE_DLFCN_H
27385
 
+#include <dlfcn.h>
27386
 
+#endif
27387
 
 
27388
 
-if test x"$lt_prog_compiler_static_works_F77" = xyes; then
27389
 
-    :
27390
 
-else
 
36882
+       $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
 
36883
        $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
 
36884
        if diff conftest.exp conftest.er2 >/dev/null; then
 
36885
-         lt_cv_prog_compiler_static_works_F77=yes
 
36886
+         lt_cv_prog_compiler_static_works_CXX=yes
 
36887
        fi
 
36888
      else
 
36889
-       lt_cv_prog_compiler_static_works_F77=yes
 
36890
+       lt_cv_prog_compiler_static_works_CXX=yes
 
36891
      fi
 
36892
    fi
 
36893
-   $rm -r conftest*
 
36894
+   $RM -r conftest*
 
36895
    LDFLAGS="$save_LDFLAGS"
 
36896
 
 
36897
 fi
 
36898
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_F77" >&5
 
36899
-$as_echo "$lt_cv_prog_compiler_static_works_F77" >&6; }
 
36900
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_CXX" >&5
 
36901
+echo "${ECHO_T}$lt_cv_prog_compiler_static_works_CXX" >&6; }
 
36902
 
 
36903
-if test x"$lt_cv_prog_compiler_static_works_F77" = xyes; then
 
36904
+if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then
 
36905
     :
 
36906
 else
27391
36907
-    lt_prog_compiler_static_F77=
27392
 
-fi
27393
 
+#include <stdio.h>
27394
 
 
27395
 
+#ifdef RTLD_GLOBAL
27396
 
+#  define LT_DLGLOBAL          RTLD_GLOBAL
27397
 
+#else
27398
 
+#  ifdef DL_GLOBAL
27399
 
+#    define LT_DLGLOBAL                DL_GLOBAL
27400
 
+#  else
27401
 
+#    define LT_DLGLOBAL                0
27402
 
+#  endif
27403
 
+#endif
27404
 
 
27405
 
-{ echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
27406
 
-echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; }
 
36908
+    lt_prog_compiler_static_CXX=
 
36909
+fi
 
36910
+
 
36911
+
 
36912
+
 
36913
+
 
36914
+    { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
 
36915
+echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; }
 
36916
+if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then
 
36917
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
36918
+else
 
36919
+  lt_cv_prog_compiler_c_o_CXX=no
 
36920
+   $RM -r conftest 2>/dev/null
 
36921
+   mkdir conftest
 
36922
+   cd conftest
 
36923
+   mkdir out
 
36924
+   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
 
36925
+
 
36926
+   lt_compiler_flag="-o out/conftest2.$ac_objext"
 
36927
+   # Insert the option either (1) after the last *FLAGS variable, or
 
36928
+   # (2) before a word containing "conftest.", or (3) at the end.
 
36929
+   # Note that $ac_compile itself does not contain backslashes and begins
 
36930
+   # with a dollar sign (not a hyphen), so the echo should work correctly.
 
36931
+   lt_compile=`echo "$ac_compile" | $SED \
 
36932
+   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
36933
+   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
36934
+   -e 's:$: $lt_compiler_flag:'`
 
36935
+   (eval echo "\"\$as_me:16662: $lt_compile\"" >&5)
 
36936
+   (eval "$lt_compile" 2>out/conftest.err)
 
36937
+   ac_status=$?
 
36938
+   cat out/conftest.err >&5
 
36939
+   echo "$as_me:16666: \$? = $ac_status" >&5
 
36940
+   if (exit $ac_status) && test -s out/conftest2.$ac_objext
 
36941
+   then
 
36942
+     # The compiler can only warn and ignore the option if not recognized
 
36943
+     # So say no if there are warnings
 
36944
+     $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp
 
36945
+     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
 
36946
+     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
 
36947
+       lt_cv_prog_compiler_c_o_CXX=yes
 
36948
+     fi
 
36949
+   fi
 
36950
+   chmod u+w . 2>&5
 
36951
+   $RM conftest*
 
36952
+   # SGI C++ compiler will create directory out/ii_files/ for
 
36953
+   # template instantiation
 
36954
+   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
 
36955
+   $RM out/* && rmdir out
 
36956
+   cd ..
 
36957
+   $RM -r conftest
 
36958
+   $RM conftest*
 
36959
+
 
36960
 fi
 
36961
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5
 
36962
+echo "${ECHO_T}$lt_cv_prog_compiler_c_o_CXX" >&6; }
 
36963
+
 
36964
 
 
36965
 
 
36966
-{ $as_echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
 
36967
-$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
27407
36968
-if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then
27408
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
27409
 
-else
 
36969
-  $as_echo_n "(cached) " >&6
 
36970
+    { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
 
36971
+echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; }
 
36972
+if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then
 
36973
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
36974
 else
27410
36975
-  lt_cv_prog_compiler_c_o_F77=no
27411
36976
-   $rm -r conftest 2>/dev/null
27412
 
-   mkdir conftest
27413
 
-   cd conftest
27414
 
-   mkdir out
27415
 
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
27416
 
+/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
27417
 
+   find out it does not work in some platform. */
27418
 
+#ifndef LT_DLLAZY_OR_NOW
27419
 
+#  ifdef RTLD_LAZY
27420
 
+#    define LT_DLLAZY_OR_NOW           RTLD_LAZY
27421
 
+#  else
27422
 
+#    ifdef DL_LAZY
27423
 
+#      define LT_DLLAZY_OR_NOW         DL_LAZY
27424
 
+#    else
27425
 
+#      ifdef RTLD_NOW
27426
 
+#        define LT_DLLAZY_OR_NOW       RTLD_NOW
27427
 
+#      else
27428
 
+#        ifdef DL_NOW
27429
 
+#          define LT_DLLAZY_OR_NOW     DL_NOW
27430
 
+#        else
27431
 
+#          define LT_DLLAZY_OR_NOW     0
27432
 
+#        endif
27433
 
+#      endif
27434
 
+#    endif
27435
 
+#  endif
27436
 
+#endif
27437
 
 
27438
 
-   lt_compiler_flag="-o out/conftest2.$ac_objext"
27439
 
-   # Insert the option either (1) after the last *FLAGS variable, or
27440
 
-   # (2) before a word containing "conftest.", or (3) at the end.
27441
 
-   # Note that $ac_compile itself does not contain backslashes and begins
27442
 
-   # with a dollar sign (not a hyphen), so the echo should work correctly.
27443
 
-   lt_compile=`echo "$ac_compile" | $SED \
27444
 
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
27445
 
-   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
27446
 
-   -e 's:$: $lt_compiler_flag:'`
27447
 
-   (eval echo "\"\$as_me:16839: $lt_compile\"" >&5)
27448
 
-   (eval "$lt_compile" 2>out/conftest.err)
27449
 
-   ac_status=$?
27450
 
-   cat out/conftest.err >&5
27451
 
-   echo "$as_me:16843: \$? = $ac_status" >&5
27452
 
-   if (exit $ac_status) && test -s out/conftest2.$ac_objext
27453
 
-   then
27454
 
-     # The compiler can only warn and ignore the option if not recognized
27455
 
-     # So say no if there are warnings
 
36977
+  lt_cv_prog_compiler_c_o_CXX=no
 
36978
+   $RM -r conftest 2>/dev/null
 
36979
    mkdir conftest
 
36980
    cd conftest
 
36981
    mkdir out
 
36982
@@ -17507,1095 +16711,231 @@
 
36983
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
36984
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
36985
    -e 's:$: $lt_compiler_flag:'`
 
36986
-   (eval echo "\"\$as_me:17510: $lt_compile\"" >&5)
 
36987
+   (eval echo "\"\$as_me:16714: $lt_compile\"" >&5)
 
36988
    (eval "$lt_compile" 2>out/conftest.err)
 
36989
    ac_status=$?
 
36990
    cat out/conftest.err >&5
 
36991
-   echo "$as_me:17514: \$? = $ac_status" >&5
 
36992
+   echo "$as_me:16718: \$? = $ac_status" >&5
 
36993
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
 
36994
    then
 
36995
      # The compiler can only warn and ignore the option if not recognized
 
36996
      # So say no if there are warnings
27456
36997
-     $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp
27457
 
-     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
27458
 
-     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
 
36998
+     $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp
 
36999
      $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
 
37000
      if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
27459
37001
-       lt_cv_prog_compiler_c_o_F77=yes
27460
 
-     fi
27461
 
-   fi
27462
 
-   chmod u+w . 2>&5
 
37002
+       lt_cv_prog_compiler_c_o_CXX=yes
 
37003
      fi
 
37004
    fi
 
37005
    chmod u+w . 2>&5
27463
37006
-   $rm conftest*
27464
 
-   # SGI C++ compiler will create directory out/ii_files/ for
27465
 
-   # template instantiation
 
37007
+   $RM conftest*
 
37008
    # SGI C++ compiler will create directory out/ii_files/ for
 
37009
    # template instantiation
27466
37010
-   test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files
27467
37011
-   $rm out/* && rmdir out
27468
 
-   cd ..
 
37012
+   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
 
37013
+   $RM out/* && rmdir out
 
37014
    cd ..
27469
37015
-   rmdir conftest
27470
37016
-   $rm conftest*
27471
 
+#ifdef __cplusplus
27472
 
+extern "C" void exit (int);
27473
 
+#endif
27474
 
 
27475
 
-fi
27476
 
-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_F77" >&5
27477
 
-echo "${ECHO_T}$lt_cv_prog_compiler_c_o_F77" >&6; }
27478
 
+void fnord() { int i=42;}
27479
 
+int main ()
27480
 
+{
27481
 
+  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
27482
 
+  int status = $lt_dlunknown;
27483
 
 
27484
 
+  if (self)
27485
 
+    {
27486
 
+      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
27487
 
+      else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
27488
 
+      /* dlclose (self); */
27489
 
+    }
27490
 
+  else
27491
 
+    puts (dlerror ());
27492
 
 
27493
 
-hard_links="nottested"
 
37017
+   $RM -r conftest
 
37018
+   $RM conftest*
 
37019
 
 
37020
 fi
 
37021
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_F77" >&5
 
37022
-$as_echo "$lt_cv_prog_compiler_c_o_F77" >&6; }
 
37023
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5
 
37024
+echo "${ECHO_T}$lt_cv_prog_compiler_c_o_CXX" >&6; }
 
37025
+
 
37026
+
 
37027
 
 
37028
 
 
37029
 hard_links="nottested"
27494
37030
-if test "$lt_cv_prog_compiler_c_o_F77" = no && test "$need_locks" != no; then
27495
 
-  # do not overwrite the value of need_locks provided by the user
27496
 
-  { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5
27497
 
-echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; }
27498
 
-  hard_links=yes
 
37031
+if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then
 
37032
   # do not overwrite the value of need_locks provided by the user
 
37033
-  { $as_echo "$as_me:$LINENO: checking if we can lock with hard links" >&5
 
37034
-$as_echo_n "checking if we can lock with hard links... " >&6; }
 
37035
+  { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5
 
37036
+echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; }
 
37037
   hard_links=yes
27499
37038
-  $rm conftest*
27500
 
-  ln conftest.a conftest.b 2>/dev/null && hard_links=no
27501
 
-  touch conftest.a
27502
 
-  ln conftest.a conftest.b 2>&5 || hard_links=no
27503
 
-  ln conftest.a conftest.b 2>/dev/null && hard_links=no
27504
 
-  { echo "$as_me:$LINENO: result: $hard_links" >&5
27505
 
-echo "${ECHO_T}$hard_links" >&6; }
27506
 
-  if test "$hard_links" = no; then
27507
 
-    { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
27508
 
-echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
27509
 
-    need_locks=warn
27510
 
+    exit (status);
27511
 
+}
27512
 
+_LT_EOF
27513
 
+  if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
27514
 
+  (eval $ac_link) 2>&5
27515
 
+  ac_status=$?
27516
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
27517
 
+  (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
27518
 
+    (./conftest; exit; ) >&5 2>/dev/null
27519
 
+    lt_status=$?
27520
 
+    case x$lt_status in
27521
 
+      x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;;
27522
 
+      x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;;
27523
 
+      x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;;
27524
 
+    esac
27525
 
+  else :
27526
 
+    # compilation failed
27527
 
+    lt_cv_dlopen_self_static=no
27528
 
   fi
 
37039
+  $RM conftest*
 
37040
   ln conftest.a conftest.b 2>/dev/null && hard_links=no
 
37041
   touch conftest.a
 
37042
   ln conftest.a conftest.b 2>&5 || hard_links=no
 
37043
   ln conftest.a conftest.b 2>/dev/null && hard_links=no
 
37044
-  { $as_echo "$as_me:$LINENO: result: $hard_links" >&5
 
37045
-$as_echo "$hard_links" >&6; }
 
37046
+  { echo "$as_me:$LINENO: result: $hard_links" >&5
 
37047
+echo "${ECHO_T}$hard_links" >&6; }
 
37048
   if test "$hard_links" = no; then
 
37049
-    { $as_echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
 
37050
-$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
 
37051
+    { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
 
37052
+echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
 
37053
     need_locks=warn
 
37054
-  fi
27529
37055
-else
27530
37056
-  need_locks=no
27531
 
 fi
27532
 
+rm -fr conftest*
27533
 
 
27534
 
-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
27535
 
-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; }
 
37057
-fi
 
37058
-
 
37059
-{ $as_echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
 
37060
-$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; }
27536
37061
-
27537
37062
-  runpath_var=
27538
37063
-  allow_undefined_flag_F77=
27563
37088
-  # it will be wrapped by ` (' and `)$', so one must not match beginning or
27564
37089
-  # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
27565
37090
-  # as well as any symbol that contains `d'.
27566
 
-  exclude_expsyms_F77="_GLOBAL_OFFSET_TABLE_"
 
37091
-  exclude_expsyms_F77='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
27567
37092
-  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
27568
37093
-  # platforms (ab)use it in PIC code, but their linkers get confused if
27569
37094
-  # the symbol is explicitly referenced.  Since portable code cannot
27570
37095
-  # rely on this symbol name, it's probably fine to never include it in
27571
37096
-  # preloaded symbol tables.
 
37097
-  # Exclude shared library initialization/finalization symbols.
27572
37098
-  extract_expsyms_cmds=
27573
37099
-  # Just being paranoid about ensuring that cc_basename is set.
27574
37100
-  for cc_temp in $compiler""; do
27580
37106
-  esac
27581
37107
-done
27582
37108
-cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
27583
 
 
 
37109
-
27584
37110
-  case $host_os in
27585
37111
-  cygwin* | mingw* | pw32*)
27586
37112
-    # FIXME: the MSVC++ port hasn't been tested in a loooong time
27588
37114
-    # Microsoft Visual C++.
27589
37115
-    if test "$GCC" != yes; then
27590
37116
-      with_gnu_ld=no
27591
 
+fi
27592
 
+{ echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5
27593
 
+echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6; }
27594
 
     fi
 
37117
-    fi
27595
37118
-    ;;
27596
37119
-  interix*)
27597
37120
-    # we just hope/assume this is gcc and not c89 (= MSVC++)
27599
37122
-    ;;
27600
37123
-  openbsd*)
27601
37124
-    with_gnu_ld=no
27602
 
+
27603
 
+    CPPFLAGS="$save_CPPFLAGS"
27604
 
+    LDFLAGS="$save_LDFLAGS"
27605
 
+    LIBS="$save_LIBS"
27606
 
     ;;
27607
 
   esac
27608
 
 
 
37125
-    ;;
 
37126
-  esac
 
37127
-
27609
37128
-  ld_shlibs_F77=yes
27610
37129
-  if test "$with_gnu_ld" = yes; then
27611
37130
-    # If archive_cmds runs LD, not CC, wlarc should be empty
27612
37131
-    wlarc='${wl}'
27613
 
+  case $lt_cv_dlopen_self in
27614
 
+  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
27615
 
+  *) enable_dlopen_self=unknown ;;
27616
 
+  esac
27617
 
 
 
37132
-
27618
37133
-    # Set some defaults for GNU ld with shared library support. These
27619
37134
-    # are reset later if shared libraries are not supported. Putting them
27620
37135
-    # here allows them to be overridden if necessary.
27634
37149
-      *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
27635
37150
-      *\ 2.11.*) ;; # other 2.11 versions
27636
37151
-      *) supports_anon_versioning=yes ;;
27637
 
+  case $lt_cv_dlopen_self_static in
27638
 
+  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
27639
 
+  *) enable_dlopen_self_static=unknown ;;
27640
 
     esac
27641
 
+fi
27642
 
 
 
37152
-    esac
 
37153
-
27643
37154
-    # See if GNU ld supports shared libraries.
27644
37155
-    case $host_os in
27645
 
-    aix3* | aix4* | aix5*)
 
37156
-    aix[3-9]*)
27646
37157
-      # On AIX/PPC, the GNU linker is very broken
27647
37158
-      if test "$host_cpu" != ia64; then
27648
37159
-       ld_shlibs_F77=no
27649
37160
-       cat <<EOF 1>&2
27650
 
 
 
37161
-
27651
37162
-*** Warning: the GNU linker, at least up to release 2.9.1, is reported
27652
37163
-*** to be unable to reliably create shared libraries on AIX.
27653
37164
-*** Therefore, libtool is disabling shared libraries support.  If you
27654
37165
-*** really care for shared libraries, you may want to modify your PATH
27655
37166
-*** so that a non-GNU linker is found, and then restart.
27656
 
 
 
37167
-
27657
37168
-EOF
27658
37169
-      fi
27659
37170
-      ;;
27660
 
 
 
37171
-
27661
37172
-    amigaos*)
27662
37173
-      archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
27663
37174
-      hardcode_libdir_flag_spec_F77='-L$libdir'
27671
37182
-      # them.
27672
37183
-      ld_shlibs_F77=no
27673
37184
-      ;;
27674
 
 
 
37185
-
27675
37186
-    beos*)
27676
37187
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
27677
37188
-       allow_undefined_flag_F77=unsupported
27682
37193
-       ld_shlibs_F77=no
27683
37194
-      fi
27684
37195
-      ;;
 
37196
+  fi
 
37197
+else
 
37198
+  need_locks=no
 
37199
+fi
27685
37200
 
27686
37201
-    cygwin* | mingw* | pw32*)
27687
37202
-      # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, F77) is actually meaningless,
27722
37237
-      archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
27723
37238
-      archive_expsym_cmds_F77='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
27724
37239
-      ;;
 
37240
+    { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
 
37241
+echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; }
27725
37242
 
27726
37243
-    gnu* | linux* | k*bsd*-gnu)
27727
37244
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
27751
37268
-         tmp_sharedflag='-shared' ;;
27752
37269
-       esac
27753
37270
-       archive_cmds_F77='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
37271
+  export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
 
37272
+  case $host_os in
 
37273
+  aix[4-9]*)
 
37274
+    # If we're using GNU nm, then we don't want the "-C" option.
 
37275
+    # -C means demangle to AIX nm, but means don't demangle with GNU nm
 
37276
+    if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
 
37277
+      export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
 
37278
+    else
 
37279
+      export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
 
37280
+    fi
 
37281
+    ;;
 
37282
+  pw32*)
 
37283
+    export_symbols_cmds_CXX="$ltdll_cmds"
 
37284
+  ;;
 
37285
+  cygwin* | mingw*)
 
37286
+    export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;/^.*[ ]__nm__/s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols'
 
37287
+  ;;
 
37288
+  linux* | k*bsd*-gnu)
 
37289
+    link_all_deplibs_CXX=no
 
37290
+  ;;
 
37291
+  *)
 
37292
+    export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
 
37293
+  ;;
 
37294
+  esac
 
37295
+  exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
27754
37296
 
27755
37297
-       if test $supports_anon_versioning = yes; then
27756
37298
-         archive_expsym_cmds_F77='$echo "{ global:" > $output_objdir/$libname.ver~
27762
37304
-       ld_shlibs_F77=no
27763
37305
-      fi
27764
37306
-      ;;
 
37307
+{ echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5
 
37308
+echo "${ECHO_T}$ld_shlibs_CXX" >&6; }
 
37309
+test "$ld_shlibs_CXX" = no && can_build_shared=no
27765
37310
 
27766
37311
-    netbsd*)
27767
37312
-      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
27772
37317
-       archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
27773
37318
-      fi
27774
37319
-      ;;
 
37320
+with_gnu_ld_CXX=$with_gnu_ld
27775
37321
 
27776
37322
-    solaris*)
27777
37323
-      if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
27814
37360
-           hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
27815
37361
-           archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib'
27816
37362
-           archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib'
27817
 
+striplib=
27818
 
+old_striplib=
27819
 
+{ echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5
27820
 
+echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6; }
27821
 
+if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
27822
 
+  test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
27823
 
+  test -z "$striplib" && striplib="$STRIP --strip-unneeded"
27824
 
+  { echo "$as_me:$LINENO: result: yes" >&5
27825
 
+echo "${ECHO_T}yes" >&6; }
27826
 
+else
27827
 
+# FIXME - insert some real tests, host_os isn't really good enough
27828
 
+  case $host_os in
27829
 
+  darwin*)
27830
 
+    if test -n "$STRIP" ; then
27831
 
+      striplib="$STRIP -x"
27832
 
+      old_striplib="$STRIP -S"
27833
 
+      { echo "$as_me:$LINENO: result: yes" >&5
27834
 
+echo "${ECHO_T}yes" >&6; }
27835
 
          else
 
37363
-         else
27836
37364
-           ld_shlibs_F77=no
27837
 
+      { echo "$as_me:$LINENO: result: no" >&5
27838
 
+echo "${ECHO_T}no" >&6; }
27839
 
          fi
27840
 
        ;;
 
37365
-         fi
 
37366
-       ;;
27841
37367
-      esac
27842
 
+  *)
27843
 
+    { echo "$as_me:$LINENO: result: no" >&5
27844
 
+echo "${ECHO_T}no" >&6; }
27845
 
       ;;
27846
 
+  esac
27847
 
+fi
 
37368
-      ;;
 
37369
+#
 
37370
+# Do we need to explicitly link libc?
 
37371
+#
 
37372
+case "x$archive_cmds_need_lc_CXX" in
 
37373
+x|xyes)
 
37374
+  # Assume -lc should be added
 
37375
+  archive_cmds_need_lc_CXX=yes
27848
37376
 
27849
37377
-    sunos4*)
27850
37378
-      archive_cmds_F77='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
27851
37379
-      wlarc=
27852
37380
-      hardcode_direct_F77=yes
27853
37381
-      hardcode_shlibpath_var_F77=no
27854
 
+
27855
 
+
27856
 
+
27857
 
+
27858
 
+
27859
 
+
27860
 
+
27861
 
+
27862
 
+
27863
 
+
27864
 
+
27865
 
+  # Report which library types will actually be built
27866
 
+  { echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5
27867
 
+echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; }
27868
 
+  { echo "$as_me:$LINENO: result: $can_build_shared" >&5
27869
 
+echo "${ECHO_T}$can_build_shared" >&6; }
27870
 
+
27871
 
+  { echo "$as_me:$LINENO: checking whether to build shared libraries" >&5
27872
 
+echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; }
27873
 
+  test "$can_build_shared" = "no" && enable_shared=no
27874
 
+
27875
 
+  # On AIX, shared libraries and static libraries use the same namespace, and
27876
 
+  # are all built from PIC.
27877
 
+  case $host_os in
27878
 
+  aix3*)
27879
 
+    test "$enable_shared" = yes && enable_static=no
27880
 
+    if test -n "$RANLIB"; then
27881
 
+      archive_cmds="$archive_cmds~\$RANLIB \$lib"
27882
 
+      postinstall_cmds='$RANLIB $lib'
27883
 
+    fi
 
37382
+  if test "$enable_shared" = yes && test "$GCC" = yes; then
 
37383
+    case $archive_cmds_CXX in
 
37384
+    *'~'*)
 
37385
+      # FIXME: we may have to deal with multi-command sequences.
27884
37386
       ;;
 
37387
+    '$CC '*)
 
37388
+      # Test whether the compiler implicitly links with -lc since on some
 
37389
+      # systems, -lgcc has to come before -lc. If gcc already passes -lc
 
37390
+      # to ld, don't add -lc before -lgcc.
 
37391
+      { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
 
37392
+echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; }
 
37393
+      $RM conftest*
 
37394
+      echo "$lt_simple_compile_test_code" > conftest.$ac_ext
27885
37395
 
27886
37396
-    *)
27887
37397
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
27888
37398
-       archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
27889
37399
-       archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
27890
 
-      else
 
37400
+      if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
37401
+  (eval $ac_compile) 2>&5
 
37402
+  ac_status=$?
 
37403
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
37404
+  (exit $ac_status); } 2>conftest.err; then
 
37405
+        soname=conftest
 
37406
+        lib=conftest
 
37407
+        libobjs=conftest.$ac_objext
 
37408
+        deplibs=
 
37409
+        wl=$lt_prog_compiler_wl_CXX
 
37410
+       pic_flag=$lt_prog_compiler_pic_CXX
 
37411
+        compiler_flags=-v
 
37412
+        linker_flags=-v
 
37413
+        verstring=
 
37414
+        output_objdir=.
 
37415
+        libname=conftest
 
37416
+        lt_save_allow_undefined_flag=$allow_undefined_flag_CXX
 
37417
+        allow_undefined_flag_CXX=
 
37418
+        if { (eval echo "$as_me:$LINENO: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\"") >&5
 
37419
+  (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5
 
37420
+  ac_status=$?
 
37421
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
37422
+  (exit $ac_status); }
 
37423
+        then
 
37424
+         archive_cmds_need_lc_CXX=no
 
37425
+        else
 
37426
+         archive_cmds_need_lc_CXX=yes
 
37427
+        fi
 
37428
+        allow_undefined_flag_CXX=$lt_save_allow_undefined_flag
 
37429
       else
27891
37430
-       ld_shlibs_F77=no
27892
 
+  aix[4-9]*)
27893
 
+    if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
27894
 
+      test "$enable_shared" = yes && enable_static=no
 
37431
+        cat conftest.err 1>&5
27895
37432
       fi
 
37433
+      $RM conftest*
 
37434
+      { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_CXX" >&5
 
37435
+echo "${ECHO_T}$archive_cmds_need_lc_CXX" >&6; }
27896
37436
       ;;
27897
37437
     esac
27898
 
+  { echo "$as_me:$LINENO: result: $enable_shared" >&5
27899
 
+echo "${ECHO_T}$enable_shared" >&6; }
 
37438
+  fi
 
37439
+  ;;
 
37440
+esac
 
37441
+
 
37442
+
 
37443
+
 
37444
+
 
37445
+
 
37446
+
 
37447
+
 
37448
+
27900
37449
 
27901
37450
-    if test "$ld_shlibs_F77" = no; then
27902
37451
-      runpath_var=
27920
37469
-       hardcode_direct_F77=unsupported
27921
37470
-      fi
27922
37471
-      ;;
27923
 
+  { echo "$as_me:$LINENO: checking whether to build static libraries" >&5
27924
 
+echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; }
27925
 
+  # Make sure either enable_shared or enable_static is yes.
27926
 
+  test "$enable_shared" = yes || enable_static=yes
27927
 
+  { echo "$as_me:$LINENO: result: $enable_static" >&5
27928
 
+echo "${ECHO_T}$enable_static" >&6; }
27929
 
 
27930
 
-    aix4* | aix5*)
 
37472
-
 
37473
-    aix[4-9]*)
27931
37474
-      if test "$host_cpu" = ia64; then
27932
37475
-       # On IA64, the linker does run time linking by default, so we don't
27933
37476
-       # have to do anything special.
27943
37486
-         export_symbols_cmds_F77='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols'
27944
37487
-       fi
27945
37488
-       aix_use_runtimelinking=no
27946
 
 
 
37489
-
27947
37490
-       # Test if we are trying to use run time linking or normal
27948
37491
-       # AIX style linking. If -brtl is somewhere in LDFLAGS, we
27949
37492
-       # need to do runtime linking.
27950
 
-       case $host_os in aix4.[23]|aix4.[23].*|aix5*)
 
37493
-       case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)
27951
37494
-         for ld_flag in $LDFLAGS; do
27952
37495
-         if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
27953
37496
-           aix_use_runtimelinking=yes
27956
37499
-         done
27957
37500
-         ;;
27958
37501
-       esac
27959
 
 
 
37502
-
27960
37503
-       exp_sym_flag='-bexport'
27961
37504
-       no_entry_flag='-bnoentry'
27962
37505
-      fi
27963
 
 
 
37506
-
27964
37507
-      # When large executables or shared objects are built, AIX ld can
27965
37508
-      # have problems creating the table of contents.  If linking a library
27966
37509
-      # or program results in "error TOC overflow" add -mminimal-toc to
27967
37510
-      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
27968
37511
-      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
27969
 
+fi
27970
 
+ac_ext=c
27971
 
+ac_cpp='$CPP $CPPFLAGS'
27972
 
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
27973
 
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
27974
 
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
27975
 
 
 
37512
-
27976
37513
-      archive_cmds_F77=''
27977
37514
-      hardcode_direct_F77=yes
27978
37515
-      hardcode_libdir_separator_F77=':'
27979
37516
-      link_all_deplibs_F77=yes
27980
 
+CC="$lt_save_CC"
27981
37517
 
27982
37518
-      if test "$GCC" = yes; then
27983
37519
-       case $host_os in aix4.[012]|aix4.[012].*)
28030
37566
-       # Determine the default libpath from the value encoded in an empty executable.
28031
37567
-       cat >conftest.$ac_ext <<_ACEOF
28032
37568
-      program main
28033
 
+ac_ext=cpp
28034
 
+ac_cpp='$CXXCPP $CPPFLAGS'
28035
 
+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
28036
 
+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
28037
 
+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
28038
37569
 
28039
37570
-      end
28040
37571
-_ACEOF
28044
37575
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
28045
37576
-  *) ac_try_echo=$ac_try;;
28046
37577
-esac
28047
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
37578
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
37579
-$as_echo "$ac_try_echo") >&5
28048
37580
-  (eval "$ac_link") 2>conftest.er1
28049
37581
-  ac_status=$?
28050
37582
-  grep -v '^ *+' conftest.er1 >conftest.err
28051
37583
-  rm -f conftest.er1
28052
37584
-  cat conftest.err >&5
28053
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
37585
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
28054
37586
-  (exit $ac_status); } && {
28055
37587
-        test -z "$ac_f77_werror_flag" ||
28056
37588
-        test ! -s conftest.err
28057
 
-       } && test -s conftest$ac_exeext &&
28058
 
-       $as_test_x conftest$ac_exeext; then
28059
 
+archive_cmds_need_lc_CXX=no
28060
 
+allow_undefined_flag_CXX=
28061
 
+always_export_symbols_CXX=no
28062
 
+archive_expsym_cmds_CXX=
28063
 
+compiler_needs_object_CXX=no
28064
 
+export_dynamic_flag_spec_CXX=
28065
 
+hardcode_direct_CXX=no
28066
 
+hardcode_direct_absolute_CXX=no
28067
 
+hardcode_libdir_flag_spec_CXX=
28068
 
+hardcode_libdir_flag_spec_ld_CXX=
28069
 
+hardcode_libdir_separator_CXX=
28070
 
+hardcode_minus_L_CXX=no
28071
 
+hardcode_shlibpath_var_CXX=unsupported
28072
 
+hardcode_automatic_CXX=no
28073
 
+inherit_rpath_CXX=no
28074
 
+module_cmds_CXX=
28075
 
+module_expsym_cmds_CXX=
28076
 
+link_all_deplibs_CXX=unknown
28077
 
+old_archive_cmds_CXX=$old_archive_cmds
28078
 
+no_undefined_flag_CXX=
28079
 
+whole_archive_flag_spec_CXX=
28080
 
+enable_shared_with_static_runtimes_CXX=no
 
37589
-       } && test -s conftest$ac_exeext && {
 
37590
-        test "$cross_compiling" = yes ||
 
37591
-        $as_test_x conftest$ac_exeext
 
37592
-       }; then
28081
37593
 
28082
37594
-lt_aix_libpath_sed='
28083
37595
-    /Import File Strings/,/^$/ {
28092
37604
-  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
28093
37605
-fi
28094
37606
-else
28095
 
-  echo "$as_me: failed program was:" >&5
 
37607
-  $as_echo "$as_me: failed program was:" >&5
28096
37608
-sed 's/^/| /' conftest.$ac_ext >&5
28097
 
+# Source file extension for C++ test sources.
28098
 
+ac_ext=cpp
28099
37609
 
28100
 
+# Object file extension for compiled C++ test sources.
28101
 
+objext=o
28102
 
+objext_CXX=$objext
28103
37610
 
28104
37611
-fi
28105
 
+# No sense in running all these tests if we already determined that
28106
 
+# the CXX compiler isn't working.  Some variables (like enable_shared)
28107
 
+# are currently assumed to apply to all compilers on this platform,
28108
 
+# and will be corrupted by setting them based on a non-working compiler.
28109
 
+if test "$_lt_caught_CXX_error" != yes; then
28110
 
+  # Code to be used in simple compile tests
28111
 
+  lt_simple_compile_test_code="int some_variable = 0;"
28112
37612
 
 
37613
-rm -rf conftest.dSYM
28113
37614
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
28114
37615
-      conftest$ac_exeext conftest.$ac_ext
28115
37616
-if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
28116
 
+  # Code to be used in simple link tests
28117
 
+  lt_simple_link_test_code='int main(int, char *[]) { return(0); }'
28118
37617
 
28119
37618
-       hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath"
28120
37619
-       archive_expsym_cmds_F77="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
28127
37626
-        # Determine the default libpath from the value encoded in an empty executable.
28128
37627
-        cat >conftest.$ac_ext <<_ACEOF
28129
37628
-      program main
28130
 
+  # ltmain only uses $CC for tagged configurations so make sure $CC is set.
28131
37629
 
28132
37630
-      end
28133
37631
-_ACEOF
28137
37635
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
28138
37636
-  *) ac_try_echo=$ac_try;;
28139
37637
-esac
28140
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
37638
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
37639
-$as_echo "$ac_try_echo") >&5
28141
37640
-  (eval "$ac_link") 2>conftest.er1
28142
37641
-  ac_status=$?
28143
37642
-  grep -v '^ *+' conftest.er1 >conftest.err
28144
37643
-  rm -f conftest.er1
28145
37644
-  cat conftest.err >&5
28146
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
37645
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
28147
37646
-  (exit $ac_status); } && {
28148
37647
-        test -z "$ac_f77_werror_flag" ||
28149
37648
-        test ! -s conftest.err
28150
 
-       } && test -s conftest$ac_exeext &&
28151
 
-       $as_test_x conftest$ac_exeext; then
 
37649
-       } && test -s conftest$ac_exeext && {
 
37650
-        test "$cross_compiling" = yes ||
 
37651
-        $as_test_x conftest$ac_exeext
 
37652
-       }; then
28152
37653
 
28153
37654
-lt_aix_libpath_sed='
28154
37655
-    /Import File Strings/,/^$/ {
28163
37664
-  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
28164
37665
-fi
28165
37666
-else
28166
 
-  echo "$as_me: failed program was:" >&5
 
37667
-  $as_echo "$as_me: failed program was:" >&5
28167
37668
-sed 's/^/| /' conftest.$ac_ext >&5
28168
37669
 
28169
37670
 
28170
37671
-fi
28171
37672
 
 
37673
-rm -rf conftest.dSYM
28172
37674
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
28173
37675
-      conftest$ac_exeext conftest.$ac_ext
28174
37676
-if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
28186
37688
-       fi
28187
37689
-      fi
28188
37690
-      ;;
28189
 
+# If no C compiler was specified, use CC.
28190
 
+LTCC=${LTCC-"$CC"}
28191
37691
 
28192
37692
-    amigaos*)
28193
37693
-      archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
28196
37696
-      # see comment about different semantics on the GNU ld section
28197
37697
-      ld_shlibs_F77=no
28198
37698
-      ;;
28199
 
+# If no C compiler flags were specified, use CFLAGS.
28200
 
+LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
28201
37699
 
28202
37700
-    bsdi[45]*)
28203
37701
-      export_dynamic_flag_spec_F77=-rdynamic
28204
37702
-      ;;
28205
 
+# Allow CC to be a program name with arguments.
28206
 
+compiler=$CC
28207
37703
 
28208
37704
-    cygwin* | mingw* | pw32*)
28209
37705
-      # When not using gcc, we currently assume that we are using
28243
37739
-               allow_undefined_flag_F77='${wl}-undefined ${wl}dynamic_lookup'
28244
37740
-               ;;
28245
37741
-           esac
28246
 
+  # save warnings/boilerplate of simple test code
28247
 
+  ac_outfile=conftest.$ac_objext
28248
 
+echo "$lt_simple_compile_test_code" >conftest.$ac_ext
28249
 
+eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
28250
 
+_lt_compiler_boilerplate=`cat conftest.err`
28251
 
+$RM conftest*
28252
 
+
28253
 
+  ac_outfile=conftest.$ac_objext
28254
 
+echo "$lt_simple_link_test_code" >conftest.$ac_ext
28255
 
+eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
28256
 
+_lt_linker_boilerplate=`cat conftest.err`
28257
 
+$RM -r conftest*
28258
 
+
28259
 
+
28260
 
+  # Allow CC to be a program name with arguments.
28261
 
+  lt_save_CC=$CC
28262
 
+  lt_save_LD=$LD
28263
 
+  lt_save_GCC=$GCC
28264
 
+  GCC=$GXX
28265
 
+  lt_save_with_gnu_ld=$with_gnu_ld
28266
 
+  lt_save_path_LD=$lt_cv_path_LD
28267
 
+  if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
28268
 
+    lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
28269
 
+  else
28270
 
+    $as_unset lt_cv_prog_gnu_ld
28271
 
          fi
 
37742
-         fi
28272
37743
-         ;;
28273
37744
-      esac
28274
37745
-      archive_cmds_need_lc_F77=no
28279
37750
-      link_all_deplibs_F77=yes
28280
37751
-    if test "$GCC" = yes ; then
28281
37752
-       output_verbose_link_cmd='echo'
28282
 
-        archive_cmds_F77='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
28283
 
-      module_cmds_F77='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
28284
 
-      # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
28285
 
-      archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
28286
 
-      module_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag  -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
28287
 
+  if test -n "${lt_cv_path_LDCXX+set}"; then
28288
 
+    lt_cv_path_LD=$lt_cv_path_LDCXX
28289
 
     else
 
37753
-        archive_cmds_F77="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
 
37754
-        module_cmds_F77="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
 
37755
-        archive_expsym_cmds_F77="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
 
37756
-        module_expsym_cmds_F77="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
 
37757
-    else
28290
37758
-      case $cc_basename in
28291
37759
-        xlc*)
28292
37760
-         output_verbose_link_cmd='echo'
28300
37768
-         ld_shlibs_F77=no
28301
37769
-          ;;
28302
37770
-      esac
28303
 
+    $as_unset lt_cv_path_LD
28304
 
     fi
 
37771
-    fi
28305
37772
-      ;;
28306
 
-
 
37773
 
28307
37774
-    dgux*)
28308
37775
-      archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
28309
37776
-      hardcode_libdir_flag_spec_F77='-L$libdir'
28310
37777
-      hardcode_shlibpath_var_F77=no
28311
37778
-      ;;
28312
 
-
 
37779
 
28313
37780
-    freebsd1*)
28314
37781
-      ld_shlibs_F77=no
28315
37782
-      ;;
28316
 
-
 
37783
 
28317
37784
-    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
28318
37785
-    # support.  Future versions do this automatically, but an explicit c++rt0.o
28319
37786
-    # does not break anything, and helps significantly (at the cost of a little
28324
37791
-      hardcode_direct_F77=yes
28325
37792
-      hardcode_shlibpath_var_F77=no
28326
37793
-      ;;
28327
 
-
 
37794
 
28328
37795
-    # Unfortunately, older versions of FreeBSD 2 do not have this feature.
28329
37796
-    freebsd2*)
28330
37797
-      archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
28332
37799
-      hardcode_minus_L_F77=yes
28333
37800
-      hardcode_shlibpath_var_F77=no
28334
37801
-      ;;
28335
 
+  test -z "${LDCXX+set}" || LD=$LDCXX
28336
 
+  CC=${CXX-"c++"}
28337
 
+  compiler=$CC
28338
 
+  compiler_CXX=$CC
28339
 
+  for cc_temp in $compiler""; do
28340
 
+  case $cc_temp in
28341
 
+    compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
28342
 
+    distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
28343
 
+    \-*) ;;
28344
 
+    *) break;;
28345
 
+  esac
28346
 
+done
28347
 
+cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
28348
37802
 
28349
37803
-    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
28350
37804
-    freebsd* | dragonfly*)
28357
37811
-    hpux9*)
28358
37812
-      if test "$GCC" = yes; then
28359
37813
-       archive_cmds_F77='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
28360
 
+  if test -n "$compiler"; then
28361
 
+    # We don't want -fno-exception when compiling C++ code, so set the
28362
 
+    # no_builtin_flag separately
28363
 
+    if test "$GXX" = yes; then
28364
 
+      lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin'
28365
 
       else
 
37814
-      else
28366
37815
-       archive_cmds_F77='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
28367
 
+      lt_prog_compiler_no_builtin_flag_CXX=
28368
 
       fi
 
37816
-      fi
28369
37817
-      hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir'
28370
37818
-      hardcode_libdir_separator_F77=:
28371
37819
-      hardcode_direct_F77=yes
28375
37823
-      hardcode_minus_L_F77=yes
28376
37824
-      export_dynamic_flag_spec_F77='${wl}-E'
28377
37825
-      ;;
28378
 
+    if test "$GXX" = yes; then
28379
 
+      # Set up default GNU C++ configuration
28380
37826
 
28381
37827
-    hpux10*)
28382
37828
-      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
28396
37842
-       hardcode_minus_L_F77=yes
28397
37843
-      fi
28398
37844
-      ;;
28399
 
+# Check whether --with-gnu-ld was given.
28400
 
+if test "${with_gnu_ld+set}" = set; then
28401
 
+  withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes
28402
 
+else
28403
 
+  with_gnu_ld=no
28404
 
+fi
28405
37845
 
28406
37846
-    hpux11*)
28407
37847
-      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
28412
37852
-       ia64*)
28413
37853
-         archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
28414
37854
-         ;;
28415
 
+ac_prog=ld
28416
 
+if test "$GCC" = yes; then
28417
 
+  # Check if gcc -print-prog-name=ld gives a path.
28418
 
+  { echo "$as_me:$LINENO: checking for ld used by $CC" >&5
28419
 
+echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; }
28420
 
+  case $host in
28421
 
+  *-*-mingw*)
28422
 
+    # gcc leaves a trailing carriage return which upsets mingw
28423
 
+    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
28424
 
        *)
 
37855
-       *)
28425
37856
-         archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
28426
37857
-         ;;
28427
 
+    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
28428
 
        esac
 
37858
-       esac
28429
37859
-      else
28430
37860
-       case $host_cpu in
28431
37861
-       hppa*64*)
28432
37862
-         archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
28433
 
+  case $ac_prog in
28434
 
+    # Accept absolute paths.
28435
 
+    [\\/]* | ?:[\\/]*)
28436
 
+      re_direlt='/[^/][^/]*/\.\./'
28437
 
+      # Canonicalize the pathname of ld
28438
 
+      ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
28439
 
+      while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
28440
 
+       ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
28441
 
+      done
28442
 
+      test -z "$LD" && LD="$ac_prog"
28443
 
          ;;
 
37863
-         ;;
28444
37864
-       ia64*)
28445
37865
-         archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
28446
 
+  "")
28447
 
+    # If it fails, then pretend we aren't using GCC.
28448
 
+    ac_prog=ld
28449
 
          ;;
28450
 
        *)
 
37866
-         ;;
 
37867
-       *)
28451
37868
-         archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
28452
 
+    # If it is relative, then search for the first ld in PATH.
28453
 
+    with_gnu_ld=unknown
28454
 
          ;;
28455
 
        esac
 
37869
-         ;;
 
37870
-       esac
28456
37871
-      fi
28457
37872
-      if test "$with_gnu_ld" = no; then
28458
37873
-       hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir'
28459
37874
-       hardcode_libdir_separator_F77=:
28460
 
-
 
37875
 
28461
37876
-       case $host_cpu in
28462
37877
-       hppa*64*|ia64*)
28463
37878
-         hardcode_libdir_flag_spec_ld_F77='+b $libdir'
28464
37879
-         hardcode_direct_F77=no
28465
37880
-         hardcode_shlibpath_var_F77=no
28466
 
+elif test "$with_gnu_ld" = yes; then
28467
 
+  { echo "$as_me:$LINENO: checking for GNU ld" >&5
28468
 
+echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; }
28469
 
+else
28470
 
+  { echo "$as_me:$LINENO: checking for non-GNU ld" >&5
28471
 
+echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; }
28472
 
+fi
28473
 
+if test "${lt_cv_path_LD+set}" = set; then
28474
 
+  echo $ECHO_N "(cached) $ECHO_C" >&6
28475
 
+else
28476
 
+  if test -z "$LD"; then
28477
 
+  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
28478
 
+  for ac_dir in $PATH; do
28479
 
+    IFS="$lt_save_ifs"
28480
 
+    test -z "$ac_dir" && ac_dir=.
28481
 
+    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
28482
 
+      lt_cv_path_LD="$ac_dir/$ac_prog"
28483
 
+      # Check to see if the program is GNU ld.  I'd rather use --version,
28484
 
+      # but apparently some variants of GNU ld only accept -v.
28485
 
+      # Break only if it was the GNU/non-GNU ld that we prefer.
28486
 
+      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
28487
 
+      *GNU* | *'with BFD'*)
28488
 
+       test "$with_gnu_ld" != no && break
28489
 
          ;;
28490
 
        *)
 
37881
-         ;;
 
37882
-       *)
28491
37883
-         hardcode_direct_F77=yes
28492
37884
-         export_dynamic_flag_spec_F77='${wl}-E'
28493
 
-
 
37885
 
28494
37886
-         # hardcode_minus_L: Not really in the search PATH,
28495
37887
-         # but as the default location of the library.
28496
37888
-         hardcode_minus_L_F77=yes
28497
 
+       test "$with_gnu_ld" != yes && break
28498
 
          ;;
28499
 
        esac
28500
 
       fi
 
37889
-         ;;
 
37890
-       esac
 
37891
-      fi
28501
37892
-      ;;
28502
 
+  done
28503
 
+  IFS="$lt_save_ifs"
28504
 
+else
28505
 
+  lt_cv_path_LD="$LD" # Let the user override the test with a path.
28506
 
+fi
28507
 
+fi
28508
37893
 
28509
37894
-    irix5* | irix6* | nonstopux*)
28510
37895
-      if test "$GCC" = yes; then
28516
37901
-      hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir'
28517
37902
-      hardcode_libdir_separator_F77=:
28518
37903
-      link_all_deplibs_F77=yes
28519
 
+LD="$lt_cv_path_LD"
28520
 
+if test -n "$LD"; then
28521
 
+  { echo "$as_me:$LINENO: result: $LD" >&5
28522
 
+echo "${ECHO_T}$LD" >&6; }
28523
 
+else
28524
 
+  { echo "$as_me:$LINENO: result: no" >&5
28525
 
+echo "${ECHO_T}no" >&6; }
28526
 
+fi
28527
 
+test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
28528
 
+echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
28529
 
+   { (exit 1); exit 1; }; }
28530
 
+{ echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
28531
 
+echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; }
28532
 
+if test "${lt_cv_prog_gnu_ld+set}" = set; then
28533
 
+  echo $ECHO_N "(cached) $ECHO_C" >&6
28534
 
+else
28535
 
+  # I'd rather use --version here, but apparently some GNU lds only accept -v.
28536
 
+case `$LD -v 2>&1 </dev/null` in
28537
 
+*GNU* | *'with BFD'*)
28538
 
+  lt_cv_prog_gnu_ld=yes
28539
 
       ;;
28540
 
-
 
37904
-      ;;
 
37905
 
28541
37906
-    netbsd*)
28542
37907
-      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
28543
37908
-       archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
28547
37912
-      hardcode_libdir_flag_spec_F77='-R$libdir'
28548
37913
-      hardcode_direct_F77=yes
28549
37914
-      hardcode_shlibpath_var_F77=no
28550
 
+*)
28551
 
+  lt_cv_prog_gnu_ld=no
28552
 
       ;;
28553
 
+esac
28554
 
+fi
28555
 
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5
28556
 
+echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; }
28557
 
+with_gnu_ld=$lt_cv_prog_gnu_ld
 
37915
-      ;;
28558
37916
 
28559
37917
-    newsos6)
28560
37918
-      archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
28630
37988
-    solaris*)
28631
37989
-      no_undefined_flag_F77=' -z text'
28632
37990
-      if test "$GCC" = yes; then
28633
 
+      # Check if GNU C++ uses GNU ld as the underlying linker, since the
28634
 
+      # archiving commands below assume that GNU ld is being used.
28635
 
+      if test "$with_gnu_ld" = yes; then
28636
 
+        archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
28637
 
+        archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
28638
 
+
28639
 
+        hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
28640
 
+        export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
28641
 
+
28642
 
+        # If archive_cmds runs LD, not CC, wlarc should be empty
28643
 
+        # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
28644
 
+        #     investigate it a little bit more. (MM)
28645
 
        wlarc='${wl}'
 
37991
-       wlarc='${wl}'
28646
37992
-       archive_cmds_F77='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
28647
37993
-       archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
28648
37994
-         $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp'
28649
 
+
28650
 
+        # ancient GNU ld didn't support --whole-archive et. al.
28651
 
+        if eval "`$CC -print-prog-name=ld` --help 2>&1" |
28652
 
+         $GREP 'no-whole-archive' > /dev/null; then
28653
 
+          whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
28654
 
       else
 
37995
-      else
28655
37996
-       wlarc=''
28656
37997
-       archive_cmds_F77='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
28657
37998
-       archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
28658
37999
-       $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
28659
 
+          whole_archive_flag_spec_CXX=
28660
 
       fi
 
38000
-      fi
28661
38001
-      hardcode_libdir_flag_spec_F77='-R$libdir'
28662
38002
-      hardcode_shlibpath_var_F77=no
28663
38003
-      case $host_os in
28669
38009
-       # Supported since Solaris 2.6 (maybe 2.5.1?)
28670
38010
-       if test "$GCC" = yes; then
28671
38011
-         whole_archive_flag_spec_F77='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
28672
 
        else
 
38012
-       else
28673
38013
-         whole_archive_flag_spec_F77='-z allextract$convenience -z defaultextract'
28674
 
+        with_gnu_ld=no
28675
 
+        wlarc=
28676
 
+
28677
 
+        # A generic and very simple default shared library creation
28678
 
+        # command for GNU C++ for the case where it uses the native
28679
 
+        # linker, instead of GNU ld.  If possible, this setting should
28680
 
+        # overridden to take advantage of the native linker features on
28681
 
+        # the platform it is being used on.
28682
 
+        archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
28683
 
        fi
 
38014
-       fi
28684
38015
-       ;;
28685
38016
-      esac
28686
38017
-      link_all_deplibs_F77=yes
28691
38022
-       # Use $CC to link under sequent, because it throws in some extra .o
28692
38023
-       # files that make .init and .fini sections work.
28693
38024
-       archive_cmds_F77='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
28694
 
+      # Commands to make compiler produce verbose output that lists
28695
 
+      # what "hidden" libraries, object files and flags are used when
28696
 
+      # linking a shared library.
28697
 
+      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"'
28698
 
+
28699
 
       else
 
38025
-      else
28700
38026
-       archive_cmds_F77='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
28701
 
+      GXX=no
28702
 
+      with_gnu_ld=no
28703
 
+      wlarc=
28704
 
       fi
 
38027
-      fi
28705
38028
-      hardcode_libdir_flag_spec_F77='-L$libdir'
28706
38029
-      hardcode_direct_F77=yes
28707
38030
-      hardcode_minus_L_F77=yes
28713
38036
-       sni)
28714
38037
-         archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
28715
38038
-         hardcode_direct_F77=yes # is this really true???
28716
 
+    # PORTME: fill in a description of your system's C++ link characteristics
28717
 
+    { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
28718
 
+echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; }
28719
 
+    ld_shlibs_CXX=yes
28720
 
+    case $host_os in
28721
 
+      aix3*)
28722
 
+        # FIXME: insert proper C++ library support
28723
 
+        ld_shlibs_CXX=no
28724
 
        ;;
 
38039
-       ;;
28725
38040
-       siemens)
28726
38041
-         ## LD is ld it makes a PLAMLIB
28727
38042
-         ## CC just makes a GrossModule.
28732
38047
-       motorola)
28733
38048
-         archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
28734
38049
-         hardcode_direct_F77=no #Motorola manual says yes, but my tests say they lie
28735
 
+      aix[4-9]*)
28736
 
+        if test "$host_cpu" = ia64; then
28737
 
+          # On IA64, the linker does run time linking by default, so we don't
28738
 
+          # have to do anything special.
28739
 
+          aix_use_runtimelinking=no
28740
 
+          exp_sym_flag='-Bexport'
28741
 
+          no_entry_flag=""
28742
 
+        else
28743
 
+          aix_use_runtimelinking=no
28744
 
+
28745
 
+          # Test if we are trying to use run time linking or normal
28746
 
+          # AIX style linking. If -brtl is somewhere in LDFLAGS, we
28747
 
+          # need to do runtime linking.
28748
 
+          case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)
28749
 
+           for ld_flag in $LDFLAGS; do
28750
 
+             case $ld_flag in
28751
 
+             *-brtl*)
28752
 
+               aix_use_runtimelinking=yes
28753
 
+               break
28754
 
        ;;
28755
 
       esac
 
38050
-       ;;
 
38051
-      esac
28756
38052
-      runpath_var='LD_RUN_PATH'
28757
38053
-      hardcode_shlibpath_var_F77=no
28758
38054
-      ;;
28759
 
-
 
38055
 
28760
38056
-    sysv4.3*)
28761
38057
-      archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
28762
38058
-      hardcode_shlibpath_var_F77=no
28763
38059
-      export_dynamic_flag_spec_F77='-Bexport'
28764
 
+           done
28765
 
       ;;
28766
 
+          esac
 
38060
-      ;;
28767
38061
 
28768
38062
-    sysv4*MP*)
28769
38063
-      if test -d /usr/nec; then
28772
38066
-       runpath_var=LD_RUN_PATH
28773
38067
-       hardcode_runpath_var=yes
28774
38068
-       ld_shlibs_F77=yes
28775
 
+          exp_sym_flag='-bexport'
28776
 
+          no_entry_flag='-bnoentry'
28777
 
       fi
 
38069
-      fi
28778
38070
-      ;;
28779
 
-
 
38071
 
28780
38072
-    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)
28781
38073
-      no_undefined_flag_F77='${wl}-z,text'
28782
38074
-      archive_cmds_need_lc_F77=no
28791
38083
-       archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
28792
38084
-      fi
28793
38085
-      ;;
28794
 
+        # When large executables or shared objects are built, AIX ld can
28795
 
+        # have problems creating the table of contents.  If linking a library
28796
 
+        # or program results in "error TOC overflow" add -mminimal-toc to
28797
 
+        # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
28798
 
+        # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
28799
38086
 
28800
38087
-    sysv5* | sco3.2v5* | sco5v6*)
28801
38088
-      # Note: We can NOT use -z defs as we might desire, because we do not
28813
38100
-      link_all_deplibs_F77=yes
28814
38101
-      export_dynamic_flag_spec_F77='${wl}-Bexport'
28815
38102
-      runpath_var='LD_RUN_PATH'
28816
 
+        archive_cmds_CXX=''
28817
 
+        hardcode_direct_CXX=yes
28818
 
+        hardcode_direct_absolute_CXX=yes
28819
 
+        hardcode_libdir_separator_CXX=':'
28820
 
+        link_all_deplibs_CXX=yes
28821
 
+        file_list_spec_CXX='${wl}-f,'
28822
38103
 
28823
38104
-      if test "$GCC" = yes; then
28824
38105
-       archive_cmds_F77='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
28825
38106
-       archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
28826
 
+        if test "$GXX" = yes; then
28827
 
+          case $host_os in aix4.[012]|aix4.[012].*)
28828
 
+          # We only want to do this on AIX 4.2 and lower, the check
28829
 
+          # below for broken collect2 doesn't work under 4.3+
28830
 
+         collect2name=`${CC} -print-prog-name=collect2`
28831
 
+         if test -f "$collect2name" &&
28832
 
+            strings "$collect2name" | $GREP resolve_lib_name >/dev/null
28833
 
+         then
28834
 
+           # We have reworked collect2
28835
 
+           :
28836
 
       else
 
38107
-      else
28837
38108
-       archive_cmds_F77='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
28838
38109
-       archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
28839
 
+           # We have old collect2
28840
 
+           hardcode_direct_CXX=unsupported
28841
 
+           # It fails to find uninstalled libraries when the uninstalled
28842
 
+           # path is not listed in the libpath.  Setting hardcode_minus_L
28843
 
+           # to unsupported forces relinking
28844
 
+           hardcode_minus_L_CXX=yes
28845
 
+           hardcode_libdir_flag_spec_CXX='-L$libdir'
28846
 
+           hardcode_libdir_separator_CXX=
28847
 
       fi
 
38110
-      fi
28848
38111
-      ;;
28849
 
-
 
38112
 
28850
38113
-    uts4*)
28851
38114
-      archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
28852
38115
-      hardcode_libdir_flag_spec_F77='-L$libdir'
28853
38116
-      hardcode_shlibpath_var_F77=no
28854
38117
-      ;;
28855
 
-
 
38118
 
28856
38119
-    *)
28857
38120
-      ld_shlibs_F77=no
28858
38121
-      ;;
28859
 
     esac
28860
 
+          shared_flag='-shared'
28861
 
+         if test "$aix_use_runtimelinking" = yes; then
28862
 
+           shared_flag="$shared_flag "'${wl}-G'
28863
 
   fi
28864
 
-
28865
 
-{ echo "$as_me:$LINENO: result: $ld_shlibs_F77" >&5
28866
 
-echo "${ECHO_T}$ld_shlibs_F77" >&6; }
 
38122
-    esac
 
38123
-  fi
 
38124
 
 
38125
-{ $as_echo "$as_me:$LINENO: result: $ld_shlibs_F77" >&5
 
38126
-$as_echo "$ld_shlibs_F77" >&6; }
28867
38127
-test "$ld_shlibs_F77" = no && can_build_shared=no
28868
 
-
 
38128
 
28869
38129
-#
28870
38130
-# Do we need to explicitly link libc?
28871
38131
-#
28873
38133
-x|xyes)
28874
38134
-  # Assume -lc should be added
28875
38135
-  archive_cmds_need_lc_F77=yes
28876
 
-
 
38136
 
28877
38137
-  if test "$enable_shared" = yes && test "$GCC" = yes; then
28878
38138
-    case $archive_cmds_F77 in
28879
38139
-    *'~'*)
28883
38143
-      # Test whether the compiler implicitly links with -lc since on some
28884
38144
-      # systems, -lgcc has to come before -lc. If gcc already passes -lc
28885
38145
-      # to ld, don't add -lc before -lgcc.
28886
 
-      { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
28887
 
-echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; }
 
38146
-      { $as_echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
 
38147
-$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
28888
38148
-      $rm conftest*
28889
38149
-      echo "$lt_simple_compile_test_code" > conftest.$ac_ext
28890
 
-
 
38150
 
28891
38151
-      if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
28892
38152
-  (eval $ac_compile) 2>&5
28893
38153
-  ac_status=$?
28894
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
38154
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
28895
38155
-  (exit $ac_status); } 2>conftest.err; then
28896
38156
-        soname=conftest
28897
38157
-        lib=conftest
28909
38169
-        if { (eval echo "$as_me:$LINENO: \"$archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5
28910
38170
-  (eval $archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5
28911
38171
-  ac_status=$?
28912
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
38172
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
28913
38173
-  (exit $ac_status); }
28914
38174
-        then
28915
38175
-         archive_cmds_need_lc_F77=no
28916
 
         else
 
38176
-        else
28917
38177
-         archive_cmds_need_lc_F77=yes
28918
38178
-        fi
28919
38179
-        allow_undefined_flag_F77=$lt_save_allow_undefined_flag
28920
 
+          # not using gcc
28921
 
+          if test "$host_cpu" = ia64; then
28922
 
+         # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
28923
 
+         # chokes on -Wl,-G. The following line is correct:
28924
 
+         shared_flag='-G'
28925
 
       else
 
38180
-      else
28926
38181
-        cat conftest.err 1>&5
28927
 
+           if test "$aix_use_runtimelinking" = yes; then
28928
 
+             shared_flag='${wl}-G'
28929
 
+           else
28930
 
+             shared_flag='${wl}-bM:SRE'
28931
 
       fi
 
38182
-      fi
28932
38183
-      $rm conftest*
28933
 
-      { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_F77" >&5
28934
 
-echo "${ECHO_T}$archive_cmds_need_lc_F77" >&6; }
 
38184
-      { $as_echo "$as_me:$LINENO: result: $archive_cmds_need_lc_F77" >&5
 
38185
-$as_echo "$archive_cmds_need_lc_F77" >&6; }
28935
38186
-      ;;
28936
38187
-    esac
28937
 
   fi
28938
 
-  ;;
28939
 
+        fi
28940
 
+
28941
 
+        # It seems that -bexpall does not export symbols beginning with
28942
 
+        # underscore (_), so it is better to generate a list of symbols to
28943
 
+       # export.
28944
 
+        always_export_symbols_CXX=yes
28945
 
+        if test "$aix_use_runtimelinking" = yes; then
28946
 
+          # Warning - without using the other runtime loading flags (-brtl),
28947
 
+          # -berok will link without error, but may produce a broken library.
28948
 
+          allow_undefined_flag_CXX='-berok'
28949
 
+          # Determine the default libpath from the value encoded in an empty
28950
 
+          # executable.
28951
 
+          cat >conftest.$ac_ext <<_ACEOF
28952
 
+/* confdefs.h.  */
28953
 
+_ACEOF
28954
 
+cat confdefs.h >>conftest.$ac_ext
28955
 
+cat >>conftest.$ac_ext <<_ACEOF
28956
 
+/* end confdefs.h.  */
28957
 
+
28958
 
+int
28959
 
+main ()
28960
 
+{
28961
 
+
28962
 
+  ;
28963
 
+  return 0;
28964
 
+}
28965
 
+_ACEOF
28966
 
+rm -f conftest.$ac_objext conftest$ac_exeext
28967
 
+if { (ac_try="$ac_link"
28968
 
+case "(($ac_try" in
28969
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
28970
 
+  *) ac_try_echo=$ac_try;;
28971
 
 esac
28972
 
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
28973
 
+  (eval "$ac_link") 2>conftest.er1
28974
 
+  ac_status=$?
28975
 
+  grep -v '^ *+' conftest.er1 >conftest.err
28976
 
+  rm -f conftest.er1
28977
 
+  cat conftest.err >&5
28978
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
28979
 
+  (exit $ac_status); } && {
28980
 
+        test -z "$ac_cxx_werror_flag" ||
28981
 
+        test ! -s conftest.err
28982
 
+       } && test -s conftest$ac_exeext &&
28983
 
+       $as_test_x conftest$ac_exeext; then
28984
 
 
28985
 
-{ echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
28986
 
-echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; }
28987
 
-library_names_spec=
28988
 
-libname_spec='lib$name'
28989
 
-soname_spec=
28990
 
-shrext_cmds=".so"
28991
 
-postinstall_cmds=
28992
 
-postuninstall_cmds=
28993
 
-finish_cmds=
28994
 
-finish_eval=
28995
 
-shlibpath_var=
28996
 
-shlibpath_overrides_runpath=unknown
28997
 
-version_type=none
28998
 
-dynamic_linker="$host_os ld.so"
28999
 
-sys_lib_dlsearch_path_spec="/lib /usr/lib"
29000
 
+lt_aix_libpath_sed='
29001
 
+    /Import File Strings/,/^$/ {
29002
 
+       /^0/ {
29003
 
+           s/^0  *\(.*\)$/\1/
29004
 
+           p
29005
 
+       }
29006
 
+    }'
29007
 
+aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
29008
 
+# Check for a 64-bit object if we didn't find anything.
29009
 
+if test -z "$aix_libpath"; then
29010
 
+  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
29011
 
+fi
29012
 
+else
29013
 
+  echo "$as_me: failed program was:" >&5
29014
 
+sed 's/^/| /' conftest.$ac_ext >&5
29015
 
 
29016
 
-need_lib_prefix=unknown
29017
 
-hardcode_into_libs=no
29018
 
 
29019
 
-# when you set need_version to no, make sure it does not cause -set_version
29020
 
-# flags to be left without arguments
29021
 
-need_version=unknown
29022
 
+fi
29023
 
 
29024
 
-case $host_os in
29025
 
-aix3*)
29026
 
-  version_type=linux
29027
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
29028
 
-  shlibpath_var=LIBPATH
29029
 
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
29030
 
+      conftest$ac_exeext conftest.$ac_ext
29031
 
+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
29032
 
 
29033
 
-  # AIX 3 has no versioning support, so we append a major version to the name.
29034
 
-  soname_spec='${libname}${release}${shared_ext}$major'
29035
 
-  ;;
29036
 
+          hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath"
29037
 
 
29038
 
-aix4* | aix5*)
29039
 
-  version_type=linux
29040
 
-  need_lib_prefix=no
29041
 
-  need_version=no
29042
 
-  hardcode_into_libs=yes
29043
 
-  if test "$host_cpu" = ia64; then
29044
 
-    # AIX 5 supports IA64
29045
 
-    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
29046
 
-    shlibpath_var=LD_LIBRARY_PATH
29047
 
+          archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
29048
 
   else
29049
 
-    # With GCC up to 2.95.x, collect2 would create an import file
29050
 
-    # for dependence libraries.  The import file would start with
29051
 
-    # the line `#! .'.  This would cause the generated library to
29052
 
-    # depend on `.', always an invalid library.  This was fixed in
29053
 
-    # development snapshots of GCC prior to 3.0.
29054
 
-    case $host_os in
29055
 
-      aix4 | aix4.[01] | aix4.[01].*)
29056
 
-      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
29057
 
-          echo ' yes '
 
38188
-  fi
 
38189
-  ;;
 
38190
-esac
 
38191
 
 
38192
-{ $as_echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
 
38193
-$as_echo_n "checking dynamic linker characteristics... " >&6; }
 
38194
+    { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
 
38195
+echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; }
 
38196
+
 
38197
 library_names_spec=
 
38198
 libname_spec='lib$name'
 
38199
 soname_spec=
 
38200
@@ -18609,7 +16949,6 @@
 
38201
 version_type=none
 
38202
 dynamic_linker="$host_os ld.so"
 
38203
 sys_lib_dlsearch_path_spec="/lib /usr/lib"
 
38204
-
 
38205
 need_lib_prefix=unknown
 
38206
 hardcode_into_libs=no
 
38207
 
 
38208
@@ -18646,7 +16985,7 @@
 
38209
       aix4 | aix4.[01] | aix4.[01].*)
 
38210
       if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
 
38211
           echo ' yes '
29058
38212
-          echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then
29059
 
-       :
29060
 
+          if test "$host_cpu" = ia64; then
29061
 
+           hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib'
29062
 
+           allow_undefined_flag_CXX="-z nodefs"
29063
 
+           archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
 
38213
+          echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
 
38214
        :
29064
38215
       else
29065
 
-       can_build_shared=no
29066
 
-      fi
29067
 
-      ;;
29068
 
-    esac
29069
 
-    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
29070
 
-    # soname into executable. Probably we can add versioning support to
29071
 
-    # collect2, so additional links can be useful in future.
29072
 
-    if test "$aix_use_runtimelinking" = yes; then
29073
 
-      # If using run time linking (on AIX 4.2 or later) use lib<name>.so
29074
 
-      # instead of lib<name>.a to let people know that these are not
29075
 
-      # typical AIX shared libraries.
29076
 
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
29077
 
-    else
29078
 
-      # We preserve .a as extension for shared libraries through AIX4.2
29079
 
-      # and later when we are not doing run time linking.
29080
 
-      library_names_spec='${libname}${release}.a $libname.a'
29081
 
-      soname_spec='${libname}${release}${shared_ext}$major'
29082
 
-    fi
29083
 
-    shlibpath_var=LIBPATH
29084
 
-  fi
29085
 
-  ;;
29086
 
+           # Determine the default libpath from the value encoded in an
29087
 
+           # empty executable.
29088
 
+           cat >conftest.$ac_ext <<_ACEOF
29089
 
+/* confdefs.h.  */
29090
 
+_ACEOF
29091
 
+cat confdefs.h >>conftest.$ac_ext
29092
 
+cat >>conftest.$ac_ext <<_ACEOF
29093
 
+/* end confdefs.h.  */
 
38216
        can_build_shared=no
 
38217
@@ -18672,9 +17011,18 @@
 
38218
   ;;
29094
38219
 
29095
 
-amigaos*)
 
38220
 amigaos*)
29096
38221
-  library_names_spec='$libname.ixlibrary $libname.a'
29097
38222
-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
29098
38223
-  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
29099
 
-  ;;
29100
 
+int
29101
 
+main ()
29102
 
+{
29103
 
 
29104
 
-beos*)
29105
 
-  library_names_spec='${libname}${shared_ext}'
29106
 
-  dynamic_linker="$host_os ld.so"
29107
 
-  shlibpath_var=LIBRARY_PATH
29108
 
-  ;;
29109
 
+  ;
29110
 
+  return 0;
29111
 
+}
29112
 
+_ACEOF
29113
 
+rm -f conftest.$ac_objext conftest$ac_exeext
29114
 
+if { (ac_try="$ac_link"
29115
 
+case "(($ac_try" in
29116
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
29117
 
+  *) ac_try_echo=$ac_try;;
29118
 
+esac
29119
 
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
29120
 
+  (eval "$ac_link") 2>conftest.er1
29121
 
+  ac_status=$?
29122
 
+  grep -v '^ *+' conftest.er1 >conftest.err
29123
 
+  rm -f conftest.er1
29124
 
+  cat conftest.err >&5
29125
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
29126
 
+  (exit $ac_status); } && {
29127
 
+        test -z "$ac_cxx_werror_flag" ||
29128
 
+        test ! -s conftest.err
29129
 
+       } && test -s conftest$ac_exeext &&
29130
 
+       $as_test_x conftest$ac_exeext; then
29131
 
 
29132
 
-bsdi[45]*)
29133
 
-  version_type=linux
29134
 
-  need_version=no
29135
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
29136
 
-  soname_spec='${libname}${release}${shared_ext}$major'
29137
 
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
29138
 
-  shlibpath_var=LD_LIBRARY_PATH
29139
 
-  sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
29140
 
-  sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
29141
 
-  # the default ld.so.conf also contains /usr/contrib/lib and
29142
 
-  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
29143
 
-  # libtool to hard-code these into programs
29144
 
-  ;;
29145
 
+lt_aix_libpath_sed='
29146
 
+    /Import File Strings/,/^$/ {
29147
 
+       /^0/ {
29148
 
+           s/^0  *\(.*\)$/\1/
29149
 
+           p
29150
 
+       }
29151
 
+    }'
29152
 
+aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
29153
 
+# Check for a 64-bit object if we didn't find anything.
29154
 
+if test -z "$aix_libpath"; then
29155
 
+  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
29156
 
+fi
29157
 
+else
29158
 
+  echo "$as_me: failed program was:" >&5
29159
 
+sed 's/^/| /' conftest.$ac_ext >&5
29160
 
 
29161
 
-cygwin* | mingw* | pw32*)
29162
 
-  version_type=windows
29163
 
-  shrext_cmds=".dll"
29164
 
-  need_version=no
29165
 
-  need_lib_prefix=no
29166
 
 
29167
 
-  case $GCC,$host_os in
29168
 
-  yes,cygwin* | yes,mingw* | yes,pw32*)
29169
 
-    library_names_spec='$libname.dll.a'
29170
 
-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
29171
 
-    postinstall_cmds='base_file=`basename \${file}`~
 
38224
+  case $host_cpu in
 
38225
+  powerpc)
 
38226
+    # Since July 2007 AmigaOS4 officially supports .so libraries.
 
38227
+    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
 
38228
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
38229
+    ;;
 
38230
+  m68k)
 
38231
+    library_names_spec='$libname.ixlibrary $libname.a'
 
38232
+    # Create ${libname}_ixlibrary.a entries in /sys/libs.
 
38233
+    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
 
38234
+    ;;
 
38235
+  esac
 
38236
   ;;
 
38237
 
 
38238
 beos*)
 
38239
@@ -18708,14 +17056,17 @@
 
38240
     library_names_spec='$libname.dll.a'
 
38241
     # DLL is installed to $(libdir)/../bin by postinstall_cmds
 
38242
     postinstall_cmds='base_file=`basename \${file}`~
29172
38243
-      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
29173
 
-      dldir=$destdir/`dirname \$dlpath`~
29174
 
-      test -d \$dldir || mkdir -p \$dldir~
29175
 
-      $install_prog $dir/$dlname \$dldir/$dlname~
 
38244
+      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
 
38245
       dldir=$destdir/`dirname \$dlpath`~
 
38246
       test -d \$dldir || mkdir -p \$dldir~
 
38247
       $install_prog $dir/$dlname \$dldir/$dlname~
29176
38248
-      chmod a+x \$dldir/$dlname'
29177
 
-    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
29178
 
-      dlpath=$dir/\$dldll~
 
38249
+      chmod a+x \$dldir/$dlname~
 
38250
+      if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
 
38251
+        eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
 
38252
+      fi'
 
38253
     postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
 
38254
       dlpath=$dir/\$dldll~
29179
38255
-       $rm \$dlpath'
29180
 
-    shlibpath_overrides_runpath=yes
29181
 
+fi
 
38256
+       $RM \$dlpath'
 
38257
     shlibpath_overrides_runpath=yes
29182
38258
 
29183
 
-    case $host_os in
29184
 
-    cygwin*)
29185
 
-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
29186
 
-      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
29187
 
-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
29188
 
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
29189
 
+      conftest$ac_exeext conftest.$ac_ext
29190
 
+if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
29191
 
+
29192
 
+           hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath"
29193
 
+           # Warning - without using the other run time loading flags,
29194
 
+           # -berok will link without error, but may produce a broken library.
29195
 
+           no_undefined_flag_CXX=' ${wl}-bernotok'
29196
 
+           allow_undefined_flag_CXX=' ${wl}-berok'
29197
 
+           # Exported symbols can be pulled into shared objects from archives
29198
 
+           whole_archive_flag_spec_CXX='$convenience'
29199
 
+           archive_cmds_need_lc_CXX=yes
29200
 
+           # This is similar to how AIX traditionally builds its shared
29201
 
+           # libraries.
29202
 
+           archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
29203
 
+          fi
29204
 
+        fi
29205
 
       ;;
29206
 
-    mingw*)
29207
 
-      # MinGW DLLs use traditional 'lib' prefix
29208
 
-      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
 
38259
     case $host_os in
 
38260
@@ -18727,17 +17078,17 @@
 
38261
     mingw*)
 
38262
       # MinGW DLLs use traditional 'lib' prefix
 
38263
       soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
29209
38264
-      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
29210
38265
-      if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then
29211
 
-        # It is most probably a Windows format PATH printed by
29212
 
-        # mingw gcc, but we are running on Cygwin. Gcc prints its search
29213
 
-        # path with ; separators, and with drive letters. We can handle the
29214
 
-        # drive letters (cygwin fileutils understands them), so leave them,
29215
 
-        # especially as we might pass files found there to a mingw objdump,
29216
 
-        # which wouldn't understand a cygwinified path. Ahh.
 
38266
+      sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
 
38267
+      if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then
 
38268
         # It is most probably a Windows format PATH printed by
 
38269
         # mingw gcc, but we are running on Cygwin. Gcc prints its search
 
38270
         # path with ; separators, and with drive letters. We can handle the
 
38271
         # drive letters (cygwin fileutils understands them), so leave them,
 
38272
         # especially as we might pass files found there to a mingw objdump,
 
38273
         # which wouldn't understand a cygwinified path. Ahh.
29217
38274
-        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
29218
 
+
29219
 
+      beos*)
29220
 
+       if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
29221
 
+         allow_undefined_flag_CXX=unsupported
29222
 
+         # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
29223
 
+         # support --undefined.  This deserves some investigation.  FIXME
29224
 
+         archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
 
38275
+        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
29225
38276
       else
29226
38277
-        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
29227
 
+         ld_shlibs_CXX=no
 
38278
+        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
29228
38279
       fi
29229
38280
       ;;
29230
 
-    pw32*)
29231
 
-      # pw32 DLLs use 'pw' prefix rather than 'lib'
29232
 
-      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
29233
 
-      ;;
29234
 
-    esac
29235
 
-    ;;
29236
 
 
29237
 
+      chorus*)
29238
 
+        case $cc_basename in
29239
 
   *)
29240
 
-    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
29241
 
+         # FIXME: insert proper C++ library support
29242
 
+         ld_shlibs_CXX=no
29243
 
     ;;
29244
 
   esac
29245
 
-  dynamic_linker='Win32 ld.exe'
29246
 
-  # FIXME: first we should search . and the directory the executable is in
29247
 
-  shlibpath_var=PATH
29248
 
   ;;
29249
 
 
29250
 
-darwin* | rhapsody*)
29251
 
-  dynamic_linker="$host_os dyld"
29252
 
-  version_type=darwin
29253
 
-  need_lib_prefix=no
29254
 
-  need_version=no
 
38281
     pw32*)
 
38282
@@ -18761,7 +17112,7 @@
 
38283
   version_type=darwin
 
38284
   need_lib_prefix=no
 
38285
   need_version=no
29255
38286
-  library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext'
29256
 
-  soname_spec='${libname}${release}${major}$shared_ext'
29257
 
-  shlibpath_overrides_runpath=yes
29258
 
-  shlibpath_var=DYLD_LIBRARY_PATH
29259
 
-  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
29260
 
+      cygwin* | mingw* | pw32*)
29261
 
+        # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless,
29262
 
+        # as there is no search path for DLLs.
29263
 
+        hardcode_libdir_flag_spec_CXX='-L$libdir'
29264
 
+        allow_undefined_flag_CXX=unsupported
29265
 
+        always_export_symbols_CXX=no
29266
 
+        enable_shared_with_static_runtimes_CXX=yes
29267
 
 
29268
 
-  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
29269
 
+        if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
29270
 
+          archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
29271
 
+          # If the export-symbols file already is a .def file (1st line
29272
 
+          # is EXPORTS), use it as is; otherwise, prepend...
29273
 
+          archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
29274
 
+           cp $export_symbols $output_objdir/$soname.def;
29275
 
+          else
29276
 
+           echo EXPORTS > $output_objdir/$soname.def;
29277
 
+           cat $export_symbols >> $output_objdir/$soname.def;
29278
 
+          fi~
29279
 
+          $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
29280
 
+        else
29281
 
+          ld_shlibs_CXX=no
29282
 
+        fi
29283
 
   ;;
29284
 
+      darwin* | rhapsody*)
29285
 
 
29286
 
-dgux*)
29287
 
-  version_type=linux
29288
 
-  need_lib_prefix=no
29289
 
-  need_version=no
29290
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
29291
 
-  soname_spec='${libname}${release}${shared_ext}$major'
29292
 
-  shlibpath_var=LD_LIBRARY_PATH
29293
 
-  ;;
29294
 
 
29295
 
-freebsd1*)
29296
 
-  dynamic_linker=no
29297
 
-  ;;
29298
 
+  archive_cmds_need_lc_CXX=no
29299
 
+  hardcode_direct_CXX=no
29300
 
+  hardcode_automatic_CXX=yes
29301
 
+  hardcode_shlibpath_var_CXX=unsupported
29302
 
+  whole_archive_flag_spec_CXX=''
29303
 
+  link_all_deplibs_CXX=yes
29304
 
+  allow_undefined_flag_CXX="$_lt_dar_allow_undefined"
29305
 
+  if test "$GCC" = "yes"; then
29306
 
+    output_verbose_link_cmd=echo
29307
 
+    archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
29308
 
+    module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
29309
 
+    archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
29310
 
+    module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
29311
 
+       if test "$lt_cv_apple_cc_single_mod" != "yes"; then
29312
 
+      archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}"
29313
 
+      archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}"
29314
 
+    fi
29315
 
 
29316
 
-freebsd* | dragonfly*)
29317
 
-  # DragonFly does not have aout.  When/if they implement a new
29318
 
-  # versioning mechanism, adjust this.
29319
 
-  if test -x /usr/bin/objformat; then
29320
 
-    objformat=`/usr/bin/objformat`
29321
 
   else
29322
 
-    case $host_os in
29323
 
-    freebsd[123]*) objformat=aout ;;
29324
 
-    *) objformat=elf ;;
29325
 
-    esac
29326
 
+  ld_shlibs_CXX=no
29327
 
   fi
29328
 
-  version_type=freebsd-$objformat
29329
 
-  case $version_type in
29330
 
-    freebsd-elf*)
29331
 
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
29332
 
-      need_version=no
29333
 
-      need_lib_prefix=no
29334
 
-      ;;
29335
 
-    freebsd-*)
29336
 
-      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
29337
 
-      need_version=yes
29338
 
-      ;;
29339
 
-  esac
29340
 
-  shlibpath_var=LD_LIBRARY_PATH
29341
 
-  case $host_os in
29342
 
-  freebsd2*)
29343
 
-    shlibpath_overrides_runpath=yes
29344
 
+
29345
 
     ;;
29346
 
-  freebsd3.[01]* | freebsdelf3.[01]*)
29347
 
-    shlibpath_overrides_runpath=yes
29348
 
-    hardcode_into_libs=yes
29349
 
+
29350
 
+      dgux*)
29351
 
+        case $cc_basename in
29352
 
+          ec++*)
29353
 
+           # FIXME: insert proper C++ library support
29354
 
+           ld_shlibs_CXX=no
29355
 
     ;;
29356
 
-  freebsd3.[2-9]* | freebsdelf3.[2-9]* | \
29357
 
-  freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1)
29358
 
-    shlibpath_overrides_runpath=no
29359
 
-    hardcode_into_libs=yes
29360
 
+          ghcx*)
29361
 
+           # Green Hills C++ Compiler
29362
 
+           # FIXME: insert proper C++ library support
29363
 
+           ld_shlibs_CXX=no
29364
 
     ;;
29365
 
-  *) # from 4.6 on, and DragonFly
29366
 
-    shlibpath_overrides_runpath=yes
29367
 
-    hardcode_into_libs=yes
29368
 
+          *)
29369
 
+           # FIXME: insert proper C++ library support
29370
 
+           ld_shlibs_CXX=no
29371
 
     ;;
29372
 
   esac
29373
 
   ;;
29374
 
 
29375
 
-gnu*)
29376
 
-  version_type=linux
29377
 
-  need_lib_prefix=no
29378
 
-  need_version=no
29379
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
29380
 
-  soname_spec='${libname}${release}${shared_ext}$major'
29381
 
-  shlibpath_var=LD_LIBRARY_PATH
29382
 
-  hardcode_into_libs=yes
29383
 
+      freebsd[12]*)
29384
 
+        # C++ shared libraries reported to be fairly broken before
29385
 
+       # switch to ELF
29386
 
+        ld_shlibs_CXX=no
29387
 
   ;;
29388
 
 
29389
 
-hpux9* | hpux10* | hpux11*)
29390
 
-  # Give a soname corresponding to the major version so that dld.sl refuses to
29391
 
-  # link against other versions.
29392
 
-  version_type=sunos
29393
 
-  need_lib_prefix=no
29394
 
-  need_version=no
29395
 
-  case $host_cpu in
29396
 
-  ia64*)
29397
 
-    shrext_cmds='.so'
29398
 
-    hardcode_into_libs=yes
29399
 
-    dynamic_linker="$host_os dld.so"
29400
 
-    shlibpath_var=LD_LIBRARY_PATH
29401
 
-    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
29402
 
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
29403
 
-    soname_spec='${libname}${release}${shared_ext}$major'
29404
 
-    if test "X$HPUX_IA64_MODE" = X32; then
29405
 
-      sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
29406
 
-    else
29407
 
-      sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
29408
 
-    fi
29409
 
-    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
29410
 
-    ;;
 
38287
+  library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
 
38288
   soname_spec='${libname}${release}${major}$shared_ext'
 
38289
   shlibpath_overrides_runpath=yes
 
38290
   shlibpath_var=DYLD_LIBRARY_PATH
 
38291
@@ -18859,18 +17210,18 @@
 
38292
     fi
 
38293
     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
 
38294
     ;;
29411
38295
-   hppa*64*)
29412
38296
-     shrext_cmds='.sl'
29413
38297
-     hardcode_into_libs=yes
29420
38304
-     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
29421
38305
-     ;;
29422
38306
-   *)
29423
 
-    shrext_cmds='.sl'
29424
 
-    dynamic_linker="$host_os dld.sl"
29425
 
-    shlibpath_var=SHLIB_PATH
29426
 
-    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
29427
 
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
29428
 
-    soname_spec='${libname}${release}${shared_ext}$major'
29429
 
+      freebsd-elf*)
29430
 
+        archive_cmds_need_lc_CXX=no
29431
 
     ;;
29432
 
-  esac
29433
 
-  # HP-UX runs *really* slowly unless shared libraries are mode 555.
29434
 
-  postinstall_cmds='chmod 555 $lib'
29435
 
+
29436
 
+      freebsd* | dragonfly*)
29437
 
+        # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
29438
 
+        # conventions
29439
 
+        ld_shlibs_CXX=yes
29440
 
   ;;
29441
 
 
29442
 
-interix[3-9]*)
29443
 
-  version_type=linux
29444
 
-  need_lib_prefix=no
29445
 
-  need_version=no
29446
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
29447
 
-  soname_spec='${libname}${release}${shared_ext}$major'
29448
 
-  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
29449
 
-  shlibpath_var=LD_LIBRARY_PATH
29450
 
-  shlibpath_overrides_runpath=no
29451
 
-  hardcode_into_libs=yes
29452
 
+      gnu*)
29453
 
   ;;
29454
 
 
29455
 
-irix5* | irix6* | nonstopux*)
29456
 
-  case $host_os in
29457
 
-    nonstopux*) version_type=nonstopux ;;
29458
 
+      hpux9*)
29459
 
+        hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir'
29460
 
+        hardcode_libdir_separator_CXX=:
29461
 
+        export_dynamic_flag_spec_CXX='${wl}-E'
29462
 
+        hardcode_direct_CXX=yes
29463
 
+        hardcode_minus_L_CXX=yes # Not in the search PATH,
29464
 
+                                            # but as the default
29465
 
+                                            # location of the library.
29466
 
+
29467
 
+        case $cc_basename in
29468
 
+          CC*)
29469
 
+            # FIXME: insert proper C++ library support
29470
 
+            ld_shlibs_CXX=no
29471
 
+            ;;
29472
 
+          aCC*)
29473
 
+            archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
29474
 
+            # Commands to make compiler produce verbose output that lists
29475
 
+            # what "hidden" libraries, object files and flags are used when
29476
 
+            # linking a shared library.
29477
 
+            #
29478
 
+            # There doesn't appear to be a way to prevent this compiler from
29479
 
+            # explicitly linking system object files so we need to strip them
29480
 
+            # from the output so that they don't get included in the library
29481
 
+            # dependencies.
29482
 
+            output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed'
29483
 
+            ;;
29484
 
     *)
29485
 
-       if test "$lt_cv_prog_gnu_ld" = yes; then
29486
 
-               version_type=linux
29487
 
+            if test "$GXX" = yes; then
29488
 
+              archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
29489
 
        else
29490
 
-               version_type=irix
29491
 
-       fi ;;
29492
 
+              # FIXME: insert proper C++ library support
29493
 
+              ld_shlibs_CXX=no
29494
 
+            fi
29495
 
+            ;;
29496
 
   esac
29497
 
-  need_lib_prefix=no
29498
 
-  need_version=no
29499
 
-  soname_spec='${libname}${release}${shared_ext}$major'
29500
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
29501
 
-  case $host_os in
29502
 
-  irix5* | nonstopux*)
29503
 
-    libsuff= shlibsuff=
29504
 
+        ;;
29505
 
+
29506
 
+      hpux10*|hpux11*)
29507
 
+        if test $with_gnu_ld = no; then
29508
 
+         hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir'
29509
 
+         hardcode_libdir_separator_CXX=:
29510
 
+
29511
 
+          case $host_cpu in
29512
 
+            hppa*64*|ia64*)
29513
 
     ;;
29514
 
   *)
29515
 
-    case $LD in # libtool.m4 will add one of these switches to LD
29516
 
-    *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
29517
 
-      libsuff= shlibsuff= libmagic=32-bit;;
29518
 
-    *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
29519
 
-      libsuff=32 shlibsuff=N32 libmagic=N32;;
29520
 
-    *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
29521
 
-      libsuff=64 shlibsuff=64 libmagic=64-bit;;
29522
 
-    *) libsuff= shlibsuff= libmagic=never-match;;
29523
 
-    esac
29524
 
+             export_dynamic_flag_spec_CXX='${wl}-E'
29525
 
     ;;
29526
 
   esac
29527
 
-  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
29528
 
-  shlibpath_overrides_runpath=no
29529
 
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
29530
 
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
29531
 
-  hardcode_into_libs=yes
29532
 
+        fi
29533
 
+        case $host_cpu in
29534
 
+          hppa*64*|ia64*)
29535
 
+            hardcode_direct_CXX=no
29536
 
+            hardcode_shlibpath_var_CXX=no
29537
 
   ;;
29538
 
-
29539
 
-# No shared lib support for Linux oldld, aout, or coff.
29540
 
-linux*oldld* | linux*aout* | linux*coff*)
29541
 
-  dynamic_linker=no
29542
 
+          *)
29543
 
+            hardcode_direct_CXX=yes
29544
 
+            hardcode_direct_absolute_CXX=yes
29545
 
+            hardcode_minus_L_CXX=yes # Not in the search PATH,
29546
 
+                                                # but as the default
29547
 
+                                                # location of the library.
29548
 
   ;;
29549
 
+        esac
29550
 
 
29551
 
-# This must be Linux ELF.
29552
 
-linux* | k*bsd*-gnu)
29553
 
-  version_type=linux
29554
 
-  need_lib_prefix=no
29555
 
-  need_version=no
29556
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
29557
 
-  soname_spec='${libname}${release}${shared_ext}$major'
29558
 
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
29559
 
-  shlibpath_var=LD_LIBRARY_PATH
29560
 
-  shlibpath_overrides_runpath=no
29561
 
-  # This implies no fast_install, which is unacceptable.
29562
 
-  # Some rework will be needed to allow for fast_install
29563
 
-  # before this can be enabled.
29564
 
-  hardcode_into_libs=yes
29565
 
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
29566
 
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
29567
 
-
29568
 
-  # Append ld.so.conf contents to the search path
29569
 
-  if test -f /etc/ld.so.conf; then
 
38307
+  hppa*64*)
 
38308
+    shrext_cmds='.sl'
 
38309
+    hardcode_into_libs=yes
 
38310
+    dynamic_linker="$host_os dld.sl"
 
38311
+    shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
 
38312
+    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
 
38313
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
38314
+    soname_spec='${libname}${release}${shared_ext}$major'
 
38315
+    sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
 
38316
+    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
 
38317
+    ;;
 
38318
+  *)
 
38319
     shrext_cmds='.sl'
 
38320
     dynamic_linker="$host_os dld.sl"
 
38321
     shlibpath_var=SHLIB_PATH
 
38322
@@ -18947,17 +17298,69 @@
 
38323
   finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
 
38324
   shlibpath_var=LD_LIBRARY_PATH
 
38325
   shlibpath_overrides_runpath=no
 
38326
+  # Some binutils ld are patched to set DT_RUNPATH
 
38327
+  save_LDFLAGS=$LDFLAGS
 
38328
+  save_libdir=$libdir
 
38329
+  eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \
 
38330
+       LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\""
 
38331
+  cat >conftest.$ac_ext <<_ACEOF
 
38332
+/* confdefs.h.  */
 
38333
+_ACEOF
 
38334
+cat confdefs.h >>conftest.$ac_ext
 
38335
+cat >>conftest.$ac_ext <<_ACEOF
 
38336
+/* end confdefs.h.  */
 
38337
+
 
38338
+int
 
38339
+main ()
 
38340
+{
 
38341
+
 
38342
+  ;
 
38343
+  return 0;
 
38344
+}
 
38345
+_ACEOF
 
38346
+rm -f conftest.$ac_objext conftest$ac_exeext
 
38347
+if { (ac_try="$ac_link"
 
38348
+case "(($ac_try" in
 
38349
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
38350
+  *) ac_try_echo=$ac_try;;
 
38351
+esac
 
38352
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
38353
+  (eval "$ac_link") 2>conftest.er1
 
38354
+  ac_status=$?
 
38355
+  grep -v '^ *+' conftest.er1 >conftest.err
 
38356
+  rm -f conftest.er1
 
38357
+  cat conftest.err >&5
 
38358
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
38359
+  (exit $ac_status); } && {
 
38360
+        test -z "$ac_cxx_werror_flag" ||
 
38361
+        test ! -s conftest.err
 
38362
+       } && test -s conftest$ac_exeext &&
 
38363
+       $as_test_x conftest$ac_exeext; then
 
38364
+  if  ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then
 
38365
+  shlibpath_overrides_runpath=yes
 
38366
+fi
 
38367
+
 
38368
+else
 
38369
+  echo "$as_me: failed program was:" >&5
 
38370
+sed 's/^/| /' conftest.$ac_ext >&5
 
38371
+
 
38372
+
 
38373
+fi
 
38374
+
 
38375
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
38376
+      conftest$ac_exeext conftest.$ac_ext
 
38377
+  LDFLAGS=$save_LDFLAGS
 
38378
+  libdir=$save_libdir
 
38379
+
 
38380
   # This implies no fast_install, which is unacceptable.
 
38381
   # Some rework will be needed to allow for fast_install
 
38382
   # before this can be enabled.
 
38383
   hardcode_into_libs=yes
 
38384
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
 
38385
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
 
38386
 
 
38387
   # Append ld.so.conf contents to the search path
 
38388
   if test -f /etc/ld.so.conf; then
29570
38389
-    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[     ]*hwcap[        ]/d;s/[:,       ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
29571
38390
-    sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra"
29572
 
-  fi
29573
 
-
29574
 
-  # We used to test for /lib/ld.so.1 and disable shared libraries on
29575
 
-  # powerpc, because MkLinux only supported shared libraries with the
29576
 
-  # GNU dynamic linker.  Since this was broken with cross compilers,
29577
 
-  # most powerpc-linux boxes support dynamic linking these days and
29578
 
-  # people can always --disable-shared, the test was removed, and we
29579
 
-  # assume the GNU/Linux dynamic linker is in use.
29580
 
-  dynamic_linker='GNU/Linux ld.so'
29581
 
+        case $cc_basename in
29582
 
+          CC*)
29583
 
+           # FIXME: insert proper C++ library support
29584
 
+           ld_shlibs_CXX=no
 
38391
+    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[      ]*hwcap[        ]/d;s/[:,      ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
 
38392
+    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
 
38393
   fi
 
38394
 
 
38395
   # We used to test for /lib/ld.so.1 and disable shared libraries on
 
38396
@@ -18969,11 +17372,23 @@
 
38397
   dynamic_linker='GNU/Linux ld.so'
29585
38398
   ;;
29586
 
-
29587
 
-netbsd*)
29588
 
-  version_type=sunos
29589
 
-  need_lib_prefix=no
29590
 
-  need_version=no
 
38399
 
 
38400
+netbsdelf*-gnu)
 
38401
+  version_type=linux
 
38402
+  need_lib_prefix=no
 
38403
+  need_version=no
 
38404
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
38405
+  soname_spec='${libname}${release}${shared_ext}$major'
 
38406
+  shlibpath_var=LD_LIBRARY_PATH
 
38407
+  shlibpath_overrides_runpath=no
 
38408
+  hardcode_into_libs=yes
 
38409
+  dynamic_linker='NetBSD ld.elf_so'
 
38410
+  ;;
 
38411
+
 
38412
 netbsd*)
 
38413
   version_type=sunos
 
38414
   need_lib_prefix=no
 
38415
   need_version=no
29591
38416
-  if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
29592
 
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
29593
 
-    finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
29594
 
-    dynamic_linker='NetBSD (a.out) ld.so'
29595
 
-  else
29596
 
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
29597
 
-    soname_spec='${libname}${release}${shared_ext}$major'
29598
 
-    dynamic_linker='NetBSD ld.elf_so'
29599
 
-  fi
29600
 
-  shlibpath_var=LD_LIBRARY_PATH
29601
 
-  shlibpath_overrides_runpath=yes
29602
 
-  hardcode_into_libs=yes
29603
 
+          aCC*)
29604
 
+           case $host_cpu in
29605
 
+             hppa*64*)
29606
 
+               archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
29607
 
   ;;
29608
 
-
29609
 
-newsos6)
29610
 
-  version_type=linux
29611
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
29612
 
-  shlibpath_var=LD_LIBRARY_PATH
29613
 
-  shlibpath_overrides_runpath=yes
29614
 
+             ia64*)
29615
 
+               archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
29616
 
   ;;
29617
 
-
 
38417
+  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
 
38418
     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
38419
     finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
 
38420
     dynamic_linker='NetBSD (a.out) ld.so'
 
38421
@@ -18994,14 +17409,16 @@
 
38422
   shlibpath_overrides_runpath=yes
 
38423
   ;;
 
38424
 
29618
38425
-nto-qnx*)
29619
38426
-  version_type=linux
29620
 
-  need_lib_prefix=no
29621
 
-  need_version=no
29622
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
29623
 
-  soname_spec='${libname}${release}${shared_ext}$major'
29624
 
-  shlibpath_var=LD_LIBRARY_PATH
 
38427
+*nto* | *qnx*)
 
38428
+  version_type=qnx
 
38429
   need_lib_prefix=no
 
38430
   need_version=no
 
38431
   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
38432
   soname_spec='${libname}${release}${shared_ext}$major'
 
38433
   shlibpath_var=LD_LIBRARY_PATH
29625
38434
-  shlibpath_overrides_runpath=yes
29626
 
+             *)
29627
 
+               archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
 
38435
+  shlibpath_overrides_runpath=no
 
38436
+  hardcode_into_libs=yes
 
38437
+  dynamic_linker='ldqnx.so'
29628
38438
   ;;
29629
 
-
29630
 
-openbsd*)
29631
 
-  version_type=sunos
29632
 
-  sys_lib_dlsearch_path_spec="/usr/lib"
29633
 
-  need_lib_prefix=no
29634
 
-  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
29635
 
-  case $host_os in
 
38439
 
 
38440
 openbsd*)
 
38441
@@ -19010,13 +17427,13 @@
 
38442
   need_lib_prefix=no
 
38443
   # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
 
38444
   case $host_os in
29636
38445
-    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
29637
38446
-    *)                         need_version=no  ;;
 
38447
+    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
 
38448
+    *)                         need_version=no  ;;
29638
38449
   esac
29639
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
29640
 
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
29641
 
-  shlibpath_var=LD_LIBRARY_PATH
 
38450
   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
38451
   finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
 
38452
   shlibpath_var=LD_LIBRARY_PATH
29642
38453
-  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
29643
 
-    case $host_os in
29644
 
-      openbsd2.[89] | openbsd2.[89].*)
29645
 
-       shlibpath_overrides_runpath=no
29646
 
+           # Commands to make compiler produce verbose output that lists
29647
 
+           # what "hidden" libraries, object files and flags are used when
29648
 
+           # linking a shared library.
29649
 
+           #
29650
 
+           # There doesn't appear to be a way to prevent this compiler from
29651
 
+           # explicitly linking system object files so we need to strip them
29652
 
+           # from the output so that they don't get included in the library
29653
 
+           # dependencies.
29654
 
+           output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed'
29655
 
        ;;
29656
 
       *)
29657
 
-       shlibpath_overrides_runpath=yes
29658
 
+           if test "$GXX" = yes; then
29659
 
+             if test $with_gnu_ld = no; then
29660
 
+               case $host_cpu in
29661
 
+                 hppa*64*)
29662
 
+                   archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
29663
 
+                   ;;
29664
 
+                 ia64*)
29665
 
+                   archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
29666
 
+                   ;;
29667
 
+                 *)
29668
 
+                   archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
29669
 
        ;;
29670
 
       esac
29671
 
+             fi
29672
 
   else
29673
 
-    shlibpath_overrides_runpath=yes
29674
 
+             # FIXME: insert proper C++ library support
29675
 
+             ld_shlibs_CXX=no
29676
 
   fi
29677
 
   ;;
29678
 
+        esac
29679
 
+        ;;
29680
 
 
29681
 
-os2*)
29682
 
-  libname_spec='$name'
29683
 
-  shrext_cmds=".dll"
29684
 
-  need_lib_prefix=no
29685
 
-  library_names_spec='$libname${shared_ext} $libname.a'
29686
 
-  dynamic_linker='OS/2 ld.exe'
29687
 
-  shlibpath_var=LIBPATH
29688
 
+      interix[3-9]*)
29689
 
+       hardcode_direct_CXX=no
29690
 
+       hardcode_shlibpath_var_CXX=no
29691
 
+       hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
29692
 
+       export_dynamic_flag_spec_CXX='${wl}-E'
29693
 
+       # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
29694
 
+       # Instead, shared libraries are loaded at an image base (0x10000000 by
29695
 
+       # default) and relocated if they conflict, which is a slow very memory
29696
 
+       # consuming and fragmenting process.  To avoid this, we pick a random,
29697
 
+       # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
29698
 
+       # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
29699
 
+       archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
29700
 
+       archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
29701
 
   ;;
29702
 
+      irix5* | irix6*)
29703
 
+        case $cc_basename in
29704
 
+          CC*)
29705
 
+           # SGI C++
29706
 
+           archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
29707
 
 
29708
 
-osf3* | osf4* | osf5*)
29709
 
-  version_type=osf
29710
 
-  need_lib_prefix=no
29711
 
-  need_version=no
29712
 
-  soname_spec='${libname}${release}${shared_ext}$major'
29713
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
29714
 
-  shlibpath_var=LD_LIBRARY_PATH
29715
 
-  sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
29716
 
-  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
29717
 
+           # Archives containing C++ object files must be created using
29718
 
+           # "CC -ar", where "CC" is the IRIX C++ compiler.  This is
29719
 
+           # necessary to make sure instantiated templates are included
29720
 
+           # in the archive.
29721
 
+           old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs'
29722
 
   ;;
29723
 
-
29724
 
-rdos*)
29725
 
-  dynamic_linker=no
29726
 
+          *)
29727
 
+           if test "$GXX" = yes; then
29728
 
+             if test "$with_gnu_ld" = no; then
29729
 
+               archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
29730
 
+             else
29731
 
+               archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` -o $lib'
29732
 
+             fi
29733
 
+           fi
29734
 
+           link_all_deplibs_CXX=yes
29735
 
   ;;
29736
 
-
29737
 
-solaris*)
29738
 
-  version_type=linux
29739
 
-  need_lib_prefix=no
29740
 
-  need_version=no
29741
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
29742
 
-  soname_spec='${libname}${release}${shared_ext}$major'
29743
 
-  shlibpath_var=LD_LIBRARY_PATH
29744
 
-  shlibpath_overrides_runpath=yes
29745
 
-  hardcode_into_libs=yes
29746
 
-  # ldd complains unless libraries are executable
29747
 
-  postinstall_cmds='chmod +x $lib'
29748
 
+        esac
29749
 
+        hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
29750
 
+        hardcode_libdir_separator_CXX=:
29751
 
+        inherit_rpath_CXX=yes
29752
 
   ;;
29753
 
 
29754
 
-sunos4*)
29755
 
-  version_type=sunos
29756
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
29757
 
-  finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
29758
 
-  shlibpath_var=LD_LIBRARY_PATH
29759
 
-  shlibpath_overrides_runpath=yes
29760
 
-  if test "$with_gnu_ld" = yes; then
29761
 
-    need_lib_prefix=no
29762
 
-  fi
29763
 
-  need_version=yes
29764
 
-  ;;
29765
 
+      linux* | k*bsd*-gnu)
29766
 
+        case $cc_basename in
29767
 
+          KCC*)
29768
 
+           # Kuck and Associates, Inc. (KAI) C++ Compiler
29769
 
 
29770
 
-sysv4 | sysv4.3*)
29771
 
-  version_type=linux
29772
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
29773
 
-  soname_spec='${libname}${release}${shared_ext}$major'
29774
 
-  shlibpath_var=LD_LIBRARY_PATH
29775
 
-  case $host_vendor in
29776
 
-    sni)
29777
 
-      shlibpath_overrides_runpath=no
29778
 
-      need_lib_prefix=no
 
38454
+  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
 
38455
     case $host_os in
 
38456
       openbsd2.[89] | openbsd2.[89].*)
 
38457
        shlibpath_overrides_runpath=no
 
38458
@@ -19088,7 +17505,6 @@
 
38459
     sni)
 
38460
       shlibpath_overrides_runpath=no
 
38461
       need_lib_prefix=no
29779
38462
-      export_dynamic_flag_spec='${wl}-Blargedynsym'
29780
 
-      runpath_var=LD_RUN_PATH
29781
 
+           # KCC will only create a shared library if the output file
29782
 
+           # ends with ".so" (or ".sl" for HP-UX), so rename the library
29783
 
+           # to its proper name (with version) after linking.
29784
 
+           archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
29785
 
+           archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib'
29786
 
+           # Commands to make compiler produce verbose output that lists
29787
 
+           # what "hidden" libraries, object files and flags are used when
29788
 
+           # linking a shared library.
29789
 
+           #
29790
 
+           # There doesn't appear to be a way to prevent this compiler from
29791
 
+           # explicitly linking system object files so we need to strip them
29792
 
+           # from the output so that they don't get included in the library
29793
 
+           # dependencies.
29794
 
+           output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed'
29795
 
+
29796
 
+           hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
29797
 
+           export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
29798
 
+
29799
 
+           # Archives containing C++ object files must be created using
29800
 
+           # "CC -Bstatic", where "CC" is the KAI C++ compiler.
29801
 
+           old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs'
29802
 
       ;;
29803
 
-    siemens)
29804
 
-      need_lib_prefix=no
29805
 
+         icpc* | ecpc* )
29806
 
+           # Intel C++
29807
 
+           with_gnu_ld=yes
29808
 
+           # version 8.0 and above of icpc choke on multiply defined symbols
29809
 
+           # if we add $predep_objects and $postdep_objects, however 7.1 and
29810
 
+           # earlier do not add the objects themselves.
29811
 
+           case `$CC -V 2>&1` in
29812
 
+             *"Version 7."*)
29813
 
+               archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
29814
 
+               archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
29815
 
       ;;
29816
 
-    motorola)
29817
 
-      need_lib_prefix=no
29818
 
-      need_version=no
29819
 
-      shlibpath_overrides_runpath=no
29820
 
-      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
29821
 
+             *)  # Version 8.0 or newer
29822
 
+               tmp_idyn=
29823
 
+               case $host_cpu in
29824
 
+                 ia64*) tmp_idyn=' -i_dynamic';;
29825
 
+               esac
29826
 
+               archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
29827
 
+               archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
29828
 
       ;;
29829
 
   esac
29830
 
+           archive_cmds_need_lc_CXX=no
29831
 
+           hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
29832
 
+           export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
29833
 
+           whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
29834
 
   ;;
29835
 
-
29836
 
-sysv4*MP*)
29837
 
-  if test -d /usr/nec ;then
29838
 
-    version_type=linux
29839
 
-    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
29840
 
-    soname_spec='$libname${shared_ext}.$major'
29841
 
-    shlibpath_var=LD_LIBRARY_PATH
29842
 
-  fi
29843
 
+          pgCC* | pgcpp*)
29844
 
+            # Portland Group C++ compiler
29845
 
+           case `$CC -V` in
29846
 
+           *pgCC\ [1-5]* | *pgcpp\ [1-5]*)
29847
 
+             prelink_cmds_CXX='tpldir=Template.dir~
29848
 
+               rm -rf $tpldir~
29849
 
+               $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~
29850
 
+               compile_command="$compile_command `find $tpldir -name \*.o | $NL2SP`"'
29851
 
+             old_archive_cmds_CXX='tpldir=Template.dir~
29852
 
+               rm -rf $tpldir~
29853
 
+               $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~
29854
 
+               $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | $NL2SP`~
29855
 
+               $RANLIB $oldlib'
29856
 
+             archive_cmds_CXX='tpldir=Template.dir~
29857
 
+               rm -rf $tpldir~
29858
 
+               $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
29859
 
+               $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
29860
 
+             archive_expsym_cmds_CXX='tpldir=Template.dir~
29861
 
+               rm -rf $tpldir~
29862
 
+               $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
29863
 
+               $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
29864
 
   ;;
29865
 
-
29866
 
-sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
29867
 
-  version_type=freebsd-elf
29868
 
-  need_lib_prefix=no
29869
 
-  need_version=no
29870
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
29871
 
-  soname_spec='${libname}${release}${shared_ext}$major'
29872
 
-  shlibpath_var=LD_LIBRARY_PATH
29873
 
-  hardcode_into_libs=yes
29874
 
-  if test "$with_gnu_ld" = yes; then
29875
 
-    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
 
38463
       runpath_var=LD_RUN_PATH
 
38464
       ;;
 
38465
     siemens)
 
38466
@@ -19119,13 +17535,12 @@
 
38467
   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
 
38468
   soname_spec='${libname}${release}${shared_ext}$major'
 
38469
   shlibpath_var=LD_LIBRARY_PATH
 
38470
+  shlibpath_overrides_runpath=yes
 
38471
   hardcode_into_libs=yes
 
38472
   if test "$with_gnu_ld" = yes; then
 
38473
     sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
29876
38474
-    shlibpath_overrides_runpath=no
29877
 
-  else
29878
 
-    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
 
38475
   else
 
38476
     sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
29879
38477
-    shlibpath_overrides_runpath=yes
29880
 
-    case $host_os in
29881
 
-      sco3.2v5*)
29882
 
-        sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
29883
 
+           *) # Version 6 will use weak symbols
29884
 
+             archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
29885
 
+             archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
29886
 
        ;;
29887
 
     esac
29888
 
-  fi
29889
 
-  sys_lib_dlsearch_path_spec='/usr/lib'
29890
 
-  ;;
29891
 
-
29892
 
-uts4*)
29893
 
-  version_type=linux
29894
 
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
29895
 
-  soname_spec='${libname}${release}${shared_ext}$major'
29896
 
-  shlibpath_var=LD_LIBRARY_PATH
29897
 
-  ;;
29898
 
 
29899
 
-*)
29900
 
-  dynamic_linker=no
29901
 
+           hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir'
29902
 
+           export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
29903
 
+           whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive'
29904
 
   ;;
29905
 
-esac
29906
 
-{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5
29907
 
-echo "${ECHO_T}$dynamic_linker" >&6; }
29908
 
-test "$dynamic_linker" = no && can_build_shared=no
29909
 
-
 
38478
     case $host_os in
 
38479
       sco3.2v5*)
 
38480
         sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
 
38481
@@ -19135,6 +17550,17 @@
 
38482
   sys_lib_dlsearch_path_spec='/usr/lib'
 
38483
   ;;
 
38484
 
 
38485
+tpf*)
 
38486
+  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.
 
38487
+  version_type=linux
 
38488
+  need_lib_prefix=no
 
38489
+  need_version=no
 
38490
+  library_name_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
38491
+  shlibpath_var=LD_LIBRARY_PATH
 
38492
+  shlibpath_overrides_runpath=no
 
38493
+  hardcode_into_libs=yes
 
38494
+  ;;
 
38495
+
 
38496
 uts4*)
 
38497
   version_type=linux
 
38498
   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
38499
@@ -19146,59 +17572,87 @@
 
38500
   dynamic_linker=no
 
38501
   ;;
 
38502
 esac
 
38503
-{ $as_echo "$as_me:$LINENO: result: $dynamic_linker" >&5
 
38504
-$as_echo "$dynamic_linker" >&6; }
 
38505
+{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5
 
38506
+echo "${ECHO_T}$dynamic_linker" >&6; }
 
38507
 test "$dynamic_linker" = no && can_build_shared=no
 
38508
 
 
38509
-if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
 
38510
-  $as_echo_n "(cached) " >&6
 
38511
-else
 
38512
-  lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec"
 
38513
+variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
 
38514
+if test "$GCC" = yes; then
 
38515
+  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
 
38516
 fi
 
38517
 
 
38518
-sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
 
38519
+if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
 
38520
+  sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
 
38521
+fi
 
38522
 if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
 
38523
-  $as_echo_n "(cached) " >&6
 
38524
-else
 
38525
-  lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec"
 
38526
+  sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
 
38527
 fi
 
38528
 
 
38529
-sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
 
38530
 
29910
38531
-variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
29911
38532
-if test "$GCC" = yes; then
29912
38533
-  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
29913
38534
-fi
29914
 
-
29915
 
-{ echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
29916
 
-echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; }
 
38535
 
 
38536
-{ $as_echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
 
38537
-$as_echo_n "checking how to hardcode library paths into programs... " >&6; }
29917
38538
-hardcode_action_F77=
29918
38539
-if test -n "$hardcode_libdir_flag_spec_F77" || \
29919
38540
-   test -n "$runpath_var_F77" || \
29920
38541
-   test "X$hardcode_automatic_F77" = "Xyes" ; then
29921
 
-
 
38542
 
29922
38543
-  # We can hardcode non-existant directories.
29923
38544
-  if test "$hardcode_direct_F77" != no &&
29924
 
-     # If the only mechanism to avoid hardcoding is shlibpath_var, we
29925
 
-     # have to relink, otherwise we might link with an installed library
29926
 
-     # when we should be linking with a yet-to-be-installed one
 
38545
+
 
38546
+
 
38547
+
 
38548
+
 
38549
+
 
38550
+
 
38551
+
 
38552
+
 
38553
+
 
38554
+
 
38555
+
 
38556
+
 
38557
+
 
38558
+
 
38559
+
 
38560
+
 
38561
+
 
38562
+
 
38563
+
 
38564
+
 
38565
+
 
38566
+
 
38567
+
 
38568
+
 
38569
+
 
38570
+
 
38571
+
 
38572
+
 
38573
+
 
38574
+
 
38575
+
 
38576
+
 
38577
+    { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
 
38578
+echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; }
 
38579
+hardcode_action_CXX=
 
38580
+if test -n "$hardcode_libdir_flag_spec_CXX" ||
 
38581
+   test -n "$runpath_var_CXX" ||
 
38582
+   test "X$hardcode_automatic_CXX" = "Xyes" ; then
 
38583
+
 
38584
+  # We can hardcode non-existent directories.
 
38585
+  if test "$hardcode_direct_CXX" != no &&
 
38586
      # If the only mechanism to avoid hardcoding is shlibpath_var, we
 
38587
      # have to relink, otherwise we might link with an installed library
 
38588
      # when we should be linking with a yet-to-be-installed one
29927
38589
-     ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, F77)" != no &&
29928
38590
-     test "$hardcode_minus_L_F77" != no; then
29929
 
-    # Linking always hardcodes the temporary library directory.
 
38591
+     ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no &&
 
38592
+     test "$hardcode_minus_L_CXX" != no; then
 
38593
     # Linking always hardcodes the temporary library directory.
29930
38594
-    hardcode_action_F77=relink
29931
 
-  else
29932
 
-    # We can link without hardcoding, and we can hardcode nonexisting dirs.
 
38595
+    hardcode_action_CXX=relink
 
38596
   else
 
38597
     # We can link without hardcoding, and we can hardcode nonexisting dirs.
29933
38598
-    hardcode_action_F77=immediate
29934
 
-  fi
29935
 
-else
29936
 
-  # We cannot hardcode anything, or else we can only hardcode existing
29937
 
-  # directories.
 
38599
+    hardcode_action_CXX=immediate
 
38600
   fi
 
38601
 else
 
38602
   # We cannot hardcode anything, or else we can only hardcode existing
 
38603
   # directories.
29938
38604
-  hardcode_action_F77=unsupported
29939
 
-fi
29940
 
-{ echo "$as_me:$LINENO: result: $hardcode_action_F77" >&5
29941
 
-echo "${ECHO_T}$hardcode_action_F77" >&6; }
29942
 
-
 
38605
+  hardcode_action_CXX=unsupported
 
38606
 fi
 
38607
-{ $as_echo "$as_me:$LINENO: result: $hardcode_action_F77" >&5
 
38608
-$as_echo "$hardcode_action_F77" >&6; }
 
38609
+{ echo "$as_me:$LINENO: result: $hardcode_action_CXX" >&5
 
38610
+echo "${ECHO_T}$hardcode_action_CXX" >&6; }
 
38611
 
29943
38612
-if test "$hardcode_action_F77" = relink; then
29944
 
-  # Fast installation is not supported
29945
 
-  enable_fast_install=no
29946
 
-elif test "$shlibpath_overrides_runpath" = yes ||
29947
 
-     test "$enable_shared" = no; then
29948
 
-  # Fast installation is not necessary
29949
 
-  enable_fast_install=needless
29950
 
-fi
29951
 
+         cxx*)
29952
 
+           # Compaq C++
29953
 
+           archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
29954
 
+           archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname  -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
 
38613
+if test "$hardcode_action_CXX" = relink ||
 
38614
+   test "$inherit_rpath_CXX" = yes; then
 
38615
   # Fast installation is not supported
 
38616
   enable_fast_install=no
 
38617
 elif test "$shlibpath_overrides_runpath" = yes ||
 
38618
@@ -19208,3732 +17662,3421 @@
 
38619
 fi
29955
38620
 
29956
 
+           runpath_var=LD_RUN_PATH
29957
 
+           hardcode_libdir_flag_spec_CXX='-rpath $libdir'
29958
 
+           hardcode_libdir_separator_CXX=:
29959
38621
 
29960
38622
-# The else clause should only fire when bootstrapping the
29961
38623
-# libtool distribution, otherwise you forgot to ship ltmain.sh
29966
38628
-  # without removal of \ escapes.
29967
38629
-  if test -n "${ZSH_VERSION+set}" ; then
29968
38630
-    setopt NO_GLOB_SUBST
29969
 
+           # Commands to make compiler produce verbose output that lists
29970
 
+           # what "hidden" libraries, object files and flags are used when
29971
 
+           # linking a shared library.
29972
 
+           #
29973
 
+           # There doesn't appear to be a way to prevent this compiler from
29974
 
+           # explicitly linking system object files so we need to strip them
29975
 
+           # from the output so that they don't get included in the library
29976
 
+           # dependencies.
29977
 
+           output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed'
29978
 
+           ;;
29979
 
+         xl*)
29980
 
+           # IBM XL 8.0 on PPC, with GNU ld
29981
 
+           hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
29982
 
+           export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
29983
 
+           archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
29984
 
+           if test "x$supports_anon_versioning" = xyes; then
29985
 
+             archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~
29986
 
+               cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
29987
 
+               echo "local: *; };" >> $output_objdir/$libname.ver~
29988
 
+               $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
29989
 
   fi
 
38631
-  fi
29990
38632
-  # Now quote all the things that may contain metacharacters while being
29991
38633
-  # careful not to overquote the AC_SUBSTed values.  We take copies of the
29992
38634
-  # variables and quote the copies for generation of the libtool script.
30017
38659
-    predeps_F77 \
30018
38660
-    postdeps_F77 \
30019
38661
-    compiler_lib_search_path_F77 \
 
38662
-    compiler_lib_search_dirs_F77 \
30020
38663
-    archive_cmds_F77 \
30021
38664
-    archive_expsym_cmds_F77 \
30022
38665
-    postinstall_cmds_F77 \
30051
38694
-    sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
30052
38695
-      # Double-quote double-evaled strings.
30053
38696
-      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
30054
 
       ;;
30055
 
     *)
 
38697
-      ;;
 
38698
-    *)
30056
38699
-      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
30057
 
+           case `$CC -V 2>&1 | sed 5q` in
30058
 
+           *Sun\ C*)
30059
 
+             # Sun C++ 5.9
30060
 
+             no_undefined_flag_CXX=' -zdefs'
30061
 
+             archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
30062
 
+             archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols'
30063
 
+             hardcode_libdir_flag_spec_CXX='-R$libdir'
30064
 
+             whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive'
30065
 
+             compiler_needs_object_CXX=yes
30066
 
+
30067
 
+             # Not sure whether something based on
30068
 
+             # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1
30069
 
+             # would be better.
30070
 
+             output_verbose_link_cmd='echo'
30071
 
+
30072
 
+             # Archives containing C++ object files must be created using
30073
 
+             # "CC -xar", where "CC" is the Sun C++ compiler.  This is
30074
 
+             # necessary to make sure instantiated templates are included
30075
 
+             # in the archive.
30076
 
+             old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs'
30077
 
       ;;
30078
 
     esac
 
38700
-      ;;
 
38701
-    esac
30079
38702
-  done
30080
38703
-
30081
38704
-  case $lt_echo in
30082
38705
-  *'\$0 --fallback-echo"')
30083
38706
-    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
30084
 
     ;;
30085
 
   esac
30086
 
+       ;;
30087
 
 
 
38707
-    ;;
 
38708
-  esac
 
38709
-
30088
38710
-cfgfile="$ofile"
30089
38711
-
30090
38712
-  cat <<__EOF__ >> "$cfgfile"
30091
38713
-# ### BEGIN LIBTOOL TAG CONFIG: $tagname
30092
 
+      lynxos*)
30093
 
+        # FIXME: insert proper C++ library support
30094
 
+       ld_shlibs_CXX=no
30095
 
+       ;;
30096
 
 
 
38714
-
30097
38715
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
30098
38716
-
30099
38717
-# Shell to use when invoking shell scripts.
30113
38731
-
30114
38732
-# Whether or not to optimize for fast installation.
30115
38733
-fast_install=$enable_fast_install
30116
 
+      m88k*)
30117
 
+        # FIXME: insert proper C++ library support
30118
 
+        ld_shlibs_CXX=no
30119
 
+       ;;
30120
 
 
 
38734
-
30121
38735
-# The host system.
30122
38736
-host_alias=$host_alias
30123
38737
-host=$host
30124
38738
-host_os=$host_os
30125
 
+      mvs*)
30126
 
+        case $cc_basename in
30127
 
+          cxx*)
30128
 
+           # FIXME: insert proper C++ library support
30129
 
+           ld_shlibs_CXX=no
30130
 
+           ;;
30131
 
+         *)
30132
 
+           # FIXME: insert proper C++ library support
30133
 
+           ld_shlibs_CXX=no
30134
 
+           ;;
30135
 
+       esac
30136
 
+       ;;
30137
 
 
 
38739
-
30138
38740
-# The build system.
30139
38741
-build_alias=$build_alias
30140
38742
-build=$build
30141
38743
-build_os=$build_os
30142
 
+      netbsd*)
30143
 
+        if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
30144
 
+         archive_cmds_CXX='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
30145
 
+         wlarc=
30146
 
+         hardcode_libdir_flag_spec_CXX='-R$libdir'
30147
 
+         hardcode_direct_CXX=yes
30148
 
+         hardcode_shlibpath_var_CXX=no
30149
 
+       fi
30150
 
+       # Workaround some broken pre-1.5 toolchains
30151
 
+       output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
30152
 
+       ;;
30153
 
 
 
38744
-
30154
38745
-# An echo program that does not interpret backslashes.
30155
38746
-echo=$lt_echo
30156
 
+      *nto* | *qnx*)
30157
 
+        ld_shlibs_CXX=yes
30158
 
+       ;;
30159
 
 
 
38747
-
30160
38748
-# The archiver.
30161
38749
-AR=$lt_AR
30162
38750
-AR_FLAGS=$lt_AR_FLAGS
30163
 
+      openbsd2*)
30164
 
+        # C++ shared libraries are fairly broken
30165
 
+       ld_shlibs_CXX=no
30166
 
+       ;;
30167
38751
 
30168
38752
-# A C compiler.
30169
38753
-LTCC=$lt_LTCC
30170
 
+      openbsd*)
30171
 
+       if test -f /usr/libexec/ld.so; then
30172
 
+         hardcode_direct_CXX=yes
30173
 
+         hardcode_shlibpath_var_CXX=no
30174
 
+         hardcode_direct_absolute_CXX=yes
30175
 
+         archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
30176
 
+         hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
30177
 
+         if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
30178
 
+           archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
30179
 
+           export_dynamic_flag_spec_CXX='${wl}-E'
30180
 
+           whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
30181
 
+         fi
30182
 
+         output_verbose_link_cmd=echo
30183
 
+       else
30184
 
+         ld_shlibs_CXX=no
30185
 
+       fi
30186
 
+       ;;
30187
38754
 
30188
38755
-# LTCC compiler flags.
30189
38756
-LTCFLAGS=$lt_LTCFLAGS
30190
 
+      osf3* | osf4* | osf5*)
30191
 
+        case $cc_basename in
30192
 
+          KCC*)
30193
 
+           # Kuck and Associates, Inc. (KAI) C++ Compiler
30194
38757
 
30195
38758
-# A language-specific compiler.
30196
38759
-CC=$lt_compiler_F77
30197
 
+           # KCC will only create a shared library if the output file
30198
 
+           # ends with ".so" (or ".sl" for HP-UX), so rename the library
30199
 
+           # to its proper name (with version) after linking.
30200
 
+           archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
30201
38760
 
30202
38761
-# Is the compiler the GNU C compiler?
30203
38762
-with_gcc=$GCC_F77
30204
 
+           hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
30205
 
+           hardcode_libdir_separator_CXX=:
30206
38763
 
30207
38764
-# An ERE matcher.
30208
38765
-EGREP=$lt_EGREP
30209
 
+           # Archives containing C++ object files must be created using
30210
 
+           # the KAI C++ compiler.
30211
 
+           case $host in
30212
 
+             osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;;
30213
 
+             *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;;
30214
 
+           esac
30215
 
+           ;;
30216
 
+          RCC*)
30217
 
+           # Rational C++ 2.4.1
30218
 
+           # FIXME: insert proper C++ library support
30219
 
+           ld_shlibs_CXX=no
30220
 
+           ;;
30221
 
+          cxx*)
30222
 
+           case $host in
30223
 
+             osf3*)
30224
 
+               allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*'
30225
 
+               archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && $ECHO "X${wl}-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
30226
 
+               hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
30227
 
+               ;;
30228
 
+             *)
30229
 
+               allow_undefined_flag_CXX=' -expect_unresolved \*'
30230
 
+               archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
30231
 
+               archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
30232
 
+                 echo "-hidden">> $lib.exp~
30233
 
+                 $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp  `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~
30234
 
+                 $RM $lib.exp'
30235
 
+               hardcode_libdir_flag_spec_CXX='-rpath $libdir'
30236
 
+               ;;
30237
 
+           esac
 
38766
+  fi # test -n "$compiler"
30238
38767
 
30239
38768
-# The linker used to build libraries.
30240
38769
-LD=$lt_LD_F77
30241
 
+           hardcode_libdir_separator_CXX=:
 
38770
+  CC=$lt_save_CC
 
38771
+  LDCXX=$LD
 
38772
+  LD=$lt_save_LD
 
38773
+  GCC=$lt_save_GCC
 
38774
+  with_gnu_ld=$lt_save_with_gnu_ld
 
38775
+  lt_cv_path_LDCXX=$lt_cv_path_LD
 
38776
+  lt_cv_path_LD=$lt_save_path_LD
 
38777
+  lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
 
38778
+  lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
 
38779
+fi # test "$_lt_caught_CXX_error" != yes
30242
38780
 
30243
38781
-# Whether we need hard or soft links.
30244
38782
-LN_S=$lt_LN_S
30245
 
+           # Commands to make compiler produce verbose output that lists
30246
 
+           # what "hidden" libraries, object files and flags are used when
30247
 
+           # linking a shared library.
30248
 
+           #
30249
 
+           # There doesn't appear to be a way to prevent this compiler from
30250
 
+           # explicitly linking system object files so we need to strip them
30251
 
+           # from the output so that they don't get included in the library
30252
 
+           # dependencies.
30253
 
+           output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed'
30254
 
+           ;;
30255
 
+         *)
30256
 
+           if test "$GXX" = yes && test "$with_gnu_ld" = no; then
30257
 
+             allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*'
30258
 
+             case $host in
30259
 
+               osf3*)
30260
 
+                 archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
30261
 
+                 ;;
30262
 
+               *)
30263
 
+                 archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
30264
 
+                 ;;
30265
 
+             esac
 
38783
+ac_ext=c
 
38784
+ac_cpp='$CPP $CPPFLAGS'
 
38785
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
38786
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
38787
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
30266
38788
 
30267
38789
-# A BSD-compatible nm program.
30268
38790
-NM=$lt_NM
30269
 
+             hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
30270
 
+             hardcode_libdir_separator_CXX=:
30271
38791
 
30272
38792
-# A symbol stripping program
30273
38793
-STRIP=$lt_STRIP
30274
 
+             # Commands to make compiler produce verbose output that lists
30275
 
+             # what "hidden" libraries, object files and flags are used when
30276
 
+             # linking a shared library.
30277
 
+             output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"'
30278
38794
 
30279
38795
-# Used to examine libraries when file_magic_cmd begins "file"
30280
38796
-MAGIC_CMD=$MAGIC_CMD
30281
 
+           else
30282
 
+             # FIXME: insert proper C++ library support
30283
 
+             ld_shlibs_CXX=no
30284
 
+           fi
30285
 
+           ;;
30286
 
+        esac
30287
 
+        ;;
30288
38797
 
30289
38798
-# Used on cygwin: DLL creation program.
30290
38799
-DLLTOOL="$DLLTOOL"
30291
 
+      psos*)
30292
 
+        # FIXME: insert proper C++ library support
30293
 
+        ld_shlibs_CXX=no
30294
 
+        ;;
30295
38800
 
30296
38801
-# Used on cygwin: object dumper.
30297
38802
-OBJDUMP="$OBJDUMP"
30298
 
+      sunos4*)
30299
 
+        case $cc_basename in
30300
 
+          CC*)
30301
 
+           # Sun C++ 4.x
30302
 
+           # FIXME: insert proper C++ library support
30303
 
+           ld_shlibs_CXX=no
30304
 
+           ;;
30305
 
+          lcc*)
30306
 
+           # Lucid
30307
 
+           # FIXME: insert proper C++ library support
30308
 
+           ld_shlibs_CXX=no
30309
 
+           ;;
30310
 
+          *)
30311
 
+           # FIXME: insert proper C++ library support
30312
 
+           ld_shlibs_CXX=no
30313
 
+           ;;
30314
 
+        esac
30315
 
+        ;;
30316
38803
 
30317
38804
-# Used on cygwin: assembler.
30318
38805
-AS="$AS"
30319
 
+      solaris*)
30320
 
+        case $cc_basename in
30321
 
+          CC*)
30322
 
+           # Sun C++ 4.2, 5.x and Centerline C++
30323
 
+            archive_cmds_need_lc_CXX=yes
30324
 
+           no_undefined_flag_CXX=' -zdefs'
30325
 
+           archive_cmds_CXX='$CC -G${allow_undefined_flag}  -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
30326
 
+           archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
30327
 
+             $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
30328
38806
 
30329
38807
-# The name of the directory that contains temporary libtool files.
30330
38808
-objdir=$objdir
30331
 
+           hardcode_libdir_flag_spec_CXX='-R$libdir'
30332
 
+           hardcode_shlibpath_var_CXX=no
30333
 
+           case $host_os in
30334
 
+             solaris2.[0-5] | solaris2.[0-5].*) ;;
30335
 
+             *)
30336
 
+               # The compiler driver will combine and reorder linker options,
30337
 
+               # but understands `-z linker_flag'.
30338
 
+               # Supported since Solaris 2.6 (maybe 2.5.1?)
30339
 
+               whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract'
30340
 
+               ;;
30341
 
+           esac
30342
 
+           link_all_deplibs_CXX=yes
30343
38809
 
30344
38810
-# How to create reloadable object files.
30345
38811
-reload_flag=$lt_reload_flag
30346
38812
-reload_cmds=$lt_reload_cmds
30347
 
+           output_verbose_link_cmd='echo'
30348
38813
 
30349
38814
-# How to pass a linker flag through the compiler.
30350
38815
-wl=$lt_lt_prog_compiler_wl_F77
30351
 
+           # Archives containing C++ object files must be created using
30352
 
+           # "CC -xar", where "CC" is the Sun C++ compiler.  This is
30353
 
+           # necessary to make sure instantiated templates are included
30354
 
+           # in the archive.
30355
 
+           old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs'
30356
 
+           ;;
30357
 
+          gcx*)
30358
 
+           # Green Hills C++ Compiler
30359
 
+           archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
30360
38816
 
30361
38817
-# Object file suffix (normally "o").
30362
38818
-objext="$ac_objext"
30363
 
+           # The C++ compiler must be used to create the archive.
30364
 
+           old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
30365
 
+           ;;
30366
 
+          *)
30367
 
+           # GNU C++ compiler with Solaris linker
30368
 
+           if test "$GXX" = yes && test "$with_gnu_ld" = no; then
30369
 
+             no_undefined_flag_CXX=' ${wl}-z ${wl}defs'
30370
 
+             if $CC --version | $GREP -v '^2\.7' > /dev/null; then
30371
 
+               archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
30372
 
+               archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
30373
 
+                 $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
30374
38819
 
30375
38820
-# Old archive suffix (normally "a").
30376
38821
-libext="$libext"
30377
 
+               # Commands to make compiler produce verbose output that lists
30378
 
+               # what "hidden" libraries, object files and flags are used when
30379
 
+               # linking a shared library.
30380
 
+               output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"'
30381
 
+             else
30382
 
+               # g++ 2.7 appears to require `-G' NOT `-shared' on this
30383
 
+               # platform.
30384
 
+               archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
30385
 
+               archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
30386
 
+                 $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
30387
38822
 
30388
38823
-# Shared library suffix (normally ".so").
30389
38824
-shrext_cmds='$shrext_cmds'
30390
 
+               # Commands to make compiler produce verbose output that lists
30391
 
+               # what "hidden" libraries, object files and flags are used when
30392
 
+               # linking a shared library.
30393
 
+               output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"'
30394
 
+             fi
30395
38825
 
30396
38826
-# Executable file suffix (normally "").
30397
38827
-exeext="$exeext"
30398
 
+             hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir'
30399
 
+             case $host_os in
30400
 
+               solaris2.[0-5] | solaris2.[0-5].*) ;;
30401
 
+               *)
30402
 
+                 whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
30403
 
+                 ;;
30404
 
+             esac
30405
 
+           fi
30406
 
+           ;;
30407
 
+        esac
30408
 
+        ;;
 
38828
+        ac_config_commands="$ac_config_commands libtool"
30409
38829
 
30410
38830
-# Additional compiler flags for building library objects.
30411
38831
-pic_flag=$lt_lt_prog_compiler_pic_F77
30412
38832
-pic_mode=$pic_mode
30413
 
+    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)
30414
 
+      no_undefined_flag_CXX='${wl}-z,text'
30415
 
+      archive_cmds_need_lc_CXX=no
30416
 
+      hardcode_shlibpath_var_CXX=no
30417
 
+      runpath_var='LD_RUN_PATH'
30418
38833
 
30419
38834
-# What is the maximum length of a command?
30420
38835
-max_cmd_len=$lt_cv_sys_max_cmd_len
30421
 
+      case $cc_basename in
30422
 
+        CC*)
30423
 
+         archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
30424
 
+         archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
30425
 
+         ;;
30426
 
+       *)
30427
 
+         archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
30428
 
+         archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
30429
 
+         ;;
30430
 
+      esac
30431
 
+      ;;
30432
38836
 
30433
38837
-# Does compiler simultaneously support -c and -o options?
30434
38838
-compiler_c_o=$lt_lt_cv_prog_compiler_c_o_F77
30435
 
+      sysv5* | sco3.2v5* | sco5v6*)
30436
 
+       # Note: We can NOT use -z defs as we might desire, because we do not
30437
 
+       # link with -lc, and that would cause any symbols used from libc to
30438
 
+       # always be unresolved, which means just about no library would
30439
 
+       # ever link correctly.  If we're not using GNU ld we use -z text
30440
 
+       # though, which does catch some bad symbols but isn't as heavy-handed
30441
 
+       # as -z defs.
30442
 
+       no_undefined_flag_CXX='${wl}-z,text'
30443
 
+       allow_undefined_flag_CXX='${wl}-z,nodefs'
30444
 
+       archive_cmds_need_lc_CXX=no
30445
 
+       hardcode_shlibpath_var_CXX=no
30446
 
+       hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir'
30447
 
+       hardcode_libdir_separator_CXX=':'
30448
 
+       link_all_deplibs_CXX=yes
30449
 
+       export_dynamic_flag_spec_CXX='${wl}-Bexport'
30450
 
+       runpath_var='LD_RUN_PATH'
30451
38839
 
30452
38840
-# Must we lock files when doing compilation?
30453
38841
-need_locks=$lt_need_locks
30454
 
+       case $cc_basename in
30455
 
+          CC*)
30456
 
+           archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
30457
 
+           archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
30458
 
+           ;;
30459
 
+         *)
30460
 
+           archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
30461
 
+           archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
30462
 
+           ;;
30463
 
+       esac
30464
 
+      ;;
 
38842
+# Only expand once:
30465
38843
 
30466
38844
-# Do we need the lib prefix for modules?
30467
38845
-need_lib_prefix=$need_lib_prefix
30468
 
+      tandem*)
30469
 
+        case $cc_basename in
30470
 
+          NCC*)
30471
 
+           # NonStop-UX NCC 3.20
30472
 
+           # FIXME: insert proper C++ library support
30473
 
+           ld_shlibs_CXX=no
30474
 
+           ;;
30475
 
+          *)
30476
 
+           # FIXME: insert proper C++ library support
30477
 
+           ld_shlibs_CXX=no
30478
 
+           ;;
30479
 
+        esac
30480
 
+        ;;
30481
38846
 
30482
38847
-# Do we need a version for libraries?
30483
38848
-need_version=$need_version
30484
 
+      vxworks*)
30485
 
+        # FIXME: insert proper C++ library support
30486
 
+        ld_shlibs_CXX=no
30487
 
+        ;;
 
38849
+: ${CONFIG_LT=./config.lt}
 
38850
+{ echo "$as_me:$LINENO: creating $CONFIG_LT" >&5
 
38851
+echo "$as_me: creating $CONFIG_LT" >&6;}
 
38852
+cat >"$CONFIG_LT" <<_LTEOF
 
38853
+#! $SHELL
 
38854
+# Generated by $as_me.
 
38855
+# Run this file to recreate a libtool stub with the current configuration.
30488
38856
 
30489
38857
-# Whether dlopen is supported.
30490
38858
-dlopen_support=$enable_dlopen
30491
 
+      *)
30492
 
+        # FIXME: insert proper C++ library support
30493
 
+        ld_shlibs_CXX=no
30494
 
+        ;;
30495
 
+    esac
 
38859
+lt_cl_silent=false
 
38860
+SHELL=\${CONFIG_SHELL-$SHELL}
 
38861
+_LTEOF
30496
38862
 
30497
38863
-# Whether dlopen of programs is supported.
30498
38864
-dlopen_self=$enable_dlopen_self
30499
 
+    { echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5
30500
 
+echo "${ECHO_T}$ld_shlibs_CXX" >&6; }
30501
 
+    test "$ld_shlibs_CXX" = no && can_build_shared=no
 
38865
+cat >>"$CONFIG_LT" <<\_LTEOF
 
38866
+## --------------------- ##
 
38867
+## M4sh Initialization.  ##
 
38868
+## --------------------- ##
30502
38869
 
30503
38870
-# Whether dlopen of statically linked programs is supported.
30504
38871
-dlopen_self_static=$enable_dlopen_self_static
30505
 
+    GCC_CXX="$GXX"
30506
 
+    LD_CXX="$LD"
 
38872
+# Be more Bourne compatible
 
38873
+DUALCASE=1; export DUALCASE # for MKS sh
 
38874
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
38875
+  emulate sh
 
38876
+  NULLCMD=:
 
38877
+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
 
38878
+  # is contrary to our usage.  Disable this feature.
 
38879
+  alias -g '${1+"$@"}'='"$@"'
 
38880
+  setopt NO_GLOB_SUBST
 
38881
+else
 
38882
+  case `(set -o) 2>/dev/null` in
 
38883
+  *posix*) set -o posix ;;
 
38884
+esac
30507
38885
 
30508
38886
-# Compiler flag to prevent dynamic linking.
30509
38887
-link_static_flag=$lt_lt_prog_compiler_static_F77
30510
 
+    ## CAVEAT EMPTOR:
30511
 
+    ## There is no encapsulation within the following macros, do not change
30512
 
+    ## the running order or otherwise move them around unless you know exactly
30513
 
+    ## what you are doing...
30514
 
+    # Dependencies to place before and after the object being linked:
30515
 
+predep_objects_CXX=
30516
 
+postdep_objects_CXX=
30517
 
+predeps_CXX=
30518
 
+postdeps_CXX=
30519
 
+compiler_lib_search_path_CXX=
 
38888
+fi
30520
38889
 
30521
38890
-# Compiler flag to turn off builtin functions.
30522
38891
-no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_F77
30523
 
+cat > conftest.$ac_ext <<_LT_EOF
30524
 
+class Foo
30525
 
+{
30526
 
+public:
30527
 
+  Foo (void) { a = 0; }
30528
 
+private:
30529
 
+  int a;
30530
 
+};
30531
 
+_LT_EOF
30532
38892
 
30533
38893
-# Compiler flag to allow reflexive dlopens.
30534
38894
-export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_F77
30535
 
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
30536
 
+  (eval $ac_compile) 2>&5
30537
 
+  ac_status=$?
30538
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
30539
 
+  (exit $ac_status); }; then
30540
 
+  # Parse the compiler output and extract the necessary
30541
 
+  # objects, libraries and library flags.
30542
38895
 
30543
38896
-# Compiler flag to generate shared objects directly from archives.
30544
38897
-whole_archive_flag_spec=$lt_whole_archive_flag_spec_F77
30545
 
+  # Sentinel used to keep track of whether or not we are before
30546
 
+  # the conftest object file.
30547
 
+  pre_test_object_deps_done=no
30548
38898
 
30549
38899
-# Compiler flag to generate thread-safe objects.
30550
38900
-thread_safe_flag_spec=$lt_thread_safe_flag_spec_F77
30551
 
+  for p in `eval "$output_verbose_link_cmd"`; do
30552
 
+    case $p in
 
38901
+# PATH needs CR
 
38902
+# Avoid depending upon Character Ranges.
 
38903
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 
38904
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
38905
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 
38906
+as_cr_digits='0123456789'
 
38907
+as_cr_alnum=$as_cr_Letters$as_cr_digits
30553
38908
 
30554
38909
-# Library versioning type.
30555
38910
-version_type=$version_type
30556
 
+    -L* | -R* | -l*)
30557
 
+       # Some compilers place space between "-{L,R}" and the path.
30558
 
+       # Remove the space.
30559
 
+       if test $p = "-L" ||
30560
 
+          test $p = "-R"; then
30561
 
+        prev=$p
30562
 
+        continue
30563
 
+       else
30564
 
+        prev=
30565
 
+       fi
 
38911
+# The user is always right.
 
38912
+if test "${PATH_SEPARATOR+set}" != set; then
 
38913
+  echo "#! /bin/sh" >conf$$.sh
 
38914
+  echo  "exit 0"   >>conf$$.sh
 
38915
+  chmod +x conf$$.sh
 
38916
+  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
 
38917
+    PATH_SEPARATOR=';'
 
38918
+  else
 
38919
+    PATH_SEPARATOR=:
 
38920
+  fi
 
38921
+  rm -f conf$$.sh
 
38922
+fi
30566
38923
 
30567
38924
-# Format of library name prefix.
30568
38925
-libname_spec=$lt_libname_spec
30569
 
+       if test "$pre_test_object_deps_done" = no; then
30570
 
+        case $p in
30571
 
+        -L* | -R*)
30572
 
+          # Internal compiler library paths should come after those
30573
 
+          # provided the user.  The postdeps already come after the
30574
 
+          # user supplied libs so there is no need to process them.
30575
 
+          if test -z "$compiler_lib_search_path_CXX"; then
30576
 
+            compiler_lib_search_path_CXX="${prev}${p}"
30577
 
+          else
30578
 
+            compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}"
30579
 
+          fi
30580
 
+          ;;
30581
 
+        # The "-l" case would never come before the object being
30582
 
+        # linked, so don't bother handling this case.
30583
 
+        esac
30584
 
+       else
30585
 
+        if test -z "$postdeps_CXX"; then
30586
 
+          postdeps_CXX="${prev}${p}"
30587
 
+        else
30588
 
+          postdeps_CXX="${postdeps_CXX} ${prev}${p}"
30589
 
+        fi
30590
 
+       fi
30591
 
+       ;;
 
38926
+# Support unset when possible.
 
38927
+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
 
38928
+  as_unset=unset
 
38929
+else
 
38930
+  as_unset=false
 
38931
+fi
30592
38932
 
30593
38933
-# List of archive names.  First name is the real one, the rest are links.
30594
38934
-# The last name is the one that the linker finds with -lNAME.
30595
38935
-library_names_spec=$lt_library_names_spec
30596
 
+    *.$objext)
30597
 
+       # This assumes that the test object file only shows up
30598
 
+       # once in the compiler output.
30599
 
+       if test "$p" = "conftest.$objext"; then
30600
 
+        pre_test_object_deps_done=yes
30601
 
+        continue
30602
 
+       fi
30603
38936
 
30604
38937
-# The coded name of the library, if different from the real name.
30605
38938
-soname_spec=$lt_soname_spec
30606
 
+       if test "$pre_test_object_deps_done" = no; then
30607
 
+        if test -z "$predep_objects_CXX"; then
30608
 
+          predep_objects_CXX="$p"
30609
 
+        else
30610
 
+          predep_objects_CXX="$predep_objects_CXX $p"
30611
 
+        fi
30612
 
+       else
30613
 
+        if test -z "$postdep_objects_CXX"; then
30614
 
+          postdep_objects_CXX="$p"
30615
 
+        else
30616
 
+          postdep_objects_CXX="$postdep_objects_CXX $p"
30617
 
+        fi
30618
 
+       fi
30619
 
+       ;;
 
38939
+# IFS
 
38940
+# We need space, tab and new line, in precisely that order.  Quoting is
 
38941
+# there to prevent editors from complaining about space-tab.
 
38942
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
 
38943
+# splitting by setting IFS to empty value.)
 
38944
+as_nl='
 
38945
+'
 
38946
+IFS=" ""       $as_nl"
30620
38947
 
30621
38948
-# Commands used to build and install an old-style archive.
30622
38949
-RANLIB=$lt_RANLIB
30623
38950
-old_archive_cmds=$lt_old_archive_cmds_F77
30624
38951
-old_postinstall_cmds=$lt_old_postinstall_cmds
30625
38952
-old_postuninstall_cmds=$lt_old_postuninstall_cmds
30626
 
+    *) ;; # Ignore the rest.
 
38953
+# Find who we are.  Look in the path if we contain no directory separator.
 
38954
+case $0 in
 
38955
+  *[\\/]* ) as_myself=$0 ;;
 
38956
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
38957
+for as_dir in $PATH
 
38958
+do
 
38959
+  IFS=$as_save_IFS
 
38960
+  test -z "$as_dir" && as_dir=.
 
38961
+  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 
38962
+done
 
38963
+IFS=$as_save_IFS
30627
38964
 
30628
38965
-# Create an old-style archive from a shared archive.
30629
38966
-old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_F77
30630
 
+    esac
30631
 
+  done
 
38967
+     ;;
 
38968
+esac
 
38969
+# We did not find ourselves, most probably we were run as `sh COMMAND'
 
38970
+# in which case we are not to be found in the path.
 
38971
+if test "x$as_myself" = x; then
 
38972
+  as_myself=$0
 
38973
+fi
 
38974
+if test ! -f "$as_myself"; then
 
38975
+  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 
38976
+  { (exit 1); exit 1; }
 
38977
+fi
30632
38978
 
30633
38979
-# Create a temporary old-style archive to link instead of a shared archive.
30634
38980
-old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_F77
30635
 
+  # Clean up.
30636
 
+  rm -f a.out a.exe
30637
 
+else
30638
 
+  echo "libtool.m4: error: problem compiling CXX test program"
30639
 
+fi
 
38981
+# Work around bugs in pre-3.0 UWIN ksh.
 
38982
+for as_var in ENV MAIL MAILPATH
 
38983
+do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 
38984
+done
 
38985
+PS1='$ '
 
38986
+PS2='> '
 
38987
+PS4='+ '
30640
38988
 
30641
38989
-# Commands used to build and install a shared archive.
30642
38990
-archive_cmds=$lt_archive_cmds_F77
30643
38991
-archive_expsym_cmds=$lt_archive_expsym_cmds_F77
30644
38992
-postinstall_cmds=$lt_postinstall_cmds
30645
38993
-postuninstall_cmds=$lt_postuninstall_cmds
30646
 
+$RM -f confest.$objext
 
38994
+# NLS nuisances.
 
38995
+for as_var in \
 
38996
+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
 
38997
+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
 
38998
+  LC_TELEPHONE LC_TIME
 
38999
+do
 
39000
+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
 
39001
+    eval $as_var=C; export $as_var
 
39002
+  else
 
39003
+    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 
39004
+  fi
 
39005
+done
30647
39006
 
30648
39007
-# Commands used to build a loadable module (assumed same as above if empty)
30649
39008
-module_cmds=$lt_module_cmds_F77
30650
39009
-module_expsym_cmds=$lt_module_expsym_cmds_F77
30651
 
+# PORTME: override above test on systems where it is broken
30652
 
+case $host_os in
30653
 
+interix[3-9]*)
30654
 
+  # Interix 3.5 installs completely hosed .la files for C++, so rather than
30655
 
+  # hack all around it, let's just trust "g++" to DTRT.
30656
 
+  predep_objects_CXX=
30657
 
+  postdep_objects_CXX=
30658
 
+  postdeps_CXX=
30659
 
+  ;;
 
39010
+# Required to use basename.
 
39011
+if expr a : '\(a\)' >/dev/null 2>&1 &&
 
39012
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
39013
+  as_expr=expr
 
39014
+else
 
39015
+  as_expr=false
 
39016
+fi
30660
39017
 
30661
39018
-# Commands to strip libraries.
30662
39019
-old_striplib=$lt_old_striplib
30663
39020
-striplib=$lt_striplib
30664
 
+linux*)
30665
 
+  case `$CC -V 2>&1 | sed 5q` in
30666
 
+  *Sun\ C*)
30667
 
+    # Sun C++ 5.9
 
39021
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
 
39022
+  as_basename=basename
 
39023
+else
 
39024
+  as_basename=false
 
39025
+fi
30668
39026
 
30669
39027
-# Dependencies to place before the objects being linked to create a
30670
39028
-# shared library.
30681
39039
-# Dependencies to place after the objects being linked to create a
30682
39040
-# shared library.
30683
39041
-postdeps=$lt_postdeps_F77
30684
 
+    # The more standards-conforming stlport4 library is
30685
 
+    # incompatible with the Cstd library. Avoid specifying
30686
 
+    # it if it's in CXXFLAGS. Ignore libCrun as
30687
 
+    # -library=stlport4 depends on it.
30688
 
+    case " $CXX $CXXFLAGS " in
30689
 
+    *" -library=stlport4 "*)
30690
 
+      solaris_use_stlport4=yes
30691
 
+      ;;
30692
 
+    esac
 
39042
-
 
39043
-# The directories searched by this compiler when creating a shared
 
39044
-# library
 
39045
-compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_F77
30693
39046
 
30694
39047
-# The library search path used internally by the compiler when linking
30695
39048
-# a shared library.
30696
39049
-compiler_lib_search_path=$lt_compiler_lib_search_path_F77
30697
 
+    if test "$solaris_use_stlport4" != yes; then
30698
 
+      postdeps_CXX='-library=Cstd -library=Crun'
30699
 
+    fi
30700
 
+    ;;
30701
 
+  esac
30702
 
+  ;;
 
39050
+# Name of the executable.
 
39051
+as_me=`$as_basename -- "$0" ||
 
39052
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 
39053
+        X"$0" : 'X\(//\)$' \| \
 
39054
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 
39055
+echo X/"$0" |
 
39056
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
 
39057
+           s//\1/
 
39058
+           q
 
39059
+         }
 
39060
+         /^X\/\(\/\/\)$/{
 
39061
+           s//\1/
 
39062
+           q
 
39063
+         }
 
39064
+         /^X\/\(\/\).*/{
 
39065
+           s//\1/
 
39066
+           q
 
39067
+         }
 
39068
+         s/.*/./; q'`
30703
39069
 
30704
39070
-# Method to check whether dependent libraries are shared objects.
30705
39071
-deplibs_check_method=$lt_deplibs_check_method
30706
 
+solaris*)
30707
 
+  case $cc_basename in
30708
 
+  CC*)
30709
 
+    # The more standards-conforming stlport4 library is
30710
 
+    # incompatible with the Cstd library. Avoid specifying
30711
 
+    # it if it's in CXXFLAGS. Ignore libCrun as
30712
 
+    # -library=stlport4 depends on it.
30713
 
+    case " $CXX $CXXFLAGS " in
30714
 
+    *" -library=stlport4 "*)
30715
 
+      solaris_use_stlport4=yes
30716
 
+      ;;
30717
 
+    esac
 
39072
+# CDPATH.
 
39073
+$as_unset CDPATH
30718
39074
 
30719
39075
-# Command to use when deplibs_check_method == file_magic.
30720
39076
-file_magic_cmd=$lt_file_magic_cmd
30721
 
+    # Adding this requires a known-good setup of shared libraries for
30722
 
+    # Sun compiler versions before 5.6, else PIC objects from an old
30723
 
+    # archive will be linked into the output, leading to subtle bugs.
30724
 
+    if test "$solaris_use_stlport4" != yes; then
30725
 
+      postdeps_CXX='-library=Cstd -library=Crun'
30726
 
+    fi
30727
 
+    ;;
30728
 
+  esac
30729
 
+  ;;
30730
 
+esac
30731
39077
 
30732
39078
-# Flag that allows shared libraries with undefined symbols to be built.
30733
39079
-allow_undefined_flag=$lt_allow_undefined_flag_F77
30734
39080
 
30735
39081
-# Flag that forces no undefined symbols.
30736
39082
-no_undefined_flag=$lt_no_undefined_flag_F77
30737
 
+case " $postdeps_CXX " in
30738
 
+*" -lc "*) archive_cmds_need_lc_CXX=no ;;
30739
 
+esac
30740
 
+ compiler_lib_search_dirs_CXX=
30741
 
+if test -n "${compiler_lib_search_path_CXX}"; then
30742
 
+ compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'`
30743
 
+fi
 
39083
+  as_lineno_1=$LINENO
 
39084
+  as_lineno_2=$LINENO
 
39085
+  test "x$as_lineno_1" != "x$as_lineno_2" &&
 
39086
+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
30744
39087
 
30745
39088
-# Commands used to finish a libtool library installation in a directory.
30746
39089
-finish_cmds=$lt_finish_cmds
 
39090
+  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
 
39091
+  # uniformly replaced by the line number.  The first 'sed' inserts a
 
39092
+  # line-number line after each line using $LINENO; the second 'sed'
 
39093
+  # does the real work.  The second script uses 'N' to pair each
 
39094
+  # line-number line with the line containing $LINENO, and appends
 
39095
+  # trailing '-' during substitution so that $LINENO is not a special
 
39096
+  # case at line end.
 
39097
+  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
 
39098
+  # scripts with optimization help from Paolo Bonzini.  Blame Lee
 
39099
+  # E. McMahon (1931-1989) for sed's syntax.  :-)
 
39100
+  sed -n '
 
39101
+    p
 
39102
+    /[$]LINENO/=
 
39103
+  ' <$as_myself |
 
39104
+    sed '
 
39105
+      s/[$]LINENO.*/&-/
 
39106
+      t lineno
 
39107
+      b
 
39108
+      :lineno
 
39109
+      N
 
39110
+      :loop
 
39111
+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
 
39112
+      t loop
 
39113
+      s/-\n.*//
 
39114
+    ' >$as_me.lineno &&
 
39115
+  chmod +x "$as_me.lineno" ||
 
39116
+    { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
 
39117
+echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
 
39118
+   { (exit 1); exit 1; }; }
30747
39119
 
30748
39120
-# Same as above, but a single script fragment to be evaled but not shown.
30749
39121
-finish_eval=$lt_finish_eval
 
39122
+  # Don't try to exec as it changes $[0], causing all sort of problems
 
39123
+  # (the dirname of $[0] is not the place where we might find the
 
39124
+  # original and so on.  Autoconf is especially sensitive to this).
 
39125
+  . "./$as_me.lineno"
 
39126
+  # Exit status is that of the last command.
 
39127
+  exit
 
39128
+}
30750
39129
 
30751
39130
-# Take the output of nm and produce a listing of raw symbols and C names.
30752
39131
-global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
30753
39132
 
30754
39133
-# Transform the output of nm in a proper C declaration
30755
39134
-global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
 
39135
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
 
39136
+  as_dirname=dirname
 
39137
+else
 
39138
+  as_dirname=false
 
39139
+fi
30756
39140
 
30757
39141
-# Transform the output of nm in a C name address pair
30758
39142
-global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
 
39143
+ECHO_C= ECHO_N= ECHO_T=
 
39144
+case `echo -n x` in
 
39145
+-n*)
 
39146
+  case `echo 'x\c'` in
 
39147
+  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
 
39148
+  *)   ECHO_C='\c';;
 
39149
+  esac;;
 
39150
+*)
 
39151
+  ECHO_N='-n';;
 
39152
+esac
30759
39153
 
30760
39154
-# This is the shared library runtime path variable.
30761
39155
-runpath_var=$runpath_var
 
39156
+if expr a : '\(a\)' >/dev/null 2>&1 &&
 
39157
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
39158
+  as_expr=expr
 
39159
+else
 
39160
+  as_expr=false
 
39161
+fi
30762
39162
 
30763
39163
-# This is the shared library path variable.
30764
39164
-shlibpath_var=$shlibpath_var
 
39165
+rm -f conf$$ conf$$.exe conf$$.file
 
39166
+if test -d conf$$.dir; then
 
39167
+  rm -f conf$$.dir/conf$$.file
 
39168
+else
 
39169
+  rm -f conf$$.dir
 
39170
+  mkdir conf$$.dir
 
39171
+fi
 
39172
+echo >conf$$.file
 
39173
+if ln -s conf$$.file conf$$ 2>/dev/null; then
 
39174
+  as_ln_s='ln -s'
 
39175
+  # ... but there are two gotchas:
 
39176
+  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 
39177
+  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 
39178
+  # In both cases, we have to default to `cp -p'.
 
39179
+  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 
39180
+    as_ln_s='cp -p'
 
39181
+elif ln conf$$.file conf$$ 2>/dev/null; then
 
39182
+  as_ln_s=ln
 
39183
+else
 
39184
+  as_ln_s='cp -p'
 
39185
+fi
 
39186
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 
39187
+rmdir conf$$.dir 2>/dev/null
30765
39188
 
30766
39189
-# Is shlibpath searched before the hard-coded library search path?
30767
39190
-shlibpath_overrides_runpath=$shlibpath_overrides_runpath
 
39191
+if mkdir -p . 2>/dev/null; then
 
39192
+  as_mkdir_p=:
 
39193
+else
 
39194
+  test -d ./-p && rmdir ./-p
 
39195
+  as_mkdir_p=false
 
39196
+fi
30768
39197
 
30769
39198
-# How to hardcode a shared library path into an executable.
30770
39199
-hardcode_action=$hardcode_action_F77
 
39200
+if test -x / >/dev/null 2>&1; then
 
39201
+  as_test_x='test -x'
 
39202
+else
 
39203
+  if ls -dL / >/dev/null 2>&1; then
 
39204
+    as_ls_L_option=L
 
39205
+  else
 
39206
+    as_ls_L_option=
 
39207
+  fi
 
39208
+  as_test_x='
 
39209
+    eval sh -c '\''
 
39210
+      if test -d "$1"; then
 
39211
+        test -d "$1/.";
 
39212
+      else
 
39213
+       case $1 in
 
39214
+        -*)set "./$1";;
 
39215
+       esac;
 
39216
+       case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
 
39217
+       ???[sx]*):;;*)false;;esac;fi
 
39218
+    '\'' sh
 
39219
+  '
 
39220
+fi
 
39221
+as_executable_p=$as_test_x
30771
39222
 
30772
39223
-# Whether we should hardcode library paths into libraries.
30773
39224
-hardcode_into_libs=$hardcode_into_libs
 
39225
+# Sed expression to map a string onto a valid CPP name.
 
39226
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
39227
+
 
39228
+# Sed expression to map a string onto a valid variable name.
 
39229
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
30774
39230
 
30775
39231
-# Flag to hardcode \$libdir into a binary during linking.
30776
39232
-# This must work even if \$libdir does not exist.
30803
39259
-# Variables whose values should be saved in libtool wrapper scripts and
30804
39260
-# restored at relink time.
30805
39261
-variables_saved_for_relink="$variables_saved_for_relink"
 
39262
+exec 6>&1
 
39263
+exec 5>>config.log
 
39264
+{
 
39265
+  echo
 
39266
+  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
 
39267
+## Running $as_me. ##
 
39268
+_ASBOX
 
39269
+} >&5
30806
39270
 
30807
39271
-# Whether libtool must link a program against all its dependency libraries.
30808
39272
-link_all_deplibs=$link_all_deplibs_F77
 
39273
+lt_cl_help="\
 
39274
+\`$as_me' creates a local libtool stub from the current configuration,
 
39275
+for use in further configure time tests before the real libtool is
 
39276
+generated.
 
39277
+
 
39278
+Usage: $0 [OPTIONS]
 
39279
+
 
39280
+  -h, --help      print this help, then exit
 
39281
+  -V, --version   print version number, then exit
 
39282
+  -q, --quiet     do not print progress messages
 
39283
+  -d, --debug     don't remove temporary files
 
39284
+
 
39285
+Report bugs to <bug-libtool@gnu.org>."
 
39286
+
 
39287
+lt_cl_version="\
 
39288
+totem config.lt 2.24.3
 
39289
+configured by $0, generated by GNU Autoconf 2.61.
30809
39290
 
30810
39291
-# Compile-time system search path for libraries
30811
39292
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
 
39293
+Copyright (C) 2008 Free Software Foundation, Inc.
 
39294
+This config.lt script is free software; the Free Software Foundation
 
39295
+gives unlimited permision to copy, distribute and modify it."
30812
39296
 
30813
39297
-# Run-time system search path for libraries
30814
39298
-sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
 
39299
+while test $# != 0
 
39300
+do
 
39301
+  case $1 in
 
39302
+    --version | --v* | -V )
 
39303
+      echo "$lt_cl_version"; exit 0 ;;
 
39304
+    --help | --h* | -h )
 
39305
+      echo "$lt_cl_help"; exit 0 ;;
 
39306
+    --debug | --d* | -d )
 
39307
+      debug=: ;;
 
39308
+    --quiet | --q* | --silent | --s* | -q )
 
39309
+      lt_cl_silent=: ;;
 
39310
+
 
39311
+    -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
 
39312
+Try \`$0 --help' for more information." >&5
 
39313
+echo "$as_me: error: unrecognized option: $1
 
39314
+Try \`$0 --help' for more information." >&2;}
 
39315
+   { (exit 1); exit 1; }; } ;;
30815
39316
 
30816
39317
-# Fix the shell variable \$srcfile for the compiler.
30817
39318
-fix_srcfile_path=$lt_fix_srcfile_path
 
39319
+    *) { { echo "$as_me:$LINENO: error: unrecognized argument: $1
 
39320
+Try \`$0 --help' for more information." >&5
 
39321
+echo "$as_me: error: unrecognized argument: $1
 
39322
+Try \`$0 --help' for more information." >&2;}
 
39323
+   { (exit 1); exit 1; }; } ;;
 
39324
+  esac
 
39325
+  shift
 
39326
+done
30818
39327
 
30819
39328
-# Set to yes if exported symbols are required.
30820
39329
-always_export_symbols=$always_export_symbols_F77
 
39330
+if $lt_cl_silent; then
 
39331
+  exec 6>/dev/null
 
39332
+fi
 
39333
+_LTEOF
30821
39334
 
30822
39335
-# The commands to list exported symbols.
30823
39336
-export_symbols_cmds=$lt_export_symbols_cmds_F77
 
39337
+cat >>"$CONFIG_LT" <<_LTEOF
30824
39338
 
30825
39339
-# The commands to extract the exported symbol list from a shared archive.
30826
39340
-extract_expsyms_cmds=$lt_extract_expsyms_cmds
30827
39341
 
30828
39342
-# Symbols that should not be listed in the preloaded symbols.
30829
39343
-exclude_expsyms=$lt_exclude_expsyms_F77
 
39344
+# The HP-UX ksh and POSIX shell print the target directory to stdout
 
39345
+# if CDPATH is set.
 
39346
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
30830
39347
 
30831
39348
-# Symbols that must always be exported.
30832
39349
-include_expsyms=$lt_include_expsyms_F77
 
39350
+sed_quote_subst='$sed_quote_subst'
 
39351
+double_quote_subst='$double_quote_subst'
 
39352
+delay_variable_subst='$delay_variable_subst'
 
39353
+macro_version='`$ECHO "X$macro_version" | $Xsed -e "$delay_single_quote_subst"`'
 
39354
+macro_revision='`$ECHO "X$macro_revision" | $Xsed -e "$delay_single_quote_subst"`'
 
39355
+enable_shared='`$ECHO "X$enable_shared" | $Xsed -e "$delay_single_quote_subst"`'
 
39356
+enable_static='`$ECHO "X$enable_static" | $Xsed -e "$delay_single_quote_subst"`'
 
39357
+pic_mode='`$ECHO "X$pic_mode" | $Xsed -e "$delay_single_quote_subst"`'
 
39358
+enable_fast_install='`$ECHO "X$enable_fast_install" | $Xsed -e "$delay_single_quote_subst"`'
 
39359
+host_alias='`$ECHO "X$host_alias" | $Xsed -e "$delay_single_quote_subst"`'
 
39360
+host='`$ECHO "X$host" | $Xsed -e "$delay_single_quote_subst"`'
 
39361
+host_os='`$ECHO "X$host_os" | $Xsed -e "$delay_single_quote_subst"`'
 
39362
+build_alias='`$ECHO "X$build_alias" | $Xsed -e "$delay_single_quote_subst"`'
 
39363
+build='`$ECHO "X$build" | $Xsed -e "$delay_single_quote_subst"`'
 
39364
+build_os='`$ECHO "X$build_os" | $Xsed -e "$delay_single_quote_subst"`'
 
39365
+SED='`$ECHO "X$SED" | $Xsed -e "$delay_single_quote_subst"`'
 
39366
+Xsed='`$ECHO "X$Xsed" | $Xsed -e "$delay_single_quote_subst"`'
 
39367
+GREP='`$ECHO "X$GREP" | $Xsed -e "$delay_single_quote_subst"`'
 
39368
+EGREP='`$ECHO "X$EGREP" | $Xsed -e "$delay_single_quote_subst"`'
 
39369
+FGREP='`$ECHO "X$FGREP" | $Xsed -e "$delay_single_quote_subst"`'
 
39370
+LD='`$ECHO "X$LD" | $Xsed -e "$delay_single_quote_subst"`'
 
39371
+NM='`$ECHO "X$NM" | $Xsed -e "$delay_single_quote_subst"`'
 
39372
+LN_S='`$ECHO "X$LN_S" | $Xsed -e "$delay_single_quote_subst"`'
 
39373
+max_cmd_len='`$ECHO "X$max_cmd_len" | $Xsed -e "$delay_single_quote_subst"`'
 
39374
+ac_objext='`$ECHO "X$ac_objext" | $Xsed -e "$delay_single_quote_subst"`'
 
39375
+exeext='`$ECHO "X$exeext" | $Xsed -e "$delay_single_quote_subst"`'
 
39376
+lt_unset='`$ECHO "X$lt_unset" | $Xsed -e "$delay_single_quote_subst"`'
 
39377
+lt_SP2NL='`$ECHO "X$lt_SP2NL" | $Xsed -e "$delay_single_quote_subst"`'
 
39378
+lt_NL2SP='`$ECHO "X$lt_NL2SP" | $Xsed -e "$delay_single_quote_subst"`'
 
39379
+reload_flag='`$ECHO "X$reload_flag" | $Xsed -e "$delay_single_quote_subst"`'
 
39380
+reload_cmds='`$ECHO "X$reload_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39381
+deplibs_check_method='`$ECHO "X$deplibs_check_method" | $Xsed -e "$delay_single_quote_subst"`'
 
39382
+file_magic_cmd='`$ECHO "X$file_magic_cmd" | $Xsed -e "$delay_single_quote_subst"`'
 
39383
+AR='`$ECHO "X$AR" | $Xsed -e "$delay_single_quote_subst"`'
 
39384
+AR_FLAGS='`$ECHO "X$AR_FLAGS" | $Xsed -e "$delay_single_quote_subst"`'
 
39385
+STRIP='`$ECHO "X$STRIP" | $Xsed -e "$delay_single_quote_subst"`'
 
39386
+RANLIB='`$ECHO "X$RANLIB" | $Xsed -e "$delay_single_quote_subst"`'
 
39387
+old_postinstall_cmds='`$ECHO "X$old_postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39388
+old_postuninstall_cmds='`$ECHO "X$old_postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39389
+old_archive_cmds='`$ECHO "X$old_archive_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39390
+CC='`$ECHO "X$CC" | $Xsed -e "$delay_single_quote_subst"`'
 
39391
+CFLAGS='`$ECHO "X$CFLAGS" | $Xsed -e "$delay_single_quote_subst"`'
 
39392
+compiler='`$ECHO "X$compiler" | $Xsed -e "$delay_single_quote_subst"`'
 
39393
+GCC='`$ECHO "X$GCC" | $Xsed -e "$delay_single_quote_subst"`'
 
39394
+lt_cv_sys_global_symbol_pipe='`$ECHO "X$lt_cv_sys_global_symbol_pipe" | $Xsed -e "$delay_single_quote_subst"`'
 
39395
+lt_cv_sys_global_symbol_to_cdecl='`$ECHO "X$lt_cv_sys_global_symbol_to_cdecl" | $Xsed -e "$delay_single_quote_subst"`'
 
39396
+lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address" | $Xsed -e "$delay_single_quote_subst"`'
 
39397
+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`'
 
39398
+objdir='`$ECHO "X$objdir" | $Xsed -e "$delay_single_quote_subst"`'
 
39399
+SHELL='`$ECHO "X$SHELL" | $Xsed -e "$delay_single_quote_subst"`'
 
39400
+ECHO='`$ECHO "X$ECHO" | $Xsed -e "$delay_single_quote_subst"`'
 
39401
+MAGIC_CMD='`$ECHO "X$MAGIC_CMD" | $Xsed -e "$delay_single_quote_subst"`'
 
39402
+lt_prog_compiler_no_builtin_flag='`$ECHO "X$lt_prog_compiler_no_builtin_flag" | $Xsed -e "$delay_single_quote_subst"`'
 
39403
+lt_prog_compiler_wl='`$ECHO "X$lt_prog_compiler_wl" | $Xsed -e "$delay_single_quote_subst"`'
 
39404
+lt_prog_compiler_pic='`$ECHO "X$lt_prog_compiler_pic" | $Xsed -e "$delay_single_quote_subst"`'
 
39405
+lt_prog_compiler_static='`$ECHO "X$lt_prog_compiler_static" | $Xsed -e "$delay_single_quote_subst"`'
 
39406
+lt_cv_prog_compiler_c_o='`$ECHO "X$lt_cv_prog_compiler_c_o" | $Xsed -e "$delay_single_quote_subst"`'
 
39407
+need_locks='`$ECHO "X$need_locks" | $Xsed -e "$delay_single_quote_subst"`'
 
39408
+DSYMUTIL='`$ECHO "X$DSYMUTIL" | $Xsed -e "$delay_single_quote_subst"`'
 
39409
+NMEDIT='`$ECHO "X$NMEDIT" | $Xsed -e "$delay_single_quote_subst"`'
 
39410
+LIPO='`$ECHO "X$LIPO" | $Xsed -e "$delay_single_quote_subst"`'
 
39411
+OTOOL='`$ECHO "X$OTOOL" | $Xsed -e "$delay_single_quote_subst"`'
 
39412
+OTOOL64='`$ECHO "X$OTOOL64" | $Xsed -e "$delay_single_quote_subst"`'
 
39413
+libext='`$ECHO "X$libext" | $Xsed -e "$delay_single_quote_subst"`'
 
39414
+shrext_cmds='`$ECHO "X$shrext_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39415
+extract_expsyms_cmds='`$ECHO "X$extract_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39416
+archive_cmds_need_lc='`$ECHO "X$archive_cmds_need_lc" | $Xsed -e "$delay_single_quote_subst"`'
 
39417
+enable_shared_with_static_runtimes='`$ECHO "X$enable_shared_with_static_runtimes" | $Xsed -e "$delay_single_quote_subst"`'
 
39418
+export_dynamic_flag_spec='`$ECHO "X$export_dynamic_flag_spec" | $Xsed -e "$delay_single_quote_subst"`'
 
39419
+whole_archive_flag_spec='`$ECHO "X$whole_archive_flag_spec" | $Xsed -e "$delay_single_quote_subst"`'
 
39420
+compiler_needs_object='`$ECHO "X$compiler_needs_object" | $Xsed -e "$delay_single_quote_subst"`'
 
39421
+old_archive_from_new_cmds='`$ECHO "X$old_archive_from_new_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39422
+old_archive_from_expsyms_cmds='`$ECHO "X$old_archive_from_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39423
+archive_cmds='`$ECHO "X$archive_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39424
+archive_expsym_cmds='`$ECHO "X$archive_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39425
+module_cmds='`$ECHO "X$module_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39426
+module_expsym_cmds='`$ECHO "X$module_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39427
+with_gnu_ld='`$ECHO "X$with_gnu_ld" | $Xsed -e "$delay_single_quote_subst"`'
 
39428
+allow_undefined_flag='`$ECHO "X$allow_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`'
 
39429
+no_undefined_flag='`$ECHO "X$no_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`'
 
39430
+hardcode_libdir_flag_spec='`$ECHO "X$hardcode_libdir_flag_spec" | $Xsed -e "$delay_single_quote_subst"`'
 
39431
+hardcode_libdir_flag_spec_ld='`$ECHO "X$hardcode_libdir_flag_spec_ld" | $Xsed -e "$delay_single_quote_subst"`'
 
39432
+hardcode_libdir_separator='`$ECHO "X$hardcode_libdir_separator" | $Xsed -e "$delay_single_quote_subst"`'
 
39433
+hardcode_direct='`$ECHO "X$hardcode_direct" | $Xsed -e "$delay_single_quote_subst"`'
 
39434
+hardcode_direct_absolute='`$ECHO "X$hardcode_direct_absolute" | $Xsed -e "$delay_single_quote_subst"`'
 
39435
+hardcode_minus_L='`$ECHO "X$hardcode_minus_L" | $Xsed -e "$delay_single_quote_subst"`'
 
39436
+hardcode_shlibpath_var='`$ECHO "X$hardcode_shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`'
 
39437
+hardcode_automatic='`$ECHO "X$hardcode_automatic" | $Xsed -e "$delay_single_quote_subst"`'
 
39438
+inherit_rpath='`$ECHO "X$inherit_rpath" | $Xsed -e "$delay_single_quote_subst"`'
 
39439
+link_all_deplibs='`$ECHO "X$link_all_deplibs" | $Xsed -e "$delay_single_quote_subst"`'
 
39440
+fix_srcfile_path='`$ECHO "X$fix_srcfile_path" | $Xsed -e "$delay_single_quote_subst"`'
 
39441
+always_export_symbols='`$ECHO "X$always_export_symbols" | $Xsed -e "$delay_single_quote_subst"`'
 
39442
+export_symbols_cmds='`$ECHO "X$export_symbols_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39443
+exclude_expsyms='`$ECHO "X$exclude_expsyms" | $Xsed -e "$delay_single_quote_subst"`'
 
39444
+include_expsyms='`$ECHO "X$include_expsyms" | $Xsed -e "$delay_single_quote_subst"`'
 
39445
+prelink_cmds='`$ECHO "X$prelink_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39446
+file_list_spec='`$ECHO "X$file_list_spec" | $Xsed -e "$delay_single_quote_subst"`'
 
39447
+variables_saved_for_relink='`$ECHO "X$variables_saved_for_relink" | $Xsed -e "$delay_single_quote_subst"`'
 
39448
+need_lib_prefix='`$ECHO "X$need_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`'
 
39449
+need_version='`$ECHO "X$need_version" | $Xsed -e "$delay_single_quote_subst"`'
 
39450
+version_type='`$ECHO "X$version_type" | $Xsed -e "$delay_single_quote_subst"`'
 
39451
+runpath_var='`$ECHO "X$runpath_var" | $Xsed -e "$delay_single_quote_subst"`'
 
39452
+shlibpath_var='`$ECHO "X$shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`'
 
39453
+shlibpath_overrides_runpath='`$ECHO "X$shlibpath_overrides_runpath" | $Xsed -e "$delay_single_quote_subst"`'
 
39454
+libname_spec='`$ECHO "X$libname_spec" | $Xsed -e "$delay_single_quote_subst"`'
 
39455
+library_names_spec='`$ECHO "X$library_names_spec" | $Xsed -e "$delay_single_quote_subst"`'
 
39456
+soname_spec='`$ECHO "X$soname_spec" | $Xsed -e "$delay_single_quote_subst"`'
 
39457
+postinstall_cmds='`$ECHO "X$postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39458
+postuninstall_cmds='`$ECHO "X$postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39459
+finish_cmds='`$ECHO "X$finish_cmds" | $Xsed -e "$delay_single_quote_subst"`'
 
39460
+finish_eval='`$ECHO "X$finish_eval" | $Xsed -e "$delay_single_quote_subst"`'
 
39461
+hardcode_into_libs='`$ECHO "X$hardcode_into_libs" | $Xsed -e "$delay_single_quote_subst"`'
 
39462
+sys_lib_search_path_spec='`$ECHO "X$sys_lib_search_path_spec" | $Xsed -e "$delay_single_quote_subst"`'
 
39463
+sys_lib_dlsearch_path_spec='`$ECHO "X$sys_lib_dlsearch_path_spec" | $Xsed -e "$delay_single_quote_subst"`'
 
39464
+hardcode_action='`$ECHO "X$hardcode_action" | $Xsed -e "$delay_single_quote_subst"`'
 
39465
+enable_dlopen='`$ECHO "X$enable_dlopen" | $Xsed -e "$delay_single_quote_subst"`'
 
39466
+enable_dlopen_self='`$ECHO "X$enable_dlopen_self" | $Xsed -e "$delay_single_quote_subst"`'
 
39467
+enable_dlopen_self_static='`$ECHO "X$enable_dlopen_self_static" | $Xsed -e "$delay_single_quote_subst"`'
 
39468
+old_striplib='`$ECHO "X$old_striplib" | $Xsed -e "$delay_single_quote_subst"`'
 
39469
+striplib='`$ECHO "X$striplib" | $Xsed -e "$delay_single_quote_subst"`'
 
39470
+compiler_lib_search_dirs='`$ECHO "X$compiler_lib_search_dirs" | $Xsed -e "$delay_single_quote_subst"`'
 
39471
+predep_objects='`$ECHO "X$predep_objects" | $Xsed -e "$delay_single_quote_subst"`'
 
39472
+postdep_objects='`$ECHO "X$postdep_objects" | $Xsed -e "$delay_single_quote_subst"`'
 
39473
+predeps='`$ECHO "X$predeps" | $Xsed -e "$delay_single_quote_subst"`'
 
39474
+postdeps='`$ECHO "X$postdeps" | $Xsed -e "$delay_single_quote_subst"`'
 
39475
+compiler_lib_search_path='`$ECHO "X$compiler_lib_search_path" | $Xsed -e "$delay_single_quote_subst"`'
 
39476
+LD_CXX='`$ECHO "X$LD_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39477
+old_archive_cmds_CXX='`$ECHO "X$old_archive_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39478
+compiler_CXX='`$ECHO "X$compiler_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39479
+GCC_CXX='`$ECHO "X$GCC_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39480
+lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "X$lt_prog_compiler_no_builtin_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39481
+lt_prog_compiler_wl_CXX='`$ECHO "X$lt_prog_compiler_wl_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39482
+lt_prog_compiler_pic_CXX='`$ECHO "X$lt_prog_compiler_pic_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39483
+lt_prog_compiler_static_CXX='`$ECHO "X$lt_prog_compiler_static_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39484
+lt_cv_prog_compiler_c_o_CXX='`$ECHO "X$lt_cv_prog_compiler_c_o_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39485
+archive_cmds_need_lc_CXX='`$ECHO "X$archive_cmds_need_lc_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39486
+enable_shared_with_static_runtimes_CXX='`$ECHO "X$enable_shared_with_static_runtimes_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39487
+export_dynamic_flag_spec_CXX='`$ECHO "X$export_dynamic_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39488
+whole_archive_flag_spec_CXX='`$ECHO "X$whole_archive_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39489
+compiler_needs_object_CXX='`$ECHO "X$compiler_needs_object_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39490
+old_archive_from_new_cmds_CXX='`$ECHO "X$old_archive_from_new_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39491
+old_archive_from_expsyms_cmds_CXX='`$ECHO "X$old_archive_from_expsyms_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39492
+archive_cmds_CXX='`$ECHO "X$archive_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39493
+archive_expsym_cmds_CXX='`$ECHO "X$archive_expsym_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39494
+module_cmds_CXX='`$ECHO "X$module_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39495
+module_expsym_cmds_CXX='`$ECHO "X$module_expsym_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39496
+with_gnu_ld_CXX='`$ECHO "X$with_gnu_ld_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39497
+allow_undefined_flag_CXX='`$ECHO "X$allow_undefined_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39498
+no_undefined_flag_CXX='`$ECHO "X$no_undefined_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39499
+hardcode_libdir_flag_spec_CXX='`$ECHO "X$hardcode_libdir_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39500
+hardcode_libdir_flag_spec_ld_CXX='`$ECHO "X$hardcode_libdir_flag_spec_ld_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39501
+hardcode_libdir_separator_CXX='`$ECHO "X$hardcode_libdir_separator_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39502
+hardcode_direct_CXX='`$ECHO "X$hardcode_direct_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39503
+hardcode_direct_absolute_CXX='`$ECHO "X$hardcode_direct_absolute_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39504
+hardcode_minus_L_CXX='`$ECHO "X$hardcode_minus_L_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39505
+hardcode_shlibpath_var_CXX='`$ECHO "X$hardcode_shlibpath_var_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39506
+hardcode_automatic_CXX='`$ECHO "X$hardcode_automatic_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39507
+inherit_rpath_CXX='`$ECHO "X$inherit_rpath_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39508
+link_all_deplibs_CXX='`$ECHO "X$link_all_deplibs_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39509
+fix_srcfile_path_CXX='`$ECHO "X$fix_srcfile_path_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39510
+always_export_symbols_CXX='`$ECHO "X$always_export_symbols_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39511
+export_symbols_cmds_CXX='`$ECHO "X$export_symbols_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39512
+exclude_expsyms_CXX='`$ECHO "X$exclude_expsyms_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39513
+include_expsyms_CXX='`$ECHO "X$include_expsyms_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39514
+prelink_cmds_CXX='`$ECHO "X$prelink_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39515
+file_list_spec_CXX='`$ECHO "X$file_list_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39516
+hardcode_action_CXX='`$ECHO "X$hardcode_action_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39517
+compiler_lib_search_dirs_CXX='`$ECHO "X$compiler_lib_search_dirs_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39518
+predep_objects_CXX='`$ECHO "X$predep_objects_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39519
+postdep_objects_CXX='`$ECHO "X$postdep_objects_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39520
+predeps_CXX='`$ECHO "X$predeps_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39521
+postdeps_CXX='`$ECHO "X$postdeps_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39522
+compiler_lib_search_path_CXX='`$ECHO "X$compiler_lib_search_path_CXX" | $Xsed -e "$delay_single_quote_subst"`'
 
39523
+
 
39524
+LTCC='$LTCC'
 
39525
+LTCFLAGS='$LTCFLAGS'
 
39526
+compiler='$compiler_DEFAULT'
 
39527
+
 
39528
+# Quote evaled strings.
 
39529
+for var in SED \
 
39530
+GREP \
 
39531
+EGREP \
 
39532
+FGREP \
 
39533
+LD \
 
39534
+NM \
 
39535
+LN_S \
 
39536
+lt_SP2NL \
 
39537
+lt_NL2SP \
 
39538
+reload_flag \
 
39539
+deplibs_check_method \
 
39540
+file_magic_cmd \
 
39541
+AR \
 
39542
+AR_FLAGS \
 
39543
+STRIP \
 
39544
+RANLIB \
 
39545
+CC \
 
39546
+CFLAGS \
 
39547
+compiler \
 
39548
+lt_cv_sys_global_symbol_pipe \
 
39549
+lt_cv_sys_global_symbol_to_cdecl \
 
39550
+lt_cv_sys_global_symbol_to_c_name_address \
 
39551
+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \
 
39552
+SHELL \
 
39553
+ECHO \
 
39554
+lt_prog_compiler_no_builtin_flag \
 
39555
+lt_prog_compiler_wl \
 
39556
+lt_prog_compiler_pic \
 
39557
+lt_prog_compiler_static \
 
39558
+lt_cv_prog_compiler_c_o \
 
39559
+need_locks \
 
39560
+DSYMUTIL \
 
39561
+NMEDIT \
 
39562
+LIPO \
 
39563
+OTOOL \
 
39564
+OTOOL64 \
 
39565
+shrext_cmds \
 
39566
+export_dynamic_flag_spec \
 
39567
+whole_archive_flag_spec \
 
39568
+compiler_needs_object \
 
39569
+with_gnu_ld \
 
39570
+allow_undefined_flag \
 
39571
+no_undefined_flag \
 
39572
+hardcode_libdir_flag_spec \
 
39573
+hardcode_libdir_flag_spec_ld \
 
39574
+hardcode_libdir_separator \
 
39575
+fix_srcfile_path \
 
39576
+exclude_expsyms \
 
39577
+include_expsyms \
 
39578
+file_list_spec \
 
39579
+variables_saved_for_relink \
 
39580
+libname_spec \
 
39581
+library_names_spec \
 
39582
+soname_spec \
 
39583
+finish_eval \
 
39584
+old_striplib \
 
39585
+striplib \
 
39586
+compiler_lib_search_dirs \
 
39587
+predep_objects \
 
39588
+postdep_objects \
 
39589
+predeps \
 
39590
+postdeps \
 
39591
+compiler_lib_search_path \
 
39592
+LD_CXX \
 
39593
+compiler_CXX \
 
39594
+lt_prog_compiler_no_builtin_flag_CXX \
 
39595
+lt_prog_compiler_wl_CXX \
 
39596
+lt_prog_compiler_pic_CXX \
 
39597
+lt_prog_compiler_static_CXX \
 
39598
+lt_cv_prog_compiler_c_o_CXX \
 
39599
+export_dynamic_flag_spec_CXX \
 
39600
+whole_archive_flag_spec_CXX \
 
39601
+compiler_needs_object_CXX \
 
39602
+with_gnu_ld_CXX \
 
39603
+allow_undefined_flag_CXX \
 
39604
+no_undefined_flag_CXX \
 
39605
+hardcode_libdir_flag_spec_CXX \
 
39606
+hardcode_libdir_flag_spec_ld_CXX \
 
39607
+hardcode_libdir_separator_CXX \
 
39608
+fix_srcfile_path_CXX \
 
39609
+exclude_expsyms_CXX \
 
39610
+include_expsyms_CXX \
 
39611
+file_list_spec_CXX \
 
39612
+compiler_lib_search_dirs_CXX \
 
39613
+predep_objects_CXX \
 
39614
+postdep_objects_CXX \
 
39615
+predeps_CXX \
 
39616
+postdeps_CXX \
 
39617
+compiler_lib_search_path_CXX; do
 
39618
+    case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in
 
39619
+    *[\\\\\\\`\\"\\\$]*)
 
39620
+      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$sed_quote_subst\\"\\\`\\\\\\""
 
39621
+      ;;
 
39622
+    *)
 
39623
+      eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
 
39624
+      ;;
 
39625
+    esac
 
39626
+done
30833
39627
 
30834
39628
-# ### END LIBTOOL TAG CONFIG: $tagname
 
39629
+# Double-quote double-evaled strings.
 
39630
+for var in reload_cmds \
 
39631
+old_postinstall_cmds \
 
39632
+old_postuninstall_cmds \
 
39633
+old_archive_cmds \
 
39634
+extract_expsyms_cmds \
 
39635
+old_archive_from_new_cmds \
 
39636
+old_archive_from_expsyms_cmds \
 
39637
+archive_cmds \
 
39638
+archive_expsym_cmds \
 
39639
+module_cmds \
 
39640
+module_expsym_cmds \
 
39641
+export_symbols_cmds \
 
39642
+prelink_cmds \
 
39643
+postinstall_cmds \
 
39644
+postuninstall_cmds \
 
39645
+finish_cmds \
 
39646
+sys_lib_search_path_spec \
 
39647
+sys_lib_dlsearch_path_spec \
 
39648
+old_archive_cmds_CXX \
 
39649
+old_archive_from_new_cmds_CXX \
 
39650
+old_archive_from_expsyms_cmds_CXX \
 
39651
+archive_cmds_CXX \
 
39652
+archive_expsym_cmds_CXX \
 
39653
+module_cmds_CXX \
 
39654
+module_expsym_cmds_CXX \
 
39655
+export_symbols_cmds_CXX \
 
39656
+prelink_cmds_CXX; do
 
39657
+    case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in
 
39658
+    *[\\\\\\\`\\"\\\$]*)
 
39659
+      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\""
 
39660
+      ;;
 
39661
+    *)
 
39662
+      eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
 
39663
+      ;;
 
39664
+    esac
 
39665
+done
30835
39666
 
30836
39667
-__EOF__
 
39668
+# Fix-up fallback echo if it was mangled by the above quoting rules.
 
39669
+case \$lt_ECHO in
 
39670
+*'\\\$0 --fallback-echo"')  lt_ECHO=\`\$ECHO "X\$lt_ECHO" | \$Xsed -e 's/\\\\\\\\\\\\\\\$0 --fallback-echo"\$/\$0 --fallback-echo"/'\`
 
39671
+  ;;
 
39672
+esac
30837
39673
 
 
39674
+ac_aux_dir='$ac_aux_dir'
 
39675
+xsi_shell='$xsi_shell'
 
39676
+lt_shell_append='$lt_shell_append'
30838
39677
 
30839
39678
-else
30840
39679
-  # If there is no Makefile yet, we rely on a make rule to execute
30844
39683
-  if test -f "$ltmain_in"; then
30845
39684
-    test -f Makefile && make "$ltmain"
30846
39685
-  fi
30847
 
-fi
 
39686
+# See if we are running on zsh, and set the options which allow our
 
39687
+# commands through without removal of \ escapes INIT.
 
39688
+if test -n "\${ZSH_VERSION+set}" ; then
 
39689
+   setopt NO_GLOB_SUBST
 
39690
 fi
30848
39691
 
30849
39692
 
30850
39693
-ac_ext=c
30852
39695
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
30853
39696
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
30854
39697
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
30855
 
-
 
39698
+    PACKAGE='$PACKAGE'
 
39699
+    VERSION='$VERSION'
 
39700
+    TIMESTAMP='$TIMESTAMP'
 
39701
+    RM='$RM'
 
39702
+    ofile='$ofile'
 
39703
 
30856
39704
-CC="$lt_save_CC"
30857
 
-
 
39705
 
30858
39706
-       else
30859
39707
-         tagname=""
30860
39708
-       fi
30861
39709
-       ;;
30862
 
-
 
39710
 
30863
39711
-      GCJ)
30864
39712
-       if test -n "$GCJ" && test "X$GCJ" != "Xno"; then
30865
 
-
30866
 
-
 
39713
 
 
39714
 
30867
39715
-# Source file extension for Java test sources.
30868
39716
-ac_ext=java
30869
 
-
 
39717
+_LTEOF
 
39718
 
30870
39719
-# Object file extension for compiled Java test sources.
30871
39720
-objext=o
30872
39721
-objext_GCJ=$objext
30873
 
-
 
39722
+cat >>"$CONFIG_LT" <<\_LTEOF
 
39723
+{ echo "$as_me:$LINENO: creating $ofile" >&5
 
39724
+echo "$as_me: creating $ofile" >&6;}
 
39725
 
30874
39726
-# Code to be used in simple compile tests
30875
39727
-lt_simple_compile_test_code="class foo {}"
30876
 
-
 
39728
 
30877
39729
-# Code to be used in simple link tests
30878
39730
-lt_simple_link_test_code='public class conftest { public static void main(String[] argv) {}; }'
30879
 
-
 
39731
+    # See if we are running on zsh, and set the options which allow our
 
39732
+    # commands through without removal of \ escapes.
 
39733
+    if test -n "${ZSH_VERSION+set}" ; then
 
39734
+      setopt NO_GLOB_SUBST
 
39735
+    fi
 
39736
 
30880
39737
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
30881
 
-
 
39738
+    cfgfile="${ofile}T"
 
39739
+    trap "$RM \"$cfgfile\"; exit 1" 1 2 15
 
39740
+    $RM "$cfgfile"
 
39741
 
30882
39742
-# If no C compiler was specified, use CC.
30883
39743
-LTCC=${LTCC-"$CC"}
30884
 
-
 
39744
+    cat <<_LT_EOF >> "$cfgfile"
 
39745
+#! $SHELL
 
39746
 
30885
39747
-# If no C compiler flags were specified, use CFLAGS.
30886
39748
-LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
30887
 
-
 
39749
+# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
 
39750
+# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
 
39751
+# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
 
39752
+# NOTE: Changes made to this file will be lost: look at ltmain.sh.
 
39753
+#
 
39754
+#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
 
39755
+#                 2006, 2007, 2008 Free Software Foundation, Inc.
 
39756
+#   Written by Gordon Matzigkeit, 1996
 
39757
+#
 
39758
+#   This file is part of GNU Libtool.
 
39759
+#
 
39760
+# GNU Libtool is free software; you can redistribute it and/or
 
39761
+# modify it under the terms of the GNU General Public License as
 
39762
+# published by the Free Software Foundation; either version 2 of
 
39763
+# the License, or (at your option) any later version.
 
39764
+#
 
39765
+# As a special exception to the GNU General Public License,
 
39766
+# if you distribute this file as part of a program or library that
 
39767
+# is built using GNU Libtool, you may include this file under the
 
39768
+# same distribution terms that you use for the rest of that program.
 
39769
+#
 
39770
+# GNU Libtool is distributed in the hope that it will be useful,
 
39771
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
39772
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
39773
+# GNU General Public License for more details.
 
39774
+#
 
39775
+# You should have received a copy of the GNU General Public License
 
39776
+# along with GNU Libtool; see the file COPYING.  If not, a copy
 
39777
+# can be downloaded from http://www.gnu.org/licenses/gpl.html, or
 
39778
+# obtained by writing to the Free Software Foundation, Inc.,
 
39779
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
39780
 
30888
39781
-# Allow CC to be a program name with arguments.
30889
39782
-compiler=$CC
30890
 
-
30891
 
-
 
39783
 
 
39784
+# The names of the tagged configurations supported by this script.
 
39785
+available_tags="CXX "
 
39786
 
30892
39787
-# save warnings/boilerplate of simple test code
30893
39788
-ac_outfile=conftest.$ac_objext
30894
39789
-echo "$lt_simple_compile_test_code" >conftest.$ac_ext
30895
39790
-eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
30896
39791
-_lt_compiler_boilerplate=`cat conftest.err`
30897
39792
-$rm conftest*
30898
 
-
 
39793
+# ### BEGIN LIBTOOL CONFIG
 
39794
 
30899
39795
-ac_outfile=conftest.$ac_objext
30900
39796
-echo "$lt_simple_link_test_code" >conftest.$ac_ext
30901
39797
-eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
30902
39798
-_lt_linker_boilerplate=`cat conftest.err`
30903
 
-$rm conftest*
30904
 
-
30905
 
-
 
39799
-$rm -r conftest*
 
39800
+# Which release of libtool.m4 was used?
 
39801
+macro_version=$macro_version
 
39802
+macro_revision=$macro_revision
 
39803
 
 
39804
+# Whether or not to build shared libraries.
 
39805
+build_libtool_libs=$enable_shared
 
39806
 
30906
39807
-# Allow CC to be a program name with arguments.
30907
39808
-lt_save_CC="$CC"
30908
39809
-CC=${GCJ-"gcj"}
30917
39818
-  esac
30918
39819
-done
30919
39820
-cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
30920
 
-
30921
 
-
 
39821
+# Whether or not to build static libraries.
 
39822
+build_old_libs=$enable_static
 
39823
 
 
39824
+# What type of objects to build.
 
39825
+pic_mode=$pic_mode
 
39826
 
30922
39827
-# GCJ did not exist at the time GCC didn't implicitly link libc in.
30923
39828
-archive_cmds_need_lc_GCJ=no
30924
 
-
 
39829
+# Whether or not to optimize for fast installation.
 
39830
+fast_install=$enable_fast_install
 
39831
 
30925
39832
-old_archive_cmds_GCJ=$old_archive_cmds
30926
 
-
30927
 
-
 
39833
+# The host system.
 
39834
+host_alias=$host_alias
 
39835
+host=$host
 
39836
+host_os=$host_os
 
39837
 
 
39838
+# The build system.
 
39839
+build_alias=$build_alias
 
39840
+build=$build
 
39841
+build_os=$build_os
 
39842
 
30928
39843
-lt_prog_compiler_no_builtin_flag_GCJ=
30929
 
-
 
39844
+# A sed program that does not truncate output.
 
39845
+SED=$lt_SED
 
39846
 
30930
39847
-if test "$GCC" = yes; then
30931
39848
-  lt_prog_compiler_no_builtin_flag_GCJ=' -fno-builtin'
30932
 
-
30933
 
-
30934
 
-{ echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
30935
 
-echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6; }
 
39849
+# Sed that helps us avoid accidentally triggering echo(1) options like -n.
 
39850
+Xsed="\$SED -e 1s/^X//"
 
39851
 
 
39852
+# A grep program that handles long lines.
 
39853
+GREP=$lt_GREP
 
39854
 
 
39855
-{ $as_echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
 
39856
-$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; }
30936
39857
-if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then
30937
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
39858
-  $as_echo_n "(cached) " >&6
30938
39859
-else
30939
39860
-  lt_cv_prog_compiler_rtti_exceptions=no
30940
39861
-  ac_outfile=conftest.$ac_objext
30949
39870
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
30950
39871
-   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
30951
39872
-   -e 's:$: $lt_compiler_flag:'`
30952
 
-   (eval echo "\"\$as_me:19028: $lt_compile\"" >&5)
 
39873
-   (eval echo "\"\$as_me:19727: $lt_compile\"" >&5)
30953
39874
-   (eval "$lt_compile" 2>conftest.err)
30954
39875
-   ac_status=$?
30955
39876
-   cat conftest.err >&5
30956
 
-   echo "$as_me:19032: \$? = $ac_status" >&5
 
39877
-   echo "$as_me:19731: \$? = $ac_status" >&5
30957
39878
-   if (exit $ac_status) && test -s "$ac_outfile"; then
30958
39879
-     # The compiler can only warn and ignore the option if not recognized
30959
39880
-     # So say no if there are warnings other than the usual output.
30964
39885
-     fi
30965
39886
-   fi
30966
39887
-   $rm conftest*
30967
 
-
 
39888
+# An ERE matcher.
 
39889
+EGREP=$lt_EGREP
 
39890
 
30968
39891
-fi
30969
 
-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5
30970
 
-echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6; }
 
39892
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5
 
39893
-$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; }
 
39894
+# A literal string matcher.
 
39895
+FGREP=$lt_FGREP
30971
39896
 
30972
39897
-if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then
30973
39898
-    lt_prog_compiler_no_builtin_flag_GCJ="$lt_prog_compiler_no_builtin_flag_GCJ -fno-rtti -fno-exceptions"
30974
39899
-else
30975
39900
-    :
30976
39901
-fi
 
39902
+# A BSD- or MS-compatible name lister.
 
39903
+NM=$lt_NM
30977
39904
 
30978
39905
-fi
 
39906
+# Whether we need soft or hard links.
 
39907
+LN_S=$lt_LN_S
30979
39908
 
30980
39909
-lt_prog_compiler_wl_GCJ=
30981
39910
-lt_prog_compiler_pic_GCJ=
30982
39911
-lt_prog_compiler_static_GCJ=
30983
 
+    lt_prog_compiler_wl_CXX=
30984
 
+lt_prog_compiler_pic_CXX=
30985
 
+lt_prog_compiler_static_CXX=
 
39912
+# What is the maximum length of a command?
 
39913
+max_cmd_len=$max_cmd_len
30986
39914
 
30987
 
 { echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5
30988
 
 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; }
 
39915
-{ $as_echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5
 
39916
-$as_echo_n "checking for $compiler option to produce PIC... " >&6; }
 
39917
+# Object file suffix (normally "o").
 
39918
+objext=$ac_objext
30989
39919
 
30990
39920
-  if test "$GCC" = yes; then
30991
39921
-    lt_prog_compiler_wl_GCJ='-Wl,'
30992
39922
-    lt_prog_compiler_static_GCJ='-static'
30993
 
+  # C++ specific cases for pic, static, wl, etc.
30994
 
+  if test "$GXX" = yes; then
30995
 
+    lt_prog_compiler_wl_CXX='-Wl,'
30996
 
+    lt_prog_compiler_static_CXX='-static'
 
39923
+# Executable file suffix (normally "").
 
39924
+exeext=$exeext
30997
39925
 
30998
 
     case $host_os in
30999
 
       aix*)
31000
 
       # All AIX code is PIC.
31001
 
       if test "$host_cpu" = ia64; then
31002
 
        # AIX 5 now supports IA64 processor
 
39926
-    case $host_os in
 
39927
-      aix*)
 
39928
-      # All AIX code is PIC.
 
39929
-      if test "$host_cpu" = ia64; then
 
39930
-       # AIX 5 now supports IA64 processor
31003
39931
-       lt_prog_compiler_static_GCJ='-Bstatic'
31004
 
+       lt_prog_compiler_static_CXX='-Bstatic'
31005
 
       fi
31006
 
       ;;
 
39932
-      fi
 
39933
-      ;;
 
39934
+# whether the shell understands "unset".
 
39935
+lt_unset=$lt_unset
31007
39936
 
31008
 
     amigaos*)
31009
 
+      case $host_cpu in
31010
 
+      powerpc)
31011
 
+            # see comment about AmigaOS4 .so support
31012
 
+            lt_prog_compiler_pic_CXX='-fPIC'
31013
 
+        ;;
31014
 
+      m68k)
31015
 
       # FIXME: we need at least 68020 code to build shared libraries, but
31016
 
       # adding the `-m68020' flag to GCC prevents building anything better,
31017
 
       # like `-m68040'.
 
39937
-    amigaos*)
 
39938
-      # FIXME: we need at least 68020 code to build shared libraries, but
 
39939
-      # adding the `-m68020' flag to GCC prevents building anything better,
 
39940
-      # like `-m68040'.
31018
39941
-      lt_prog_compiler_pic_GCJ='-m68020 -resident32 -malways-restore-a4'
31019
 
+            lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4'
31020
 
+        ;;
31021
 
+      esac
31022
 
       ;;
31023
 
 
31024
 
     beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
31025
 
       # PIC is the default for these OSes.
31026
 
       ;;
31027
 
-
 
39942
-      ;;
 
39943
+# turn spaces into newlines.
 
39944
+SP2NL=$lt_lt_SP2NL
 
39945
 
 
39946
-    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
 
39947
-      # PIC is the default for these OSes.
 
39948
-      ;;
 
39949
+# turn newlines into spaces.
 
39950
+NL2SP=$lt_lt_NL2SP
 
39951
 
31028
39952
-    mingw* | cygwin* | pw32* | os2*)
31029
 
+    mingw* | cygwin* | os2* | pw32*)
31030
 
       # This hack is so that the source file can tell whether it is being
31031
 
       # built for inclusion in a dll (and should export symbols for example).
31032
 
       # Although the cygwin gcc ignores -fPIC, still need this for old-style
31033
 
       # (--disable-auto-import) libraries
31034
 
-      lt_prog_compiler_pic_GCJ='-DDLL_EXPORT'
31035
 
+      lt_prog_compiler_pic_CXX='-DDLL_EXPORT'
31036
 
       ;;
31037
 
-
31038
 
     darwin* | rhapsody*)
31039
 
       # PIC is the default on this platform
31040
 
       # Common symbols not allowed in MH_DYLIB files
 
39953
-      # This hack is so that the source file can tell whether it is being
 
39954
-      # built for inclusion in a dll (and should export symbols for example).
 
39955
-      # Although the cygwin gcc ignores -fPIC, still need this for old-style
 
39956
-      # (--disable-auto-import) libraries
 
39957
+# How to create reloadable object files.
 
39958
+reload_flag=$lt_reload_flag
 
39959
+reload_cmds=$lt_reload_cmds
 
39960
 
 
39961
-      ;;
 
39962
+# Method to check whether dependent libraries are shared objects.
 
39963
+deplibs_check_method=$lt_deplibs_check_method
 
39964
 
 
39965
-    darwin* | rhapsody*)
 
39966
-      # PIC is the default on this platform
 
39967
-      # Common symbols not allowed in MH_DYLIB files
31041
39968
-      lt_prog_compiler_pic_GCJ='-fno-common'
31042
 
+      lt_prog_compiler_pic_CXX='-fno-common'
31043
 
+      ;;
31044
 
+    *djgpp*)
31045
 
+      # DJGPP does not support shared libraries at all
31046
 
+      lt_prog_compiler_pic_CXX=
31047
 
       ;;
31048
 
-
31049
 
     interix[3-9]*)
31050
 
       # Interix 3.x gcc -fpic/-fPIC options generate broken code.
31051
 
       # Instead, we relocate shared libraries at runtime.
31052
 
       ;;
31053
 
-
 
39969
-      ;;
 
39970
+# Command to use when deplibs_check_method == "file_magic".
 
39971
+file_magic_cmd=$lt_file_magic_cmd
 
39972
 
 
39973
-    interix[3-9]*)
 
39974
-      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
 
39975
-      # Instead, we relocate shared libraries at runtime.
 
39976
-      ;;
 
39977
+# The archiver.
 
39978
+AR=$lt_AR
 
39979
+AR_FLAGS=$lt_AR_FLAGS
 
39980
 
31054
39981
-    msdosdjgpp*)
31055
39982
-      # Just because we use GCC doesn't mean we suddenly get shared libraries
31056
39983
-      # on systems that don't support them.
31057
39984
-      lt_prog_compiler_can_build_shared_GCJ=no
31058
39985
-      enable_shared=no
31059
39986
-      ;;
31060
 
-
31061
 
     sysv4*MP*)
31062
 
       if test -d /usr/nec; then
 
39987
+# A symbol stripping program.
 
39988
+STRIP=$lt_STRIP
 
39989
 
 
39990
-    sysv4*MP*)
 
39991
-      if test -d /usr/nec; then
31063
39992
-       lt_prog_compiler_pic_GCJ=-Kconform_pic
31064
 
+       lt_prog_compiler_pic_CXX=-Kconform_pic
31065
 
       fi
31066
 
       ;;
31067
 
-
31068
 
     hpux*)
31069
 
       # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
31070
 
       # not for PA HP-UX.
31071
 
       case $host_cpu in
31072
 
       hppa*64*|ia64*)
 
39993
-      fi
 
39994
-      ;;
 
39995
+# Commands used to install an old-style archive.
 
39996
+RANLIB=$lt_RANLIB
 
39997
+old_postinstall_cmds=$lt_old_postinstall_cmds
 
39998
+old_postuninstall_cmds=$lt_old_postuninstall_cmds
 
39999
 
 
40000
-    hpux*)
 
40001
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
 
40002
-      # not for PA HP-UX.
 
40003
-      case $host_cpu in
 
40004
-      hppa*64*|ia64*)
31073
40005
-       # +Z the default
31074
 
        ;;
31075
 
       *)
 
40006
-       ;;
 
40007
-      *)
31076
40008
-       lt_prog_compiler_pic_GCJ='-fPIC'
31077
 
+       lt_prog_compiler_pic_CXX='-fPIC'
31078
 
        ;;
31079
 
       esac
31080
 
       ;;
31081
 
-
31082
 
+    *qnx* | *nto*)
31083
 
+      # QNX uses GNU C++, but need to define -shared option too, otherwise
31084
 
+      # it will coredump.
31085
 
+      lt_prog_compiler_pic_CXX='-fPIC -shared'
31086
 
+      ;;
31087
 
     *)
 
40009
-       ;;
 
40010
-      esac
 
40011
-      ;;
 
40012
+# A C compiler.
 
40013
+LTCC=$lt_CC
 
40014
 
 
40015
-    *)
31088
40016
-      lt_prog_compiler_pic_GCJ='-fPIC'
31089
 
+      lt_prog_compiler_pic_CXX='-fPIC'
31090
 
       ;;
31091
 
     esac
31092
 
   else
 
40017
-      ;;
 
40018
-    esac
 
40019
-  else
31093
40020
-    # PORTME Check for flag to pass linker flags through the system compiler.
31094
 
     case $host_os in
 
40021
-    case $host_os in
31095
40022
-    aix*)
31096
40023
-      lt_prog_compiler_wl_GCJ='-Wl,'
31097
 
+      aix[4-9]*)
31098
 
+       # All AIX code is PIC.
31099
 
       if test "$host_cpu" = ia64; then
31100
 
        # AIX 5 now supports IA64 processor
 
40024
-      if test "$host_cpu" = ia64; then
 
40025
-       # AIX 5 now supports IA64 processor
31101
40026
-       lt_prog_compiler_static_GCJ='-Bstatic'
31102
 
+         lt_prog_compiler_static_CXX='-Bstatic'
31103
 
       else
 
40027
-      else
31104
40028
-       lt_prog_compiler_static_GCJ='-bnso -bI:/lib/syscalls.exp'
31105
 
+         lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp'
31106
 
       fi
31107
 
       ;;
 
40029
-      fi
 
40030
-      ;;
31108
40031
-      darwin*)
31109
40032
-        # PIC is the default on this platform
31110
40033
-        # Common symbols not allowed in MH_DYLIB files
31111
 
+      chorus*)
31112
 
        case $cc_basename in
 
40034
-       case $cc_basename in
31113
40035
-         xlc*)
31114
40036
-         lt_prog_compiler_pic_GCJ='-qnocommon'
31115
40037
-         lt_prog_compiler_wl_GCJ='-Wl,'
31116
 
+       cxch68*)
31117
 
+         # Green Hills C++ Compiler
31118
 
+         # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a"
31119
 
          ;;
31120
 
        esac
31121
 
        ;;
31122
 
-
 
40038
-         ;;
 
40039
-       esac
 
40040
-       ;;
 
40041
+# LTCC compiler flags.
 
40042
+LTCFLAGS=$lt_CFLAGS
 
40043
 
31123
40044
-    mingw* | cygwin* | pw32* | os2*)
31124
40045
-      # This hack is so that the source file can tell whether it is being
31125
40046
-      # built for inclusion in a dll (and should export symbols for example).
31126
 
-      lt_prog_compiler_pic_GCJ='-DDLL_EXPORT'
31127
 
+      dgux*)
31128
 
+       case $cc_basename in
31129
 
+         ec++*)
31130
 
+           lt_prog_compiler_pic_CXX='-KPIC'
31131
 
+           ;;
31132
 
+         ghcx*)
31133
 
+           # Green Hills C++ Compiler
31134
 
+           lt_prog_compiler_pic_CXX='-pic'
31135
 
+           ;;
31136
 
+         *)
31137
 
+           ;;
31138
 
+       esac
31139
 
+       ;;
31140
 
+      freebsd* | dragonfly*)
31141
 
+       # FreeBSD uses GNU C++
31142
 
       ;;
31143
 
-
31144
 
     hpux9* | hpux10* | hpux11*)
 
40047
+# Take the output of nm and produce a listing of raw symbols and C names.
 
40048
+global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
 
40049
 
 
40050
-      ;;
 
40051
+# Transform the output of nm in a proper C declaration.
 
40052
+global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
 
40053
 
 
40054
-    hpux9* | hpux10* | hpux11*)
31145
40055
-      lt_prog_compiler_wl_GCJ='-Wl,'
31146
40056
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
31147
40057
-      # not for PA HP-UX.
31148
 
+       case $cc_basename in
31149
 
+         CC*)
31150
 
+           lt_prog_compiler_wl_CXX='-Wl,'
31151
 
+           lt_prog_compiler_static_CXX='${wl}-a ${wl}archive'
31152
 
+           if test "$host_cpu" != ia64; then
31153
 
+             lt_prog_compiler_pic_CXX='+Z'
31154
 
+           fi
31155
 
+           ;;
31156
 
+         aCC*)
31157
 
+           lt_prog_compiler_wl_CXX='-Wl,'
31158
 
+           lt_prog_compiler_static_CXX='${wl}-a ${wl}archive'
31159
 
       case $host_cpu in
31160
 
       hppa*64*|ia64*)
31161
 
        # +Z the default
31162
 
        ;;
31163
 
       *)
 
40058
-      case $host_cpu in
 
40059
-      hppa*64*|ia64*)
 
40060
-       # +Z the default
 
40061
-       ;;
 
40062
-      *)
31164
40063
-       lt_prog_compiler_pic_GCJ='+Z'
31165
 
+             lt_prog_compiler_pic_CXX='+Z'
31166
 
        ;;
31167
 
       esac
 
40064
-       ;;
 
40065
-      esac
31168
40066
-      # Is there a better lt_prog_compiler_static that works with the bundled CC?
31169
40067
-      lt_prog_compiler_static_GCJ='${wl}-a ${wl}archive'
31170
 
       ;;
31171
 
-
31172
 
+         *)
31173
 
+           ;;
31174
 
+       esac
31175
 
+       ;;
31176
 
+      interix*)
31177
 
+       # This is c89, which is MS Visual C++ (no shared libs)
31178
 
+       # Anyone wants to do a port?
31179
 
+       ;;
31180
 
     irix5* | irix6* | nonstopux*)
 
40068
-      ;;
 
40069
+# Transform the output of nm in a C name address pair.
 
40070
+global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
 
40071
 
 
40072
-    irix5* | irix6* | nonstopux*)
31181
40073
-      lt_prog_compiler_wl_GCJ='-Wl,'
31182
40074
-      # PIC (with -KPIC) is the default.
31183
40075
-      lt_prog_compiler_static_GCJ='-non_shared'
31184
 
+       case $cc_basename in
31185
 
+         CC*)
31186
 
+           lt_prog_compiler_wl_CXX='-Wl,'
31187
 
+           lt_prog_compiler_static_CXX='-non_shared'
31188
 
+           # CC pic flag -KPIC is the default.
31189
 
       ;;
31190
 
-
 
40076
-      ;;
 
40077
+# Transform the output of nm in a C name address pair when lib prefix is needed.
 
40078
+global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
 
40079
+
 
40080
+# The name of the directory that contains temporary libtool files.
 
40081
+objdir=$objdir
 
40082
 
31191
40083
-    newsos6)
31192
40084
-      lt_prog_compiler_pic_GCJ='-KPIC'
31193
40085
-      lt_prog_compiler_static_GCJ='-Bstatic'
31194
 
+         *)
31195
 
+           ;;
31196
 
+       esac
31197
 
       ;;
31198
 
-
31199
 
     linux* | k*bsd*-gnu)
31200
 
       case $cc_basename in
 
40086
-      ;;
 
40087
+# Shell to use when invoking shell scripts.
 
40088
+SHELL=$lt_SHELL
 
40089
 
 
40090
-    linux* | k*bsd*-gnu)
 
40091
-      case $cc_basename in
31201
40092
-      icc* | ecc*)
31202
40093
-       lt_prog_compiler_wl_GCJ='-Wl,'
31203
40094
-       lt_prog_compiler_pic_GCJ='-KPIC'
31204
40095
-       lt_prog_compiler_static_GCJ='-static'
31205
 
+         KCC*)
31206
 
+           # KAI C++ Compiler
31207
 
+           lt_prog_compiler_wl_CXX='--backend -Wl,'
31208
 
+           lt_prog_compiler_pic_CXX='-fPIC'
31209
 
         ;;
 
40096
-        ;;
31210
40097
-      pgcc* | pgf77* | pgf90* | pgf95*)
31211
40098
-        # Portland Group compilers (*not* the Pentium gcc compiler,
31212
40099
-       # which looks to be a dead project)
31213
40100
-       lt_prog_compiler_wl_GCJ='-Wl,'
31214
40101
-       lt_prog_compiler_pic_GCJ='-fpic'
31215
40102
-       lt_prog_compiler_static_GCJ='-Bstatic'
31216
 
+         icpc* | ecpc* )
31217
 
+           # Intel C++
31218
 
+           lt_prog_compiler_wl_CXX='-Wl,'
31219
 
+           lt_prog_compiler_pic_CXX='-KPIC'
31220
 
+           lt_prog_compiler_static_CXX='-static'
31221
 
         ;;
 
40103
-        ;;
31222
40104
-      ccc*)
31223
40105
-        lt_prog_compiler_wl_GCJ='-Wl,'
31224
40106
-        # All Alpha code is PIC.
31225
40107
-        lt_prog_compiler_static_GCJ='-non_shared'
31226
 
+         pgCC* | pgcpp*)
31227
 
+           # Portland Group C++ compiler
31228
 
+           lt_prog_compiler_wl_CXX='-Wl,'
31229
 
+           lt_prog_compiler_pic_CXX='-fpic'
31230
 
+           lt_prog_compiler_static_CXX='-Bstatic'
31231
 
+           ;;
31232
 
+         cxx*)
31233
 
+           # Compaq C++
31234
 
+           # Make sure the PIC flag is empty.  It appears that all Alpha
31235
 
+           # Linux and Compaq Tru64 Unix objects are PIC.
31236
 
+           lt_prog_compiler_pic_CXX=
31237
 
+           lt_prog_compiler_static_CXX='-non_shared'
31238
 
+           ;;
31239
 
+         xlc* | xlC*)
31240
 
+           # IBM XL 8.0 on PPC
31241
 
+           lt_prog_compiler_wl_CXX='-Wl,'
31242
 
+           lt_prog_compiler_pic_CXX='-qpic'
31243
 
+           lt_prog_compiler_static_CXX='-qstaticlink'
31244
 
         ;;
31245
 
       *)
31246
 
         case `$CC -V 2>&1 | sed 5q` in
31247
 
        *Sun\ C*)
 
40108
-        ;;
 
40109
-      *)
 
40110
-        case `$CC -V 2>&1 | sed 5q` in
 
40111
-       *Sun\ C*)
31248
40112
-         # Sun C 5.9
31249
40113
-         lt_prog_compiler_pic_GCJ='-KPIC'
31250
40114
-         lt_prog_compiler_static_GCJ='-Bstatic'
31255
40119
-         lt_prog_compiler_pic_GCJ='-KPIC'
31256
40120
-         lt_prog_compiler_static_GCJ='-Bstatic'
31257
40121
-         lt_prog_compiler_wl_GCJ=''
31258
 
+             # Sun C++ 5.9
31259
 
+             lt_prog_compiler_pic_CXX='-KPIC'
31260
 
+             lt_prog_compiler_static_CXX='-Bstatic'
31261
 
+             lt_prog_compiler_wl_CXX='-Qoption ld '
31262
 
          ;;
31263
 
        esac
31264
 
        ;;
31265
 
       esac
31266
 
       ;;
31267
 
-
 
40122
-         ;;
 
40123
-       esac
 
40124
-       ;;
 
40125
-      esac
 
40126
-      ;;
 
40127
+# An echo program that does not interpret backslashes.
 
40128
+ECHO=$lt_ECHO
 
40129
 
31268
40130
-    osf3* | osf4* | osf5*)
31269
40131
-      lt_prog_compiler_wl_GCJ='-Wl,'
31270
40132
-      # All OSF/1 code is PIC.
31271
40133
-      lt_prog_compiler_static_GCJ='-non_shared'
31272
 
+      lynxos*)
31273
 
       ;;
31274
 
-
 
40134
-      ;;
 
40135
+# Used to examine libraries when file_magic_cmd begins with "file".
 
40136
+MAGIC_CMD=$MAGIC_CMD
 
40137
 
31275
40138
-    rdos*)
31276
40139
-      lt_prog_compiler_static_GCJ='-non_shared'
31277
 
+      m88k*)
31278
 
       ;;
31279
 
-
 
40140
-      ;;
 
40141
+# Must we lock files when doing compilation?
 
40142
+need_locks=$lt_need_locks
 
40143
 
31280
40144
-    solaris*)
31281
40145
-      lt_prog_compiler_pic_GCJ='-KPIC'
31282
40146
-      lt_prog_compiler_static_GCJ='-Bstatic'
31283
 
+      mvs*)
31284
 
       case $cc_basename in
 
40147
-      case $cc_basename in
31285
40148
-      f77* | f90* | f95*)
31286
40149
-       lt_prog_compiler_wl_GCJ='-Qoption ld ';;
31287
 
+         cxx*)
31288
 
+           lt_prog_compiler_pic_CXX='-W c,exportall'
31289
 
+           ;;
31290
 
       *)
 
40150
-      *)
31291
40151
-       lt_prog_compiler_wl_GCJ='-Wl,';;
31292
 
+           ;;
31293
 
+       esac
31294
 
+       ;;
31295
 
+      netbsd* | netbsdelf*-gnu)
31296
 
+       ;;
31297
 
+      *qnx* | *nto*)
31298
 
+        # QNX uses GNU C++, but need to define -shared option too, otherwise
31299
 
+        # it will coredump.
31300
 
+        lt_prog_compiler_pic_CXX='-fPIC -shared'
31301
 
+        ;;
31302
 
+      osf3* | osf4* | osf5*)
31303
 
+       case $cc_basename in
31304
 
+         KCC*)
31305
 
+           lt_prog_compiler_wl_CXX='--backend -Wl,'
31306
 
+           ;;
31307
 
+         RCC*)
31308
 
+           # Rational C++ 2.4.1
31309
 
+           lt_prog_compiler_pic_CXX='-pic'
31310
 
+           ;;
31311
 
+         cxx*)
31312
 
+           # Digital/Compaq C++
31313
 
+           lt_prog_compiler_wl_CXX='-Wl,'
31314
 
+           # Make sure the PIC flag is empty.  It appears that all Alpha
31315
 
+           # Linux and Compaq Tru64 Unix objects are PIC.
31316
 
+           lt_prog_compiler_pic_CXX=
31317
 
+           lt_prog_compiler_static_CXX='-non_shared'
31318
 
+           ;;
31319
 
+         *)
31320
 
+           ;;
31321
 
+       esac
31322
 
+       ;;
31323
 
+      psos*)
31324
 
+       ;;
31325
 
+      solaris*)
31326
 
+       case $cc_basename in
31327
 
+         CC*)
31328
 
+           # Sun C++ 4.2, 5.x and Centerline C++
31329
 
+           lt_prog_compiler_pic_CXX='-KPIC'
31330
 
+           lt_prog_compiler_static_CXX='-Bstatic'
31331
 
+           lt_prog_compiler_wl_CXX='-Qoption ld '
31332
 
+           ;;
31333
 
+         gcx*)
31334
 
+           # Green Hills C++ Compiler
31335
 
+           lt_prog_compiler_pic_CXX='-PIC'
31336
 
+           ;;
31337
 
+         *)
31338
 
+           ;;
31339
 
       esac
31340
 
       ;;
31341
 
-
31342
 
     sunos4*)
 
40152
-      esac
 
40153
-      ;;
 
40154
+# Tool to manipulate archived DWARF debug symbol files on Mac OS X.
 
40155
+DSYMUTIL=$lt_DSYMUTIL
 
40156
 
 
40157
-    sunos4*)
31343
40158
-      lt_prog_compiler_wl_GCJ='-Qoption ld '
31344
40159
-      lt_prog_compiler_pic_GCJ='-PIC'
31345
40160
-      lt_prog_compiler_static_GCJ='-Bstatic'
31346
 
+       case $cc_basename in
31347
 
+         CC*)
31348
 
+           # Sun C++ 4.x
31349
 
+           lt_prog_compiler_pic_CXX='-pic'
31350
 
+           lt_prog_compiler_static_CXX='-Bstatic'
31351
 
       ;;
31352
 
-
 
40161
-      ;;
 
40162
+# Tool to change global to local symbols on Mac OS X.
 
40163
+NMEDIT=$lt_NMEDIT
 
40164
 
31353
40165
-    sysv4 | sysv4.2uw2* | sysv4.3*)
31354
40166
-      lt_prog_compiler_wl_GCJ='-Wl,'
31355
40167
-      lt_prog_compiler_pic_GCJ='-KPIC'
31356
40168
-      lt_prog_compiler_static_GCJ='-Bstatic'
31357
 
+         lcc*)
31358
 
+           # Lucid
31359
 
+           lt_prog_compiler_pic_CXX='-pic'
31360
 
       ;;
31361
 
-
 
40169
-      ;;
 
40170
+# Tool to manipulate fat objects and archives on Mac OS X.
 
40171
+LIPO=$lt_LIPO
 
40172
 
31362
40173
-    sysv4*MP*)
31363
40174
-      if test -d /usr/nec ;then
31364
40175
-       lt_prog_compiler_pic_GCJ='-Kconform_pic'
31365
40176
-       lt_prog_compiler_static_GCJ='-Bstatic'
31366
40177
-      fi
31367
 
+         *)
31368
 
+           ;;
31369
 
+       esac
31370
 
       ;;
31371
 
-
31372
 
     sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
 
40178
-      ;;
 
40179
+# ldd/readelf like tool for Mach-O binaries on Mac OS X.
 
40180
+OTOOL=$lt_OTOOL
 
40181
 
 
40182
-    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
31373
40183
-      lt_prog_compiler_wl_GCJ='-Wl,'
31374
40184
-      lt_prog_compiler_pic_GCJ='-KPIC'
31375
40185
-      lt_prog_compiler_static_GCJ='-Bstatic'
31376
 
+       case $cc_basename in
31377
 
+         CC*)
31378
 
+           lt_prog_compiler_wl_CXX='-Wl,'
31379
 
+           lt_prog_compiler_pic_CXX='-KPIC'
31380
 
+           lt_prog_compiler_static_CXX='-Bstatic'
31381
 
       ;;
31382
 
-
 
40186
-      ;;
 
40187
+# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
 
40188
+OTOOL64=$lt_OTOOL64
 
40189
 
31383
40190
-    unicos*)
31384
40191
-      lt_prog_compiler_wl_GCJ='-Wl,'
31385
40192
-      lt_prog_compiler_can_build_shared_GCJ=no
31386
 
+       esac
31387
 
       ;;
31388
 
-
 
40193
-      ;;
 
40194
+# Old archive suffix (normally "a").
 
40195
+libext=$libext
 
40196
 
31389
40197
-    uts4*)
31390
40198
-      lt_prog_compiler_pic_GCJ='-pic'
31391
40199
-      lt_prog_compiler_static_GCJ='-Bstatic'
31392
 
+      tandem*)
31393
 
+       case $cc_basename in
31394
 
+         NCC*)
31395
 
+           # NonStop-UX NCC 3.20
31396
 
+           lt_prog_compiler_pic_CXX='-KPIC'
31397
 
+           ;;
31398
 
+         *)
31399
 
+           ;;
31400
 
+       esac
31401
 
+       ;;
31402
 
+      vxworks*)
31403
 
       ;;
31404
 
-
31405
 
     *)
 
40200
-      ;;
 
40201
+# Shared library suffix (normally ".so").
 
40202
+shrext_cmds=$lt_shrext_cmds
 
40203
 
 
40204
-    *)
31406
40205
-      lt_prog_compiler_can_build_shared_GCJ=no
31407
 
+       lt_prog_compiler_can_build_shared_CXX=no
31408
 
       ;;
31409
 
     esac
31410
 
   fi
31411
 
 
31412
 
-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_GCJ" >&5
31413
 
-echo "${ECHO_T}$lt_prog_compiler_pic_GCJ" >&6; }
31414
 
+case $host_os in
31415
 
+  # For platforms which do not support PIC, -DPIC is meaningless:
31416
 
+  *djgpp*)
31417
 
+    lt_prog_compiler_pic_CXX=
31418
 
+    ;;
31419
 
+  *)
31420
 
+    lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC"
31421
 
+    ;;
31422
 
+esac
31423
 
+{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX" >&5
31424
 
+echo "${ECHO_T}$lt_prog_compiler_pic_CXX" >&6; }
31425
 
+
31426
 
+
31427
 
 
31428
 
 #
31429
 
 # Check to make sure the PIC flag actually works.
31430
 
 #
 
40206
-      ;;
 
40207
-    esac
 
40208
-  fi
 
40209
+# The commands to extract the exported symbol list from a shared archive.
 
40210
+extract_expsyms_cmds=$lt_extract_expsyms_cmds
 
40211
 
 
40212
-{ $as_echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_GCJ" >&5
 
40213
-$as_echo "$lt_prog_compiler_pic_GCJ" >&6; }
 
40214
+# Variables whose values should be saved in libtool wrapper scripts and
 
40215
+# restored at link time.
 
40216
+variables_saved_for_relink=$lt_variables_saved_for_relink
 
40217
 
 
40218
-#
 
40219
-# Check to make sure the PIC flag actually works.
 
40220
-#
31431
40221
-if test -n "$lt_prog_compiler_pic_GCJ"; then
31432
 
-
31433
 
-{ echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5
31434
 
-echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... $ECHO_C" >&6; }
31435
 
-if test "${lt_prog_compiler_pic_works_GCJ+set}" = set; then
31436
 
+if test -n "$lt_prog_compiler_pic_CXX"; then
31437
 
+  { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5
31438
 
+echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... $ECHO_C" >&6; }
31439
 
+if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then
31440
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
31441
 
 else
31442
 
-  lt_prog_compiler_pic_works_GCJ=no
31443
 
+  lt_cv_prog_compiler_pic_works_CXX=no
31444
 
   ac_outfile=conftest.$ac_objext
31445
 
    echo "$lt_simple_compile_test_code" > conftest.$ac_ext
 
40222
+# Do we need the "lib" prefix for modules?
 
40223
+need_lib_prefix=$need_lib_prefix
 
40224
 
 
40225
-{ $as_echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5
 
40226
-$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... " >&6; }
 
40227
-if test "${lt_cv_prog_compiler_pic_works_GCJ+set}" = set; then
 
40228
-  $as_echo_n "(cached) " >&6
 
40229
-else
 
40230
-  lt_cv_prog_compiler_pic_works_GCJ=no
 
40231
-  ac_outfile=conftest.$ac_objext
 
40232
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
31446
40233
-   lt_compiler_flag="$lt_prog_compiler_pic_GCJ"
31447
 
+   lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC"
31448
 
    # Insert the option either (1) after the last *FLAGS variable, or
31449
 
    # (2) before a word containing "conftest.", or (3) at the end.
31450
 
    # Note that $ac_compile itself does not contain backslashes and begins
31451
 
@@ -19315,57 +16560,50 @@
31452
 
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
31453
 
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
31454
 
    -e 's:$: $lt_compiler_flag:'`
31455
 
-   (eval echo "\"\$as_me:19318: $lt_compile\"" >&5)
31456
 
+   (eval echo "\"\$as_me:16563: $lt_compile\"" >&5)
31457
 
    (eval "$lt_compile" 2>conftest.err)
31458
 
    ac_status=$?
31459
 
    cat conftest.err >&5
31460
 
-   echo "$as_me:19322: \$? = $ac_status" >&5
31461
 
+   echo "$as_me:16567: \$? = $ac_status" >&5
31462
 
    if (exit $ac_status) && test -s "$ac_outfile"; then
31463
 
      # The compiler can only warn and ignore the option if not recognized
31464
 
      # So say no if there are warnings other than the usual output.
 
40234
-   # Insert the option either (1) after the last *FLAGS variable, or
 
40235
-   # (2) before a word containing "conftest.", or (3) at the end.
 
40236
-   # Note that $ac_compile itself does not contain backslashes and begins
 
40237
-   # with a dollar sign (not a hyphen), so the echo should work correctly.
 
40238
-   # The option is referenced via a variable to avoid confusing sed.
 
40239
-   lt_compile=`echo "$ac_compile" | $SED \
 
40240
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
40241
-   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
40242
-   -e 's:$: $lt_compiler_flag:'`
 
40243
-   (eval echo "\"\$as_me:20017: $lt_compile\"" >&5)
 
40244
-   (eval "$lt_compile" 2>conftest.err)
 
40245
-   ac_status=$?
 
40246
-   cat conftest.err >&5
 
40247
-   echo "$as_me:20021: \$? = $ac_status" >&5
 
40248
-   if (exit $ac_status) && test -s "$ac_outfile"; then
 
40249
-     # The compiler can only warn and ignore the option if not recognized
 
40250
-     # So say no if there are warnings other than the usual output.
31465
40251
-     $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
31466
 
+     $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
31467
 
      $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
31468
 
      if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
31469
 
-       lt_prog_compiler_pic_works_GCJ=yes
31470
 
+       lt_cv_prog_compiler_pic_works_CXX=yes
31471
 
      fi
31472
 
    fi
 
40252
-     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
 
40253
-     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
 
40254
-       lt_cv_prog_compiler_pic_works_GCJ=yes
 
40255
-     fi
 
40256
-   fi
31473
40257
-   $rm conftest*
31474
 
+   $RM conftest*
31475
 
 
31476
 
 fi
31477
 
-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works_GCJ" >&5
31478
 
-echo "${ECHO_T}$lt_prog_compiler_pic_works_GCJ" >&6; }
31479
 
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_CXX" >&5
31480
 
+echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_CXX" >&6; }
31481
 
 
31482
 
-if test x"$lt_prog_compiler_pic_works_GCJ" = xyes; then
 
40258
+# Do we need a version for libraries?
 
40259
+need_version=$need_version
 
40260
 
 
40261
-fi
 
40262
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_GCJ" >&5
 
40263
-$as_echo "$lt_cv_prog_compiler_pic_works_GCJ" >&6; }
 
40264
+# Library versioning type.
 
40265
+version_type=$version_type
 
40266
 
 
40267
-if test x"$lt_cv_prog_compiler_pic_works_GCJ" = xyes; then
31483
40268
-    case $lt_prog_compiler_pic_GCJ in
31484
 
+if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then
31485
 
+    case $lt_prog_compiler_pic_CXX in
31486
 
      "" | " "*) ;;
 
40269
-     "" | " "*) ;;
31487
40270
-     *) lt_prog_compiler_pic_GCJ=" $lt_prog_compiler_pic_GCJ" ;;
31488
 
+     *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;;
31489
 
      esac
31490
 
 else
 
40271
-     esac
 
40272
-else
31491
40273
-    lt_prog_compiler_pic_GCJ=
31492
40274
-     lt_prog_compiler_can_build_shared_GCJ=no
31493
 
+    lt_prog_compiler_pic_CXX=
31494
 
+     lt_prog_compiler_can_build_shared_CXX=no
31495
 
 fi
 
40275
-fi
 
40276
+# Shared library runtime path variable.
 
40277
+runpath_var=$runpath_var
31496
40278
 
31497
 
 fi
 
40279
-fi
31498
40280
-case $host_os in
31499
40281
-  # For platforms which do not support PIC, -DPIC is meaningless:
31500
40282
-  *djgpp*)
31504
40286
-    lt_prog_compiler_pic_GCJ="$lt_prog_compiler_pic_GCJ"
31505
40287
-    ;;
31506
40288
-esac
31507
 
+
31508
 
+
 
40289
+# Shared library path variable.
 
40290
+shlibpath_var=$shlibpath_var
31509
40291
 
31510
 
 #
31511
 
 # Check to make sure the static flag actually works.
31512
 
 #
 
40292
-#
 
40293
-# Check to make sure the static flag actually works.
 
40294
-#
31513
40295
-wl=$lt_prog_compiler_wl_GCJ eval lt_tmp_static_flag=\"$lt_prog_compiler_static_GCJ\"
31514
 
+wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\"
31515
 
 { echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5
31516
 
 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; }
31517
 
-if test "${lt_prog_compiler_static_works_GCJ+set}" = set; then
31518
 
+if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then
31519
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
31520
 
 else
31521
 
-  lt_prog_compiler_static_works_GCJ=no
31522
 
+  lt_cv_prog_compiler_static_works_CXX=no
31523
 
    save_LDFLAGS="$LDFLAGS"
31524
 
    LDFLAGS="$LDFLAGS $lt_tmp_static_flag"
31525
 
    echo "$lt_simple_link_test_code" > conftest.$ac_ext
31526
 
@@ -19375,36 +16613,90 @@
31527
 
      if test -s conftest.err; then
31528
 
        # Append any errors to the config.log.
31529
 
        cat conftest.err 1>&5
 
40296
-{ $as_echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5
 
40297
-$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
 
40298
-if test "${lt_cv_prog_compiler_static_works_GCJ+set}" = set; then
 
40299
-  $as_echo_n "(cached) " >&6
 
40300
-else
 
40301
-  lt_cv_prog_compiler_static_works_GCJ=no
 
40302
-   save_LDFLAGS="$LDFLAGS"
 
40303
-   LDFLAGS="$LDFLAGS $lt_tmp_static_flag"
 
40304
-   echo "$lt_simple_link_test_code" > conftest.$ac_ext
 
40305
-   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
 
40306
-     # The linker can only warn and ignore the option if not recognized
 
40307
-     # So say no if there are warnings
 
40308
-     if test -s conftest.err; then
 
40309
-       # Append any errors to the config.log.
 
40310
-       cat conftest.err 1>&5
31530
40311
-       $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
31531
 
+       $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
31532
 
        $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
31533
 
        if diff conftest.exp conftest.er2 >/dev/null; then
31534
 
-         lt_prog_compiler_static_works_GCJ=yes
31535
 
+         lt_cv_prog_compiler_static_works_CXX=yes
31536
 
        fi
31537
 
      else
31538
 
-       lt_prog_compiler_static_works_GCJ=yes
31539
 
+       lt_cv_prog_compiler_static_works_CXX=yes
31540
 
      fi
31541
 
    fi
31542
 
-   $rm conftest*
31543
 
+   $RM -r conftest*
31544
 
    LDFLAGS="$save_LDFLAGS"
31545
 
 
31546
 
 fi
31547
 
-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works_GCJ" >&5
31548
 
-echo "${ECHO_T}$lt_prog_compiler_static_works_GCJ" >&6; }
31549
 
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_CXX" >&5
31550
 
+echo "${ECHO_T}$lt_cv_prog_compiler_static_works_CXX" >&6; }
31551
 
 
31552
 
-if test x"$lt_prog_compiler_static_works_GCJ" = xyes; then
31553
 
+if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then
31554
 
     :
31555
 
 else
 
40312
-       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
 
40313
-       if diff conftest.exp conftest.er2 >/dev/null; then
 
40314
-         lt_cv_prog_compiler_static_works_GCJ=yes
 
40315
-       fi
 
40316
-     else
 
40317
-       lt_cv_prog_compiler_static_works_GCJ=yes
 
40318
-     fi
 
40319
-   fi
 
40320
-   $rm -r conftest*
 
40321
-   LDFLAGS="$save_LDFLAGS"
 
40322
+# Is shlibpath searched before the hard-coded library search path?
 
40323
+shlibpath_overrides_runpath=$shlibpath_overrides_runpath
 
40324
 
 
40325
-fi
 
40326
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_GCJ" >&5
 
40327
-$as_echo "$lt_cv_prog_compiler_static_works_GCJ" >&6; }
 
40328
+# Format of library name prefix.
 
40329
+libname_spec=$lt_libname_spec
 
40330
 
 
40331
-if test x"$lt_cv_prog_compiler_static_works_GCJ" = xyes; then
 
40332
-    :
 
40333
-else
31556
40334
-    lt_prog_compiler_static_GCJ=
31557
 
+    lt_prog_compiler_static_CXX=
31558
 
+fi
31559
 
+
31560
 
+
31561
 
+
31562
 
+
31563
 
+    { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
31564
 
+echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; }
31565
 
+if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then
31566
 
+  echo $ECHO_N "(cached) $ECHO_C" >&6
31567
 
+else
31568
 
+  lt_cv_prog_compiler_c_o_CXX=no
31569
 
+   $RM -r conftest 2>/dev/null
31570
 
+   mkdir conftest
31571
 
+   cd conftest
31572
 
+   mkdir out
31573
 
+   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
31574
 
+
31575
 
+   lt_compiler_flag="-o out/conftest2.$ac_objext"
31576
 
+   # Insert the option either (1) after the last *FLAGS variable, or
31577
 
+   # (2) before a word containing "conftest.", or (3) at the end.
31578
 
+   # Note that $ac_compile itself does not contain backslashes and begins
31579
 
+   # with a dollar sign (not a hyphen), so the echo should work correctly.
31580
 
+   lt_compile=`echo "$ac_compile" | $SED \
31581
 
+   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
31582
 
+   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
31583
 
+   -e 's:$: $lt_compiler_flag:'`
31584
 
+   (eval echo "\"\$as_me:16662: $lt_compile\"" >&5)
31585
 
+   (eval "$lt_compile" 2>out/conftest.err)
31586
 
+   ac_status=$?
31587
 
+   cat out/conftest.err >&5
31588
 
+   echo "$as_me:16666: \$? = $ac_status" >&5
31589
 
+   if (exit $ac_status) && test -s out/conftest2.$ac_objext
31590
 
+   then
31591
 
+     # The compiler can only warn and ignore the option if not recognized
31592
 
+     # So say no if there are warnings
31593
 
+     $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp
31594
 
+     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
31595
 
+     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
31596
 
+       lt_cv_prog_compiler_c_o_CXX=yes
31597
 
+     fi
31598
 
+   fi
31599
 
+   chmod u+w . 2>&5
31600
 
+   $RM conftest*
31601
 
+   # SGI C++ compiler will create directory out/ii_files/ for
31602
 
+   # template instantiation
31603
 
+   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
31604
 
+   $RM out/* && rmdir out
31605
 
+   cd ..
31606
 
+   $RM -r conftest
31607
 
+   $RM conftest*
31608
 
+
31609
 
 fi
31610
 
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5
31611
 
+echo "${ECHO_T}$lt_cv_prog_compiler_c_o_CXX" >&6; }
31612
 
 
31613
 
 
31614
 
-{ echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
31615
 
+
31616
 
+    { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
31617
 
 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; }
 
40335
-fi
 
40336
+# List of archive names.  First name is the real one, the rest are links.
 
40337
+# The last name is the one that the linker finds with -lNAME
 
40338
+library_names_spec=$lt_library_names_spec
 
40339
 
 
40340
+# The coded name of the library, if different from the real name.
 
40341
+soname_spec=$lt_soname_spec
 
40342
 
 
40343
-{ $as_echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
 
40344
-$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
31618
40345
-if test "${lt_cv_prog_compiler_c_o_GCJ+set}" = set; then
31619
 
+if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then
31620
 
   echo $ECHO_N "(cached) $ECHO_C" >&6
31621
 
 else
 
40346
-  $as_echo_n "(cached) " >&6
 
40347
-else
31622
40348
-  lt_cv_prog_compiler_c_o_GCJ=no
31623
40349
-   $rm -r conftest 2>/dev/null
31624
 
+  lt_cv_prog_compiler_c_o_CXX=no
31625
 
+   $RM -r conftest 2>/dev/null
31626
 
    mkdir conftest
31627
 
    cd conftest
31628
 
    mkdir out
31629
 
@@ -19419,43 +16711,45 @@
31630
 
    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
31631
 
    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
31632
 
    -e 's:$: $lt_compiler_flag:'`
31633
 
-   (eval echo "\"\$as_me:19422: $lt_compile\"" >&5)
31634
 
+   (eval echo "\"\$as_me:16714: $lt_compile\"" >&5)
31635
 
    (eval "$lt_compile" 2>out/conftest.err)
31636
 
    ac_status=$?
31637
 
    cat out/conftest.err >&5
31638
 
-   echo "$as_me:19426: \$? = $ac_status" >&5
31639
 
+   echo "$as_me:16718: \$? = $ac_status" >&5
31640
 
    if (exit $ac_status) && test -s out/conftest2.$ac_objext
31641
 
    then
31642
 
      # The compiler can only warn and ignore the option if not recognized
31643
 
      # So say no if there are warnings
 
40350
-   mkdir conftest
 
40351
-   cd conftest
 
40352
-   mkdir out
 
40353
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
 
40354
+# Command to use after installation of a shared archive.
 
40355
+postinstall_cmds=$lt_postinstall_cmds
 
40356
 
 
40357
-   lt_compiler_flag="-o out/conftest2.$ac_objext"
 
40358
-   # Insert the option either (1) after the last *FLAGS variable, or
 
40359
-   # (2) before a word containing "conftest.", or (3) at the end.
 
40360
-   # Note that $ac_compile itself does not contain backslashes and begins
 
40361
-   # with a dollar sign (not a hyphen), so the echo should work correctly.
 
40362
-   lt_compile=`echo "$ac_compile" | $SED \
 
40363
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
 
40364
-   -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
 
40365
-   -e 's:$: $lt_compiler_flag:'`
 
40366
-   (eval echo "\"\$as_me:20121: $lt_compile\"" >&5)
 
40367
-   (eval "$lt_compile" 2>out/conftest.err)
 
40368
-   ac_status=$?
 
40369
-   cat out/conftest.err >&5
 
40370
-   echo "$as_me:20125: \$? = $ac_status" >&5
 
40371
-   if (exit $ac_status) && test -s out/conftest2.$ac_objext
 
40372
-   then
 
40373
-     # The compiler can only warn and ignore the option if not recognized
 
40374
-     # So say no if there are warnings
31644
40375
-     $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp
31645
 
+     $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp
31646
 
      $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
31647
 
      if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
 
40376
-     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
 
40377
-     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
31648
40378
-       lt_cv_prog_compiler_c_o_GCJ=yes
31649
 
+       lt_cv_prog_compiler_c_o_CXX=yes
31650
 
      fi
31651
 
    fi
31652
 
    chmod u+w . 2>&5
 
40379
-     fi
 
40380
-   fi
 
40381
-   chmod u+w . 2>&5
31653
40382
-   $rm conftest*
31654
 
+   $RM conftest*
31655
 
    # SGI C++ compiler will create directory out/ii_files/ for
31656
 
    # template instantiation
 
40383
-   # SGI C++ compiler will create directory out/ii_files/ for
 
40384
-   # template instantiation
31657
40385
-   test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files
31658
40386
-   $rm out/* && rmdir out
31659
 
+   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
31660
 
+   $RM out/* && rmdir out
31661
 
    cd ..
 
40387
-   cd ..
31662
40388
-   rmdir conftest
31663
40389
-   $rm conftest*
31664
 
+   $RM -r conftest
31665
 
+   $RM conftest*
31666
 
 
31667
 
 fi
31668
 
-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_GCJ" >&5
31669
 
-echo "${ECHO_T}$lt_cv_prog_compiler_c_o_GCJ" >&6; }
31670
 
+{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5
31671
 
+echo "${ECHO_T}$lt_cv_prog_compiler_c_o_CXX" >&6; }
31672
 
+
31673
 
+
31674
 
 
31675
 
 
31676
 
 hard_links="nottested"
 
40390
+# Command to use after uninstallation of a shared archive.
 
40391
+postuninstall_cmds=$lt_postuninstall_cmds
 
40392
 
 
40393
-fi
 
40394
-{ $as_echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_GCJ" >&5
 
40395
-$as_echo "$lt_cv_prog_compiler_c_o_GCJ" >&6; }
 
40396
+# Commands used to finish a libtool library installation in a directory.
 
40397
+finish_cmds=$lt_finish_cmds
 
40398
 
 
40399
+# As "finish_cmds", except a single script fragment to be evaled but
 
40400
+# not shown.
 
40401
+finish_eval=$lt_finish_eval
 
40402
 
 
40403
-hard_links="nottested"
31677
40404
-if test "$lt_cv_prog_compiler_c_o_GCJ" = no && test "$need_locks" != no; then
31678
 
+if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then
31679
 
   # do not overwrite the value of need_locks provided by the user
31680
 
   { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5
31681
 
 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; }
31682
 
   hard_links=yes
 
40405
-  # do not overwrite the value of need_locks provided by the user
 
40406
-  { $as_echo "$as_me:$LINENO: checking if we can lock with hard links" >&5
 
40407
-$as_echo_n "checking if we can lock with hard links... " >&6; }
 
40408
-  hard_links=yes
31683
40409
-  $rm conftest*
31684
 
+  $RM conftest*
31685
 
   ln conftest.a conftest.b 2>/dev/null && hard_links=no
31686
 
   touch conftest.a
31687
 
   ln conftest.a conftest.b 2>&5 || hard_links=no
31688
 
@@ -19471,1055 +16765,177 @@
31689
 
   need_locks=no
31690
 
 fi
 
40410
-  ln conftest.a conftest.b 2>/dev/null && hard_links=no
 
40411
-  touch conftest.a
 
40412
-  ln conftest.a conftest.b 2>&5 || hard_links=no
 
40413
-  ln conftest.a conftest.b 2>/dev/null && hard_links=no
 
40414
-  { $as_echo "$as_me:$LINENO: result: $hard_links" >&5
 
40415
-$as_echo "$hard_links" >&6; }
 
40416
-  if test "$hard_links" = no; then
 
40417
-    { $as_echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
 
40418
-$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
 
40419
-    need_locks=warn
 
40420
-  fi
 
40421
-else
 
40422
-  need_locks=no
 
40423
-fi
 
40424
+# Whether we should hardcode library paths into libraries.
 
40425
+hardcode_into_libs=$hardcode_into_libs
31691
40426
 
31692
 
-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
31693
 
-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; }
 
40427
-{ $as_echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
 
40428
-$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; }
 
40429
+# Compile-time system search path for libraries.
 
40430
+sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
31694
40431
 
31695
40432
-  runpath_var=
31696
40433
-  allow_undefined_flag_GCJ=
31721
40458
-  # it will be wrapped by ` (' and `)$', so one must not match beginning or
31722
40459
-  # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
31723
40460
-  # as well as any symbol that contains `d'.
31724
 
-  exclude_expsyms_GCJ="_GLOBAL_OFFSET_TABLE_"
 
40461
-  exclude_expsyms_GCJ='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
31725
40462
-  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
31726
40463
-  # platforms (ab)use it in PIC code, but their linkers get confused if
31727
40464
-  # the symbol is explicitly referenced.  Since portable code cannot
31728
40465
-  # rely on this symbol name, it's probably fine to never include it in
31729
40466
-  # preloaded symbol tables.
 
40467
-  # Exclude shared library initialization/finalization symbols.
31730
40468
-  extract_expsyms_cmds=
31731
40469
-  # Just being paranoid about ensuring that cc_basename is set.
31732
40470
-  for cc_temp in $compiler""; do
31738
40476
-  esac
31739
40477
-done
31740
40478
-cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
 
40479
+# Run-time system search path for libraries.
 
40480
+sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
31741
40481
 
31742
 
+    { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5
31743
 
+echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; }
31744
 
+
31745
 
+  export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
31746
 
   case $host_os in
 
40482
-  case $host_os in
31747
40483
-  cygwin* | mingw* | pw32*)
31748
40484
-    # FIXME: the MSVC++ port hasn't been tested in a loooong time
31749
40485
-    # When not using gcc, we currently assume that we are using
31750
40486
-    # Microsoft Visual C++.
31751
40487
-    if test "$GCC" != yes; then
31752
40488
-      with_gnu_ld=no
31753
 
+  aix[4-9]*)
31754
 
+    # If we're using GNU nm, then we don't want the "-C" option.
31755
 
+    # -C means demangle to AIX nm, but means don't demangle with GNU nm
31756
 
+    if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
31757
 
+      export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
31758
 
+    else
31759
 
+      export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
31760
 
     fi
31761
 
     ;;
 
40489
-    fi
 
40490
-    ;;
31762
40491
-  interix*)
31763
40492
-    # we just hope/assume this is gcc and not c89 (= MSVC++)
31764
40493
-    with_gnu_ld=yes
31765
 
+  pw32*)
31766
 
+    export_symbols_cmds_CXX="$ltdll_cmds"
31767
 
     ;;
 
40494
-    ;;
31768
40495
-  openbsd*)
31769
40496
-    with_gnu_ld=no
31770
 
+  cygwin* | mingw*)
31771
 
+    export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;/^.*[ ]__nm__/s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols'
31772
 
+  ;;
31773
 
+  linux* | k*bsd*-gnu)
31774
 
+    link_all_deplibs_CXX=no
31775
 
+  ;;
31776
 
+  *)
31777
 
+    export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
31778
 
     ;;
31779
 
   esac
31780
 
+  exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
 
40497
-    ;;
 
40498
-  esac
 
40499
+# Whether dlopen is supported.
 
40500
+dlopen_support=$enable_dlopen
31781
40501
 
31782
40502
-  ld_shlibs_GCJ=yes
31783
40503
-  if test "$with_gnu_ld" = yes; then
31784
40504
-    # If archive_cmds runs LD, not CC, wlarc should be empty
31785
40505
-    wlarc='${wl}'
31786
 
-
 
40506
+# Whether dlopen of programs is supported.
 
40507
+dlopen_self=$enable_dlopen_self
 
40508
 
31787
40509
-    # Set some defaults for GNU ld with shared library support. These
31788
40510
-    # are reset later if shared libraries are not supported. Putting them
31789
40511
-    # here allows them to be overridden if necessary.
31804
40526
-      *\ 2.11.*) ;; # other 2.11 versions
31805
40527
-      *) supports_anon_versioning=yes ;;
31806
40528
-    esac
31807
 
+{ echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5
31808
 
+echo "${ECHO_T}$ld_shlibs_CXX" >&6; }
31809
 
+test "$ld_shlibs_CXX" = no && can_build_shared=no
 
40529
+# Whether dlopen of statically linked programs is supported.
 
40530
+dlopen_self_static=$enable_dlopen_self_static
31810
40531
 
31811
40532
-    # See if GNU ld supports shared libraries.
31812
40533
-    case $host_os in
31813
 
-    aix3* | aix4* | aix5*)
 
40534
-    aix[3-9]*)
31814
40535
-      # On AIX/PPC, the GNU linker is very broken
31815
40536
-      if test "$host_cpu" != ia64; then
31816
40537
-       ld_shlibs_GCJ=no
31817
40538
-       cat <<EOF 1>&2
31818
 
+with_gnu_ld_CXX=$with_gnu_ld
 
40539
+# Commands to strip libraries.
 
40540
+old_striplib=$lt_old_striplib
 
40541
+striplib=$lt_striplib
31819
40542
 
31820
40543
-*** Warning: the GNU linker, at least up to release 2.9.1, is reported
31821
40544
-*** to be unable to reliably create shared libraries on AIX.
31826
40549
-EOF
31827
40550
-      fi
31828
40551
-      ;;
 
40552
+# The linker used to build libraries.
 
40553
+LD=$lt_LD
31829
40554
 
31830
40555
-    amigaos*)
31831
40556
-      archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
31840
40565
-      # them.
31841
40566
-      ld_shlibs_GCJ=no
31842
40567
-      ;;
 
40568
+# Commands used to build an old-style archive.
 
40569
+old_archive_cmds=$lt_old_archive_cmds
31843
40570
 
31844
40571
-    beos*)
31845
40572
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
31851
40578
-       ld_shlibs_GCJ=no
31852
40579
-      fi
31853
40580
-      ;;
 
40581
+# A language specific compiler.
 
40582
+CC=$lt_compiler
31854
40583
 
31855
40584
-    cygwin* | mingw* | pw32*)
31856
40585
-      # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, GCJ) is actually meaningless,
31860
40589
-      always_export_symbols_GCJ=no
31861
40590
-      enable_shared_with_static_runtimes_GCJ=yes
31862
40591
-      export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols'
 
40592
+# Is the compiler the GNU compiler?
 
40593
+with_gcc=$GCC
31863
40594
 
31864
40595
-      if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
31865
40596
-        archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
31876
40607
-       ld_shlibs_GCJ=no
31877
40608
-      fi
31878
40609
-      ;;
31879
 
-
 
40610
+# Compiler flag to turn off builtin functions.
 
40611
+no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
 
40612
 
31880
40613
-    interix[3-9]*)
31881
40614
-      hardcode_direct_GCJ=no
31882
40615
-      hardcode_shlibpath_var_GCJ=no
31891
40624
-      archive_cmds_GCJ='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
31892
40625
-      archive_expsym_cmds_GCJ='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
31893
40626
-      ;;
31894
 
+#
31895
 
+# Do we need to explicitly link libc?
31896
 
+#
31897
 
+case "x$archive_cmds_need_lc_CXX" in
31898
 
+x|xyes)
31899
 
+  # Assume -lc should be added
31900
 
+  archive_cmds_need_lc_CXX=yes
 
40627
+# How to pass a linker flag through the compiler.
 
40628
+wl=$lt_lt_prog_compiler_wl
31901
40629
 
31902
40630
-    gnu* | linux* | k*bsd*-gnu)
31903
40631
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
31906
40634
-       pgcc*)                          # Portland Group C compiler
31907
40635
-         whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
31908
40636
-         tmp_addflag=' $pic_flag'
31909
 
+  if test "$enable_shared" = yes && test "$GCC" = yes; then
31910
 
+    case $archive_cmds_CXX in
31911
 
+    *'~'*)
31912
 
+      # FIXME: we may have to deal with multi-command sequences.
31913
 
          ;;
 
40637
-         ;;
31914
40638
-       pgf77* | pgf90* | pgf95*)       # Portland Group f77 and f90 compilers
31915
40639
-         whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
31916
40640
-         tmp_addflag=' $pic_flag -Mnomain' ;;
31931
40655
-         tmp_sharedflag='-shared' ;;
31932
40656
-       esac
31933
40657
-       archive_cmds_GCJ='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
31934
 
+    '$CC '*)
31935
 
+      # Test whether the compiler implicitly links with -lc since on some
31936
 
+      # systems, -lgcc has to come before -lc. If gcc already passes -lc
31937
 
+      # to ld, don't add -lc before -lgcc.
31938
 
+      { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
31939
 
+echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; }
31940
 
+      $RM conftest*
31941
 
+      echo "$lt_simple_compile_test_code" > conftest.$ac_ext
 
40658
+# Additional compiler flags for building library objects.
 
40659
+pic_flag=$lt_lt_prog_compiler_pic
31942
40660
 
31943
40661
-       if test $supports_anon_versioning = yes; then
31944
40662
-         archive_expsym_cmds_GCJ='$echo "{ global:" > $output_objdir/$libname.ver~
31945
40663
-  cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
31946
40664
-  $echo "local: *; };" >> $output_objdir/$libname.ver~
31947
40665
-         $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
31948
 
+      if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
31949
 
+  (eval $ac_compile) 2>&5
31950
 
+  ac_status=$?
31951
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
31952
 
+  (exit $ac_status); } 2>conftest.err; then
31953
 
+        soname=conftest
31954
 
+        lib=conftest
31955
 
+        libobjs=conftest.$ac_objext
31956
 
+        deplibs=
31957
 
+        wl=$lt_prog_compiler_wl_CXX
31958
 
+       pic_flag=$lt_prog_compiler_pic_CXX
31959
 
+        compiler_flags=-v
31960
 
+        linker_flags=-v
31961
 
+        verstring=
31962
 
+        output_objdir=.
31963
 
+        libname=conftest
31964
 
+        lt_save_allow_undefined_flag=$allow_undefined_flag_CXX
31965
 
+        allow_undefined_flag_CXX=
31966
 
+        if { (eval echo "$as_me:$LINENO: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\"") >&5
31967
 
+  (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5
31968
 
+  ac_status=$?
31969
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
31970
 
+  (exit $ac_status); }
31971
 
+        then
31972
 
+         archive_cmds_need_lc_CXX=no
31973
 
+        else
31974
 
+         archive_cmds_need_lc_CXX=yes
31975
 
        fi
31976
 
+        allow_undefined_flag_CXX=$lt_save_allow_undefined_flag
31977
 
       else
 
40666
-       fi
 
40667
-      else
31978
40668
-       ld_shlibs_GCJ=no
31979
 
+        cat conftest.err 1>&5
31980
 
       fi
31981
 
+      $RM conftest*
31982
 
+      { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_CXX" >&5
31983
 
+echo "${ECHO_T}$archive_cmds_need_lc_CXX" >&6; }
31984
 
       ;;
31985
 
-
 
40669
-      fi
 
40670
-      ;;
 
40671
+# Compiler flag to prevent dynamic linking.
 
40672
+link_static_flag=$lt_lt_prog_compiler_static
 
40673
 
31986
40674
-    netbsd*)
31987
40675
-      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
31988
40676
-       archive_cmds_GCJ='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
31990
40678
-      else
31991
40679
-       archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
31992
40680
-       archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
31993
 
+    esac
31994
 
       fi
31995
 
       ;;
31996
 
+esac
 
40681
-      fi
 
40682
-      ;;
 
40683
+# Does compiler simultaneously support -c and -o options?
 
40684
+compiler_c_o=$lt_lt_cv_prog_compiler_c_o
31997
40685
 
31998
40686
-    solaris*)
31999
40687
-      if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
32000
40688
-       ld_shlibs_GCJ=no
32001
40689
-       cat <<EOF 1>&2
 
40690
+# Whether or not to add -lc for building shared libraries.
 
40691
+build_libtool_need_lc=$archive_cmds_need_lc
32002
40692
 
32003
40693
-*** Warning: The releases 2.8.* of the GNU linker cannot reliably
32004
40694
-*** create shared libraries on Solaris systems.  Therefore, libtool
32006
40696
-*** binutils to release 2.9.1 or newer.  Another option is to modify
32007
40697
-*** your PATH or compiler configuration so that the native linker is
32008
40698
-*** used, and then restart.
 
40699
+# Whether or not to disallow shared libs when runtime libs are static.
 
40700
+allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
32009
40701
 
32010
40702
-EOF
32011
40703
-      elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
32015
40707
-       ld_shlibs_GCJ=no
32016
40708
-      fi
32017
40709
-      ;;
 
40710
+# Compiler flag to allow reflexive dlopens.
 
40711
+export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
32018
40712
 
32019
40713
-    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
32020
40714
-      case `$LD -v 2>&1` in
32021
40715
-        *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
32022
40716
-       ld_shlibs_GCJ=no
32023
40717
-       cat <<_LT_EOF 1>&2
 
40718
+# Compiler flag to generate shared objects directly from archives.
 
40719
+whole_archive_flag_spec=$lt_whole_archive_flag_spec
32024
40720
 
32025
40721
-*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
32026
40722
-*** reliably create shared libraries on SCO systems.  Therefore, libtool
32028
40724
-*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify
32029
40725
-*** your PATH or compiler configuration so that the native linker is
32030
40726
-*** used, and then restart.
 
40727
+# Whether the compiler copes with passing no objects directly.
 
40728
+compiler_needs_object=$lt_compiler_needs_object
32031
40729
 
32032
40730
-_LT_EOF
32033
40731
-       ;;
32042
40740
-       ;;
32043
40741
-      esac
32044
40742
-      ;;
 
40743
+# Create an old-style archive from a shared archive.
 
40744
+old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
32045
40745
 
32046
40746
-    sunos4*)
32047
40747
-      archive_cmds_GCJ='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
32049
40749
-      hardcode_direct_GCJ=yes
32050
40750
-      hardcode_shlibpath_var_GCJ=no
32051
40751
-      ;;
 
40752
+# Create a temporary old-style archive to link instead of a shared archive.
 
40753
+old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
32052
40754
 
32053
40755
-    *)
32054
40756
-      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
32059
40761
-      fi
32060
40762
-      ;;
32061
40763
-    esac
 
40764
+# Commands used to build a shared archive.
 
40765
+archive_cmds=$lt_archive_cmds
 
40766
+archive_expsym_cmds=$lt_archive_expsym_cmds
32062
40767
 
32063
40768
-    if test "$ld_shlibs_GCJ" = no; then
32064
40769
-      runpath_var=
32082
40787
-       hardcode_direct_GCJ=unsupported
32083
40788
-      fi
32084
40789
-      ;;
 
40790
+# Commands used to build a loadable module if different from building
 
40791
+# a shared archive.
 
40792
+module_cmds=$lt_module_cmds
 
40793
+module_expsym_cmds=$lt_module_expsym_cmds
32085
40794
 
32086
 
-    aix4* | aix5*)
 
40795
-    aix[4-9]*)
32087
40796
-      if test "$host_cpu" = ia64; then
32088
40797
-       # On IA64, the linker does run time linking by default, so we don't
32089
40798
-       # have to do anything special.
32099
40808
-         export_symbols_cmds_GCJ='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols'
32100
40809
-       fi
32101
40810
-       aix_use_runtimelinking=no
 
40811
+# Whether we are building with GNU ld or not.
 
40812
+with_gnu_ld=$lt_with_gnu_ld
32102
40813
 
32103
40814
-       # Test if we are trying to use run time linking or normal
32104
40815
-       # AIX style linking. If -brtl is somewhere in LDFLAGS, we
32105
40816
-       # need to do runtime linking.
32106
 
-       case $host_os in aix4.[23]|aix4.[23].*|aix5*)
 
40817
-       case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)
32107
40818
-         for ld_flag in $LDFLAGS; do
32108
40819
-         if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
32109
40820
-           aix_use_runtimelinking=yes
32112
40823
-         done
32113
40824
-         ;;
32114
40825
-       esac
 
40826
+# Flag that allows shared libraries with undefined symbols to be built.
 
40827
+allow_undefined_flag=$lt_allow_undefined_flag
32115
40828
 
32116
40829
-       exp_sym_flag='-bexport'
32117
40830
-       no_entry_flag='-bnoentry'
32118
40831
-      fi
 
40832
+# Flag that enforces no undefined symbols.
 
40833
+no_undefined_flag=$lt_no_undefined_flag
32119
40834
 
32120
40835
-      # When large executables or shared objects are built, AIX ld can
32121
40836
-      # have problems creating the table of contents.  If linking a library
32122
40837
-      # or program results in "error TOC overflow" add -mminimal-toc to
32123
40838
-      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
32124
40839
-      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
 
40840
+# Flag to hardcode \$libdir into a binary during linking.
 
40841
+# This must work even if \$libdir does not exist
 
40842
+hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
32125
40843
 
32126
40844
-      archive_cmds_GCJ=''
32127
40845
-      hardcode_direct_GCJ=yes
32128
40846
-      hardcode_libdir_separator_GCJ=':'
32129
40847
-      link_all_deplibs_GCJ=yes
 
40848
+# If ld is used when linking, flag to hardcode \$libdir into a binary
 
40849
+# during linking.  This must work even if \$libdir does not exist.
 
40850
+hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
32130
40851
 
32131
40852
-      if test "$GCC" = yes; then
32132
40853
-       case $host_os in aix4.[012]|aix4.[012].*)
32168
40889
-         fi
32169
40890
-       fi
32170
40891
-      fi
 
40892
+# Whether we need a single "-rpath" flag with a separated argument.
 
40893
+hardcode_libdir_separator=$lt_hardcode_libdir_separator
32171
40894
 
32172
40895
-      # It seems that -bexpall does not export symbols beginning with
32173
40896
-      # underscore (_), so it is better to generate a list of symbols to export.
32183
40906
-cat confdefs.h >>conftest.$ac_ext
32184
40907
-cat >>conftest.$ac_ext <<_ACEOF
32185
40908
-/* end confdefs.h.  */
 
40909
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
 
40910
+# DIR into the resulting binary.
 
40911
+hardcode_direct=$hardcode_direct
32186
40912
 
32187
40913
-int
32188
40914
-main ()
32189
40915
-{
 
40916
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
 
40917
+# DIR into the resulting binary and the resulting library dependency is
 
40918
+# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
 
40919
+# library is relocated.
 
40920
+hardcode_direct_absolute=$hardcode_direct_absolute
32190
40921
 
32191
40922
-  ;
32192
40923
-  return 0;
32198
40929
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
32199
40930
-  *) ac_try_echo=$ac_try;;
32200
40931
-esac
32201
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
40932
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
40933
-$as_echo "$ac_try_echo") >&5
32202
40934
-  (eval "$ac_link") 2>conftest.er1
32203
40935
-  ac_status=$?
32204
40936
-  grep -v '^ *+' conftest.er1 >conftest.err
32205
40937
-  rm -f conftest.er1
32206
40938
-  cat conftest.err >&5
32207
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
40939
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
32208
40940
-  (exit $ac_status); } && {
32209
40941
-        test -z "$ac_c_werror_flag" ||
32210
40942
-        test ! -s conftest.err
32211
 
-       } && test -s conftest$ac_exeext &&
32212
 
-       $as_test_x conftest$ac_exeext; then
 
40943
-       } && test -s conftest$ac_exeext && {
 
40944
-        test "$cross_compiling" = yes ||
 
40945
-        $as_test_x conftest$ac_exeext
 
40946
-       }; then
 
40947
+# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
 
40948
+# into the resulting binary.
 
40949
+hardcode_minus_L=$hardcode_minus_L
 
40950
+
 
40951
+# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
 
40952
+# into the resulting binary.
 
40953
+hardcode_shlibpath_var=$hardcode_shlibpath_var
 
40954
+
 
40955
+# Set to "yes" if building a shared library automatically hardcodes DIR
 
40956
+# into the library and all subsequent libraries and executables linked
 
40957
+# against it.
 
40958
+hardcode_automatic=$hardcode_automatic
 
40959
+
 
40960
+# Set to yes if linker adds runtime paths of dependent libraries
 
40961
+# to runtime path list.
 
40962
+inherit_rpath=$inherit_rpath
 
40963
+
 
40964
+# Whether libtool must link a program against all its dependency libraries.
 
40965
+link_all_deplibs=$link_all_deplibs
 
40966
+
 
40967
+# Fix the shell variable \$srcfile for the compiler.
 
40968
+fix_srcfile_path=$lt_fix_srcfile_path
32213
40969
 
32214
40970
-lt_aix_libpath_sed='
32215
40971
-    /Import File Strings/,/^$/ {
32224
40980
-  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
32225
40981
-fi
32226
40982
-else
32227
 
-  echo "$as_me: failed program was:" >&5
 
40983
-  $as_echo "$as_me: failed program was:" >&5
32228
40984
-sed 's/^/| /' conftest.$ac_ext >&5
 
40985
+# Set to "yes" if exported symbols are required.
 
40986
+always_export_symbols=$always_export_symbols
32229
40987
 
 
40988
+# The commands to list exported symbols.
 
40989
+export_symbols_cmds=$lt_export_symbols_cmds
32230
40990
 
32231
40991
-fi
 
40992
+# Symbols that should not be listed in the preloaded symbols.
 
40993
+exclude_expsyms=$lt_exclude_expsyms
32232
40994
 
 
40995
-rm -rf conftest.dSYM
32233
40996
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
32234
40997
-      conftest$ac_exeext conftest.$ac_ext
32235
40998
-if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 
40999
+# Symbols that must always be exported.
 
41000
+include_expsyms=$lt_include_expsyms
32236
41001
 
32237
41002
-       hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath"
32238
41003
-       archive_expsym_cmds_GCJ="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
32249
41014
-cat confdefs.h >>conftest.$ac_ext
32250
41015
-cat >>conftest.$ac_ext <<_ACEOF
32251
41016
-/* end confdefs.h.  */
 
41017
+# Commands necessary for linking programs (against libraries) with templates.
 
41018
+prelink_cmds=$lt_prelink_cmds
32252
41019
 
32253
41020
-int
32254
41021
-main ()
32255
41022
-{
 
41023
+# Specify filename containing input files.
 
41024
+file_list_spec=$lt_file_list_spec
32256
41025
 
32257
41026
-  ;
32258
41027
-  return 0;
32264
41033
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
32265
41034
-  *) ac_try_echo=$ac_try;;
32266
41035
-esac
32267
 
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
41036
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
41037
-$as_echo "$ac_try_echo") >&5
32268
41038
-  (eval "$ac_link") 2>conftest.er1
32269
41039
-  ac_status=$?
32270
41040
-  grep -v '^ *+' conftest.er1 >conftest.err
32271
41041
-  rm -f conftest.er1
32272
41042
-  cat conftest.err >&5
32273
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
41043
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
32274
41044
-  (exit $ac_status); } && {
32275
41045
-        test -z "$ac_c_werror_flag" ||
32276
41046
-        test ! -s conftest.err
32277
 
-       } && test -s conftest$ac_exeext &&
32278
 
-       $as_test_x conftest$ac_exeext; then
 
41047
-       } && test -s conftest$ac_exeext && {
 
41048
-        test "$cross_compiling" = yes ||
 
41049
-        $as_test_x conftest$ac_exeext
 
41050
-       }; then
 
41051
+# How to hardcode a shared library path into an executable.
 
41052
+hardcode_action=$hardcode_action
32279
41053
 
32280
41054
-lt_aix_libpath_sed='
32281
41055
-    /Import File Strings/,/^$/ {
32290
41064
-  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
32291
41065
-fi
32292
41066
-else
32293
 
-  echo "$as_me: failed program was:" >&5
 
41067
-  $as_echo "$as_me: failed program was:" >&5
32294
41068
-sed 's/^/| /' conftest.$ac_ext >&5
32295
 
 
32296
 
 
32297
 
-fi
32298
 
 
 
41069
+# The directories searched by this compiler when creating a shared library.
 
41070
+compiler_lib_search_dirs=$lt_compiler_lib_search_dirs
 
41071
+
 
41072
+# Dependencies to place before and after the objects being linked to
 
41073
+# create a shared library.
 
41074
+predep_objects=$lt_predep_objects
 
41075
+postdep_objects=$lt_postdep_objects
 
41076
+predeps=$lt_predeps
 
41077
+postdeps=$lt_postdeps
 
41078
+
 
41079
+# The library search path used internally by the compiler when linking
 
41080
+# a shared library.
 
41081
+compiler_lib_search_path=$lt_compiler_lib_search_path
 
41082
+
 
41083
+# ### END LIBTOOL CONFIG
 
41084
 
 
41085
+_LT_EOF
 
41086
 
 
41087
+  case $host_os in
 
41088
+  aix3*)
 
41089
+    cat <<\_LT_EOF >> "$cfgfile"
 
41090
+# AIX sometimes has problems with the GCC collect2 program.  For some
 
41091
+# reason, if we set the COLLECT_NAMES environment variable, the problems
 
41092
+# vanish in a puff of smoke.
 
41093
+if test "X${COLLECT_NAMES+set}" != Xset; then
 
41094
+  COLLECT_NAMES=
 
41095
+  export COLLECT_NAMES
 
41096
 fi
 
41097
+_LT_EOF
 
41098
+    ;;
 
41099
+  esac
 
41100
 
 
41101
-rm -rf conftest.dSYM
32299
41102
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
32300
41103
-      conftest$ac_exeext conftest.$ac_ext
32301
41104
-if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
32313
41116
-       fi
32314
41117
-      fi
32315
41118
-      ;;
 
41119
+ltmain="$ac_aux_dir/ltmain.sh"
32316
41120
 
32317
41121
-    amigaos*)
32318
41122
-      archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
32325
41129
-    bsdi[45]*)
32326
41130
-      export_dynamic_flag_spec_GCJ=-rdynamic
32327
41131
-      ;;
 
41132
+  # We use sed instead of cat because bash on DJGPP gets confused if
 
41133
+  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
 
41134
+  # text mode, it properly converts lines to CR/LF.  This bash problem
 
41135
+  # is reportedly fixed, but why not run on old versions too?
 
41136
+  sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \
 
41137
+    || (rm -f "$cfgfile"; exit 1)
32328
41138
 
32329
41139
-    cygwin* | mingw* | pw32*)
32330
41140
-      # When not using gcc, we currently assume that we are using
32346
41156
-      fix_srcfile_path_GCJ='`cygpath -w "$srcfile"`'
32347
41157
-      enable_shared_with_static_runtimes_GCJ=yes
32348
41158
-      ;;
 
41159
+  case $xsi_shell in
 
41160
+  yes)
 
41161
+    cat << \_LT_EOF >> "$cfgfile"
 
41162
+
 
41163
+# func_dirname file append nondir_replacement
 
41164
+# Compute the dirname of FILE.  If nonempty, add APPEND to the result,
 
41165
+# otherwise set result to NONDIR_REPLACEMENT.
 
41166
+func_dirname ()
 
41167
+{
 
41168
+  case ${1} in
 
41169
+    */*) func_dirname_result="${1%/*}${2}" ;;
 
41170
+    *  ) func_dirname_result="${3}" ;;
 
41171
+  esac
 
41172
+}
32349
41173
 
32350
41174
-    darwin* | rhapsody*)
32351
41175
-      case $host_os in
32375
41199
-      link_all_deplibs_GCJ=yes
32376
41200
-    if test "$GCC" = yes ; then
32377
41201
-       output_verbose_link_cmd='echo'
32378
 
-        archive_cmds_GCJ='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
32379
 
-      module_cmds_GCJ='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
32380
 
-      # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
32381
 
-      archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
32382
 
-      module_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag  -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
 
41202
-        archive_cmds_GCJ="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
 
41203
-        module_cmds_GCJ="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
 
41204
-        archive_expsym_cmds_GCJ="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
 
41205
-        module_expsym_cmds_GCJ="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
32383
41206
-    else
32384
41207
-      case $cc_basename in
32385
41208
-        xlc*)
32396
41219
-      esac
32397
41220
-    fi
32398
41221
-      ;;
 
41222
+# func_basename file
 
41223
+func_basename ()
 
41224
+{
 
41225
+  func_basename_result="${1##*/}"
 
41226
+}
32399
41227
 
32400
41228
-    dgux*)
32401
41229
-      archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
32402
41230
-      hardcode_libdir_flag_spec_GCJ='-L$libdir'
32403
41231
-      hardcode_shlibpath_var_GCJ=no
32404
41232
-      ;;
 
41233
+# func_dirname_and_basename file append nondir_replacement
 
41234
+# perform func_basename and func_dirname in a single function
 
41235
+# call:
 
41236
+#   dirname:  Compute the dirname of FILE.  If nonempty,
 
41237
+#             add APPEND to the result, otherwise set result
 
41238
+#             to NONDIR_REPLACEMENT.
 
41239
+#             value returned in "$func_dirname_result"
 
41240
+#   basename: Compute filename of FILE.
 
41241
+#             value retuned in "$func_basename_result"
 
41242
+# Implementation must be kept synchronized with func_dirname
 
41243
+# and func_basename. For efficiency, we do not delegate to
 
41244
+# those functions but instead duplicate the functionality here.
 
41245
+func_dirname_and_basename ()
 
41246
+{
 
41247
+  case ${1} in
 
41248
+    */*) func_dirname_result="${1%/*}${2}" ;;
 
41249
+    *  ) func_dirname_result="${3}" ;;
 
41250
+  esac
 
41251
+  func_basename_result="${1##*/}"
 
41252
+}
32405
41253
 
32406
41254
-    freebsd1*)
32407
41255
-      ld_shlibs_GCJ=no
32408
41256
-      ;;
 
41257
+# func_stripname prefix suffix name
 
41258
+# strip PREFIX and SUFFIX off of NAME.
 
41259
+# PREFIX and SUFFIX must not contain globbing or regex special
 
41260
+# characters, hashes, percent signs, but SUFFIX may contain a leading
 
41261
+# dot (in which case that matches only a dot).
 
41262
+func_stripname ()
 
41263
+{
 
41264
+  # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
 
41265
+  # positional parameters, so assign one to ordinary parameter first.
 
41266
+  func_stripname_result=${3}
 
41267
+  func_stripname_result=${func_stripname_result#"${1}"}
 
41268
+  func_stripname_result=${func_stripname_result%"${2}"}
 
41269
+}
32409
41270
 
32410
41271
-    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
32411
41272
-    # support.  Future versions do this automatically, but an explicit c++rt0.o
32417
41278
-      hardcode_direct_GCJ=yes
32418
41279
-      hardcode_shlibpath_var_GCJ=no
32419
41280
-      ;;
 
41281
+# func_opt_split
 
41282
+func_opt_split ()
 
41283
+{
 
41284
+  func_opt_split_opt=${1%%=*}
 
41285
+  func_opt_split_arg=${1#*=}
 
41286
+}
32420
41287
 
32421
41288
-    # Unfortunately, older versions of FreeBSD 2 do not have this feature.
32422
41289
-    freebsd2*)
32425
41292
-      hardcode_minus_L_GCJ=yes
32426
41293
-      hardcode_shlibpath_var_GCJ=no
32427
41294
-      ;;
 
41295
+# func_lo2o object
 
41296
+func_lo2o ()
 
41297
+{
 
41298
+  case ${1} in
 
41299
+    *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
 
41300
+    *)    func_lo2o_result=${1} ;;
 
41301
+  esac
 
41302
+}
32428
41303
 
32429
41304
-    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
32430
41305
-    freebsd* | dragonfly*)
32433
41308
-      hardcode_direct_GCJ=yes
32434
41309
-      hardcode_shlibpath_var_GCJ=no
32435
41310
-      ;;
 
41311
+# func_xform libobj-or-source
 
41312
+func_xform ()
 
41313
+{
 
41314
+  func_xform_result=${1%.*}.lo
 
41315
+}
32436
41316
 
32437
41317
-    hpux9*)
32438
41318
-      if test "$GCC" = yes; then
32443
41323
-      hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir'
32444
41324
-      hardcode_libdir_separator_GCJ=:
32445
41325
-      hardcode_direct_GCJ=yes
 
41326
+# func_arith arithmetic-term...
 
41327
+func_arith ()
 
41328
+{
 
41329
+  func_arith_result=$(( $* ))
 
41330
+}
32446
41331
 
32447
41332
-      # hardcode_minus_L: Not really in the search PATH,
32448
41333
-      # but as the default location of the library.
32449
41334
-      hardcode_minus_L_GCJ=yes
32450
41335
-      export_dynamic_flag_spec_GCJ='${wl}-E'
32451
41336
-      ;;
 
41337
+# func_len string
 
41338
+# STRING may not start with a hyphen.
 
41339
+func_len ()
 
41340
+{
 
41341
+  func_len_result=${#1}
 
41342
+}
32452
41343
 
32453
41344
-    hpux10*)
32454
41345
-      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
32459
41350
-      if test "$with_gnu_ld" = no; then
32460
41351
-       hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir'
32461
41352
-       hardcode_libdir_separator_GCJ=:
 
41353
+_LT_EOF
 
41354
+    ;;
 
41355
+  *) # Bourne compatible functions.
 
41356
+    cat << \_LT_EOF >> "$cfgfile"
 
41357
+
 
41358
+# func_dirname file append nondir_replacement
 
41359
+# Compute the dirname of FILE.  If nonempty, add APPEND to the result,
 
41360
+# otherwise set result to NONDIR_REPLACEMENT.
 
41361
+func_dirname ()
 
41362
+{
 
41363
+  # Extract subdirectory from the argument.
 
41364
+  func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"`
 
41365
+  if test "X$func_dirname_result" = "X${1}"; then
 
41366
+    func_dirname_result="${3}"
 
41367
+  else
 
41368
+    func_dirname_result="$func_dirname_result${2}"
 
41369
+  fi
 
41370
+}
32462
41371
 
32463
41372
-       hardcode_direct_GCJ=yes
32464
41373
-       export_dynamic_flag_spec_GCJ='${wl}-E'
 
41374
+# func_basename file
 
41375
+func_basename ()
 
41376
+{
 
41377
+  func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"`
 
41378
+}
32465
41379
 
32466
41380
-       # hardcode_minus_L: Not really in the search PATH,
32467
41381
-       # but as the default location of the library.
32498
41412
-      if test "$with_gnu_ld" = no; then
32499
41413
-       hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir'
32500
41414
-       hardcode_libdir_separator_GCJ=:
 
41415
+# func_stripname prefix suffix name
 
41416
+# strip PREFIX and SUFFIX off of NAME.
 
41417
+# PREFIX and SUFFIX must not contain globbing or regex special
 
41418
+# characters, hashes, percent signs, but SUFFIX may contain a leading
 
41419
+# dot (in which case that matches only a dot).
 
41420
+# func_strip_suffix prefix name
 
41421
+func_stripname ()
 
41422
+{
 
41423
+  case ${2} in
 
41424
+    .*) func_stripname_result=`$ECHO "X${3}" \
 
41425
+           | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;;
 
41426
+    *)  func_stripname_result=`$ECHO "X${3}" \
 
41427
+           | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;;
 
41428
+  esac
 
41429
+}
32501
41430
 
32502
41431
-       case $host_cpu in
32503
41432
-       hppa*64*|ia64*)
32508
41437
-       *)
32509
41438
-         hardcode_direct_GCJ=yes
32510
41439
-         export_dynamic_flag_spec_GCJ='${wl}-E'
 
41440
+# sed scripts:
 
41441
+my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q'
 
41442
+my_sed_long_arg='1s/^-[^=]*=//'
32511
41443
 
32512
41444
-         # hardcode_minus_L: Not really in the search PATH,
32513
41445
-         # but as the default location of the library.
32516
41448
-       esac
32517
41449
-      fi
32518
41450
-      ;;
 
41451
+# func_opt_split
 
41452
+func_opt_split ()
 
41453
+{
 
41454
+  func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"`
 
41455
+  func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"`
 
41456
+}
32519
41457
 
32520
41458
-    irix5* | irix6* | nonstopux*)
32521
41459
-      if test "$GCC" = yes; then
32528
41466
-      hardcode_libdir_separator_GCJ=:
32529
41467
-      link_all_deplibs_GCJ=yes
32530
41468
-      ;;
 
41469
+# func_lo2o object
 
41470
+func_lo2o ()
 
41471
+{
 
41472
+  func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"`
 
41473
+}
32531
41474
 
32532
41475
-    netbsd*)
32533
41476
-      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
32539
41482
-      hardcode_direct_GCJ=yes
32540
41483
-      hardcode_shlibpath_var_GCJ=no
32541
41484
-      ;;
 
41485
+# func_xform libobj-or-source
 
41486
+func_xform ()
 
41487
+{
 
41488
+  func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[^.]*$/.lo/'`
 
41489
+}
 
41490
+
 
41491
+# func_arith arithmetic-term...
 
41492
+func_arith ()
 
41493
+{
 
41494
+  func_arith_result=`expr "$@"`
 
41495
+}
 
41496
+
 
41497
+# func_len string
 
41498
+# STRING may not start with a hyphen.
 
41499
+func_len ()
 
41500
+{
 
41501
+  func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len`
 
41502
+}
 
41503
+
 
41504
+_LT_EOF
 
41505
+esac
32542
41506
 
32543
41507
-    newsos6)
32544
41508
-      archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
32547
41511
-      hardcode_libdir_separator_GCJ=:
32548
41512
-      hardcode_shlibpath_var_GCJ=no
32549
41513
-      ;;
 
41514
+case $lt_shell_append in
 
41515
+  yes)
 
41516
+    cat << \_LT_EOF >> "$cfgfile"
 
41517
+
 
41518
+# func_append var value
 
41519
+# Append VALUE to the end of shell variable VAR.
 
41520
+func_append ()
 
41521
+{
 
41522
+  eval "$1+=\$2"
 
41523
+}
 
41524
+_LT_EOF
 
41525
+    ;;
 
41526
+  *)
 
41527
+    cat << \_LT_EOF >> "$cfgfile"
32550
41528
 
32551
41529
-    openbsd*)
32552
41530
-      if test -f /usr/libexec/ld.so; then
32573
41551
-       ld_shlibs_GCJ=no
32574
41552
-      fi
32575
41553
-      ;;
 
41554
+# func_append var value
 
41555
+# Append VALUE to the end of shell variable VAR.
 
41556
+func_append ()
 
41557
+{
 
41558
+  eval "$1=\$$1\$2"
 
41559
+}
32576
41560
 
32577
41561
-    os2*)
32578
41562
-      hardcode_libdir_flag_spec_GCJ='-L$libdir'
32581
41565
-      archive_cmds_GCJ='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def'
32582
41566
-      old_archive_From_new_cmds_GCJ='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
32583
41567
-      ;;
 
41568
+_LT_EOF
 
41569
+    ;;
 
41570
+  esac
32584
41571
 
32585
41572
-    osf3*)
32586
41573
-      if test "$GCC" = yes; then
32604
41591
-       archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
32605
41592
-       archive_expsym_cmds_GCJ='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
32606
41593
-       $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp'
 
41594
+  sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \
 
41595
+    || (rm -f "$cfgfile"; exit 1)
32607
41596
 
32608
41597
-       # Both c and cxx compiler support -rpath directly
32609
41598
-       hardcode_libdir_flag_spec_GCJ='-rpath $libdir'
32610
41599
-      fi
32611
41600
-      hardcode_libdir_separator_GCJ=:
32612
41601
-      ;;
 
41602
+  mv -f "$cfgfile" "$ofile" ||
 
41603
+    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
 
41604
+  chmod +x "$ofile"
32613
41605
 
32614
41606
-    solaris*)
32615
41607
-      no_undefined_flag_GCJ=' -z text'
32656
41648
-      hardcode_minus_L_GCJ=yes
32657
41649
-      hardcode_shlibpath_var_GCJ=no
32658
41650
-      ;;
 
41651
+    cat <<_LT_EOF >> "$ofile"
32659
41652
 
32660
41653
-    sysv4)
32661
41654
-      case $host_vendor in
32678
41671
-      runpath_var='LD_RUN_PATH'
32679
41672
-      hardcode_shlibpath_var_GCJ=no
32680
41673
-      ;;
 
41674
+# ### BEGIN LIBTOOL TAG CONFIG: CXX
32681
41675
 
32682
41676
-    sysv4.3*)
32683
41677
-      archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
32684
41678
-      hardcode_shlibpath_var_GCJ=no
32685
41679
-      export_dynamic_flag_spec_GCJ='-Bexport'
32686
41680
-      ;;
 
41681
+# The linker used to build libraries.
 
41682
+LD=$lt_LD_CXX
32687
41683
 
32688
41684
-    sysv4*MP*)
32689
41685
-      if test -d /usr/nec; then
32694
41690
-       ld_shlibs_GCJ=yes
32695
41691
-      fi
32696
41692
-      ;;
 
41693
+# Commands used to build an old-style archive.
 
41694
+old_archive_cmds=$lt_old_archive_cmds_CXX
32697
41695
 
32698
41696
-    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)
32699
41697
-      no_undefined_flag_GCJ='${wl}-z,text'
32700
41698
-      archive_cmds_need_lc_GCJ=no
32701
41699
-      hardcode_shlibpath_var_GCJ=no
32702
41700
-      runpath_var='LD_RUN_PATH'
 
41701
+# A language specific compiler.
 
41702
+CC=$lt_compiler_CXX
32703
41703
 
32704
41704
-      if test "$GCC" = yes; then
32705
41705
-       archive_cmds_GCJ='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
32709
41709
-       archive_expsym_cmds_GCJ='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
32710
41710
-      fi
32711
41711
-      ;;
32712
 
-
 
41712
+# Is the compiler the GNU compiler?
 
41713
+with_gcc=$GCC_CXX
 
41714
 
32713
41715
-    sysv5* | sco3.2v5* | sco5v6*)
32714
41716
-      # Note: We can NOT use -z defs as we might desire, because we do not
32715
41717
-      # link with -lc, and that would cause any symbols used from libc to
32726
41728
-      link_all_deplibs_GCJ=yes
32727
41729
-      export_dynamic_flag_spec_GCJ='${wl}-Bexport'
32728
41730
-      runpath_var='LD_RUN_PATH'
32729
 
-
 
41731
+# Compiler flag to turn off builtin functions.
 
41732
+no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX
 
41733
 
32730
41734
-      if test "$GCC" = yes; then
32731
41735
-       archive_cmds_GCJ='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
32732
41736
-       archive_expsym_cmds_GCJ='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
32735
41739
-       archive_expsym_cmds_GCJ='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
32736
41740
-      fi
32737
41741
-      ;;
32738
 
-
 
41742
+# How to pass a linker flag through the compiler.
 
41743
+wl=$lt_lt_prog_compiler_wl_CXX
 
41744
 
32739
41745
-    uts4*)
32740
41746
-      archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
32741
41747
-      hardcode_libdir_flag_spec_GCJ='-L$libdir'
32742
41748
-      hardcode_shlibpath_var_GCJ=no
32743
41749
-      ;;
32744
 
-
 
41750
+# Additional compiler flags for building library objects.
 
41751
+pic_flag=$lt_lt_prog_compiler_pic_CXX
 
41752
 
32745
41753
-    *)
32746
41754
-      ld_shlibs_GCJ=no
32747
41755
-      ;;
32748
41756
-    esac
32749
41757
-  fi
32750
 
-
32751
 
-{ echo "$as_me:$LINENO: result: $ld_shlibs_GCJ" >&5
32752
 
-echo "${ECHO_T}$ld_shlibs_GCJ" >&6; }
 
41758
+# Compiler flag to prevent dynamic linking.
 
41759
+link_static_flag=$lt_lt_prog_compiler_static_CXX
 
41760
 
 
41761
-{ $as_echo "$as_me:$LINENO: result: $ld_shlibs_GCJ" >&5
 
41762
-$as_echo "$ld_shlibs_GCJ" >&6; }
32753
41763
-test "$ld_shlibs_GCJ" = no && can_build_shared=no
32754
 
-
 
41764
+# Does compiler simultaneously support -c and -o options?
 
41765
+compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX
 
41766
 
32755
41767
-#
32756
41768
-# Do we need to explicitly link libc?
32757
41769
-#
32759
41771
-x|xyes)
32760
41772
-  # Assume -lc should be added
32761
41773
-  archive_cmds_need_lc_GCJ=yes
 
41774
+# Whether or not to add -lc for building shared libraries.
 
41775
+build_libtool_need_lc=$archive_cmds_need_lc_CXX
32762
41776
 
32763
41777
-  if test "$enable_shared" = yes && test "$GCC" = yes; then
32764
41778
-    case $archive_cmds_GCJ in
32769
41783
-      # Test whether the compiler implicitly links with -lc since on some
32770
41784
-      # systems, -lgcc has to come before -lc. If gcc already passes -lc
32771
41785
-      # to ld, don't add -lc before -lgcc.
32772
 
-      { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
32773
 
-echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; }
 
41786
-      { $as_echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
 
41787
-$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
32774
41788
-      $rm conftest*
32775
41789
-      echo "$lt_simple_compile_test_code" > conftest.$ac_ext
32776
 
-
 
41790
+# Whether or not to disallow shared libs when runtime libs are static.
 
41791
+allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX
 
41792
 
32777
41793
-      if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
32778
41794
-  (eval $ac_compile) 2>&5
32779
41795
-  ac_status=$?
32780
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
41796
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
32781
41797
-  (exit $ac_status); } 2>conftest.err; then
32782
41798
-        soname=conftest
32783
41799
-        lib=conftest
32795
41811
-        if { (eval echo "$as_me:$LINENO: \"$archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5
32796
41812
-  (eval $archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5
32797
41813
-  ac_status=$?
32798
 
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
41814
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
32799
41815
-  (exit $ac_status); }
32800
41816
-        then
32801
41817
-         archive_cmds_need_lc_GCJ=no
32807
41823
-        cat conftest.err 1>&5
32808
41824
-      fi
32809
41825
-      $rm conftest*
32810
 
-      { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_GCJ" >&5
32811
 
-echo "${ECHO_T}$archive_cmds_need_lc_GCJ" >&6; }
 
41826
-      { $as_echo "$as_me:$LINENO: result: $archive_cmds_need_lc_GCJ" >&5
 
41827
-$as_echo "$archive_cmds_need_lc_GCJ" >&6; }
32812
41828
-      ;;
32813
41829
-    esac
32814
41830
-  fi
32815
41831
-  ;;
32816
41832
-esac
32817
 
 
32818
 
-{ echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
32819
 
+    { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
32820
 
 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; }
32821
 
+
32822
 
 library_names_spec=
32823
 
 libname_spec='lib$name'
32824
 
 soname_spec=
32825
 
@@ -20533,7 +16949,6 @@
32826
 
 version_type=none
32827
 
 dynamic_linker="$host_os ld.so"
32828
 
 sys_lib_dlsearch_path_spec="/lib /usr/lib"
32829
 
-
32830
 
 need_lib_prefix=unknown
32831
 
 hardcode_into_libs=no
32832
 
 
32833
 
@@ -20551,7 +16966,7 @@
32834
 
   soname_spec='${libname}${release}${shared_ext}$major'
32835
 
   ;;
32836
 
 
32837
 
-aix4* | aix5*)
32838
 
+aix[4-9]*)
32839
 
   version_type=linux
32840
 
   need_lib_prefix=no
32841
 
   need_version=no
32842
 
@@ -20570,7 +16985,7 @@
32843
 
       aix4 | aix4.[01] | aix4.[01].*)
32844
 
       if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
32845
 
           echo ' yes '
 
41833
+# Compiler flag to allow reflexive dlopens.
 
41834
+export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX
 
41835
 
 
41836
-{ $as_echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
 
41837
-$as_echo_n "checking dynamic linker characteristics... " >&6; }
 
41838
-library_names_spec=
 
41839
-libname_spec='lib$name'
 
41840
-soname_spec=
 
41841
-shrext_cmds=".so"
 
41842
-postinstall_cmds=
 
41843
-postuninstall_cmds=
 
41844
-finish_cmds=
 
41845
-finish_eval=
 
41846
-shlibpath_var=
 
41847
-shlibpath_overrides_runpath=unknown
 
41848
-version_type=none
 
41849
-dynamic_linker="$host_os ld.so"
 
41850
-sys_lib_dlsearch_path_spec="/lib /usr/lib"
 
41851
+# Compiler flag to generate shared objects directly from archives.
 
41852
+whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX
 
41853
 
 
41854
-need_lib_prefix=unknown
 
41855
-hardcode_into_libs=no
 
41856
+# Whether the compiler copes with passing no objects directly.
 
41857
+compiler_needs_object=$lt_compiler_needs_object_CXX
 
41858
 
 
41859
-# when you set need_version to no, make sure it does not cause -set_version
 
41860
-# flags to be left without arguments
 
41861
-need_version=unknown
 
41862
+# Create an old-style archive from a shared archive.
 
41863
+old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX
 
41864
 
 
41865
-case $host_os in
 
41866
-aix3*)
 
41867
-  version_type=linux
 
41868
-  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
 
41869
-  shlibpath_var=LIBPATH
 
41870
+# Create a temporary old-style archive to link instead of a shared archive.
 
41871
+old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX
 
41872
 
 
41873
-  # AIX 3 has no versioning support, so we append a major version to the name.
 
41874
-  soname_spec='${libname}${release}${shared_ext}$major'
 
41875
-  ;;
 
41876
+# Commands used to build a shared archive.
 
41877
+archive_cmds=$lt_archive_cmds_CXX
 
41878
+archive_expsym_cmds=$lt_archive_expsym_cmds_CXX
 
41879
 
 
41880
-aix[4-9]*)
 
41881
-  version_type=linux
 
41882
-  need_lib_prefix=no
 
41883
-  need_version=no
 
41884
-  hardcode_into_libs=yes
 
41885
-  if test "$host_cpu" = ia64; then
 
41886
-    # AIX 5 supports IA64
 
41887
-    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
 
41888
-    shlibpath_var=LD_LIBRARY_PATH
 
41889
-  else
 
41890
-    # With GCC up to 2.95.x, collect2 would create an import file
 
41891
-    # for dependence libraries.  The import file would start with
 
41892
-    # the line `#! .'.  This would cause the generated library to
 
41893
-    # depend on `.', always an invalid library.  This was fixed in
 
41894
-    # development snapshots of GCC prior to 3.0.
 
41895
-    case $host_os in
 
41896
-      aix4 | aix4.[01] | aix4.[01].*)
 
41897
-      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
 
41898
-          echo ' yes '
32846
41899
-          echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then
32847
 
+          echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
32848
 
        :
32849
 
       else
32850
 
        can_build_shared=no
32851
 
@@ -20596,9 +17011,18 @@
32852
 
   ;;
 
41900
-       :
 
41901
-      else
 
41902
-       can_build_shared=no
 
41903
-      fi
 
41904
-      ;;
 
41905
-    esac
 
41906
-    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
 
41907
-    # soname into executable. Probably we can add versioning support to
 
41908
-    # collect2, so additional links can be useful in future.
 
41909
-    if test "$aix_use_runtimelinking" = yes; then
 
41910
-      # If using run time linking (on AIX 4.2 or later) use lib<name>.so
 
41911
-      # instead of lib<name>.a to let people know that these are not
 
41912
-      # typical AIX shared libraries.
 
41913
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
41914
-    else
 
41915
-      # We preserve .a as extension for shared libraries through AIX4.2
 
41916
-      # and later when we are not doing run time linking.
 
41917
-      library_names_spec='${libname}${release}.a $libname.a'
 
41918
-      soname_spec='${libname}${release}${shared_ext}$major'
 
41919
-    fi
 
41920
-    shlibpath_var=LIBPATH
 
41921
-  fi
 
41922
-  ;;
 
41923
+# Commands used to build a loadable module if different from building
 
41924
+# a shared archive.
 
41925
+module_cmds=$lt_module_cmds_CXX
 
41926
+module_expsym_cmds=$lt_module_expsym_cmds_CXX
32853
41927
 
32854
 
 amigaos*)
32855
 
+  case $host_cpu in
32856
 
+  powerpc)
32857
 
+    # Since July 2007 AmigaOS4 officially supports .so libraries.
32858
 
+    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
32859
 
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
32860
 
+    ;;
32861
 
+  m68k)
32862
 
   library_names_spec='$libname.ixlibrary $libname.a'
32863
 
   # Create ${libname}_ixlibrary.a entries in /sys/libs.
 
41928
-amigaos*)
 
41929
-  library_names_spec='$libname.ixlibrary $libname.a'
 
41930
-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
32864
41931
-  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
32865
 
+    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
32866
 
+    ;;
32867
 
+  esac
32868
 
   ;;
32869
 
 
32870
 
 beos*)
32871
 
@@ -20632,14 +17056,17 @@
32872
 
     library_names_spec='$libname.dll.a'
32873
 
     # DLL is installed to $(libdir)/../bin by postinstall_cmds
32874
 
     postinstall_cmds='base_file=`basename \${file}`~
 
41932
-  ;;
 
41933
+# Whether we are building with GNU ld or not.
 
41934
+with_gnu_ld=$lt_with_gnu_ld_CXX
 
41935
 
 
41936
-beos*)
 
41937
-  library_names_spec='${libname}${shared_ext}'
 
41938
-  dynamic_linker="$host_os ld.so"
 
41939
-  shlibpath_var=LIBRARY_PATH
 
41940
-  ;;
 
41941
+# Flag that allows shared libraries with undefined symbols to be built.
 
41942
+allow_undefined_flag=$lt_allow_undefined_flag_CXX
 
41943
 
 
41944
-bsdi[45]*)
 
41945
-  version_type=linux
 
41946
-  need_version=no
 
41947
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
41948
-  soname_spec='${libname}${release}${shared_ext}$major'
 
41949
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
 
41950
-  shlibpath_var=LD_LIBRARY_PATH
 
41951
-  sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
 
41952
-  sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
 
41953
-  # the default ld.so.conf also contains /usr/contrib/lib and
 
41954
-  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
 
41955
-  # libtool to hard-code these into programs
 
41956
-  ;;
 
41957
+# Flag that enforces no undefined symbols.
 
41958
+no_undefined_flag=$lt_no_undefined_flag_CXX
 
41959
 
 
41960
-cygwin* | mingw* | pw32*)
 
41961
-  version_type=windows
 
41962
-  shrext_cmds=".dll"
 
41963
-  need_version=no
 
41964
-  need_lib_prefix=no
 
41965
+# Flag to hardcode \$libdir into a binary during linking.
 
41966
+# This must work even if \$libdir does not exist
 
41967
+hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX
 
41968
 
 
41969
-  case $GCC,$host_os in
 
41970
-  yes,cygwin* | yes,mingw* | yes,pw32*)
 
41971
-    library_names_spec='$libname.dll.a'
 
41972
-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
 
41973
-    postinstall_cmds='base_file=`basename \${file}`~
32875
41974
-      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
32876
 
+      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
32877
 
       dldir=$destdir/`dirname \$dlpath`~
32878
 
       test -d \$dldir || mkdir -p \$dldir~
32879
 
       $install_prog $dir/$dlname \$dldir/$dlname~
 
41975
-      dldir=$destdir/`dirname \$dlpath`~
 
41976
-      test -d \$dldir || mkdir -p \$dldir~
 
41977
-      $install_prog $dir/$dlname \$dldir/$dlname~
32880
41978
-      chmod a+x \$dldir/$dlname'
32881
 
+      chmod a+x \$dldir/$dlname~
32882
 
+      if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
32883
 
+        eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
32884
 
+      fi'
32885
 
     postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
32886
 
       dlpath=$dir/\$dldll~
 
41979
-    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
 
41980
-      dlpath=$dir/\$dldll~
32887
41981
-       $rm \$dlpath'
32888
 
+       $RM \$dlpath'
32889
 
     shlibpath_overrides_runpath=yes
 
41982
-    shlibpath_overrides_runpath=yes
 
41983
+# If ld is used when linking, flag to hardcode \$libdir into a binary
 
41984
+# during linking.  This must work even if \$libdir does not exist.
 
41985
+hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX
32890
41986
 
32891
 
     case $host_os in
32892
 
@@ -20651,17 +17078,17 @@
32893
 
     mingw*)
32894
 
       # MinGW DLLs use traditional 'lib' prefix
32895
 
       soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
 
41987
-    case $host_os in
 
41988
-    cygwin*)
 
41989
-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
 
41990
-      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
 
41991
-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
 
41992
-      ;;
 
41993
-    mingw*)
 
41994
-      # MinGW DLLs use traditional 'lib' prefix
 
41995
-      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
32896
41996
-      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
32897
41997
-      if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then
32898
 
+      sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
32899
 
+      if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then
32900
 
         # It is most probably a Windows format PATH printed by
32901
 
         # mingw gcc, but we are running on Cygwin. Gcc prints its search
32902
 
         # path with ; separators, and with drive letters. We can handle the
32903
 
         # drive letters (cygwin fileutils understands them), so leave them,
32904
 
         # especially as we might pass files found there to a mingw objdump,
32905
 
         # which wouldn't understand a cygwinified path. Ahh.
 
41998
-        # It is most probably a Windows format PATH printed by
 
41999
-        # mingw gcc, but we are running on Cygwin. Gcc prints its search
 
42000
-        # path with ; separators, and with drive letters. We can handle the
 
42001
-        # drive letters (cygwin fileutils understands them), so leave them,
 
42002
-        # especially as we might pass files found there to a mingw objdump,
 
42003
-        # which wouldn't understand a cygwinified path. Ahh.
32906
42004
-        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
32907
 
+        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
32908
 
       else
 
42005
-      else
32909
42006
-        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
32910
 
+        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
32911
 
       fi
32912
 
       ;;
32913
 
     pw32*)
32914
 
@@ -20685,7 +17112,7 @@
32915
 
   version_type=darwin
32916
 
   need_lib_prefix=no
32917
 
   need_version=no
 
42007
-      fi
 
42008
-      ;;
 
42009
-    pw32*)
 
42010
-      # pw32 DLLs use 'pw' prefix rather than 'lib'
 
42011
-      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
 
42012
-      ;;
 
42013
-    esac
 
42014
-    ;;
 
42015
+# Whether we need a single "-rpath" flag with a separated argument.
 
42016
+hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX
 
42017
 
 
42018
-  *)
 
42019
-    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
 
42020
-    ;;
 
42021
-  esac
 
42022
-  dynamic_linker='Win32 ld.exe'
 
42023
-  # FIXME: first we should search . and the directory the executable is in
 
42024
-  shlibpath_var=PATH
 
42025
-  ;;
 
42026
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
 
42027
+# DIR into the resulting binary.
 
42028
+hardcode_direct=$hardcode_direct_CXX
 
42029
 
 
42030
-darwin* | rhapsody*)
 
42031
-  dynamic_linker="$host_os dyld"
 
42032
-  version_type=darwin
 
42033
-  need_lib_prefix=no
 
42034
-  need_version=no
32918
42035
-  library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext'
32919
 
+  library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
32920
 
   soname_spec='${libname}${release}${major}$shared_ext'
32921
 
   shlibpath_overrides_runpath=yes
32922
 
   shlibpath_var=DYLD_LIBRARY_PATH
32923
 
@@ -20871,17 +17298,69 @@
32924
 
   finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
32925
 
   shlibpath_var=LD_LIBRARY_PATH
32926
 
   shlibpath_overrides_runpath=no
32927
 
+  # Some binutils ld are patched to set DT_RUNPATH
32928
 
+  save_LDFLAGS=$LDFLAGS
32929
 
+  save_libdir=$libdir
32930
 
+  eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \
32931
 
+       LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\""
32932
 
+  cat >conftest.$ac_ext <<_ACEOF
32933
 
+/* confdefs.h.  */
32934
 
+_ACEOF
32935
 
+cat confdefs.h >>conftest.$ac_ext
32936
 
+cat >>conftest.$ac_ext <<_ACEOF
32937
 
+/* end confdefs.h.  */
32938
 
+
32939
 
+int
32940
 
+main ()
32941
 
+{
32942
 
+
32943
 
+  ;
32944
 
+  return 0;
32945
 
+}
32946
 
+_ACEOF
32947
 
+rm -f conftest.$ac_objext conftest$ac_exeext
32948
 
+if { (ac_try="$ac_link"
32949
 
+case "(($ac_try" in
32950
 
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
32951
 
+  *) ac_try_echo=$ac_try;;
32952
 
+esac
32953
 
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
32954
 
+  (eval "$ac_link") 2>conftest.er1
32955
 
+  ac_status=$?
32956
 
+  grep -v '^ *+' conftest.er1 >conftest.err
32957
 
+  rm -f conftest.er1
32958
 
+  cat conftest.err >&5
32959
 
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
32960
 
+  (exit $ac_status); } && {
32961
 
+        test -z "$ac_cxx_werror_flag" ||
32962
 
+        test ! -s conftest.err
32963
 
+       } && test -s conftest$ac_exeext &&
32964
 
+       $as_test_x conftest$ac_exeext; then
32965
 
+  if  ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then
32966
 
+  shlibpath_overrides_runpath=yes
32967
 
+fi
32968
 
+
32969
 
+else
32970
 
+  echo "$as_me: failed program was:" >&5
32971
 
+sed 's/^/| /' conftest.$ac_ext >&5
32972
 
+
32973
 
+
32974
 
+fi
32975
 
+
32976
 
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
32977
 
+      conftest$ac_exeext conftest.$ac_ext
32978
 
+  LDFLAGS=$save_LDFLAGS
32979
 
+  libdir=$save_libdir
32980
 
+
32981
 
   # This implies no fast_install, which is unacceptable.
32982
 
   # Some rework will be needed to allow for fast_install
32983
 
   # before this can be enabled.
32984
 
   hardcode_into_libs=yes
32985
 
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
32986
 
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
32987
 
 
32988
 
   # Append ld.so.conf contents to the search path
32989
 
   if test -f /etc/ld.so.conf; then
32990
 
     lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[     ]*hwcap[        ]/d;s/[:,       ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
 
42036
-  soname_spec='${libname}${release}${major}$shared_ext'
 
42037
-  shlibpath_overrides_runpath=yes
 
42038
-  shlibpath_var=DYLD_LIBRARY_PATH
 
42039
-  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
 
42040
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
 
42041
+# DIR into the resulting binary and the resulting library dependency is
 
42042
+# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
 
42043
+# library is relocated.
 
42044
+hardcode_direct_absolute=$hardcode_direct_absolute_CXX
 
42045
 
 
42046
-  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
 
42047
-  ;;
 
42048
+# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
 
42049
+# into the resulting binary.
 
42050
+hardcode_minus_L=$hardcode_minus_L_CXX
 
42051
 
 
42052
-dgux*)
 
42053
-  version_type=linux
 
42054
-  need_lib_prefix=no
 
42055
-  need_version=no
 
42056
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
 
42057
-  soname_spec='${libname}${release}${shared_ext}$major'
 
42058
-  shlibpath_var=LD_LIBRARY_PATH
 
42059
-  ;;
 
42060
+# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
 
42061
+# into the resulting binary.
 
42062
+hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX
 
42063
 
 
42064
-freebsd1*)
 
42065
-  dynamic_linker=no
 
42066
-  ;;
 
42067
+# Set to "yes" if building a shared library automatically hardcodes DIR
 
42068
+# into the library and all subsequent libraries and executables linked
 
42069
+# against it.
 
42070
+hardcode_automatic=$hardcode_automatic_CXX
 
42071
 
 
42072
-freebsd* | dragonfly*)
 
42073
-  # DragonFly does not have aout.  When/if they implement a new
 
42074
-  # versioning mechanism, adjust this.
 
42075
-  if test -x /usr/bin/objformat; then
 
42076
-    objformat=`/usr/bin/objformat`
 
42077
-  else
 
42078
-    case $host_os in
 
42079
-    freebsd[123]*) objformat=aout ;;
 
42080
-    *) objformat=elf ;;
 
42081
-    esac
 
42082
-  fi
 
42083
-  version_type=freebsd-$objformat
 
42084
-  case $version_type in
 
42085
-    freebsd-elf*)
 
42086
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
 
42087
-      need_version=no
 
42088
-      need_lib_prefix=no
 
42089
-      ;;
 
42090
-    freebsd-*)
 
42091
-      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
 
42092
-      need_version=yes
 
42093
-      ;;
 
42094
-  esac
 
42095
-  shlibpath_var=LD_LIBRARY_PATH
 
42096
-  case $host_os in
 
42097
-  freebsd2*)
 
42098
-    shlibpath_overrides_runpath=yes
 
42099
-    ;;
 
42100
-  freebsd3.[01]* | freebsdelf3.[01]*)
 
42101
-    shlibpath_overrides_runpath=yes
 
42102
-    hardcode_into_libs=yes
 
42103
-    ;;
 
42104
-  freebsd3.[2-9]* | freebsdelf3.[2-9]* | \
 
42105
-  freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1)
 
42106
-    shlibpath_overrides_runpath=no
 
42107
-    hardcode_into_libs=yes
 
42108
-    ;;
 
42109
-  *) # from 4.6 on, and DragonFly
 
42110
-    shlibpath_overrides_runpath=yes
 
42111
-    hardcode_into_libs=yes
 
42112
-    ;;
 
42113
-  esac
 
42114
-  ;;
 
42115
+# Set to yes if linker adds runtime paths of dependent libraries
 
42116
+# to runtime path list.
 
42117
+inherit_rpath=$inherit_rpath_CXX
 
42118
 
 
42119
-gnu*)
 
42120
-  version_type=linux
 
42121
-  need_lib_prefix=no
 
42122
-  need_version=no
 
42123
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
 
42124
-  soname_spec='${libname}${release}${shared_ext}$major'
 
42125
-  shlibpath_var=LD_LIBRARY_PATH
 
42126
-  hardcode_into_libs=yes
 
42127
-  ;;
 
42128
+# Whether libtool must link a program against all its dependency libraries.
 
42129
+link_all_deplibs=$link_all_deplibs_CXX
 
42130
 
 
42131
-hpux9* | hpux10* | hpux11*)
 
42132
-  # Give a soname corresponding to the major version so that dld.sl refuses to
 
42133
-  # link against other versions.
 
42134
-  version_type=sunos
 
42135
-  need_lib_prefix=no
 
42136
-  need_version=no
 
42137
-  case $host_cpu in
 
42138
-  ia64*)
 
42139
-    shrext_cmds='.so'
 
42140
-    hardcode_into_libs=yes
 
42141
-    dynamic_linker="$host_os dld.so"
 
42142
-    shlibpath_var=LD_LIBRARY_PATH
 
42143
-    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
 
42144
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
42145
-    soname_spec='${libname}${release}${shared_ext}$major'
 
42146
-    if test "X$HPUX_IA64_MODE" = X32; then
 
42147
-      sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
 
42148
-    else
 
42149
-      sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
 
42150
-    fi
 
42151
-    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
 
42152
-    ;;
 
42153
-   hppa*64*)
 
42154
-     shrext_cmds='.sl'
 
42155
-     hardcode_into_libs=yes
 
42156
-     dynamic_linker="$host_os dld.sl"
 
42157
-     shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
 
42158
-     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
 
42159
-     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
42160
-     soname_spec='${libname}${release}${shared_ext}$major'
 
42161
-     sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
 
42162
-     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
 
42163
-     ;;
 
42164
-   *)
 
42165
-    shrext_cmds='.sl'
 
42166
-    dynamic_linker="$host_os dld.sl"
 
42167
-    shlibpath_var=SHLIB_PATH
 
42168
-    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
 
42169
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
42170
-    soname_spec='${libname}${release}${shared_ext}$major'
 
42171
-    ;;
 
42172
-  esac
 
42173
-  # HP-UX runs *really* slowly unless shared libraries are mode 555.
 
42174
-  postinstall_cmds='chmod 555 $lib'
 
42175
-  ;;
 
42176
+# Fix the shell variable \$srcfile for the compiler.
 
42177
+fix_srcfile_path=$lt_fix_srcfile_path_CXX
 
42178
 
 
42179
-interix[3-9]*)
 
42180
-  version_type=linux
 
42181
-  need_lib_prefix=no
 
42182
-  need_version=no
 
42183
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
42184
-  soname_spec='${libname}${release}${shared_ext}$major'
 
42185
-  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
 
42186
-  shlibpath_var=LD_LIBRARY_PATH
 
42187
-  shlibpath_overrides_runpath=no
 
42188
-  hardcode_into_libs=yes
 
42189
-  ;;
 
42190
+# Set to "yes" if exported symbols are required.
 
42191
+always_export_symbols=$always_export_symbols_CXX
 
42192
 
 
42193
-irix5* | irix6* | nonstopux*)
 
42194
-  case $host_os in
 
42195
-    nonstopux*) version_type=nonstopux ;;
 
42196
-    *)
 
42197
-       if test "$lt_cv_prog_gnu_ld" = yes; then
 
42198
-               version_type=linux
 
42199
-       else
 
42200
-               version_type=irix
 
42201
-       fi ;;
 
42202
-  esac
 
42203
-  need_lib_prefix=no
 
42204
-  need_version=no
 
42205
-  soname_spec='${libname}${release}${shared_ext}$major'
 
42206
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
 
42207
-  case $host_os in
 
42208
-  irix5* | nonstopux*)
 
42209
-    libsuff= shlibsuff=
 
42210
-    ;;
 
42211
-  *)
 
42212
-    case $LD in # libtool.m4 will add one of these switches to LD
 
42213
-    *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
 
42214
-      libsuff= shlibsuff= libmagic=32-bit;;
 
42215
-    *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
 
42216
-      libsuff=32 shlibsuff=N32 libmagic=N32;;
 
42217
-    *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
 
42218
-      libsuff=64 shlibsuff=64 libmagic=64-bit;;
 
42219
-    *) libsuff= shlibsuff= libmagic=never-match;;
 
42220
-    esac
 
42221
-    ;;
 
42222
-  esac
 
42223
-  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
 
42224
-  shlibpath_overrides_runpath=no
 
42225
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
 
42226
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
 
42227
-  hardcode_into_libs=yes
 
42228
-  ;;
 
42229
+# The commands to list exported symbols.
 
42230
+export_symbols_cmds=$lt_export_symbols_cmds_CXX
 
42231
 
 
42232
-# No shared lib support for Linux oldld, aout, or coff.
 
42233
-linux*oldld* | linux*aout* | linux*coff*)
 
42234
-  dynamic_linker=no
 
42235
-  ;;
 
42236
+# Symbols that should not be listed in the preloaded symbols.
 
42237
+exclude_expsyms=$lt_exclude_expsyms_CXX
 
42238
 
 
42239
-# This must be Linux ELF.
 
42240
-linux* | k*bsd*-gnu)
 
42241
-  version_type=linux
 
42242
-  need_lib_prefix=no
 
42243
-  need_version=no
 
42244
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
42245
-  soname_spec='${libname}${release}${shared_ext}$major'
 
42246
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
 
42247
-  shlibpath_var=LD_LIBRARY_PATH
 
42248
-  shlibpath_overrides_runpath=no
 
42249
-  # This implies no fast_install, which is unacceptable.
 
42250
-  # Some rework will be needed to allow for fast_install
 
42251
-  # before this can be enabled.
 
42252
-  hardcode_into_libs=yes
 
42253
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
 
42254
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
 
42255
+# Symbols that must always be exported.
 
42256
+include_expsyms=$lt_include_expsyms_CXX
 
42257
 
 
42258
-  # Append ld.so.conf contents to the search path
 
42259
-  if test -f /etc/ld.so.conf; then
 
42260
-    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[     ]*hwcap[        ]/d;s/[:,       ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
32991
42261
-    sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra"
32992
 
+    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
32993
 
   fi
32994
 
 
32995
 
   # We used to test for /lib/ld.so.1 and disable shared libraries on
32996
 
@@ -20893,11 +17372,23 @@
32997
 
   dynamic_linker='GNU/Linux ld.so'
32998
 
   ;;
32999
 
 
33000
 
+netbsdelf*-gnu)
33001
 
+  version_type=linux
33002
 
+  need_lib_prefix=no
33003
 
+  need_version=no
33004
 
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
33005
 
+  soname_spec='${libname}${release}${shared_ext}$major'
33006
 
+  shlibpath_var=LD_LIBRARY_PATH
33007
 
+  shlibpath_overrides_runpath=no
33008
 
+  hardcode_into_libs=yes
33009
 
+  dynamic_linker='NetBSD ld.elf_so'
33010
 
+  ;;
33011
 
+
33012
 
 netbsd*)
33013
 
   version_type=sunos
33014
 
   need_lib_prefix=no
33015
 
   need_version=no
 
42262
-  fi
 
42263
+# Commands necessary for linking programs (against libraries) with templates.
 
42264
+prelink_cmds=$lt_prelink_cmds_CXX
 
42265
 
 
42266
-  # We used to test for /lib/ld.so.1 and disable shared libraries on
 
42267
-  # powerpc, because MkLinux only supported shared libraries with the
 
42268
-  # GNU dynamic linker.  Since this was broken with cross compilers,
 
42269
-  # most powerpc-linux boxes support dynamic linking these days and
 
42270
-  # people can always --disable-shared, the test was removed, and we
 
42271
-  # assume the GNU/Linux dynamic linker is in use.
 
42272
-  dynamic_linker='GNU/Linux ld.so'
 
42273
-  ;;
 
42274
+# Specify filename containing input files.
 
42275
+file_list_spec=$lt_file_list_spec_CXX
 
42276
 
 
42277
-netbsd*)
 
42278
-  version_type=sunos
 
42279
-  need_lib_prefix=no
 
42280
-  need_version=no
33016
42281
-  if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
33017
 
+  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
33018
 
     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
33019
 
     finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
33020
 
     dynamic_linker='NetBSD (a.out) ld.so'
33021
 
@@ -20918,14 +17409,16 @@
33022
 
   shlibpath_overrides_runpath=yes
33023
 
   ;;
 
42282
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
42283
-    finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
 
42284
-    dynamic_linker='NetBSD (a.out) ld.so'
 
42285
-  else
 
42286
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
 
42287
-    soname_spec='${libname}${release}${shared_ext}$major'
 
42288
-    dynamic_linker='NetBSD ld.elf_so'
 
42289
-  fi
 
42290
-  shlibpath_var=LD_LIBRARY_PATH
 
42291
-  shlibpath_overrides_runpath=yes
 
42292
-  hardcode_into_libs=yes
 
42293
-  ;;
 
42294
+# How to hardcode a shared library path into an executable.
 
42295
+hardcode_action=$hardcode_action_CXX
 
42296
 
 
42297
-newsos6)
 
42298
-  version_type=linux
 
42299
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
42300
-  shlibpath_var=LD_LIBRARY_PATH
 
42301
-  shlibpath_overrides_runpath=yes
 
42302
-  ;;
 
42303
+# The directories searched by this compiler when creating a shared library.
 
42304
+compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX
33024
42305
 
33025
42306
-nto-qnx*)
33026
42307
-  version_type=linux
33027
 
+*nto* | *qnx*)
33028
 
+  version_type=qnx
33029
 
   need_lib_prefix=no
33030
 
   need_version=no
33031
 
   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
33032
 
   soname_spec='${libname}${release}${shared_ext}$major'
33033
 
   shlibpath_var=LD_LIBRARY_PATH
 
42308
-  need_lib_prefix=no
 
42309
-  need_version=no
 
42310
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
42311
-  soname_spec='${libname}${release}${shared_ext}$major'
 
42312
-  shlibpath_var=LD_LIBRARY_PATH
33034
42313
-  shlibpath_overrides_runpath=yes
33035
 
+  shlibpath_overrides_runpath=no
33036
 
+  hardcode_into_libs=yes
33037
 
+  dynamic_linker='ldqnx.so'
33038
 
   ;;
 
42314
-  ;;
 
42315
+# Dependencies to place before and after the objects being linked to
 
42316
+# create a shared library.
 
42317
+predep_objects=$lt_predep_objects_CXX
 
42318
+postdep_objects=$lt_postdep_objects_CXX
 
42319
+predeps=$lt_predeps_CXX
 
42320
+postdeps=$lt_postdeps_CXX
33039
42321
 
33040
 
 openbsd*)
33041
 
@@ -20940,7 +17433,7 @@
33042
 
   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
33043
 
   finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
33044
 
   shlibpath_var=LD_LIBRARY_PATH
 
42322
-openbsd*)
 
42323
-  version_type=sunos
 
42324
-  sys_lib_dlsearch_path_spec="/usr/lib"
 
42325
-  need_lib_prefix=no
 
42326
-  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
 
42327
-  case $host_os in
 
42328
-    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
 
42329
-    *)                         need_version=no  ;;
 
42330
-  esac
 
42331
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
42332
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
 
42333
-  shlibpath_var=LD_LIBRARY_PATH
33045
42334
-  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
33046
 
+  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
33047
 
     case $host_os in
33048
 
       openbsd2.[89] | openbsd2.[89].*)
33049
 
        shlibpath_overrides_runpath=no
33050
 
@@ -21012,7 +17505,6 @@
33051
 
     sni)
33052
 
       shlibpath_overrides_runpath=no
33053
 
       need_lib_prefix=no
 
42335
-    case $host_os in
 
42336
-      openbsd2.[89] | openbsd2.[89].*)
 
42337
-       shlibpath_overrides_runpath=no
 
42338
-       ;;
 
42339
-      *)
 
42340
-       shlibpath_overrides_runpath=yes
 
42341
-       ;;
 
42342
-      esac
 
42343
-  else
 
42344
-    shlibpath_overrides_runpath=yes
 
42345
-  fi
 
42346
-  ;;
 
42347
+# The library search path used internally by the compiler when linking
 
42348
+# a shared library.
 
42349
+compiler_lib_search_path=$lt_compiler_lib_search_path_CXX
 
42350
 
 
42351
-os2*)
 
42352
-  libname_spec='$name'
 
42353
-  shrext_cmds=".dll"
 
42354
-  need_lib_prefix=no
 
42355
-  library_names_spec='$libname${shared_ext} $libname.a'
 
42356
-  dynamic_linker='OS/2 ld.exe'
 
42357
-  shlibpath_var=LIBPATH
 
42358
-  ;;
 
42359
+# ### END LIBTOOL TAG CONFIG: CXX
 
42360
+_LT_EOF
 
42361
 
 
42362
-osf3* | osf4* | osf5*)
 
42363
-  version_type=osf
 
42364
-  need_lib_prefix=no
 
42365
-  need_version=no
 
42366
-  soname_spec='${libname}${release}${shared_ext}$major'
 
42367
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
42368
-  shlibpath_var=LD_LIBRARY_PATH
 
42369
-  sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
 
42370
-  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
 
42371
-  ;;
 
42372
 
 
42373
-rdos*)
 
42374
-  dynamic_linker=no
 
42375
-  ;;
 
42376
+{ (exit 0); exit 0; }
 
42377
+_LTEOF
 
42378
+chmod +x "$CONFIG_LT"
 
42379
 
 
42380
-solaris*)
 
42381
-  version_type=linux
 
42382
-  need_lib_prefix=no
 
42383
-  need_version=no
 
42384
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
42385
-  soname_spec='${libname}${release}${shared_ext}$major'
 
42386
-  shlibpath_var=LD_LIBRARY_PATH
 
42387
-  shlibpath_overrides_runpath=yes
 
42388
-  hardcode_into_libs=yes
 
42389
-  # ldd complains unless libraries are executable
 
42390
-  postinstall_cmds='chmod +x $lib'
 
42391
-  ;;
 
42392
+# configure is writing to config.log, but config.lt does its own redirection,
 
42393
+# appending to config.log, which fails on DOS, as config.log is still kept
 
42394
+# open by configure.  Here we exec the FD to /dev/null, effectively closing
 
42395
+# config.log, so it can be properly (re)opened and appended to by config.lt.
 
42396
+if test "$no_create" != yes; then
 
42397
+  lt_cl_success=:
 
42398
+  test "$silent" = yes &&
 
42399
+    lt_config_lt_args="$lt_config_lt_args --quiet"
 
42400
+  exec 5>/dev/null
 
42401
+  $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
 
42402
+  exec 5>>config.log
 
42403
+  $lt_cl_success || { (exit 1); exit 1; }
 
42404
+fi
 
42405
 
 
42406
-sunos4*)
 
42407
-  version_type=sunos
 
42408
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
 
42409
-  finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
 
42410
-  shlibpath_var=LD_LIBRARY_PATH
 
42411
-  shlibpath_overrides_runpath=yes
 
42412
-  if test "$with_gnu_ld" = yes; then
 
42413
-    need_lib_prefix=no
 
42414
-  fi
 
42415
-  need_version=yes
 
42416
-  ;;
 
42417
 
 
42418
-sysv4 | sysv4.3*)
 
42419
-  version_type=linux
 
42420
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
42421
-  soname_spec='${libname}${release}${shared_ext}$major'
 
42422
-  shlibpath_var=LD_LIBRARY_PATH
 
42423
-  case $host_vendor in
 
42424
-    sni)
 
42425
-      shlibpath_overrides_runpath=no
 
42426
-      need_lib_prefix=no
33054
42427
-      export_dynamic_flag_spec='${wl}-Blargedynsym'
33055
 
       runpath_var=LD_RUN_PATH
33056
 
       ;;
33057
 
     siemens)
33058
 
@@ -21043,13 +17535,12 @@
33059
 
   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
33060
 
   soname_spec='${libname}${release}${shared_ext}$major'
33061
 
   shlibpath_var=LD_LIBRARY_PATH
33062
 
+  shlibpath_overrides_runpath=yes
33063
 
   hardcode_into_libs=yes
33064
 
   if test "$with_gnu_ld" = yes; then
33065
 
     sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
 
42428
-      runpath_var=LD_RUN_PATH
 
42429
-      ;;
 
42430
-    siemens)
 
42431
-      need_lib_prefix=no
 
42432
-      ;;
 
42433
-    motorola)
 
42434
-      need_lib_prefix=no
 
42435
-      need_version=no
 
42436
-      shlibpath_overrides_runpath=no
 
42437
-      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
 
42438
-      ;;
 
42439
-  esac
 
42440
-  ;;
 
42441
 
 
42442
-sysv4*MP*)
 
42443
-  if test -d /usr/nec ;then
 
42444
-    version_type=linux
 
42445
-    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
 
42446
-    soname_spec='$libname${shared_ext}.$major'
 
42447
-    shlibpath_var=LD_LIBRARY_PATH
 
42448
-  fi
 
42449
-  ;;
 
42450
 
 
42451
-sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
 
42452
-  version_type=freebsd-elf
 
42453
-  need_lib_prefix=no
 
42454
-  need_version=no
 
42455
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
 
42456
-  soname_spec='${libname}${release}${shared_ext}$major'
 
42457
-  shlibpath_var=LD_LIBRARY_PATH
 
42458
-  hardcode_into_libs=yes
 
42459
-  if test "$with_gnu_ld" = yes; then
 
42460
-    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
33066
42461
-    shlibpath_overrides_runpath=no
33067
 
   else
33068
 
     sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
 
42462
-  else
 
42463
-    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
33069
42464
-    shlibpath_overrides_runpath=yes
33070
 
     case $host_os in
33071
 
       sco3.2v5*)
33072
 
         sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
33073
 
@@ -21059,6 +17550,17 @@
33074
 
   sys_lib_dlsearch_path_spec='/usr/lib'
33075
 
   ;;
33076
 
 
33077
 
+tpf*)
33078
 
+  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.
33079
 
+  version_type=linux
33080
 
+  need_lib_prefix=no
33081
 
+  need_version=no
33082
 
+  library_name_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
33083
 
+  shlibpath_var=LD_LIBRARY_PATH
33084
 
+  shlibpath_overrides_runpath=no
33085
 
+  hardcode_into_libs=yes
33086
 
+  ;;
33087
 
+
33088
 
 uts4*)
33089
 
   version_type=linux
33090
 
   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
33091
 
@@ -21079,35 +17581,78 @@
33092
 
   variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
33093
 
 fi
33094
 
 
33095
 
-{ echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
33096
 
+if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
33097
 
+  sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
33098
 
+fi
33099
 
+if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
33100
 
+  sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
33101
 
+fi
33102
 
+
33103
 
+
33104
 
+
33105
 
+
33106
 
+
33107
 
+
33108
 
+
33109
 
+
33110
 
+
33111
 
+
33112
 
+
33113
 
+
33114
 
+
33115
 
+
33116
 
+
33117
 
+
33118
 
+
33119
 
+
33120
 
+
33121
 
+
33122
 
+
33123
 
+
33124
 
+
33125
 
+
33126
 
+
33127
 
+
33128
 
+
33129
 
+
33130
 
+
33131
 
+
33132
 
+
33133
 
+
33134
 
+
33135
 
+
33136
 
+
33137
 
+
33138
 
+    { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
33139
 
 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; }
 
42465
-    case $host_os in
 
42466
-      sco3.2v5*)
 
42467
-        sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
 
42468
-       ;;
 
42469
-    esac
 
42470
+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
 
42471
+       if test -n "$ac_tool_prefix"; then
 
42472
+  # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
 
42473
+set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
 
42474
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
42475
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
42476
+if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
 
42477
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
42478
+else
 
42479
+  case $PKG_CONFIG in
 
42480
+  [\\/]* | ?:[\\/]*)
 
42481
+  ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
 
42482
+  ;;
 
42483
+  *)
 
42484
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
42485
+for as_dir in $PATH
 
42486
+do
 
42487
+  IFS=$as_save_IFS
 
42488
+  test -z "$as_dir" && as_dir=.
 
42489
+  for ac_exec_ext in '' $ac_executable_extensions; do
 
42490
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
42491
+    ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
42492
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
42493
+    break 2
 
42494
   fi
 
42495
-  sys_lib_dlsearch_path_spec='/usr/lib'
 
42496
+done
 
42497
+done
 
42498
+IFS=$as_save_IFS
 
42499
+
 
42500
   ;;
 
42501
+esac
 
42502
+fi
 
42503
+PKG_CONFIG=$ac_cv_path_PKG_CONFIG
 
42504
+if test -n "$PKG_CONFIG"; then
 
42505
+  { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5
 
42506
+echo "${ECHO_T}$PKG_CONFIG" >&6; }
 
42507
+else
 
42508
+  { echo "$as_me:$LINENO: result: no" >&5
 
42509
+echo "${ECHO_T}no" >&6; }
 
42510
+fi
 
42511
 
 
42512
-uts4*)
 
42513
-  version_type=linux
 
42514
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
 
42515
-  soname_spec='${libname}${release}${shared_ext}$major'
 
42516
-  shlibpath_var=LD_LIBRARY_PATH
 
42517
+
 
42518
+fi
 
42519
+if test -z "$ac_cv_path_PKG_CONFIG"; then
 
42520
+  ac_pt_PKG_CONFIG=$PKG_CONFIG
 
42521
+  # Extract the first word of "pkg-config", so it can be a program name with args.
 
42522
+set dummy pkg-config; ac_word=$2
 
42523
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
42524
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
42525
+if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then
 
42526
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
42527
+else
 
42528
+  case $ac_pt_PKG_CONFIG in
 
42529
+  [\\/]* | ?:[\\/]*)
 
42530
+  ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
 
42531
   ;;
 
42532
+  *)
 
42533
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
42534
+for as_dir in $PATH
 
42535
+do
 
42536
+  IFS=$as_save_IFS
 
42537
+  test -z "$as_dir" && as_dir=.
 
42538
+  for ac_exec_ext in '' $ac_executable_extensions; do
 
42539
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
42540
+    ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
42541
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
42542
+    break 2
 
42543
+  fi
 
42544
+done
 
42545
+done
 
42546
+IFS=$as_save_IFS
 
42547
 
 
42548
-*)
 
42549
-  dynamic_linker=no
 
42550
   ;;
 
42551
 esac
 
42552
-{ $as_echo "$as_me:$LINENO: result: $dynamic_linker" >&5
 
42553
-$as_echo "$dynamic_linker" >&6; }
 
42554
-test "$dynamic_linker" = no && can_build_shared=no
 
42555
+fi
 
42556
+ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
 
42557
+if test -n "$ac_pt_PKG_CONFIG"; then
 
42558
+  { echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5
 
42559
+echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6; }
 
42560
+else
 
42561
+  { echo "$as_me:$LINENO: result: no" >&5
 
42562
+echo "${ECHO_T}no" >&6; }
 
42563
+fi
 
42564
+
 
42565
+  if test "x$ac_pt_PKG_CONFIG" = x; then
 
42566
+    PKG_CONFIG=""
 
42567
+  else
 
42568
+    case $cross_compiling:$ac_tool_warned in
 
42569
+yes:)
 
42570
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
 
42571
+whose name does not start with the host triplet.  If you think this
 
42572
+configuration is useful to you, please write to autoconf@gnu.org." >&5
 
42573
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
 
42574
+whose name does not start with the host triplet.  If you think this
 
42575
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
42576
+ac_tool_warned=yes ;;
 
42577
+esac
 
42578
+    PKG_CONFIG=$ac_pt_PKG_CONFIG
 
42579
+  fi
 
42580
+else
 
42581
+  PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
 
42582
+fi
 
42583
 
 
42584
-if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
 
42585
-  $as_echo_n "(cached) " >&6
 
42586
-else
 
42587
-  lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec"
 
42588
 fi
 
42589
+if test -n "$PKG_CONFIG"; then
 
42590
+       _pkg_min_version=0.9.0
 
42591
+       { echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5
 
42592
+echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6; }
 
42593
+       if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
 
42594
+               { echo "$as_me:$LINENO: result: yes" >&5
 
42595
+echo "${ECHO_T}yes" >&6; }
 
42596
+       else
 
42597
+               { echo "$as_me:$LINENO: result: no" >&5
 
42598
+echo "${ECHO_T}no" >&6; }
 
42599
+               PKG_CONFIG=""
 
42600
+       fi
 
42601
 
 
42602
-sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
 
42603
-if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
 
42604
-  $as_echo_n "(cached) " >&6
 
42605
-else
 
42606
-  lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec"
 
42607
 fi
 
42608
 
 
42609
-sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
 
42610
+# Extract the first word of "glib-genmarshal", so it can be a program name with args.
 
42611
+set dummy glib-genmarshal; ac_word=$2
 
42612
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
42613
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
42614
+if test "${ac_cv_path_GLIB_GENMARSHAL+set}" = set; then
 
42615
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
42616
+else
 
42617
+  case $GLIB_GENMARSHAL in
 
42618
+  [\\/]* | ?:[\\/]*)
 
42619
+  ac_cv_path_GLIB_GENMARSHAL="$GLIB_GENMARSHAL" # Let the user override the test with a path.
 
42620
+  ;;
 
42621
+  *)
 
42622
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
42623
+for as_dir in $PATH
 
42624
+do
 
42625
+  IFS=$as_save_IFS
 
42626
+  test -z "$as_dir" && as_dir=.
 
42627
+  for ac_exec_ext in '' $ac_executable_extensions; do
 
42628
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
42629
+    ac_cv_path_GLIB_GENMARSHAL="$as_dir/$ac_word$ac_exec_ext"
 
42630
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
42631
+    break 2
 
42632
+  fi
 
42633
+done
 
42634
+done
 
42635
+IFS=$as_save_IFS
 
42636
 
 
42637
-variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
 
42638
-if test "$GCC" = yes; then
 
42639
-  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
 
42640
+  ;;
 
42641
+esac
 
42642
+fi
 
42643
+GLIB_GENMARSHAL=$ac_cv_path_GLIB_GENMARSHAL
 
42644
+if test -n "$GLIB_GENMARSHAL"; then
 
42645
+  { echo "$as_me:$LINENO: result: $GLIB_GENMARSHAL" >&5
 
42646
+echo "${ECHO_T}$GLIB_GENMARSHAL" >&6; }
 
42647
+else
 
42648
+  { echo "$as_me:$LINENO: result: no" >&5
 
42649
+echo "${ECHO_T}no" >&6; }
 
42650
 fi
 
42651
 
 
42652
-{ $as_echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
 
42653
-$as_echo_n "checking how to hardcode library paths into programs... " >&6; }
33140
42654
-hardcode_action_GCJ=
33141
42655
-if test -n "$hardcode_libdir_flag_spec_GCJ" || \
33142
42656
-   test -n "$runpath_var_GCJ" || \
33143
42657
-   test "X$hardcode_automatic_GCJ" = "Xyes" ; then
33144
 
+hardcode_action_CXX=
33145
 
+if test -n "$hardcode_libdir_flag_spec_CXX" ||
33146
 
+   test -n "$runpath_var_CXX" ||
33147
 
+   test "X$hardcode_automatic_CXX" = "Xyes" ; then
33148
42658
 
33149
42659
-  # We can hardcode non-existant directories.
33150
42660
-  if test "$hardcode_direct_GCJ" != no &&
33151
 
+  # We can hardcode non-existent directories.
33152
 
+  if test "$hardcode_direct_CXX" != no &&
33153
 
      # If the only mechanism to avoid hardcoding is shlibpath_var, we
33154
 
      # have to relink, otherwise we might link with an installed library
33155
 
      # when we should be linking with a yet-to-be-installed one
 
42661
-     # If the only mechanism to avoid hardcoding is shlibpath_var, we
 
42662
-     # have to relink, otherwise we might link with an installed library
 
42663
-     # when we should be linking with a yet-to-be-installed one
33156
42664
-     ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, GCJ)" != no &&
33157
42665
-     test "$hardcode_minus_L_GCJ" != no; then
33158
 
+     ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no &&
33159
 
+     test "$hardcode_minus_L_CXX" != no; then
33160
 
     # Linking always hardcodes the temporary library directory.
 
42666
-    # Linking always hardcodes the temporary library directory.
33161
42667
-    hardcode_action_GCJ=relink
33162
 
+    hardcode_action_CXX=relink
33163
 
   else
33164
 
     # We can link without hardcoding, and we can hardcode nonexisting dirs.
 
42668
-  else
 
42669
-    # We can link without hardcoding, and we can hardcode nonexisting dirs.
33165
42670
-    hardcode_action_GCJ=immediate
33166
 
+    hardcode_action_CXX=immediate
 
42671
+# Extract the first word of "glib-mkenums", so it can be a program name with args.
 
42672
+set dummy glib-mkenums; ac_word=$2
 
42673
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
42674
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
42675
+if test "${ac_cv_path_GLIB_MKENUMS+set}" = set; then
 
42676
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
42677
+else
 
42678
+  case $GLIB_MKENUMS in
 
42679
+  [\\/]* | ?:[\\/]*)
 
42680
+  ac_cv_path_GLIB_MKENUMS="$GLIB_MKENUMS" # Let the user override the test with a path.
 
42681
+  ;;
 
42682
+  *)
 
42683
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
42684
+for as_dir in $PATH
 
42685
+do
 
42686
+  IFS=$as_save_IFS
 
42687
+  test -z "$as_dir" && as_dir=.
 
42688
+  for ac_exec_ext in '' $ac_executable_extensions; do
 
42689
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
42690
+    ac_cv_path_GLIB_MKENUMS="$as_dir/$ac_word$ac_exec_ext"
 
42691
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
42692
+    break 2
33167
42693
   fi
 
42694
+done
 
42695
+done
 
42696
+IFS=$as_save_IFS
 
42697
+
 
42698
+  ;;
 
42699
+esac
 
42700
+fi
 
42701
+GLIB_MKENUMS=$ac_cv_path_GLIB_MKENUMS
 
42702
+if test -n "$GLIB_MKENUMS"; then
 
42703
+  { echo "$as_me:$LINENO: result: $GLIB_MKENUMS" >&5
 
42704
+echo "${ECHO_T}$GLIB_MKENUMS" >&6; }
33168
42705
 else
33169
 
   # We cannot hardcode anything, or else we can only hardcode existing
33170
 
   # directories.
 
42706
-  # We cannot hardcode anything, or else we can only hardcode existing
 
42707
-  # directories.
33171
42708
-  hardcode_action_GCJ=unsupported
33172
 
+  hardcode_action_CXX=unsupported
 
42709
+  { echo "$as_me:$LINENO: result: no" >&5
 
42710
+echo "${ECHO_T}no" >&6; }
33173
42711
 fi
33174
 
-{ echo "$as_me:$LINENO: result: $hardcode_action_GCJ" >&5
33175
 
-echo "${ECHO_T}$hardcode_action_GCJ" >&6; }
33176
 
+{ echo "$as_me:$LINENO: result: $hardcode_action_CXX" >&5
33177
 
+echo "${ECHO_T}$hardcode_action_CXX" >&6; }
 
42712
-{ $as_echo "$as_me:$LINENO: result: $hardcode_action_GCJ" >&5
 
42713
-$as_echo "$hardcode_action_GCJ" >&6; }
33178
42714
 
33179
42715
-if test "$hardcode_action_GCJ" = relink; then
33180
 
+if test "$hardcode_action_CXX" = relink ||
33181
 
+   test "$inherit_rpath_CXX" = yes; then
33182
 
   # Fast installation is not supported
33183
 
   enable_fast_install=no
33184
 
 elif test "$shlibpath_overrides_runpath" = yes ||
33185
 
@@ -21117,583 +17662,813 @@
33186
 
 fi
 
42716
-  # Fast installation is not supported
 
42717
-  enable_fast_install=no
 
42718
-elif test "$shlibpath_overrides_runpath" = yes ||
 
42719
-     test "$enable_shared" = no; then
 
42720
-  # Fast installation is not necessary
 
42721
-  enable_fast_install=needless
 
42722
-fi
33187
42723
 
33188
42724
 
33189
42725
-# The else clause should only fire when bootstrapping the
33226
42762
-    predeps_GCJ \
33227
42763
-    postdeps_GCJ \
33228
42764
-    compiler_lib_search_path_GCJ \
 
42765
-    compiler_lib_search_dirs_GCJ \
33229
42766
-    archive_cmds_GCJ \
33230
42767
-    archive_expsym_cmds_GCJ \
33231
42768
-    postinstall_cmds_GCJ \
33266
42803
-      ;;
33267
42804
-    esac
33268
42805
-  done
 
42806
+# Requirements
 
42807
+GLIB_REQS=2.13.4
 
42808
+GTK_REQS=2.13.0
 
42809
+TOTEM_PLPARSER_REQS=2.23.91
 
42810
+GNOMEUI_REQS=2.3.3
 
42811
+LIBGNOME_REQS=2.14.0
 
42812
+GNOMEICON_REQS=2.15.90
 
42813
+DBUS_REQS=0.61
 
42814
+VALA_REQS=0.1.6
33269
42815
 
33270
42816
-  case $lt_echo in
33271
42817
-  *'\$0 --fallback-echo"')
33272
42818
-    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
33273
42819
-    ;;
33274
42820
-  esac
 
42821
+TOTEM_VERSION_MAJOR=2
 
42822
+TOTEM_VERSION_MINOR=24
 
42823
+TOTEM_VERSION_MICRO=3
33275
42824
 
33276
42825
-cfgfile="$ofile"
33277
42826
 
33282
42831
 
33283
42832
-# Shell to use when invoking shell scripts.
33284
42833
-SHELL=$lt_SHELL
33285
 
+  fi # test -n "$compiler"
 
42834
+# The full list of plugins
 
42835
+allowed_plugins="thumbnail screensaver ontop galago gromit lirc media-player-keys mythtv properties sidebar-test skipto sample-python sample-vala bbc bemused youtube publish tracker pythonconsole"
33286
42836
 
33287
42837
-# Whether or not to build shared libraries.
33288
42838
-build_libtool_libs=$enable_shared
33289
 
+  CC=$lt_save_CC
33290
 
+  LDCXX=$LD
33291
 
+  LD=$lt_save_LD
33292
 
+  GCC=$lt_save_GCC
33293
 
+  with_gnu_ld=$lt_save_with_gnu_ld
33294
 
+  lt_cv_path_LDCXX=$lt_cv_path_LD
33295
 
+  lt_cv_path_LD=$lt_save_path_LD
33296
 
+  lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
33297
 
+  lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
33298
 
+fi # test "$_lt_caught_CXX_error" != yes
 
42839
+PLUGINDIR='${libdir}/totem/plugins'
33299
42840
 
33300
42841
-# Whether or not to build static libraries.
33301
42842
-build_old_libs=$enable_static
33302
 
+ac_ext=c
33303
 
+ac_cpp='$CPP $CPPFLAGS'
33304
 
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
33305
 
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
33306
 
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
33307
42843
 
33308
42844
-# Whether or not to add -lc for building shared libraries.
33309
42845
-build_libtool_need_lc=$archive_cmds_need_lc_GCJ
 
42846
+# Check whether --enable-nvtv was given.
 
42847
+if test "${enable_nvtv+set}" = set; then
 
42848
+  enableval=$enable_nvtv; enable_nvtv="$enableval"
 
42849
+else
 
42850
+  enable_nvtv=yes
 
42851
+fi
33310
42852
 
33311
42853
-# Whether or not to disallow shared libs when runtime libs are static
33312
42854
-allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_GCJ
33313
42855
 
33314
42856
-# Whether or not to optimize for fast installation.
33315
42857
-fast_install=$enable_fast_install
 
42858
+if test x$enable_nvtv = xyes; then
33316
42859
 
33317
42860
-# The host system.
33318
42861
-host_alias=$host_alias
33319
42862
-host=$host
33320
42863
-host_os=$host_os
 
42864
+pkg_failed=no
 
42865
+{ echo "$as_me:$LINENO: checking for NVTV" >&5
 
42866
+echo $ECHO_N "checking for NVTV... $ECHO_C" >&6; }
33321
42867
 
33322
42868
-# The build system.
33323
42869
-build_alias=$build_alias
33324
42870
-build=$build
33325
42871
-build_os=$build_os
 
42872
+if test -n "$PKG_CONFIG"; then
 
42873
+    if test -n "$NVTV_CFLAGS"; then
 
42874
+        pkg_cv_NVTV_CFLAGS="$NVTV_CFLAGS"
 
42875
+    else
 
42876
+        if test -n "$PKG_CONFIG" && \
 
42877
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"nvtvsimple >= 0.4.5\"") >&5
 
42878
+  ($PKG_CONFIG --exists --print-errors "nvtvsimple >= 0.4.5") 2>&5
 
42879
+  ac_status=$?
 
42880
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
42881
+  (exit $ac_status); }; then
 
42882
+  pkg_cv_NVTV_CFLAGS=`$PKG_CONFIG --cflags "nvtvsimple >= 0.4.5" 2>/dev/null`
 
42883
+else
 
42884
+  pkg_failed=yes
 
42885
+fi
 
42886
+    fi
 
42887
+else
 
42888
+       pkg_failed=untried
 
42889
+fi
 
42890
+if test -n "$PKG_CONFIG"; then
 
42891
+    if test -n "$NVTV_LIBS"; then
 
42892
+        pkg_cv_NVTV_LIBS="$NVTV_LIBS"
 
42893
+    else
 
42894
+        if test -n "$PKG_CONFIG" && \
 
42895
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"nvtvsimple >= 0.4.5\"") >&5
 
42896
+  ($PKG_CONFIG --exists --print-errors "nvtvsimple >= 0.4.5") 2>&5
 
42897
+  ac_status=$?
 
42898
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
42899
+  (exit $ac_status); }; then
 
42900
+  pkg_cv_NVTV_LIBS=`$PKG_CONFIG --libs "nvtvsimple >= 0.4.5" 2>/dev/null`
 
42901
+else
 
42902
+  pkg_failed=yes
 
42903
+fi
 
42904
+    fi
 
42905
+else
 
42906
+       pkg_failed=untried
 
42907
+fi
33326
42908
 
33327
42909
-# An echo program that does not interpret backslashes.
33328
42910
-echo=$lt_echo
33333
42915
 
33334
42916
-# A C compiler.
33335
42917
-LTCC=$lt_LTCC
 
42918
+if test $pkg_failed = yes; then
33336
42919
 
33337
42920
-# LTCC compiler flags.
33338
42921
-LTCFLAGS=$lt_LTCFLAGS
 
42922
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
42923
+        _pkg_short_errors_supported=yes
 
42924
+else
 
42925
+        _pkg_short_errors_supported=no
 
42926
+fi
 
42927
+        if test $_pkg_short_errors_supported = yes; then
 
42928
+               NVTV_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "nvtvsimple >= 0.4.5"`
 
42929
+        else
 
42930
+               NVTV_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "nvtvsimple >= 0.4.5"`
 
42931
+        fi
 
42932
+       # Put the nasty error message in config.log where it belongs
 
42933
+       echo "$NVTV_PKG_ERRORS" >&5
33339
42934
 
33340
42935
-# A language-specific compiler.
33341
42936
-CC=$lt_compiler_GCJ
 
42937
+       { echo "$as_me:$LINENO: result: no" >&5
 
42938
+echo "${ECHO_T}no" >&6; }
 
42939
+                found_nvtv=no
 
42940
+elif test $pkg_failed = untried; then
 
42941
+       found_nvtv=no
 
42942
+else
 
42943
+       NVTV_CFLAGS=$pkg_cv_NVTV_CFLAGS
 
42944
+       NVTV_LIBS=$pkg_cv_NVTV_LIBS
 
42945
+        { echo "$as_me:$LINENO: result: yes" >&5
 
42946
+echo "${ECHO_T}yes" >&6; }
 
42947
+       found_nvtv=yes
 
42948
+fi
 
42949
+       if test x"$found_nvtv" = "xyes" ; then
33342
42950
 
33343
42951
-# Is the compiler the GNU C compiler?
33344
42952
-with_gcc=$GCC_GCJ
 
42953
+cat >>confdefs.h <<\_ACEOF
 
42954
+#define HAVE_NVTV 1
 
42955
+_ACEOF
33345
42956
 
33346
42957
-# An ERE matcher.
33347
42958
-EGREP=$lt_EGREP
 
42959
+       fi
 
42960
+fi
33348
42961
 
33349
42962
-# The linker used to build libraries.
33350
42963
-LD=$lt_LD_GCJ
33351
 
+        ac_config_commands="$ac_config_commands libtool"
33352
42964
 
33353
42965
-# Whether we need hard or soft links.
33354
42966
-LN_S=$lt_LN_S
 
42967
+XINE_REQS=1.1.7
 
42968
+GST_MAJORMINOR=0.10
 
42969
+GST_REQS=0.10.12
 
42970
+GSTPLUG_REQS=0.10.12
33355
42971
 
33356
42972
-# A BSD-compatible nm program.
33357
42973
-NM=$lt_NM
 
42974
+# Check whether --enable-xine was given.
 
42975
+if test "${enable_xine+set}" = set; then
 
42976
+  enableval=$enable_xine; case "${enableval}" in
 
42977
+       yes) ENABLE_XINE=yes ;;
 
42978
+        no)  ENABLE_XINE=no ;;
 
42979
+       *) { { echo "$as_me:$LINENO: error:
 
42980
+             ***** Bad value ${enableval} for --enable-xine
 
42981
+             ***** Please use one of the following:
 
42982
+             *****   --enable-xine=yes
 
42983
+            *****   --enable-xine=no
 
42984
+           " >&5
 
42985
+echo "$as_me: error:
 
42986
+             ***** Bad value ${enableval} for --enable-xine
 
42987
+             ***** Please use one of the following:
 
42988
+             *****   --enable-xine=yes
 
42989
+            *****   --enable-xine=no
 
42990
+           " >&2;}
 
42991
+   { (exit 1); exit 1; }; } ;;
 
42992
+       esac
 
42993
+else
 
42994
+  ENABLE_XINE=auto
 
42995
+fi
33358
42996
 
33359
42997
-# A symbol stripping program
33360
42998
-STRIP=$lt_STRIP
 
42999
+HAVE_GSTREAMER=no
 
43000
+if test x$ENABLE_XINE = xno || test x$ENABLE_XINE = xauto; then
 
43001
+                       { echo "$as_me:$LINENO: checking whether to enable easy codec installation support" >&5
 
43002
+echo $ECHO_N "checking whether to enable easy codec installation support... $ECHO_C" >&6; }
 
43003
+       # Check whether --enable-easy-codec-installation was given.
 
43004
+if test "${enable_easy_codec_installation+set}" = set; then
 
43005
+  enableval=$enable_easy_codec_installation;
 
43006
+                       case "${enableval}" in
 
43007
+                               yes) enable_easy_codec_installation=yes ;;
 
43008
+                               no)  enable_easy_codec_installation=no ;;
 
43009
+                               *) enable_easy_codec_installation=auto ;;
 
43010
+                       esac
33361
43011
 
33362
43012
-# Used to examine libraries when file_magic_cmd begins "file"
33363
43013
-MAGIC_CMD=$MAGIC_CMD
33364
 
+# Only expand once:
 
43014
+else
33365
43015
 
33366
43016
-# Used on cygwin: DLL creation program.
33367
43017
-DLLTOOL="$DLLTOOL"
 
43018
+                                               enable_easy_codec_installation=auto
33368
43019
 
33369
43020
-# Used on cygwin: object dumper.
33370
43021
-OBJDUMP="$OBJDUMP"
33371
 
+: ${CONFIG_LT=./config.lt}
33372
 
+{ echo "$as_me:$LINENO: creating $CONFIG_LT" >&5
33373
 
+echo "$as_me: creating $CONFIG_LT" >&6;}
33374
 
+cat >"$CONFIG_LT" <<_LTEOF
33375
 
+#! $SHELL
33376
 
+# Generated by $as_me.
33377
 
+# Run this file to recreate a libtool stub with the current configuration.
33378
43022
 
33379
43023
-# Used on cygwin: assembler.
33380
43024
-AS="$AS"
33381
 
+lt_cl_silent=false
33382
 
+SHELL=\${CONFIG_SHELL-$SHELL}
33383
 
+_LTEOF
 
43025
+fi
33384
43026
 
33385
43027
-# The name of the directory that contains temporary libtool files.
33386
43028
-objdir=$objdir
33387
 
+cat >>"$CONFIG_LT" <<\_LTEOF
33388
 
+## --------------------- ##
33389
 
+## M4sh Initialization.  ##
33390
 
+## --------------------- ##
 
43029
+       { echo "$as_me:$LINENO: result: $enable_easy_codec_installation" >&5
 
43030
+echo "${ECHO_T}$enable_easy_codec_installation" >&6; }
33391
43031
 
33392
43032
-# How to create reloadable object files.
33393
43033
-reload_flag=$lt_reload_flag
33394
43034
-reload_cmds=$lt_reload_cmds
33395
 
-
 
43035
+       if test "x$enable_easy_codec_installation" != "xno"; then
 
43036
 
33396
43037
-# How to pass a linker flag through the compiler.
33397
43038
-wl=$lt_lt_prog_compiler_wl_GCJ
33398
 
+# Be more Bourne compatible
33399
 
+DUALCASE=1; export DUALCASE # for MKS sh
33400
 
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
33401
 
+  emulate sh
33402
 
+  NULLCMD=:
33403
 
+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
33404
 
+  # is contrary to our usage.  Disable this feature.
33405
 
+  alias -g '${1+"$@"}'='"$@"'
33406
 
+  setopt NO_GLOB_SUBST
33407
 
+else
33408
 
+  case `(set -o) 2>/dev/null` in
33409
 
+  *posix*) set -o posix ;;
33410
 
+esac
 
43039
+pkg_failed=no
 
43040
+{ echo "$as_me:$LINENO: checking for MISSING_PLUGINS" >&5
 
43041
+echo $ECHO_N "checking for MISSING_PLUGINS... $ECHO_C" >&6; }
 
43042
+
 
43043
+if test -n "$PKG_CONFIG"; then
 
43044
+    if test -n "$MISSING_PLUGINS_CFLAGS"; then
 
43045
+        pkg_cv_MISSING_PLUGINS_CFLAGS="$MISSING_PLUGINS_CFLAGS"
 
43046
+    else
 
43047
+        if test -n "$PKG_CONFIG" && \
 
43048
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gstreamer-plugins-base-0.10\"") >&5
 
43049
+  ($PKG_CONFIG --exists --print-errors "gstreamer-plugins-base-0.10") 2>&5
 
43050
+  ac_status=$?
 
43051
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
43052
+  (exit $ac_status); }; then
 
43053
+  pkg_cv_MISSING_PLUGINS_CFLAGS=`$PKG_CONFIG --cflags "gstreamer-plugins-base-0.10" 2>/dev/null`
 
43054
+else
 
43055
+  pkg_failed=yes
 
43056
+fi
 
43057
+    fi
 
43058
+else
 
43059
+       pkg_failed=untried
 
43060
+fi
 
43061
+if test -n "$PKG_CONFIG"; then
 
43062
+    if test -n "$MISSING_PLUGINS_LIBS"; then
 
43063
+        pkg_cv_MISSING_PLUGINS_LIBS="$MISSING_PLUGINS_LIBS"
 
43064
+    else
 
43065
+        if test -n "$PKG_CONFIG" && \
 
43066
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gstreamer-plugins-base-0.10\"") >&5
 
43067
+  ($PKG_CONFIG --exists --print-errors "gstreamer-plugins-base-0.10") 2>&5
 
43068
+  ac_status=$?
 
43069
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
43070
+  (exit $ac_status); }; then
 
43071
+  pkg_cv_MISSING_PLUGINS_LIBS=`$PKG_CONFIG --libs "gstreamer-plugins-base-0.10" 2>/dev/null`
 
43072
+else
 
43073
+  pkg_failed=yes
 
43074
+fi
 
43075
+    fi
 
43076
+else
 
43077
+       pkg_failed=untried
 
43078
+fi
33411
43079
 
33412
43080
-# Object file suffix (normally "o").
33413
43081
-objext="$ac_objext"
33414
 
+fi
33415
43082
 
33416
43083
-# Old archive suffix (normally "a").
33417
43084
-libext="$libext"
33418
43085
 
33419
43086
-# Shared library suffix (normally ".so").
33420
43087
-shrext_cmds='$shrext_cmds'
 
43088
+if test $pkg_failed = yes; then
33421
43089
 
33422
43090
-# Executable file suffix (normally "").
33423
43091
-exeext="$exeext"
 
43092
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
43093
+        _pkg_short_errors_supported=yes
 
43094
+else
 
43095
+        _pkg_short_errors_supported=no
 
43096
+fi
 
43097
+        if test $_pkg_short_errors_supported = yes; then
 
43098
+               MISSING_PLUGINS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gstreamer-plugins-base-0.10"`
 
43099
+        else
 
43100
+               MISSING_PLUGINS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gstreamer-plugins-base-0.10"`
 
43101
+        fi
 
43102
+       # Put the nasty error message in config.log where it belongs
 
43103
+       echo "$MISSING_PLUGINS_PKG_ERRORS" >&5
33424
43104
 
33425
43105
-# Additional compiler flags for building library objects.
33426
43106
-pic_flag=$lt_lt_prog_compiler_pic_GCJ
33427
43107
-pic_mode=$pic_mode
33428
 
+# PATH needs CR
33429
 
+# Avoid depending upon Character Ranges.
33430
 
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
33431
 
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
33432
 
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
33433
 
+as_cr_digits='0123456789'
33434
 
+as_cr_alnum=$as_cr_Letters$as_cr_digits
 
43108
+       { { echo "$as_me:$LINENO: error: Package requirements (gstreamer-plugins-base-0.10) were not met:
33435
43109
 
33436
43110
-# What is the maximum length of a command?
33437
43111
-max_cmd_len=$lt_cv_sys_max_cmd_len
33438
 
+# The user is always right.
33439
 
+if test "${PATH_SEPARATOR+set}" != set; then
33440
 
+  echo "#! /bin/sh" >conf$$.sh
33441
 
+  echo  "exit 0"   >>conf$$.sh
33442
 
+  chmod +x conf$$.sh
33443
 
+  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
33444
 
+    PATH_SEPARATOR=';'
33445
 
+  else
33446
 
+    PATH_SEPARATOR=:
33447
 
+  fi
33448
 
+  rm -f conf$$.sh
33449
 
+fi
 
43112
+$MISSING_PLUGINS_PKG_ERRORS
33450
43113
 
33451
43114
-# Does compiler simultaneously support -c and -o options?
33452
43115
-compiler_c_o=$lt_lt_cv_prog_compiler_c_o_GCJ
33453
 
+# Support unset when possible.
33454
 
+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
33455
 
+  as_unset=unset
33456
 
+else
33457
 
+  as_unset=false
33458
 
+fi
 
43116
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
43117
+installed software in a non-standard prefix.
33459
43118
 
33460
43119
-# Must we lock files when doing compilation?
33461
43120
-need_locks=$lt_need_locks
 
43121
+Alternatively, you may set the environment variables MISSING_PLUGINS_CFLAGS
 
43122
+and MISSING_PLUGINS_LIBS to avoid the need to call pkg-config.
 
43123
+See the pkg-config man page for more details.
 
43124
+" >&5
 
43125
+echo "$as_me: error: Package requirements (gstreamer-plugins-base-0.10) were not met:
33462
43126
 
33463
43127
-# Do we need the lib prefix for modules?
33464
43128
-need_lib_prefix=$need_lib_prefix
33465
 
+# IFS
33466
 
+# We need space, tab and new line, in precisely that order.  Quoting is
33467
 
+# there to prevent editors from complaining about space-tab.
33468
 
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
33469
 
+# splitting by setting IFS to empty value.)
33470
 
+as_nl='
33471
 
+'
33472
 
+IFS=" ""       $as_nl"
 
43129
+$MISSING_PLUGINS_PKG_ERRORS
33473
43130
 
33474
43131
-# Do we need a version for libraries?
33475
43132
-need_version=$need_version
33476
 
+# Find who we are.  Look in the path if we contain no directory separator.
33477
 
+case $0 in
33478
 
+  *[\\/]* ) as_myself=$0 ;;
33479
 
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
33480
 
+for as_dir in $PATH
33481
 
+do
33482
 
+  IFS=$as_save_IFS
33483
 
+  test -z "$as_dir" && as_dir=.
33484
 
+  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
33485
 
+done
33486
 
+IFS=$as_save_IFS
 
43133
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
43134
+installed software in a non-standard prefix.
33487
43135
 
33488
43136
-# Whether dlopen is supported.
33489
43137
-dlopen_support=$enable_dlopen
33490
 
+     ;;
33491
 
+esac
33492
 
+# We did not find ourselves, most probably we were run as `sh COMMAND'
33493
 
+# in which case we are not to be found in the path.
33494
 
+if test "x$as_myself" = x; then
33495
 
+  as_myself=$0
33496
 
+fi
33497
 
+if test ! -f "$as_myself"; then
33498
 
+  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
33499
 
+  { (exit 1); exit 1; }
33500
 
+fi
 
43138
+Alternatively, you may set the environment variables MISSING_PLUGINS_CFLAGS
 
43139
+and MISSING_PLUGINS_LIBS to avoid the need to call pkg-config.
 
43140
+See the pkg-config man page for more details.
 
43141
+" >&2;}
 
43142
+   { (exit 1); exit 1; }; }
 
43143
+elif test $pkg_failed = untried; then
 
43144
+       { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old.  Make sure it
 
43145
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
43146
+path to pkg-config.
33501
43147
 
33502
43148
-# Whether dlopen of programs is supported.
33503
43149
-dlopen_self=$enable_dlopen_self
33504
 
+# Work around bugs in pre-3.0 UWIN ksh.
33505
 
+for as_var in ENV MAIL MAILPATH
33506
 
+do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
33507
 
+done
33508
 
+PS1='$ '
33509
 
+PS2='> '
33510
 
+PS4='+ '
 
43150
+Alternatively, you may set the environment variables MISSING_PLUGINS_CFLAGS
 
43151
+and MISSING_PLUGINS_LIBS to avoid the need to call pkg-config.
 
43152
+See the pkg-config man page for more details.
33511
43153
 
33512
43154
-# Whether dlopen of statically linked programs is supported.
33513
43155
-dlopen_self_static=$enable_dlopen_self_static
33514
 
+# NLS nuisances.
33515
 
+for as_var in \
33516
 
+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
33517
 
+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
33518
 
+  LC_TELEPHONE LC_TIME
33519
 
+do
33520
 
+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
33521
 
+    eval $as_var=C; export $as_var
33522
 
+  else
33523
 
+    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
33524
 
+  fi
33525
 
+done
 
43156
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
43157
+See \`config.log' for more details." >&5
 
43158
+echo "$as_me: error: The pkg-config script could not be found or is too old.  Make sure it
 
43159
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
43160
+path to pkg-config.
33526
43161
 
33527
43162
-# Compiler flag to prevent dynamic linking.
33528
43163
-link_static_flag=$lt_lt_prog_compiler_static_GCJ
33529
 
+# Required to use basename.
33530
 
+if expr a : '\(a\)' >/dev/null 2>&1 &&
33531
 
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
33532
 
+  as_expr=expr
33533
 
+else
33534
 
+  as_expr=false
33535
 
+fi
 
43164
+Alternatively, you may set the environment variables MISSING_PLUGINS_CFLAGS
 
43165
+and MISSING_PLUGINS_LIBS to avoid the need to call pkg-config.
 
43166
+See the pkg-config man page for more details.
33536
43167
 
33537
43168
-# Compiler flag to turn off builtin functions.
33538
43169
-no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_GCJ
33539
 
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
33540
 
+  as_basename=basename
 
43170
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
43171
+See \`config.log' for more details." >&2;}
 
43172
+   { (exit 1); exit 1; }; }
33541
43173
+else
33542
 
+  as_basename=false
33543
 
+fi
 
43174
+       MISSING_PLUGINS_CFLAGS=$pkg_cv_MISSING_PLUGINS_CFLAGS
 
43175
+       MISSING_PLUGINS_LIBS=$pkg_cv_MISSING_PLUGINS_LIBS
 
43176
+        { echo "$as_me:$LINENO: result: yes" >&5
 
43177
+echo "${ECHO_T}yes" >&6; }
33544
43178
 
33545
43179
-# Compiler flag to allow reflexive dlopens.
33546
43180
-export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_GCJ
 
43181
+                       MISSING_PLUGINS_LIBS="$MISSING_PLUGINS_LIBS -lgstpbutils-0.10"
33547
43182
 
33548
43183
-# Compiler flag to generate shared objects directly from archives.
33549
43184
-whole_archive_flag_spec=$lt_whole_archive_flag_spec_GCJ
33550
 
+# Name of the executable.
33551
 
+as_me=`$as_basename -- "$0" ||
33552
 
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
33553
 
+        X"$0" : 'X\(//\)$' \| \
33554
 
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
33555
 
+echo X/"$0" |
33556
 
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
33557
 
+           s//\1/
33558
 
+           q
33559
 
+         }
33560
 
+         /^X\/\(\/\/\)$/{
33561
 
+           s//\1/
33562
 
+           q
33563
 
+         }
33564
 
+         /^X\/\(\/\).*/{
33565
 
+           s//\1/
33566
 
+           q
33567
 
+         }
33568
 
+         s/.*/./; q'`
 
43185
+cat >>confdefs.h <<\_ACEOF
 
43186
+#define ENABLE_MISSING_PLUGIN_INSTALLATION 1
 
43187
+_ACEOF
33569
43188
 
33570
43189
-# Compiler flag to generate thread-safe objects.
33571
43190
-thread_safe_flag_spec=$lt_thread_safe_flag_spec_GCJ
33572
 
+# CDPATH.
33573
 
+$as_unset CDPATH
33574
43191
 
33575
43192
-# Library versioning type.
33576
43193
-version_type=$version_type
 
43194
+fi
 
43195
+       fi
33577
43196
 
33578
43197
-# Format of library name prefix.
33579
43198
-libname_spec=$lt_libname_spec
 
43199
+       MM="gstreamer-0.10 >= $GST_REQS gstreamer-base-0.10 >= $GST_REQS gstreamer-plugins-base-0.10 >= $GSTPLUG_REQS gstreamer-tag-0.10 >= $GSTPLUG_REQS gconf-2.0"
33580
43200
 
33581
43201
-# List of archive names.  First name is the real one, the rest are links.
33582
43202
-# The last name is the one that the linker finds with -lNAME.
33583
43203
-library_names_spec=$lt_library_names_spec
33584
 
+  as_lineno_1=$LINENO
33585
 
+  as_lineno_2=$LINENO
33586
 
+  test "x$as_lineno_1" != "x$as_lineno_2" &&
33587
 
+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
 
43204
+pkg_failed=no
 
43205
+{ echo "$as_me:$LINENO: checking for GST" >&5
 
43206
+echo $ECHO_N "checking for GST... $ECHO_C" >&6; }
33588
43207
 
33589
43208
-# The coded name of the library, if different from the real name.
33590
43209
-soname_spec=$lt_soname_spec
33591
 
+  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
33592
 
+  # uniformly replaced by the line number.  The first 'sed' inserts a
33593
 
+  # line-number line after each line using $LINENO; the second 'sed'
33594
 
+  # does the real work.  The second script uses 'N' to pair each
33595
 
+  # line-number line with the line containing $LINENO, and appends
33596
 
+  # trailing '-' during substitution so that $LINENO is not a special
33597
 
+  # case at line end.
33598
 
+  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
33599
 
+  # scripts with optimization help from Paolo Bonzini.  Blame Lee
33600
 
+  # E. McMahon (1931-1989) for sed's syntax.  :-)
33601
 
+  sed -n '
33602
 
+    p
33603
 
+    /[$]LINENO/=
33604
 
+  ' <$as_myself |
33605
 
+    sed '
33606
 
+      s/[$]LINENO.*/&-/
33607
 
+      t lineno
33608
 
+      b
33609
 
+      :lineno
33610
 
+      N
33611
 
+      :loop
33612
 
+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
33613
 
+      t loop
33614
 
+      s/-\n.*//
33615
 
+    ' >$as_me.lineno &&
33616
 
+  chmod +x "$as_me.lineno" ||
33617
 
+    { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
33618
 
+echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
33619
 
+   { (exit 1); exit 1; }; }
 
43210
+if test -n "$PKG_CONFIG"; then
 
43211
+    if test -n "$GST_CFLAGS"; then
 
43212
+        pkg_cv_GST_CFLAGS="$GST_CFLAGS"
 
43213
+    else
 
43214
+        if test -n "$PKG_CONFIG" && \
 
43215
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
 
43216
+  ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
 
43217
+  ac_status=$?
 
43218
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
43219
+  (exit $ac_status); }; then
 
43220
+  pkg_cv_GST_CFLAGS=`$PKG_CONFIG --cflags "$MM" 2>/dev/null`
 
43221
+else
 
43222
+  pkg_failed=yes
 
43223
+fi
 
43224
+    fi
 
43225
+else
 
43226
+       pkg_failed=untried
 
43227
+fi
 
43228
+if test -n "$PKG_CONFIG"; then
 
43229
+    if test -n "$GST_LIBS"; then
 
43230
+        pkg_cv_GST_LIBS="$GST_LIBS"
 
43231
+    else
 
43232
+        if test -n "$PKG_CONFIG" && \
 
43233
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
 
43234
+  ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
 
43235
+  ac_status=$?
 
43236
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
43237
+  (exit $ac_status); }; then
 
43238
+  pkg_cv_GST_LIBS=`$PKG_CONFIG --libs "$MM" 2>/dev/null`
 
43239
+else
 
43240
+  pkg_failed=yes
 
43241
+fi
 
43242
+    fi
 
43243
+else
 
43244
+       pkg_failed=untried
 
43245
+fi
33620
43246
 
33621
43247
-# Commands used to build and install an old-style archive.
33622
43248
-RANLIB=$lt_RANLIB
33623
43249
-old_archive_cmds=$lt_old_archive_cmds_GCJ
33624
43250
-old_postinstall_cmds=$lt_old_postinstall_cmds
33625
43251
-old_postuninstall_cmds=$lt_old_postuninstall_cmds
33626
 
+  # Don't try to exec as it changes $[0], causing all sort of problems
33627
 
+  # (the dirname of $[0] is not the place where we might find the
33628
 
+  # original and so on.  Autoconf is especially sensitive to this).
33629
 
+  . "./$as_me.lineno"
33630
 
+  # Exit status is that of the last command.
33631
 
+  exit
33632
 
+}
33633
43252
 
33634
43253
-# Create an old-style archive from a shared archive.
33635
43254
-old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_GCJ
33636
43255
 
33637
43256
-# Create a temporary old-style archive to link instead of a shared archive.
33638
43257
-old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_GCJ
33639
 
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
33640
 
+  as_dirname=dirname
33641
 
+else
33642
 
+  as_dirname=false
33643
 
+fi
 
43258
+if test $pkg_failed = yes; then
33644
43259
 
33645
43260
-# Commands used to build and install a shared archive.
33646
43261
-archive_cmds=$lt_archive_cmds_GCJ
33647
43262
-archive_expsym_cmds=$lt_archive_expsym_cmds_GCJ
33648
43263
-postinstall_cmds=$lt_postinstall_cmds
33649
43264
-postuninstall_cmds=$lt_postuninstall_cmds
33650
 
+ECHO_C= ECHO_N= ECHO_T=
33651
 
+case `echo -n x` in
33652
 
+-n*)
33653
 
+  case `echo 'x\c'` in
33654
 
+  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
33655
 
+  *)   ECHO_C='\c';;
33656
 
+  esac;;
33657
 
+*)
33658
 
+  ECHO_N='-n';;
33659
 
+esac
 
43265
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
43266
+        _pkg_short_errors_supported=yes
 
43267
+else
 
43268
+        _pkg_short_errors_supported=no
 
43269
+fi
 
43270
+        if test $_pkg_short_errors_supported = yes; then
 
43271
+               GST_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$MM"`
 
43272
+        else
 
43273
+               GST_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$MM"`
 
43274
+        fi
 
43275
+       # Put the nasty error message in config.log where it belongs
 
43276
+       echo "$GST_PKG_ERRORS" >&5
33660
43277
 
33661
43278
-# Commands used to build a loadable module (assumed same as above if empty)
33662
43279
-module_cmds=$lt_module_cmds_GCJ
33663
43280
-module_expsym_cmds=$lt_module_expsym_cmds_GCJ
33664
 
+if expr a : '\(a\)' >/dev/null 2>&1 &&
33665
 
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
33666
 
+  as_expr=expr
 
43281
+       { echo "$as_me:$LINENO: result: no" >&5
 
43282
+echo "${ECHO_T}no" >&6; }
 
43283
+                HAVE_GSTREAMER=no
 
43284
+elif test $pkg_failed = untried; then
 
43285
+       HAVE_GSTREAMER=no
33667
43286
+else
33668
 
+  as_expr=false
 
43287
+       GST_CFLAGS=$pkg_cv_GST_CFLAGS
 
43288
+       GST_LIBS=$pkg_cv_GST_LIBS
 
43289
+        { echo "$as_me:$LINENO: result: yes" >&5
 
43290
+echo "${ECHO_T}yes" >&6; }
 
43291
+       HAVE_GSTREAMER=yes
33669
43292
+fi
 
43293
+       GST_LIBS="$GST_LIBS -lgstbase-$GST_MAJORMINOR -lgstinterfaces-$GST_MAJORMINOR -lgstvideo-$GST_MAJORMINOR -lgstaudio-$GST_MAJORMINOR -lgstpbutils-$GST_MAJORMINOR -lgsttag-$GST_MAJORMINOR"
33670
43294
 
33671
43295
-# Commands to strip libraries.
33672
43296
-old_striplib=$lt_old_striplib
33673
43297
-striplib=$lt_striplib
33674
 
+rm -f conf$$ conf$$.exe conf$$.file
33675
 
+if test -d conf$$.dir; then
33676
 
+  rm -f conf$$.dir/conf$$.file
33677
 
+else
33678
 
+  rm -f conf$$.dir
33679
 
+  mkdir conf$$.dir
33680
 
+fi
33681
 
+echo >conf$$.file
33682
 
+if ln -s conf$$.file conf$$ 2>/dev/null; then
33683
 
+  as_ln_s='ln -s'
33684
 
+  # ... but there are two gotchas:
33685
 
+  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
33686
 
+  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
33687
 
+  # In both cases, we have to default to `cp -p'.
33688
 
+  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
33689
 
+    as_ln_s='cp -p'
33690
 
+elif ln conf$$.file conf$$ 2>/dev/null; then
33691
 
+  as_ln_s=ln
33692
 
+else
33693
 
+  as_ln_s='cp -p'
33694
 
+fi
33695
 
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
33696
 
+rmdir conf$$.dir 2>/dev/null
 
43298
+       EXTRA_BACKEND_LIBS="-lgstinterfaces-$GST_MAJORMINOR -lgstvideo-$GST_MAJORMINOR -lgstaudio-$GST_MAJORMINOR -lgstpbutils-$GST_MAJORMINOR"
33697
43299
 
33698
43300
-# Dependencies to place before the objects being linked to create a
33699
43301
-# shared library.
33710
43312
-# Dependencies to place after the objects being linked to create a
33711
43313
-# shared library.
33712
43314
-postdeps=$lt_postdeps_GCJ
33713
 
+if mkdir -p . 2>/dev/null; then
33714
 
+  as_mkdir_p=:
33715
 
+else
33716
 
+  test -d ./-p && rmdir ./-p
33717
 
+  as_mkdir_p=false
33718
 
+fi
 
43315
-
 
43316
-# The directories searched by this compiler when creating a shared
 
43317
-# library
 
43318
-compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_GCJ
 
43319
+       { echo "$as_me:$LINENO: checking for backend libraries" >&5
 
43320
+echo $ECHO_N "checking for backend libraries... $ECHO_C" >&6; }
 
43321
+               if test "x$HAVE_GSTREAMER" = "xno"; then
 
43322
+               { { echo "$as_me:$LINENO: error: you need the GStreamer or the xine-lib development packages installed" >&5
 
43323
+echo "$as_me: error: you need the GStreamer or the xine-lib development packages installed" >&2;}
 
43324
+   { (exit 1); exit 1; }; }
 
43325
+       fi
 
43326
+       { echo "$as_me:$LINENO: result: GStreamer-$GST_MAJORMINOR" >&5
 
43327
+echo "${ECHO_T}GStreamer-$GST_MAJORMINOR" >&6; }
33719
43328
 
33720
43329
-# The library search path used internally by the compiler when linking
33721
43330
-# a shared library.
33722
43331
-compiler_lib_search_path=$lt_compiler_lib_search_path_GCJ
33723
 
-
 
43332
+               gst010_toolsdir=`$PKG_CONFIG --variable=toolsdir gstreamer-0.10`
 
43333
+       gst010_inspect="$gst010_toolsdir/gst-inspect-0.10"
 
43334
 
33724
43335
-# Method to check whether dependent libraries are shared objects.
33725
43336
-deplibs_check_method=$lt_deplibs_check_method
33726
 
-
 
43337
+               for base_element in playbin ffmpegcolorspace videoscale
 
43338
+       do
 
43339
+               { echo "$as_me:$LINENO: checking GStreamer 0.10 $base_element plugin" >&5
 
43340
+echo $ECHO_N "checking GStreamer 0.10 $base_element plugin... $ECHO_C" >&6; }
 
43341
+               if $gst010_inspect $base_element >/dev/null 2>/dev/null; then
 
43342
+                       { echo "$as_me:$LINENO: result: yes" >&5
 
43343
+echo "${ECHO_T}yes" >&6; }
 
43344
+               else
 
43345
+                       { echo "$as_me:$LINENO: result: no" >&5
 
43346
+echo "${ECHO_T}no" >&6; }
 
43347
+                       { { echo "$as_me:$LINENO: error:
 
43348
+                               Cannot find required GStreamer-0.10 plugin '$base_element'.
 
43349
+                               It should be part of gst-plugins-base. Please install it.
 
43350
+                       " >&5
 
43351
+echo "$as_me: error:
 
43352
+                               Cannot find required GStreamer-0.10 plugin '$base_element'.
 
43353
+                               It should be part of gst-plugins-base. Please install it.
 
43354
+                       " >&2;}
 
43355
+   { (exit 1); exit 1; }; }
 
43356
+               fi
 
43357
+       done
 
43358
 
33727
43359
-# Command to use when deplibs_check_method == file_magic.
33728
43360
-file_magic_cmd=$lt_file_magic_cmd
33729
 
-
 
43361
+               for good_element in gconfaudiosink gconfvideosink goom
 
43362
+       do
 
43363
+               { echo "$as_me:$LINENO: checking GStreamer 0.10 $good_element plugin" >&5
 
43364
+echo $ECHO_N "checking GStreamer 0.10 $good_element plugin... $ECHO_C" >&6; }
 
43365
+               if $gst010_inspect $good_element >/dev/null 2>/dev/null; then
 
43366
+                       { echo "$as_me:$LINENO: result: yes" >&5
 
43367
+echo "${ECHO_T}yes" >&6; }
 
43368
+               else
 
43369
+                       { echo "$as_me:$LINENO: result: no" >&5
 
43370
+echo "${ECHO_T}no" >&6; }
 
43371
+                       { { echo "$as_me:$LINENO: error:
 
43372
+                               Cannot find required GStreamer-0.10 plugin '$good_element'.
 
43373
+                               It should be part of gst-plugins-good. Please install it.
 
43374
+                       " >&5
 
43375
+echo "$as_me: error:
 
43376
+                               Cannot find required GStreamer-0.10 plugin '$good_element'.
 
43377
+                               It should be part of gst-plugins-good. Please install it.
 
43378
+                       " >&2;}
 
43379
+   { (exit 1); exit 1; }; }
 
43380
+               fi
 
43381
+       done
 
43382
 
33730
43383
-# Flag that allows shared libraries with undefined symbols to be built.
33731
43384
-allow_undefined_flag=$lt_allow_undefined_flag_GCJ
33732
 
-
 
43385
 
33733
43386
-# Flag that forces no undefined symbols.
33734
43387
-no_undefined_flag=$lt_no_undefined_flag_GCJ
33735
 
-
 
43388
+fi
 
43389
 
33736
43390
-# Commands used to finish a libtool library installation in a directory.
33737
43391
-finish_cmds=$lt_finish_cmds
33738
 
-
 
43392
+if test x$ENABLE_XINE = xno && test x$HAVE_GSTREAMER = xno; then
 
43393
+       { echo "$as_me:$LINENO: checking for backend libraries" >&5
 
43394
+echo $ECHO_N "checking for backend libraries... $ECHO_C" >&6; }
 
43395
+       { echo "$as_me:$LINENO: result: none" >&5
 
43396
+echo "${ECHO_T}none" >&6; }
 
43397
+       { { echo "$as_me:$LINENO: error: you need the GStreamer or the xine-lib development packages installed" >&5
 
43398
+echo "$as_me: error: you need the GStreamer or the xine-lib development packages installed" >&2;}
 
43399
+   { (exit 1); exit 1; }; }
 
43400
+fi
 
43401
 
33739
43402
-# Same as above, but a single script fragment to be evaled but not shown.
33740
43403
-finish_eval=$lt_finish_eval
33741
 
-
 
43404
+if test x$HAVE_GSTREAMER = xno; then
 
43405
+       MM="libxine >= $XINE_REQS gconf-2.0"
 
43406
 
33742
43407
-# Take the output of nm and produce a listing of raw symbols and C names.
33743
43408
-global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
33744
 
-
 
43409
+pkg_failed=no
 
43410
+{ echo "$as_me:$LINENO: checking for XINE" >&5
 
43411
+echo $ECHO_N "checking for XINE... $ECHO_C" >&6; }
 
43412
 
33745
43413
-# Transform the output of nm in a proper C declaration
33746
43414
-global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
33747
 
-
 
43415
+if test -n "$PKG_CONFIG"; then
 
43416
+    if test -n "$XINE_CFLAGS"; then
 
43417
+        pkg_cv_XINE_CFLAGS="$XINE_CFLAGS"
 
43418
+    else
 
43419
+        if test -n "$PKG_CONFIG" && \
 
43420
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
 
43421
+  ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
 
43422
+  ac_status=$?
 
43423
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
43424
+  (exit $ac_status); }; then
 
43425
+  pkg_cv_XINE_CFLAGS=`$PKG_CONFIG --cflags "$MM" 2>/dev/null`
 
43426
+else
 
43427
+  pkg_failed=yes
 
43428
+fi
 
43429
+    fi
 
43430
+else
 
43431
+       pkg_failed=untried
 
43432
+fi
 
43433
+if test -n "$PKG_CONFIG"; then
 
43434
+    if test -n "$XINE_LIBS"; then
 
43435
+        pkg_cv_XINE_LIBS="$XINE_LIBS"
 
43436
+    else
 
43437
+        if test -n "$PKG_CONFIG" && \
 
43438
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
 
43439
+  ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
 
43440
+  ac_status=$?
 
43441
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
43442
+  (exit $ac_status); }; then
 
43443
+  pkg_cv_XINE_LIBS=`$PKG_CONFIG --libs "$MM" 2>/dev/null`
 
43444
+else
 
43445
+  pkg_failed=yes
 
43446
+fi
 
43447
+    fi
 
43448
+else
 
43449
+       pkg_failed=untried
 
43450
+fi
 
43451
 
33748
43452
-# Transform the output of nm in a C name address pair
33749
43453
-global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
33750
 
-
 
43454
 
33751
43455
-# This is the shared library runtime path variable.
33752
43456
-runpath_var=$runpath_var
33753
 
-
 
43457
 
33754
43458
-# This is the shared library path variable.
33755
43459
-shlibpath_var=$shlibpath_var
33756
 
-
 
43460
+if test $pkg_failed = yes; then
 
43461
 
33757
43462
-# Is shlibpath searched before the hard-coded library search path?
33758
43463
-shlibpath_overrides_runpath=$shlibpath_overrides_runpath
33759
 
-
 
43464
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
43465
+        _pkg_short_errors_supported=yes
 
43466
+else
 
43467
+        _pkg_short_errors_supported=no
 
43468
+fi
 
43469
+        if test $_pkg_short_errors_supported = yes; then
 
43470
+               XINE_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$MM"`
 
43471
+        else
 
43472
+               XINE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$MM"`
 
43473
+        fi
 
43474
+       # Put the nasty error message in config.log where it belongs
 
43475
+       echo "$XINE_PKG_ERRORS" >&5
 
43476
 
33760
43477
-# How to hardcode a shared library path into an executable.
33761
43478
-hardcode_action=$hardcode_action_GCJ
33762
 
-
 
43479
+       { echo "$as_me:$LINENO: result: no" >&5
 
43480
+echo "${ECHO_T}no" >&6; }
 
43481
 
33763
43482
-# Whether we should hardcode library paths into libraries.
33764
43483
-hardcode_into_libs=$hardcode_into_libs
33765
 
-
 
43484
+                       { echo "$as_me:$LINENO: result: no" >&5
 
43485
+echo "${ECHO_T}no" >&6; }
 
43486
+                       HAVE_XINE=no
 
43487
 
33766
43488
-# Flag to hardcode \$libdir into a binary during linking.
33767
43489
-# This must work even if \$libdir does not exist.
33768
43490
-hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_GCJ
33769
 
-
 
43491
+elif test $pkg_failed = untried; then
 
43492
 
33770
43493
-# If ld is used when linking, flag to hardcode \$libdir into
33771
43494
-# a binary during linking. This must work even if \$libdir does
33772
43495
-# not exist.
33790
43513
-# Set to yes if building a shared library automatically hardcodes DIR into the library
33791
43514
-# and all subsequent libraries and executables linked against it.
33792
43515
-hardcode_automatic=$hardcode_automatic_GCJ
33793
 
+if test -x / >/dev/null 2>&1; then
33794
 
+  as_test_x='test -x'
33795
 
+else
33796
 
+  if ls -dL / >/dev/null 2>&1; then
33797
 
+    as_ls_L_option=L
33798
 
+  else
33799
 
+    as_ls_L_option=
33800
 
+  fi
33801
 
+  as_test_x='
33802
 
+    eval sh -c '\''
33803
 
+      if test -d "$1"; then
33804
 
+        test -d "$1/.";
33805
 
+      else
33806
 
+       case $1 in
33807
 
+        -*)set "./$1";;
33808
 
+       esac;
33809
 
+       case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
33810
 
+       ???[sx]*):;;*)false;;esac;fi
33811
 
+    '\'' sh
33812
 
+  '
33813
 
+fi
33814
 
+as_executable_p=$as_test_x
 
43516
+                       { echo "$as_me:$LINENO: result: no" >&5
 
43517
+echo "${ECHO_T}no" >&6; }
 
43518
+                       HAVE_XINE=no
33815
43519
 
33816
43520
-# Variables whose values should be saved in libtool wrapper scripts and
33817
43521
-# restored at relink time.
33818
43522
-variables_saved_for_relink="$variables_saved_for_relink"
33819
 
+# Sed expression to map a string onto a valid CPP name.
33820
 
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
43523
+else
 
43524
+       XINE_CFLAGS=$pkg_cv_XINE_CFLAGS
 
43525
+       XINE_LIBS=$pkg_cv_XINE_LIBS
 
43526
+        { echo "$as_me:$LINENO: result: yes" >&5
 
43527
+echo "${ECHO_T}yes" >&6; }
 
43528
+       HAVE_XINE=yes
 
43529
+fi
 
43530
+       { echo "$as_me:$LINENO: checking for backend libraries" >&5
 
43531
+echo $ECHO_N "checking for backend libraries... $ECHO_C" >&6; }
 
43532
+       if test x$HAVE_XINE = xyes; then
 
43533
+               { echo "$as_me:$LINENO: result: xine-lib" >&5
 
43534
+echo "${ECHO_T}xine-lib" >&6; }
 
43535
+        else
 
43536
+               { echo "$as_me:$LINENO: WARNING: No xine-lib found" >&5
 
43537
+echo "$as_me: WARNING: No xine-lib found" >&2;}
 
43538
+       fi
 
43539
+fi
33821
43540
 
33822
43541
-# Whether libtool must link a program against all its dependency libraries.
33823
43542
-link_all_deplibs=$link_all_deplibs_GCJ
33824
 
+# Sed expression to map a string onto a valid variable name.
33825
 
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 
43543
+if test "$HAVE_GSTREAMER" = "yes"; then
33826
43544
 
33827
43545
-# Compile-time system search path for libraries
33828
43546
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
 
43547
+cat >>confdefs.h <<\_ACEOF
 
43548
+#define HAVE_GSTREAMER 1
 
43549
+_ACEOF
33829
43550
 
33830
43551
-# Run-time system search path for libraries
33831
43552
-sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
 
43553
+fi
33832
43554
 
33833
43555
-# Fix the shell variable \$srcfile for the compiler.
33834
43556
-fix_srcfile_path=$lt_fix_srcfile_path
33835
 
+exec 6>&1
33836
 
+exec 5>>config.log
33837
 
+{
33838
 
+  echo
33839
 
+  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
33840
 
+## Running $as_me. ##
33841
 
+_ASBOX
33842
 
+} >&5
 
43557
+ if test "x$HAVE_GSTREAMER" = "xyes"; then
 
43558
+  TOTEM_GST_TRUE=
 
43559
+  TOTEM_GST_FALSE='#'
 
43560
+else
 
43561
+  TOTEM_GST_TRUE='#'
 
43562
+  TOTEM_GST_FALSE=
 
43563
+fi
33843
43564
 
33844
43565
-# Set to yes if exported symbols are required.
33845
43566
-always_export_symbols=$always_export_symbols_GCJ
33846
 
+lt_cl_help="\
33847
 
+\`$as_me' creates a local libtool stub from the current configuration,
33848
 
+for use in further configure time tests before the real libtool is
33849
 
+generated.
33850
43567
 
33851
43568
-# The commands to list exported symbols.
33852
43569
-export_symbols_cmds=$lt_export_symbols_cmds_GCJ
33853
 
+Usage: $0 [OPTIONS]
 
43570
+{ echo "$as_me:$LINENO: checking Whether not to check for iso-codes" >&5
 
43571
+echo $ECHO_N "checking Whether not to check for iso-codes... $ECHO_C" >&6; }
 
43572
+# Check whether --enable-iso-codes was given.
 
43573
+if test "${enable_iso_codes+set}" = set; then
 
43574
+  enableval=$enable_iso_codes;
 
43575
+else
 
43576
+  disable_iso_codes_check=no
 
43577
+fi
33854
43578
 
33855
43579
-# The commands to extract the exported symbol list from a shared archive.
33856
43580
-extract_expsyms_cmds=$lt_extract_expsyms_cmds
33857
 
+  -h, --help      print this help, then exit
33858
 
+  -V, --version   print version number, then exit
33859
 
+  -q, --quiet     do not print progress messages
33860
 
+  -d, --debug     don't remove temporary files
 
43581
+if test x$disable_iso_codes_check = xno ; then
 
43582
+       { echo "$as_me:$LINENO: result: no" >&5
 
43583
+echo "${ECHO_T}no" >&6; }
 
43584
+else
 
43585
+       { echo "$as_me:$LINENO: result: yes" >&5
 
43586
+echo "${ECHO_T}yes" >&6; }
 
43587
+fi
33861
43588
 
33862
43589
-# Symbols that should not be listed in the preloaded symbols.
33863
43590
-exclude_expsyms=$lt_exclude_expsyms_GCJ
33864
 
+Report bugs to <bug-libtool@gnu.org>."
 
43591
+if test x$disable_iso_codes_check = "xno" ; then
 
43592
+       { echo "$as_me:$LINENO: checking whether iso-codes has iso-639 domain" >&5
 
43593
+echo $ECHO_N "checking whether iso-codes has iso-639 domain... $ECHO_C" >&6; }
 
43594
+       if $PKG_CONFIG --variable=domains iso-codes | grep 639 >/dev/null ; then
 
43595
+               { echo "$as_me:$LINENO: result: yes" >&5
 
43596
+echo "${ECHO_T}yes" >&6; }
 
43597
+       else
 
43598
+               { echo "$as_me:$LINENO: result: no" >&5
 
43599
+echo "${ECHO_T}no" >&6; }
 
43600
+       fi
33865
43601
 
33866
43602
-# Symbols that must always be exported.
33867
43603
-include_expsyms=$lt_include_expsyms_GCJ
33868
 
+lt_cl_version="\
33869
 
+totem config.lt 2.24.2
33870
 
+configured by $0, generated by GNU Autoconf 2.61.
33871
 
+
33872
 
+Copyright (C) 2008 Free Software Foundation, Inc.
33873
 
+This config.lt script is free software; the Free Software Foundation
33874
 
+gives unlimited permision to copy, distribute and modify it."
 
43604
+cat >>confdefs.h <<_ACEOF
 
43605
+#define ISO_CODES_PREFIX "`$PKG_CONFIG --variable=prefix iso-codes`"
 
43606
+_ACEOF
33875
43607
 
33876
43608
-# ### END LIBTOOL TAG CONFIG: $tagname
33877
 
+while test $# != 0
33878
 
+do
33879
 
+  case $1 in
33880
 
+    --version | --v* | -V )
33881
 
+      echo "$lt_cl_version"; exit 0 ;;
33882
 
+    --help | --h* | -h )
33883
 
+      echo "$lt_cl_help"; exit 0 ;;
33884
 
+    --debug | --d* | -d )
33885
 
+      debug=: ;;
33886
 
+    --quiet | --q* | --silent | --s* | -q )
33887
 
+      lt_cl_silent=: ;;
 
43609
+       ISO_CODES=iso-codes
 
43610
+else
33888
43611
 
33889
43612
-__EOF__
33890
 
+    -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
33891
 
+Try \`$0 --help' for more information." >&5
33892
 
+echo "$as_me: error: unrecognized option: $1
33893
 
+Try \`$0 --help' for more information." >&2;}
33894
 
+   { (exit 1); exit 1; }; } ;;
33895
 
 
33896
 
+    *) { { echo "$as_me:$LINENO: error: unrecognized argument: $1
33897
 
+Try \`$0 --help' for more information." >&5
33898
 
+echo "$as_me: error: unrecognized argument: $1
33899
 
+Try \`$0 --help' for more information." >&2;}
33900
 
+   { (exit 1); exit 1; }; } ;;
33901
 
+  esac
33902
 
+  shift
33903
 
+done
33904
 
 
33905
 
-else
 
43613
+cat >>confdefs.h <<_ACEOF
 
43614
+#define ISO_CODES_PREFIX "$prefix"
 
43615
+_ACEOF
 
43616
 
 
43617
+       ISO_CODES=""
 
43618
+fi
 
43619
 
 
43620
+# Check whether --enable-gtk was given.
 
43621
+if test "${enable_gtk+set}" = set; then
 
43622
+  enableval=$enable_gtk; case "${enableval}" in
 
43623
+       yes) ENABLE_GTK=yes ;;
 
43624
+       no) ENABLE_GTK=no ;;
 
43625
+       *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --disable-gtk" >&5
 
43626
+echo "$as_me: error: bad value ${enableval} for --disable-gtk" >&2;}
 
43627
+   { (exit 1); exit 1; }; } ;;
 
43628
+       esac
 
43629
 else
33906
43630
-  # If there is no Makefile yet, we rely on a make rule to execute
33907
43631
-  # `config.status --recheck' to rerun these tests and create the
33908
43632
-  # libtool script then.
33910
43634
-  if test -f "$ltmain_in"; then
33911
43635
-    test -f Makefile && make "$ltmain"
33912
43636
-  fi
33913
 
+if $lt_cl_silent; then
33914
 
+  exec 6>/dev/null
 
43637
+  ENABLE_GTK=no
33915
43638
 fi
33916
 
+_LTEOF
33917
43639
 
33918
 
+cat >>"$CONFIG_LT" <<_LTEOF
 
43640
+if test x$ENABLE_GTK = "xno" ; then
 
43641
+# FIXME: use gmodule-no-export instead!
33919
43642
 
33920
43643
-ac_ext=c
33921
43644
-ac_cpp='$CPP $CPPFLAGS'
33929
43652
-         tagname=""
33930
43653
-       fi
33931
43654
-       ;;
33932
 
-
 
43655
+pkg_failed=no
 
43656
+{ echo "$as_me:$LINENO: checking for EXTRA_GNOME" >&5
 
43657
+echo $ECHO_N "checking for EXTRA_GNOME... $ECHO_C" >&6; }
 
43658
 
33933
43659
-      RC)
33934
 
-
33935
 
-
 
43660
+if test -n "$PKG_CONFIG"; then
 
43661
+    if test -n "$EXTRA_GNOME_CFLAGS"; then
 
43662
+        pkg_cv_EXTRA_GNOME_CFLAGS="$EXTRA_GNOME_CFLAGS"
 
43663
+    else
 
43664
+        if test -n "$PKG_CONFIG" && \
 
43665
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS launchpad-integration gtk+-2.0 >= \$GTK_REQS libgnomeui-2.0 >= \$GNOMEUI_REQS gio-2.0 libgnome-2.0 >= \$LIBGNOME_REQS gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
 
43666
+  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
 
43667
+  ac_status=$?
 
43668
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
43669
+  (exit $ac_status); }; then
 
43670
+  pkg_cv_EXTRA_GNOME_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
 
43671
+else
 
43672
+  pkg_failed=yes
 
43673
+fi
 
43674
+    fi
 
43675
+else
 
43676
+       pkg_failed=untried
 
43677
+fi
 
43678
+if test -n "$PKG_CONFIG"; then
 
43679
+    if test -n "$EXTRA_GNOME_LIBS"; then
 
43680
+        pkg_cv_EXTRA_GNOME_LIBS="$EXTRA_GNOME_LIBS"
 
43681
+    else
 
43682
+        if test -n "$PKG_CONFIG" && \
 
43683
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS launchpad-integration gtk+-2.0 >= \$GTK_REQS libgnomeui-2.0 >= \$GNOMEUI_REQS gio-2.0 libgnome-2.0 >= \$LIBGNOME_REQS gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
 
43684
+  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
 
43685
+  ac_status=$?
 
43686
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
43687
+  (exit $ac_status); }; then
 
43688
+  pkg_cv_EXTRA_GNOME_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
 
43689
+else
 
43690
+  pkg_failed=yes
 
43691
+fi
 
43692
+    fi
 
43693
+else
 
43694
+       pkg_failed=untried
 
43695
+fi
 
43696
 
 
43697
 
33936
43698
-# Source file extension for RC test sources.
33937
43699
-ac_ext=rc
33938
 
-
 
43700
 
33939
43701
-# Object file extension for compiled RC test sources.
33940
43702
-objext=o
33941
43703
-objext_RC=$objext
33942
 
-
 
43704
+if test $pkg_failed = yes; then
 
43705
 
33943
43706
-# Code to be used in simple compile tests
33944
43707
-lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }'
 
43708
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
43709
+        _pkg_short_errors_supported=yes
 
43710
+else
 
43711
+        _pkg_short_errors_supported=no
 
43712
+fi
 
43713
+        if test $_pkg_short_errors_supported = yes; then
 
43714
+               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES"`
 
43715
+        else
 
43716
+               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES"`
 
43717
+        fi
 
43718
+       # Put the nasty error message in config.log where it belongs
 
43719
+       echo "$EXTRA_GNOME_PKG_ERRORS" >&5
33945
43720
 
33946
43721
-# Code to be used in simple link tests
33947
43722
-lt_simple_link_test_code="$lt_simple_compile_test_code"
33948
 
+# The HP-UX ksh and POSIX shell print the target directory to stdout
33949
 
+# if CDPATH is set.
33950
 
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
43723
+       { { echo "$as_me:$LINENO: error: Package requirements (glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
33951
43724
 
33952
43725
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
33953
 
+sed_quote_subst='$sed_quote_subst'
33954
 
+double_quote_subst='$double_quote_subst'
33955
 
+delay_variable_subst='$delay_variable_subst'
33956
 
+macro_version='`$ECHO "X$macro_version" | $Xsed -e "$delay_single_quote_subst"`'
33957
 
+macro_revision='`$ECHO "X$macro_revision" | $Xsed -e "$delay_single_quote_subst"`'
33958
 
+enable_shared='`$ECHO "X$enable_shared" | $Xsed -e "$delay_single_quote_subst"`'
33959
 
+enable_static='`$ECHO "X$enable_static" | $Xsed -e "$delay_single_quote_subst"`'
33960
 
+pic_mode='`$ECHO "X$pic_mode" | $Xsed -e "$delay_single_quote_subst"`'
33961
 
+enable_fast_install='`$ECHO "X$enable_fast_install" | $Xsed -e "$delay_single_quote_subst"`'
33962
 
+host_alias='`$ECHO "X$host_alias" | $Xsed -e "$delay_single_quote_subst"`'
33963
 
+host='`$ECHO "X$host" | $Xsed -e "$delay_single_quote_subst"`'
33964
 
+host_os='`$ECHO "X$host_os" | $Xsed -e "$delay_single_quote_subst"`'
33965
 
+build_alias='`$ECHO "X$build_alias" | $Xsed -e "$delay_single_quote_subst"`'
33966
 
+build='`$ECHO "X$build" | $Xsed -e "$delay_single_quote_subst"`'
33967
 
+build_os='`$ECHO "X$build_os" | $Xsed -e "$delay_single_quote_subst"`'
33968
 
+SED='`$ECHO "X$SED" | $Xsed -e "$delay_single_quote_subst"`'
33969
 
+Xsed='`$ECHO "X$Xsed" | $Xsed -e "$delay_single_quote_subst"`'
33970
 
+GREP='`$ECHO "X$GREP" | $Xsed -e "$delay_single_quote_subst"`'
33971
 
+EGREP='`$ECHO "X$EGREP" | $Xsed -e "$delay_single_quote_subst"`'
33972
 
+FGREP='`$ECHO "X$FGREP" | $Xsed -e "$delay_single_quote_subst"`'
33973
 
+LD='`$ECHO "X$LD" | $Xsed -e "$delay_single_quote_subst"`'
33974
 
+NM='`$ECHO "X$NM" | $Xsed -e "$delay_single_quote_subst"`'
33975
 
+LN_S='`$ECHO "X$LN_S" | $Xsed -e "$delay_single_quote_subst"`'
33976
 
+max_cmd_len='`$ECHO "X$max_cmd_len" | $Xsed -e "$delay_single_quote_subst"`'
33977
 
+ac_objext='`$ECHO "X$ac_objext" | $Xsed -e "$delay_single_quote_subst"`'
33978
 
+exeext='`$ECHO "X$exeext" | $Xsed -e "$delay_single_quote_subst"`'
33979
 
+lt_unset='`$ECHO "X$lt_unset" | $Xsed -e "$delay_single_quote_subst"`'
33980
 
+lt_SP2NL='`$ECHO "X$lt_SP2NL" | $Xsed -e "$delay_single_quote_subst"`'
33981
 
+lt_NL2SP='`$ECHO "X$lt_NL2SP" | $Xsed -e "$delay_single_quote_subst"`'
33982
 
+reload_flag='`$ECHO "X$reload_flag" | $Xsed -e "$delay_single_quote_subst"`'
33983
 
+reload_cmds='`$ECHO "X$reload_cmds" | $Xsed -e "$delay_single_quote_subst"`'
33984
 
+deplibs_check_method='`$ECHO "X$deplibs_check_method" | $Xsed -e "$delay_single_quote_subst"`'
33985
 
+file_magic_cmd='`$ECHO "X$file_magic_cmd" | $Xsed -e "$delay_single_quote_subst"`'
33986
 
+AR='`$ECHO "X$AR" | $Xsed -e "$delay_single_quote_subst"`'
33987
 
+AR_FLAGS='`$ECHO "X$AR_FLAGS" | $Xsed -e "$delay_single_quote_subst"`'
33988
 
+STRIP='`$ECHO "X$STRIP" | $Xsed -e "$delay_single_quote_subst"`'
33989
 
+RANLIB='`$ECHO "X$RANLIB" | $Xsed -e "$delay_single_quote_subst"`'
33990
 
+old_postinstall_cmds='`$ECHO "X$old_postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
33991
 
+old_postuninstall_cmds='`$ECHO "X$old_postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
33992
 
+old_archive_cmds='`$ECHO "X$old_archive_cmds" | $Xsed -e "$delay_single_quote_subst"`'
33993
 
+CC='`$ECHO "X$CC" | $Xsed -e "$delay_single_quote_subst"`'
33994
 
+CFLAGS='`$ECHO "X$CFLAGS" | $Xsed -e "$delay_single_quote_subst"`'
33995
 
+compiler='`$ECHO "X$compiler" | $Xsed -e "$delay_single_quote_subst"`'
33996
 
+GCC='`$ECHO "X$GCC" | $Xsed -e "$delay_single_quote_subst"`'
33997
 
+lt_cv_sys_global_symbol_pipe='`$ECHO "X$lt_cv_sys_global_symbol_pipe" | $Xsed -e "$delay_single_quote_subst"`'
33998
 
+lt_cv_sys_global_symbol_to_cdecl='`$ECHO "X$lt_cv_sys_global_symbol_to_cdecl" | $Xsed -e "$delay_single_quote_subst"`'
33999
 
+lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address" | $Xsed -e "$delay_single_quote_subst"`'
34000
 
+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`'
34001
 
+objdir='`$ECHO "X$objdir" | $Xsed -e "$delay_single_quote_subst"`'
34002
 
+SHELL='`$ECHO "X$SHELL" | $Xsed -e "$delay_single_quote_subst"`'
34003
 
+ECHO='`$ECHO "X$ECHO" | $Xsed -e "$delay_single_quote_subst"`'
34004
 
+MAGIC_CMD='`$ECHO "X$MAGIC_CMD" | $Xsed -e "$delay_single_quote_subst"`'
34005
 
+lt_prog_compiler_no_builtin_flag='`$ECHO "X$lt_prog_compiler_no_builtin_flag" | $Xsed -e "$delay_single_quote_subst"`'
34006
 
+lt_prog_compiler_wl='`$ECHO "X$lt_prog_compiler_wl" | $Xsed -e "$delay_single_quote_subst"`'
34007
 
+lt_prog_compiler_pic='`$ECHO "X$lt_prog_compiler_pic" | $Xsed -e "$delay_single_quote_subst"`'
34008
 
+lt_prog_compiler_static='`$ECHO "X$lt_prog_compiler_static" | $Xsed -e "$delay_single_quote_subst"`'
34009
 
+lt_cv_prog_compiler_c_o='`$ECHO "X$lt_cv_prog_compiler_c_o" | $Xsed -e "$delay_single_quote_subst"`'
34010
 
+need_locks='`$ECHO "X$need_locks" | $Xsed -e "$delay_single_quote_subst"`'
34011
 
+DSYMUTIL='`$ECHO "X$DSYMUTIL" | $Xsed -e "$delay_single_quote_subst"`'
34012
 
+NMEDIT='`$ECHO "X$NMEDIT" | $Xsed -e "$delay_single_quote_subst"`'
34013
 
+LIPO='`$ECHO "X$LIPO" | $Xsed -e "$delay_single_quote_subst"`'
34014
 
+OTOOL='`$ECHO "X$OTOOL" | $Xsed -e "$delay_single_quote_subst"`'
34015
 
+OTOOL64='`$ECHO "X$OTOOL64" | $Xsed -e "$delay_single_quote_subst"`'
34016
 
+libext='`$ECHO "X$libext" | $Xsed -e "$delay_single_quote_subst"`'
34017
 
+shrext_cmds='`$ECHO "X$shrext_cmds" | $Xsed -e "$delay_single_quote_subst"`'
34018
 
+extract_expsyms_cmds='`$ECHO "X$extract_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`'
34019
 
+archive_cmds_need_lc='`$ECHO "X$archive_cmds_need_lc" | $Xsed -e "$delay_single_quote_subst"`'
34020
 
+enable_shared_with_static_runtimes='`$ECHO "X$enable_shared_with_static_runtimes" | $Xsed -e "$delay_single_quote_subst"`'
34021
 
+export_dynamic_flag_spec='`$ECHO "X$export_dynamic_flag_spec" | $Xsed -e "$delay_single_quote_subst"`'
34022
 
+whole_archive_flag_spec='`$ECHO "X$whole_archive_flag_spec" | $Xsed -e "$delay_single_quote_subst"`'
34023
 
+compiler_needs_object='`$ECHO "X$compiler_needs_object" | $Xsed -e "$delay_single_quote_subst"`'
34024
 
+old_archive_from_new_cmds='`$ECHO "X$old_archive_from_new_cmds" | $Xsed -e "$delay_single_quote_subst"`'
34025
 
+old_archive_from_expsyms_cmds='`$ECHO "X$old_archive_from_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`'
34026
 
+archive_cmds='`$ECHO "X$archive_cmds" | $Xsed -e "$delay_single_quote_subst"`'
34027
 
+archive_expsym_cmds='`$ECHO "X$archive_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`'
34028
 
+module_cmds='`$ECHO "X$module_cmds" | $Xsed -e "$delay_single_quote_subst"`'
34029
 
+module_expsym_cmds='`$ECHO "X$module_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`'
34030
 
+with_gnu_ld='`$ECHO "X$with_gnu_ld" | $Xsed -e "$delay_single_quote_subst"`'
34031
 
+allow_undefined_flag='`$ECHO "X$allow_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`'
34032
 
+no_undefined_flag='`$ECHO "X$no_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`'
34033
 
+hardcode_libdir_flag_spec='`$ECHO "X$hardcode_libdir_flag_spec" | $Xsed -e "$delay_single_quote_subst"`'
34034
 
+hardcode_libdir_flag_spec_ld='`$ECHO "X$hardcode_libdir_flag_spec_ld" | $Xsed -e "$delay_single_quote_subst"`'
34035
 
+hardcode_libdir_separator='`$ECHO "X$hardcode_libdir_separator" | $Xsed -e "$delay_single_quote_subst"`'
34036
 
+hardcode_direct='`$ECHO "X$hardcode_direct" | $Xsed -e "$delay_single_quote_subst"`'
34037
 
+hardcode_direct_absolute='`$ECHO "X$hardcode_direct_absolute" | $Xsed -e "$delay_single_quote_subst"`'
34038
 
+hardcode_minus_L='`$ECHO "X$hardcode_minus_L" | $Xsed -e "$delay_single_quote_subst"`'
34039
 
+hardcode_shlibpath_var='`$ECHO "X$hardcode_shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`'
34040
 
+hardcode_automatic='`$ECHO "X$hardcode_automatic" | $Xsed -e "$delay_single_quote_subst"`'
34041
 
+inherit_rpath='`$ECHO "X$inherit_rpath" | $Xsed -e "$delay_single_quote_subst"`'
34042
 
+link_all_deplibs='`$ECHO "X$link_all_deplibs" | $Xsed -e "$delay_single_quote_subst"`'
34043
 
+fix_srcfile_path='`$ECHO "X$fix_srcfile_path" | $Xsed -e "$delay_single_quote_subst"`'
34044
 
+always_export_symbols='`$ECHO "X$always_export_symbols" | $Xsed -e "$delay_single_quote_subst"`'
34045
 
+export_symbols_cmds='`$ECHO "X$export_symbols_cmds" | $Xsed -e "$delay_single_quote_subst"`'
34046
 
+exclude_expsyms='`$ECHO "X$exclude_expsyms" | $Xsed -e "$delay_single_quote_subst"`'
34047
 
+include_expsyms='`$ECHO "X$include_expsyms" | $Xsed -e "$delay_single_quote_subst"`'
34048
 
+prelink_cmds='`$ECHO "X$prelink_cmds" | $Xsed -e "$delay_single_quote_subst"`'
34049
 
+file_list_spec='`$ECHO "X$file_list_spec" | $Xsed -e "$delay_single_quote_subst"`'
34050
 
+variables_saved_for_relink='`$ECHO "X$variables_saved_for_relink" | $Xsed -e "$delay_single_quote_subst"`'
34051
 
+need_lib_prefix='`$ECHO "X$need_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`'
34052
 
+need_version='`$ECHO "X$need_version" | $Xsed -e "$delay_single_quote_subst"`'
34053
 
+version_type='`$ECHO "X$version_type" | $Xsed -e "$delay_single_quote_subst"`'
34054
 
+runpath_var='`$ECHO "X$runpath_var" | $Xsed -e "$delay_single_quote_subst"`'
34055
 
+shlibpath_var='`$ECHO "X$shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`'
34056
 
+shlibpath_overrides_runpath='`$ECHO "X$shlibpath_overrides_runpath" | $Xsed -e "$delay_single_quote_subst"`'
34057
 
+libname_spec='`$ECHO "X$libname_spec" | $Xsed -e "$delay_single_quote_subst"`'
34058
 
+library_names_spec='`$ECHO "X$library_names_spec" | $Xsed -e "$delay_single_quote_subst"`'
34059
 
+soname_spec='`$ECHO "X$soname_spec" | $Xsed -e "$delay_single_quote_subst"`'
34060
 
+postinstall_cmds='`$ECHO "X$postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
34061
 
+postuninstall_cmds='`$ECHO "X$postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`'
34062
 
+finish_cmds='`$ECHO "X$finish_cmds" | $Xsed -e "$delay_single_quote_subst"`'
34063
 
+finish_eval='`$ECHO "X$finish_eval" | $Xsed -e "$delay_single_quote_subst"`'
34064
 
+hardcode_into_libs='`$ECHO "X$hardcode_into_libs" | $Xsed -e "$delay_single_quote_subst"`'
34065
 
+sys_lib_search_path_spec='`$ECHO "X$sys_lib_search_path_spec" | $Xsed -e "$delay_single_quote_subst"`'
34066
 
+sys_lib_dlsearch_path_spec='`$ECHO "X$sys_lib_dlsearch_path_spec" | $Xsed -e "$delay_single_quote_subst"`'
34067
 
+hardcode_action='`$ECHO "X$hardcode_action" | $Xsed -e "$delay_single_quote_subst"`'
34068
 
+enable_dlopen='`$ECHO "X$enable_dlopen" | $Xsed -e "$delay_single_quote_subst"`'
34069
 
+enable_dlopen_self='`$ECHO "X$enable_dlopen_self" | $Xsed -e "$delay_single_quote_subst"`'
34070
 
+enable_dlopen_self_static='`$ECHO "X$enable_dlopen_self_static" | $Xsed -e "$delay_single_quote_subst"`'
34071
 
+old_striplib='`$ECHO "X$old_striplib" | $Xsed -e "$delay_single_quote_subst"`'
34072
 
+striplib='`$ECHO "X$striplib" | $Xsed -e "$delay_single_quote_subst"`'
34073
 
+compiler_lib_search_dirs='`$ECHO "X$compiler_lib_search_dirs" | $Xsed -e "$delay_single_quote_subst"`'
34074
 
+predep_objects='`$ECHO "X$predep_objects" | $Xsed -e "$delay_single_quote_subst"`'
34075
 
+postdep_objects='`$ECHO "X$postdep_objects" | $Xsed -e "$delay_single_quote_subst"`'
34076
 
+predeps='`$ECHO "X$predeps" | $Xsed -e "$delay_single_quote_subst"`'
34077
 
+postdeps='`$ECHO "X$postdeps" | $Xsed -e "$delay_single_quote_subst"`'
34078
 
+compiler_lib_search_path='`$ECHO "X$compiler_lib_search_path" | $Xsed -e "$delay_single_quote_subst"`'
34079
 
+LD_CXX='`$ECHO "X$LD_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34080
 
+old_archive_cmds_CXX='`$ECHO "X$old_archive_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34081
 
+compiler_CXX='`$ECHO "X$compiler_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34082
 
+GCC_CXX='`$ECHO "X$GCC_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34083
 
+lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "X$lt_prog_compiler_no_builtin_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34084
 
+lt_prog_compiler_wl_CXX='`$ECHO "X$lt_prog_compiler_wl_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34085
 
+lt_prog_compiler_pic_CXX='`$ECHO "X$lt_prog_compiler_pic_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34086
 
+lt_prog_compiler_static_CXX='`$ECHO "X$lt_prog_compiler_static_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34087
 
+lt_cv_prog_compiler_c_o_CXX='`$ECHO "X$lt_cv_prog_compiler_c_o_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34088
 
+archive_cmds_need_lc_CXX='`$ECHO "X$archive_cmds_need_lc_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34089
 
+enable_shared_with_static_runtimes_CXX='`$ECHO "X$enable_shared_with_static_runtimes_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34090
 
+export_dynamic_flag_spec_CXX='`$ECHO "X$export_dynamic_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34091
 
+whole_archive_flag_spec_CXX='`$ECHO "X$whole_archive_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34092
 
+compiler_needs_object_CXX='`$ECHO "X$compiler_needs_object_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34093
 
+old_archive_from_new_cmds_CXX='`$ECHO "X$old_archive_from_new_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34094
 
+old_archive_from_expsyms_cmds_CXX='`$ECHO "X$old_archive_from_expsyms_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34095
 
+archive_cmds_CXX='`$ECHO "X$archive_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34096
 
+archive_expsym_cmds_CXX='`$ECHO "X$archive_expsym_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34097
 
+module_cmds_CXX='`$ECHO "X$module_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34098
 
+module_expsym_cmds_CXX='`$ECHO "X$module_expsym_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34099
 
+with_gnu_ld_CXX='`$ECHO "X$with_gnu_ld_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34100
 
+allow_undefined_flag_CXX='`$ECHO "X$allow_undefined_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34101
 
+no_undefined_flag_CXX='`$ECHO "X$no_undefined_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34102
 
+hardcode_libdir_flag_spec_CXX='`$ECHO "X$hardcode_libdir_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34103
 
+hardcode_libdir_flag_spec_ld_CXX='`$ECHO "X$hardcode_libdir_flag_spec_ld_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34104
 
+hardcode_libdir_separator_CXX='`$ECHO "X$hardcode_libdir_separator_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34105
 
+hardcode_direct_CXX='`$ECHO "X$hardcode_direct_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34106
 
+hardcode_direct_absolute_CXX='`$ECHO "X$hardcode_direct_absolute_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34107
 
+hardcode_minus_L_CXX='`$ECHO "X$hardcode_minus_L_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34108
 
+hardcode_shlibpath_var_CXX='`$ECHO "X$hardcode_shlibpath_var_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34109
 
+hardcode_automatic_CXX='`$ECHO "X$hardcode_automatic_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34110
 
+inherit_rpath_CXX='`$ECHO "X$inherit_rpath_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34111
 
+link_all_deplibs_CXX='`$ECHO "X$link_all_deplibs_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34112
 
+fix_srcfile_path_CXX='`$ECHO "X$fix_srcfile_path_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34113
 
+always_export_symbols_CXX='`$ECHO "X$always_export_symbols_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34114
 
+export_symbols_cmds_CXX='`$ECHO "X$export_symbols_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34115
 
+exclude_expsyms_CXX='`$ECHO "X$exclude_expsyms_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34116
 
+include_expsyms_CXX='`$ECHO "X$include_expsyms_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34117
 
+prelink_cmds_CXX='`$ECHO "X$prelink_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34118
 
+file_list_spec_CXX='`$ECHO "X$file_list_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34119
 
+hardcode_action_CXX='`$ECHO "X$hardcode_action_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34120
 
+compiler_lib_search_dirs_CXX='`$ECHO "X$compiler_lib_search_dirs_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34121
 
+predep_objects_CXX='`$ECHO "X$predep_objects_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34122
 
+postdep_objects_CXX='`$ECHO "X$postdep_objects_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34123
 
+predeps_CXX='`$ECHO "X$predeps_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34124
 
+postdeps_CXX='`$ECHO "X$postdeps_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34125
 
+compiler_lib_search_path_CXX='`$ECHO "X$compiler_lib_search_path_CXX" | $Xsed -e "$delay_single_quote_subst"`'
34126
 
+
34127
 
+LTCC='$LTCC'
34128
 
+LTCFLAGS='$LTCFLAGS'
34129
 
+compiler='$compiler_DEFAULT'
34130
 
+
34131
 
+# Quote evaled strings.
34132
 
+for var in SED \
34133
 
+GREP \
34134
 
+EGREP \
34135
 
+FGREP \
34136
 
+LD \
34137
 
+NM \
34138
 
+LN_S \
34139
 
+lt_SP2NL \
34140
 
+lt_NL2SP \
34141
 
+reload_flag \
34142
 
+deplibs_check_method \
34143
 
+file_magic_cmd \
34144
 
+AR \
34145
 
+AR_FLAGS \
34146
 
+STRIP \
34147
 
+RANLIB \
34148
 
+CC \
34149
 
+CFLAGS \
34150
 
+compiler \
34151
 
+lt_cv_sys_global_symbol_pipe \
34152
 
+lt_cv_sys_global_symbol_to_cdecl \
34153
 
+lt_cv_sys_global_symbol_to_c_name_address \
34154
 
+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \
34155
 
+SHELL \
34156
 
+ECHO \
34157
 
+lt_prog_compiler_no_builtin_flag \
34158
 
+lt_prog_compiler_wl \
34159
 
+lt_prog_compiler_pic \
34160
 
+lt_prog_compiler_static \
34161
 
+lt_cv_prog_compiler_c_o \
34162
 
+need_locks \
34163
 
+DSYMUTIL \
34164
 
+NMEDIT \
34165
 
+LIPO \
34166
 
+OTOOL \
34167
 
+OTOOL64 \
34168
 
+shrext_cmds \
34169
 
+export_dynamic_flag_spec \
34170
 
+whole_archive_flag_spec \
34171
 
+compiler_needs_object \
34172
 
+with_gnu_ld \
34173
 
+allow_undefined_flag \
34174
 
+no_undefined_flag \
34175
 
+hardcode_libdir_flag_spec \
34176
 
+hardcode_libdir_flag_spec_ld \
34177
 
+hardcode_libdir_separator \
34178
 
+fix_srcfile_path \
34179
 
+exclude_expsyms \
34180
 
+include_expsyms \
34181
 
+file_list_spec \
34182
 
+variables_saved_for_relink \
34183
 
+libname_spec \
34184
 
+library_names_spec \
34185
 
+soname_spec \
34186
 
+finish_eval \
34187
 
+old_striplib \
34188
 
+striplib \
34189
 
+compiler_lib_search_dirs \
34190
 
+predep_objects \
34191
 
+postdep_objects \
34192
 
+predeps \
34193
 
+postdeps \
34194
 
+compiler_lib_search_path \
34195
 
+LD_CXX \
34196
 
+compiler_CXX \
34197
 
+lt_prog_compiler_no_builtin_flag_CXX \
34198
 
+lt_prog_compiler_wl_CXX \
34199
 
+lt_prog_compiler_pic_CXX \
34200
 
+lt_prog_compiler_static_CXX \
34201
 
+lt_cv_prog_compiler_c_o_CXX \
34202
 
+export_dynamic_flag_spec_CXX \
34203
 
+whole_archive_flag_spec_CXX \
34204
 
+compiler_needs_object_CXX \
34205
 
+with_gnu_ld_CXX \
34206
 
+allow_undefined_flag_CXX \
34207
 
+no_undefined_flag_CXX \
34208
 
+hardcode_libdir_flag_spec_CXX \
34209
 
+hardcode_libdir_flag_spec_ld_CXX \
34210
 
+hardcode_libdir_separator_CXX \
34211
 
+fix_srcfile_path_CXX \
34212
 
+exclude_expsyms_CXX \
34213
 
+include_expsyms_CXX \
34214
 
+file_list_spec_CXX \
34215
 
+compiler_lib_search_dirs_CXX \
34216
 
+predep_objects_CXX \
34217
 
+postdep_objects_CXX \
34218
 
+predeps_CXX \
34219
 
+postdeps_CXX \
34220
 
+compiler_lib_search_path_CXX; do
34221
 
+    case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in
34222
 
+    *[\\\\\\\`\\"\\\$]*)
34223
 
+      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$sed_quote_subst\\"\\\`\\\\\\""
34224
 
+      ;;
34225
 
+    *)
34226
 
+      eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
34227
 
+      ;;
34228
 
+    esac
34229
 
+done
34230
 
+
34231
 
+# Double-quote double-evaled strings.
34232
 
+for var in reload_cmds \
34233
 
+old_postinstall_cmds \
34234
 
+old_postuninstall_cmds \
34235
 
+old_archive_cmds \
34236
 
+extract_expsyms_cmds \
34237
 
+old_archive_from_new_cmds \
34238
 
+old_archive_from_expsyms_cmds \
34239
 
+archive_cmds \
34240
 
+archive_expsym_cmds \
34241
 
+module_cmds \
34242
 
+module_expsym_cmds \
34243
 
+export_symbols_cmds \
34244
 
+prelink_cmds \
34245
 
+postinstall_cmds \
34246
 
+postuninstall_cmds \
34247
 
+finish_cmds \
34248
 
+sys_lib_search_path_spec \
34249
 
+sys_lib_dlsearch_path_spec \
34250
 
+old_archive_cmds_CXX \
34251
 
+old_archive_from_new_cmds_CXX \
34252
 
+old_archive_from_expsyms_cmds_CXX \
34253
 
+archive_cmds_CXX \
34254
 
+archive_expsym_cmds_CXX \
34255
 
+module_cmds_CXX \
34256
 
+module_expsym_cmds_CXX \
34257
 
+export_symbols_cmds_CXX \
34258
 
+prelink_cmds_CXX; do
34259
 
+    case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in
34260
 
+    *[\\\\\\\`\\"\\\$]*)
34261
 
+      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\""
34262
 
+      ;;
34263
 
+    *)
34264
 
+      eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
34265
 
+      ;;
34266
 
+    esac
34267
 
+done
34268
 
+
34269
 
+# Fix-up fallback echo if it was mangled by the above quoting rules.
34270
 
+case \$lt_ECHO in
34271
 
+*'\\\$0 --fallback-echo"')  lt_ECHO=\`\$ECHO "X\$lt_ECHO" | \$Xsed -e 's/\\\\\\\\\\\\\\\$0 --fallback-echo"\$/\$0 --fallback-echo"/'\`
34272
 
+  ;;
34273
 
+esac
34274
 
+
34275
 
+ac_aux_dir='$ac_aux_dir'
34276
 
+xsi_shell='$xsi_shell'
34277
 
+lt_shell_append='$lt_shell_append'
34278
 
+
34279
 
+# See if we are running on zsh, and set the options which allow our
34280
 
+# commands through without removal of \ escapes INIT.
34281
 
+if test -n "\${ZSH_VERSION+set}" ; then
34282
 
+   setopt NO_GLOB_SUBST
34283
 
+fi
 
43726
+$EXTRA_GNOME_PKG_ERRORS
34284
43727
 
34285
43728
-# If no C compiler was specified, use CC.
34286
43729
-LTCC=${LTCC-"$CC"}
 
43730
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
43731
+installed software in a non-standard prefix.
34287
43732
 
34288
43733
-# If no C compiler flags were specified, use CFLAGS.
34289
43734
-LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
34290
 
+    PACKAGE='$PACKAGE'
34291
 
+    VERSION='$VERSION'
34292
 
+    TIMESTAMP='$TIMESTAMP'
34293
 
+    RM='$RM'
34294
 
+    ofile='$ofile'
 
43735
+Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
43736
+and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
43737
+See the pkg-config man page for more details.
 
43738
+" >&5
 
43739
+echo "$as_me: error: Package requirements (glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
34295
43740
 
34296
43741
-# Allow CC to be a program name with arguments.
34297
43742
-compiler=$CC
 
43743
+$EXTRA_GNOME_PKG_ERRORS
34298
43744
 
 
43745
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
43746
+installed software in a non-standard prefix.
34299
43747
 
34300
43748
-# save warnings/boilerplate of simple test code
34301
43749
-ac_outfile=conftest.$ac_objext
34303
43751
-eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
34304
43752
-_lt_compiler_boilerplate=`cat conftest.err`
34305
43753
-$rm conftest*
 
43754
+Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
43755
+and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
43756
+See the pkg-config man page for more details.
 
43757
+" >&2;}
 
43758
+   { (exit 1); exit 1; }; }
 
43759
+elif test $pkg_failed = untried; then
 
43760
+       { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old.  Make sure it
 
43761
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
43762
+path to pkg-config.
34306
43763
 
34307
43764
-ac_outfile=conftest.$ac_objext
34308
43765
-echo "$lt_simple_link_test_code" >conftest.$ac_ext
34309
43766
-eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
34310
43767
-_lt_linker_boilerplate=`cat conftest.err`
34311
 
-$rm conftest*
 
43768
-$rm -r conftest*
 
43769
+Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
43770
+and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
43771
+See the pkg-config man page for more details.
34312
43772
 
34313
 
+_LTEOF
 
43773
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
43774
+See \`config.log' for more details." >&5
 
43775
+echo "$as_me: error: The pkg-config script could not be found or is too old.  Make sure it
 
43776
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
43777
+path to pkg-config.
34314
43778
 
34315
43779
-# Allow CC to be a program name with arguments.
34316
43780
-lt_save_CC="$CC"
34326
43790
-  esac
34327
43791
-done
34328
43792
-cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
34329
 
+cat >>"$CONFIG_LT" <<\_LTEOF
34330
 
+{ echo "$as_me:$LINENO: creating $ofile" >&5
34331
 
+echo "$as_me: creating $ofile" >&6;}
 
43793
+Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
43794
+and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
43795
+See the pkg-config man page for more details.
34332
43796
 
34333
43797
-lt_cv_prog_compiler_c_o_RC=yes
 
43798
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
43799
+See \`config.log' for more details." >&2;}
 
43800
+   { (exit 1); exit 1; }; }
 
43801
+else
 
43802
+       EXTRA_GNOME_CFLAGS=$pkg_cv_EXTRA_GNOME_CFLAGS
 
43803
+       EXTRA_GNOME_LIBS=$pkg_cv_EXTRA_GNOME_LIBS
 
43804
+        { echo "$as_me:$LINENO: result: yes" >&5
 
43805
+echo "${ECHO_T}yes" >&6; }
 
43806
+       :
 
43807
+fi
 
43808
+       HAVE_GNOME=yes
 
43809
+else
 
43810
+# FIXME: use gmodule-no-export instead!
34334
43811
 
34335
43812
-# The else clause should only fire when bootstrapping the
34336
43813
-# libtool distribution, otherwise you forgot to ship ltmain.sh
34339
43816
-if test -f "$ltmain"; then
34340
43817
-  # See if we are running on zsh, and set the options which allow our commands through
34341
43818
-  # without removal of \ escapes.
34342
 
+    # See if we are running on zsh, and set the options which allow our
34343
 
+    # commands through without removal of \ escapes.
34344
 
   if test -n "${ZSH_VERSION+set}" ; then
34345
 
     setopt NO_GLOB_SUBST
34346
 
   fi
 
43819
-  if test -n "${ZSH_VERSION+set}" ; then
 
43820
-    setopt NO_GLOB_SUBST
 
43821
-  fi
34347
43822
-  # Now quote all the things that may contain metacharacters while being
34348
43823
-  # careful not to overquote the AC_SUBSTed values.  We take copies of the
34349
43824
-  # variables and quote the copies for generation of the libtool script.
34374
43849
-    predeps_RC \
34375
43850
-    postdeps_RC \
34376
43851
-    compiler_lib_search_path_RC \
 
43852
-    compiler_lib_search_dirs_RC \
34377
43853
-    archive_cmds_RC \
34378
43854
-    archive_expsym_cmds_RC \
34379
43855
-    postinstall_cmds_RC \
34414
43890
-      ;;
34415
43891
-    esac
34416
43892
-  done
34417
 
-
 
43893
+pkg_failed=no
 
43894
+{ echo "$as_me:$LINENO: checking for EXTRA_GNOME" >&5
 
43895
+echo $ECHO_N "checking for EXTRA_GNOME... $ECHO_C" >&6; }
 
43896
 
34418
43897
-  case $lt_echo in
34419
43898
-  *'\$0 --fallback-echo"')
34420
43899
-    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
34421
43900
-    ;;
34422
43901
-  esac
 
43902
+if test -n "$PKG_CONFIG"; then
 
43903
+    if test -n "$EXTRA_GNOME_CFLAGS"; then
 
43904
+        pkg_cv_EXTRA_GNOME_CFLAGS="$EXTRA_GNOME_CFLAGS"
 
43905
+    else
 
43906
+        if test -n "$PKG_CONFIG" && \
 
43907
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS launchpad-integration gtk+-2.0 >= \$GTK_REQS gio-2.0 gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
 
43908
+  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
 
43909
+  ac_status=$?
 
43910
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
43911
+  (exit $ac_status); }; then
 
43912
+  pkg_cv_EXTRA_GNOME_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
 
43913
+else
 
43914
+  pkg_failed=yes
 
43915
+fi
 
43916
+    fi
 
43917
+else
 
43918
+       pkg_failed=untried
 
43919
+fi
 
43920
+if test -n "$PKG_CONFIG"; then
 
43921
+    if test -n "$EXTRA_GNOME_LIBS"; then
 
43922
+        pkg_cv_EXTRA_GNOME_LIBS="$EXTRA_GNOME_LIBS"
 
43923
+    else
 
43924
+        if test -n "$PKG_CONFIG" && \
 
43925
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS launchpad-integration gtk+-2.0 >= \$GTK_REQS gio-2.0 gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
 
43926
+  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
 
43927
+  ac_status=$?
 
43928
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
43929
+  (exit $ac_status); }; then
 
43930
+  pkg_cv_EXTRA_GNOME_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
 
43931
+else
 
43932
+  pkg_failed=yes
 
43933
+fi
 
43934
+    fi
 
43935
+else
 
43936
+       pkg_failed=untried
 
43937
+fi
34423
43938
 
34424
43939
-cfgfile="$ofile"
34425
 
+    cfgfile="${ofile}T"
34426
 
+    trap "$RM \"$cfgfile\"; exit 1" 1 2 15
34427
 
+    $RM "$cfgfile"
34428
43940
 
34429
43941
-  cat <<__EOF__ >> "$cfgfile"
34430
43942
-# ### BEGIN LIBTOOL TAG CONFIG: $tagname
34431
 
+    cat <<_LT_EOF >> "$cfgfile"
34432
 
+#! $SHELL
34433
43943
 
34434
 
+# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
34435
 
+# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
34436
 
 # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
34437
 
+# NOTE: Changes made to this file will be lost: look at ltmain.sh.
34438
 
+#
34439
 
+#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
34440
 
+#                 2006, 2007, 2008 Free Software Foundation, Inc.
34441
 
+#   Written by Gordon Matzigkeit, 1996
34442
 
+#
34443
 
+#   This file is part of GNU Libtool.
34444
 
+#
34445
 
+# GNU Libtool is free software; you can redistribute it and/or
34446
 
+# modify it under the terms of the GNU General Public License as
34447
 
+# published by the Free Software Foundation; either version 2 of
34448
 
+# the License, or (at your option) any later version.
34449
 
+#
34450
 
+# As a special exception to the GNU General Public License,
34451
 
+# if you distribute this file as part of a program or library that
34452
 
+# is built using GNU Libtool, you may include this file under the
34453
 
+# same distribution terms that you use for the rest of that program.
34454
 
+#
34455
 
+# GNU Libtool is distributed in the hope that it will be useful,
34456
 
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
34457
 
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
34458
 
+# GNU General Public License for more details.
34459
 
+#
34460
 
+# You should have received a copy of the GNU General Public License
34461
 
+# along with GNU Libtool; see the file COPYING.  If not, a copy
34462
 
+# can be downloaded from http://www.gnu.org/licenses/gpl.html, or
34463
 
+# obtained by writing to the Free Software Foundation, Inc.,
34464
 
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
43944
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
 
43945
+if test $pkg_failed = yes; then
34465
43946
 
34466
43947
-# Shell to use when invoking shell scripts.
34467
43948
-SHELL=$lt_SHELL
34468
 
+
34469
 
+# The names of the tagged configurations supported by this script.
34470
 
+available_tags="CXX "
34471
 
+
34472
 
+# ### BEGIN LIBTOOL CONFIG
34473
 
+
34474
 
+# Which release of libtool.m4 was used?
34475
 
+macro_version=$macro_version
34476
 
+macro_revision=$macro_revision
34477
 
 
34478
 
 # Whether or not to build shared libraries.
34479
 
 build_libtool_libs=$enable_shared
34480
 
@@ -21701,11 +18476,8 @@
34481
 
 # Whether or not to build static libraries.
34482
 
 build_old_libs=$enable_static
 
43949
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
43950
+        _pkg_short_errors_supported=yes
 
43951
+else
 
43952
+        _pkg_short_errors_supported=no
 
43953
+fi
 
43954
+        if test $_pkg_short_errors_supported = yes; then
 
43955
+               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES"`
 
43956
+        else
 
43957
+               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES"`
 
43958
+        fi
 
43959
+       # Put the nasty error message in config.log where it belongs
 
43960
+       echo "$EXTRA_GNOME_PKG_ERRORS" >&5
 
43961
 
 
43962
-# Whether or not to build shared libraries.
 
43963
-build_libtool_libs=$enable_shared
 
43964
+       { { echo "$as_me:$LINENO: error: Package requirements (glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
 
43965
 
 
43966
-# Whether or not to build static libraries.
 
43967
-build_old_libs=$enable_static
 
43968
+$EXTRA_GNOME_PKG_ERRORS
34483
43969
 
34484
43970
-# Whether or not to add -lc for building shared libraries.
34485
43971
-build_libtool_need_lc=$archive_cmds_need_lc_RC
34486
 
-
 
43972
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
43973
+installed software in a non-standard prefix.
 
43974
 
34487
43975
-# Whether or not to disallow shared libs when runtime libs are static
34488
43976
-allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_RC
34489
 
+# What type of objects to build.
34490
 
+pic_mode=$pic_mode
34491
 
 
34492
 
 # Whether or not to optimize for fast installation.
34493
 
 fast_install=$enable_fast_install
34494
 
@@ -21720,378 +18492,762 @@
34495
 
 build=$build
34496
 
 build_os=$build_os
 
43977
+Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
43978
+and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
43979
+See the pkg-config man page for more details.
 
43980
+" >&5
 
43981
+echo "$as_me: error: Package requirements (glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
 
43982
 
 
43983
-# Whether or not to optimize for fast installation.
 
43984
-fast_install=$enable_fast_install
 
43985
+$EXTRA_GNOME_PKG_ERRORS
 
43986
 
 
43987
-# The host system.
 
43988
-host_alias=$host_alias
 
43989
-host=$host
 
43990
-host_os=$host_os
 
43991
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
43992
+installed software in a non-standard prefix.
 
43993
 
 
43994
-# The build system.
 
43995
-build_alias=$build_alias
 
43996
-build=$build
 
43997
-build_os=$build_os
 
43998
+Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
43999
+and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
44000
+See the pkg-config man page for more details.
 
44001
+" >&2;}
 
44002
+   { (exit 1); exit 1; }; }
 
44003
+elif test $pkg_failed = untried; then
 
44004
+       { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old.  Make sure it
 
44005
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
44006
+path to pkg-config.
34497
44007
 
34498
44008
-# An echo program that does not interpret backslashes.
34499
44009
-echo=$lt_echo
34500
 
-
 
44010
+Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
44011
+and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
44012
+See the pkg-config man page for more details.
 
44013
 
34501
44014
-# The archiver.
34502
44015
-AR=$lt_AR
34503
44016
-AR_FLAGS=$lt_AR_FLAGS
34504
 
-
 
44017
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
44018
+See \`config.log' for more details." >&5
 
44019
+echo "$as_me: error: The pkg-config script could not be found or is too old.  Make sure it
 
44020
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
44021
+path to pkg-config.
 
44022
 
34505
44023
-# A C compiler.
34506
44024
-LTCC=$lt_LTCC
34507
 
-
 
44025
+Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
44026
+and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
44027
+See the pkg-config man page for more details.
 
44028
 
34508
44029
-# LTCC compiler flags.
34509
44030
-LTCFLAGS=$lt_LTCFLAGS
34510
 
+# A sed program that does not truncate output.
34511
 
+SED=$lt_SED
 
44031
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
44032
+See \`config.log' for more details." >&2;}
 
44033
+   { (exit 1); exit 1; }; }
 
44034
+else
 
44035
+       EXTRA_GNOME_CFLAGS=$pkg_cv_EXTRA_GNOME_CFLAGS
 
44036
+       EXTRA_GNOME_LIBS=$pkg_cv_EXTRA_GNOME_LIBS
 
44037
+        { echo "$as_me:$LINENO: result: yes" >&5
 
44038
+echo "${ECHO_T}yes" >&6; }
 
44039
+       :
 
44040
+fi
34512
44041
 
34513
44042
-# A language-specific compiler.
34514
44043
-CC=$lt_compiler_RC
34515
 
+# Sed that helps us avoid accidentally triggering echo(1) options like -n.
34516
 
+Xsed="\$SED -e 1s/^X//"
 
44044
+cat >>confdefs.h <<\_ACEOF
 
44045
+#define USE_STABLE_LIBGNOMEUI 1
 
44046
+_ACEOF
34517
44047
 
34518
44048
-# Is the compiler the GNU C compiler?
34519
44049
-with_gcc=$GCC_RC
34520
 
+# A grep program that handles long lines.
34521
 
+GREP=$lt_GREP
34522
44050
 
34523
 
 # An ERE matcher.
34524
 
 EGREP=$lt_EGREP
 
44051
-# An ERE matcher.
 
44052
-EGREP=$lt_EGREP
 
44053
+cat >>confdefs.h <<\_ACEOF
 
44054
+#define HAVE_GTK_ONLY 1
 
44055
+_ACEOF
34525
44056
 
34526
44057
-# The linker used to build libraries.
34527
44058
-LD=$lt_LD_RC
34528
 
-
 
44059
+       HAVE_GNOME=no
 
44060
+fi
 
44061
 
34529
44062
-# Whether we need hard or soft links.
34530
44063
-LN_S=$lt_LN_S
34531
 
+# A literal string matcher.
34532
 
+FGREP=$lt_FGREP
34533
44064
 
34534
44065
-# A BSD-compatible nm program.
34535
 
+# A BSD- or MS-compatible name lister.
34536
 
 NM=$lt_NM
 
44066
-NM=$lt_NM
 
44067
+pkg_failed=no
 
44068
+{ echo "$as_me:$LINENO: checking for MM" >&5
 
44069
+echo $ECHO_N "checking for MM... $ECHO_C" >&6; }
34537
44070
 
34538
44071
-# A symbol stripping program
34539
44072
-STRIP=$lt_STRIP
34540
 
+# Whether we need soft or hard links.
34541
 
+LN_S=$lt_LN_S
 
44073
+if test -n "$PKG_CONFIG"; then
 
44074
+    if test -n "$MM_CFLAGS"; then
 
44075
+        pkg_cv_MM_CFLAGS="$MM_CFLAGS"
 
44076
+    else
 
44077
+        if test -n "$PKG_CONFIG" && \
 
44078
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
 
44079
+  ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
 
44080
+  ac_status=$?
 
44081
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
44082
+  (exit $ac_status); }; then
 
44083
+  pkg_cv_MM_CFLAGS=`$PKG_CONFIG --cflags "$MM" 2>/dev/null`
 
44084
+else
 
44085
+  pkg_failed=yes
 
44086
+fi
 
44087
+    fi
 
44088
+else
 
44089
+       pkg_failed=untried
 
44090
+fi
 
44091
+if test -n "$PKG_CONFIG"; then
 
44092
+    if test -n "$MM_LIBS"; then
 
44093
+        pkg_cv_MM_LIBS="$MM_LIBS"
 
44094
+    else
 
44095
+        if test -n "$PKG_CONFIG" && \
 
44096
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
 
44097
+  ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
 
44098
+  ac_status=$?
 
44099
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
44100
+  (exit $ac_status); }; then
 
44101
+  pkg_cv_MM_LIBS=`$PKG_CONFIG --libs "$MM" 2>/dev/null`
 
44102
+else
 
44103
+  pkg_failed=yes
 
44104
+fi
 
44105
+    fi
 
44106
+else
 
44107
+       pkg_failed=untried
 
44108
+fi
34542
44109
 
34543
44110
-# Used to examine libraries when file_magic_cmd begins "file"
34544
44111
-MAGIC_CMD=$MAGIC_CMD
34545
 
+# What is the maximum length of a command?
34546
 
+max_cmd_len=$max_cmd_len
34547
 
+
34548
 
+# Object file suffix (normally "o").
34549
 
+objext=$ac_objext
34550
44112
 
34551
44113
-# Used on cygwin: DLL creation program.
34552
44114
-DLLTOOL="$DLLTOOL"
34553
 
+# Executable file suffix (normally "").
34554
 
+exeext=$exeext
34555
44115
 
34556
44116
-# Used on cygwin: object dumper.
34557
44117
-OBJDUMP="$OBJDUMP"
34558
 
+# whether the shell understands "unset".
34559
 
+lt_unset=$lt_unset
 
44118
+if test $pkg_failed = yes; then
34560
44119
 
34561
44120
-# Used on cygwin: assembler.
34562
44121
-AS="$AS"
34563
 
+# turn spaces into newlines.
34564
 
+SP2NL=$lt_lt_SP2NL
 
44122
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
44123
+        _pkg_short_errors_supported=yes
 
44124
+else
 
44125
+        _pkg_short_errors_supported=no
 
44126
+fi
 
44127
+        if test $_pkg_short_errors_supported = yes; then
 
44128
+               MM_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$MM"`
 
44129
+        else
 
44130
+               MM_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$MM"`
 
44131
+        fi
 
44132
+       # Put the nasty error message in config.log where it belongs
 
44133
+       echo "$MM_PKG_ERRORS" >&5
34565
44134
 
34566
44135
-# The name of the directory that contains temporary libtool files.
34567
44136
-objdir=$objdir
34568
 
+# turn newlines into spaces.
34569
 
+NL2SP=$lt_lt_NL2SP
 
44137
+       { { echo "$as_me:$LINENO: error: Package requirements ($MM) were not met:
34570
44138
 
34571
 
 # How to create reloadable object files.
34572
 
 reload_flag=$lt_reload_flag
34573
 
 reload_cmds=$lt_reload_cmds
 
44139
-# How to create reloadable object files.
 
44140
-reload_flag=$lt_reload_flag
 
44141
-reload_cmds=$lt_reload_cmds
 
44142
+$MM_PKG_ERRORS
34574
44143
 
34575
44144
-# How to pass a linker flag through the compiler.
34576
44145
-wl=$lt_lt_prog_compiler_wl_RC
34577
 
+# Method to check whether dependent libraries are shared objects.
34578
 
+deplibs_check_method=$lt_deplibs_check_method
 
44146
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
44147
+installed software in a non-standard prefix.
34579
44148
 
34580
44149
-# Object file suffix (normally "o").
34581
44150
-objext="$ac_objext"
34582
 
+# Command to use when deplibs_check_method == "file_magic".
34583
 
+file_magic_cmd=$lt_file_magic_cmd
 
44151
+Alternatively, you may set the environment variables MM_CFLAGS
 
44152
+and MM_LIBS to avoid the need to call pkg-config.
 
44153
+See the pkg-config man page for more details.
 
44154
+" >&5
 
44155
+echo "$as_me: error: Package requirements ($MM) were not met:
34584
44156
 
34585
44157
-# Old archive suffix (normally "a").
34586
44158
-libext="$libext"
34587
 
+# The archiver.
34588
 
+AR=$lt_AR
34589
 
+AR_FLAGS=$lt_AR_FLAGS
 
44159
+$MM_PKG_ERRORS
34590
44160
 
34591
44161
-# Shared library suffix (normally ".so").
34592
44162
-shrext_cmds='$shrext_cmds'
34593
 
+# A symbol stripping program.
34594
 
+STRIP=$lt_STRIP
 
44163
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
44164
+installed software in a non-standard prefix.
34595
44165
 
34596
44166
-# Executable file suffix (normally "").
34597
44167
-exeext="$exeext"
34598
 
+# Commands used to install an old-style archive.
34599
 
+RANLIB=$lt_RANLIB
34600
 
+old_postinstall_cmds=$lt_old_postinstall_cmds
34601
 
+old_postuninstall_cmds=$lt_old_postuninstall_cmds
 
44168
+Alternatively, you may set the environment variables MM_CFLAGS
 
44169
+and MM_LIBS to avoid the need to call pkg-config.
 
44170
+See the pkg-config man page for more details.
 
44171
+" >&2;}
 
44172
+   { (exit 1); exit 1; }; }
 
44173
+elif test $pkg_failed = untried; then
 
44174
+       { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old.  Make sure it
 
44175
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
44176
+path to pkg-config.
34602
44177
 
34603
44178
-# Additional compiler flags for building library objects.
34604
44179
-pic_flag=$lt_lt_prog_compiler_pic_RC
34605
44180
-pic_mode=$pic_mode
34606
 
+# A C compiler.
34607
 
+LTCC=$lt_CC
 
44181
+Alternatively, you may set the environment variables MM_CFLAGS
 
44182
+and MM_LIBS to avoid the need to call pkg-config.
 
44183
+See the pkg-config man page for more details.
34608
44184
 
34609
44185
-# What is the maximum length of a command?
34610
44186
-max_cmd_len=$lt_cv_sys_max_cmd_len
34611
 
+# LTCC compiler flags.
34612
 
+LTCFLAGS=$lt_CFLAGS
 
44187
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
44188
+See \`config.log' for more details." >&5
 
44189
+echo "$as_me: error: The pkg-config script could not be found or is too old.  Make sure it
 
44190
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
44191
+path to pkg-config.
34613
44192
 
34614
44193
-# Does compiler simultaneously support -c and -o options?
34615
44194
-compiler_c_o=$lt_lt_cv_prog_compiler_c_o_RC
34616
 
+# Take the output of nm and produce a listing of raw symbols and C names.
34617
 
+global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
 
44195
+Alternatively, you may set the environment variables MM_CFLAGS
 
44196
+and MM_LIBS to avoid the need to call pkg-config.
 
44197
+See the pkg-config man page for more details.
34618
44198
 
34619
44199
-# Must we lock files when doing compilation?
34620
44200
-need_locks=$lt_need_locks
34621
 
+# Transform the output of nm in a proper C declaration.
34622
 
+global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
 
44201
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
44202
+See \`config.log' for more details." >&2;}
 
44203
+   { (exit 1); exit 1; }; }
 
44204
+else
 
44205
+       MM_CFLAGS=$pkg_cv_MM_CFLAGS
 
44206
+       MM_LIBS=$pkg_cv_MM_LIBS
 
44207
+        { echo "$as_me:$LINENO: result: yes" >&5
 
44208
+echo "${ECHO_T}yes" >&6; }
 
44209
+       :
 
44210
+fi
34623
44211
 
34624
44212
-# Do we need the lib prefix for modules?
34625
44213
-need_lib_prefix=$need_lib_prefix
34626
 
+# Transform the output of nm in a C name address pair.
34627
 
+global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
 
44214
+ if test x$HAVE_GNOME = "xyes"; then
 
44215
+  HAVE_GNOME_TRUE=
 
44216
+  HAVE_GNOME_FALSE='#'
 
44217
+else
 
44218
+  HAVE_GNOME_TRUE='#'
 
44219
+  HAVE_GNOME_FALSE=
 
44220
+fi
34628
44221
 
34629
44222
-# Do we need a version for libraries?
34630
44223
-need_version=$need_version
34631
 
+# Transform the output of nm in a C name address pair when lib prefix is needed.
34632
 
+global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
 
44224
+EXTRA_GNOME_CFLAGS="$EXTRA_GNOME_CFLAGS"
 
44225
+EXTRA_GNOME_LIBS="$EXTRA_GNOME_LIBS $EXTRA_BACKEND_LIBS"
34633
44226
 
34634
44227
-# Whether dlopen is supported.
34635
44228
-dlopen_support=$enable_dlopen
34636
 
+# The name of the directory that contains temporary libtool files.
34637
 
+objdir=$objdir
34638
44229
 
34639
44230
-# Whether dlopen of programs is supported.
34640
44231
-dlopen_self=$enable_dlopen_self
34641
 
+# Shell to use when invoking shell scripts.
34642
 
+SHELL=$lt_SHELL
34643
44232
 
34644
44233
-# Whether dlopen of statically linked programs is supported.
34645
44234
-dlopen_self_static=$enable_dlopen_self_static
34646
 
+# An echo program that does not interpret backslashes.
34647
 
+ECHO=$lt_ECHO
34648
44235
 
34649
44236
-# Compiler flag to prevent dynamic linking.
34650
44237
-link_static_flag=$lt_lt_prog_compiler_static_RC
34651
 
+# Used to examine libraries when file_magic_cmd begins with "file".
34652
 
+MAGIC_CMD=$MAGIC_CMD
 
44238
+pkg_failed=no
 
44239
+{ echo "$as_me:$LINENO: checking for GTK" >&5
 
44240
+echo $ECHO_N "checking for GTK... $ECHO_C" >&6; }
34653
44241
 
34654
44242
-# Compiler flag to turn off builtin functions.
34655
44243
-no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_RC
34656
 
+# Must we lock files when doing compilation?
34657
 
+need_locks=$lt_need_locks
 
44244
+if test -n "$PKG_CONFIG"; then
 
44245
+    if test -n "$GTK_CFLAGS"; then
 
44246
+        pkg_cv_GTK_CFLAGS="$GTK_CFLAGS"
 
44247
+    else
 
44248
+        if test -n "$PKG_CONFIG" && \
 
44249
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 gthread-2.0\"") >&5
 
44250
+  ($PKG_CONFIG --exists --print-errors "gtk+-2.0 gthread-2.0") 2>&5
 
44251
+  ac_status=$?
 
44252
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
44253
+  (exit $ac_status); }; then
 
44254
+  pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 gthread-2.0" 2>/dev/null`
 
44255
+else
 
44256
+  pkg_failed=yes
 
44257
+fi
 
44258
+    fi
 
44259
+else
 
44260
+       pkg_failed=untried
 
44261
+fi
 
44262
+if test -n "$PKG_CONFIG"; then
 
44263
+    if test -n "$GTK_LIBS"; then
 
44264
+        pkg_cv_GTK_LIBS="$GTK_LIBS"
 
44265
+    else
 
44266
+        if test -n "$PKG_CONFIG" && \
 
44267
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 gthread-2.0\"") >&5
 
44268
+  ($PKG_CONFIG --exists --print-errors "gtk+-2.0 gthread-2.0") 2>&5
 
44269
+  ac_status=$?
 
44270
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
44271
+  (exit $ac_status); }; then
 
44272
+  pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 gthread-2.0" 2>/dev/null`
 
44273
+else
 
44274
+  pkg_failed=yes
 
44275
+fi
 
44276
+    fi
 
44277
+else
 
44278
+       pkg_failed=untried
 
44279
+fi
34658
44280
 
34659
44281
-# Compiler flag to allow reflexive dlopens.
34660
44282
-export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_RC
34661
 
+# Tool to manipulate archived DWARF debug symbol files on Mac OS X.
34662
 
+DSYMUTIL=$lt_DSYMUTIL
34663
44283
 
34664
44284
-# Compiler flag to generate shared objects directly from archives.
34665
44285
-whole_archive_flag_spec=$lt_whole_archive_flag_spec_RC
34666
 
+# Tool to change global to local symbols on Mac OS X.
34667
 
+NMEDIT=$lt_NMEDIT
34668
44286
 
34669
44287
-# Compiler flag to generate thread-safe objects.
34670
44288
-thread_safe_flag_spec=$lt_thread_safe_flag_spec_RC
34671
 
+# Tool to manipulate fat objects and archives on Mac OS X.
34672
 
+LIPO=$lt_LIPO
 
44289
+if test $pkg_failed = yes; then
34673
44290
 
34674
44291
-# Library versioning type.
34675
44292
-version_type=$version_type
34676
 
+# ldd/readelf like tool for Mach-O binaries on Mac OS X.
34677
 
+OTOOL=$lt_OTOOL
 
44293
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
44294
+        _pkg_short_errors_supported=yes
 
44295
+else
 
44296
+        _pkg_short_errors_supported=no
 
44297
+fi
 
44298
+        if test $_pkg_short_errors_supported = yes; then
 
44299
+               GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gtk+-2.0 gthread-2.0"`
 
44300
+        else
 
44301
+               GTK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtk+-2.0 gthread-2.0"`
 
44302
+        fi
 
44303
+       # Put the nasty error message in config.log where it belongs
 
44304
+       echo "$GTK_PKG_ERRORS" >&5
34678
44305
 
34679
44306
-# Format of library name prefix.
34680
44307
-libname_spec=$lt_libname_spec
34681
 
+# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
34682
 
+OTOOL64=$lt_OTOOL64
 
44308
+       { { echo "$as_me:$LINENO: error: Package requirements (gtk+-2.0 gthread-2.0) were not met:
34683
44309
 
34684
44310
-# List of archive names.  First name is the real one, the rest are links.
34685
44311
-# The last name is the one that the linker finds with -lNAME.
34686
44312
-library_names_spec=$lt_library_names_spec
34687
 
+# Old archive suffix (normally "a").
34688
 
+libext=$libext
 
44313
+$GTK_PKG_ERRORS
34689
44314
 
34690
44315
-# The coded name of the library, if different from the real name.
34691
44316
-soname_spec=$lt_soname_spec
34692
 
+# Shared library suffix (normally ".so").
34693
 
+shrext_cmds=$lt_shrext_cmds
 
44317
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
44318
+installed software in a non-standard prefix.
34694
44319
 
34695
44320
-# Commands used to build and install an old-style archive.
34696
44321
-RANLIB=$lt_RANLIB
34697
44322
-old_archive_cmds=$lt_old_archive_cmds_RC
34698
44323
-old_postinstall_cmds=$lt_old_postinstall_cmds
34699
44324
-old_postuninstall_cmds=$lt_old_postuninstall_cmds
34700
 
+# The commands to extract the exported symbol list from a shared archive.
34701
 
+extract_expsyms_cmds=$lt_extract_expsyms_cmds
 
44325
+Alternatively, you may set the environment variables GTK_CFLAGS
 
44326
+and GTK_LIBS to avoid the need to call pkg-config.
 
44327
+See the pkg-config man page for more details.
 
44328
+" >&5
 
44329
+echo "$as_me: error: Package requirements (gtk+-2.0 gthread-2.0) were not met:
34702
44330
 
34703
44331
-# Create an old-style archive from a shared archive.
34704
44332
-old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_RC
34705
 
+# Variables whose values should be saved in libtool wrapper scripts and
34706
 
+# restored at link time.
34707
 
+variables_saved_for_relink=$lt_variables_saved_for_relink
 
44333
+$GTK_PKG_ERRORS
34708
44334
 
34709
44335
-# Create a temporary old-style archive to link instead of a shared archive.
34710
44336
-old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_RC
34711
 
+# Do we need the "lib" prefix for modules?
34712
 
+need_lib_prefix=$need_lib_prefix
34713
 
+
34714
 
+# Do we need a version for libraries?
34715
 
+need_version=$need_version
34716
 
+
34717
 
+# Library versioning type.
34718
 
+version_type=$version_type
34719
 
+
34720
 
+# Shared library runtime path variable.
34721
 
+runpath_var=$runpath_var
34722
 
+
34723
 
+# Shared library path variable.
34724
 
+shlibpath_var=$shlibpath_var
34725
 
+
34726
 
+# Is shlibpath searched before the hard-coded library search path?
34727
 
+shlibpath_overrides_runpath=$shlibpath_overrides_runpath
34728
 
+
34729
 
+# Format of library name prefix.
34730
 
+libname_spec=$lt_libname_spec
34731
 
+
34732
 
+# List of archive names.  First name is the real one, the rest are links.
34733
 
+# The last name is the one that the linker finds with -lNAME
34734
 
+library_names_spec=$lt_library_names_spec
34735
 
+
34736
 
+# The coded name of the library, if different from the real name.
34737
 
+soname_spec=$lt_soname_spec
 
44337
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
44338
+installed software in a non-standard prefix.
34738
44339
 
34739
44340
-# Commands used to build and install a shared archive.
34740
44341
-archive_cmds=$lt_archive_cmds_RC
34741
44342
-archive_expsym_cmds=$lt_archive_expsym_cmds_RC
34742
 
+# Command to use after installation of a shared archive.
34743
 
 postinstall_cmds=$lt_postinstall_cmds
34744
 
+
34745
 
+# Command to use after uninstallation of a shared archive.
34746
 
 postuninstall_cmds=$lt_postuninstall_cmds
 
44343
-postinstall_cmds=$lt_postinstall_cmds
 
44344
-postuninstall_cmds=$lt_postuninstall_cmds
 
44345
+Alternatively, you may set the environment variables GTK_CFLAGS
 
44346
+and GTK_LIBS to avoid the need to call pkg-config.
 
44347
+See the pkg-config man page for more details.
 
44348
+" >&2;}
 
44349
+   { (exit 1); exit 1; }; }
 
44350
+elif test $pkg_failed = untried; then
 
44351
+       { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old.  Make sure it
 
44352
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
44353
+path to pkg-config.
34747
44354
 
34748
44355
-# Commands used to build a loadable module (assumed same as above if empty)
34749
44356
-module_cmds=$lt_module_cmds_RC
34750
44357
-module_expsym_cmds=$lt_module_expsym_cmds_RC
34751
 
+# Commands used to finish a libtool library installation in a directory.
34752
 
+finish_cmds=$lt_finish_cmds
34753
 
+
34754
 
+# As "finish_cmds", except a single script fragment to be evaled but
34755
 
+# not shown.
34756
 
+finish_eval=$lt_finish_eval
34757
 
+
34758
 
+# Whether we should hardcode library paths into libraries.
34759
 
+hardcode_into_libs=$hardcode_into_libs
34760
 
+
34761
 
+# Compile-time system search path for libraries.
34762
 
+sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
34763
 
+
34764
 
+# Run-time system search path for libraries.
34765
 
+sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
34766
 
+
34767
 
+# Whether dlopen is supported.
34768
 
+dlopen_support=$enable_dlopen
34769
 
+
34770
 
+# Whether dlopen of programs is supported.
34771
 
+dlopen_self=$enable_dlopen_self
34772
 
+
34773
 
+# Whether dlopen of statically linked programs is supported.
34774
 
+dlopen_self_static=$enable_dlopen_self_static
 
44358
+Alternatively, you may set the environment variables GTK_CFLAGS
 
44359
+and GTK_LIBS to avoid the need to call pkg-config.
 
44360
+See the pkg-config man page for more details.
34775
44361
 
34776
 
 # Commands to strip libraries.
34777
 
 old_striplib=$lt_old_striplib
34778
 
 striplib=$lt_striplib
 
44362
-# Commands to strip libraries.
 
44363
-old_striplib=$lt_old_striplib
 
44364
-striplib=$lt_striplib
 
44365
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
44366
+See \`config.log' for more details." >&5
 
44367
+echo "$as_me: error: The pkg-config script could not be found or is too old.  Make sure it
 
44368
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
44369
+path to pkg-config.
34779
44370
 
34780
44371
-# Dependencies to place before the objects being linked to create a
34781
44372
-# shared library.
34792
44383
-# Dependencies to place after the objects being linked to create a
34793
44384
-# shared library.
34794
44385
-postdeps=$lt_postdeps_RC
 
44386
-
 
44387
-# The directories searched by this compiler when creating a shared
 
44388
-# library
 
44389
-compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_RC
 
44390
+Alternatively, you may set the environment variables GTK_CFLAGS
 
44391
+and GTK_LIBS to avoid the need to call pkg-config.
 
44392
+See the pkg-config man page for more details.
34795
44393
 
34796
44394
-# The library search path used internally by the compiler when linking
34797
44395
-# a shared library.
34798
44396
-compiler_lib_search_path=$lt_compiler_lib_search_path_RC
34799
 
+# The linker used to build libraries.
34800
 
+LD=$lt_LD
 
44397
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
44398
+See \`config.log' for more details." >&2;}
 
44399
+   { (exit 1); exit 1; }; }
 
44400
+else
 
44401
+       GTK_CFLAGS=$pkg_cv_GTK_CFLAGS
 
44402
+       GTK_LIBS=$pkg_cv_GTK_LIBS
 
44403
+        { echo "$as_me:$LINENO: result: yes" >&5
 
44404
+echo "${ECHO_T}yes" >&6; }
 
44405
+       :
 
44406
+fi
34801
44407
 
34802
44408
-# Method to check whether dependent libraries are shared objects.
34803
44409
-deplibs_check_method=$lt_deplibs_check_method
34804
 
+# Commands used to build an old-style archive.
34805
 
+old_archive_cmds=$lt_old_archive_cmds
 
44410
+GTK_LIBS="$GTK_LIBS $EXTRA_BACKEND_LIBS"
34806
44411
 
34807
44412
-# Command to use when deplibs_check_method == file_magic.
34808
44413
-file_magic_cmd=$lt_file_magic_cmd
34809
 
+# A language specific compiler.
34810
 
+CC=$lt_compiler
34811
44414
 
34812
44415
-# Flag that allows shared libraries with undefined symbols to be built.
34813
44416
-allow_undefined_flag=$lt_allow_undefined_flag_RC
34814
 
+# Is the compiler the GNU compiler?
34815
 
+with_gcc=$GCC
 
44417
+have_x11=no
 
44418
+if test x$(pkg-config --variable=target gtk+-2.0) = xx11; then
 
44419
+       { echo "$as_me:$LINENO: checking for X" >&5
 
44420
+echo $ECHO_N "checking for X... $ECHO_C" >&6; }
34816
44421
 
34817
44422
-# Flag that forces no undefined symbols.
34818
44423
-no_undefined_flag=$lt_no_undefined_flag_RC
34819
 
+# Compiler flag to turn off builtin functions.
34820
 
+no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
34821
44424
 
34822
44425
-# Commands used to finish a libtool library installation in a directory.
34823
44426
-finish_cmds=$lt_finish_cmds
34824
 
+# How to pass a linker flag through the compiler.
34825
 
+wl=$lt_lt_prog_compiler_wl
 
44427
+# Check whether --with-x was given.
 
44428
+if test "${with_x+set}" = set; then
 
44429
+  withval=$with_x;
 
44430
+fi
34826
44431
 
34827
44432
-# Same as above, but a single script fragment to be evaled but not shown.
34828
44433
-finish_eval=$lt_finish_eval
34829
 
+# Additional compiler flags for building library objects.
34830
 
+pic_flag=$lt_lt_prog_compiler_pic
 
44434
+# $have_x is `yes', `no', `disabled', or empty when we do not yet know.
 
44435
+if test "x$with_x" = xno; then
 
44436
+  # The user explicitly disabled X.
 
44437
+  have_x=disabled
 
44438
+else
 
44439
+  case $x_includes,$x_libraries in #(
 
44440
+    *\'*) { { echo "$as_me:$LINENO: error: Cannot use X directory names containing '" >&5
 
44441
+echo "$as_me: error: Cannot use X directory names containing '" >&2;}
 
44442
+   { (exit 1); exit 1; }; };; #(
 
44443
+    *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then
 
44444
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
44445
+else
 
44446
+  # One or both of the vars are not set, and there is no cached value.
 
44447
+ac_x_includes=no ac_x_libraries=no
 
44448
+rm -f -r conftest.dir
 
44449
+if mkdir conftest.dir; then
 
44450
+  cd conftest.dir
 
44451
+  cat >Imakefile <<'_ACEOF'
 
44452
+incroot:
 
44453
+       @echo incroot='${INCROOT}'
 
44454
+usrlibdir:
 
44455
+       @echo usrlibdir='${USRLIBDIR}'
 
44456
+libdir:
 
44457
+       @echo libdir='${LIBDIR}'
 
44458
+_ACEOF
 
44459
+  if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then
 
44460
+    # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
 
44461
+    for ac_var in incroot usrlibdir libdir; do
 
44462
+      eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`"
 
44463
+    done
 
44464
+    # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR.
 
44465
+    for ac_extension in a so sl; do
 
44466
+      if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" &&
 
44467
+        test -f "$ac_im_libdir/libX11.$ac_extension"; then
 
44468
+       ac_im_usrlibdir=$ac_im_libdir; break
 
44469
+      fi
 
44470
+    done
 
44471
+    # Screen out bogus values from the imake configuration.  They are
 
44472
+    # bogus both because they are the default anyway, and because
 
44473
+    # using them would break gcc on systems where it needs fixed includes.
 
44474
+    case $ac_im_incroot in
 
44475
+       /usr/include) ac_x_includes= ;;
 
44476
+       *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;;
 
44477
+    esac
 
44478
+    case $ac_im_usrlibdir in
 
44479
+       /usr/lib | /lib) ;;
 
44480
+       *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;;
 
44481
+    esac
 
44482
+  fi
 
44483
+  cd ..
 
44484
+  rm -f -r conftest.dir
 
44485
+fi
34831
44486
 
34832
44487
-# Take the output of nm and produce a listing of raw symbols and C names.
34833
44488
-global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
34834
 
+# Compiler flag to prevent dynamic linking.
34835
 
+link_static_flag=$lt_lt_prog_compiler_static
 
44489
+# Standard set of common directories for X headers.
 
44490
+# Check X11 before X11Rn because it is often a symlink to the current release.
 
44491
+ac_x_header_dirs='
 
44492
+/usr/X11/include
 
44493
+/usr/X11R6/include
 
44494
+/usr/X11R5/include
 
44495
+/usr/X11R4/include
34836
44496
 
34837
44497
-# Transform the output of nm in a proper C declaration
34838
44498
-global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
34839
 
+# Does compiler simultaneously support -c and -o options?
34840
 
+compiler_c_o=$lt_lt_cv_prog_compiler_c_o
 
44499
+/usr/include/X11
 
44500
+/usr/include/X11R6
 
44501
+/usr/include/X11R5
 
44502
+/usr/include/X11R4
34841
44503
 
34842
44504
-# Transform the output of nm in a C name address pair
34843
44505
-global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
34844
 
+# Whether or not to add -lc for building shared libraries.
34845
 
+build_libtool_need_lc=$archive_cmds_need_lc
 
44506
+/usr/local/X11/include
 
44507
+/usr/local/X11R6/include
 
44508
+/usr/local/X11R5/include
 
44509
+/usr/local/X11R4/include
34846
44510
 
34847
44511
-# This is the shared library runtime path variable.
34848
44512
-runpath_var=$runpath_var
34849
 
+# Whether or not to disallow shared libs when runtime libs are static.
34850
 
+allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
 
44513
+/usr/local/include/X11
 
44514
+/usr/local/include/X11R6
 
44515
+/usr/local/include/X11R5
 
44516
+/usr/local/include/X11R4
34851
44517
 
34852
44518
-# This is the shared library path variable.
34853
44519
-shlibpath_var=$shlibpath_var
34854
 
+# Compiler flag to allow reflexive dlopens.
34855
 
+export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
 
44520
+/usr/X386/include
 
44521
+/usr/x386/include
 
44522
+/usr/XFree86/include/X11
34856
44523
 
34857
44524
-# Is shlibpath searched before the hard-coded library search path?
34858
44525
-shlibpath_overrides_runpath=$shlibpath_overrides_runpath
34859
 
+# Compiler flag to generate shared objects directly from archives.
34860
 
+whole_archive_flag_spec=$lt_whole_archive_flag_spec
 
44526
+/usr/include
 
44527
+/usr/local/include
 
44528
+/usr/unsupported/include
 
44529
+/usr/athena/include
 
44530
+/usr/local/x11r5/include
 
44531
+/usr/lpp/Xamples/include
34861
44532
 
34862
44533
-# How to hardcode a shared library path into an executable.
34863
44534
-hardcode_action=$hardcode_action_RC
34864
 
+# Whether the compiler copes with passing no objects directly.
34865
 
+compiler_needs_object=$lt_compiler_needs_object
 
44535
+/usr/openwin/include
 
44536
+/usr/openwin/share/include'
34866
44537
 
34867
44538
-# Whether we should hardcode library paths into libraries.
34868
44539
-hardcode_into_libs=$hardcode_into_libs
34869
 
+# Create an old-style archive from a shared archive.
34870
 
+old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
34871
 
+
34872
 
+# Create a temporary old-style archive to link instead of a shared archive.
34873
 
+old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
34874
 
+
34875
 
+# Commands used to build a shared archive.
34876
 
+archive_cmds=$lt_archive_cmds
34877
 
+archive_expsym_cmds=$lt_archive_expsym_cmds
34878
 
+
34879
 
+# Commands used to build a loadable module if different from building
34880
 
+# a shared archive.
34881
 
+module_cmds=$lt_module_cmds
34882
 
+module_expsym_cmds=$lt_module_expsym_cmds
34883
 
+
34884
 
+# Whether we are building with GNU ld or not.
34885
 
+with_gnu_ld=$lt_with_gnu_ld
34886
 
+
34887
 
+# Flag that allows shared libraries with undefined symbols to be built.
34888
 
+allow_undefined_flag=$lt_allow_undefined_flag
34889
 
+
34890
 
+# Flag that enforces no undefined symbols.
34891
 
+no_undefined_flag=$lt_no_undefined_flag
 
44540
+if test "$ac_x_includes" = no; then
 
44541
+  # Guess where to find include files, by looking for Xlib.h.
 
44542
+  # First, try using that file with no special directory specified.
 
44543
+  cat >conftest.$ac_ext <<_ACEOF
 
44544
+/* confdefs.h.  */
 
44545
+_ACEOF
 
44546
+cat confdefs.h >>conftest.$ac_ext
 
44547
+cat >>conftest.$ac_ext <<_ACEOF
 
44548
+/* end confdefs.h.  */
 
44549
+#include <X11/Xlib.h>
 
44550
+_ACEOF
 
44551
+if { (ac_try="$ac_cpp conftest.$ac_ext"
 
44552
+case "(($ac_try" in
 
44553
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
44554
+  *) ac_try_echo=$ac_try;;
 
44555
+esac
 
44556
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
44557
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
44558
+  ac_status=$?
 
44559
+  grep -v '^ *+' conftest.er1 >conftest.err
 
44560
+  rm -f conftest.er1
 
44561
+  cat conftest.err >&5
 
44562
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
44563
+  (exit $ac_status); } >/dev/null && {
 
44564
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
44565
+        test ! -s conftest.err
 
44566
+       }; then
 
44567
+  # We can compile using X headers with no special include directory.
 
44568
+ac_x_includes=
 
44569
+else
 
44570
+  echo "$as_me: failed program was:" >&5
 
44571
+sed 's/^/| /' conftest.$ac_ext >&5
34892
44572
 
34893
 
 # Flag to hardcode \$libdir into a binary during linking.
 
44573
-# Flag to hardcode \$libdir into a binary during linking.
34894
44574
-# This must work even if \$libdir does not exist.
34895
44575
-hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_RC
34896
 
+# This must work even if \$libdir does not exist
34897
 
+hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
 
44576
+  for ac_dir in $ac_x_header_dirs; do
 
44577
+  if test -r "$ac_dir/X11/Xlib.h"; then
 
44578
+    ac_x_includes=$ac_dir
 
44579
+    break
 
44580
+  fi
 
44581
+done
 
44582
+fi
34898
44583
 
34899
44584
-# If ld is used when linking, flag to hardcode \$libdir into
34900
44585
-# a binary during linking. This must work even if \$libdir does
34919
44604
-# Set to yes if building a shared library automatically hardcodes DIR into the library
34920
44605
-# and all subsequent libraries and executables linked against it.
34921
44606
-hardcode_automatic=$hardcode_automatic_RC
34922
 
+# If ld is used when linking, flag to hardcode \$libdir into a binary
34923
 
+# during linking.  This must work even if \$libdir does not exist.
34924
 
+hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
 
44607
+rm -f conftest.err conftest.$ac_ext
 
44608
+fi # $ac_x_includes = no
34925
44609
 
34926
44610
-# Variables whose values should be saved in libtool wrapper scripts and
34927
44611
-# restored at relink time.
34928
44612
-variables_saved_for_relink="$variables_saved_for_relink"
34929
 
+# Whether we need a single "-rpath" flag with a separated argument.
34930
 
+hardcode_libdir_separator=$lt_hardcode_libdir_separator
 
44613
+if test "$ac_x_libraries" = no; then
 
44614
+  # Check for the libraries.
 
44615
+  # See if we find them without any special options.
 
44616
+  # Don't add to $LIBS permanently.
 
44617
+  ac_save_LIBS=$LIBS
 
44618
+  LIBS="-lX11 $LIBS"
 
44619
+  cat >conftest.$ac_ext <<_ACEOF
 
44620
+/* confdefs.h.  */
 
44621
+_ACEOF
 
44622
+cat confdefs.h >>conftest.$ac_ext
 
44623
+cat >>conftest.$ac_ext <<_ACEOF
 
44624
+/* end confdefs.h.  */
 
44625
+#include <X11/Xlib.h>
 
44626
+int
 
44627
+main ()
 
44628
+{
 
44629
+XrmInitialize ()
 
44630
+  ;
 
44631
+  return 0;
 
44632
+}
 
44633
+_ACEOF
 
44634
+rm -f conftest.$ac_objext conftest$ac_exeext
 
44635
+if { (ac_try="$ac_link"
 
44636
+case "(($ac_try" in
 
44637
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
44638
+  *) ac_try_echo=$ac_try;;
 
44639
+esac
 
44640
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
44641
+  (eval "$ac_link") 2>conftest.er1
 
44642
+  ac_status=$?
 
44643
+  grep -v '^ *+' conftest.er1 >conftest.err
 
44644
+  rm -f conftest.er1
 
44645
+  cat conftest.err >&5
 
44646
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
44647
+  (exit $ac_status); } && {
 
44648
+        test -z "$ac_c_werror_flag" ||
 
44649
+        test ! -s conftest.err
 
44650
+       } && test -s conftest$ac_exeext &&
 
44651
+       $as_test_x conftest$ac_exeext; then
 
44652
+  LIBS=$ac_save_LIBS
 
44653
+# We can link X programs with no special library path.
 
44654
+ac_x_libraries=
 
44655
+else
 
44656
+  echo "$as_me: failed program was:" >&5
 
44657
+sed 's/^/| /' conftest.$ac_ext >&5
34931
44658
 
34932
44659
-# Whether libtool must link a program against all its dependency libraries.
34933
44660
-link_all_deplibs=$link_all_deplibs_RC
34934
 
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
34935
 
+# DIR into the resulting binary.
34936
 
+hardcode_direct=$hardcode_direct
 
44661
+       LIBS=$ac_save_LIBS
 
44662
+for ac_dir in `echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g`
 
44663
+do
 
44664
+  # Don't even attempt the hair of trying to link an X program!
 
44665
+  for ac_extension in a so sl; do
 
44666
+    if test -r "$ac_dir/libX11.$ac_extension"; then
 
44667
+      ac_x_libraries=$ac_dir
 
44668
+      break 2
 
44669
+    fi
 
44670
+  done
 
44671
+done
 
44672
+fi
34937
44673
 
34938
44674
-# Compile-time system search path for libraries
34939
44675
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
34940
 
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
34941
 
+# DIR into the resulting binary and the resulting library dependency is
34942
 
+# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
34943
 
+# library is relocated.
34944
 
+hardcode_direct_absolute=$hardcode_direct_absolute
 
44676
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
44677
+      conftest$ac_exeext conftest.$ac_ext
 
44678
+fi # $ac_x_libraries = no
34945
44679
 
34946
44680
-# Run-time system search path for libraries
34947
44681
-sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
34948
 
+# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
34949
 
+# into the resulting binary.
34950
 
+hardcode_minus_L=$hardcode_minus_L
34951
 
+
34952
 
+# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
34953
 
+# into the resulting binary.
34954
 
+hardcode_shlibpath_var=$hardcode_shlibpath_var
34955
 
+
34956
 
+# Set to "yes" if building a shared library automatically hardcodes DIR
34957
 
+# into the library and all subsequent libraries and executables linked
34958
 
+# against it.
34959
 
+hardcode_automatic=$hardcode_automatic
34960
 
+
34961
 
+# Set to yes if linker adds runtime paths of dependent libraries
34962
 
+# to runtime path list.
34963
 
+inherit_rpath=$inherit_rpath
34964
 
+
34965
 
+# Whether libtool must link a program against all its dependency libraries.
34966
 
+link_all_deplibs=$link_all_deplibs
 
44682
+case $ac_x_includes,$ac_x_libraries in #(
 
44683
+  no,* | *,no | *\'*)
 
44684
+    # Didn't find X, or a directory has "'" in its name.
 
44685
+    ac_cv_have_x="have_x=no";; #(
 
44686
+  *)
 
44687
+    # Record where we found X for the cache.
 
44688
+    ac_cv_have_x="have_x=yes\
 
44689
+       ac_x_includes='$ac_x_includes'\
 
44690
+       ac_x_libraries='$ac_x_libraries'"
 
44691
+esac
 
44692
+fi
 
44693
+;; #(
 
44694
+    *) have_x=yes;;
 
44695
+  esac
 
44696
+  eval "$ac_cv_have_x"
 
44697
+fi # $with_x != no
34967
44698
 
34968
 
 # Fix the shell variable \$srcfile for the compiler.
34969
 
 fix_srcfile_path=$lt_fix_srcfile_path
 
44699
-# Fix the shell variable \$srcfile for the compiler.
 
44700
-fix_srcfile_path=$lt_fix_srcfile_path
 
44701
+if test "$have_x" != yes; then
 
44702
+  { echo "$as_me:$LINENO: result: $have_x" >&5
 
44703
+echo "${ECHO_T}$have_x" >&6; }
 
44704
+  no_x=yes
 
44705
+else
 
44706
+  # If each of the values was on the command line, it overrides each guess.
 
44707
+  test "x$x_includes" = xNONE && x_includes=$ac_x_includes
 
44708
+  test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries
 
44709
+  # Update the cache value to reflect the command line values.
 
44710
+  ac_cv_have_x="have_x=yes\
 
44711
+       ac_x_includes='$x_includes'\
 
44712
+       ac_x_libraries='$x_libraries'"
 
44713
+  { echo "$as_me:$LINENO: result: libraries $x_libraries, headers $x_includes" >&5
 
44714
+echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6; }
 
44715
+fi
34970
44716
 
34971
44717
-# Set to yes if exported symbols are required.
34972
44718
-always_export_symbols=$always_export_symbols_RC
34973
 
+# Set to "yes" if exported symbols are required.
34974
 
+always_export_symbols=$always_export_symbols
34975
44719
 
34976
 
 # The commands to list exported symbols.
 
44720
-# The commands to list exported symbols.
34977
44721
-export_symbols_cmds=$lt_export_symbols_cmds_RC
34978
 
-
 
44722
+       have_x11=yes
 
44723
 
34979
44724
-# The commands to extract the exported symbol list from a shared archive.
34980
44725
-extract_expsyms_cmds=$lt_extract_expsyms_cmds
34981
 
+export_symbols_cmds=$lt_export_symbols_cmds
 
44726
+       if test x"$x_includes" != x"NONE" && test -n "$x_includes" ; then
 
44727
+               X_INCLUDES=-I`echo $x_includes | sed -e "s/:/ -I/g"`
 
44728
+       fi
 
44729
+       if test x"$x_libraries" != x"NONE" && test -n "$x_libraries" ; then
 
44730
+               X_LIBRARIES=-L`echo $x_libraries | sed -e "s/:/ -L/g"`
 
44731
+       fi
 
44732
+       CFLAGS="$X_INCLUDES $CFLAGS"
 
44733
+       LIBS="$X_LIBRARIES $LIBS"
34982
44734
 
34983
 
 # Symbols that should not be listed in the preloaded symbols.
 
44735
-# Symbols that should not be listed in the preloaded symbols.
34984
44736
-exclude_expsyms=$lt_exclude_expsyms_RC
34985
 
+exclude_expsyms=$lt_exclude_expsyms
 
44737
+       XTEST_LIBS=""
 
44738
+       enable_xtest=no
 
44739
+       { echo "$as_me:$LINENO: checking for XTestFakeKeyEvent in -lXtst" >&5
 
44740
+echo $ECHO_N "checking for XTestFakeKeyEvent in -lXtst... $ECHO_C" >&6; }
 
44741
+if test "${ac_cv_lib_Xtst_XTestFakeKeyEvent+set}" = set; then
 
44742
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
44743
+else
 
44744
+  ac_check_lib_save_LIBS=$LIBS
 
44745
+LIBS="-lXtst $X_LIBRARIES $LIBS"
 
44746
+cat >conftest.$ac_ext <<_ACEOF
 
44747
+/* confdefs.h.  */
 
44748
+_ACEOF
 
44749
+cat confdefs.h >>conftest.$ac_ext
 
44750
+cat >>conftest.$ac_ext <<_ACEOF
 
44751
+/* end confdefs.h.  */
34986
44752
 
34987
 
 # Symbols that must always be exported.
 
44753
-# Symbols that must always be exported.
34988
44754
-include_expsyms=$lt_include_expsyms_RC
34989
 
+include_expsyms=$lt_include_expsyms
 
44755
+/* Override any GCC internal prototype to avoid an error.
 
44756
+   Use char because int might match the return type of a GCC
 
44757
+   builtin and then its argument prototype would still apply.  */
 
44758
+#ifdef __cplusplus
 
44759
+extern "C"
 
44760
+#endif
 
44761
+char XTestFakeKeyEvent ();
 
44762
+int
 
44763
+main ()
 
44764
+{
 
44765
+return XTestFakeKeyEvent ();
 
44766
+  ;
 
44767
+  return 0;
 
44768
+}
 
44769
+_ACEOF
 
44770
+rm -f conftest.$ac_objext conftest$ac_exeext
 
44771
+if { (ac_try="$ac_link"
 
44772
+case "(($ac_try" in
 
44773
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
44774
+  *) ac_try_echo=$ac_try;;
 
44775
+esac
 
44776
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
44777
+  (eval "$ac_link") 2>conftest.er1
 
44778
+  ac_status=$?
 
44779
+  grep -v '^ *+' conftest.er1 >conftest.err
 
44780
+  rm -f conftest.er1
 
44781
+  cat conftest.err >&5
 
44782
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
44783
+  (exit $ac_status); } && {
 
44784
+        test -z "$ac_c_werror_flag" ||
 
44785
+        test ! -s conftest.err
 
44786
+       } && test -s conftest$ac_exeext &&
 
44787
+       $as_test_x conftest$ac_exeext; then
 
44788
+  ac_cv_lib_Xtst_XTestFakeKeyEvent=yes
 
44789
+else
 
44790
+  echo "$as_me: failed program was:" >&5
 
44791
+sed 's/^/| /' conftest.$ac_ext >&5
34990
44792
 
34991
44793
-# ### END LIBTOOL TAG CONFIG: $tagname
34992
 
+# Commands necessary for linking programs (against libraries) with templates.
34993
 
+prelink_cmds=$lt_prelink_cmds
 
44794
+       ac_cv_lib_Xtst_XTestFakeKeyEvent=no
 
44795
+fi
34994
44796
 
34995
44797
-__EOF__
34996
 
+# Specify filename containing input files.
34997
 
+file_list_spec=$lt_file_list_spec
 
44798
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
44799
+      conftest$ac_exeext conftest.$ac_ext
 
44800
+LIBS=$ac_check_lib_save_LIBS
 
44801
+fi
 
44802
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_Xtst_XTestFakeKeyEvent" >&5
 
44803
+echo "${ECHO_T}$ac_cv_lib_Xtst_XTestFakeKeyEvent" >&6; }
 
44804
+if test $ac_cv_lib_Xtst_XTestFakeKeyEvent = yes; then
 
44805
+  XTEST_LIBS="-lX11 -lXtst $X_LIBRARIES"
 
44806
+               enable_xtest=yes
34998
44807
 
34999
 
+# How to hardcode a shared library path into an executable.
35000
 
+hardcode_action=$hardcode_action
 
44808
+cat >>confdefs.h <<\_ACEOF
 
44809
+#define HAVE_XTEST 1
 
44810
+_ACEOF
35001
44811
 
35002
44812
-else
35003
44813
-  # If there is no Makefile yet, we rely on a make rule to execute
35007
44817
-  if test -f "$ltmain_in"; then
35008
44818
-    test -f Makefile && make "$ltmain"
35009
44819
-  fi
35010
 
-fi
35011
 
+# The directories searched by this compiler when creating a shared library.
35012
 
+compiler_lib_search_dirs=$lt_compiler_lib_search_dirs
 
44820
 fi
35013
44821
 
35014
 
+# Dependencies to place before and after the objects being linked to
35015
 
+# create a shared library.
35016
 
+predep_objects=$lt_predep_objects
35017
 
+postdep_objects=$lt_postdep_objects
35018
 
+predeps=$lt_predeps
35019
 
+postdeps=$lt_postdeps
35020
44822
 
35021
44823
-ac_ext=c
35022
44824
-ac_cpp='$CPP $CPPFLAGS'
35023
44825
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
35024
44826
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
35025
44827
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
35026
 
+# The library search path used internally by the compiler when linking
35027
 
+# a shared library.
35028
 
+compiler_lib_search_path=$lt_compiler_lib_search_path
35029
 
 
 
44828
-
35030
44829
-CC="$lt_save_CC"
35031
 
+# ### END LIBTOOL CONFIG
35032
44830
 
35033
44831
-       ;;
35034
 
+_LT_EOF
35035
44832
 
35036
44833
-      *)
35037
 
-       { { echo "$as_me:$LINENO: error: Unsupported tag name: $tagname" >&5
35038
 
-echo "$as_me: error: Unsupported tag name: $tagname" >&2;}
 
44834
-       { { $as_echo "$as_me:$LINENO: error: Unsupported tag name: $tagname" >&5
 
44835
-$as_echo "$as_me: error: Unsupported tag name: $tagname" >&2;}
35039
44836
-   { (exit 1); exit 1; }; }
35040
 
+  case $host_os in
35041
 
+  aix3*)
35042
 
+    cat <<\_LT_EOF >> "$cfgfile"
35043
 
+# AIX sometimes has problems with the GCC collect2 program.  For some
35044
 
+# reason, if we set the COLLECT_NAMES environment variable, the problems
35045
 
+# vanish in a puff of smoke.
35046
 
+if test "X${COLLECT_NAMES+set}" != Xset; then
35047
 
+  COLLECT_NAMES=
35048
 
+  export COLLECT_NAMES
35049
 
+fi
35050
 
+_LT_EOF
35051
 
        ;;
35052
 
       esac
 
44837
-       ;;
 
44838
-      esac
 
44839
+pkg_failed=no
 
44840
+{ echo "$as_me:$LINENO: checking for XVIDMODE" >&5
 
44841
+echo $ECHO_N "checking for XVIDMODE... $ECHO_C" >&6; }
35053
44842
 
35054
44843
-      # Append the new tag name to the list of available tags.
35055
44844
-      if test -n "$tagname" ; then
35056
44845
-      available_tags="$available_tags $tagname"
35057
 
-    fi
35058
 
-    fi
 
44846
+if test -n "$PKG_CONFIG"; then
 
44847
+    if test -n "$XVIDMODE_CFLAGS"; then
 
44848
+        pkg_cv_XVIDMODE_CFLAGS="$XVIDMODE_CFLAGS"
 
44849
+    else
 
44850
+        if test -n "$PKG_CONFIG" && \
 
44851
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"xrandr >= 1.1.1 xxf86vm >= 1.0.1\"") >&5
 
44852
+  ($PKG_CONFIG --exists --print-errors "xrandr >= 1.1.1 xxf86vm >= 1.0.1") 2>&5
 
44853
+  ac_status=$?
 
44854
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
44855
+  (exit $ac_status); }; then
 
44856
+  pkg_cv_XVIDMODE_CFLAGS=`$PKG_CONFIG --cflags "xrandr >= 1.1.1 xxf86vm >= 1.0.1" 2>/dev/null`
 
44857
+else
 
44858
+  pkg_failed=yes
 
44859
+fi
 
44860
     fi
 
44861
+else
 
44862
+       pkg_failed=untried
 
44863
+fi
 
44864
+if test -n "$PKG_CONFIG"; then
 
44865
+    if test -n "$XVIDMODE_LIBS"; then
 
44866
+        pkg_cv_XVIDMODE_LIBS="$XVIDMODE_LIBS"
 
44867
+    else
 
44868
+        if test -n "$PKG_CONFIG" && \
 
44869
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"xrandr >= 1.1.1 xxf86vm >= 1.0.1\"") >&5
 
44870
+  ($PKG_CONFIG --exists --print-errors "xrandr >= 1.1.1 xxf86vm >= 1.0.1") 2>&5
 
44871
+  ac_status=$?
 
44872
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
44873
+  (exit $ac_status); }; then
 
44874
+  pkg_cv_XVIDMODE_LIBS=`$PKG_CONFIG --libs "xrandr >= 1.1.1 xxf86vm >= 1.0.1" 2>/dev/null`
 
44875
+else
 
44876
+  pkg_failed=yes
 
44877
+fi
 
44878
     fi
35059
44879
-  done
35060
44880
-  IFS="$lt_save_ifs"
35061
44881
-
35065
44885
-    chmod +x "$ofile"
35066
44886
-  else
35067
44887
-    rm -f "${ofile}T"
35068
 
-    { { echo "$as_me:$LINENO: error: unable to update list of available tagged configurations." >&5
35069
 
-echo "$as_me: error: unable to update list of available tagged configurations." >&2;}
 
44888
-    { { $as_echo "$as_me:$LINENO: error: unable to update list of available tagged configurations." >&5
 
44889
-$as_echo "$as_me: error: unable to update list of available tagged configurations." >&2;}
35070
44890
-   { (exit 1); exit 1; }; }
35071
44891
-  fi
35072
 
-fi
 
44892
+else
 
44893
+       pkg_failed=untried
 
44894
 fi
35073
44895
 
35074
 
+ltmain="$ac_aux_dir/ltmain.sh"
35075
44896
 
35076
44897
 
35077
44898
-# This can be used to rebuild libtool when needed
35078
44899
-LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
35079
 
+  # We use sed instead of cat because bash on DJGPP gets confused if
35080
 
+  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
35081
 
+  # text mode, it properly converts lines to CR/LF.  This bash problem
35082
 
+  # is reportedly fixed, but why not run on old versions too?
35083
 
+  sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \
35084
 
+    || (rm -f "$cfgfile"; exit 1)
35085
 
 
 
44900
-
35086
44901
-# Always use our own libtool.
35087
44902
-LIBTOOL='$(SHELL) $(top_builddir)/libtool'
35088
 
+  case $xsi_shell in
35089
 
+  yes)
35090
 
+    cat << \_LT_EOF >> "$cfgfile"
35091
 
 
 
44903
-
35092
44904
-# Prevent multiple expansion
35093
 
+# func_dirname file append nondir_replacement
35094
 
+# Compute the dirname of FILE.  If nonempty, add APPEND to the result,
35095
 
+# otherwise set result to NONDIR_REPLACEMENT.
35096
 
+func_dirname ()
35097
 
+{
35098
 
+  case ${1} in
35099
 
+    */*) func_dirname_result="${1%/*}${2}" ;;
35100
 
+    *  ) func_dirname_result="${3}" ;;
35101
 
+  esac
35102
 
+}
35103
 
 
35104
 
+# func_basename file
35105
 
+func_basename ()
35106
 
+{
35107
 
+  func_basename_result="${1##*/}"
35108
 
+}
35109
 
 
35110
 
+# func_dirname_and_basename file append nondir_replacement
35111
 
+# perform func_basename and func_dirname in a single function
35112
 
+# call:
35113
 
+#   dirname:  Compute the dirname of FILE.  If nonempty,
35114
 
+#             add APPEND to the result, otherwise set result
35115
 
+#             to NONDIR_REPLACEMENT.
35116
 
+#             value returned in "$func_dirname_result"
35117
 
+#   basename: Compute filename of FILE.
35118
 
+#             value retuned in "$func_basename_result"
35119
 
+# Implementation must be kept synchronized with func_dirname
35120
 
+# and func_basename. For efficiency, we do not delegate to
35121
 
+# those functions but instead duplicate the functionality here.
35122
 
+func_dirname_and_basename ()
35123
 
+{
35124
 
+  case ${1} in
35125
 
+    */*) func_dirname_result="${1%/*}${2}" ;;
35126
 
+    *  ) func_dirname_result="${3}" ;;
35127
 
+  esac
35128
 
+  func_basename_result="${1##*/}"
35129
 
+}
35130
 
 
35131
 
+# func_stripname prefix suffix name
35132
 
+# strip PREFIX and SUFFIX off of NAME.
35133
 
+# PREFIX and SUFFIX must not contain globbing or regex special
35134
 
+# characters, hashes, percent signs, but SUFFIX may contain a leading
35135
 
+# dot (in which case that matches only a dot).
35136
 
+func_stripname ()
35137
 
+{
35138
 
+  # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
35139
 
+  # positional parameters, so assign one to ordinary parameter first.
35140
 
+  func_stripname_result=${3}
35141
 
+  func_stripname_result=${func_stripname_result#"${1}"}
35142
 
+  func_stripname_result=${func_stripname_result%"${2}"}
35143
 
+}
35144
 
 
35145
 
+# func_opt_split
35146
 
+func_opt_split ()
35147
 
+{
35148
 
+  func_opt_split_opt=${1%%=*}
35149
 
+  func_opt_split_arg=${1#*=}
35150
 
+}
35151
 
 
35152
 
+# func_lo2o object
35153
 
+func_lo2o ()
35154
 
+{
35155
 
+  case ${1} in
35156
 
+    *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
35157
 
+    *)    func_lo2o_result=${1} ;;
35158
 
+  esac
35159
 
+}
35160
 
 
35161
 
+# func_xform libobj-or-source
35162
 
+func_xform ()
35163
 
+{
35164
 
+  func_xform_result=${1%.*}.lo
35165
 
+}
35166
 
 
35167
 
+# func_arith arithmetic-term...
35168
 
+func_arith ()
35169
 
+{
35170
 
+  func_arith_result=$(( $* ))
35171
 
+}
35172
 
 
35173
 
+# func_len string
35174
 
+# STRING may not start with a hyphen.
35175
 
+func_len ()
35176
 
+{
35177
 
+  func_len_result=${#1}
35178
 
+}
35179
 
 
35180
 
+_LT_EOF
35181
 
+    ;;
35182
 
+  *) # Bourne compatible functions.
35183
 
+    cat << \_LT_EOF >> "$cfgfile"
35184
 
 
35185
 
+# func_dirname file append nondir_replacement
35186
 
+# Compute the dirname of FILE.  If nonempty, add APPEND to the result,
35187
 
+# otherwise set result to NONDIR_REPLACEMENT.
35188
 
+func_dirname ()
35189
 
+{
35190
 
+  # Extract subdirectory from the argument.
35191
 
+  func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"`
35192
 
+  if test "X$func_dirname_result" = "X${1}"; then
35193
 
+    func_dirname_result="${3}"
35194
 
+  else
35195
 
+    func_dirname_result="$func_dirname_result${2}"
35196
 
+  fi
35197
 
+}
35198
 
 
35199
 
+# func_basename file
35200
 
+func_basename ()
35201
 
+{
35202
 
+  func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"`
35203
 
+}
35204
 
 
35205
 
 
35206
 
+# func_stripname prefix suffix name
35207
 
+# strip PREFIX and SUFFIX off of NAME.
35208
 
+# PREFIX and SUFFIX must not contain globbing or regex special
35209
 
+# characters, hashes, percent signs, but SUFFIX may contain a leading
35210
 
+# dot (in which case that matches only a dot).
35211
 
+# func_strip_suffix prefix name
35212
 
+func_stripname ()
35213
 
+{
35214
 
+  case ${2} in
35215
 
+    .*) func_stripname_result=`$ECHO "X${3}" \
35216
 
+           | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;;
35217
 
+    *)  func_stripname_result=`$ECHO "X${3}" \
35218
 
+           | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;;
35219
 
+  esac
35220
 
+}
35221
 
 
35222
 
+# sed scripts:
35223
 
+my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q'
35224
 
+my_sed_long_arg='1s/^-[^=]*=//'
35225
 
 
35226
 
+# func_opt_split
35227
 
+func_opt_split ()
35228
 
+{
35229
 
+  func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"`
35230
 
+  func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"`
35231
 
+}
35232
 
 
35233
 
+# func_lo2o object
35234
 
+func_lo2o ()
35235
 
+{
35236
 
+  func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"`
35237
 
+}
35238
 
 
35239
 
+# func_xform libobj-or-source
35240
 
+func_xform ()
35241
 
+{
35242
 
+  func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[^.]*$/.lo/'`
35243
 
+}
35244
 
 
35245
 
+# func_arith arithmetic-term...
35246
 
+func_arith ()
35247
 
+{
35248
 
+  func_arith_result=`expr "$@"`
35249
 
+}
35250
 
 
35251
 
+# func_len string
35252
 
+# STRING may not start with a hyphen.
35253
 
+func_len ()
35254
 
+{
35255
 
+  func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len`
35256
 
+}
35257
 
 
35258
 
+_LT_EOF
 
44905
-
 
44906
+if test $pkg_failed = yes; then
 
44907
 
 
44908
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
44909
+        _pkg_short_errors_supported=yes
 
44910
+else
 
44911
+        _pkg_short_errors_supported=no
 
44912
+fi
 
44913
+        if test $_pkg_short_errors_supported = yes; then
 
44914
+               XVIDMODE_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "xrandr >= 1.1.1 xxf86vm >= 1.0.1"`
 
44915
+        else
 
44916
+               XVIDMODE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "xrandr >= 1.1.1 xxf86vm >= 1.0.1"`
 
44917
+        fi
 
44918
+       # Put the nasty error message in config.log where it belongs
 
44919
+       echo "$XVIDMODE_PKG_ERRORS" >&5
 
44920
 
 
44921
+       { echo "$as_me:$LINENO: result: no" >&5
 
44922
+echo "${ECHO_T}no" >&6; }
 
44923
+                have_xvidmode=no
 
44924
+elif test $pkg_failed = untried; then
 
44925
+       have_xvidmode=no
 
44926
+else
 
44927
+       XVIDMODE_CFLAGS=$pkg_cv_XVIDMODE_CFLAGS
 
44928
+       XVIDMODE_LIBS=$pkg_cv_XVIDMODE_LIBS
 
44929
+        { echo "$as_me:$LINENO: result: yes" >&5
 
44930
+echo "${ECHO_T}yes" >&6; }
 
44931
+       have_xvidmode=yes
 
44932
+fi
 
44933
 
 
44934
+       if test x$have_xvidmode = xyes; then
 
44935
 
 
44936
+cat >>confdefs.h <<\_ACEOF
 
44937
+#define HAVE_XVIDMODE
 
44938
+_ACEOF
 
44939
 
 
44940
+       fi
 
44941
 
 
44942
+       X_LIBS=""
 
44943
 
 
44944
+               X_LIBS="$X_LIBRARIES -lX11"
 
44945
 
 
44946
 
 
44947
+               have_xfree=no
 
44948
+       cat >conftest.$ac_ext <<_ACEOF
 
44949
 
 
44950
+               #include <X11/XF86keysym.h>
 
44951
+               int main(int argc,char **argv) {
 
44952
+               return 0;
 
44953
+               }
 
44954
 
 
44955
+_ACEOF
 
44956
+rm -f conftest.$ac_objext
 
44957
+if { (ac_try="$ac_compile"
 
44958
+case "(($ac_try" in
 
44959
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
44960
+  *) ac_try_echo=$ac_try;;
35259
44961
+esac
35260
 
 
35261
 
+case $lt_shell_append in
35262
 
+  yes)
35263
 
+    cat << \_LT_EOF >> "$cfgfile"
35264
 
 
35265
 
+# func_append var value
35266
 
+# Append VALUE to the end of shell variable VAR.
35267
 
+func_append ()
35268
 
+{
35269
 
+  eval "$1+=\$2"
35270
 
+}
35271
 
+_LT_EOF
35272
 
+    ;;
35273
 
+  *)
35274
 
+    cat << \_LT_EOF >> "$cfgfile"
35275
 
 
35276
 
+# func_append var value
35277
 
+# Append VALUE to the end of shell variable VAR.
35278
 
+func_append ()
35279
 
+{
35280
 
+  eval "$1=\$$1\$2"
35281
 
+}
 
44962
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
44963
+  (eval "$ac_compile") 2>conftest.er1
 
44964
+  ac_status=$?
 
44965
+  grep -v '^ *+' conftest.er1 >conftest.err
 
44966
+  rm -f conftest.er1
 
44967
+  cat conftest.err >&5
 
44968
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
44969
+  (exit $ac_status); } && {
 
44970
+        test -z "$ac_c_werror_flag" ||
 
44971
+        test ! -s conftest.err
 
44972
+       } && test -s conftest.$ac_objext; then
 
44973
+  have_xfree=yes
 
44974
 
 
44975
+else
 
44976
+  echo "$as_me: failed program was:" >&5
 
44977
+sed 's/^/| /' conftest.$ac_ext >&5
 
44978
 
 
44979
 
 
44980
+fi
 
44981
 
 
44982
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
44983
+       { echo "$as_me:$LINENO: checking for X11 XFree86 headers" >&5
 
44984
+echo $ECHO_N "checking for X11 XFree86 headers... $ECHO_C" >&6; }
 
44985
+       { echo "$as_me:$LINENO: result: $have_xfree" >&5
 
44986
+echo "${ECHO_T}$have_xfree" >&6; }
 
44987
+       if test x"$have_xfree" = "xyes" ; then
 
44988
 
 
44989
+cat >>confdefs.h <<\_ACEOF
 
44990
+#define HAVE_XFREE 1
 
44991
+_ACEOF
 
44992
 
 
44993
+       fi
 
44994
+fi
 
44995
+ if test x$have_xvidmode = xyes; then
 
44996
+  HAVE_XVIDMODE_TRUE=
 
44997
+  HAVE_XVIDMODE_FALSE='#'
 
44998
+else
 
44999
+  HAVE_XVIDMODE_TRUE='#'
 
45000
+  HAVE_XVIDMODE_FALSE=
 
45001
+fi
 
45002
 
 
45003
 
 
45004
 
 
45005
+{ echo "$as_me:$LINENO: checking whether Python plugin support is requested" >&5
 
45006
+echo $ECHO_N "checking whether Python plugin support is requested... $ECHO_C" >&6; }
 
45007
+# Check whether --enable-python was given.
 
45008
+if test "${enable_python+set}" = set; then
 
45009
+  enableval=$enable_python; enable_python=$enableval have_python=$enableval
 
45010
+else
 
45011
+  enable_python=autodetect have_python=yes
 
45012
+fi
 
45013
 
 
45014
+{ echo "$as_me:$LINENO: result: $enable_python" >&5
 
45015
+echo "${ECHO_T}$enable_python" >&6; }
 
45016
 
 
45017
+if test "x$have_python" != "xyes"; then
 
45018
+       if test "x$enable_python" = "xyes"; then
 
45019
+               { { echo "$as_me:$LINENO: error: Python not found" >&5
 
45020
+echo "$as_me: error: Python not found" >&2;}
 
45021
+   { (exit 1); exit 1; }; }
 
45022
+       elif test "x$enable_python" = "xautodetect"; then
 
45023
+               enable_python=no
 
45024
+               { echo "$as_me:$LINENO: WARNING: Python not found, disabling python support" >&5
 
45025
+echo "$as_me: WARNING: Python not found, disabling python support" >&2;}
 
45026
+       fi
 
45027
+fi
35282
45028
 
35283
45029
-if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
35284
45030
-       if test -n "$ac_tool_prefix"; then
35285
45031
-  # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
35286
45032
-set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
35287
 
-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
35288
 
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
45033
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
45034
-$as_echo_n "checking for $ac_word... " >&6; }
35289
45035
-if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
35290
 
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
45036
-  $as_echo_n "(cached) " >&6
35291
45037
-else
35292
45038
-  case $PKG_CONFIG in
35293
45039
-  [\\/]* | ?:[\\/]*)
35294
45040
-  ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
35295
 
+_LT_EOF
35296
 
   ;;
35297
 
-  *)
35298
 
-  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
35299
 
+  esac
35300
 
+
35301
 
+
35302
 
+  sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \
35303
 
+    || (rm -f "$cfgfile"; exit 1)
35304
 
+
35305
 
+  mv -f "$cfgfile" "$ofile" ||
35306
 
+    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
35307
 
+  chmod +x "$ofile"
35308
 
+
35309
 
+
35310
 
+    cat <<_LT_EOF >> "$ofile"
35311
 
+
35312
 
+# ### BEGIN LIBTOOL TAG CONFIG: CXX
35313
 
+
35314
 
+# The linker used to build libraries.
35315
 
+LD=$lt_LD_CXX
35316
 
+
35317
 
+# Commands used to build an old-style archive.
35318
 
+old_archive_cmds=$lt_old_archive_cmds_CXX
35319
 
+
35320
 
+# A language specific compiler.
35321
 
+CC=$lt_compiler_CXX
35322
 
+
35323
 
+# Is the compiler the GNU compiler?
35324
 
+with_gcc=$GCC_CXX
35325
 
+
35326
 
+# Compiler flag to turn off builtin functions.
35327
 
+no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX
35328
 
+
35329
 
+# How to pass a linker flag through the compiler.
35330
 
+wl=$lt_lt_prog_compiler_wl_CXX
35331
 
+
35332
 
+# Additional compiler flags for building library objects.
35333
 
+pic_flag=$lt_lt_prog_compiler_pic_CXX
35334
 
+
35335
 
+# Compiler flag to prevent dynamic linking.
35336
 
+link_static_flag=$lt_lt_prog_compiler_static_CXX
35337
 
+
35338
 
+# Does compiler simultaneously support -c and -o options?
35339
 
+compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX
35340
 
+
35341
 
+# Whether or not to add -lc for building shared libraries.
35342
 
+build_libtool_need_lc=$archive_cmds_need_lc_CXX
35343
 
+
35344
 
+# Whether or not to disallow shared libs when runtime libs are static.
35345
 
+allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX
35346
 
+
35347
 
+# Compiler flag to allow reflexive dlopens.
35348
 
+export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX
35349
 
+
35350
 
+# Compiler flag to generate shared objects directly from archives.
35351
 
+whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX
35352
 
+
35353
 
+# Whether the compiler copes with passing no objects directly.
35354
 
+compiler_needs_object=$lt_compiler_needs_object_CXX
35355
 
+
35356
 
+# Create an old-style archive from a shared archive.
35357
 
+old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX
35358
 
+
35359
 
+# Create a temporary old-style archive to link instead of a shared archive.
35360
 
+old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX
35361
 
+
35362
 
+# Commands used to build a shared archive.
35363
 
+archive_cmds=$lt_archive_cmds_CXX
35364
 
+archive_expsym_cmds=$lt_archive_expsym_cmds_CXX
35365
 
+
35366
 
+# Commands used to build a loadable module if different from building
35367
 
+# a shared archive.
35368
 
+module_cmds=$lt_module_cmds_CXX
35369
 
+module_expsym_cmds=$lt_module_expsym_cmds_CXX
35370
 
+
35371
 
+# Whether we are building with GNU ld or not.
35372
 
+with_gnu_ld=$lt_with_gnu_ld_CXX
35373
 
+
35374
 
+# Flag that allows shared libraries with undefined symbols to be built.
35375
 
+allow_undefined_flag=$lt_allow_undefined_flag_CXX
35376
 
+
35377
 
+# Flag that enforces no undefined symbols.
35378
 
+no_undefined_flag=$lt_no_undefined_flag_CXX
35379
 
+
35380
 
+# Flag to hardcode \$libdir into a binary during linking.
35381
 
+# This must work even if \$libdir does not exist
35382
 
+hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX
35383
 
+
35384
 
+# If ld is used when linking, flag to hardcode \$libdir into a binary
35385
 
+# during linking.  This must work even if \$libdir does not exist.
35386
 
+hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX
35387
 
+
35388
 
+# Whether we need a single "-rpath" flag with a separated argument.
35389
 
+hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX
35390
 
+
35391
 
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
35392
 
+# DIR into the resulting binary.
35393
 
+hardcode_direct=$hardcode_direct_CXX
35394
 
+
35395
 
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
35396
 
+# DIR into the resulting binary and the resulting library dependency is
35397
 
+# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
35398
 
+# library is relocated.
35399
 
+hardcode_direct_absolute=$hardcode_direct_absolute_CXX
35400
 
+
35401
 
+# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
35402
 
+# into the resulting binary.
35403
 
+hardcode_minus_L=$hardcode_minus_L_CXX
35404
 
+
35405
 
+# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
35406
 
+# into the resulting binary.
35407
 
+hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX
35408
 
+
35409
 
+# Set to "yes" if building a shared library automatically hardcodes DIR
35410
 
+# into the library and all subsequent libraries and executables linked
35411
 
+# against it.
35412
 
+hardcode_automatic=$hardcode_automatic_CXX
35413
 
+
35414
 
+# Set to yes if linker adds runtime paths of dependent libraries
35415
 
+# to runtime path list.
35416
 
+inherit_rpath=$inherit_rpath_CXX
35417
 
+
35418
 
+# Whether libtool must link a program against all its dependency libraries.
35419
 
+link_all_deplibs=$link_all_deplibs_CXX
35420
 
+
35421
 
+# Fix the shell variable \$srcfile for the compiler.
35422
 
+fix_srcfile_path=$lt_fix_srcfile_path_CXX
35423
 
+
35424
 
+# Set to "yes" if exported symbols are required.
35425
 
+always_export_symbols=$always_export_symbols_CXX
35426
 
+
35427
 
+# The commands to list exported symbols.
35428
 
+export_symbols_cmds=$lt_export_symbols_cmds_CXX
35429
 
+
35430
 
+# Symbols that should not be listed in the preloaded symbols.
35431
 
+exclude_expsyms=$lt_exclude_expsyms_CXX
35432
 
+
35433
 
+# Symbols that must always be exported.
35434
 
+include_expsyms=$lt_include_expsyms_CXX
35435
 
+
35436
 
+# Commands necessary for linking programs (against libraries) with templates.
35437
 
+prelink_cmds=$lt_prelink_cmds_CXX
35438
 
+
35439
 
+# Specify filename containing input files.
35440
 
+file_list_spec=$lt_file_list_spec_CXX
35441
 
+
35442
 
+# How to hardcode a shared library path into an executable.
35443
 
+hardcode_action=$hardcode_action_CXX
35444
 
+
35445
 
+# The directories searched by this compiler when creating a shared library.
35446
 
+compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX
35447
 
+
35448
 
+# Dependencies to place before and after the objects being linked to
35449
 
+# create a shared library.
35450
 
+predep_objects=$lt_predep_objects_CXX
35451
 
+postdep_objects=$lt_postdep_objects_CXX
35452
 
+predeps=$lt_predeps_CXX
35453
 
+postdeps=$lt_postdeps_CXX
35454
 
+
35455
 
+# The library search path used internally by the compiler when linking
35456
 
+# a shared library.
35457
 
+compiler_lib_search_path=$lt_compiler_lib_search_path_CXX
35458
 
+
35459
 
+# ### END LIBTOOL TAG CONFIG: CXX
35460
 
+_LT_EOF
35461
 
+
35462
 
+
35463
 
+{ (exit 0); exit 0; }
35464
 
+_LTEOF
35465
 
+chmod +x "$CONFIG_LT"
35466
 
+
35467
 
+# configure is writing to config.log, but config.lt does its own redirection,
35468
 
+# appending to config.log, which fails on DOS, as config.log is still kept
35469
 
+# open by configure.  Here we exec the FD to /dev/null, effectively closing
35470
 
+# config.log, so it can be properly (re)opened and appended to by config.lt.
35471
 
+if test "$no_create" != yes; then
35472
 
+  lt_cl_success=:
35473
 
+  test "$silent" = yes &&
35474
 
+    lt_config_lt_args="$lt_config_lt_args --quiet"
35475
 
+  exec 5>/dev/null
35476
 
+  $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
35477
 
+  exec 5>>config.log
35478
 
+  $lt_cl_success || { (exit 1); exit 1; }
35479
 
+fi
35480
 
+
35481
 
+
35482
 
+
35483
 
+
35484
 
+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
35485
 
+       if test -n "$ac_tool_prefix"; then
35486
 
+  # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
35487
 
+set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
 
45041
-  ;;
 
45042
-  *)
 
45043
-  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
45044
-for as_dir in $PATH
 
45045
-do
 
45046
-  IFS=$as_save_IFS
 
45047
-  test -z "$as_dir" && as_dir=.
 
45048
-  for ac_exec_ext in '' $ac_executable_extensions; do
 
45049
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
45050
-    ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
45051
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
45052
-    break 2
 
45053
-  fi
 
45054
-done
 
45055
-done
 
45056
-IFS=$as_save_IFS
 
45057
+if test "x$have_python" != "xno"; then
 
45058
 
 
45059
-  ;;
 
45060
-esac
 
45061
-fi
 
45062
-PKG_CONFIG=$ac_cv_path_PKG_CONFIG
 
45063
-if test -n "$PKG_CONFIG"; then
 
45064
-  { $as_echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5
 
45065
-$as_echo "$PKG_CONFIG" >&6; }
 
45066
-else
 
45067
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
45068
-$as_echo "no" >&6; }
 
45069
-fi
 
45070
 
 
45071
 
 
45072
-fi
 
45073
-if test -z "$ac_cv_path_PKG_CONFIG"; then
 
45074
-  ac_pt_PKG_CONFIG=$PKG_CONFIG
 
45075
-  # Extract the first word of "pkg-config", so it can be a program name with args.
 
45076
-set dummy pkg-config; ac_word=$2
 
45077
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
45078
-$as_echo_n "checking for $ac_word... " >&6; }
 
45079
-if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then
 
45080
-  $as_echo_n "(cached) " >&6
 
45081
-else
 
45082
-  case $ac_pt_PKG_CONFIG in
 
45083
-  [\\/]* | ?:[\\/]*)
 
45084
-  ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
 
45085
-  ;;
 
45086
-  *)
 
45087
-  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
45088
-for as_dir in $PATH
 
45089
-do
 
45090
-  IFS=$as_save_IFS
 
45091
-  test -z "$as_dir" && as_dir=.
 
45092
-  for ac_exec_ext in '' $ac_executable_extensions; do
 
45093
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
45094
-    ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
45095
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
45096
-    break 2
 
45097
-  fi
 
45098
-done
 
45099
-done
 
45100
-IFS=$as_save_IFS
 
45101
 
 
45102
-  ;;
 
45103
-esac
 
45104
-fi
 
45105
-ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
 
45106
-if test -n "$ac_pt_PKG_CONFIG"; then
 
45107
-  { $as_echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5
 
45108
-$as_echo "$ac_pt_PKG_CONFIG" >&6; }
 
45109
+        if test -n "$PYTHON"; then
 
45110
+      # If the user set $PYTHON, use it and don't search something else.
 
45111
+      { echo "$as_me:$LINENO: checking whether $PYTHON version >= 2.3" >&5
 
45112
+echo $ECHO_N "checking whether $PYTHON version >= 2.3... $ECHO_C" >&6; }
 
45113
+      prog="import sys, string
 
45114
+# split strings by '.' and convert to numeric.  Append some zeros
 
45115
+# because we need at least 4 digits for the hex conversion.
 
45116
+minver = map(int, string.split('2.3', '.')) + [0, 0, 0]
 
45117
+minverhex = 0
 
45118
+for i in xrange(0, 4): minverhex = (minverhex << 8) + minver[i]
 
45119
+sys.exit(sys.hexversion < minverhex)"
 
45120
+  if { echo "$as_me:$LINENO: $PYTHON -c "$prog"" >&5
 
45121
+   ($PYTHON -c "$prog") >&5 2>&5
 
45122
+   ac_status=$?
 
45123
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45124
+   (exit $ac_status); }; then
 
45125
+  { echo "$as_me:$LINENO: result: yes" >&5
 
45126
+echo "${ECHO_T}yes" >&6; }
 
45127
 else
 
45128
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
45129
-$as_echo "no" >&6; }
 
45130
+  { { echo "$as_me:$LINENO: error: too old" >&5
 
45131
+echo "$as_me: error: too old" >&2;}
 
45132
+   { (exit 1); exit 1; }; }
 
45133
 fi
 
45134
 
 
45135
-  if test "x$ac_pt_PKG_CONFIG" = x; then
 
45136
-    PKG_CONFIG=""
 
45137
-  else
 
45138
-    case $cross_compiling:$ac_tool_warned in
 
45139
-yes:)
 
45140
-{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
 
45141
-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
45142
-ac_tool_warned=yes ;;
 
45143
-esac
 
45144
-    PKG_CONFIG=$ac_pt_PKG_CONFIG
 
45145
-  fi
 
45146
+      am_display_PYTHON=$PYTHON
 
45147
+    else
 
45148
+      # Otherwise, try each interpreter until we find one that satisfies
 
45149
+      # VERSION.
 
45150
+      { echo "$as_me:$LINENO: checking for a Python interpreter with version >= 2.3" >&5
 
45151
+echo $ECHO_N "checking for a Python interpreter with version >= 2.3... $ECHO_C" >&6; }
 
45152
+if test "${am_cv_pathless_PYTHON+set}" = set; then
 
45153
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
45154
 else
 
45155
-  PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
 
45156
-fi
 
45157
 
 
45158
+       for am_cv_pathless_PYTHON in python python2 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 python1.6 python1.5 none; do
 
45159
+         test "$am_cv_pathless_PYTHON" = none && break
 
45160
+         prog="import sys, string
 
45161
+# split strings by '.' and convert to numeric.  Append some zeros
 
45162
+# because we need at least 4 digits for the hex conversion.
 
45163
+minver = map(int, string.split('2.3', '.')) + [0, 0, 0]
 
45164
+minverhex = 0
 
45165
+for i in xrange(0, 4): minverhex = (minverhex << 8) + minver[i]
 
45166
+sys.exit(sys.hexversion < minverhex)"
 
45167
+  if { echo "$as_me:$LINENO: $am_cv_pathless_PYTHON -c "$prog"" >&5
 
45168
+   ($am_cv_pathless_PYTHON -c "$prog") >&5 2>&5
 
45169
+   ac_status=$?
 
45170
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45171
+   (exit $ac_status); }; then
 
45172
+  break
 
45173
 fi
 
45174
-if test -n "$PKG_CONFIG"; then
 
45175
-       _pkg_min_version=0.9.0
 
45176
-       { $as_echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5
 
45177
-$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
 
45178
-       if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
 
45179
-               { $as_echo "$as_me:$LINENO: result: yes" >&5
 
45180
-$as_echo "yes" >&6; }
 
45181
-       else
 
45182
-               { $as_echo "$as_me:$LINENO: result: no" >&5
 
45183
-$as_echo "no" >&6; }
 
45184
-               PKG_CONFIG=""
 
45185
-       fi
 
45186
 
 
45187
+       done
 
45188
 fi
 
45189
-
 
45190
-# Extract the first word of "glib-genmarshal", so it can be a program name with args.
 
45191
-set dummy glib-genmarshal; ac_word=$2
 
45192
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
45193
-$as_echo_n "checking for $ac_word... " >&6; }
 
45194
-if test "${ac_cv_path_GLIB_GENMARSHAL+set}" = set; then
 
45195
-  $as_echo_n "(cached) " >&6
 
45196
+{ echo "$as_me:$LINENO: result: $am_cv_pathless_PYTHON" >&5
 
45197
+echo "${ECHO_T}$am_cv_pathless_PYTHON" >&6; }
 
45198
+      # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON.
 
45199
+      if test "$am_cv_pathless_PYTHON" = none; then
 
45200
+       PYTHON=:
 
45201
+      else
 
45202
+        # Extract the first word of "$am_cv_pathless_PYTHON", so it can be a program name with args.
 
45203
+set dummy $am_cv_pathless_PYTHON; ac_word=$2
35488
45204
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
35489
45205
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
35490
 
+if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
35491
 
+  echo $ECHO_N "(cached) $ECHO_C" >&6
35492
 
+else
35493
 
+  case $PKG_CONFIG in
35494
 
+  [\\/]* | ?:[\\/]*)
35495
 
+  ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
35496
 
+  ;;
35497
 
+  *)
35498
 
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
35499
 
 for as_dir in $PATH
35500
 
 do
35501
 
   IFS=$as_save_IFS
35502
 
@@ -22295,7 +19451,7 @@
35503
 
 
35504
 
 
35505
 
 # The full list of plugins
 
45206
+if test "${ac_cv_path_PYTHON+set}" = set; then
 
45207
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
45208
 else
 
45209
-  case $GLIB_GENMARSHAL in
 
45210
+  case $PYTHON in
 
45211
   [\\/]* | ?:[\\/]*)
 
45212
-  ac_cv_path_GLIB_GENMARSHAL="$GLIB_GENMARSHAL" # Let the user override the test with a path.
 
45213
+  ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a path.
 
45214
   ;;
 
45215
   *)
 
45216
   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
45217
@@ -22943,8 +21086,8 @@
 
45218
   test -z "$as_dir" && as_dir=.
 
45219
   for ac_exec_ext in '' $ac_executable_extensions; do
 
45220
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
45221
-    ac_cv_path_GLIB_GENMARSHAL="$as_dir/$ac_word$ac_exec_ext"
 
45222
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
45223
+    ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext"
 
45224
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
45225
     break 2
 
45226
   fi
 
45227
 done
 
45228
@@ -22954,125 +21097,177 @@
 
45229
   ;;
 
45230
 esac
 
45231
 fi
 
45232
-GLIB_GENMARSHAL=$ac_cv_path_GLIB_GENMARSHAL
 
45233
-if test -n "$GLIB_GENMARSHAL"; then
 
45234
-  { $as_echo "$as_me:$LINENO: result: $GLIB_GENMARSHAL" >&5
 
45235
-$as_echo "$GLIB_GENMARSHAL" >&6; }
 
45236
+PYTHON=$ac_cv_path_PYTHON
 
45237
+if test -n "$PYTHON"; then
 
45238
+  { echo "$as_me:$LINENO: result: $PYTHON" >&5
 
45239
+echo "${ECHO_T}$PYTHON" >&6; }
 
45240
 else
 
45241
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
45242
-$as_echo "no" >&6; }
 
45243
+  { echo "$as_me:$LINENO: result: no" >&5
 
45244
+echo "${ECHO_T}no" >&6; }
 
45245
 fi
 
45246
 
 
45247
 
 
45248
-# Extract the first word of "glib-mkenums", so it can be a program name with args.
 
45249
-set dummy glib-mkenums; ac_word=$2
 
45250
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
45251
-$as_echo_n "checking for $ac_word... " >&6; }
 
45252
-if test "${ac_cv_path_GLIB_MKENUMS+set}" = set; then
 
45253
-  $as_echo_n "(cached) " >&6
 
45254
+      fi
 
45255
+      am_display_PYTHON=$am_cv_pathless_PYTHON
 
45256
+    fi
 
45257
+
 
45258
+
 
45259
+  if test "$PYTHON" = :; then
 
45260
+      have_python=no
 
45261
+  else
 
45262
+
 
45263
+
 
45264
+  { echo "$as_me:$LINENO: checking for $am_display_PYTHON version" >&5
 
45265
+echo $ECHO_N "checking for $am_display_PYTHON version... $ECHO_C" >&6; }
 
45266
+if test "${am_cv_python_version+set}" = set; then
 
45267
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
45268
 else
 
45269
-  case $GLIB_MKENUMS in
 
45270
-  [\\/]* | ?:[\\/]*)
 
45271
-  ac_cv_path_GLIB_MKENUMS="$GLIB_MKENUMS" # Let the user override the test with a path.
 
45272
-  ;;
 
45273
-  *)
 
45274
-  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
45275
-for as_dir in $PATH
 
45276
-do
 
45277
-  IFS=$as_save_IFS
 
45278
-  test -z "$as_dir" && as_dir=.
 
45279
-  for ac_exec_ext in '' $ac_executable_extensions; do
 
45280
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
45281
-    ac_cv_path_GLIB_MKENUMS="$as_dir/$ac_word$ac_exec_ext"
 
45282
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
45283
-    break 2
 
45284
-  fi
 
45285
-done
 
45286
-done
 
45287
-IFS=$as_save_IFS
 
45288
+  am_cv_python_version=`$PYTHON -c "import sys; print sys.version[:3]"`
 
45289
+fi
 
45290
+{ echo "$as_me:$LINENO: result: $am_cv_python_version" >&5
 
45291
+echo "${ECHO_T}$am_cv_python_version" >&6; }
 
45292
+  PYTHON_VERSION=$am_cv_python_version
 
45293
 
 
45294
-  ;;
 
45295
-esac
 
45296
+
 
45297
+
 
45298
+  PYTHON_PREFIX='${prefix}'
 
45299
+
 
45300
+  PYTHON_EXEC_PREFIX='${exec_prefix}'
 
45301
+
 
45302
+
 
45303
+
 
45304
+  { echo "$as_me:$LINENO: checking for $am_display_PYTHON platform" >&5
 
45305
+echo $ECHO_N "checking for $am_display_PYTHON platform... $ECHO_C" >&6; }
 
45306
+if test "${am_cv_python_platform+set}" = set; then
 
45307
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
45308
+else
 
45309
+  am_cv_python_platform=`$PYTHON -c "import sys; print sys.platform"`
 
45310
 fi
 
45311
-GLIB_MKENUMS=$ac_cv_path_GLIB_MKENUMS
 
45312
-if test -n "$GLIB_MKENUMS"; then
 
45313
-  { $as_echo "$as_me:$LINENO: result: $GLIB_MKENUMS" >&5
 
45314
-$as_echo "$GLIB_MKENUMS" >&6; }
 
45315
+{ echo "$as_me:$LINENO: result: $am_cv_python_platform" >&5
 
45316
+echo "${ECHO_T}$am_cv_python_platform" >&6; }
 
45317
+  PYTHON_PLATFORM=$am_cv_python_platform
 
45318
+
 
45319
+
 
45320
+
 
45321
+
 
45322
+                { echo "$as_me:$LINENO: checking for $am_display_PYTHON script directory" >&5
 
45323
+echo $ECHO_N "checking for $am_display_PYTHON script directory... $ECHO_C" >&6; }
 
45324
+if test "${am_cv_python_pythondir+set}" = set; then
 
45325
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
45326
 else
 
45327
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
45328
-$as_echo "no" >&6; }
 
45329
+  am_cv_python_pythondir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(0,0,prefix='$PYTHON_PREFIX')" 2>/dev/null ||
 
45330
+     echo "$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages"`
 
45331
 fi
 
45332
+{ echo "$as_me:$LINENO: result: $am_cv_python_pythondir" >&5
 
45333
+echo "${ECHO_T}$am_cv_python_pythondir" >&6; }
 
45334
+  pythondir=$am_cv_python_pythondir
 
45335
 
 
45336
 
 
45337
 
 
45338
-# Requirements
 
45339
-GLIB_REQS=2.13.4
 
45340
-GTK_REQS=2.13.0
 
45341
-TOTEM_PLPARSER_REQS=2.23.91
 
45342
-GNOMEUI_REQS=2.3.3
 
45343
-LIBGNOME_REQS=2.14.0
 
45344
-GNOMEICON_REQS=2.15.90
 
45345
-DBUS_REQS=0.61
 
45346
-VALA_REQS=0.1.6
 
45347
+  pkgpythondir=\${pythondir}/$PACKAGE
 
45348
 
 
45349
-TOTEM_VERSION_MAJOR=2
 
45350
-TOTEM_VERSION_MINOR=24
 
45351
-TOTEM_VERSION_MICRO=3
 
45352
 
 
45353
+            { echo "$as_me:$LINENO: checking for $am_display_PYTHON extension module directory" >&5
 
45354
+echo $ECHO_N "checking for $am_display_PYTHON extension module directory... $ECHO_C" >&6; }
 
45355
+if test "${am_cv_python_pyexecdir+set}" = set; then
 
45356
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
45357
+else
 
45358
+  am_cv_python_pyexecdir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(1,0,prefix='$PYTHON_EXEC_PREFIX')" 2>/dev/null ||
 
45359
+     echo "${PYTHON_EXEC_PREFIX}/lib/python${PYTHON_VERSION}/site-packages"`
 
45360
+fi
 
45361
+{ echo "$as_me:$LINENO: result: $am_cv_python_pyexecdir" >&5
 
45362
+echo "${ECHO_T}$am_cv_python_pyexecdir" >&6; }
 
45363
+  pyexecdir=$am_cv_python_pyexecdir
 
45364
 
 
45365
 
 
45366
 
 
45367
-# The full list of plugins
35506
45368
-allowed_plugins="thumbnail screensaver ontop galago gromit lirc media-player-keys mythtv properties sidebar-test skipto sample-python sample-vala bemused youtube publish tracker pythonconsole"
35507
 
+allowed_plugins="thumbnail screensaver ontop galago gromit lirc media-player-keys mythtv properties sidebar-test skipto sample-python sample-vala bbc bemused youtube publish tracker pythonconsole"
35508
 
 
35509
 
 PLUGINDIR='${libdir}/totem/plugins'
35510
 
 
35511
 
@@ -22314,9 +19470,10 @@
35512
 
 { echo "$as_me:$LINENO: checking for NVTV" >&5
35513
 
 echo $ECHO_N "checking for NVTV... $ECHO_C" >&6; }
 
45369
+  pkgpyexecdir=\${pyexecdir}/$PACKAGE
 
45370
 
 
45371
-PLUGINDIR='${libdir}/totem/plugins'
 
45372
 
 
45373
 
 
45374
-# Check whether --enable-nvtv was given.
 
45375
-if test "${enable_nvtv+set}" = set; then
 
45376
-  enableval=$enable_nvtv; enable_nvtv="$enableval"
 
45377
-else
 
45378
-  enable_nvtv=yes
 
45379
+  fi
 
45380
+
 
45381
+
 
45382
+       if test "x$PYTHON" = "x:"; then
 
45383
+               have_python=no
 
45384
+       fi
 
45385
 fi
 
45386
 
 
45387
+if test "x$have_python" != "xno"; then
 
45388
+       PY_PREFIX=`$PYTHON -c 'import sys ; print sys.prefix'`
 
45389
+       PY_EXEC_PREFIX=`$PYTHON -c 'import sys ; print sys.exec_prefix'`
 
45390
+       PYTHON_LIBS="-lpython$PYTHON_VERSION"
 
45391
+       if test -d $PY_EXEC_PREFIX/lib64/python$PYTHON_VERSION ; then
 
45392
+               PYTHON_LIB_LOC="-L$PY_EXEC_PREFIX/lib64/python$PYTHON_VERSION/config"
 
45393
+               PYTHON_MAKEFILE="$PY_EXEC_PREFIX/lib64/python$PYTHON_VERSION/config/Makefile"
 
45394
+       else
 
45395
+               PYTHON_LIB_LOC="-L$PY_EXEC_PREFIX/lib/python$PYTHON_VERSION/config"
 
45396
+               PYTHON_MAKEFILE="$PY_EXEC_PREFIX/lib/python$PYTHON_VERSION/config/Makefile"
 
45397
+       fi
 
45398
+       PYTHON_CFLAGS="-I$PY_PREFIX/include/python$PYTHON_VERSION"
 
45399
+       PYTHON_LOCALMODLIBS=`sed -n -e 's/^LOCALMODLIBS=\(.*\)/\1/p' $PYTHON_MAKEFILE`
 
45400
+       PYTHON_BASEMODLIBS=`sed -n -e 's/^BASEMODLIBS=\(.*\)/\1/p' $PYTHON_MAKEFILE`
 
45401
+       PYTHON_OTHER_LIBS=`sed -n -e 's/^LIBS=\(.*\)/\1/p' $PYTHON_MAKEFILE`
 
45402
+       PYTHON_EXTRA_LIBS="$PYTHON_LOCALMODLIBS $PYTHON_BASEMODLIBS $PYTHON_OTHER_LIBS"
 
45403
+
 
45404
+
 
45405
+
 
45406
+
 
45407
+
 
45408
+       PYGTK_REQUIRED=2.12.0
 
45409
 
 
45410
-if test x$enable_nvtv = xyes; then
 
45411
 
 
45412
 pkg_failed=no
 
45413
-{ $as_echo "$as_me:$LINENO: checking for NVTV" >&5
 
45414
-$as_echo_n "checking for NVTV... " >&6; }
 
45415
+{ echo "$as_me:$LINENO: checking for PYGTK" >&5
 
45416
+echo $ECHO_N "checking for PYGTK... $ECHO_C" >&6; }
35514
45417
 
35515
45418
-if test -n "$NVTV_CFLAGS"; then
 
45419
-    pkg_cv_NVTV_CFLAGS="$NVTV_CFLAGS"
 
45420
- elif test -n "$PKG_CONFIG"; then
 
45421
-    if test -n "$PKG_CONFIG" && \
 
45422
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"nvtvsimple >= 0.4.5\"") >&5
 
45423
-  ($PKG_CONFIG --exists --print-errors "nvtvsimple >= 0.4.5") 2>&5
35516
45424
+if test -n "$PKG_CONFIG"; then
35517
 
+    if test -n "$NVTV_CFLAGS"; then
35518
 
     pkg_cv_NVTV_CFLAGS="$NVTV_CFLAGS"
35519
 
- elif test -n "$PKG_CONFIG"; then
 
45425
+    if test -n "$PYGTK_CFLAGS"; then
 
45426
+        pkg_cv_PYGTK_CFLAGS="$PYGTK_CFLAGS"
35520
45427
+    else
35521
 
     if test -n "$PKG_CONFIG" && \
35522
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"nvtvsimple >= 0.4.5\"") >&5
35523
 
   ($PKG_CONFIG --exists --print-errors "nvtvsimple >= 0.4.5") 2>&5
35524
 
@@ -22327,12 +19484,14 @@
 
45428
+        if test -n "$PKG_CONFIG" && \
 
45429
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"
 
45430
+               pygtk-2.0 >= \$PYGTK_REQUIRED
 
45431
+               totem-plparser >= \$TOTEM_PLPARSER_REQS\"") >&5
 
45432
+  ($PKG_CONFIG --exists --print-errors "
 
45433
+               pygtk-2.0 >= $PYGTK_REQUIRED
 
45434
+               totem-plparser >= $TOTEM_PLPARSER_REQS") 2>&5
 
45435
   ac_status=$?
 
45436
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45437
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45438
   (exit $ac_status); }; then
 
45439
-  pkg_cv_NVTV_CFLAGS=`$PKG_CONFIG --cflags "nvtvsimple >= 0.4.5" 2>/dev/null`
 
45440
+  pkg_cv_PYGTK_CFLAGS=`$PKG_CONFIG --cflags "
 
45441
+               pygtk-2.0 >= $PYGTK_REQUIRED
 
45442
+               totem-plparser >= $TOTEM_PLPARSER_REQS" 2>/dev/null`
35525
45443
 else
35526
45444
   pkg_failed=yes
35527
45445
 fi
35528
45446
- else
 
45447
-    pkg_failed=untried
35529
45448
+    fi
35530
45449
+else
35531
 
     pkg_failed=untried
 
45450
+       pkg_failed=untried
35532
45451
 fi
35533
45452
-if test -n "$NVTV_LIBS"; then
 
45453
-    pkg_cv_NVTV_LIBS="$NVTV_LIBS"
 
45454
- elif test -n "$PKG_CONFIG"; then
 
45455
-    if test -n "$PKG_CONFIG" && \
 
45456
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"nvtvsimple >= 0.4.5\"") >&5
 
45457
-  ($PKG_CONFIG --exists --print-errors "nvtvsimple >= 0.4.5") 2>&5
35534
45458
+if test -n "$PKG_CONFIG"; then
35535
 
+    if test -n "$NVTV_LIBS"; then
35536
 
     pkg_cv_NVTV_LIBS="$NVTV_LIBS"
35537
 
- elif test -n "$PKG_CONFIG"; then
 
45459
+    if test -n "$PYGTK_LIBS"; then
 
45460
+        pkg_cv_PYGTK_LIBS="$PYGTK_LIBS"
35538
45461
+    else
35539
 
     if test -n "$PKG_CONFIG" && \
35540
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"nvtvsimple >= 0.4.5\"") >&5
35541
 
   ($PKG_CONFIG --exists --print-errors "nvtvsimple >= 0.4.5") 2>&5
35542
 
@@ -22343,7 +19502,8 @@
 
45462
+        if test -n "$PKG_CONFIG" && \
 
45463
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"
 
45464
+               pygtk-2.0 >= \$PYGTK_REQUIRED
 
45465
+               totem-plparser >= \$TOTEM_PLPARSER_REQS\"") >&5
 
45466
+  ($PKG_CONFIG --exists --print-errors "
 
45467
+               pygtk-2.0 >= $PYGTK_REQUIRED
 
45468
+               totem-plparser >= $TOTEM_PLPARSER_REQS") 2>&5
 
45469
   ac_status=$?
 
45470
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45471
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45472
   (exit $ac_status); }; then
 
45473
-  pkg_cv_NVTV_LIBS=`$PKG_CONFIG --libs "nvtvsimple >= 0.4.5" 2>/dev/null`
 
45474
+  pkg_cv_PYGTK_LIBS=`$PKG_CONFIG --libs "
 
45475
+               pygtk-2.0 >= $PYGTK_REQUIRED
 
45476
+               totem-plparser >= $TOTEM_PLPARSER_REQS" 2>/dev/null`
35543
45477
 else
35544
45478
   pkg_failed=yes
35545
45479
 fi
35546
45480
- else
 
45481
-    pkg_failed=untried
35547
45482
+    fi
35548
45483
+else
35549
 
     pkg_failed=untried
 
45484
+       pkg_failed=untried
35550
45485
 fi
35551
45486
 
35552
 
@@ -22357,9 +19517,9 @@
 
45487
 
 
45488
@@ -23085,123 +21280,209 @@
35553
45489
         _pkg_short_errors_supported=no
35554
45490
 fi
35555
45491
         if test $_pkg_short_errors_supported = yes; then
35556
45492
-               NVTV_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "nvtvsimple >= 0.4.5" 2>&1`
35557
 
+               NVTV_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "nvtvsimple >= 0.4.5"`
 
45493
+               PYGTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "
 
45494
+               pygtk-2.0 >= $PYGTK_REQUIRED
 
45495
+               totem-plparser >= $TOTEM_PLPARSER_REQS"`
35558
45496
         else
35559
45497
-               NVTV_PKG_ERRORS=`$PKG_CONFIG --print-errors "nvtvsimple >= 0.4.5" 2>&1`
35560
 
+               NVTV_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "nvtvsimple >= 0.4.5"`
 
45498
+               PYGTK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "
 
45499
+               pygtk-2.0 >= $PYGTK_REQUIRED
 
45500
+               totem-plparser >= $TOTEM_PLPARSER_REQS"`
35561
45501
         fi
35562
45502
        # Put the nasty error message in config.log where it belongs
35563
 
        echo "$NVTV_PKG_ERRORS" >&5
35564
 
@@ -22443,9 +19603,10 @@
35565
 
 { echo "$as_me:$LINENO: checking for MISSING_PLUGINS" >&5
35566
 
 echo $ECHO_N "checking for MISSING_PLUGINS... $ECHO_C" >&6; }
 
45503
-       echo "$NVTV_PKG_ERRORS" >&5
 
45504
+       echo "$PYGTK_PKG_ERRORS" >&5
 
45505
+
 
45506
+       { echo "$as_me:$LINENO: result: no" >&5
 
45507
+echo "${ECHO_T}no" >&6; }
 
45508
+
 
45509
+               have_python=no
 
45510
+               if test "x$enable_python" = "xyes"; then
 
45511
+                       { { echo "$as_me:$LINENO: error: $PYGTK_PKG_ERRORS" >&5
 
45512
+echo "$as_me: error: $PYGTK_PKG_ERRORS" >&2;}
 
45513
+   { (exit 1); exit 1; }; }
 
45514
+               elif test "x$enable_python" = "xautodetect"; then
 
45515
+                       enable_python=no
 
45516
+                       { echo "$as_me:$LINENO: WARNING: $PYGTK_PKG_ERRORS" >&5
 
45517
+echo "$as_me: WARNING: $PYGTK_PKG_ERRORS" >&2;}
 
45518
+                       { echo "$as_me:$LINENO: WARNING: Disabling python support" >&5
 
45519
+echo "$as_me: WARNING: Disabling python support" >&2;}
 
45520
+               fi
 
45521
 
 
45522
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
45523
-$as_echo "no" >&6; }
 
45524
-                found_nvtv=no
 
45525
 elif test $pkg_failed = untried; then
 
45526
-       found_nvtv=no
 
45527
+
 
45528
+               have_python=no
 
45529
+               if test "x$enable_python" = "xyes"; then
 
45530
+                       { { echo "$as_me:$LINENO: error: $PYGTK_PKG_ERRORS" >&5
 
45531
+echo "$as_me: error: $PYGTK_PKG_ERRORS" >&2;}
 
45532
+   { (exit 1); exit 1; }; }
 
45533
+               elif test "x$enable_python" = "xautodetect"; then
 
45534
+                       enable_python=no
 
45535
+                       { echo "$as_me:$LINENO: WARNING: $PYGTK_PKG_ERRORS" >&5
 
45536
+echo "$as_me: WARNING: $PYGTK_PKG_ERRORS" >&2;}
 
45537
+                       { echo "$as_me:$LINENO: WARNING: Disabling python support" >&5
 
45538
+echo "$as_me: WARNING: Disabling python support" >&2;}
 
45539
+               fi
 
45540
+
 
45541
 else
 
45542
-       NVTV_CFLAGS=$pkg_cv_NVTV_CFLAGS
 
45543
-       NVTV_LIBS=$pkg_cv_NVTV_LIBS
 
45544
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
45545
-$as_echo "yes" >&6; }
 
45546
-       found_nvtv=yes
 
45547
+       PYGTK_CFLAGS=$pkg_cv_PYGTK_CFLAGS
 
45548
+       PYGTK_LIBS=$pkg_cv_PYGTK_LIBS
 
45549
+        { echo "$as_me:$LINENO: result: yes" >&5
 
45550
+echo "${ECHO_T}yes" >&6; }
 
45551
+       :
 
45552
 fi
 
45553
-       if test x"$found_nvtv" = "xyes" ; then
 
45554
+
 
45555
+
 
45556
+
 
45557
+fi
 
45558
+
 
45559
+if test "x$have_python" != "xno"; then
 
45560
+       { echo "$as_me:$LINENO: checking for pygtk defs" >&5
 
45561
+echo $ECHO_N "checking for pygtk defs... $ECHO_C" >&6; }
 
45562
+       PYGTK_DEFSDIR=`$PKG_CONFIG --variable=defsdir pygtk-2.0`
 
45563
+       { echo "$as_me:$LINENO: result: $PYGTK_DEFSDIR" >&5
 
45564
+echo "${ECHO_T}$PYGTK_DEFSDIR" >&6; }
 
45565
+
 
45566
+       { echo "$as_me:$LINENO: checking for pygtk codegen" >&5
 
45567
+echo $ECHO_N "checking for pygtk codegen... $ECHO_C" >&6; }
 
45568
+       PYGTK_CODEGEN="$PYTHON `$PKG_CONFIG --variable=codegendir pygtk-2.0`/codegen.py"
 
45569
+       { echo "$as_me:$LINENO: result: $PYGTK_CODEGEN" >&5
 
45570
+echo "${ECHO_T}$PYGTK_CODEGEN" >&6; }
 
45571
+
 
45572
+       { echo "$as_me:$LINENO: checking for pygtk h2def" >&5
 
45573
+echo $ECHO_N "checking for pygtk h2def... $ECHO_C" >&6; }
 
45574
+       PYGTK_H2DEF="$PYTHON `$PKG_CONFIG --variable=codegendir pygtk-2.0`/h2def.py"
 
45575
+       { echo "$as_me:$LINENO: result: $PYGTK_H2DEF" >&5
 
45576
+echo "${ECHO_T}$PYGTK_H2DEF" >&6; }
 
45577
+
 
45578
+
 
45579
+
 
45580
+
 
45581
+
 
45582
+
 
45583
+               FLAGS="-fno-strict-aliasing"
 
45584
+       save_CFLAGS="$CFLAGS"
 
45585
+       CFLAGS="$CFLAGS $FLAGS"
 
45586
+       { echo "$as_me:$LINENO: checking whether $CC understands $FLAGS" >&5
 
45587
+echo $ECHO_N "checking whether $CC understands $FLAGS... $ECHO_C" >&6; }
 
45588
+       cat >conftest.$ac_ext <<_ACEOF
 
45589
+/* confdefs.h.  */
 
45590
+_ACEOF
 
45591
+cat confdefs.h >>conftest.$ac_ext
 
45592
+cat >>conftest.$ac_ext <<_ACEOF
 
45593
+/* end confdefs.h.  */
 
45594
+
 
45595
+int
 
45596
+main ()
 
45597
+{
 
45598
+
 
45599
+  ;
 
45600
+  return 0;
 
45601
+}
 
45602
+_ACEOF
 
45603
+rm -f conftest.$ac_objext
 
45604
+if { (ac_try="$ac_compile"
 
45605
+case "(($ac_try" in
 
45606
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
45607
+  *) ac_try_echo=$ac_try;;
 
45608
+esac
 
45609
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
45610
+  (eval "$ac_compile") 2>conftest.er1
 
45611
+  ac_status=$?
 
45612
+  grep -v '^ *+' conftest.er1 >conftest.err
 
45613
+  rm -f conftest.er1
 
45614
+  cat conftest.err >&5
 
45615
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45616
+  (exit $ac_status); } && {
 
45617
+        test -z "$ac_c_werror_flag" ||
 
45618
+        test ! -s conftest.err
 
45619
+       } && test -s conftest.$ac_objext; then
 
45620
+  compiler_has_option=yes
 
45621
+else
 
45622
+  echo "$as_me: failed program was:" >&5
 
45623
+sed 's/^/| /' conftest.$ac_ext >&5
 
45624
+
 
45625
+       compiler_has_option=no
 
45626
+fi
 
45627
+
 
45628
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
45629
+       CFLAGS="$save_CFLAGS"
 
45630
+       { echo "$as_me:$LINENO: result: $compiler_has_option" >&5
 
45631
+echo "${ECHO_T}$compiler_has_option" >&6; }
 
45632
+       if test $compiler_has_option = yes; then
 
45633
+               NO_STRICT_ALIASING_CFLAGS="$FLAGS"
 
45634
+       fi
 
45635
+
 
45636
+fi
 
45637
+
 
45638
+if test "x$have_python" != "xno" -a "x$enable_python" != "xno"; then
 
45639
+       enable_python=yes
 
45640
 
 
45641
 cat >>confdefs.h <<\_ACEOF
 
45642
-#define HAVE_NVTV 1
 
45643
+#define ENABLE_PYTHON 1
 
45644
 _ACEOF
 
45645
 
 
45646
-       fi
 
45647
 fi
 
45648
 
 
45649
-
 
45650
-XINE_REQS=1.1.7
 
45651
-GST_MAJORMINOR=0.10
 
45652
-GST_REQS=0.10.12
 
45653
-GSTPLUG_REQS=0.10.12
 
45654
-
 
45655
-# Check whether --enable-xine was given.
 
45656
-if test "${enable_xine+set}" = set; then
 
45657
-  enableval=$enable_xine; case "${enableval}" in
 
45658
-       yes) ENABLE_XINE=yes ;;
 
45659
-        no)  ENABLE_XINE=no ;;
 
45660
-       *) { { $as_echo "$as_me:$LINENO: error:
 
45661
-             ***** Bad value ${enableval} for --enable-xine
 
45662
-             ***** Please use one of the following:
 
45663
-             *****   --enable-xine=yes
 
45664
-            *****   --enable-xine=no
 
45665
-           " >&5
 
45666
-$as_echo "$as_me: error:
 
45667
-             ***** Bad value ${enableval} for --enable-xine
 
45668
-             ***** Please use one of the following:
 
45669
-             *****   --enable-xine=yes
 
45670
-            *****   --enable-xine=no
 
45671
-           " >&2;}
 
45672
-   { (exit 1); exit 1; }; } ;;
 
45673
-       esac
 
45674
+ if test "x$enable_python" = "xyes"; then
 
45675
+  ENABLE_PYTHON_TRUE=
 
45676
+  ENABLE_PYTHON_FALSE='#'
 
45677
 else
 
45678
-  ENABLE_XINE=auto
 
45679
+  ENABLE_PYTHON_TRUE='#'
 
45680
+  ENABLE_PYTHON_FALSE=
 
45681
 fi
 
45682
 
 
45683
-HAVE_GSTREAMER=no
 
45684
-if test x$ENABLE_XINE = xno || test x$ENABLE_XINE = xauto; then
 
45685
-                       { $as_echo "$as_me:$LINENO: checking whether to enable easy codec installation support" >&5
 
45686
-$as_echo_n "checking whether to enable easy codec installation support... " >&6; }
 
45687
-       # Check whether --enable-easy-codec-installation was given.
 
45688
-if test "${enable_easy_codec_installation+set}" = set; then
 
45689
-  enableval=$enable_easy_codec_installation;
 
45690
-                       case "${enableval}" in
 
45691
-                               yes) enable_easy_codec_installation=yes ;;
 
45692
-                               no)  enable_easy_codec_installation=no ;;
 
45693
-                               *) enable_easy_codec_installation=auto ;;
 
45694
-                       esac
 
45695
 
 
45696
+{ echo "$as_me:$LINENO: checking whether Vala plugin support is requested" >&5
 
45697
+echo $ECHO_N "checking whether Vala plugin support is requested... $ECHO_C" >&6; }
 
45698
+# Check whether --enable-vala was given.
 
45699
+if test "${enable_vala+set}" = set; then
 
45700
+  enableval=$enable_vala; enable_vala=$enableval have_vala=$enableval
 
45701
 else
 
45702
-
 
45703
-                                               enable_easy_codec_installation=auto
 
45704
-
 
45705
-
 
45706
+  enable_vala=autodetect have_vala=yes
 
45707
 fi
 
45708
 
 
45709
-       { $as_echo "$as_me:$LINENO: result: $enable_easy_codec_installation" >&5
 
45710
-$as_echo "$enable_easy_codec_installation" >&6; }
 
45711
-
 
45712
-       if test "x$enable_easy_codec_installation" != "xno"; then
 
45713
+{ echo "$as_me:$LINENO: result: $enable_vala" >&5
 
45714
+echo "${ECHO_T}$enable_vala" >&6; }
 
45715
+if test "x$enable_vala" != "xno"; then
 
45716
 
 
45717
 pkg_failed=no
 
45718
-{ $as_echo "$as_me:$LINENO: checking for MISSING_PLUGINS" >&5
 
45719
-$as_echo_n "checking for MISSING_PLUGINS... " >&6; }
 
45720
+{ echo "$as_me:$LINENO: checking for VALA" >&5
 
45721
+echo $ECHO_N "checking for VALA... $ECHO_C" >&6; }
35567
45722
 
35568
45723
-if test -n "$MISSING_PLUGINS_CFLAGS"; then
 
45724
-    pkg_cv_MISSING_PLUGINS_CFLAGS="$MISSING_PLUGINS_CFLAGS"
 
45725
- elif test -n "$PKG_CONFIG"; then
 
45726
-    if test -n "$PKG_CONFIG" && \
 
45727
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gstreamer-plugins-base-0.10\"") >&5
 
45728
-  ($PKG_CONFIG --exists --print-errors "gstreamer-plugins-base-0.10") 2>&5
35569
45729
+if test -n "$PKG_CONFIG"; then
35570
 
+    if test -n "$MISSING_PLUGINS_CFLAGS"; then
35571
 
     pkg_cv_MISSING_PLUGINS_CFLAGS="$MISSING_PLUGINS_CFLAGS"
35572
 
- elif test -n "$PKG_CONFIG"; then
 
45730
+    if test -n "$VALA_CFLAGS"; then
 
45731
+        pkg_cv_VALA_CFLAGS="$VALA_CFLAGS"
35573
45732
+    else
35574
 
     if test -n "$PKG_CONFIG" && \
35575
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gstreamer-plugins-base-0.10\"") >&5
35576
 
   ($PKG_CONFIG --exists --print-errors "gstreamer-plugins-base-0.10") 2>&5
35577
 
@@ -22456,12 +19617,14 @@
 
45733
+        if test -n "$PKG_CONFIG" && \
 
45734
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"vala-1.0 >= \$VALA_REQS\"") >&5
 
45735
+  ($PKG_CONFIG --exists --print-errors "vala-1.0 >= $VALA_REQS") 2>&5
 
45736
   ac_status=$?
 
45737
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45738
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45739
   (exit $ac_status); }; then
 
45740
-  pkg_cv_MISSING_PLUGINS_CFLAGS=`$PKG_CONFIG --cflags "gstreamer-plugins-base-0.10" 2>/dev/null`
 
45741
+  pkg_cv_VALA_CFLAGS=`$PKG_CONFIG --cflags "vala-1.0 >= $VALA_REQS" 2>/dev/null`
35578
45742
 else
35579
45743
   pkg_failed=yes
35580
45744
 fi
35581
45745
- else
 
45746
-    pkg_failed=untried
35582
45747
+    fi
35583
45748
+else
35584
 
     pkg_failed=untried
 
45749
+       pkg_failed=untried
35585
45750
 fi
35586
45751
-if test -n "$MISSING_PLUGINS_LIBS"; then
 
45752
-    pkg_cv_MISSING_PLUGINS_LIBS="$MISSING_PLUGINS_LIBS"
 
45753
- elif test -n "$PKG_CONFIG"; then
 
45754
-    if test -n "$PKG_CONFIG" && \
 
45755
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gstreamer-plugins-base-0.10\"") >&5
 
45756
-  ($PKG_CONFIG --exists --print-errors "gstreamer-plugins-base-0.10") 2>&5
35587
45757
+if test -n "$PKG_CONFIG"; then
35588
 
+    if test -n "$MISSING_PLUGINS_LIBS"; then
35589
 
     pkg_cv_MISSING_PLUGINS_LIBS="$MISSING_PLUGINS_LIBS"
35590
 
- elif test -n "$PKG_CONFIG"; then
 
45758
+    if test -n "$VALA_LIBS"; then
 
45759
+        pkg_cv_VALA_LIBS="$VALA_LIBS"
35591
45760
+    else
35592
 
     if test -n "$PKG_CONFIG" && \
35593
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gstreamer-plugins-base-0.10\"") >&5
35594
 
   ($PKG_CONFIG --exists --print-errors "gstreamer-plugins-base-0.10") 2>&5
35595
 
@@ -22472,7 +19635,8 @@
 
45761
+        if test -n "$PKG_CONFIG" && \
 
45762
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"vala-1.0 >= \$VALA_REQS\"") >&5
 
45763
+  ($PKG_CONFIG --exists --print-errors "vala-1.0 >= $VALA_REQS") 2>&5
 
45764
   ac_status=$?
 
45765
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45766
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45767
   (exit $ac_status); }; then
 
45768
-  pkg_cv_MISSING_PLUGINS_LIBS=`$PKG_CONFIG --libs "gstreamer-plugins-base-0.10" 2>/dev/null`
 
45769
+  pkg_cv_VALA_LIBS=`$PKG_CONFIG --libs "vala-1.0 >= $VALA_REQS" 2>/dev/null`
35596
45770
 else
35597
45771
   pkg_failed=yes
35598
45772
 fi
35599
45773
- else
 
45774
-    pkg_failed=untried
35600
45775
+    fi
35601
45776
+else
35602
 
     pkg_failed=untried
 
45777
+       pkg_failed=untried
35603
45778
 fi
35604
45779
 
35605
 
@@ -22486,9 +19650,9 @@
 
45780
 
 
45781
@@ -23214,256 +21495,229 @@
35606
45782
         _pkg_short_errors_supported=no
35607
45783
 fi
35608
45784
         if test $_pkg_short_errors_supported = yes; then
35609
45785
-               MISSING_PLUGINS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gstreamer-plugins-base-0.10" 2>&1`
35610
 
+               MISSING_PLUGINS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gstreamer-plugins-base-0.10"`
 
45786
+               VALA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "vala-1.0 >= $VALA_REQS"`
35611
45787
         else
35612
45788
-               MISSING_PLUGINS_PKG_ERRORS=`$PKG_CONFIG --print-errors "gstreamer-plugins-base-0.10" 2>&1`
35613
 
+               MISSING_PLUGINS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gstreamer-plugins-base-0.10"`
 
45789
+               VALA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "vala-1.0 >= $VALA_REQS"`
35614
45790
         fi
35615
45791
        # Put the nasty error message in config.log where it belongs
35616
 
        echo "$MISSING_PLUGINS_PKG_ERRORS" >&5
35617
 
@@ -22560,9 +19724,10 @@
35618
 
 { echo "$as_me:$LINENO: checking for GST" >&5
35619
 
 echo $ECHO_N "checking for GST... $ECHO_C" >&6; }
 
45792
-       echo "$MISSING_PLUGINS_PKG_ERRORS" >&5
 
45793
-
 
45794
-       { { $as_echo "$as_me:$LINENO: error: Package requirements (gstreamer-plugins-base-0.10) were not met:
 
45795
-
 
45796
-$MISSING_PLUGINS_PKG_ERRORS
 
45797
+       echo "$VALA_PKG_ERRORS" >&5
 
45798
 
 
45799
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
45800
-installed software in a non-standard prefix.
 
45801
+       { echo "$as_me:$LINENO: result: no" >&5
 
45802
+echo "${ECHO_T}no" >&6; }
 
45803
+                with_vala=no
 
45804
+elif test $pkg_failed = untried; then
 
45805
+       with_vala=no
 
45806
+else
 
45807
+       VALA_CFLAGS=$pkg_cv_VALA_CFLAGS
 
45808
+       VALA_LIBS=$pkg_cv_VALA_LIBS
 
45809
+        { echo "$as_me:$LINENO: result: yes" >&5
 
45810
+echo "${ECHO_T}yes" >&6; }
 
45811
+       with_vala=yes
 
45812
+fi
 
45813
+       if test "x$with_vala" = "xyes"; then
 
45814
+               VALAC="`pkg-config --variable=prefix vala-1.0`/bin/valac"
 
45815
 
 
45816
-Alternatively, you may set the environment variables MISSING_PLUGINS_CFLAGS
 
45817
-and MISSING_PLUGINS_LIBS to avoid the need to call pkg-config.
 
45818
-See the pkg-config man page for more details.
 
45819
-" >&5
 
45820
-$as_echo "$as_me: error: Package requirements (gstreamer-plugins-base-0.10) were not met:
 
45821
+       elif test "x$enable_vala" = "xyes"; then
 
45822
+               { { echo "$as_me:$LINENO: error: Vala plugin support explicitly requested, but not found" >&5
 
45823
+echo "$as_me: error: Vala plugin support explicitly requested, but not found" >&2;}
 
45824
+   { (exit 1); exit 1; }; }
 
45825
+       fi
 
45826
+fi
 
45827
+ if test "x$with_vala" = "xyes"; then
 
45828
+  ENABLE_VALA_TRUE=
 
45829
+  ENABLE_VALA_FALSE='#'
 
45830
+else
 
45831
+  ENABLE_VALA_TRUE='#'
 
45832
+  ENABLE_VALA_FALSE=
 
45833
+fi
 
45834
 
 
45835
-$MISSING_PLUGINS_PKG_ERRORS
 
45836
 
 
45837
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
45838
-installed software in a non-standard prefix.
 
45839
+# ********************
 
45840
+# Movie player plugins
 
45841
+# ********************
 
45842
 
 
45843
-Alternatively, you may set the environment variables MISSING_PLUGINS_CFLAGS
 
45844
-and MISSING_PLUGINS_LIBS to avoid the need to call pkg-config.
 
45845
-See the pkg-config man page for more details.
 
45846
-" >&2;}
 
45847
+plugin_error_or_ignore()
 
45848
+{
 
45849
+       if test "${error_on_bad_plugin}" = "1" ; then
 
45850
+               { { echo "$as_me:$LINENO: error: $1" >&5
 
45851
+echo "$as_me: error: $1" >&2;}
 
45852
    { (exit 1); exit 1; }; }
 
45853
-elif test $pkg_failed = untried; then
 
45854
-       { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 
45855
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
45856
-{ { $as_echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old.  Make sure it
 
45857
-is in your PATH or set the PKG_CONFIG environment variable to the full
 
45858
-path to pkg-config.
 
45859
-
 
45860
-Alternatively, you may set the environment variables MISSING_PLUGINS_CFLAGS
 
45861
-and MISSING_PLUGINS_LIBS to avoid the need to call pkg-config.
 
45862
-See the pkg-config man page for more details.
 
45863
-
 
45864
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
45865
-See \`config.log' for more details." >&5
 
45866
-$as_echo "$as_me: error: The pkg-config script could not be found or is too old.  Make sure it
 
45867
-is in your PATH or set the PKG_CONFIG environment variable to the full
 
45868
-path to pkg-config.
 
45869
+       else
 
45870
+               { echo "$as_me:$LINENO: WARNING: $1 (disabling plugin)" >&5
 
45871
+echo "$as_me: WARNING: $1 (disabling plugin)" >&2;}
 
45872
+       fi
 
45873
+}
 
45874
 
 
45875
-Alternatively, you may set the environment variables MISSING_PLUGINS_CFLAGS
 
45876
-and MISSING_PLUGINS_LIBS to avoid the need to call pkg-config.
 
45877
-See the pkg-config man page for more details.
 
45878
 
 
45879
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
45880
-See \`config.log' for more details." >&2;}
 
45881
-   { (exit 1); exit 1; }; }; }
 
45882
+# Check whether --with-plugins was given.
 
45883
+if test "${with_plugins+set}" = set; then
 
45884
+  withval=$with_plugins;
 
45885
 else
 
45886
-       MISSING_PLUGINS_CFLAGS=$pkg_cv_MISSING_PLUGINS_CFLAGS
 
45887
-       MISSING_PLUGINS_LIBS=$pkg_cv_MISSING_PLUGINS_LIBS
 
45888
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
45889
-$as_echo "yes" >&6; }
 
45890
-
 
45891
-                       MISSING_PLUGINS_LIBS="$MISSING_PLUGINS_LIBS -lgstpbutils-0.10"
 
45892
+  with_plugins=autodetect
 
45893
+fi
 
45894
 
 
45895
-cat >>confdefs.h <<\_ACEOF
 
45896
-#define ENABLE_MISSING_PLUGIN_INSTALLATION 1
 
45897
-_ACEOF
 
45898
 
 
45899
+used_plugins=""
 
45900
+used_plugins2=""
 
45901
 
 
45902
+if test "x${with_plugins}" = "xautodetect" ; then
 
45903
+       # Default to all plugins and just ignore them if they won't compile
 
45904
+       with_plugins="all"
 
45905
+       error_on_bad_plugin="0"
 
45906
+else
 
45907
+       # Clean up the plugin list and error if a plugin won't compile
 
45908
+       with_plugins=`echo ,"${with_plugins}", | sed -e 's/[    ,][     ,]*/ /g' -e 's/,$//'`
 
45909
+       error_on_bad_plugin="1"
 
45910
 fi
 
45911
-       fi
 
45912
 
 
45913
-       MM="gstreamer-0.10 >= $GST_REQS gstreamer-base-0.10 >= $GST_REQS gstreamer-plugins-base-0.10 >= $GSTPLUG_REQS gstreamer-tag-0.10 >= $GSTPLUG_REQS gconf-2.0"
 
45914
+# Iterate through the wanted plugins and weed out bad ones (or error)
 
45915
+for wanted_plugin in ${with_plugins}; do
 
45916
+       for allowed_plugin in ${allowed_plugins}; do
 
45917
+               case ${wanted_plugin} in
 
45918
+                       all)
 
45919
+                               # List all plugins as being used
 
45920
+                               used_plugins=${allowed_plugins}
 
45921
+                       ;;
 
45922
+                       autodetect)
 
45923
+                               # List all plugins as being used
 
45924
+                               used_plugins=${allowed_plugins}
 
45925
+                       ;;
 
45926
+                       none) used_plugins="";; # List no plugins
 
45927
+                       ${allowed_plugin}) used_plugins="${used_plugins} ${wanted_plugin}";; # List the plugin
 
45928
+                       *) ;;
 
45929
+               esac
 
45930
+       done
 
45931
+done
 
45932
+
 
45933
+# Check for plugin-specific requirements and error if necessary
 
45934
+for plugin in ${used_plugins}; do
 
45935
+       add_plugin="1"
 
45936
+
 
45937
+       case ${plugin} in
 
45938
+               galago)
 
45939
 
 
45940
 pkg_failed=no
 
45941
-{ $as_echo "$as_me:$LINENO: checking for GST" >&5
 
45942
-$as_echo_n "checking for GST... " >&6; }
 
45943
+{ echo "$as_me:$LINENO: checking for LIBGALAGO" >&5
 
45944
+echo $ECHO_N "checking for LIBGALAGO... $ECHO_C" >&6; }
35620
45945
 
35621
45946
-if test -n "$GST_CFLAGS"; then
 
45947
-    pkg_cv_GST_CFLAGS="$GST_CFLAGS"
 
45948
- elif test -n "$PKG_CONFIG"; then
 
45949
-    if test -n "$PKG_CONFIG" && \
 
45950
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
 
45951
-  ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
35622
45952
+if test -n "$PKG_CONFIG"; then
35623
 
+    if test -n "$GST_CFLAGS"; then
35624
 
     pkg_cv_GST_CFLAGS="$GST_CFLAGS"
35625
 
- elif test -n "$PKG_CONFIG"; then
 
45953
+    if test -n "$LIBGALAGO_CFLAGS"; then
 
45954
+        pkg_cv_LIBGALAGO_CFLAGS="$LIBGALAGO_CFLAGS"
35626
45955
+    else
35627
 
     if test -n "$PKG_CONFIG" && \
35628
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
35629
 
   ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
35630
 
@@ -22573,12 +19738,14 @@
 
45956
+        if test -n "$PKG_CONFIG" && \
 
45957
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libgalago >= 0.5.2\"") >&5
 
45958
+  ($PKG_CONFIG --exists --print-errors "libgalago >= 0.5.2") 2>&5
 
45959
   ac_status=$?
 
45960
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45961
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45962
   (exit $ac_status); }; then
 
45963
-  pkg_cv_GST_CFLAGS=`$PKG_CONFIG --cflags "$MM" 2>/dev/null`
 
45964
+  pkg_cv_LIBGALAGO_CFLAGS=`$PKG_CONFIG --cflags "libgalago >= 0.5.2" 2>/dev/null`
35631
45965
 else
35632
45966
   pkg_failed=yes
35633
45967
 fi
35634
45968
- else
 
45969
-    pkg_failed=untried
35635
45970
+    fi
35636
45971
+else
35637
 
     pkg_failed=untried
 
45972
+       pkg_failed=untried
35638
45973
 fi
35639
45974
-if test -n "$GST_LIBS"; then
 
45975
-    pkg_cv_GST_LIBS="$GST_LIBS"
 
45976
- elif test -n "$PKG_CONFIG"; then
 
45977
-    if test -n "$PKG_CONFIG" && \
 
45978
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
 
45979
-  ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
35640
45980
+if test -n "$PKG_CONFIG"; then
35641
 
+    if test -n "$GST_LIBS"; then
35642
 
     pkg_cv_GST_LIBS="$GST_LIBS"
35643
 
- elif test -n "$PKG_CONFIG"; then
 
45981
+    if test -n "$LIBGALAGO_LIBS"; then
 
45982
+        pkg_cv_LIBGALAGO_LIBS="$LIBGALAGO_LIBS"
35644
45983
+    else
35645
 
     if test -n "$PKG_CONFIG" && \
35646
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
35647
 
   ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
35648
 
@@ -22589,7 +19756,8 @@
 
45984
+        if test -n "$PKG_CONFIG" && \
 
45985
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libgalago >= 0.5.2\"") >&5
 
45986
+  ($PKG_CONFIG --exists --print-errors "libgalago >= 0.5.2") 2>&5
 
45987
   ac_status=$?
 
45988
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45989
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
45990
   (exit $ac_status); }; then
 
45991
-  pkg_cv_GST_LIBS=`$PKG_CONFIG --libs "$MM" 2>/dev/null`
 
45992
+  pkg_cv_LIBGALAGO_LIBS=`$PKG_CONFIG --libs "libgalago >= 0.5.2" 2>/dev/null`
35649
45993
 else
35650
45994
   pkg_failed=yes
35651
45995
 fi
35652
45996
- else
35653
 
+    fi
35654
 
+else
35655
 
     pkg_failed=untried
35656
 
 fi
35657
 
 
35658
 
@@ -22603,9 +19771,9 @@
35659
 
         _pkg_short_errors_supported=no
35660
 
 fi
35661
 
         if test $_pkg_short_errors_supported = yes; then
 
45997
-    pkg_failed=untried
 
45998
-fi
 
45999
-
 
46000
-
 
46001
-
 
46002
-if test $pkg_failed = yes; then
 
46003
-
 
46004
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
46005
-        _pkg_short_errors_supported=yes
 
46006
-else
 
46007
-        _pkg_short_errors_supported=no
 
46008
-fi
 
46009
-        if test $_pkg_short_errors_supported = yes; then
35662
46010
-               GST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$MM" 2>&1`
35663
 
+               GST_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$MM"`
35664
 
         else
 
46011
-        else
35665
46012
-               GST_PKG_ERRORS=`$PKG_CONFIG --print-errors "$MM" 2>&1`
35666
 
+               GST_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$MM"`
35667
 
         fi
35668
 
        # Put the nasty error message in config.log where it belongs
35669
 
        echo "$GST_PKG_ERRORS" >&5
35670
 
@@ -22703,9 +19871,10 @@
35671
 
 { echo "$as_me:$LINENO: checking for XINE" >&5
35672
 
 echo $ECHO_N "checking for XINE... $ECHO_C" >&6; }
35673
 
 
35674
 
-if test -n "$XINE_CFLAGS"; then
35675
 
+if test -n "$PKG_CONFIG"; then
35676
 
+    if test -n "$XINE_CFLAGS"; then
35677
 
     pkg_cv_XINE_CFLAGS="$XINE_CFLAGS"
35678
 
- elif test -n "$PKG_CONFIG"; then
35679
 
+    else
35680
 
     if test -n "$PKG_CONFIG" && \
35681
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
35682
 
   ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
35683
 
@@ -22716,12 +19885,14 @@
35684
 
 else
35685
 
   pkg_failed=yes
35686
 
 fi
35687
 
- else
35688
 
+    fi
35689
 
+else
35690
 
     pkg_failed=untried
35691
 
 fi
35692
 
-if test -n "$XINE_LIBS"; then
35693
 
+if test -n "$PKG_CONFIG"; then
35694
 
+    if test -n "$XINE_LIBS"; then
35695
 
     pkg_cv_XINE_LIBS="$XINE_LIBS"
35696
 
- elif test -n "$PKG_CONFIG"; then
35697
 
+    else
35698
 
     if test -n "$PKG_CONFIG" && \
35699
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
35700
 
   ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
35701
 
@@ -22732,7 +19903,8 @@
35702
 
 else
35703
 
   pkg_failed=yes
35704
 
 fi
35705
 
- else
35706
 
+    fi
35707
 
+else
35708
 
     pkg_failed=untried
35709
 
 fi
35710
 
 
35711
 
@@ -22746,9 +19918,9 @@
35712
 
         _pkg_short_errors_supported=no
35713
 
 fi
35714
 
         if test $_pkg_short_errors_supported = yes; then
35715
 
-               XINE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$MM" 2>&1`
35716
 
+               XINE_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$MM"`
35717
 
         else
35718
 
-               XINE_PKG_ERRORS=`$PKG_CONFIG --print-errors "$MM" 2>&1`
35719
 
+               XINE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$MM"`
35720
 
         fi
35721
 
        # Put the nasty error message in config.log where it belongs
35722
 
        echo "$XINE_PKG_ERRORS" >&5
35723
 
@@ -22863,36 +20035,40 @@
35724
 
 { echo "$as_me:$LINENO: checking for EXTRA_GNOME" >&5
35725
 
 echo $ECHO_N "checking for EXTRA_GNOME... $ECHO_C" >&6; }
35726
 
 
35727
 
-if test -n "$EXTRA_GNOME_CFLAGS"; then
35728
 
+if test -n "$PKG_CONFIG"; then
35729
 
+    if test -n "$EXTRA_GNOME_CFLAGS"; then
35730
 
     pkg_cv_EXTRA_GNOME_CFLAGS="$EXTRA_GNOME_CFLAGS"
35731
 
- elif test -n "$PKG_CONFIG"; then
35732
 
+    else
35733
 
     if test -n "$PKG_CONFIG" && \
35734
 
-    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS gtk+-2.0 >= \$GTK_REQS libgnomeui-2.0 >= \$GNOMEUI_REQS gio-2.0 libgnome-2.0 >= \$LIBGNOME_REQS gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
35735
 
-  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
35736
 
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS launchpad-integration gtk+-2.0 >= \$GTK_REQS libgnomeui-2.0 >= \$GNOMEUI_REQS gio-2.0 libgnome-2.0 >= \$LIBGNOME_REQS gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
35737
 
+  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
35738
 
   ac_status=$?
35739
 
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
35740
 
   (exit $ac_status); }; then
35741
 
-  pkg_cv_EXTRA_GNOME_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
35742
 
+  pkg_cv_EXTRA_GNOME_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
35743
 
 else
35744
 
   pkg_failed=yes
35745
 
 fi
35746
 
- else
35747
 
+    fi
35748
 
+else
35749
 
     pkg_failed=untried
35750
 
 fi
35751
 
-if test -n "$EXTRA_GNOME_LIBS"; then
35752
 
+if test -n "$PKG_CONFIG"; then
35753
 
+    if test -n "$EXTRA_GNOME_LIBS"; then
35754
 
     pkg_cv_EXTRA_GNOME_LIBS="$EXTRA_GNOME_LIBS"
35755
 
- elif test -n "$PKG_CONFIG"; then
35756
 
+    else
35757
 
     if test -n "$PKG_CONFIG" && \
35758
 
-    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS gtk+-2.0 >= \$GTK_REQS libgnomeui-2.0 >= \$GNOMEUI_REQS gio-2.0 libgnome-2.0 >= \$LIBGNOME_REQS gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
35759
 
-  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
35760
 
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS launchpad-integration gtk+-2.0 >= \$GTK_REQS libgnomeui-2.0 >= \$GNOMEUI_REQS gio-2.0 libgnome-2.0 >= \$LIBGNOME_REQS gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
35761
 
+  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
35762
 
   ac_status=$?
35763
 
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
35764
 
   (exit $ac_status); }; then
35765
 
-  pkg_cv_EXTRA_GNOME_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
35766
 
+  pkg_cv_EXTRA_GNOME_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
35767
 
 else
35768
 
   pkg_failed=yes
35769
 
 fi
35770
 
- else
35771
 
+    fi
35772
 
+else
35773
 
     pkg_failed=untried
35774
 
 fi
35775
 
 
35776
 
@@ -22906,14 +20082,14 @@
35777
 
         _pkg_short_errors_supported=no
35778
 
 fi
35779
 
         if test $_pkg_short_errors_supported = yes; then
35780
 
-               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>&1`
35781
 
+               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES"`
35782
 
         else
35783
 
-               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>&1`
35784
 
+               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES"`
35785
 
         fi
35786
 
        # Put the nasty error message in config.log where it belongs
35787
 
        echo "$EXTRA_GNOME_PKG_ERRORS" >&5
35788
 
 
35789
 
-       { { echo "$as_me:$LINENO: error: Package requirements (glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
35790
 
+       { { echo "$as_me:$LINENO: error: Package requirements (glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
35791
 
 
35792
 
 $EXTRA_GNOME_PKG_ERRORS
35793
 
 
35794
 
@@ -22924,7 +20100,7 @@
35795
 
 and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
35796
 
 See the pkg-config man page for more details.
35797
 
 " >&5
35798
 
-echo "$as_me: error: Package requirements (glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
35799
 
+echo "$as_me: error: Package requirements (glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
35800
 
 
35801
 
 $EXTRA_GNOME_PKG_ERRORS
35802
 
 
35803
 
@@ -22973,36 +20149,40 @@
35804
 
 { echo "$as_me:$LINENO: checking for EXTRA_GNOME" >&5
35805
 
 echo $ECHO_N "checking for EXTRA_GNOME... $ECHO_C" >&6; }
35806
 
 
35807
 
-if test -n "$EXTRA_GNOME_CFLAGS"; then
35808
 
+if test -n "$PKG_CONFIG"; then
35809
 
+    if test -n "$EXTRA_GNOME_CFLAGS"; then
35810
 
     pkg_cv_EXTRA_GNOME_CFLAGS="$EXTRA_GNOME_CFLAGS"
35811
 
- elif test -n "$PKG_CONFIG"; then
35812
 
+    else
35813
 
     if test -n "$PKG_CONFIG" && \
35814
 
-    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS gtk+-2.0 >= \$GTK_REQS gio-2.0 gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
35815
 
-  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
35816
 
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS launchpad-integration gtk+-2.0 >= \$GTK_REQS gio-2.0 gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
35817
 
+  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
35818
 
   ac_status=$?
35819
 
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
35820
 
   (exit $ac_status); }; then
35821
 
-  pkg_cv_EXTRA_GNOME_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
35822
 
+  pkg_cv_EXTRA_GNOME_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
35823
 
 else
35824
 
   pkg_failed=yes
35825
 
 fi
35826
 
- else
35827
 
+    fi
35828
 
+else
35829
 
     pkg_failed=untried
35830
 
 fi
35831
 
-if test -n "$EXTRA_GNOME_LIBS"; then
35832
 
+if test -n "$PKG_CONFIG"; then
35833
 
+    if test -n "$EXTRA_GNOME_LIBS"; then
35834
 
     pkg_cv_EXTRA_GNOME_LIBS="$EXTRA_GNOME_LIBS"
35835
 
- elif test -n "$PKG_CONFIG"; then
35836
 
+    else
35837
 
     if test -n "$PKG_CONFIG" && \
35838
 
-    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS gtk+-2.0 >= \$GTK_REQS gio-2.0 gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
35839
 
-  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
35840
 
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS launchpad-integration gtk+-2.0 >= \$GTK_REQS gio-2.0 gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
35841
 
+  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
35842
 
   ac_status=$?
35843
 
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
35844
 
   (exit $ac_status); }; then
35845
 
-  pkg_cv_EXTRA_GNOME_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
35846
 
+  pkg_cv_EXTRA_GNOME_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
35847
 
 else
35848
 
   pkg_failed=yes
35849
 
 fi
35850
 
- else
35851
 
+    fi
35852
 
+else
35853
 
     pkg_failed=untried
35854
 
 fi
35855
 
 
35856
 
@@ -23016,14 +20196,14 @@
35857
 
         _pkg_short_errors_supported=no
35858
 
 fi
35859
 
         if test $_pkg_short_errors_supported = yes; then
35860
 
-               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>&1`
35861
 
+               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES"`
35862
 
         else
35863
 
-               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>&1`
35864
 
+               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES"`
35865
 
         fi
35866
 
        # Put the nasty error message in config.log where it belongs
35867
 
        echo "$EXTRA_GNOME_PKG_ERRORS" >&5
35868
 
 
35869
 
-       { { echo "$as_me:$LINENO: error: Package requirements (glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
35870
 
+       { { echo "$as_me:$LINENO: error: Package requirements (glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
35871
 
 
35872
 
 $EXTRA_GNOME_PKG_ERRORS
35873
 
 
35874
 
@@ -23034,7 +20214,7 @@
35875
 
 and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
35876
 
 See the pkg-config man page for more details.
35877
 
 " >&5
35878
 
-echo "$as_me: error: Package requirements (glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
35879
 
+echo "$as_me: error: Package requirements (glib-2.0 >= $GLIB_REQS launchpad-integration gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
35880
 
 
35881
 
 $EXTRA_GNOME_PKG_ERRORS
35882
 
 
35883
 
@@ -23093,9 +20273,10 @@
35884
 
 { echo "$as_me:$LINENO: checking for MM" >&5
35885
 
 echo $ECHO_N "checking for MM... $ECHO_C" >&6; }
35886
 
 
35887
 
-if test -n "$MM_CFLAGS"; then
35888
 
+if test -n "$PKG_CONFIG"; then
35889
 
+    if test -n "$MM_CFLAGS"; then
35890
 
     pkg_cv_MM_CFLAGS="$MM_CFLAGS"
35891
 
- elif test -n "$PKG_CONFIG"; then
35892
 
+    else
35893
 
     if test -n "$PKG_CONFIG" && \
35894
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
35895
 
   ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
35896
 
@@ -23106,12 +20287,14 @@
35897
 
 else
35898
 
   pkg_failed=yes
35899
 
 fi
35900
 
- else
35901
 
+    fi
35902
 
+else
35903
 
     pkg_failed=untried
35904
 
 fi
35905
 
-if test -n "$MM_LIBS"; then
35906
 
+if test -n "$PKG_CONFIG"; then
35907
 
+    if test -n "$MM_LIBS"; then
35908
 
     pkg_cv_MM_LIBS="$MM_LIBS"
35909
 
- elif test -n "$PKG_CONFIG"; then
35910
 
+    else
35911
 
     if test -n "$PKG_CONFIG" && \
35912
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
35913
 
   ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
35914
 
@@ -23122,7 +20305,8 @@
35915
 
 else
35916
 
   pkg_failed=yes
35917
 
 fi
35918
 
- else
35919
 
+    fi
35920
 
+else
35921
 
     pkg_failed=untried
35922
 
 fi
35923
 
 
35924
 
@@ -23136,9 +20320,9 @@
35925
 
         _pkg_short_errors_supported=no
35926
 
 fi
35927
 
         if test $_pkg_short_errors_supported = yes; then
35928
 
-               MM_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$MM" 2>&1`
35929
 
+               MM_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$MM"`
35930
 
         else
35931
 
-               MM_PKG_ERRORS=`$PKG_CONFIG --print-errors "$MM" 2>&1`
35932
 
+               MM_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$MM"`
35933
 
         fi
35934
 
        # Put the nasty error message in config.log where it belongs
35935
 
        echo "$MM_PKG_ERRORS" >&5
35936
 
@@ -23214,9 +20398,10 @@
35937
 
 { echo "$as_me:$LINENO: checking for GTK" >&5
35938
 
 echo $ECHO_N "checking for GTK... $ECHO_C" >&6; }
35939
 
 
35940
 
-if test -n "$GTK_CFLAGS"; then
35941
 
+if test -n "$PKG_CONFIG"; then
35942
 
+    if test -n "$GTK_CFLAGS"; then
35943
 
     pkg_cv_GTK_CFLAGS="$GTK_CFLAGS"
35944
 
- elif test -n "$PKG_CONFIG"; then
35945
 
+    else
35946
 
     if test -n "$PKG_CONFIG" && \
35947
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 gthread-2.0\"") >&5
35948
 
   ($PKG_CONFIG --exists --print-errors "gtk+-2.0 gthread-2.0") 2>&5
35949
 
@@ -23227,12 +20412,14 @@
35950
 
 else
35951
 
   pkg_failed=yes
35952
 
 fi
35953
 
- else
35954
 
+    fi
35955
 
+else
35956
 
     pkg_failed=untried
35957
 
 fi
35958
 
-if test -n "$GTK_LIBS"; then
35959
 
+if test -n "$PKG_CONFIG"; then
35960
 
+    if test -n "$GTK_LIBS"; then
35961
 
     pkg_cv_GTK_LIBS="$GTK_LIBS"
35962
 
- elif test -n "$PKG_CONFIG"; then
35963
 
+    else
35964
 
     if test -n "$PKG_CONFIG" && \
35965
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 gthread-2.0\"") >&5
35966
 
   ($PKG_CONFIG --exists --print-errors "gtk+-2.0 gthread-2.0") 2>&5
35967
 
@@ -23243,7 +20430,8 @@
35968
 
 else
35969
 
   pkg_failed=yes
35970
 
 fi
35971
 
- else
35972
 
+    fi
35973
 
+else
35974
 
     pkg_failed=untried
35975
 
 fi
35976
 
 
35977
 
@@ -23257,9 +20445,9 @@
35978
 
         _pkg_short_errors_supported=no
35979
 
 fi
35980
 
         if test $_pkg_short_errors_supported = yes; then
35981
 
-               GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gtk+-2.0 gthread-2.0" 2>&1`
35982
 
+               GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gtk+-2.0 gthread-2.0"`
35983
 
         else
35984
 
-               GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors "gtk+-2.0 gthread-2.0" 2>&1`
35985
 
+               GTK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtk+-2.0 gthread-2.0"`
35986
 
         fi
35987
 
        # Put the nasty error message in config.log where it belongs
35988
 
        echo "$GTK_PKG_ERRORS" >&5
35989
 
@@ -23653,9 +20841,10 @@
35990
 
 { echo "$as_me:$LINENO: checking for XVIDMODE" >&5
35991
 
 echo $ECHO_N "checking for XVIDMODE... $ECHO_C" >&6; }
35992
 
 
35993
 
-if test -n "$XVIDMODE_CFLAGS"; then
35994
 
+if test -n "$PKG_CONFIG"; then
35995
 
+    if test -n "$XVIDMODE_CFLAGS"; then
35996
 
     pkg_cv_XVIDMODE_CFLAGS="$XVIDMODE_CFLAGS"
35997
 
- elif test -n "$PKG_CONFIG"; then
35998
 
+    else
35999
 
     if test -n "$PKG_CONFIG" && \
36000
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"xrandr >= 1.1.1 xxf86vm >= 1.0.1\"") >&5
36001
 
   ($PKG_CONFIG --exists --print-errors "xrandr >= 1.1.1 xxf86vm >= 1.0.1") 2>&5
36002
 
@@ -23666,12 +20855,14 @@
36003
 
 else
36004
 
   pkg_failed=yes
36005
 
 fi
36006
 
- else
36007
 
+    fi
36008
 
+else
36009
 
     pkg_failed=untried
36010
 
 fi
36011
 
-if test -n "$XVIDMODE_LIBS"; then
36012
 
+if test -n "$PKG_CONFIG"; then
36013
 
+    if test -n "$XVIDMODE_LIBS"; then
36014
 
     pkg_cv_XVIDMODE_LIBS="$XVIDMODE_LIBS"
36015
 
- elif test -n "$PKG_CONFIG"; then
36016
 
+    else
36017
 
     if test -n "$PKG_CONFIG" && \
36018
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"xrandr >= 1.1.1 xxf86vm >= 1.0.1\"") >&5
36019
 
   ($PKG_CONFIG --exists --print-errors "xrandr >= 1.1.1 xxf86vm >= 1.0.1") 2>&5
36020
 
@@ -23682,7 +20873,8 @@
36021
 
 else
36022
 
   pkg_failed=yes
36023
 
 fi
36024
 
- else
36025
 
+    fi
36026
 
+else
36027
 
     pkg_failed=untried
36028
 
 fi
36029
 
 
36030
 
@@ -23696,9 +20888,9 @@
36031
 
         _pkg_short_errors_supported=no
36032
 
 fi
36033
 
         if test $_pkg_short_errors_supported = yes; then
36034
 
-               XVIDMODE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "xrandr >= 1.1.1 xxf86vm >= 1.0.1" 2>&1`
36035
 
+               XVIDMODE_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "xrandr >= 1.1.1 xxf86vm >= 1.0.1"`
36036
 
         else
36037
 
-               XVIDMODE_PKG_ERRORS=`$PKG_CONFIG --print-errors "xrandr >= 1.1.1 xxf86vm >= 1.0.1" 2>&1`
36038
 
+               XVIDMODE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "xrandr >= 1.1.1 xxf86vm >= 1.0.1"`
36039
 
         fi
36040
 
        # Put the nasty error message in config.log where it belongs
36041
 
        echo "$XVIDMODE_PKG_ERRORS" >&5
36042
 
@@ -24029,9 +21221,10 @@
36043
 
 { echo "$as_me:$LINENO: checking for PYGTK" >&5
36044
 
 echo $ECHO_N "checking for PYGTK... $ECHO_C" >&6; }
36045
 
 
36046
 
-if test -n "$PYGTK_CFLAGS"; then
36047
 
+if test -n "$PKG_CONFIG"; then
36048
 
+    if test -n "$PYGTK_CFLAGS"; then
36049
 
     pkg_cv_PYGTK_CFLAGS="$PYGTK_CFLAGS"
36050
 
- elif test -n "$PKG_CONFIG"; then
36051
 
+    else
36052
 
     if test -n "$PKG_CONFIG" && \
36053
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"
36054
 
                pygtk-2.0 >= \$PYGTK_REQUIRED
36055
 
@@ -24048,12 +21241,14 @@
36056
 
 else
36057
 
   pkg_failed=yes
36058
 
 fi
36059
 
- else
36060
 
+    fi
36061
 
+else
36062
 
     pkg_failed=untried
36063
 
 fi
36064
 
-if test -n "$PYGTK_LIBS"; then
36065
 
+if test -n "$PKG_CONFIG"; then
36066
 
+    if test -n "$PYGTK_LIBS"; then
36067
 
     pkg_cv_PYGTK_LIBS="$PYGTK_LIBS"
36068
 
- elif test -n "$PKG_CONFIG"; then
36069
 
+    else
36070
 
     if test -n "$PKG_CONFIG" && \
36071
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"
36072
 
                pygtk-2.0 >= \$PYGTK_REQUIRED
36073
 
@@ -24070,7 +21265,8 @@
36074
 
 else
36075
 
   pkg_failed=yes
36076
 
 fi
36077
 
- else
36078
 
+    fi
36079
 
+else
36080
 
     pkg_failed=untried
36081
 
 fi
36082
 
 
36083
 
@@ -24084,13 +21280,13 @@
36084
 
         _pkg_short_errors_supported=no
36085
 
 fi
36086
 
         if test $_pkg_short_errors_supported = yes; then
36087
 
-               PYGTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "
36088
 
+               PYGTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "
36089
 
                pygtk-2.0 >= $PYGTK_REQUIRED
36090
 
-               totem-plparser >= $TOTEM_PLPARSER_REQS" 2>&1`
36091
 
+               totem-plparser >= $TOTEM_PLPARSER_REQS"`
36092
 
         else
36093
 
-               PYGTK_PKG_ERRORS=`$PKG_CONFIG --print-errors "
36094
 
+               PYGTK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "
36095
 
                pygtk-2.0 >= $PYGTK_REQUIRED
36096
 
-               totem-plparser >= $TOTEM_PLPARSER_REQS" 2>&1`
36097
 
+               totem-plparser >= $TOTEM_PLPARSER_REQS"`
36098
 
         fi
36099
 
        # Put the nasty error message in config.log where it belongs
36100
 
        echo "$PYGTK_PKG_ERRORS" >&5
36101
 
@@ -24252,9 +21448,10 @@
36102
 
 { echo "$as_me:$LINENO: checking for VALA" >&5
36103
 
 echo $ECHO_N "checking for VALA... $ECHO_C" >&6; }
36104
 
 
36105
 
-if test -n "$VALA_CFLAGS"; then
36106
 
+if test -n "$PKG_CONFIG"; then
36107
 
+    if test -n "$VALA_CFLAGS"; then
36108
 
     pkg_cv_VALA_CFLAGS="$VALA_CFLAGS"
36109
 
- elif test -n "$PKG_CONFIG"; then
36110
 
+    else
36111
 
     if test -n "$PKG_CONFIG" && \
36112
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"vala-1.0 >= \$VALA_REQS\"") >&5
36113
 
   ($PKG_CONFIG --exists --print-errors "vala-1.0 >= $VALA_REQS") 2>&5
36114
 
@@ -24265,12 +21462,14 @@
36115
 
 else
36116
 
   pkg_failed=yes
36117
 
 fi
36118
 
- else
36119
 
+    fi
36120
 
+else
36121
 
     pkg_failed=untried
36122
 
 fi
36123
 
-if test -n "$VALA_LIBS"; then
36124
 
+if test -n "$PKG_CONFIG"; then
36125
 
+    if test -n "$VALA_LIBS"; then
36126
 
     pkg_cv_VALA_LIBS="$VALA_LIBS"
36127
 
- elif test -n "$PKG_CONFIG"; then
36128
 
+    else
36129
 
     if test -n "$PKG_CONFIG" && \
36130
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"vala-1.0 >= \$VALA_REQS\"") >&5
36131
 
   ($PKG_CONFIG --exists --print-errors "vala-1.0 >= $VALA_REQS") 2>&5
36132
 
@@ -24281,7 +21480,8 @@
36133
 
 else
36134
 
   pkg_failed=yes
36135
 
 fi
36136
 
- else
36137
 
+    fi
36138
 
+else
36139
 
     pkg_failed=untried
36140
 
 fi
36141
 
 
36142
 
@@ -24295,9 +21495,9 @@
36143
 
         _pkg_short_errors_supported=no
36144
 
 fi
36145
 
         if test $_pkg_short_errors_supported = yes; then
36146
 
-               VALA_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "vala-1.0 >= $VALA_REQS" 2>&1`
36147
 
+               VALA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "vala-1.0 >= $VALA_REQS"`
36148
 
         else
36149
 
-               VALA_PKG_ERRORS=`$PKG_CONFIG --print-errors "vala-1.0 >= $VALA_REQS" 2>&1`
36150
 
+               VALA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "vala-1.0 >= $VALA_REQS"`
36151
 
         fi
36152
 
        # Put the nasty error message in config.log where it belongs
36153
 
        echo "$VALA_PKG_ERRORS" >&5
36154
 
@@ -24400,9 +21600,10 @@
36155
 
 { echo "$as_me:$LINENO: checking for LIBGALAGO" >&5
36156
 
 echo $ECHO_N "checking for LIBGALAGO... $ECHO_C" >&6; }
36157
 
 
36158
 
-if test -n "$LIBGALAGO_CFLAGS"; then
36159
 
+if test -n "$PKG_CONFIG"; then
36160
 
+    if test -n "$LIBGALAGO_CFLAGS"; then
36161
 
     pkg_cv_LIBGALAGO_CFLAGS="$LIBGALAGO_CFLAGS"
36162
 
- elif test -n "$PKG_CONFIG"; then
36163
 
+    else
36164
 
     if test -n "$PKG_CONFIG" && \
36165
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libgalago >= 0.5.2\"") >&5
36166
 
   ($PKG_CONFIG --exists --print-errors "libgalago >= 0.5.2") 2>&5
36167
 
@@ -24413,12 +21614,14 @@
36168
 
 else
36169
 
   pkg_failed=yes
36170
 
 fi
36171
 
- else
36172
 
+    fi
36173
 
+else
36174
 
     pkg_failed=untried
36175
 
 fi
36176
 
-if test -n "$LIBGALAGO_LIBS"; then
36177
 
+if test -n "$PKG_CONFIG"; then
36178
 
+    if test -n "$LIBGALAGO_LIBS"; then
36179
 
     pkg_cv_LIBGALAGO_LIBS="$LIBGALAGO_LIBS"
36180
 
- elif test -n "$PKG_CONFIG"; then
36181
 
+    else
36182
 
     if test -n "$PKG_CONFIG" && \
36183
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libgalago >= 0.5.2\"") >&5
36184
 
   ($PKG_CONFIG --exists --print-errors "libgalago >= 0.5.2") 2>&5
36185
 
@@ -24429,7 +21632,8 @@
36186
 
 else
36187
 
   pkg_failed=yes
36188
 
 fi
36189
 
- else
36190
 
+    fi
36191
 
+else
36192
 
     pkg_failed=untried
36193
 
 fi
36194
 
 
36195
 
@@ -24443,9 +21647,9 @@
36196
 
         _pkg_short_errors_supported=no
36197
 
 fi
36198
 
         if test $_pkg_short_errors_supported = yes; then
36199
 
-               LIBGALAGO_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "libgalago >= 0.5.2" 2>&1`
 
46013
-        fi
 
46014
-       # Put the nasty error message in config.log where it belongs
 
46015
-       echo "$GST_PKG_ERRORS" >&5
 
46016
-
 
46017
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
46018
-$as_echo "no" >&6; }
 
46019
-                HAVE_GSTREAMER=no
 
46020
-elif test $pkg_failed = untried; then
 
46021
-       HAVE_GSTREAMER=no
 
46022
+    fi
 
46023
 else
 
46024
-       GST_CFLAGS=$pkg_cv_GST_CFLAGS
 
46025
-       GST_LIBS=$pkg_cv_GST_LIBS
 
46026
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
46027
-$as_echo "yes" >&6; }
 
46028
-       HAVE_GSTREAMER=yes
 
46029
+       pkg_failed=untried
 
46030
 fi
 
46031
-       GST_LIBS="$GST_LIBS -lgstbase-$GST_MAJORMINOR -lgstinterfaces-$GST_MAJORMINOR -lgstvideo-$GST_MAJORMINOR -lgstaudio-$GST_MAJORMINOR -lgstpbutils-$GST_MAJORMINOR -lgsttag-$GST_MAJORMINOR"
 
46032
-
 
46033
-       EXTRA_BACKEND_LIBS="-lgstinterfaces-$GST_MAJORMINOR -lgstvideo-$GST_MAJORMINOR -lgstaudio-$GST_MAJORMINOR -lgstpbutils-$GST_MAJORMINOR"
 
46034
-
 
46035
-       { $as_echo "$as_me:$LINENO: checking for backend libraries" >&5
 
46036
-$as_echo_n "checking for backend libraries... " >&6; }
 
46037
-               if test "x$HAVE_GSTREAMER" = "xno"; then
 
46038
-               { { $as_echo "$as_me:$LINENO: error: you need the GStreamer or the xine-lib development packages installed" >&5
 
46039
-$as_echo "$as_me: error: you need the GStreamer or the xine-lib development packages installed" >&2;}
 
46040
-   { (exit 1); exit 1; }; }
 
46041
-       fi
 
46042
-       { $as_echo "$as_me:$LINENO: result: GStreamer-$GST_MAJORMINOR" >&5
 
46043
-$as_echo "GStreamer-$GST_MAJORMINOR" >&6; }
 
46044
-
 
46045
-               gst010_toolsdir=`$PKG_CONFIG --variable=toolsdir gstreamer-0.10`
 
46046
-       gst010_inspect="$gst010_toolsdir/gst-inspect-0.10"
 
46047
 
 
46048
-               for base_element in playbin ffmpegcolorspace videoscale
 
46049
-       do
 
46050
-               { $as_echo "$as_me:$LINENO: checking GStreamer 0.10 $base_element plugin" >&5
 
46051
-$as_echo_n "checking GStreamer 0.10 $base_element plugin... " >&6; }
 
46052
-               if $gst010_inspect $base_element >/dev/null 2>/dev/null; then
 
46053
-                       { $as_echo "$as_me:$LINENO: result: yes" >&5
 
46054
-$as_echo "yes" >&6; }
 
46055
-               else
 
46056
-                       { $as_echo "$as_me:$LINENO: result: no" >&5
 
46057
-$as_echo "no" >&6; }
 
46058
-                       { { $as_echo "$as_me:$LINENO: error:
 
46059
-                               Cannot find required GStreamer-0.10 plugin '$base_element'.
 
46060
-                               It should be part of gst-plugins-base. Please install it.
 
46061
-                       " >&5
 
46062
-$as_echo "$as_me: error:
 
46063
-                               Cannot find required GStreamer-0.10 plugin '$base_element'.
 
46064
-                               It should be part of gst-plugins-base. Please install it.
 
46065
-                       " >&2;}
 
46066
-   { (exit 1); exit 1; }; }
 
46067
-               fi
 
46068
-       done
 
46069
 
 
46070
-               for good_element in gconfaudiosink gconfvideosink goom
 
46071
-       do
 
46072
-               { $as_echo "$as_me:$LINENO: checking GStreamer 0.10 $good_element plugin" >&5
 
46073
-$as_echo_n "checking GStreamer 0.10 $good_element plugin... " >&6; }
 
46074
-               if $gst010_inspect $good_element >/dev/null 2>/dev/null; then
 
46075
-                       { $as_echo "$as_me:$LINENO: result: yes" >&5
 
46076
-$as_echo "yes" >&6; }
 
46077
-               else
 
46078
-                       { $as_echo "$as_me:$LINENO: result: no" >&5
 
46079
-$as_echo "no" >&6; }
 
46080
-                       { { $as_echo "$as_me:$LINENO: error:
 
46081
-                               Cannot find required GStreamer-0.10 plugin '$good_element'.
 
46082
-                               It should be part of gst-plugins-good. Please install it.
 
46083
-                       " >&5
 
46084
-$as_echo "$as_me: error:
 
46085
-                               Cannot find required GStreamer-0.10 plugin '$good_element'.
 
46086
-                               It should be part of gst-plugins-good. Please install it.
 
46087
-                       " >&2;}
 
46088
-   { (exit 1); exit 1; }; }
 
46089
-               fi
 
46090
-       done
 
46091
 
 
46092
+if test $pkg_failed = yes; then
 
46093
 
 
46094
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
46095
+        _pkg_short_errors_supported=yes
 
46096
+else
 
46097
+        _pkg_short_errors_supported=no
 
46098
 fi
 
46099
+        if test $_pkg_short_errors_supported = yes; then
36200
46100
+               LIBGALAGO_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libgalago >= 0.5.2"`
36201
 
         else
36202
 
-               LIBGALAGO_PKG_ERRORS=`$PKG_CONFIG --print-errors "libgalago >= 0.5.2" 2>&1`
 
46101
+        else
36203
46102
+               LIBGALAGO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libgalago >= 0.5.2"`
36204
 
         fi
36205
 
        # Put the nasty error message in config.log where it belongs
36206
 
        echo "$LIBGALAGO_PKG_ERRORS" >&5
36207
 
@@ -24479,9 +21683,10 @@
36208
 
 { echo "$as_me:$LINENO: checking for MEDIA_PLAYER_KEYS" >&5
36209
 
 echo $ECHO_N "checking for MEDIA_PLAYER_KEYS... $ECHO_C" >&6; }
36210
 
 
36211
 
-if test -n "$MEDIA_PLAYER_KEYS_CFLAGS"; then
 
46103
+        fi
 
46104
+       # Put the nasty error message in config.log where it belongs
 
46105
+       echo "$LIBGALAGO_PKG_ERRORS" >&5
 
46106
 
 
46107
-if test x$ENABLE_XINE = xno && test x$HAVE_GSTREAMER = xno; then
 
46108
-       { $as_echo "$as_me:$LINENO: checking for backend libraries" >&5
 
46109
-$as_echo_n "checking for backend libraries... " >&6; }
 
46110
-       { $as_echo "$as_me:$LINENO: result: none" >&5
 
46111
-$as_echo "none" >&6; }
 
46112
-       { { $as_echo "$as_me:$LINENO: error: you need the GStreamer or the xine-lib development packages installed" >&5
 
46113
-$as_echo "$as_me: error: you need the GStreamer or the xine-lib development packages installed" >&2;}
 
46114
-   { (exit 1); exit 1; }; }
 
46115
+       { echo "$as_me:$LINENO: result: no" >&5
 
46116
+echo "${ECHO_T}no" >&6; }
 
46117
+                HAVE_LIBGALAGO=no
 
46118
+elif test $pkg_failed = untried; then
 
46119
+       HAVE_LIBGALAGO=no
 
46120
+else
 
46121
+       LIBGALAGO_CFLAGS=$pkg_cv_LIBGALAGO_CFLAGS
 
46122
+       LIBGALAGO_LIBS=$pkg_cv_LIBGALAGO_LIBS
 
46123
+        { echo "$as_me:$LINENO: result: yes" >&5
 
46124
+echo "${ECHO_T}yes" >&6; }
 
46125
+       HAVE_LIBGALAGO=yes
 
46126
 fi
 
46127
-
 
46128
-if test x$HAVE_GSTREAMER = xno; then
 
46129
-       MM="libxine >= $XINE_REQS gconf-2.0"
 
46130
+                       if test "${HAVE_LIBGALAGO}" != "yes" ; then
 
46131
+                               plugin_error_or_ignore "you need libgalago >= 0.5.2 installed for the galago plugin"
 
46132
+                               add_plugin="0"
 
46133
+                       fi
 
46134
+               ;;
 
46135
+               gromit)
 
46136
+                       if test "${have_x11}" != "yes" ; then
 
46137
+                               plugin_error_or_ignore "the gromit plugin is not supported on non-X11 targets"
 
46138
+                               add_plugin="0"
 
46139
+                       fi
 
46140
+               ;;
 
46141
+               media-player-keys)
 
46142
 
 
46143
 pkg_failed=no
 
46144
-{ $as_echo "$as_me:$LINENO: checking for XINE" >&5
 
46145
-$as_echo_n "checking for XINE... " >&6; }
 
46146
+{ echo "$as_me:$LINENO: checking for MEDIA_PLAYER_KEYS" >&5
 
46147
+echo $ECHO_N "checking for MEDIA_PLAYER_KEYS... $ECHO_C" >&6; }
 
46148
 
 
46149
-if test -n "$XINE_CFLAGS"; then
 
46150
-    pkg_cv_XINE_CFLAGS="$XINE_CFLAGS"
 
46151
- elif test -n "$PKG_CONFIG"; then
 
46152
-    if test -n "$PKG_CONFIG" && \
 
46153
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
 
46154
-  ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
36212
46155
+if test -n "$PKG_CONFIG"; then
36213
46156
+    if test -n "$MEDIA_PLAYER_KEYS_CFLAGS"; then
36214
 
     pkg_cv_MEDIA_PLAYER_KEYS_CFLAGS="$MEDIA_PLAYER_KEYS_CFLAGS"
36215
 
- elif test -n "$PKG_CONFIG"; then
 
46157
+        pkg_cv_MEDIA_PLAYER_KEYS_CFLAGS="$MEDIA_PLAYER_KEYS_CFLAGS"
36216
46158
+    else
36217
 
     if test -n "$PKG_CONFIG" && \
36218
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1\"") >&5
36219
 
   ($PKG_CONFIG --exists --print-errors "dbus-glib-1") 2>&5
36220
 
@@ -24492,12 +21697,14 @@
 
46159
+        if test -n "$PKG_CONFIG" && \
 
46160
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1\"") >&5
 
46161
+  ($PKG_CONFIG --exists --print-errors "dbus-glib-1") 2>&5
 
46162
   ac_status=$?
 
46163
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46164
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46165
   (exit $ac_status); }; then
 
46166
-  pkg_cv_XINE_CFLAGS=`$PKG_CONFIG --cflags "$MM" 2>/dev/null`
 
46167
+  pkg_cv_MEDIA_PLAYER_KEYS_CFLAGS=`$PKG_CONFIG --cflags "dbus-glib-1" 2>/dev/null`
36221
46168
 else
36222
46169
   pkg_failed=yes
36223
46170
 fi
36224
46171
- else
 
46172
-    pkg_failed=untried
36225
46173
+    fi
36226
46174
+else
36227
 
     pkg_failed=untried
 
46175
+       pkg_failed=untried
36228
46176
 fi
36229
 
-if test -n "$MEDIA_PLAYER_KEYS_LIBS"; then
 
46177
-if test -n "$XINE_LIBS"; then
 
46178
-    pkg_cv_XINE_LIBS="$XINE_LIBS"
 
46179
- elif test -n "$PKG_CONFIG"; then
 
46180
-    if test -n "$PKG_CONFIG" && \
 
46181
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
 
46182
-  ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
36230
46183
+if test -n "$PKG_CONFIG"; then
36231
46184
+    if test -n "$MEDIA_PLAYER_KEYS_LIBS"; then
36232
 
     pkg_cv_MEDIA_PLAYER_KEYS_LIBS="$MEDIA_PLAYER_KEYS_LIBS"
36233
 
- elif test -n "$PKG_CONFIG"; then
 
46185
+        pkg_cv_MEDIA_PLAYER_KEYS_LIBS="$MEDIA_PLAYER_KEYS_LIBS"
36234
46186
+    else
36235
 
     if test -n "$PKG_CONFIG" && \
36236
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1\"") >&5
36237
 
   ($PKG_CONFIG --exists --print-errors "dbus-glib-1") 2>&5
36238
 
@@ -24508,7 +21715,8 @@
 
46187
+        if test -n "$PKG_CONFIG" && \
 
46188
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1\"") >&5
 
46189
+  ($PKG_CONFIG --exists --print-errors "dbus-glib-1") 2>&5
 
46190
   ac_status=$?
 
46191
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46192
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46193
   (exit $ac_status); }; then
 
46194
-  pkg_cv_XINE_LIBS=`$PKG_CONFIG --libs "$MM" 2>/dev/null`
 
46195
+  pkg_cv_MEDIA_PLAYER_KEYS_LIBS=`$PKG_CONFIG --libs "dbus-glib-1" 2>/dev/null`
36239
46196
 else
36240
46197
   pkg_failed=yes
36241
46198
 fi
36242
46199
- else
 
46200
-    pkg_failed=untried
36243
46201
+    fi
36244
46202
+else
36245
 
     pkg_failed=untried
 
46203
+       pkg_failed=untried
36246
46204
 fi
36247
46205
 
36248
 
@@ -24522,9 +21730,9 @@
 
46206
 
 
46207
@@ -23476,154 +21730,282 @@
36249
46208
         _pkg_short_errors_supported=no
36250
46209
 fi
36251
46210
         if test $_pkg_short_errors_supported = yes; then
36252
 
-               MEDIA_PLAYER_KEYS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "dbus-glib-1" 2>&1`
 
46211
-               XINE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$MM" 2>&1`
36253
46212
+               MEDIA_PLAYER_KEYS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "dbus-glib-1"`
36254
46213
         else
36255
 
-               MEDIA_PLAYER_KEYS_PKG_ERRORS=`$PKG_CONFIG --print-errors "dbus-glib-1" 2>&1`
 
46214
-               XINE_PKG_ERRORS=`$PKG_CONFIG --print-errors "$MM" 2>&1`
36256
46215
+               MEDIA_PLAYER_KEYS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "dbus-glib-1"`
36257
46216
         fi
36258
46217
        # Put the nasty error message in config.log where it belongs
36259
 
        echo "$MEDIA_PLAYER_KEYS_PKG_ERRORS" >&5
36260
 
@@ -24763,9 +21971,10 @@
36261
 
 { echo "$as_me:$LINENO: checking for GMYTH" >&5
36262
 
 echo $ECHO_N "checking for GMYTH... $ECHO_C" >&6; }
36263
 
 
36264
 
-if test -n "$GMYTH_CFLAGS"; then
 
46218
-       echo "$XINE_PKG_ERRORS" >&5
 
46219
-
 
46220
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
46221
-$as_echo "no" >&6; }
 
46222
-
 
46223
-                       { $as_echo "$as_me:$LINENO: result: no" >&5
 
46224
-$as_echo "no" >&6; }
 
46225
-                       HAVE_XINE=no
 
46226
+       echo "$MEDIA_PLAYER_KEYS_PKG_ERRORS" >&5
 
46227
 
 
46228
+       { echo "$as_me:$LINENO: result: no" >&5
 
46229
+echo "${ECHO_T}no" >&6; }
 
46230
+                HAVE_MEDIA_PLAYER_KEYS=no
 
46231
 elif test $pkg_failed = untried; then
 
46232
-
 
46233
-                       { $as_echo "$as_me:$LINENO: result: no" >&5
 
46234
-$as_echo "no" >&6; }
 
46235
-                       HAVE_XINE=no
 
46236
-
 
46237
+       HAVE_MEDIA_PLAYER_KEYS=no
 
46238
 else
 
46239
-       XINE_CFLAGS=$pkg_cv_XINE_CFLAGS
 
46240
-       XINE_LIBS=$pkg_cv_XINE_LIBS
 
46241
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
46242
-$as_echo "yes" >&6; }
 
46243
-       HAVE_XINE=yes
 
46244
-fi
 
46245
-       { $as_echo "$as_me:$LINENO: checking for backend libraries" >&5
 
46246
-$as_echo_n "checking for backend libraries... " >&6; }
 
46247
-       if test x$HAVE_XINE = xyes; then
 
46248
-               { $as_echo "$as_me:$LINENO: result: xine-lib" >&5
 
46249
-$as_echo "xine-lib" >&6; }
 
46250
-        else
 
46251
-               { $as_echo "$as_me:$LINENO: WARNING: No xine-lib found" >&5
 
46252
-$as_echo "$as_me: WARNING: No xine-lib found" >&2;}
 
46253
-       fi
 
46254
+       MEDIA_PLAYER_KEYS_CFLAGS=$pkg_cv_MEDIA_PLAYER_KEYS_CFLAGS
 
46255
+       MEDIA_PLAYER_KEYS_LIBS=$pkg_cv_MEDIA_PLAYER_KEYS_LIBS
 
46256
+        { echo "$as_me:$LINENO: result: yes" >&5
 
46257
+echo "${ECHO_T}yes" >&6; }
 
46258
+       HAVE_MEDIA_PLAYER_KEYS=yes
 
46259
 fi
 
46260
+                       if test "${HAVE_MEDIA_PLAYER_KEYS}" != "yes" ; then
 
46261
+                               plugin_error_or_ignore "you need dbus-glib-1 installed for the media-player-keys plugin"
 
46262
+                               add_plugin="0"
 
46263
+                       fi
 
46264
+               ;;
 
46265
+               lirc)
 
46266
+                       { echo "$as_me:$LINENO: checking for lirc_init in -llirc_client" >&5
 
46267
+echo $ECHO_N "checking for lirc_init in -llirc_client... $ECHO_C" >&6; }
 
46268
+if test "${ac_cv_lib_lirc_client_lirc_init+set}" = set; then
 
46269
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
46270
+else
 
46271
+  ac_check_lib_save_LIBS=$LIBS
 
46272
+LIBS="-llirc_client  $LIBS"
 
46273
+cat >conftest.$ac_ext <<_ACEOF
 
46274
+/* confdefs.h.  */
 
46275
+_ACEOF
 
46276
+cat confdefs.h >>conftest.$ac_ext
 
46277
+cat >>conftest.$ac_ext <<_ACEOF
 
46278
+/* end confdefs.h.  */
 
46279
 
 
46280
-if test "$HAVE_GSTREAMER" = "yes"; then
 
46281
-
 
46282
-cat >>confdefs.h <<\_ACEOF
 
46283
-#define HAVE_GSTREAMER 1
 
46284
+/* Override any GCC internal prototype to avoid an error.
 
46285
+   Use char because int might match the return type of a GCC
 
46286
+   builtin and then its argument prototype would still apply.  */
 
46287
+#ifdef __cplusplus
 
46288
+extern "C"
 
46289
+#endif
 
46290
+char lirc_init ();
 
46291
+int
 
46292
+main ()
 
46293
+{
 
46294
+return lirc_init ();
 
46295
+  ;
 
46296
+  return 0;
 
46297
+}
 
46298
 _ACEOF
 
46299
+rm -f conftest.$ac_objext conftest$ac_exeext
 
46300
+if { (ac_try="$ac_link"
 
46301
+case "(($ac_try" in
 
46302
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
46303
+  *) ac_try_echo=$ac_try;;
 
46304
+esac
 
46305
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
46306
+  (eval "$ac_link") 2>conftest.er1
 
46307
+  ac_status=$?
 
46308
+  grep -v '^ *+' conftest.er1 >conftest.err
 
46309
+  rm -f conftest.er1
 
46310
+  cat conftest.err >&5
 
46311
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46312
+  (exit $ac_status); } && {
 
46313
+        test -z "$ac_c_werror_flag" ||
 
46314
+        test ! -s conftest.err
 
46315
+       } && test -s conftest$ac_exeext &&
 
46316
+       $as_test_x conftest$ac_exeext; then
 
46317
+  ac_cv_lib_lirc_client_lirc_init=yes
 
46318
+else
 
46319
+  echo "$as_me: failed program was:" >&5
 
46320
+sed 's/^/| /' conftest.$ac_ext >&5
 
46321
 
 
46322
+       ac_cv_lib_lirc_client_lirc_init=no
 
46323
 fi
 
46324
 
 
46325
- if test "x$HAVE_GSTREAMER" = "xyes"; then
 
46326
-  TOTEM_GST_TRUE=
 
46327
-  TOTEM_GST_FALSE='#'
 
46328
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
46329
+      conftest$ac_exeext conftest.$ac_ext
 
46330
+LIBS=$ac_check_lib_save_LIBS
 
46331
+fi
 
46332
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_lirc_client_lirc_init" >&5
 
46333
+echo "${ECHO_T}$ac_cv_lib_lirc_client_lirc_init" >&6; }
 
46334
+if test $ac_cv_lib_lirc_client_lirc_init = yes; then
 
46335
+  if test "${ac_cv_header_lirc_lirc_client_h+set}" = set; then
 
46336
+  { echo "$as_me:$LINENO: checking for lirc/lirc_client.h" >&5
 
46337
+echo $ECHO_N "checking for lirc/lirc_client.h... $ECHO_C" >&6; }
 
46338
+if test "${ac_cv_header_lirc_lirc_client_h+set}" = set; then
 
46339
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
46340
+fi
 
46341
+{ echo "$as_me:$LINENO: result: $ac_cv_header_lirc_lirc_client_h" >&5
 
46342
+echo "${ECHO_T}$ac_cv_header_lirc_lirc_client_h" >&6; }
 
46343
 else
 
46344
-  TOTEM_GST_TRUE='#'
 
46345
-  TOTEM_GST_FALSE=
 
46346
+  # Is the header compilable?
 
46347
+{ echo "$as_me:$LINENO: checking lirc/lirc_client.h usability" >&5
 
46348
+echo $ECHO_N "checking lirc/lirc_client.h usability... $ECHO_C" >&6; }
 
46349
+cat >conftest.$ac_ext <<_ACEOF
 
46350
+/* confdefs.h.  */
 
46351
+_ACEOF
 
46352
+cat confdefs.h >>conftest.$ac_ext
 
46353
+cat >>conftest.$ac_ext <<_ACEOF
 
46354
+/* end confdefs.h.  */
 
46355
+$ac_includes_default
 
46356
+#include <lirc/lirc_client.h>
 
46357
+_ACEOF
 
46358
+rm -f conftest.$ac_objext
 
46359
+if { (ac_try="$ac_compile"
 
46360
+case "(($ac_try" in
 
46361
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
46362
+  *) ac_try_echo=$ac_try;;
 
46363
+esac
 
46364
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
46365
+  (eval "$ac_compile") 2>conftest.er1
 
46366
+  ac_status=$?
 
46367
+  grep -v '^ *+' conftest.er1 >conftest.err
 
46368
+  rm -f conftest.er1
 
46369
+  cat conftest.err >&5
 
46370
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46371
+  (exit $ac_status); } && {
 
46372
+        test -z "$ac_c_werror_flag" ||
 
46373
+        test ! -s conftest.err
 
46374
+       } && test -s conftest.$ac_objext; then
 
46375
+  ac_header_compiler=yes
 
46376
+else
 
46377
+  echo "$as_me: failed program was:" >&5
 
46378
+sed 's/^/| /' conftest.$ac_ext >&5
 
46379
+
 
46380
+       ac_header_compiler=no
 
46381
 fi
 
46382
 
 
46383
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
46384
+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
46385
+echo "${ECHO_T}$ac_header_compiler" >&6; }
 
46386
 
 
46387
-{ $as_echo "$as_me:$LINENO: checking Whether not to check for iso-codes" >&5
 
46388
-$as_echo_n "checking Whether not to check for iso-codes... " >&6; }
 
46389
-# Check whether --enable-iso-codes was given.
 
46390
-if test "${enable_iso_codes+set}" = set; then
 
46391
-  enableval=$enable_iso_codes;
 
46392
+# Is the header present?
 
46393
+{ echo "$as_me:$LINENO: checking lirc/lirc_client.h presence" >&5
 
46394
+echo $ECHO_N "checking lirc/lirc_client.h presence... $ECHO_C" >&6; }
 
46395
+cat >conftest.$ac_ext <<_ACEOF
 
46396
+/* confdefs.h.  */
 
46397
+_ACEOF
 
46398
+cat confdefs.h >>conftest.$ac_ext
 
46399
+cat >>conftest.$ac_ext <<_ACEOF
 
46400
+/* end confdefs.h.  */
 
46401
+#include <lirc/lirc_client.h>
 
46402
+_ACEOF
 
46403
+if { (ac_try="$ac_cpp conftest.$ac_ext"
 
46404
+case "(($ac_try" in
 
46405
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
46406
+  *) ac_try_echo=$ac_try;;
 
46407
+esac
 
46408
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
46409
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
46410
+  ac_status=$?
 
46411
+  grep -v '^ *+' conftest.er1 >conftest.err
 
46412
+  rm -f conftest.er1
 
46413
+  cat conftest.err >&5
 
46414
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46415
+  (exit $ac_status); } >/dev/null && {
 
46416
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
46417
+        test ! -s conftest.err
 
46418
+       }; then
 
46419
+  ac_header_preproc=yes
 
46420
 else
 
46421
-  disable_iso_codes_check=no
 
46422
-fi
 
46423
+  echo "$as_me: failed program was:" >&5
 
46424
+sed 's/^/| /' conftest.$ac_ext >&5
 
46425
 
 
46426
-if test x$disable_iso_codes_check = xno ; then
 
46427
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
46428
-$as_echo "no" >&6; }
 
46429
-else
 
46430
-       { $as_echo "$as_me:$LINENO: result: yes" >&5
 
46431
-$as_echo "yes" >&6; }
 
46432
+  ac_header_preproc=no
 
46433
 fi
 
46434
 
 
46435
-if test x$disable_iso_codes_check = "xno" ; then
 
46436
-       { $as_echo "$as_me:$LINENO: checking whether iso-codes has iso-639 domain" >&5
 
46437
-$as_echo_n "checking whether iso-codes has iso-639 domain... " >&6; }
 
46438
-       if $PKG_CONFIG --variable=domains iso-codes | grep 639 >/dev/null ; then
 
46439
-               { $as_echo "$as_me:$LINENO: result: yes" >&5
 
46440
-$as_echo "yes" >&6; }
 
46441
-       else
 
46442
-               { $as_echo "$as_me:$LINENO: result: no" >&5
 
46443
-$as_echo "no" >&6; }
 
46444
-       fi
 
46445
-
 
46446
-cat >>confdefs.h <<_ACEOF
 
46447
-#define ISO_CODES_PREFIX "`$PKG_CONFIG --variable=prefix iso-codes`"
 
46448
-_ACEOF
 
46449
+rm -f conftest.err conftest.$ac_ext
 
46450
+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
46451
+echo "${ECHO_T}$ac_header_preproc" >&6; }
 
46452
 
 
46453
-       ISO_CODES=iso-codes
 
46454
+# So?  What about this header?
 
46455
+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
 
46456
+  yes:no: )
 
46457
+    { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: accepted by the compiler, rejected by the preprocessor!" >&5
 
46458
+echo "$as_me: WARNING: lirc/lirc_client.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
 
46459
+    { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: proceeding with the compiler's result" >&5
 
46460
+echo "$as_me: WARNING: lirc/lirc_client.h: proceeding with the compiler's result" >&2;}
 
46461
+    ac_header_preproc=yes
 
46462
+    ;;
 
46463
+  no:yes:* )
 
46464
+    { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: present but cannot be compiled" >&5
 
46465
+echo "$as_me: WARNING: lirc/lirc_client.h: present but cannot be compiled" >&2;}
 
46466
+    { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h:     check for missing prerequisite headers?" >&5
 
46467
+echo "$as_me: WARNING: lirc/lirc_client.h:     check for missing prerequisite headers?" >&2;}
 
46468
+    { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: see the Autoconf documentation" >&5
 
46469
+echo "$as_me: WARNING: lirc/lirc_client.h: see the Autoconf documentation" >&2;}
 
46470
+    { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h:     section \"Present But Cannot Be Compiled\"" >&5
 
46471
+echo "$as_me: WARNING: lirc/lirc_client.h:     section \"Present But Cannot Be Compiled\"" >&2;}
 
46472
+    { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: proceeding with the preprocessor's result" >&5
 
46473
+echo "$as_me: WARNING: lirc/lirc_client.h: proceeding with the preprocessor's result" >&2;}
 
46474
+    { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: in the future, the compiler will take precedence" >&5
 
46475
+echo "$as_me: WARNING: lirc/lirc_client.h: in the future, the compiler will take precedence" >&2;}
 
46476
+    ( cat <<\_ASBOX
 
46477
+## -------------------------------------------------------------------- ##
 
46478
+## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=totem ##
 
46479
+## -------------------------------------------------------------------- ##
 
46480
+_ASBOX
 
46481
+     ) | sed "s/^/$as_me: WARNING:     /" >&2
 
46482
+    ;;
 
46483
+esac
 
46484
+{ echo "$as_me:$LINENO: checking for lirc/lirc_client.h" >&5
 
46485
+echo $ECHO_N "checking for lirc/lirc_client.h... $ECHO_C" >&6; }
 
46486
+if test "${ac_cv_header_lirc_lirc_client_h+set}" = set; then
 
46487
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
46488
 else
 
46489
+  ac_cv_header_lirc_lirc_client_h=$ac_header_preproc
 
46490
+fi
 
46491
+{ echo "$as_me:$LINENO: result: $ac_cv_header_lirc_lirc_client_h" >&5
 
46492
+echo "${ECHO_T}$ac_cv_header_lirc_lirc_client_h" >&6; }
 
46493
 
 
46494
-cat >>confdefs.h <<_ACEOF
 
46495
-#define ISO_CODES_PREFIX "$prefix"
 
46496
-_ACEOF
 
46497
+fi
 
46498
+if test $ac_cv_header_lirc_lirc_client_h = yes; then
 
46499
+  LIRC_LIBS="-llirc_client"
 
46500
+                                        HAVE_LIRC=yes
 
46501
+else
 
46502
 
 
46503
-       ISO_CODES=""
 
46504
+                                        LIRC_LIBS=""
 
46505
+                                        HAVE_LIRC=no
 
46506
 fi
 
46507
 
 
46508
-# Check whether --enable-gtk was given.
 
46509
-if test "${enable_gtk+set}" = set; then
 
46510
-  enableval=$enable_gtk; case "${enableval}" in
 
46511
-       yes) ENABLE_GTK=yes ;;
 
46512
-       no) ENABLE_GTK=no ;;
 
46513
-       *) { { $as_echo "$as_me:$LINENO: error: bad value ${enableval} for --disable-gtk" >&5
 
46514
-$as_echo "$as_me: error: bad value ${enableval} for --disable-gtk" >&2;}
 
46515
-   { (exit 1); exit 1; }; } ;;
 
46516
-       esac
 
46517
-else
 
46518
-  ENABLE_GTK=no
 
46519
+
 
46520
 fi
 
46521
 
 
46522
-if test x$ENABLE_GTK = "xno" ; then
 
46523
-# FIXME: use gmodule-no-export instead!
 
46524
+
 
46525
+                       if test "${HAVE_LIRC}" != "yes" ; then
 
46526
+                               plugin_error_or_ignore "you need lirc_client installed for the lirc plugin"
 
46527
+                               add_plugin="0"
 
46528
+                       fi
 
46529
+               ;;
 
46530
+               mythtv)
 
46531
 
 
46532
 pkg_failed=no
 
46533
-{ $as_echo "$as_me:$LINENO: checking for EXTRA_GNOME" >&5
 
46534
-$as_echo_n "checking for EXTRA_GNOME... " >&6; }
 
46535
+{ echo "$as_me:$LINENO: checking for GMYTH" >&5
 
46536
+echo $ECHO_N "checking for GMYTH... $ECHO_C" >&6; }
 
46537
 
 
46538
-if test -n "$EXTRA_GNOME_CFLAGS"; then
 
46539
-    pkg_cv_EXTRA_GNOME_CFLAGS="$EXTRA_GNOME_CFLAGS"
 
46540
- elif test -n "$PKG_CONFIG"; then
 
46541
-    if test -n "$PKG_CONFIG" && \
 
46542
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS gtk+-2.0 >= \$GTK_REQS libgnomeui-2.0 >= \$GNOMEUI_REQS gio-2.0 libgnome-2.0 >= \$LIBGNOME_REQS gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
 
46543
-  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
36265
46544
+if test -n "$PKG_CONFIG"; then
36266
46545
+    if test -n "$GMYTH_CFLAGS"; then
36267
 
     pkg_cv_GMYTH_CFLAGS="$GMYTH_CFLAGS"
36268
 
- elif test -n "$PKG_CONFIG"; then
 
46546
+        pkg_cv_GMYTH_CFLAGS="$GMYTH_CFLAGS"
36269
46547
+    else
36270
 
     if test -n "$PKG_CONFIG" && \
36271
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gmyth >= 0.7.1 gmyth-upnp >= 0.7.1\"") >&5
36272
 
   ($PKG_CONFIG --exists --print-errors "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1") 2>&5
36273
 
@@ -24776,12 +21985,14 @@
 
46548
+        if test -n "$PKG_CONFIG" && \
 
46549
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gmyth >= 0.7.1 gmyth-upnp >= 0.7.1\"") >&5
 
46550
+  ($PKG_CONFIG --exists --print-errors "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1") 2>&5
 
46551
   ac_status=$?
 
46552
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46553
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46554
   (exit $ac_status); }; then
 
46555
-  pkg_cv_EXTRA_GNOME_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
 
46556
+  pkg_cv_GMYTH_CFLAGS=`$PKG_CONFIG --cflags "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1" 2>/dev/null`
36274
46557
 else
36275
46558
   pkg_failed=yes
36276
46559
 fi
36277
46560
- else
 
46561
-    pkg_failed=untried
36278
46562
+    fi
36279
46563
+else
36280
 
     pkg_failed=untried
 
46564
+       pkg_failed=untried
36281
46565
 fi
36282
 
-if test -n "$GMYTH_LIBS"; then
 
46566
-if test -n "$EXTRA_GNOME_LIBS"; then
 
46567
-    pkg_cv_EXTRA_GNOME_LIBS="$EXTRA_GNOME_LIBS"
 
46568
- elif test -n "$PKG_CONFIG"; then
 
46569
-    if test -n "$PKG_CONFIG" && \
 
46570
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS gtk+-2.0 >= \$GTK_REQS libgnomeui-2.0 >= \$GNOMEUI_REQS gio-2.0 libgnome-2.0 >= \$LIBGNOME_REQS gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
 
46571
-  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
36283
46572
+if test -n "$PKG_CONFIG"; then
36284
46573
+    if test -n "$GMYTH_LIBS"; then
36285
 
     pkg_cv_GMYTH_LIBS="$GMYTH_LIBS"
36286
 
- elif test -n "$PKG_CONFIG"; then
 
46574
+        pkg_cv_GMYTH_LIBS="$GMYTH_LIBS"
36287
46575
+    else
36288
 
     if test -n "$PKG_CONFIG" && \
36289
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gmyth >= 0.7.1 gmyth-upnp >= 0.7.1\"") >&5
36290
 
   ($PKG_CONFIG --exists --print-errors "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1") 2>&5
36291
 
@@ -24792,7 +22003,8 @@
 
46576
+        if test -n "$PKG_CONFIG" && \
 
46577
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gmyth >= 0.7.1 gmyth-upnp >= 0.7.1\"") >&5
 
46578
+  ($PKG_CONFIG --exists --print-errors "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1") 2>&5
 
46579
   ac_status=$?
 
46580
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46581
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46582
   (exit $ac_status); }; then
 
46583
-  pkg_cv_EXTRA_GNOME_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
 
46584
+  pkg_cv_GMYTH_LIBS=`$PKG_CONFIG --libs "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1" 2>/dev/null`
36292
46585
 else
36293
46586
   pkg_failed=yes
36294
46587
 fi
36295
46588
- else
 
46589
-    pkg_failed=untried
36296
46590
+    fi
36297
46591
+else
36298
 
     pkg_failed=untried
 
46592
+       pkg_failed=untried
36299
46593
 fi
36300
46594
 
36301
 
@@ -24806,9 +22018,9 @@
 
46595
 
 
46596
@@ -23636,106 +22018,77 @@
36302
46597
         _pkg_short_errors_supported=no
36303
46598
 fi
36304
46599
         if test $_pkg_short_errors_supported = yes; then
36305
 
-               GMYTH_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1" 2>&1`
 
46600
-               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>&1`
36306
46601
+               GMYTH_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1"`
36307
46602
         else
36308
 
-               GMYTH_PKG_ERRORS=`$PKG_CONFIG --print-errors "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1" 2>&1`
 
46603
-               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>&1`
36309
46604
+               GMYTH_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1"`
36310
46605
         fi
36311
46606
        # Put the nasty error message in config.log where it belongs
36312
 
        echo "$GMYTH_PKG_ERRORS" >&5
36313
 
@@ -24830,15 +22042,114 @@
36314
 
                                add_plugin="0"
36315
 
                        fi
36316
 
                ;;
 
46607
-       echo "$EXTRA_GNOME_PKG_ERRORS" >&5
 
46608
-
 
46609
-       { { $as_echo "$as_me:$LINENO: error: Package requirements (glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
 
46610
-
 
46611
-$EXTRA_GNOME_PKG_ERRORS
 
46612
-
 
46613
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
46614
-installed software in a non-standard prefix.
 
46615
-
 
46616
-Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
46617
-and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
46618
-See the pkg-config man page for more details.
 
46619
-" >&5
 
46620
-$as_echo "$as_me: error: Package requirements (glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS libgnomeui-2.0 >= $GNOMEUI_REQS gio-2.0 libgnome-2.0 >= $LIBGNOME_REQS gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
 
46621
-
 
46622
-$EXTRA_GNOME_PKG_ERRORS
 
46623
-
 
46624
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
46625
-installed software in a non-standard prefix.
 
46626
+       echo "$GMYTH_PKG_ERRORS" >&5
 
46627
 
 
46628
-Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
46629
-and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
46630
-See the pkg-config man page for more details.
 
46631
-" >&2;}
 
46632
-   { (exit 1); exit 1; }; }
 
46633
+       { echo "$as_me:$LINENO: result: no" >&5
 
46634
+echo "${ECHO_T}no" >&6; }
 
46635
+                HAVE_GMYTH=no
 
46636
 elif test $pkg_failed = untried; then
 
46637
-       { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 
46638
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
46639
-{ { $as_echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old.  Make sure it
 
46640
-is in your PATH or set the PKG_CONFIG environment variable to the full
 
46641
-path to pkg-config.
 
46642
-
 
46643
-Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
46644
-and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
46645
-See the pkg-config man page for more details.
 
46646
-
 
46647
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
46648
-See \`config.log' for more details." >&5
 
46649
-$as_echo "$as_me: error: The pkg-config script could not be found or is too old.  Make sure it
 
46650
-is in your PATH or set the PKG_CONFIG environment variable to the full
 
46651
-path to pkg-config.
 
46652
-
 
46653
-Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
46654
-and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
46655
-See the pkg-config man page for more details.
 
46656
-
 
46657
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
46658
-See \`config.log' for more details." >&2;}
 
46659
-   { (exit 1); exit 1; }; }; }
 
46660
+       HAVE_GMYTH=no
 
46661
 else
 
46662
-       EXTRA_GNOME_CFLAGS=$pkg_cv_EXTRA_GNOME_CFLAGS
 
46663
-       EXTRA_GNOME_LIBS=$pkg_cv_EXTRA_GNOME_LIBS
 
46664
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
46665
-$as_echo "yes" >&6; }
 
46666
-       :
 
46667
+       GMYTH_CFLAGS=$pkg_cv_GMYTH_CFLAGS
 
46668
+       GMYTH_LIBS=$pkg_cv_GMYTH_LIBS
 
46669
+        { echo "$as_me:$LINENO: result: yes" >&5
 
46670
+echo "${ECHO_T}yes" >&6; }
 
46671
+       HAVE_GMYTH=yes
 
46672
 fi
 
46673
-       HAVE_GNOME=yes
 
46674
-else
 
46675
-# FIXME: use gmodule-no-export instead!
 
46676
+                       if test "${HAVE_GMYTH}" != "yes"; then
 
46677
+                               plugin_error_or_ignore "you need GMyth >= 0.7 installed for the MythTV plugin"
 
46678
+                               add_plugin="0"
 
46679
+                       fi
 
46680
+               ;;
36317
46681
+               bbc)
36318
46682
+                       if test x$HAVE_GSTREAMER = xno ; then
36319
46683
+                               plugin_error_or_ignore "The BBC plugin currently works only with the GStreamer backend"
36321
46685
+                       fi
36322
46686
+                       # pygobject >= 2.15.3 for gio support
36323
46687
+                       # pygtk >= 2.13.0 for gtk_tree_view_get_tooltip_context support
36324
 
+
36325
 
+pkg_failed=no
 
46688
 
 
46689
 pkg_failed=no
 
46690
-{ $as_echo "$as_me:$LINENO: checking for EXTRA_GNOME" >&5
 
46691
-$as_echo_n "checking for EXTRA_GNOME... " >&6; }
36326
46692
+{ echo "$as_me:$LINENO: checking for BBC" >&5
36327
46693
+echo $ECHO_N "checking for BBC... $ECHO_C" >&6; }
36328
 
+
 
46694
 
 
46695
-if test -n "$EXTRA_GNOME_CFLAGS"; then
 
46696
-    pkg_cv_EXTRA_GNOME_CFLAGS="$EXTRA_GNOME_CFLAGS"
 
46697
- elif test -n "$PKG_CONFIG"; then
 
46698
-    if test -n "$PKG_CONFIG" && \
 
46699
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS gtk+-2.0 >= \$GTK_REQS gio-2.0 gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
 
46700
-  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
36329
46701
+if test -n "$PKG_CONFIG"; then
36330
46702
+    if test -n "$BBC_CFLAGS"; then
36331
46703
+        pkg_cv_BBC_CFLAGS="$BBC_CFLAGS"
36333
46705
+        if test -n "$PKG_CONFIG" && \
36334
46706
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" pygobject-2.0 >= 2.15.3 gst-python-0.10 >= 0.10.11 pygtk-2.0 >= 2.13.0 \"") >&5
36335
46707
+  ($PKG_CONFIG --exists --print-errors " pygobject-2.0 >= 2.15.3 gst-python-0.10 >= 0.10.11 pygtk-2.0 >= 2.13.0 ") 2>&5
36336
 
+  ac_status=$?
 
46708
   ac_status=$?
 
46709
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
36337
46710
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
36338
 
+  (exit $ac_status); }; then
 
46711
   (exit $ac_status); }; then
 
46712
-  pkg_cv_EXTRA_GNOME_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
36339
46713
+  pkg_cv_BBC_CFLAGS=`$PKG_CONFIG --cflags " pygobject-2.0 >= 2.15.3 gst-python-0.10 >= 0.10.11 pygtk-2.0 >= 2.13.0 " 2>/dev/null`
36340
 
+else
36341
 
+  pkg_failed=yes
36342
 
+fi
 
46714
 else
 
46715
   pkg_failed=yes
 
46716
 fi
 
46717
- else
 
46718
-    pkg_failed=untried
36343
46719
+    fi
36344
46720
+else
36345
46721
+       pkg_failed=untried
36346
 
+fi
 
46722
 fi
 
46723
-if test -n "$EXTRA_GNOME_LIBS"; then
 
46724
-    pkg_cv_EXTRA_GNOME_LIBS="$EXTRA_GNOME_LIBS"
 
46725
- elif test -n "$PKG_CONFIG"; then
 
46726
-    if test -n "$PKG_CONFIG" && \
 
46727
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB_REQS gtk+-2.0 >= \$GTK_REQS gio-2.0 gnome-icon-theme >= \$GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= \$TOTEM_PLPARSER_REQS \$ISO_CODES\"") >&5
 
46728
-  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES") 2>&5
36347
46729
+if test -n "$PKG_CONFIG"; then
36348
46730
+    if test -n "$BBC_LIBS"; then
36349
46731
+        pkg_cv_BBC_LIBS="$BBC_LIBS"
36351
46733
+        if test -n "$PKG_CONFIG" && \
36352
46734
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" pygobject-2.0 >= 2.15.3 gst-python-0.10 >= 0.10.11 pygtk-2.0 >= 2.13.0 \"") >&5
36353
46735
+  ($PKG_CONFIG --exists --print-errors " pygobject-2.0 >= 2.15.3 gst-python-0.10 >= 0.10.11 pygtk-2.0 >= 2.13.0 ") 2>&5
36354
 
+  ac_status=$?
 
46736
   ac_status=$?
 
46737
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
36355
46738
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
36356
 
+  (exit $ac_status); }; then
 
46739
   (exit $ac_status); }; then
 
46740
-  pkg_cv_EXTRA_GNOME_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>/dev/null`
36357
46741
+  pkg_cv_BBC_LIBS=`$PKG_CONFIG --libs " pygobject-2.0 >= 2.15.3 gst-python-0.10 >= 0.10.11 pygtk-2.0 >= 2.13.0 " 2>/dev/null`
36358
 
+else
36359
 
+  pkg_failed=yes
36360
 
+fi
 
46742
 else
 
46743
   pkg_failed=yes
 
46744
 fi
 
46745
- else
 
46746
-    pkg_failed=untried
36361
46747
+    fi
36362
46748
+else
36363
46749
+       pkg_failed=untried
36364
 
+fi
36365
 
+
36366
 
+
36367
 
+
36368
 
+if test $pkg_failed = yes; then
36369
 
+
36370
 
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
36371
 
+        _pkg_short_errors_supported=yes
36372
 
+else
36373
 
+        _pkg_short_errors_supported=no
36374
 
+fi
36375
 
+        if test $_pkg_short_errors_supported = yes; then
 
46750
 fi
 
46751
 
 
46752
 
 
46753
@@ -23748,116 +22101,86 @@
 
46754
         _pkg_short_errors_supported=no
 
46755
 fi
 
46756
         if test $_pkg_short_errors_supported = yes; then
 
46757
-               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>&1`
36376
46758
+               BBC_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors " pygobject-2.0 >= 2.15.3 gst-python-0.10 >= 0.10.11 pygtk-2.0 >= 2.13.0 "`
36377
 
+        else
 
46759
         else
 
46760
-               EXTRA_GNOME_PKG_ERRORS=`$PKG_CONFIG --print-errors "glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES" 2>&1`
36378
46761
+               BBC_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors " pygobject-2.0 >= 2.15.3 gst-python-0.10 >= 0.10.11 pygtk-2.0 >= 2.13.0 "`
36379
 
+        fi
36380
 
+       # Put the nasty error message in config.log where it belongs
 
46762
         fi
 
46763
        # Put the nasty error message in config.log where it belongs
 
46764
-       echo "$EXTRA_GNOME_PKG_ERRORS" >&5
 
46765
-
 
46766
-       { { $as_echo "$as_me:$LINENO: error: Package requirements (glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
36381
46767
+       echo "$BBC_PKG_ERRORS" >&5
36382
 
+
 
46768
 
 
46769
-$EXTRA_GNOME_PKG_ERRORS
 
46770
-
 
46771
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
46772
-installed software in a non-standard prefix.
 
46773
-
 
46774
-Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
46775
-and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
46776
-See the pkg-config man page for more details.
 
46777
-" >&5
 
46778
-$as_echo "$as_me: error: Package requirements (glib-2.0 >= $GLIB_REQS gtk+-2.0 >= $GTK_REQS gio-2.0 gnome-icon-theme >= $GNOMEICON_REQS gmodule-2.0 gconf-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS $ISO_CODES) were not met:
 
46779
-
 
46780
-$EXTRA_GNOME_PKG_ERRORS
 
46781
-
 
46782
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
46783
-installed software in a non-standard prefix.
 
46784
-
 
46785
-Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
46786
-and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
46787
-See the pkg-config man page for more details.
 
46788
-" >&2;}
 
46789
-   { (exit 1); exit 1; }; }
36383
46790
+       { echo "$as_me:$LINENO: result: no" >&5
36384
46791
+echo "${ECHO_T}no" >&6; }
36385
46792
+                 HAVE_BBCSTUFF=no
36386
 
+elif test $pkg_failed = untried; then
 
46793
 elif test $pkg_failed = untried; then
 
46794
-       { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 
46795
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
46796
-{ { $as_echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old.  Make sure it
 
46797
-is in your PATH or set the PKG_CONFIG environment variable to the full
 
46798
-path to pkg-config.
 
46799
-
 
46800
-Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
46801
-and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
46802
-See the pkg-config man page for more details.
 
46803
-
 
46804
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
46805
-See \`config.log' for more details." >&5
 
46806
-$as_echo "$as_me: error: The pkg-config script could not be found or is too old.  Make sure it
 
46807
-is in your PATH or set the PKG_CONFIG environment variable to the full
 
46808
-path to pkg-config.
 
46809
-
 
46810
-Alternatively, you may set the environment variables EXTRA_GNOME_CFLAGS
 
46811
-and EXTRA_GNOME_LIBS to avoid the need to call pkg-config.
 
46812
-See the pkg-config man page for more details.
 
46813
-
 
46814
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
46815
-See \`config.log' for more details." >&2;}
 
46816
-   { (exit 1); exit 1; }; }; }
36387
46817
+        HAVE_BBCSTUFF=no
36388
 
+else
 
46818
 else
 
46819
-       EXTRA_GNOME_CFLAGS=$pkg_cv_EXTRA_GNOME_CFLAGS
 
46820
-       EXTRA_GNOME_LIBS=$pkg_cv_EXTRA_GNOME_LIBS
 
46821
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
46822
-$as_echo "yes" >&6; }
 
46823
-       :
 
46824
-fi
 
46825
-
 
46826
-cat >>confdefs.h <<\_ACEOF
 
46827
-#define USE_STABLE_LIBGNOMEUI 1
 
46828
-_ACEOF
 
46829
-
 
46830
-
 
46831
-cat >>confdefs.h <<\_ACEOF
 
46832
-#define HAVE_GTK_ONLY 1
 
46833
-_ACEOF
 
46834
-
 
46835
-       HAVE_GNOME=no
36389
46836
+       BBC_CFLAGS=$pkg_cv_BBC_CFLAGS
36390
46837
+       BBC_LIBS=$pkg_cv_BBC_LIBS
36391
46838
+        { echo "$as_me:$LINENO: result: yes" >&5
36392
46839
+echo "${ECHO_T}yes" >&6; }
36393
46840
+        HAVE_BBCSTUFF=yes
36394
 
+fi
 
46841
 fi
 
46842
-
36395
46843
+                       if test "x$HAVE_BBCSTUFF" != "xyes"; then
36396
46844
+                               plugin_error_or_ignore "you need pygobject-2.0 >= 2.15.3 and gst-python-0.10 >= 0.10.11 and pygtk-2.0 >= 2.13.0 installed for the BBC plugin"
36397
46845
+                               add_plugin="0"
36412
46860
+                               fi
36413
46861
+                       done
36414
46862
+               ;;
36415
 
                bemused)
 
46863
+               bemused)
36416
46864
 
36417
46865
 pkg_failed=no
36418
 
 { echo "$as_me:$LINENO: checking for BEMUSED" >&5
36419
 
 echo $ECHO_N "checking for BEMUSED... $ECHO_C" >&6; }
 
46866
-{ $as_echo "$as_me:$LINENO: checking for MM" >&5
 
46867
-$as_echo_n "checking for MM... " >&6; }
 
46868
+{ echo "$as_me:$LINENO: checking for BEMUSED" >&5
 
46869
+echo $ECHO_N "checking for BEMUSED... $ECHO_C" >&6; }
36420
46870
 
36421
 
-if test -n "$BEMUSED_CFLAGS"; then
 
46871
-if test -n "$MM_CFLAGS"; then
 
46872
-    pkg_cv_MM_CFLAGS="$MM_CFLAGS"
 
46873
- elif test -n "$PKG_CONFIG"; then
 
46874
-    if test -n "$PKG_CONFIG" && \
 
46875
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
 
46876
-  ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
36422
46877
+if test -n "$PKG_CONFIG"; then
36423
46878
+    if test -n "$BEMUSED_CFLAGS"; then
36424
 
     pkg_cv_BEMUSED_CFLAGS="$BEMUSED_CFLAGS"
36425
 
- elif test -n "$PKG_CONFIG"; then
 
46879
+        pkg_cv_BEMUSED_CFLAGS="$BEMUSED_CFLAGS"
36426
46880
+    else
36427
 
     if test -n "$PKG_CONFIG" && \
36428
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"bluez\"") >&5
36429
 
   ($PKG_CONFIG --exists --print-errors "bluez") 2>&5
36430
 
@@ -24849,12 +22160,14 @@
 
46881
+        if test -n "$PKG_CONFIG" && \
 
46882
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"bluez\"") >&5
 
46883
+  ($PKG_CONFIG --exists --print-errors "bluez") 2>&5
 
46884
   ac_status=$?
 
46885
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46886
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46887
   (exit $ac_status); }; then
 
46888
-  pkg_cv_MM_CFLAGS=`$PKG_CONFIG --cflags "$MM" 2>/dev/null`
 
46889
+  pkg_cv_BEMUSED_CFLAGS=`$PKG_CONFIG --cflags "bluez" 2>/dev/null`
36431
46890
 else
36432
46891
   pkg_failed=yes
36433
46892
 fi
36434
46893
- else
 
46894
-    pkg_failed=untried
36435
46895
+    fi
36436
46896
+else
36437
 
     pkg_failed=untried
 
46897
+       pkg_failed=untried
36438
46898
 fi
36439
 
-if test -n "$BEMUSED_LIBS"; then
 
46899
-if test -n "$MM_LIBS"; then
 
46900
-    pkg_cv_MM_LIBS="$MM_LIBS"
 
46901
- elif test -n "$PKG_CONFIG"; then
 
46902
-    if test -n "$PKG_CONFIG" && \
 
46903
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\$MM\"") >&5
 
46904
-  ($PKG_CONFIG --exists --print-errors "$MM") 2>&5
36440
46905
+if test -n "$PKG_CONFIG"; then
36441
46906
+    if test -n "$BEMUSED_LIBS"; then
36442
 
     pkg_cv_BEMUSED_LIBS="$BEMUSED_LIBS"
36443
 
- elif test -n "$PKG_CONFIG"; then
 
46907
+        pkg_cv_BEMUSED_LIBS="$BEMUSED_LIBS"
36444
46908
+    else
36445
 
     if test -n "$PKG_CONFIG" && \
36446
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"bluez\"") >&5
36447
 
   ($PKG_CONFIG --exists --print-errors "bluez") 2>&5
36448
 
@@ -24865,7 +22178,8 @@
 
46909
+        if test -n "$PKG_CONFIG" && \
 
46910
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"bluez\"") >&5
 
46911
+  ($PKG_CONFIG --exists --print-errors "bluez") 2>&5
 
46912
   ac_status=$?
 
46913
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46914
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
46915
   (exit $ac_status); }; then
 
46916
-  pkg_cv_MM_LIBS=`$PKG_CONFIG --libs "$MM" 2>/dev/null`
 
46917
+  pkg_cv_BEMUSED_LIBS=`$PKG_CONFIG --libs "bluez" 2>/dev/null`
36449
46918
 else
36450
46919
   pkg_failed=yes
36451
46920
 fi
36452
46921
- else
 
46922
-    pkg_failed=untried
36453
46923
+    fi
36454
46924
+else
36455
 
     pkg_failed=untried
 
46925
+       pkg_failed=untried
36456
46926
 fi
36457
46927
 
36458
 
@@ -24879,9 +22193,9 @@
 
46928
 
 
46929
@@ -23870,117 +22193,148 @@
36459
46930
         _pkg_short_errors_supported=no
36460
46931
 fi
36461
46932
         if test $_pkg_short_errors_supported = yes; then
36462
 
-               BEMUSED_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "bluez" 2>&1`
 
46933
-               MM_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$MM" 2>&1`
36463
46934
+               BEMUSED_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "bluez"`
36464
46935
         else
36465
 
-               BEMUSED_PKG_ERRORS=`$PKG_CONFIG --print-errors "bluez" 2>&1`
 
46936
-               MM_PKG_ERRORS=`$PKG_CONFIG --print-errors "$MM" 2>&1`
36466
46937
+               BEMUSED_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "bluez"`
36467
46938
         fi
36468
46939
        # Put the nasty error message in config.log where it belongs
36469
 
        echo "$BEMUSED_PKG_ERRORS" >&5
36470
 
@@ -24909,9 +22223,10 @@
36471
 
 { echo "$as_me:$LINENO: checking for LIBEPC" >&5
36472
 
 echo $ECHO_N "checking for LIBEPC... $ECHO_C" >&6; }
36473
 
 
36474
 
-if test -n "$LIBEPC_CFLAGS"; then
 
46940
-       echo "$MM_PKG_ERRORS" >&5
 
46941
-
 
46942
-       { { $as_echo "$as_me:$LINENO: error: Package requirements ($MM) were not met:
 
46943
-
 
46944
-$MM_PKG_ERRORS
 
46945
-
 
46946
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
46947
-installed software in a non-standard prefix.
 
46948
-
 
46949
-Alternatively, you may set the environment variables MM_CFLAGS
 
46950
-and MM_LIBS to avoid the need to call pkg-config.
 
46951
-See the pkg-config man page for more details.
 
46952
-" >&5
 
46953
-$as_echo "$as_me: error: Package requirements ($MM) were not met:
 
46954
-
 
46955
-$MM_PKG_ERRORS
 
46956
-
 
46957
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
46958
-installed software in a non-standard prefix.
 
46959
+       echo "$BEMUSED_PKG_ERRORS" >&5
 
46960
 
 
46961
-Alternatively, you may set the environment variables MM_CFLAGS
 
46962
-and MM_LIBS to avoid the need to call pkg-config.
 
46963
-See the pkg-config man page for more details.
 
46964
-" >&2;}
 
46965
-   { (exit 1); exit 1; }; }
 
46966
+       { echo "$as_me:$LINENO: result: no" >&5
 
46967
+echo "${ECHO_T}no" >&6; }
 
46968
+                HAVE_BLUEZ=no
 
46969
 elif test $pkg_failed = untried; then
 
46970
-       { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 
46971
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
46972
-{ { $as_echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old.  Make sure it
 
46973
-is in your PATH or set the PKG_CONFIG environment variable to the full
 
46974
-path to pkg-config.
 
46975
-
 
46976
-Alternatively, you may set the environment variables MM_CFLAGS
 
46977
-and MM_LIBS to avoid the need to call pkg-config.
 
46978
-See the pkg-config man page for more details.
 
46979
-
 
46980
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
46981
-See \`config.log' for more details." >&5
 
46982
-$as_echo "$as_me: error: The pkg-config script could not be found or is too old.  Make sure it
 
46983
-is in your PATH or set the PKG_CONFIG environment variable to the full
 
46984
-path to pkg-config.
 
46985
+       HAVE_BLUEZ=no
 
46986
+else
 
46987
+       BEMUSED_CFLAGS=$pkg_cv_BEMUSED_CFLAGS
 
46988
+       BEMUSED_LIBS=$pkg_cv_BEMUSED_LIBS
 
46989
+        { echo "$as_me:$LINENO: result: yes" >&5
 
46990
+echo "${ECHO_T}yes" >&6; }
 
46991
+       HAVE_BLUEZ=yes
 
46992
+fi
 
46993
+                       if test "${HAVE_BLUEZ}" != "yes" ; then
 
46994
+                               plugin_error_or_ignore "you need the bluez libraries installed for the Bemused plugin"
 
46995
+                               add_plugin="0"
 
46996
+                       fi
 
46997
+               ;;
 
46998
+               publish)
 
46999
 
 
47000
-Alternatively, you may set the environment variables MM_CFLAGS
 
47001
-and MM_LIBS to avoid the need to call pkg-config.
 
47002
-See the pkg-config man page for more details.
 
47003
+pkg_failed=no
 
47004
+{ echo "$as_me:$LINENO: checking for LIBEPC" >&5
 
47005
+echo $ECHO_N "checking for LIBEPC... $ECHO_C" >&6; }
 
47006
 
 
47007
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
47008
-See \`config.log' for more details." >&2;}
 
47009
-   { (exit 1); exit 1; }; }; }
36475
47010
+if test -n "$PKG_CONFIG"; then
36476
47011
+    if test -n "$LIBEPC_CFLAGS"; then
36477
 
     pkg_cv_LIBEPC_CFLAGS="$LIBEPC_CFLAGS"
36478
 
- elif test -n "$PKG_CONFIG"; then
 
47012
+        pkg_cv_LIBEPC_CFLAGS="$LIBEPC_CFLAGS"
36479
47013
+    else
36480
 
     if test -n "$PKG_CONFIG" && \
36481
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libepc-ui-1.0 >= 0.3.0\"") >&5
36482
 
   ($PKG_CONFIG --exists --print-errors "libepc-ui-1.0 >= 0.3.0") 2>&5
36483
 
@@ -24922,12 +22237,14 @@
 
47014
+        if test -n "$PKG_CONFIG" && \
 
47015
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libepc-ui-1.0 >= 0.3.0\"") >&5
 
47016
+  ($PKG_CONFIG --exists --print-errors "libepc-ui-1.0 >= 0.3.0") 2>&5
 
47017
+  ac_status=$?
 
47018
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47019
+  (exit $ac_status); }; then
 
47020
+  pkg_cv_LIBEPC_CFLAGS=`$PKG_CONFIG --cflags "libepc-ui-1.0 >= 0.3.0" 2>/dev/null`
36484
47021
 else
36485
 
   pkg_failed=yes
 
47022
-       MM_CFLAGS=$pkg_cv_MM_CFLAGS
 
47023
-       MM_LIBS=$pkg_cv_MM_LIBS
 
47024
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
47025
-$as_echo "yes" >&6; }
 
47026
-       :
 
47027
+  pkg_failed=yes
36486
47028
 fi
36487
 
- else
 
47029
-
 
47030
- if test x$HAVE_GNOME = "xyes"; then
 
47031
-  HAVE_GNOME_TRUE=
 
47032
-  HAVE_GNOME_FALSE='#'
36488
47033
+    fi
36489
 
+else
36490
 
     pkg_failed=untried
36491
 
 fi
36492
 
-if test -n "$LIBEPC_LIBS"; then
 
47034
 else
 
47035
-  HAVE_GNOME_TRUE='#'
 
47036
-  HAVE_GNOME_FALSE=
 
47037
+       pkg_failed=untried
 
47038
+fi
36493
47039
+if test -n "$PKG_CONFIG"; then
36494
47040
+    if test -n "$LIBEPC_LIBS"; then
36495
 
     pkg_cv_LIBEPC_LIBS="$LIBEPC_LIBS"
36496
 
- elif test -n "$PKG_CONFIG"; then
 
47041
+        pkg_cv_LIBEPC_LIBS="$LIBEPC_LIBS"
36497
47042
+    else
36498
 
     if test -n "$PKG_CONFIG" && \
36499
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libepc-ui-1.0 >= 0.3.0\"") >&5
36500
 
   ($PKG_CONFIG --exists --print-errors "libepc-ui-1.0 >= 0.3.0") 2>&5
36501
 
@@ -24938,7 +22255,8 @@
36502
 
 else
36503
 
   pkg_failed=yes
36504
 
 fi
36505
 
- else
 
47043
+        if test -n "$PKG_CONFIG" && \
 
47044
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libepc-ui-1.0 >= 0.3.0\"") >&5
 
47045
+  ($PKG_CONFIG --exists --print-errors "libepc-ui-1.0 >= 0.3.0") 2>&5
 
47046
+  ac_status=$?
 
47047
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47048
+  (exit $ac_status); }; then
 
47049
+  pkg_cv_LIBEPC_LIBS=`$PKG_CONFIG --libs "libepc-ui-1.0 >= 0.3.0" 2>/dev/null`
 
47050
+else
 
47051
+  pkg_failed=yes
 
47052
+fi
36506
47053
+    fi
36507
47054
+else
36508
 
     pkg_failed=untried
36509
 
 fi
36510
 
 
36511
 
@@ -24952,9 +22270,9 @@
36512
 
         _pkg_short_errors_supported=no
36513
 
 fi
36514
 
         if test $_pkg_short_errors_supported = yes; then
36515
 
-               LIBEPC_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "libepc-ui-1.0 >= 0.3.0" 2>&1`
 
47055
+       pkg_failed=untried
 
47056
 fi
 
47057
 
 
47058
-EXTRA_GNOME_CFLAGS="$EXTRA_GNOME_CFLAGS"
 
47059
-EXTRA_GNOME_LIBS="$EXTRA_GNOME_LIBS $EXTRA_BACKEND_LIBS"
 
47060
 
 
47061
 
 
47062
+if test $pkg_failed = yes; then
 
47063
+
 
47064
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
47065
+        _pkg_short_errors_supported=yes
 
47066
+else
 
47067
+        _pkg_short_errors_supported=no
 
47068
+fi
 
47069
+        if test $_pkg_short_errors_supported = yes; then
36516
47070
+               LIBEPC_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libepc-ui-1.0 >= 0.3.0"`
36517
 
         else
36518
 
-               LIBEPC_PKG_ERRORS=`$PKG_CONFIG --print-errors "libepc-ui-1.0 >= 0.3.0" 2>&1`
 
47071
+        else
36519
47072
+               LIBEPC_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libepc-ui-1.0 >= 0.3.0"`
36520
 
         fi
36521
 
        # Put the nasty error message in config.log where it belongs
36522
 
        echo "$LIBEPC_PKG_ERRORS" >&5
36523
 
@@ -24982,9 +22300,10 @@
36524
 
 { echo "$as_me:$LINENO: checking for TRACKER" >&5
36525
 
 echo $ECHO_N "checking for TRACKER... $ECHO_C" >&6; }
36526
 
 
36527
 
-if test -n "$TRACKER_CFLAGS"; then
 
47073
+        fi
 
47074
+       # Put the nasty error message in config.log where it belongs
 
47075
+       echo "$LIBEPC_PKG_ERRORS" >&5
 
47076
 
 
47077
+       { echo "$as_me:$LINENO: result: no" >&5
 
47078
+echo "${ECHO_T}no" >&6; }
 
47079
+                HAVE_LIBEPC=no
 
47080
+elif test $pkg_failed = untried; then
 
47081
+       HAVE_LIBEPC=no
 
47082
+else
 
47083
+       LIBEPC_CFLAGS=$pkg_cv_LIBEPC_CFLAGS
 
47084
+       LIBEPC_LIBS=$pkg_cv_LIBEPC_LIBS
 
47085
+        { echo "$as_me:$LINENO: result: yes" >&5
 
47086
+echo "${ECHO_T}yes" >&6; }
 
47087
+       HAVE_LIBEPC=yes
 
47088
+fi
 
47089
+                       if test "${HAVE_LIBEPC}" != "yes" ; then
 
47090
+                               plugin_error_or_ignore "you need the easy-publish-and-consume library installed for the publish plugin"
 
47091
+                               add_plugin="0"
 
47092
+                       fi
 
47093
+               ;;
 
47094
+               tracker)
 
47095
 
 
47096
 pkg_failed=no
 
47097
-{ $as_echo "$as_me:$LINENO: checking for GTK" >&5
 
47098
-$as_echo_n "checking for GTK... " >&6; }
 
47099
+{ echo "$as_me:$LINENO: checking for TRACKER" >&5
 
47100
+echo $ECHO_N "checking for TRACKER... $ECHO_C" >&6; }
 
47101
 
 
47102
-if test -n "$GTK_CFLAGS"; then
 
47103
-    pkg_cv_GTK_CFLAGS="$GTK_CFLAGS"
 
47104
- elif test -n "$PKG_CONFIG"; then
 
47105
-    if test -n "$PKG_CONFIG" && \
 
47106
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 gthread-2.0\"") >&5
 
47107
-  ($PKG_CONFIG --exists --print-errors "gtk+-2.0 gthread-2.0") 2>&5
36528
47108
+if test -n "$PKG_CONFIG"; then
36529
47109
+    if test -n "$TRACKER_CFLAGS"; then
36530
 
     pkg_cv_TRACKER_CFLAGS="$TRACKER_CFLAGS"
36531
 
- elif test -n "$PKG_CONFIG"; then
 
47110
+        pkg_cv_TRACKER_CFLAGS="$TRACKER_CFLAGS"
36532
47111
+    else
36533
 
     if test -n "$PKG_CONFIG" && \
36534
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"tracker\"") >&5
36535
 
   ($PKG_CONFIG --exists --print-errors "tracker") 2>&5
36536
 
@@ -24995,12 +22314,14 @@
 
47112
+        if test -n "$PKG_CONFIG" && \
 
47113
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"tracker\"") >&5
 
47114
+  ($PKG_CONFIG --exists --print-errors "tracker") 2>&5
 
47115
   ac_status=$?
 
47116
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47117
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47118
   (exit $ac_status); }; then
 
47119
-  pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 gthread-2.0" 2>/dev/null`
 
47120
+  pkg_cv_TRACKER_CFLAGS=`$PKG_CONFIG --cflags "tracker" 2>/dev/null`
36537
47121
 else
36538
47122
   pkg_failed=yes
36539
47123
 fi
36540
47124
- else
 
47125
-    pkg_failed=untried
36541
47126
+    fi
36542
47127
+else
36543
 
     pkg_failed=untried
 
47128
+       pkg_failed=untried
36544
47129
 fi
36545
 
-if test -n "$TRACKER_LIBS"; then
 
47130
-if test -n "$GTK_LIBS"; then
 
47131
-    pkg_cv_GTK_LIBS="$GTK_LIBS"
 
47132
- elif test -n "$PKG_CONFIG"; then
 
47133
-    if test -n "$PKG_CONFIG" && \
 
47134
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 gthread-2.0\"") >&5
 
47135
-  ($PKG_CONFIG --exists --print-errors "gtk+-2.0 gthread-2.0") 2>&5
36546
47136
+if test -n "$PKG_CONFIG"; then
36547
47137
+    if test -n "$TRACKER_LIBS"; then
36548
 
     pkg_cv_TRACKER_LIBS="$TRACKER_LIBS"
36549
 
- elif test -n "$PKG_CONFIG"; then
 
47138
+        pkg_cv_TRACKER_LIBS="$TRACKER_LIBS"
36550
47139
+    else
36551
 
     if test -n "$PKG_CONFIG" && \
36552
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"tracker\"") >&5
36553
 
   ($PKG_CONFIG --exists --print-errors "tracker") 2>&5
36554
 
@@ -25011,7 +22332,8 @@
 
47140
+        if test -n "$PKG_CONFIG" && \
 
47141
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"tracker\"") >&5
 
47142
+  ($PKG_CONFIG --exists --print-errors "tracker") 2>&5
 
47143
   ac_status=$?
 
47144
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47145
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47146
   (exit $ac_status); }; then
 
47147
-  pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 gthread-2.0" 2>/dev/null`
 
47148
+  pkg_cv_TRACKER_LIBS=`$PKG_CONFIG --libs "tracker" 2>/dev/null`
36555
47149
 else
36556
47150
   pkg_failed=yes
36557
47151
 fi
36558
47152
- else
 
47153
-    pkg_failed=untried
36559
47154
+    fi
36560
47155
+else
36561
 
     pkg_failed=untried
 
47156
+       pkg_failed=untried
36562
47157
 fi
36563
47158
 
36564
 
@@ -25025,9 +22347,9 @@
 
47159
 
 
47160
@@ -23993,444 +22347,211 @@
36565
47161
         _pkg_short_errors_supported=no
36566
47162
 fi
36567
47163
         if test $_pkg_short_errors_supported = yes; then
36568
 
-               TRACKER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "tracker" 2>&1`
 
47164
-               GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gtk+-2.0 gthread-2.0" 2>&1`
36569
47165
+               TRACKER_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "tracker"`
36570
47166
         else
36571
 
-               TRACKER_PKG_ERRORS=`$PKG_CONFIG --print-errors "tracker" 2>&1`
 
47167
-               GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors "gtk+-2.0 gthread-2.0" 2>&1`
36572
47168
+               TRACKER_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "tracker"`
36573
47169
         fi
36574
47170
        # Put the nasty error message in config.log where it belongs
36575
 
        echo "$TRACKER_PKG_ERRORS" >&5
36576
 
@@ -25061,9 +22383,10 @@
36577
 
 { echo "$as_me:$LINENO: checking for GLIB" >&5
36578
 
 echo $ECHO_N "checking for GLIB... $ECHO_C" >&6; }
36579
 
 
36580
 
-if test -n "$GLIB_CFLAGS"; then
 
47171
-       echo "$GTK_PKG_ERRORS" >&5
 
47172
-
 
47173
-       { { $as_echo "$as_me:$LINENO: error: Package requirements (gtk+-2.0 gthread-2.0) were not met:
 
47174
-
 
47175
-$GTK_PKG_ERRORS
 
47176
-
 
47177
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
47178
-installed software in a non-standard prefix.
 
47179
-
 
47180
-Alternatively, you may set the environment variables GTK_CFLAGS
 
47181
-and GTK_LIBS to avoid the need to call pkg-config.
 
47182
-See the pkg-config man page for more details.
 
47183
-" >&5
 
47184
-$as_echo "$as_me: error: Package requirements (gtk+-2.0 gthread-2.0) were not met:
 
47185
-
 
47186
-$GTK_PKG_ERRORS
 
47187
-
 
47188
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
47189
-installed software in a non-standard prefix.
 
47190
+       echo "$TRACKER_PKG_ERRORS" >&5
 
47191
 
 
47192
-Alternatively, you may set the environment variables GTK_CFLAGS
 
47193
-and GTK_LIBS to avoid the need to call pkg-config.
 
47194
-See the pkg-config man page for more details.
 
47195
-" >&2;}
 
47196
-   { (exit 1); exit 1; }; }
 
47197
+       { echo "$as_me:$LINENO: result: no" >&5
 
47198
+echo "${ECHO_T}no" >&6; }
 
47199
+                HAVE_TRACKER=no
 
47200
 elif test $pkg_failed = untried; then
 
47201
-       { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
 
47202
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
47203
-{ { $as_echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old.  Make sure it
 
47204
-is in your PATH or set the PKG_CONFIG environment variable to the full
 
47205
-path to pkg-config.
 
47206
-
 
47207
-Alternatively, you may set the environment variables GTK_CFLAGS
 
47208
-and GTK_LIBS to avoid the need to call pkg-config.
 
47209
-See the pkg-config man page for more details.
 
47210
-
 
47211
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
47212
-See \`config.log' for more details." >&5
 
47213
-$as_echo "$as_me: error: The pkg-config script could not be found or is too old.  Make sure it
 
47214
-is in your PATH or set the PKG_CONFIG environment variable to the full
 
47215
-path to pkg-config.
 
47216
-
 
47217
-Alternatively, you may set the environment variables GTK_CFLAGS
 
47218
-and GTK_LIBS to avoid the need to call pkg-config.
 
47219
-See the pkg-config man page for more details.
 
47220
-
 
47221
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
47222
-See \`config.log' for more details." >&2;}
 
47223
-   { (exit 1); exit 1; }; }; }
 
47224
-else
 
47225
-       GTK_CFLAGS=$pkg_cv_GTK_CFLAGS
 
47226
-       GTK_LIBS=$pkg_cv_GTK_LIBS
 
47227
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
47228
-$as_echo "yes" >&6; }
 
47229
-       :
 
47230
-fi
 
47231
-
 
47232
-GTK_LIBS="$GTK_LIBS $EXTRA_BACKEND_LIBS"
 
47233
-
 
47234
-
 
47235
-have_x11=no
 
47236
-if test x$(pkg-config --variable=target gtk+-2.0) = xx11; then
 
47237
-       { $as_echo "$as_me:$LINENO: checking for X" >&5
 
47238
-$as_echo_n "checking for X... " >&6; }
 
47239
-
 
47240
-
 
47241
-# Check whether --with-x was given.
 
47242
-if test "${with_x+set}" = set; then
 
47243
-  withval=$with_x;
 
47244
-fi
 
47245
-
 
47246
-# $have_x is `yes', `no', `disabled', or empty when we do not yet know.
 
47247
-if test "x$with_x" = xno; then
 
47248
-  # The user explicitly disabled X.
 
47249
-  have_x=disabled
 
47250
-else
 
47251
-  case $x_includes,$x_libraries in #(
 
47252
-    *\'*) { { $as_echo "$as_me:$LINENO: error: cannot use X directory names containing '" >&5
 
47253
-$as_echo "$as_me: error: cannot use X directory names containing '" >&2;}
 
47254
-   { (exit 1); exit 1; }; };; #(
 
47255
-    *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then
 
47256
-  $as_echo_n "(cached) " >&6
 
47257
-else
 
47258
-  # One or both of the vars are not set, and there is no cached value.
 
47259
-ac_x_includes=no ac_x_libraries=no
 
47260
-rm -f -r conftest.dir
 
47261
-if mkdir conftest.dir; then
 
47262
-  cd conftest.dir
 
47263
-  cat >Imakefile <<'_ACEOF'
 
47264
-incroot:
 
47265
-       @echo incroot='${INCROOT}'
 
47266
-usrlibdir:
 
47267
-       @echo usrlibdir='${USRLIBDIR}'
 
47268
-libdir:
 
47269
-       @echo libdir='${LIBDIR}'
 
47270
-_ACEOF
 
47271
-  if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then
 
47272
-    # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
 
47273
-    for ac_var in incroot usrlibdir libdir; do
 
47274
-      eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`"
 
47275
-    done
 
47276
-    # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR.
 
47277
-    for ac_extension in a so sl dylib la dll; do
 
47278
-      if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" &&
 
47279
-        test -f "$ac_im_libdir/libX11.$ac_extension"; then
 
47280
-       ac_im_usrlibdir=$ac_im_libdir; break
 
47281
-      fi
 
47282
-    done
 
47283
-    # Screen out bogus values from the imake configuration.  They are
 
47284
-    # bogus both because they are the default anyway, and because
 
47285
-    # using them would break gcc on systems where it needs fixed includes.
 
47286
-    case $ac_im_incroot in
 
47287
-       /usr/include) ac_x_includes= ;;
 
47288
-       *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;;
 
47289
-    esac
 
47290
-    case $ac_im_usrlibdir in
 
47291
-       /usr/lib | /usr/lib64 | /lib | /lib64) ;;
 
47292
-       *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;;
 
47293
-    esac
 
47294
-  fi
 
47295
-  cd ..
 
47296
-  rm -f -r conftest.dir
 
47297
-fi
 
47298
-
 
47299
-# Standard set of common directories for X headers.
 
47300
-# Check X11 before X11Rn because it is often a symlink to the current release.
 
47301
-ac_x_header_dirs='
 
47302
-/usr/X11/include
 
47303
-/usr/X11R6/include
 
47304
-/usr/X11R5/include
 
47305
-/usr/X11R4/include
 
47306
-
 
47307
-/usr/include/X11
 
47308
-/usr/include/X11R6
 
47309
-/usr/include/X11R5
 
47310
-/usr/include/X11R4
 
47311
-
 
47312
-/usr/local/X11/include
 
47313
-/usr/local/X11R6/include
 
47314
-/usr/local/X11R5/include
 
47315
-/usr/local/X11R4/include
 
47316
-
 
47317
-/usr/local/include/X11
 
47318
-/usr/local/include/X11R6
 
47319
-/usr/local/include/X11R5
 
47320
-/usr/local/include/X11R4
 
47321
-
 
47322
-/usr/X386/include
 
47323
-/usr/x386/include
 
47324
-/usr/XFree86/include/X11
 
47325
-
 
47326
-/usr/include
 
47327
-/usr/local/include
 
47328
-/usr/unsupported/include
 
47329
-/usr/athena/include
 
47330
-/usr/local/x11r5/include
 
47331
-/usr/lpp/Xamples/include
 
47332
-
 
47333
-/usr/openwin/include
 
47334
-/usr/openwin/share/include'
 
47335
-
 
47336
-if test "$ac_x_includes" = no; then
 
47337
-  # Guess where to find include files, by looking for Xlib.h.
 
47338
-  # First, try using that file with no special directory specified.
 
47339
-  cat >conftest.$ac_ext <<_ACEOF
 
47340
-/* confdefs.h.  */
 
47341
-_ACEOF
 
47342
-cat confdefs.h >>conftest.$ac_ext
 
47343
-cat >>conftest.$ac_ext <<_ACEOF
 
47344
-/* end confdefs.h.  */
 
47345
-#include <X11/Xlib.h>
 
47346
-_ACEOF
 
47347
-if { (ac_try="$ac_cpp conftest.$ac_ext"
 
47348
-case "(($ac_try" in
 
47349
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
47350
-  *) ac_try_echo=$ac_try;;
 
47351
-esac
 
47352
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
47353
-$as_echo "$ac_try_echo") >&5
 
47354
-  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
47355
-  ac_status=$?
 
47356
-  grep -v '^ *+' conftest.er1 >conftest.err
 
47357
-  rm -f conftest.er1
 
47358
-  cat conftest.err >&5
 
47359
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47360
-  (exit $ac_status); } >/dev/null && {
 
47361
-        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
47362
-        test ! -s conftest.err
 
47363
-       }; then
 
47364
-  # We can compile using X headers with no special include directory.
 
47365
-ac_x_includes=
 
47366
+       HAVE_TRACKER=no
 
47367
 else
 
47368
-  $as_echo "$as_me: failed program was:" >&5
 
47369
-sed 's/^/| /' conftest.$ac_ext >&5
 
47370
-
 
47371
-  for ac_dir in $ac_x_header_dirs; do
 
47372
-  if test -r "$ac_dir/X11/Xlib.h"; then
 
47373
-    ac_x_includes=$ac_dir
 
47374
-    break
 
47375
-  fi
 
47376
-done
 
47377
+       TRACKER_CFLAGS=$pkg_cv_TRACKER_CFLAGS
 
47378
+       TRACKER_LIBS=$pkg_cv_TRACKER_LIBS
 
47379
+        { echo "$as_me:$LINENO: result: yes" >&5
 
47380
+echo "${ECHO_T}yes" >&6; }
 
47381
+       HAVE_TRACKER=yes
 
47382
 fi
 
47383
+                       if test "${HAVE_TRACKER}" != "yes" ; then
 
47384
+                               plugin_error_or_ignore "you need the tracker development headers installed for the tracker plugin"
 
47385
+                               add_plugin="0"
 
47386
+                       fi
 
47387
+               ;;
 
47388
+               sample-vala)
 
47389
+                       if test "${with_vala}" != "yes" ; then
 
47390
+                               plugin_error_or_ignore "you need vala installed to use the sample-vala plugin"
 
47391
+                               add_plugin="0"
 
47392
+                       fi
 
47393
+               ;;
 
47394
+               thumbnail)
 
47395
 
 
47396
-rm -f conftest.err conftest.$ac_ext
 
47397
-fi # $ac_x_includes = no
 
47398
-
 
47399
-if test "$ac_x_libraries" = no; then
 
47400
-  # Check for the libraries.
 
47401
-  # See if we find them without any special options.
 
47402
-  # Don't add to $LIBS permanently.
 
47403
-  ac_save_LIBS=$LIBS
 
47404
-  LIBS="-lX11 $LIBS"
 
47405
-  cat >conftest.$ac_ext <<_ACEOF
 
47406
-/* confdefs.h.  */
 
47407
-_ACEOF
 
47408
-cat confdefs.h >>conftest.$ac_ext
 
47409
-cat >>conftest.$ac_ext <<_ACEOF
 
47410
-/* end confdefs.h.  */
 
47411
-#include <X11/Xlib.h>
 
47412
-int
 
47413
-main ()
 
47414
-{
 
47415
-XrmInitialize ()
 
47416
-  ;
 
47417
-  return 0;
 
47418
-}
 
47419
-_ACEOF
 
47420
-rm -f conftest.$ac_objext conftest$ac_exeext
 
47421
-if { (ac_try="$ac_link"
 
47422
-case "(($ac_try" in
 
47423
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
47424
-  *) ac_try_echo=$ac_try;;
 
47425
-esac
 
47426
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
47427
-$as_echo "$ac_try_echo") >&5
 
47428
-  (eval "$ac_link") 2>conftest.er1
 
47429
+pkg_failed=no
 
47430
+{ echo "$as_me:$LINENO: checking for GLIB" >&5
 
47431
+echo $ECHO_N "checking for GLIB... $ECHO_C" >&6; }
 
47432
+
36581
47433
+if test -n "$PKG_CONFIG"; then
36582
47434
+    if test -n "$GLIB_CFLAGS"; then
36583
 
     pkg_cv_GLIB_CFLAGS="$GLIB_CFLAGS"
36584
 
- elif test -n "$PKG_CONFIG"; then
 
47435
+        pkg_cv_GLIB_CFLAGS="$GLIB_CFLAGS"
36585
47436
+    else
36586
 
     if test -n "$PKG_CONFIG" && \
36587
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.15.0\"") >&5
36588
 
   ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.15.0") 2>&5
36589
 
@@ -25074,12 +22397,14 @@
 
47437
+        if test -n "$PKG_CONFIG" && \
 
47438
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.15.0\"") >&5
 
47439
+  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.15.0") 2>&5
 
47440
   ac_status=$?
 
47441
-  grep -v '^ *+' conftest.er1 >conftest.err
 
47442
-  rm -f conftest.er1
 
47443
-  cat conftest.err >&5
 
47444
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47445
-  (exit $ac_status); } && {
 
47446
-        test -z "$ac_c_werror_flag" ||
 
47447
-        test ! -s conftest.err
 
47448
-       } && test -s conftest$ac_exeext && {
 
47449
-        test "$cross_compiling" = yes ||
 
47450
-        $as_test_x conftest$ac_exeext
 
47451
-       }; then
 
47452
-  LIBS=$ac_save_LIBS
 
47453
-# We can link X programs with no special library path.
 
47454
-ac_x_libraries=
 
47455
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47456
+  (exit $ac_status); }; then
 
47457
+  pkg_cv_GLIB_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 2.15.0" 2>/dev/null`
36590
47458
 else
36591
 
   pkg_failed=yes
36592
 
 fi
36593
 
- else
36594
 
+    fi
 
47459
-  $as_echo "$as_me: failed program was:" >&5
 
47460
-sed 's/^/| /' conftest.$ac_ext >&5
 
47461
-
 
47462
-       LIBS=$ac_save_LIBS
 
47463
-for ac_dir in `$as_echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g`
 
47464
-do
 
47465
-  # Don't even attempt the hair of trying to link an X program!
 
47466
-  for ac_extension in a so sl dylib la dll; do
 
47467
-    if test -r "$ac_dir/libX11.$ac_extension"; then
 
47468
-      ac_x_libraries=$ac_dir
 
47469
-      break 2
 
47470
+  pkg_failed=yes
 
47471
+fi
 
47472
     fi
 
47473
-  done
 
47474
-done
36595
47475
+else
36596
 
     pkg_failed=untried
36597
 
 fi
36598
 
-if test -n "$GLIB_LIBS"; then
 
47476
+       pkg_failed=untried
 
47477
+fi
36599
47478
+if test -n "$PKG_CONFIG"; then
36600
47479
+    if test -n "$GLIB_LIBS"; then
36601
 
     pkg_cv_GLIB_LIBS="$GLIB_LIBS"
36602
 
- elif test -n "$PKG_CONFIG"; then
 
47480
+        pkg_cv_GLIB_LIBS="$GLIB_LIBS"
36603
47481
+    else
36604
 
     if test -n "$PKG_CONFIG" && \
36605
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.15.0\"") >&5
36606
 
   ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.15.0") 2>&5
36607
 
@@ -25090,7 +22415,8 @@
36608
 
 else
36609
 
   pkg_failed=yes
36610
 
 fi
36611
 
- else
 
47482
+        if test -n "$PKG_CONFIG" && \
 
47483
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.15.0\"") >&5
 
47484
+  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.15.0") 2>&5
 
47485
+  ac_status=$?
 
47486
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47487
+  (exit $ac_status); }; then
 
47488
+  pkg_cv_GLIB_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= 2.15.0" 2>/dev/null`
 
47489
+else
 
47490
+  pkg_failed=yes
 
47491
+fi
36612
47492
+    fi
36613
47493
+else
36614
 
     pkg_failed=untried
36615
 
 fi
36616
 
 
36617
 
@@ -25104,9 +22430,9 @@
36618
 
         _pkg_short_errors_supported=no
36619
 
 fi
36620
 
         if test $_pkg_short_errors_supported = yes; then
36621
 
-               GLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "glib-2.0 >= 2.15.0" 2>&1`
 
47494
+       pkg_failed=untried
 
47495
 fi
 
47496
 
 
47497
-rm -rf conftest.dSYM
 
47498
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
47499
-      conftest$ac_exeext conftest.$ac_ext
 
47500
-fi # $ac_x_libraries = no
 
47501
 
 
47502
-case $ac_x_includes,$ac_x_libraries in #(
 
47503
-  no,* | *,no | *\'*)
 
47504
-    # Didn't find X, or a directory has "'" in its name.
 
47505
-    ac_cv_have_x="have_x=no";; #(
 
47506
-  *)
 
47507
-    # Record where we found X for the cache.
 
47508
-    ac_cv_have_x="have_x=yes\
 
47509
-       ac_x_includes='$ac_x_includes'\
 
47510
-       ac_x_libraries='$ac_x_libraries'"
 
47511
-esac
 
47512
+
 
47513
+if test $pkg_failed = yes; then
 
47514
+
 
47515
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
47516
+        _pkg_short_errors_supported=yes
 
47517
+else
 
47518
+        _pkg_short_errors_supported=no
 
47519
 fi
 
47520
-;; #(
 
47521
-    *) have_x=yes;;
 
47522
-  esac
 
47523
-  eval "$ac_cv_have_x"
 
47524
-fi # $with_x != no
 
47525
+        if test $_pkg_short_errors_supported = yes; then
36622
47526
+               GLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "glib-2.0 >= 2.15.0"`
36623
 
         else
36624
 
-               GLIB_PKG_ERRORS=`$PKG_CONFIG --print-errors "glib-2.0 >= 2.15.0" 2>&1`
 
47527
+        else
36625
47528
+               GLIB_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "glib-2.0 >= 2.15.0"`
36626
 
         fi
36627
 
        # Put the nasty error message in config.log where it belongs
36628
 
        echo "$GLIB_PKG_ERRORS" >&5
36629
 
@@ -25179,9 +22505,10 @@
36630
 
 { echo "$as_me:$LINENO: checking for BROWSER_PLUGIN" >&5
36631
 
 echo $ECHO_N "checking for BROWSER_PLUGIN... $ECHO_C" >&6; }
36632
 
 
36633
 
-if test -n "$BROWSER_PLUGIN_CFLAGS"; then
 
47529
+        fi
 
47530
+       # Put the nasty error message in config.log where it belongs
 
47531
+       echo "$GLIB_PKG_ERRORS" >&5
 
47532
 
 
47533
-if test "$have_x" != yes; then
 
47534
-  { $as_echo "$as_me:$LINENO: result: $have_x" >&5
 
47535
-$as_echo "$have_x" >&6; }
 
47536
-  no_x=yes
 
47537
+       { echo "$as_me:$LINENO: result: no" >&5
 
47538
+echo "${ECHO_T}no" >&6; }
 
47539
+                HAVE_GLIB_2_15=no
 
47540
+elif test $pkg_failed = untried; then
 
47541
+       HAVE_GLIB_2_15=no
 
47542
 else
 
47543
-  # If each of the values was on the command line, it overrides each guess.
 
47544
-  test "x$x_includes" = xNONE && x_includes=$ac_x_includes
 
47545
-  test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries
 
47546
-  # Update the cache value to reflect the command line values.
 
47547
-  ac_cv_have_x="have_x=yes\
 
47548
-       ac_x_includes='$x_includes'\
 
47549
-       ac_x_libraries='$x_libraries'"
 
47550
-  { $as_echo "$as_me:$LINENO: result: libraries $x_libraries, headers $x_includes" >&5
 
47551
-$as_echo "libraries $x_libraries, headers $x_includes" >&6; }
 
47552
+       GLIB_CFLAGS=$pkg_cv_GLIB_CFLAGS
 
47553
+       GLIB_LIBS=$pkg_cv_GLIB_LIBS
 
47554
+        { echo "$as_me:$LINENO: result: yes" >&5
 
47555
+echo "${ECHO_T}yes" >&6; }
 
47556
+       HAVE_GLIB_2_15=yes
 
47557
 fi
 
47558
+                       if test "${HAVE_GLIB_2_15}" != "yes" ; then
 
47559
+                               plugin_error_or_ignore "you need glib >= 2.15.0 to use the thumbnail plugin"
 
47560
+                               add_plugin="0"
 
47561
+                       fi
 
47562
+               ;;
 
47563
+       esac
 
47564
 
 
47565
+       # Add the specified plugin
 
47566
+       if test "${add_plugin}" = "1" ; then
 
47567
+               used_plugins2="${used_plugins2} ${plugin}"
 
47568
+       fi
 
47569
+done
 
47570
 
 
47571
-       have_x11=yes
 
47572
+ALL_PLUGINS=$allowed_plugins
 
47573
+PLUGINS=$used_plugins2
 
47574
 
 
47575
-       if test x"$x_includes" != x"NONE" && test -n "$x_includes" ; then
 
47576
-               X_INCLUDES=-I`echo $x_includes | sed -e "s/:/ -I/g"`
 
47577
-       fi
 
47578
-       if test x"$x_libraries" != x"NONE" && test -n "$x_libraries" ; then
 
47579
-               X_LIBRARIES=-L`echo $x_libraries | sed -e "s/:/ -L/g"`
 
47580
-       fi
 
47581
-       CFLAGS="$X_INCLUDES $CFLAGS"
 
47582
-       LIBS="$X_LIBRARIES $LIBS"
 
47583
+{ echo "$as_me:$LINENO: checking which plugins to compile" >&5
 
47584
+echo $ECHO_N "checking which plugins to compile... $ECHO_C" >&6; }
 
47585
+{ echo "$as_me:$LINENO: result: $PLUGINS" >&5
 
47586
+echo "${ECHO_T}$PLUGINS" >&6; }
 
47587
 
 
47588
-       XTEST_LIBS=""
 
47589
-       enable_xtest=no
 
47590
-       { $as_echo "$as_me:$LINENO: checking for XTestFakeKeyEvent in -lXtst" >&5
 
47591
-$as_echo_n "checking for XTestFakeKeyEvent in -lXtst... " >&6; }
 
47592
-if test "${ac_cv_lib_Xtst_XTestFakeKeyEvent+set}" = set; then
 
47593
-  $as_echo_n "(cached) " >&6
 
47594
-else
 
47595
-  ac_check_lib_save_LIBS=$LIBS
 
47596
-LIBS="-lXtst $X_LIBRARIES $LIBS"
 
47597
-cat >conftest.$ac_ext <<_ACEOF
 
47598
-/* confdefs.h.  */
 
47599
-_ACEOF
 
47600
-cat confdefs.h >>conftest.$ac_ext
 
47601
-cat >>conftest.$ac_ext <<_ACEOF
 
47602
-/* end confdefs.h.  */
 
47603
 
 
47604
-/* Override any GCC internal prototype to avoid an error.
 
47605
-   Use char because int might match the return type of a GCC
 
47606
-   builtin and then its argument prototype would still apply.  */
 
47607
-#ifdef __cplusplus
 
47608
-extern "C"
 
47609
-#endif
 
47610
-char XTestFakeKeyEvent ();
 
47611
-int
 
47612
-main ()
 
47613
-{
 
47614
-return XTestFakeKeyEvent ();
 
47615
-  ;
 
47616
-  return 0;
 
47617
-}
 
47618
-_ACEOF
 
47619
-rm -f conftest.$ac_objext conftest$ac_exeext
 
47620
-if { (ac_try="$ac_link"
 
47621
-case "(($ac_try" in
 
47622
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
47623
-  *) ac_try_echo=$ac_try;;
 
47624
-esac
 
47625
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
47626
-$as_echo "$ac_try_echo") >&5
 
47627
-  (eval "$ac_link") 2>conftest.er1
 
47628
-  ac_status=$?
 
47629
-  grep -v '^ *+' conftest.er1 >conftest.err
 
47630
-  rm -f conftest.er1
 
47631
-  cat conftest.err >&5
 
47632
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47633
-  (exit $ac_status); } && {
 
47634
-        test -z "$ac_c_werror_flag" ||
 
47635
-        test ! -s conftest.err
 
47636
-       } && test -s conftest$ac_exeext && {
 
47637
-        test "$cross_compiling" = yes ||
 
47638
-        $as_test_x conftest$ac_exeext
 
47639
-       }; then
 
47640
-  ac_cv_lib_Xtst_XTestFakeKeyEvent=yes
 
47641
-else
 
47642
-  $as_echo "$as_me: failed program was:" >&5
 
47643
-sed 's/^/| /' conftest.$ac_ext >&5
 
47644
 
 
47645
-       ac_cv_lib_Xtst_XTestFakeKeyEvent=no
 
47646
-fi
 
47647
 
 
47648
-rm -rf conftest.dSYM
 
47649
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
47650
-      conftest$ac_exeext conftest.$ac_ext
 
47651
-LIBS=$ac_check_lib_save_LIBS
 
47652
+# ***************
 
47653
+# Browser plugins
 
47654
+# ***************
 
47655
+
 
47656
+{ echo "$as_me:$LINENO: checking whether to compile the browser plugins" >&5
 
47657
+echo $ECHO_N "checking whether to compile the browser plugins... $ECHO_C" >&6; }
 
47658
+
 
47659
+# Check whether --enable-browser-plugins was given.
 
47660
+if test "${enable_browser_plugins+set}" = set; then
 
47661
+  enableval=$enable_browser_plugins;
 
47662
+else
 
47663
+  enable_browser_plugins=yes
 
47664
 fi
 
47665
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_Xtst_XTestFakeKeyEvent" >&5
 
47666
-$as_echo "$ac_cv_lib_Xtst_XTestFakeKeyEvent" >&6; }
 
47667
-if test "x$ac_cv_lib_Xtst_XTestFakeKeyEvent" = x""yes; then
 
47668
-  XTEST_LIBS="-lX11 -lXtst $X_LIBRARIES"
 
47669
-               enable_xtest=yes
 
47670
+
 
47671
+{ echo "$as_me:$LINENO: result: $enable_browser_plugins" >&5
 
47672
+echo "${ECHO_T}$enable_browser_plugins" >&6; }
 
47673
+
 
47674
+if test "$enable_browser_plugins" = "yes" ; then
 
47675
 
 
47676
 cat >>confdefs.h <<\_ACEOF
 
47677
-#define HAVE_XTEST 1
 
47678
+#define ENABLE_BROWSER_PLUGINS 1
 
47679
 _ACEOF
 
47680
 
 
47681
-fi
 
47682
 
 
47683
+       BROWSER_PLUGIN_DIR="${BROWSER_PLUGIN_DIR:-"\${libdir}/mozilla/plugins"}"
 
47684
 
 
47685
 
 
47686
 
 
47687
 pkg_failed=no
 
47688
-{ $as_echo "$as_me:$LINENO: checking for XVIDMODE" >&5
 
47689
-$as_echo_n "checking for XVIDMODE... " >&6; }
 
47690
+{ echo "$as_me:$LINENO: checking for BROWSER_PLUGIN" >&5
 
47691
+echo $ECHO_N "checking for BROWSER_PLUGIN... $ECHO_C" >&6; }
 
47692
 
 
47693
-if test -n "$XVIDMODE_CFLAGS"; then
 
47694
-    pkg_cv_XVIDMODE_CFLAGS="$XVIDMODE_CFLAGS"
 
47695
- elif test -n "$PKG_CONFIG"; then
 
47696
-    if test -n "$PKG_CONFIG" && \
 
47697
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"xrandr >= 1.1.1 xxf86vm >= 1.0.1\"") >&5
 
47698
-  ($PKG_CONFIG --exists --print-errors "xrandr >= 1.1.1 xxf86vm >= 1.0.1") 2>&5
36634
47699
+if test -n "$PKG_CONFIG"; then
36635
47700
+    if test -n "$BROWSER_PLUGIN_CFLAGS"; then
36636
 
     pkg_cv_BROWSER_PLUGIN_CFLAGS="$BROWSER_PLUGIN_CFLAGS"
36637
 
- elif test -n "$PKG_CONFIG"; then
 
47701
+        pkg_cv_BROWSER_PLUGIN_CFLAGS="$BROWSER_PLUGIN_CFLAGS"
36638
47702
+    else
36639
 
     if test -n "$PKG_CONFIG" && \
36640
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0
36641
 
                 gio-2.0
36642
 
@@ -25198,12 +22525,14 @@
 
47703
+        if test -n "$PKG_CONFIG" && \
 
47704
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0
 
47705
+                gio-2.0
 
47706
+                totem-plparser-mini >= \$TOTEM_PLPARSER_REQS\"") >&5
 
47707
+  ($PKG_CONFIG --exists --print-errors "glib-2.0
 
47708
+                gio-2.0
 
47709
+                totem-plparser-mini >= $TOTEM_PLPARSER_REQS") 2>&5
 
47710
   ac_status=$?
 
47711
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47712
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47713
   (exit $ac_status); }; then
 
47714
-  pkg_cv_XVIDMODE_CFLAGS=`$PKG_CONFIG --cflags "xrandr >= 1.1.1 xxf86vm >= 1.0.1" 2>/dev/null`
 
47715
+  pkg_cv_BROWSER_PLUGIN_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0
 
47716
+                gio-2.0
 
47717
+                totem-plparser-mini >= $TOTEM_PLPARSER_REQS" 2>/dev/null`
36643
47718
 else
36644
47719
   pkg_failed=yes
36645
47720
 fi
36646
47721
- else
 
47722
-    pkg_failed=untried
36647
47723
+    fi
36648
47724
+else
36649
 
     pkg_failed=untried
 
47725
+       pkg_failed=untried
36650
47726
 fi
36651
 
-if test -n "$BROWSER_PLUGIN_LIBS"; then
 
47727
-if test -n "$XVIDMODE_LIBS"; then
 
47728
-    pkg_cv_XVIDMODE_LIBS="$XVIDMODE_LIBS"
 
47729
- elif test -n "$PKG_CONFIG"; then
 
47730
-    if test -n "$PKG_CONFIG" && \
 
47731
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"xrandr >= 1.1.1 xxf86vm >= 1.0.1\"") >&5
 
47732
-  ($PKG_CONFIG --exists --print-errors "xrandr >= 1.1.1 xxf86vm >= 1.0.1") 2>&5
36652
47733
+if test -n "$PKG_CONFIG"; then
36653
47734
+    if test -n "$BROWSER_PLUGIN_LIBS"; then
36654
 
     pkg_cv_BROWSER_PLUGIN_LIBS="$BROWSER_PLUGIN_LIBS"
36655
 
- elif test -n "$PKG_CONFIG"; then
 
47735
+        pkg_cv_BROWSER_PLUGIN_LIBS="$BROWSER_PLUGIN_LIBS"
36656
47736
+    else
36657
 
     if test -n "$PKG_CONFIG" && \
36658
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0
36659
 
                 gio-2.0
36660
 
@@ -25220,7 +22549,8 @@
 
47737
+        if test -n "$PKG_CONFIG" && \
 
47738
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0
 
47739
+                gio-2.0
 
47740
+                totem-plparser-mini >= \$TOTEM_PLPARSER_REQS\"") >&5
 
47741
+  ($PKG_CONFIG --exists --print-errors "glib-2.0
 
47742
+                gio-2.0
 
47743
+                totem-plparser-mini >= $TOTEM_PLPARSER_REQS") 2>&5
 
47744
   ac_status=$?
 
47745
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47746
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47747
   (exit $ac_status); }; then
 
47748
-  pkg_cv_XVIDMODE_LIBS=`$PKG_CONFIG --libs "xrandr >= 1.1.1 xxf86vm >= 1.0.1" 2>/dev/null`
 
47749
+  pkg_cv_BROWSER_PLUGIN_LIBS=`$PKG_CONFIG --libs "glib-2.0
 
47750
+                gio-2.0
 
47751
+                totem-plparser-mini >= $TOTEM_PLPARSER_REQS" 2>/dev/null`
36661
47752
 else
36662
47753
   pkg_failed=yes
36663
47754
 fi
36664
47755
- else
 
47756
-    pkg_failed=untried
36665
47757
+    fi
36666
47758
+else
36667
 
     pkg_failed=untried
 
47759
+       pkg_failed=untried
36668
47760
 fi
36669
47761
 
36670
 
@@ -25234,13 +22564,13 @@
 
47762
 
 
47763
@@ -24443,383 +22564,212 @@
36671
47764
         _pkg_short_errors_supported=no
36672
47765
 fi
36673
47766
         if test $_pkg_short_errors_supported = yes; then
36674
 
-               BROWSER_PLUGIN_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "glib-2.0
 
47767
-               XVIDMODE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "xrandr >= 1.1.1 xxf86vm >= 1.0.1" 2>&1`
36675
47768
+               BROWSER_PLUGIN_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "glib-2.0
36676
 
                 gio-2.0
36677
 
-                totem-plparser-mini >= $TOTEM_PLPARSER_REQS" 2>&1`
 
47769
+                gio-2.0
36678
47770
+                totem-plparser-mini >= $TOTEM_PLPARSER_REQS"`
36679
47771
         else
36680
 
-               BROWSER_PLUGIN_PKG_ERRORS=`$PKG_CONFIG --print-errors "glib-2.0
 
47772
-               XVIDMODE_PKG_ERRORS=`$PKG_CONFIG --print-errors "xrandr >= 1.1.1 xxf86vm >= 1.0.1" 2>&1`
36681
47773
+               BROWSER_PLUGIN_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "glib-2.0
36682
 
                 gio-2.0
36683
 
-                totem-plparser-mini >= $TOTEM_PLPARSER_REQS" 2>&1`
 
47774
+                gio-2.0
36684
47775
+                totem-plparser-mini >= $TOTEM_PLPARSER_REQS"`
36685
47776
         fi
36686
47777
        # Put the nasty error message in config.log where it belongs
36687
 
        echo "$BROWSER_PLUGIN_PKG_ERRORS" >&5
36688
 
@@ -25284,9 +22614,10 @@
36689
 
 { echo "$as_me:$LINENO: checking for DBUS" >&5
36690
 
 echo $ECHO_N "checking for DBUS... $ECHO_C" >&6; }
36691
 
 
36692
 
-if test -n "$DBUS_CFLAGS"; then
 
47778
-       echo "$XVIDMODE_PKG_ERRORS" >&5
 
47779
+       echo "$BROWSER_PLUGIN_PKG_ERRORS" >&5
 
47780
 
 
47781
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
47782
-$as_echo "no" >&6; }
 
47783
-                have_xvidmode=no
 
47784
+       { echo "$as_me:$LINENO: result: no" >&5
 
47785
+echo "${ECHO_T}no" >&6; }
 
47786
+                enable_browser_plugins=no
 
47787
 elif test $pkg_failed = untried; then
 
47788
-       have_xvidmode=no
 
47789
+       enable_browser_plugins=no
 
47790
 else
 
47791
-       XVIDMODE_CFLAGS=$pkg_cv_XVIDMODE_CFLAGS
 
47792
-       XVIDMODE_LIBS=$pkg_cv_XVIDMODE_LIBS
 
47793
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
47794
-$as_echo "yes" >&6; }
 
47795
-       have_xvidmode=yes
 
47796
-fi
 
47797
-
 
47798
-       if test x$have_xvidmode = xyes; then
 
47799
-
 
47800
-cat >>confdefs.h <<\_ACEOF
 
47801
-#define HAVE_XVIDMODE /**/
 
47802
-_ACEOF
 
47803
-
 
47804
-       fi
 
47805
-
 
47806
-       X_LIBS=""
 
47807
-
 
47808
-               X_LIBS="$X_LIBRARIES -lX11"
 
47809
-
 
47810
-
 
47811
-               have_xfree=no
 
47812
-       cat >conftest.$ac_ext <<_ACEOF
 
47813
-
 
47814
-               #include <X11/XF86keysym.h>
 
47815
-               int main(int argc,char **argv) {
 
47816
-               return 0;
 
47817
-               }
 
47818
-
 
47819
-_ACEOF
 
47820
-rm -f conftest.$ac_objext
 
47821
-if { (ac_try="$ac_compile"
 
47822
-case "(($ac_try" in
 
47823
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
47824
-  *) ac_try_echo=$ac_try;;
 
47825
-esac
 
47826
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
47827
-$as_echo "$ac_try_echo") >&5
 
47828
-  (eval "$ac_compile") 2>conftest.er1
 
47829
-  ac_status=$?
 
47830
-  grep -v '^ *+' conftest.er1 >conftest.err
 
47831
-  rm -f conftest.er1
 
47832
-  cat conftest.err >&5
 
47833
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47834
-  (exit $ac_status); } && {
 
47835
-        test -z "$ac_c_werror_flag" ||
 
47836
-        test ! -s conftest.err
 
47837
-       } && test -s conftest.$ac_objext; then
 
47838
-  have_xfree=yes
 
47839
+       BROWSER_PLUGIN_CFLAGS=$pkg_cv_BROWSER_PLUGIN_CFLAGS
 
47840
+       BROWSER_PLUGIN_LIBS=$pkg_cv_BROWSER_PLUGIN_LIBS
 
47841
+        { echo "$as_me:$LINENO: result: yes" >&5
 
47842
+echo "${ECHO_T}yes" >&6; }
 
47843
+       :
 
47844
+fi
 
47845
+
 
47846
 
 
47847
-else
 
47848
-  $as_echo "$as_me: failed program was:" >&5
 
47849
-sed 's/^/| /' conftest.$ac_ext >&5
 
47850
 
 
47851
 
 
47852
+       # Earlier versions misdetect playlists
 
47853
+       if test -n "$PKG_CONFIG" && \
 
47854
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"shared-mime-info >= 0.22\"") >&5
 
47855
+  ($PKG_CONFIG --exists --print-errors "shared-mime-info >= 0.22") 2>&5
 
47856
+  ac_status=$?
 
47857
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47858
+  (exit $ac_status); }; then
 
47859
+  :
 
47860
+else
 
47861
+  { { echo "$as_me:$LINENO: error:
 
47862
+                               The Browser plugin requires shared-mime-info
 
47863
+                               >= 0.22 to function." >&5
 
47864
+echo "$as_me: error:
 
47865
+                               The Browser plugin requires shared-mime-info
 
47866
+                               >= 0.22 to function." >&2;}
 
47867
+   { (exit 1); exit 1; }; }
 
47868
 fi
 
47869
 
 
47870
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
47871
-       { $as_echo "$as_me:$LINENO: checking for X11 XFree86 headers" >&5
 
47872
-$as_echo_n "checking for X11 XFree86 headers... " >&6; }
 
47873
-       { $as_echo "$as_me:$LINENO: result: $have_xfree" >&5
 
47874
-$as_echo "$have_xfree" >&6; }
 
47875
-       if test x"$have_xfree" = "xyes" ; then
 
47876
 
 
47877
-cat >>confdefs.h <<\_ACEOF
 
47878
-#define HAVE_XFREE 1
 
47879
-_ACEOF
 
47880
+pkg_failed=no
 
47881
+{ echo "$as_me:$LINENO: checking for DBUS" >&5
 
47882
+echo $ECHO_N "checking for DBUS... $ECHO_C" >&6; }
 
47883
 
 
47884
-       fi
36693
47885
+if test -n "$PKG_CONFIG"; then
36694
47886
+    if test -n "$DBUS_CFLAGS"; then
36695
 
     pkg_cv_DBUS_CFLAGS="$DBUS_CFLAGS"
36696
 
- elif test -n "$PKG_CONFIG"; then
 
47887
+        pkg_cv_DBUS_CFLAGS="$DBUS_CFLAGS"
36697
47888
+    else
36698
 
     if test -n "$PKG_CONFIG" && \
36699
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1 >= \$DBUS_REQS\"") >&5
36700
 
   ($PKG_CONFIG --exists --print-errors "dbus-glib-1 >= $DBUS_REQS") 2>&5
36701
 
@@ -25297,12 +22628,14 @@
 
47889
+        if test -n "$PKG_CONFIG" && \
 
47890
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1 >= \$DBUS_REQS\"") >&5
 
47891
+  ($PKG_CONFIG --exists --print-errors "dbus-glib-1 >= $DBUS_REQS") 2>&5
 
47892
+  ac_status=$?
 
47893
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47894
+  (exit $ac_status); }; then
 
47895
+  pkg_cv_DBUS_CFLAGS=`$PKG_CONFIG --cflags "dbus-glib-1 >= $DBUS_REQS" 2>/dev/null`
 
47896
+else
 
47897
+  pkg_failed=yes
 
47898
 fi
 
47899
- if test x$have_xvidmode = xyes; then
 
47900
-  HAVE_XVIDMODE_TRUE=
 
47901
-  HAVE_XVIDMODE_FALSE='#'
 
47902
+    fi
36702
47903
 else
36703
 
   pkg_failed=yes
36704
 
 fi
36705
 
- else
36706
 
+    fi
36707
 
+else
36708
 
     pkg_failed=untried
36709
 
 fi
36710
 
-if test -n "$DBUS_LIBS"; then
 
47904
-  HAVE_XVIDMODE_TRUE='#'
 
47905
-  HAVE_XVIDMODE_FALSE=
 
47906
+       pkg_failed=untried
 
47907
 fi
 
47908
-
 
47909
-
 
47910
-
 
47911
-{ $as_echo "$as_me:$LINENO: checking whether Python plugin support is requested" >&5
 
47912
-$as_echo_n "checking whether Python plugin support is requested... " >&6; }
 
47913
-# Check whether --enable-python was given.
 
47914
-if test "${enable_python+set}" = set; then
 
47915
-  enableval=$enable_python; enable_python=$enableval have_python=$enableval
36711
47916
+if test -n "$PKG_CONFIG"; then
36712
47917
+    if test -n "$DBUS_LIBS"; then
36713
 
     pkg_cv_DBUS_LIBS="$DBUS_LIBS"
36714
 
- elif test -n "$PKG_CONFIG"; then
 
47918
+        pkg_cv_DBUS_LIBS="$DBUS_LIBS"
36715
47919
+    else
36716
 
     if test -n "$PKG_CONFIG" && \
36717
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1 >= \$DBUS_REQS\"") >&5
36718
 
   ($PKG_CONFIG --exists --print-errors "dbus-glib-1 >= $DBUS_REQS") 2>&5
36719
 
@@ -25313,7 +22646,8 @@
 
47920
+        if test -n "$PKG_CONFIG" && \
 
47921
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1 >= \$DBUS_REQS\"") >&5
 
47922
+  ($PKG_CONFIG --exists --print-errors "dbus-glib-1 >= $DBUS_REQS") 2>&5
 
47923
+  ac_status=$?
 
47924
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47925
+  (exit $ac_status); }; then
 
47926
+  pkg_cv_DBUS_LIBS=`$PKG_CONFIG --libs "dbus-glib-1 >= $DBUS_REQS" 2>/dev/null`
36720
47927
 else
36721
 
   pkg_failed=yes
 
47928
-  enable_python=autodetect have_python=yes
 
47929
+  pkg_failed=yes
36722
47930
 fi
36723
 
- else
 
47931
-
 
47932
-{ $as_echo "$as_me:$LINENO: result: $enable_python" >&5
 
47933
-$as_echo "$enable_python" >&6; }
 
47934
-
 
47935
-if test "x$have_python" != "xyes"; then
 
47936
-       if test "x$enable_python" = "xyes"; then
 
47937
-               { { $as_echo "$as_me:$LINENO: error: Python not found" >&5
 
47938
-$as_echo "$as_me: error: Python not found" >&2;}
 
47939
-   { (exit 1); exit 1; }; }
 
47940
-       elif test "x$enable_python" = "xautodetect"; then
 
47941
-               enable_python=no
 
47942
-               { $as_echo "$as_me:$LINENO: WARNING: Python not found, disabling python support" >&5
 
47943
-$as_echo "$as_me: WARNING: Python not found, disabling python support" >&2;}
 
47944
-       fi
36724
47945
+    fi
36725
47946
+else
36726
 
     pkg_failed=untried
36727
 
 fi
36728
 
 
36729
 
@@ -25327,9 +22661,9 @@
36730
 
         _pkg_short_errors_supported=no
36731
 
 fi
36732
 
         if test $_pkg_short_errors_supported = yes; then
36733
 
-               DBUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "dbus-glib-1 >= $DBUS_REQS" 2>&1`
 
47947
+       pkg_failed=untried
 
47948
 fi
 
47949
 
 
47950
-if test "x$have_python" != "xno"; then
 
47951
-
 
47952
 
 
47953
 
 
47954
+if test $pkg_failed = yes; then
 
47955
 
 
47956
-        if test -n "$PYTHON"; then
 
47957
-      # If the user set $PYTHON, use it and don't search something else.
 
47958
-      { $as_echo "$as_me:$LINENO: checking whether $PYTHON version >= 2.3" >&5
 
47959
-$as_echo_n "checking whether $PYTHON version >= 2.3... " >&6; }
 
47960
-      prog="import sys, string
 
47961
-# split strings by '.' and convert to numeric.  Append some zeros
 
47962
-# because we need at least 4 digits for the hex conversion.
 
47963
-minver = map(int, string.split('2.3', '.')) + [0, 0, 0]
 
47964
-minverhex = 0
 
47965
-for i in xrange(0, 4): minverhex = (minverhex << 8) + minver[i]
 
47966
-sys.exit(sys.hexversion < minverhex)"
 
47967
-  if { echo "$as_me:$LINENO: $PYTHON -c "$prog"" >&5
 
47968
-   ($PYTHON -c "$prog") >&5 2>&5
 
47969
-   ac_status=$?
 
47970
-   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
47971
-   (exit $ac_status); }; then
 
47972
-  { $as_echo "$as_me:$LINENO: result: yes" >&5
 
47973
-$as_echo "yes" >&6; }
 
47974
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
47975
+        _pkg_short_errors_supported=yes
 
47976
 else
 
47977
-  { { $as_echo "$as_me:$LINENO: error: too old" >&5
 
47978
-$as_echo "$as_me: error: too old" >&2;}
 
47979
-   { (exit 1); exit 1; }; }
 
47980
+        _pkg_short_errors_supported=no
 
47981
 fi
 
47982
+        if test $_pkg_short_errors_supported = yes; then
36734
47983
+               DBUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "dbus-glib-1 >= $DBUS_REQS"`
36735
 
         else
36736
 
-               DBUS_PKG_ERRORS=`$PKG_CONFIG --print-errors "dbus-glib-1 >= $DBUS_REQS" 2>&1`
 
47984
+        else
36737
47985
+               DBUS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "dbus-glib-1 >= $DBUS_REQS"`
36738
 
         fi
36739
 
        # Put the nasty error message in config.log where it belongs
36740
 
        echo "$DBUS_PKG_ERRORS" >&5
36741
 
@@ -25401,9 +22735,10 @@
36742
 
 { echo "$as_me:$LINENO: checking for SN" >&5
36743
 
 echo $ECHO_N "checking for SN... $ECHO_C" >&6; }
36744
 
 
36745
 
-if test -n "$SN_CFLAGS"; then
 
47986
+        fi
 
47987
+       # Put the nasty error message in config.log where it belongs
 
47988
+       echo "$DBUS_PKG_ERRORS" >&5
 
47989
 
 
47990
-      am_display_PYTHON=$PYTHON
 
47991
-    else
 
47992
-      # Otherwise, try each interpreter until we find one that satisfies
 
47993
-      # VERSION.
 
47994
-      { $as_echo "$as_me:$LINENO: checking for a Python interpreter with version >= 2.3" >&5
 
47995
-$as_echo_n "checking for a Python interpreter with version >= 2.3... " >&6; }
 
47996
-if test "${am_cv_pathless_PYTHON+set}" = set; then
 
47997
-  $as_echo_n "(cached) " >&6
 
47998
+       { echo "$as_me:$LINENO: result: no" >&5
 
47999
+echo "${ECHO_T}no" >&6; }
 
48000
+                enable_browser_plugins=no
 
48001
+elif test $pkg_failed = untried; then
 
48002
+       enable_browser_plugins=no
 
48003
 else
 
48004
-
 
48005
-       for am_cv_pathless_PYTHON in python python2 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 python1.6 python1.5 none; do
 
48006
-         test "$am_cv_pathless_PYTHON" = none && break
 
48007
-         prog="import sys, string
 
48008
-# split strings by '.' and convert to numeric.  Append some zeros
 
48009
-# because we need at least 4 digits for the hex conversion.
 
48010
-minver = map(int, string.split('2.3', '.')) + [0, 0, 0]
 
48011
-minverhex = 0
 
48012
-for i in xrange(0, 4): minverhex = (minverhex << 8) + minver[i]
 
48013
-sys.exit(sys.hexversion < minverhex)"
 
48014
-  if { echo "$as_me:$LINENO: $am_cv_pathless_PYTHON -c "$prog"" >&5
 
48015
-   ($am_cv_pathless_PYTHON -c "$prog") >&5 2>&5
 
48016
-   ac_status=$?
 
48017
-   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48018
-   (exit $ac_status); }; then
 
48019
-  break
 
48020
-fi
 
48021
-
 
48022
-       done
 
48023
+       DBUS_CFLAGS=$pkg_cv_DBUS_CFLAGS
 
48024
+       DBUS_LIBS=$pkg_cv_DBUS_LIBS
 
48025
+        { echo "$as_me:$LINENO: result: yes" >&5
 
48026
+echo "${ECHO_T}yes" >&6; }
 
48027
+       :
 
48028
 fi
 
48029
-{ $as_echo "$as_me:$LINENO: result: $am_cv_pathless_PYTHON" >&5
 
48030
-$as_echo "$am_cv_pathless_PYTHON" >&6; }
 
48031
-      # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON.
 
48032
-      if test "$am_cv_pathless_PYTHON" = none; then
 
48033
-       PYTHON=:
 
48034
-      else
 
48035
-        # Extract the first word of "$am_cv_pathless_PYTHON", so it can be a program name with args.
 
48036
-set dummy $am_cv_pathless_PYTHON; ac_word=$2
 
48037
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
48038
-$as_echo_n "checking for $ac_word... " >&6; }
 
48039
-if test "${ac_cv_path_PYTHON+set}" = set; then
 
48040
-  $as_echo_n "(cached) " >&6
 
48041
+       DBUSLIBDIR="`$PKG_CONFIG dbus-glib-1 --variable=libdir`"
 
48042
+       DBUSBINDIR="`echo $DBUSLIBDIR | sed -e s/lib/bin/`"
 
48043
+       # Extract the first word of "dbus-binding-tool", so it can be a program name with args.
 
48044
+set dummy dbus-binding-tool; ac_word=$2
 
48045
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
48046
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
48047
+if test "${ac_cv_path_DBUS_BIND+set}" = set; then
 
48048
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
48049
 else
 
48050
-  case $PYTHON in
 
48051
+  case $DBUS_BIND in
 
48052
   [\\/]* | ?:[\\/]*)
 
48053
-  ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a path.
 
48054
+  ac_cv_path_DBUS_BIND="$DBUS_BIND" # Let the user override the test with a path.
 
48055
   ;;
 
48056
   *)
 
48057
   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
48058
-for as_dir in $PATH
 
48059
+as_dummy="$DBUSBINDIR:$PATH"
 
48060
+for as_dir in $as_dummy
 
48061
 do
 
48062
   IFS=$as_save_IFS
 
48063
   test -z "$as_dir" && as_dir=.
 
48064
   for ac_exec_ext in '' $ac_executable_extensions; do
 
48065
   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
48066
-    ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext"
 
48067
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
48068
+    ac_cv_path_DBUS_BIND="$as_dir/$ac_word$ac_exec_ext"
 
48069
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
48070
     break 2
 
48071
   fi
 
48072
 done
 
48073
 done
 
48074
 IFS=$as_save_IFS
 
48075
 
 
48076
+  test -z "$ac_cv_path_DBUS_BIND" && ac_cv_path_DBUS_BIND="no"
 
48077
   ;;
 
48078
 esac
 
48079
 fi
 
48080
-PYTHON=$ac_cv_path_PYTHON
 
48081
-if test -n "$PYTHON"; then
 
48082
-  { $as_echo "$as_me:$LINENO: result: $PYTHON" >&5
 
48083
-$as_echo "$PYTHON" >&6; }
 
48084
-else
 
48085
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
48086
-$as_echo "no" >&6; }
 
48087
-fi
 
48088
-
 
48089
-
 
48090
-      fi
 
48091
-      am_display_PYTHON=$am_cv_pathless_PYTHON
 
48092
-    fi
 
48093
-
 
48094
-
 
48095
-  if test "$PYTHON" = :; then
 
48096
-      have_python=no
 
48097
-  else
 
48098
-
 
48099
-
 
48100
-  { $as_echo "$as_me:$LINENO: checking for $am_display_PYTHON version" >&5
 
48101
-$as_echo_n "checking for $am_display_PYTHON version... " >&6; }
 
48102
-if test "${am_cv_python_version+set}" = set; then
 
48103
-  $as_echo_n "(cached) " >&6
 
48104
-else
 
48105
-  am_cv_python_version=`$PYTHON -c "import sys; print sys.version[:3]"`
 
48106
-fi
 
48107
-{ $as_echo "$as_me:$LINENO: result: $am_cv_python_version" >&5
 
48108
-$as_echo "$am_cv_python_version" >&6; }
 
48109
-  PYTHON_VERSION=$am_cv_python_version
 
48110
-
 
48111
-
 
48112
-
 
48113
-  PYTHON_PREFIX='${prefix}'
 
48114
-
 
48115
-  PYTHON_EXEC_PREFIX='${exec_prefix}'
 
48116
-
 
48117
-
 
48118
-
 
48119
-  { $as_echo "$as_me:$LINENO: checking for $am_display_PYTHON platform" >&5
 
48120
-$as_echo_n "checking for $am_display_PYTHON platform... " >&6; }
 
48121
-if test "${am_cv_python_platform+set}" = set; then
 
48122
-  $as_echo_n "(cached) " >&6
 
48123
-else
 
48124
-  am_cv_python_platform=`$PYTHON -c "import sys; print sys.platform"`
 
48125
-fi
 
48126
-{ $as_echo "$as_me:$LINENO: result: $am_cv_python_platform" >&5
 
48127
-$as_echo "$am_cv_python_platform" >&6; }
 
48128
-  PYTHON_PLATFORM=$am_cv_python_platform
 
48129
-
 
48130
-
 
48131
-
 
48132
-
 
48133
-                { $as_echo "$as_me:$LINENO: checking for $am_display_PYTHON script directory" >&5
 
48134
-$as_echo_n "checking for $am_display_PYTHON script directory... " >&6; }
 
48135
-if test "${am_cv_python_pythondir+set}" = set; then
 
48136
-  $as_echo_n "(cached) " >&6
 
48137
-else
 
48138
-  am_cv_python_pythondir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(0,0,prefix='$PYTHON_PREFIX')" 2>/dev/null ||
 
48139
-     echo "$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages"`
 
48140
-fi
 
48141
-{ $as_echo "$as_me:$LINENO: result: $am_cv_python_pythondir" >&5
 
48142
-$as_echo "$am_cv_python_pythondir" >&6; }
 
48143
-  pythondir=$am_cv_python_pythondir
 
48144
-
 
48145
-
 
48146
-
 
48147
-  pkgpythondir=\${pythondir}/$PACKAGE
 
48148
-
 
48149
-
 
48150
-            { $as_echo "$as_me:$LINENO: checking for $am_display_PYTHON extension module directory" >&5
 
48151
-$as_echo_n "checking for $am_display_PYTHON extension module directory... " >&6; }
 
48152
-if test "${am_cv_python_pyexecdir+set}" = set; then
 
48153
-  $as_echo_n "(cached) " >&6
 
48154
+DBUS_BIND=$ac_cv_path_DBUS_BIND
 
48155
+if test -n "$DBUS_BIND"; then
 
48156
+  { echo "$as_me:$LINENO: result: $DBUS_BIND" >&5
 
48157
+echo "${ECHO_T}$DBUS_BIND" >&6; }
 
48158
 else
 
48159
-  am_cv_python_pyexecdir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(1,0,prefix='$PYTHON_EXEC_PREFIX')" 2>/dev/null ||
 
48160
-     echo "${PYTHON_EXEC_PREFIX}/lib/python${PYTHON_VERSION}/site-packages"`
 
48161
+  { echo "$as_me:$LINENO: result: no" >&5
 
48162
+echo "${ECHO_T}no" >&6; }
 
48163
 fi
 
48164
-{ $as_echo "$as_me:$LINENO: result: $am_cv_python_pyexecdir" >&5
 
48165
-$as_echo "$am_cv_python_pyexecdir" >&6; }
 
48166
-  pyexecdir=$am_cv_python_pyexecdir
 
48167
-
 
48168
-
 
48169
 
 
48170
-  pkgpyexecdir=\${pyexecdir}/$PACKAGE
 
48171
-
 
48172
-
 
48173
-
 
48174
-  fi
 
48175
-
 
48176
-
 
48177
-       if test "x$PYTHON" = "x:"; then
 
48178
-               have_python=no
 
48179
-       fi
 
48180
-fi
 
48181
 
 
48182
-if test "x$have_python" != "xno"; then
 
48183
-       PY_PREFIX=`$PYTHON -c 'import sys ; print sys.prefix'`
 
48184
-       PY_EXEC_PREFIX=`$PYTHON -c 'import sys ; print sys.exec_prefix'`
 
48185
-       PYTHON_LIBS="-lpython$PYTHON_VERSION"
 
48186
-       if test -d $PY_EXEC_PREFIX/lib64/python$PYTHON_VERSION ; then
 
48187
-               PYTHON_LIB_LOC="-L$PY_EXEC_PREFIX/lib64/python$PYTHON_VERSION/config"
 
48188
-               PYTHON_MAKEFILE="$PY_EXEC_PREFIX/lib64/python$PYTHON_VERSION/config/Makefile"
 
48189
-       else
 
48190
-               PYTHON_LIB_LOC="-L$PY_EXEC_PREFIX/lib/python$PYTHON_VERSION/config"
 
48191
-               PYTHON_MAKEFILE="$PY_EXEC_PREFIX/lib/python$PYTHON_VERSION/config/Makefile"
 
48192
+       if test "x$DBUS_BIND" = "xno"; then
 
48193
+               { echo "$as_me:$LINENO: WARNING: dbus-binding-tool not found" >&5
 
48194
+echo "$as_me: WARNING: dbus-binding-tool not found" >&2;}
 
48195
+               enable_browser_plugins=no
 
48196
        fi
 
48197
-       PYTHON_CFLAGS="-I$PY_PREFIX/include/python$PYTHON_VERSION"
 
48198
-       PYTHON_LOCALMODLIBS=`sed -n -e 's/^LOCALMODLIBS=\(.*\)/\1/p' $PYTHON_MAKEFILE`
 
48199
-       PYTHON_BASEMODLIBS=`sed -n -e 's/^BASEMODLIBS=\(.*\)/\1/p' $PYTHON_MAKEFILE`
 
48200
-       PYTHON_OTHER_LIBS=`sed -n -e 's/^LIBS=\(.*\)/\1/p' $PYTHON_MAKEFILE`
 
48201
-       PYTHON_EXTRA_LIBS="$PYTHON_LOCALMODLIBS $PYTHON_BASEMODLIBS $PYTHON_OTHER_LIBS"
 
48202
-
 
48203
-
 
48204
-
 
48205
-
 
48206
-
 
48207
-       PYGTK_REQUIRED=2.12.0
 
48208
 
 
48209
 
 
48210
 pkg_failed=no
 
48211
-{ $as_echo "$as_me:$LINENO: checking for PYGTK" >&5
 
48212
-$as_echo_n "checking for PYGTK... " >&6; }
 
48213
+{ echo "$as_me:$LINENO: checking for SN" >&5
 
48214
+echo $ECHO_N "checking for SN... $ECHO_C" >&6; }
 
48215
 
 
48216
-if test -n "$PYGTK_CFLAGS"; then
 
48217
-    pkg_cv_PYGTK_CFLAGS="$PYGTK_CFLAGS"
 
48218
- elif test -n "$PKG_CONFIG"; then
 
48219
-    if test -n "$PKG_CONFIG" && \
 
48220
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"
 
48221
-               pygtk-2.0 >= \$PYGTK_REQUIRED
 
48222
-               totem-plparser >= \$TOTEM_PLPARSER_REQS\"") >&5
 
48223
-  ($PKG_CONFIG --exists --print-errors "
 
48224
-               pygtk-2.0 >= $PYGTK_REQUIRED
 
48225
-               totem-plparser >= $TOTEM_PLPARSER_REQS") 2>&5
36746
48226
+if test -n "$PKG_CONFIG"; then
36747
48227
+    if test -n "$SN_CFLAGS"; then
36748
 
     pkg_cv_SN_CFLAGS="$SN_CFLAGS"
36749
 
- elif test -n "$PKG_CONFIG"; then
 
48228
+        pkg_cv_SN_CFLAGS="$SN_CFLAGS"
36750
48229
+    else
36751
 
     if test -n "$PKG_CONFIG" && \
36752
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" libstartup-notification-1.0 >= 0.8 \"") >&5
36753
 
   ($PKG_CONFIG --exists --print-errors " libstartup-notification-1.0 >= 0.8 ") 2>&5
36754
 
@@ -25414,12 +22749,14 @@
 
48230
+        if test -n "$PKG_CONFIG" && \
 
48231
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" libstartup-notification-1.0 >= 0.8 \"") >&5
 
48232
+  ($PKG_CONFIG --exists --print-errors " libstartup-notification-1.0 >= 0.8 ") 2>&5
 
48233
   ac_status=$?
 
48234
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48235
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48236
   (exit $ac_status); }; then
 
48237
-  pkg_cv_PYGTK_CFLAGS=`$PKG_CONFIG --cflags "
 
48238
-               pygtk-2.0 >= $PYGTK_REQUIRED
 
48239
-               totem-plparser >= $TOTEM_PLPARSER_REQS" 2>/dev/null`
 
48240
+  pkg_cv_SN_CFLAGS=`$PKG_CONFIG --cflags " libstartup-notification-1.0 >= 0.8 " 2>/dev/null`
36755
48241
 else
36756
48242
   pkg_failed=yes
36757
48243
 fi
36758
48244
- else
 
48245
-    pkg_failed=untried
36759
48246
+    fi
36760
48247
+else
36761
 
     pkg_failed=untried
 
48248
+       pkg_failed=untried
36762
48249
 fi
36763
 
-if test -n "$SN_LIBS"; then
 
48250
-if test -n "$PYGTK_LIBS"; then
 
48251
-    pkg_cv_PYGTK_LIBS="$PYGTK_LIBS"
 
48252
- elif test -n "$PKG_CONFIG"; then
 
48253
-    if test -n "$PKG_CONFIG" && \
 
48254
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"
 
48255
-               pygtk-2.0 >= \$PYGTK_REQUIRED
 
48256
-               totem-plparser >= \$TOTEM_PLPARSER_REQS\"") >&5
 
48257
-  ($PKG_CONFIG --exists --print-errors "
 
48258
-               pygtk-2.0 >= $PYGTK_REQUIRED
 
48259
-               totem-plparser >= $TOTEM_PLPARSER_REQS") 2>&5
36764
48260
+if test -n "$PKG_CONFIG"; then
36765
48261
+    if test -n "$SN_LIBS"; then
36766
 
     pkg_cv_SN_LIBS="$SN_LIBS"
36767
 
- elif test -n "$PKG_CONFIG"; then
 
48262
+        pkg_cv_SN_LIBS="$SN_LIBS"
36768
48263
+    else
36769
 
     if test -n "$PKG_CONFIG" && \
36770
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" libstartup-notification-1.0 >= 0.8 \"") >&5
36771
 
   ($PKG_CONFIG --exists --print-errors " libstartup-notification-1.0 >= 0.8 ") 2>&5
36772
 
@@ -25430,7 +22767,8 @@
 
48264
+        if test -n "$PKG_CONFIG" && \
 
48265
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" libstartup-notification-1.0 >= 0.8 \"") >&5
 
48266
+  ($PKG_CONFIG --exists --print-errors " libstartup-notification-1.0 >= 0.8 ") 2>&5
 
48267
   ac_status=$?
 
48268
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48269
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48270
   (exit $ac_status); }; then
 
48271
-  pkg_cv_PYGTK_LIBS=`$PKG_CONFIG --libs "
 
48272
-               pygtk-2.0 >= $PYGTK_REQUIRED
 
48273
-               totem-plparser >= $TOTEM_PLPARSER_REQS" 2>/dev/null`
 
48274
+  pkg_cv_SN_LIBS=`$PKG_CONFIG --libs " libstartup-notification-1.0 >= 0.8 " 2>/dev/null`
36773
48275
 else
36774
48276
   pkg_failed=yes
36775
48277
 fi
36776
48278
- else
 
48279
-    pkg_failed=untried
36777
48280
+    fi
36778
48281
+else
36779
 
     pkg_failed=untried
 
48282
+       pkg_failed=untried
36780
48283
 fi
36781
48284
 
36782
 
@@ -25444,9 +22782,9 @@
 
48285
 
 
48286
@@ -24832,89 +22782,43 @@
36783
48287
         _pkg_short_errors_supported=no
36784
48288
 fi
36785
48289
         if test $_pkg_short_errors_supported = yes; then
36786
 
-               SN_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors " libstartup-notification-1.0 >= 0.8 " 2>&1`
 
48290
-               PYGTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "
 
48291
-               pygtk-2.0 >= $PYGTK_REQUIRED
 
48292
-               totem-plparser >= $TOTEM_PLPARSER_REQS" 2>&1`
36787
48293
+               SN_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors " libstartup-notification-1.0 >= 0.8 "`
36788
48294
         else
36789
 
-               SN_PKG_ERRORS=`$PKG_CONFIG --print-errors " libstartup-notification-1.0 >= 0.8 " 2>&1`
 
48295
-               PYGTK_PKG_ERRORS=`$PKG_CONFIG --print-errors "
 
48296
-               pygtk-2.0 >= $PYGTK_REQUIRED
 
48297
-               totem-plparser >= $TOTEM_PLPARSER_REQS" 2>&1`
36790
48298
+               SN_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors " libstartup-notification-1.0 >= 0.8 "`
36791
48299
         fi
36792
48300
        # Put the nasty error message in config.log where it belongs
36793
 
        echo "$SN_PKG_ERRORS" >&5
36794
 
@@ -25694,9 +23032,10 @@
36795
 
 { echo "$as_me:$LINENO: checking for NAUTILUS" >&5
36796
 
 echo $ECHO_N "checking for NAUTILUS... $ECHO_C" >&6; }
36797
 
 
36798
 
-if test -n "$NAUTILUS_CFLAGS"; then
 
48301
-       echo "$PYGTK_PKG_ERRORS" >&5
 
48302
-
 
48303
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
48304
-$as_echo "no" >&6; }
 
48305
-
 
48306
-               have_python=no
 
48307
-               if test "x$enable_python" = "xyes"; then
 
48308
-                       { { $as_echo "$as_me:$LINENO: error: $PYGTK_PKG_ERRORS" >&5
 
48309
-$as_echo "$as_me: error: $PYGTK_PKG_ERRORS" >&2;}
 
48310
-   { (exit 1); exit 1; }; }
 
48311
-               elif test "x$enable_python" = "xautodetect"; then
 
48312
-                       enable_python=no
 
48313
-                       { $as_echo "$as_me:$LINENO: WARNING: $PYGTK_PKG_ERRORS" >&5
 
48314
-$as_echo "$as_me: WARNING: $PYGTK_PKG_ERRORS" >&2;}
 
48315
-                       { $as_echo "$as_me:$LINENO: WARNING: Disabling python support" >&5
 
48316
-$as_echo "$as_me: WARNING: Disabling python support" >&2;}
 
48317
-               fi
 
48318
+       echo "$SN_PKG_ERRORS" >&5
 
48319
 
 
48320
+       { echo "$as_me:$LINENO: result: no" >&5
 
48321
+echo "${ECHO_T}no" >&6; }
 
48322
+                enable_browser_plugins=no
 
48323
 elif test $pkg_failed = untried; then
 
48324
-
 
48325
-               have_python=no
 
48326
-               if test "x$enable_python" = "xyes"; then
 
48327
-                       { { $as_echo "$as_me:$LINENO: error: $PYGTK_PKG_ERRORS" >&5
 
48328
-$as_echo "$as_me: error: $PYGTK_PKG_ERRORS" >&2;}
 
48329
-   { (exit 1); exit 1; }; }
 
48330
-               elif test "x$enable_python" = "xautodetect"; then
 
48331
-                       enable_python=no
 
48332
-                       { $as_echo "$as_me:$LINENO: WARNING: $PYGTK_PKG_ERRORS" >&5
 
48333
-$as_echo "$as_me: WARNING: $PYGTK_PKG_ERRORS" >&2;}
 
48334
-                       { $as_echo "$as_me:$LINENO: WARNING: Disabling python support" >&5
 
48335
-$as_echo "$as_me: WARNING: Disabling python support" >&2;}
 
48336
-               fi
 
48337
-
 
48338
+       enable_browser_plugins=no
 
48339
 else
 
48340
-       PYGTK_CFLAGS=$pkg_cv_PYGTK_CFLAGS
 
48341
-       PYGTK_LIBS=$pkg_cv_PYGTK_LIBS
 
48342
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
48343
-$as_echo "yes" >&6; }
 
48344
-       :
 
48345
-fi
 
48346
-
 
48347
-
 
48348
-
 
48349
+       SN_CFLAGS=$pkg_cv_SN_CFLAGS
 
48350
+       SN_LIBS=$pkg_cv_SN_LIBS
 
48351
+        { echo "$as_me:$LINENO: result: yes" >&5
 
48352
+echo "${ECHO_T}yes" >&6; }
 
48353
+       enable_browser_plugins=yes
 
48354
 fi
 
48355
+       if test "x$enable_browser_plugins" != "xyes" ; then
 
48356
+               { echo "$as_me:$LINENO: WARNING: libstartup-notification not found, necessary to build the plugin viewer" >&5
 
48357
+echo "$as_me: WARNING: libstartup-notification not found, necessary to build the plugin viewer" >&2;}
 
48358
+       fi
 
48359
 
 
48360
-if test "x$have_python" != "xno"; then
 
48361
-       { $as_echo "$as_me:$LINENO: checking for pygtk defs" >&5
 
48362
-$as_echo_n "checking for pygtk defs... " >&6; }
 
48363
-       PYGTK_DEFSDIR=`$PKG_CONFIG --variable=defsdir pygtk-2.0`
 
48364
-       { $as_echo "$as_me:$LINENO: result: $PYGTK_DEFSDIR" >&5
 
48365
-$as_echo "$PYGTK_DEFSDIR" >&6; }
 
48366
-
 
48367
-       { $as_echo "$as_me:$LINENO: checking for pygtk codegen" >&5
 
48368
-$as_echo_n "checking for pygtk codegen... " >&6; }
 
48369
-       PYGTK_CODEGEN="$PYTHON `$PKG_CONFIG --variable=codegendir pygtk-2.0`/codegen.py"
 
48370
-       { $as_echo "$as_me:$LINENO: result: $PYGTK_CODEGEN" >&5
 
48371
-$as_echo "$PYGTK_CODEGEN" >&6; }
 
48372
-
 
48373
-       { $as_echo "$as_me:$LINENO: checking for pygtk h2def" >&5
 
48374
-$as_echo_n "checking for pygtk h2def... " >&6; }
 
48375
-       PYGTK_H2DEF="$PYTHON `$PKG_CONFIG --variable=codegendir pygtk-2.0`/h2def.py"
 
48376
-       { $as_echo "$as_me:$LINENO: result: $PYGTK_H2DEF" >&5
 
48377
-$as_echo "$PYGTK_H2DEF" >&6; }
 
48378
-
 
48379
-
 
48380
-
 
48381
+        # check for -fno-rtti flag
 
48382
 
 
48383
+       ac_ext=cpp
 
48384
+ac_cpp='$CXXCPP $CPPFLAGS'
 
48385
+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
48386
+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
48387
+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
 
48388
 
 
48389
+       __SAVE_CXXFLAGS=$CXXFLAGS
 
48390
+       CXXFLAGS="-fno-rtti $CXXFLAGS"
 
48391
 
 
48392
-               FLAGS="-fno-strict-aliasing"
 
48393
-       save_CFLAGS="$CFLAGS"
 
48394
-       CFLAGS="$CFLAGS $FLAGS"
 
48395
-       { $as_echo "$as_me:$LINENO: checking whether $CC understands $FLAGS" >&5
 
48396
-$as_echo_n "checking whether $CC understands $FLAGS... " >&6; }
 
48397
+       { echo "$as_me:$LINENO: checking for -fno-rtti compiler flag" >&5
 
48398
+echo $ECHO_N "checking for -fno-rtti compiler flag... $ECHO_C" >&6; }
 
48399
        cat >conftest.$ac_ext <<_ACEOF
 
48400
 /* confdefs.h.  */
 
48401
 _ACEOF
 
48402
@@ -24936,250 +22840,233 @@
 
48403
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
48404
   *) ac_try_echo=$ac_try;;
 
48405
 esac
 
48406
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
48407
-$as_echo "$ac_try_echo") >&5
 
48408
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
48409
   (eval "$ac_compile") 2>conftest.er1
 
48410
   ac_status=$?
 
48411
   grep -v '^ *+' conftest.er1 >conftest.err
 
48412
   rm -f conftest.er1
 
48413
   cat conftest.err >&5
 
48414
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48415
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48416
   (exit $ac_status); } && {
 
48417
-        test -z "$ac_c_werror_flag" ||
 
48418
+        test -z "$ac_cxx_werror_flag" ||
 
48419
         test ! -s conftest.err
 
48420
        } && test -s conftest.$ac_objext; then
 
48421
-  compiler_has_option=yes
 
48422
+  have_no_rtti_flag=yes
 
48423
 else
 
48424
-  $as_echo "$as_me: failed program was:" >&5
 
48425
+  echo "$as_me: failed program was:" >&5
 
48426
 sed 's/^/| /' conftest.$ac_ext >&5
 
48427
 
 
48428
-       compiler_has_option=no
 
48429
+       have_no_rtti_flag=no
 
48430
 fi
 
48431
 
 
48432
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
48433
-       CFLAGS="$save_CFLAGS"
 
48434
-       { $as_echo "$as_me:$LINENO: result: $compiler_has_option" >&5
 
48435
-$as_echo "$compiler_has_option" >&6; }
 
48436
-       if test $compiler_has_option = yes; then
 
48437
-               NO_STRICT_ALIASING_CFLAGS="$FLAGS"
 
48438
-       fi
 
48439
-
 
48440
-fi
 
48441
+       { echo "$as_me:$LINENO: result: $have_no_rtti_flag" >&5
 
48442
+echo "${ECHO_T}$have_no_rtti_flag" >&6; }
 
48443
 
 
48444
-if test "x$have_python" != "xno" -a "x$enable_python" != "xno"; then
 
48445
-       enable_python=yes
 
48446
+       CXXFLAGS=$__SAVE_CXXFLAGS
 
48447
+       ac_ext=c
 
48448
+ac_cpp='$CPP $CPPFLAGS'
 
48449
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
48450
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
48451
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
48452
 
 
48453
-cat >>confdefs.h <<\_ACEOF
 
48454
-#define ENABLE_PYTHON 1
 
48455
-_ACEOF
 
48456
 
 
48457
+       if test "$have_no_rtti_flag" = "yes"; then
 
48458
+               AM_CXXFLAGS="-fno-rtti $AM_CXXFLAGS"
 
48459
+       fi
 
48460
 fi
 
48461
 
 
48462
- if test "x$enable_python" = "xyes"; then
 
48463
-  ENABLE_PYTHON_TRUE=
 
48464
-  ENABLE_PYTHON_FALSE='#'
 
48465
+ if test "$enable_browser_plugins" = "yes"; then
 
48466
+  ENABLE_BROWSER_PLUGINS_TRUE=
 
48467
+  ENABLE_BROWSER_PLUGINS_FALSE='#'
 
48468
 else
 
48469
-  ENABLE_PYTHON_TRUE='#'
 
48470
-  ENABLE_PYTHON_FALSE=
 
48471
+  ENABLE_BROWSER_PLUGINS_TRUE='#'
 
48472
+  ENABLE_BROWSER_PLUGINS_FALSE=
 
48473
 fi
 
48474
 
 
48475
 
 
48476
-{ $as_echo "$as_me:$LINENO: checking whether Vala plugin support is requested" >&5
 
48477
-$as_echo_n "checking whether Vala plugin support is requested... " >&6; }
 
48478
-# Check whether --enable-vala was given.
 
48479
-if test "${enable_vala+set}" = set; then
 
48480
-  enableval=$enable_vala; enable_vala=$enableval have_vala=$enableval
 
48481
-else
 
48482
-  enable_vala=autodetect have_vala=yes
 
48483
-fi
 
48484
-
 
48485
-{ $as_echo "$as_me:$LINENO: result: $enable_vala" >&5
 
48486
-$as_echo "$enable_vala" >&6; }
 
48487
-if test "x$enable_vala" != "xno"; then
 
48488
+# check which plugins to enable
 
48489
 
 
48490
-pkg_failed=no
 
48491
-{ $as_echo "$as_me:$LINENO: checking for VALA" >&5
 
48492
-$as_echo_n "checking for VALA... " >&6; }
 
48493
+if test "$enable_browser_plugins" = "yes"; then
 
48494
 
 
48495
-if test -n "$VALA_CFLAGS"; then
 
48496
-    pkg_cv_VALA_CFLAGS="$VALA_CFLAGS"
 
48497
- elif test -n "$PKG_CONFIG"; then
 
48498
-    if test -n "$PKG_CONFIG" && \
 
48499
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"vala-1.0 >= \$VALA_REQS\"") >&5
 
48500
-  ($PKG_CONFIG --exists --print-errors "vala-1.0 >= $VALA_REQS") 2>&5
 
48501
-  ac_status=$?
 
48502
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48503
-  (exit $ac_status); }; then
 
48504
-  pkg_cv_VALA_CFLAGS=`$PKG_CONFIG --cflags "vala-1.0 >= $VALA_REQS" 2>/dev/null`
 
48505
+{ echo "$as_me:$LINENO: checking whether to enable the basic browser plugin" >&5
 
48506
+echo $ECHO_N "checking whether to enable the basic browser plugin... $ECHO_C" >&6; }
 
48507
+# Check whether --enable-basic-plugin was given.
 
48508
+if test "${enable_basic_plugin+set}" = set; then
 
48509
+  enableval=$enable_basic_plugin;
 
48510
 else
 
48511
-  pkg_failed=yes
 
48512
-fi
 
48513
- else
 
48514
-    pkg_failed=untried
 
48515
+  enable_basic_plugin=yes
 
48516
 fi
 
48517
-if test -n "$VALA_LIBS"; then
 
48518
-    pkg_cv_VALA_LIBS="$VALA_LIBS"
 
48519
- elif test -n "$PKG_CONFIG"; then
 
48520
-    if test -n "$PKG_CONFIG" && \
 
48521
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"vala-1.0 >= \$VALA_REQS\"") >&5
 
48522
-  ($PKG_CONFIG --exists --print-errors "vala-1.0 >= $VALA_REQS") 2>&5
 
48523
-  ac_status=$?
 
48524
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48525
-  (exit $ac_status); }; then
 
48526
-  pkg_cv_VALA_LIBS=`$PKG_CONFIG --libs "vala-1.0 >= $VALA_REQS" 2>/dev/null`
 
48527
+
 
48528
+{ echo "$as_me:$LINENO: result: $enable_basic_plugin" >&5
 
48529
+echo "${ECHO_T}$enable_basic_plugin" >&6; }
 
48530
+
 
48531
+{ echo "$as_me:$LINENO: checking whether to enable the GMP browser plugin" >&5
 
48532
+echo $ECHO_N "checking whether to enable the GMP browser plugin... $ECHO_C" >&6; }
 
48533
+# Check whether --enable-gmp-plugin was given.
 
48534
+if test "${enable_gmp_plugin+set}" = set; then
 
48535
+  enableval=$enable_gmp_plugin;
 
48536
 else
 
48537
-  pkg_failed=yes
 
48538
-fi
 
48539
- else
 
48540
-    pkg_failed=untried
 
48541
+  enable_gmp_plugin=yes
 
48542
 fi
 
48543
 
 
48544
+{ echo "$as_me:$LINENO: result: $enable_gmp_plugin" >&5
 
48545
+echo "${ECHO_T}$enable_gmp_plugin" >&6; }
 
48546
 
 
48547
+{ echo "$as_me:$LINENO: checking whether to enable the Complex browser plugin" >&5
 
48548
+echo $ECHO_N "checking whether to enable the Complex browser plugin... $ECHO_C" >&6; }
 
48549
+# Check whether --enable-complex-plugin was given.
 
48550
+if test "${enable_complex_plugin+set}" = set; then
 
48551
+  enableval=$enable_complex_plugin;
 
48552
+else
 
48553
+  enable_complex_plugin=no
 
48554
+fi
 
48555
 
 
48556
-if test $pkg_failed = yes; then
 
48557
+{ echo "$as_me:$LINENO: result: $enable_complex_plugin" >&5
 
48558
+echo "${ECHO_T}$enable_complex_plugin" >&6; }
 
48559
 
 
48560
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
48561
-        _pkg_short_errors_supported=yes
 
48562
+{ echo "$as_me:$LINENO: checking whether to enable the NarrowSpace browser plugin" >&5
 
48563
+echo $ECHO_N "checking whether to enable the NarrowSpace browser plugin... $ECHO_C" >&6; }
 
48564
+# Check whether --enable-narrowspace-plugin was given.
 
48565
+if test "${enable_narrowspace_plugin+set}" = set; then
 
48566
+  enableval=$enable_narrowspace_plugin;
 
48567
 else
 
48568
-        _pkg_short_errors_supported=no
 
48569
+  enable_narrowspace_plugin=yes
 
48570
 fi
 
48571
-        if test $_pkg_short_errors_supported = yes; then
 
48572
-               VALA_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "vala-1.0 >= $VALA_REQS" 2>&1`
 
48573
-        else
 
48574
-               VALA_PKG_ERRORS=`$PKG_CONFIG --print-errors "vala-1.0 >= $VALA_REQS" 2>&1`
 
48575
-        fi
 
48576
-       # Put the nasty error message in config.log where it belongs
 
48577
-       echo "$VALA_PKG_ERRORS" >&5
 
48578
 
 
48579
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
48580
-$as_echo "no" >&6; }
 
48581
-                with_vala=no
 
48582
-elif test $pkg_failed = untried; then
 
48583
-       with_vala=no
 
48584
+{ echo "$as_me:$LINENO: result: $enable_narrowspace_plugin" >&5
 
48585
+echo "${ECHO_T}$enable_narrowspace_plugin" >&6; }
 
48586
+
 
48587
+{ echo "$as_me:$LINENO: checking whether to enable the MullY browser plugin" >&5
 
48588
+echo $ECHO_N "checking whether to enable the MullY browser plugin... $ECHO_C" >&6; }
 
48589
+# Check whether --enable-mully-plugin was given.
 
48590
+if test "${enable_mully_plugin+set}" = set; then
 
48591
+  enableval=$enable_mully_plugin;
 
48592
 else
 
48593
-       VALA_CFLAGS=$pkg_cv_VALA_CFLAGS
 
48594
-       VALA_LIBS=$pkg_cv_VALA_LIBS
 
48595
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
48596
-$as_echo "yes" >&6; }
 
48597
-       with_vala=yes
 
48598
+  enable_mully_plugin=yes
 
48599
 fi
 
48600
-       if test "x$with_vala" = "xyes"; then
 
48601
-               VALAC="`pkg-config --variable=prefix vala-1.0`/bin/valac"
 
48602
 
 
48603
-       elif test "x$enable_vala" = "xyes"; then
 
48604
-               { { $as_echo "$as_me:$LINENO: error: Vala plugin support explicitly requested, but not found" >&5
 
48605
-$as_echo "$as_me: error: Vala plugin support explicitly requested, but not found" >&2;}
 
48606
-   { (exit 1); exit 1; }; }
 
48607
-       fi
 
48608
-fi
 
48609
- if test "x$with_vala" = "xyes"; then
 
48610
-  ENABLE_VALA_TRUE=
 
48611
-  ENABLE_VALA_FALSE='#'
 
48612
+{ echo "$as_me:$LINENO: result: $enable_mully_plugin" >&5
 
48613
+echo "${ECHO_T}$enable_mully_plugin" >&6; }
 
48614
+
 
48615
+{ echo "$as_me:$LINENO: checking whether to enable the Cone browser plugin" >&5
 
48616
+echo $ECHO_N "checking whether to enable the Cone browser plugin... $ECHO_C" >&6; }
 
48617
+# Check whether --enable-cone-plugin was given.
 
48618
+if test "${enable_cone_plugin+set}" = set; then
 
48619
+  enableval=$enable_cone_plugin;
 
48620
 else
 
48621
-  ENABLE_VALA_TRUE='#'
 
48622
-  ENABLE_VALA_FALSE=
 
48623
+  enable_cone_plugin=yes
 
48624
 fi
 
48625
 
 
48626
+{ echo "$as_me:$LINENO: result: $enable_cone_plugin" >&5
 
48627
+echo "${ECHO_T}$enable_cone_plugin" >&6; }
 
48628
 
 
48629
-# ********************
 
48630
-# Movie player plugins
 
48631
-# ********************
 
48632
+fi
 
48633
 
 
48634
-plugin_error_or_ignore()
 
48635
-{
 
48636
-       if test "${error_on_bad_plugin}" = "1" ; then
 
48637
-               { { $as_echo "$as_me:$LINENO: error: $1" >&5
 
48638
-$as_echo "$as_me: error: $1" >&2;}
 
48639
-   { (exit 1); exit 1; }; }
 
48640
-       else
 
48641
-               { $as_echo "$as_me:$LINENO: WARNING: $1 (disabling plugin)" >&5
 
48642
-$as_echo "$as_me: WARNING: $1 (disabling plugin)" >&2;}
 
48643
-       fi
 
48644
-}
 
48645
+ if test "$enable_basic_plugin" = "yes"; then
 
48646
+  ENABLE_BASIC_PLUGIN_TRUE=
 
48647
+  ENABLE_BASIC_PLUGIN_FALSE='#'
 
48648
+else
 
48649
+  ENABLE_BASIC_PLUGIN_TRUE='#'
 
48650
+  ENABLE_BASIC_PLUGIN_FALSE=
 
48651
+fi
 
48652
 
 
48653
+ if test "$enable_gmp_plugin" = "yes"; then
 
48654
+  ENABLE_GMP_PLUGIN_TRUE=
 
48655
+  ENABLE_GMP_PLUGIN_FALSE='#'
 
48656
+else
 
48657
+  ENABLE_GMP_PLUGIN_TRUE='#'
 
48658
+  ENABLE_GMP_PLUGIN_FALSE=
 
48659
+fi
 
48660
 
 
48661
-# Check whether --with-plugins was given.
 
48662
-if test "${with_plugins+set}" = set; then
 
48663
-  withval=$with_plugins;
 
48664
+ if test "$enable_complex_plugin" = "yes"; then
 
48665
+  ENABLE_COMPLEX_PLUGIN_TRUE=
 
48666
+  ENABLE_COMPLEX_PLUGIN_FALSE='#'
 
48667
 else
 
48668
-  with_plugins=autodetect
 
48669
+  ENABLE_COMPLEX_PLUGIN_TRUE='#'
 
48670
+  ENABLE_COMPLEX_PLUGIN_FALSE=
 
48671
 fi
 
48672
 
 
48673
+ if test "$enable_narrowspace_plugin" = "yes"; then
 
48674
+  ENABLE_NARROWSPACE_PLUGIN_TRUE=
 
48675
+  ENABLE_NARROWSPACE_PLUGIN_FALSE='#'
 
48676
+else
 
48677
+  ENABLE_NARROWSPACE_PLUGIN_TRUE='#'
 
48678
+  ENABLE_NARROWSPACE_PLUGIN_FALSE=
 
48679
+fi
 
48680
 
 
48681
-used_plugins=""
 
48682
-used_plugins2=""
 
48683
+ if test "$enable_mully_plugin" = "yes"; then
 
48684
+  ENABLE_MULLY_PLUGIN_TRUE=
 
48685
+  ENABLE_MULLY_PLUGIN_FALSE='#'
 
48686
+else
 
48687
+  ENABLE_MULLY_PLUGIN_TRUE='#'
 
48688
+  ENABLE_MULLY_PLUGIN_FALSE=
 
48689
+fi
 
48690
 
 
48691
-if test "x${with_plugins}" = "xautodetect" ; then
 
48692
-       # Default to all plugins and just ignore them if they won't compile
 
48693
-       with_plugins="all"
 
48694
-       error_on_bad_plugin="0"
 
48695
+ if test "$enable_cone_plugin" = "yes"; then
 
48696
+  ENABLE_CONE_PLUGIN_TRUE=
 
48697
+  ENABLE_CONE_PLUGIN_FALSE='#'
 
48698
 else
 
48699
-       # Clean up the plugin list and error if a plugin won't compile
 
48700
-       with_plugins=`echo ,"${with_plugins}", | sed -e 's/[    ,][     ,]*/ /g' -e 's/,$//'`
 
48701
-       error_on_bad_plugin="1"
 
48702
+  ENABLE_CONE_PLUGIN_TRUE='#'
 
48703
+  ENABLE_CONE_PLUGIN_FALSE=
 
48704
 fi
 
48705
 
 
48706
-# Iterate through the wanted plugins and weed out bad ones (or error)
 
48707
-for wanted_plugin in ${with_plugins}; do
 
48708
-       for allowed_plugin in ${allowed_plugins}; do
 
48709
-               case ${wanted_plugin} in
 
48710
-                       all)
 
48711
-                               # List all plugins as being used
 
48712
-                               used_plugins=${allowed_plugins}
 
48713
-                       ;;
 
48714
-                       autodetect)
 
48715
-                               # List all plugins as being used
 
48716
-                               used_plugins=${allowed_plugins}
 
48717
-                       ;;
 
48718
-                       none) used_plugins="";; # List no plugins
 
48719
-                       ${allowed_plugin}) used_plugins="${used_plugins} ${wanted_plugin}";; # List the plugin
 
48720
-                       *) ;;
 
48721
-               esac
 
48722
-       done
 
48723
-done
 
48724
 
 
48725
-# Check for plugin-specific requirements and error if necessary
 
48726
-for plugin in ${used_plugins}; do
 
48727
-       add_plugin="1"
 
48728
 
 
48729
-       case ${plugin} in
 
48730
-               galago)
 
48731
+# Check whether --enable-nautilus was given.
 
48732
+if test "${enable_nautilus+set}" = set; then
 
48733
+  enableval=$enable_nautilus; case "${enableval}" in
 
48734
+       yes) ENABLE_NAUTILUS=yes ;;
 
48735
+       no) ENABLE_NAUTILUS=no ;;
 
48736
+       *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-nautilus" >&5
 
48737
+echo "$as_me: error: bad value ${enableval} for --enable-nautilus" >&2;}
 
48738
+   { (exit 1); exit 1; }; } ;;
 
48739
+       esac
 
48740
+else
 
48741
+  ENABLE_NAUTILUS=yes
 
48742
+fi
 
48743
+
 
48744
+if test x$ENABLE_NAUTILUS = "xyes" ; then
 
48745
 
 
48746
 pkg_failed=no
 
48747
-{ $as_echo "$as_me:$LINENO: checking for LIBGALAGO" >&5
 
48748
-$as_echo_n "checking for LIBGALAGO... " >&6; }
 
48749
+{ echo "$as_me:$LINENO: checking for NAUTILUS" >&5
 
48750
+echo $ECHO_N "checking for NAUTILUS... $ECHO_C" >&6; }
 
48751
 
 
48752
-if test -n "$LIBGALAGO_CFLAGS"; then
 
48753
-    pkg_cv_LIBGALAGO_CFLAGS="$LIBGALAGO_CFLAGS"
 
48754
- elif test -n "$PKG_CONFIG"; then
 
48755
-    if test -n "$PKG_CONFIG" && \
 
48756
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libgalago >= 0.5.2\"") >&5
 
48757
-  ($PKG_CONFIG --exists --print-errors "libgalago >= 0.5.2") 2>&5
36799
48758
+if test -n "$PKG_CONFIG"; then
36800
48759
+    if test -n "$NAUTILUS_CFLAGS"; then
36801
 
     pkg_cv_NAUTILUS_CFLAGS="$NAUTILUS_CFLAGS"
36802
 
- elif test -n "$PKG_CONFIG"; then
 
48760
+        pkg_cv_NAUTILUS_CFLAGS="$NAUTILUS_CFLAGS"
36803
48761
+    else
36804
 
     if test -n "$PKG_CONFIG" && \
36805
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 gthread-2.0 libnautilus-extension\"") >&5
36806
 
   ($PKG_CONFIG --exists --print-errors "gtk+-2.0 gthread-2.0 libnautilus-extension") 2>&5
36807
 
@@ -25707,12 +23046,14 @@
 
48762
+        if test -n "$PKG_CONFIG" && \
 
48763
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 gthread-2.0 libnautilus-extension\"") >&5
 
48764
+  ($PKG_CONFIG --exists --print-errors "gtk+-2.0 gthread-2.0 libnautilus-extension") 2>&5
 
48765
   ac_status=$?
 
48766
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48767
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48768
   (exit $ac_status); }; then
 
48769
-  pkg_cv_LIBGALAGO_CFLAGS=`$PKG_CONFIG --cflags "libgalago >= 0.5.2" 2>/dev/null`
 
48770
+  pkg_cv_NAUTILUS_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 gthread-2.0 libnautilus-extension" 2>/dev/null`
36808
48771
 else
36809
48772
   pkg_failed=yes
36810
48773
 fi
36811
48774
- else
 
48775
-    pkg_failed=untried
36812
48776
+    fi
36813
48777
+else
36814
 
     pkg_failed=untried
 
48778
+       pkg_failed=untried
36815
48779
 fi
36816
 
-if test -n "$NAUTILUS_LIBS"; then
 
48780
-if test -n "$LIBGALAGO_LIBS"; then
 
48781
-    pkg_cv_LIBGALAGO_LIBS="$LIBGALAGO_LIBS"
 
48782
- elif test -n "$PKG_CONFIG"; then
 
48783
-    if test -n "$PKG_CONFIG" && \
 
48784
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libgalago >= 0.5.2\"") >&5
 
48785
-  ($PKG_CONFIG --exists --print-errors "libgalago >= 0.5.2") 2>&5
36817
48786
+if test -n "$PKG_CONFIG"; then
36818
48787
+    if test -n "$NAUTILUS_LIBS"; then
36819
 
     pkg_cv_NAUTILUS_LIBS="$NAUTILUS_LIBS"
36820
 
- elif test -n "$PKG_CONFIG"; then
 
48788
+        pkg_cv_NAUTILUS_LIBS="$NAUTILUS_LIBS"
36821
48789
+    else
36822
 
     if test -n "$PKG_CONFIG" && \
36823
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 gthread-2.0 libnautilus-extension\"") >&5
36824
 
   ($PKG_CONFIG --exists --print-errors "gtk+-2.0 gthread-2.0 libnautilus-extension") 2>&5
36825
 
@@ -25723,7 +23064,8 @@
 
48790
+        if test -n "$PKG_CONFIG" && \
 
48791
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 gthread-2.0 libnautilus-extension\"") >&5
 
48792
+  ($PKG_CONFIG --exists --print-errors "gtk+-2.0 gthread-2.0 libnautilus-extension") 2>&5
 
48793
   ac_status=$?
 
48794
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48795
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48796
   (exit $ac_status); }; then
 
48797
-  pkg_cv_LIBGALAGO_LIBS=`$PKG_CONFIG --libs "libgalago >= 0.5.2" 2>/dev/null`
 
48798
+  pkg_cv_NAUTILUS_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 gthread-2.0 libnautilus-extension" 2>/dev/null`
36826
48799
 else
36827
48800
   pkg_failed=yes
36828
48801
 fi
36829
48802
- else
 
48803
-    pkg_failed=untried
36830
48804
+    fi
36831
48805
+else
36832
 
     pkg_failed=untried
 
48806
+       pkg_failed=untried
36833
48807
 fi
36834
48808
 
36835
 
@@ -25737,9 +23079,9 @@
 
48809
 
 
48810
@@ -25192,73 +23079,97 @@
36836
48811
         _pkg_short_errors_supported=no
36837
48812
 fi
36838
48813
         if test $_pkg_short_errors_supported = yes; then
36839
 
-               NAUTILUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gtk+-2.0 gthread-2.0 libnautilus-extension" 2>&1`
 
48814
-               LIBGALAGO_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "libgalago >= 0.5.2" 2>&1`
36840
48815
+               NAUTILUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gtk+-2.0 gthread-2.0 libnautilus-extension"`
36841
48816
         else
36842
 
-               NAUTILUS_PKG_ERRORS=`$PKG_CONFIG --print-errors "gtk+-2.0 gthread-2.0 libnautilus-extension" 2>&1`
 
48817
-               LIBGALAGO_PKG_ERRORS=`$PKG_CONFIG --print-errors "libgalago >= 0.5.2" 2>&1`
36843
48818
+               NAUTILUS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtk+-2.0 gthread-2.0 libnautilus-extension"`
36844
48819
         fi
36845
48820
        # Put the nasty error message in config.log where it belongs
36846
 
        echo "$NAUTILUS_PKG_ERRORS" >&5
36847
 
@@ -25793,9 +23135,10 @@
36848
 
 { echo "$as_me:$LINENO: checking for DBUS" >&5
36849
 
 echo $ECHO_N "checking for DBUS... $ECHO_C" >&6; }
36850
 
 
36851
 
-if test -n "$DBUS_CFLAGS"; then
 
48821
-       echo "$LIBGALAGO_PKG_ERRORS" >&5
 
48822
+       echo "$NAUTILUS_PKG_ERRORS" >&5
 
48823
 
 
48824
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
48825
-$as_echo "no" >&6; }
 
48826
-                HAVE_LIBGALAGO=no
 
48827
+       { echo "$as_me:$LINENO: result: no" >&5
 
48828
+echo "${ECHO_T}no" >&6; }
 
48829
+                HAVE_NAUTILUS=no
 
48830
 elif test $pkg_failed = untried; then
 
48831
-       HAVE_LIBGALAGO=no
 
48832
+       HAVE_NAUTILUS=no
 
48833
 else
 
48834
-       LIBGALAGO_CFLAGS=$pkg_cv_LIBGALAGO_CFLAGS
 
48835
-       LIBGALAGO_LIBS=$pkg_cv_LIBGALAGO_LIBS
 
48836
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
48837
-$as_echo "yes" >&6; }
 
48838
-       HAVE_LIBGALAGO=yes
 
48839
+       NAUTILUS_CFLAGS=$pkg_cv_NAUTILUS_CFLAGS
 
48840
+       NAUTILUS_LIBS=$pkg_cv_NAUTILUS_LIBS
 
48841
+        { echo "$as_me:$LINENO: result: yes" >&5
 
48842
+echo "${ECHO_T}yes" >&6; }
 
48843
+       HAVE_NAUTILUS=yes
 
48844
 fi
 
48845
-                       if test "${HAVE_LIBGALAGO}" != "yes" ; then
 
48846
-                               plugin_error_or_ignore "you need libgalago >= 0.5.2 installed for the galago plugin"
 
48847
-                               add_plugin="0"
 
48848
-                       fi
 
48849
-               ;;
 
48850
-               gromit)
 
48851
-                       if test "${have_x11}" != "yes" ; then
 
48852
-                               plugin_error_or_ignore "the gromit plugin is not supported on non-X11 targets"
 
48853
-                               add_plugin="0"
 
48854
-                       fi
 
48855
-               ;;
 
48856
-               media-player-keys)
 
48857
+fi
 
48858
+
 
48859
+NAUTILUS_LIBS="$NAUTILUS_LIBS $EXTRA_BACKEND_LIBS"
 
48860
+
 
48861
+
 
48862
+if test x$HAVE_NAUTILUS = "xyes"; then
 
48863
+
 
48864
+cat >>confdefs.h <<\_ACEOF
 
48865
+#define HAVE_NAUTILUS 1
 
48866
+_ACEOF
 
48867
+
 
48868
+       NAUTILUSDIR=`pkg-config --variable=extensiondir libnautilus-extension`
 
48869
+
 
48870
+fi
 
48871
+ if test x$HAVE_NAUTILUS = "xyes"; then
 
48872
+  HAVE_NAUTILUS_TRUE=
 
48873
+  HAVE_NAUTILUS_FALSE='#'
 
48874
+else
 
48875
+  HAVE_NAUTILUS_TRUE='#'
 
48876
+  HAVE_NAUTILUS_FALSE=
 
48877
+fi
 
48878
+
 
48879
+
 
48880
+
 
48881
+# Check whether --with-dbus was given.
 
48882
+if test "${with_dbus+set}" = set; then
 
48883
+  withval=$with_dbus;
 
48884
+else
 
48885
+  with_dbus=auto
 
48886
+fi
 
48887
+
 
48888
+if test "x$with_dbus" != "xno"; then
 
48889
 
 
48890
 pkg_failed=no
 
48891
-{ $as_echo "$as_me:$LINENO: checking for MEDIA_PLAYER_KEYS" >&5
 
48892
-$as_echo_n "checking for MEDIA_PLAYER_KEYS... " >&6; }
 
48893
+{ echo "$as_me:$LINENO: checking for DBUS" >&5
 
48894
+echo $ECHO_N "checking for DBUS... $ECHO_C" >&6; }
 
48895
 
 
48896
-if test -n "$MEDIA_PLAYER_KEYS_CFLAGS"; then
 
48897
-    pkg_cv_MEDIA_PLAYER_KEYS_CFLAGS="$MEDIA_PLAYER_KEYS_CFLAGS"
 
48898
- elif test -n "$PKG_CONFIG"; then
 
48899
-    if test -n "$PKG_CONFIG" && \
 
48900
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1\"") >&5
 
48901
-  ($PKG_CONFIG --exists --print-errors "dbus-glib-1") 2>&5
36852
48902
+if test -n "$PKG_CONFIG"; then
36853
48903
+    if test -n "$DBUS_CFLAGS"; then
36854
 
     pkg_cv_DBUS_CFLAGS="$DBUS_CFLAGS"
36855
 
- elif test -n "$PKG_CONFIG"; then
 
48904
+        pkg_cv_DBUS_CFLAGS="$DBUS_CFLAGS"
36856
48905
+    else
36857
 
     if test -n "$PKG_CONFIG" && \
36858
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1 >= \$DBUS_REQS\"") >&5
36859
 
   ($PKG_CONFIG --exists --print-errors "dbus-glib-1 >= $DBUS_REQS") 2>&5
36860
 
@@ -25806,12 +23149,14 @@
 
48906
+        if test -n "$PKG_CONFIG" && \
 
48907
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1 >= \$DBUS_REQS\"") >&5
 
48908
+  ($PKG_CONFIG --exists --print-errors "dbus-glib-1 >= $DBUS_REQS") 2>&5
 
48909
   ac_status=$?
 
48910
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48911
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48912
   (exit $ac_status); }; then
 
48913
-  pkg_cv_MEDIA_PLAYER_KEYS_CFLAGS=`$PKG_CONFIG --cflags "dbus-glib-1" 2>/dev/null`
 
48914
+  pkg_cv_DBUS_CFLAGS=`$PKG_CONFIG --cflags "dbus-glib-1 >= $DBUS_REQS" 2>/dev/null`
36861
48915
 else
36862
48916
   pkg_failed=yes
36863
48917
 fi
36864
48918
- else
 
48919
-    pkg_failed=untried
36865
48920
+    fi
36866
48921
+else
36867
 
     pkg_failed=untried
 
48922
+       pkg_failed=untried
36868
48923
 fi
36869
 
-if test -n "$DBUS_LIBS"; then
 
48924
-if test -n "$MEDIA_PLAYER_KEYS_LIBS"; then
 
48925
-    pkg_cv_MEDIA_PLAYER_KEYS_LIBS="$MEDIA_PLAYER_KEYS_LIBS"
 
48926
- elif test -n "$PKG_CONFIG"; then
 
48927
-    if test -n "$PKG_CONFIG" && \
 
48928
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1\"") >&5
 
48929
-  ($PKG_CONFIG --exists --print-errors "dbus-glib-1") 2>&5
36870
48930
+if test -n "$PKG_CONFIG"; then
36871
48931
+    if test -n "$DBUS_LIBS"; then
36872
 
     pkg_cv_DBUS_LIBS="$DBUS_LIBS"
36873
 
- elif test -n "$PKG_CONFIG"; then
 
48932
+        pkg_cv_DBUS_LIBS="$DBUS_LIBS"
36874
48933
+    else
36875
 
     if test -n "$PKG_CONFIG" && \
36876
 
     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1 >= \$DBUS_REQS\"") >&5
36877
 
   ($PKG_CONFIG --exists --print-errors "dbus-glib-1 >= $DBUS_REQS") 2>&5
36878
 
@@ -25822,7 +23167,8 @@
 
48934
+        if test -n "$PKG_CONFIG" && \
 
48935
+    { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1 >= \$DBUS_REQS\"") >&5
 
48936
+  ($PKG_CONFIG --exists --print-errors "dbus-glib-1 >= $DBUS_REQS") 2>&5
 
48937
   ac_status=$?
 
48938
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48939
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
48940
   (exit $ac_status); }; then
 
48941
-  pkg_cv_MEDIA_PLAYER_KEYS_LIBS=`$PKG_CONFIG --libs "dbus-glib-1" 2>/dev/null`
 
48942
+  pkg_cv_DBUS_LIBS=`$PKG_CONFIG --libs "dbus-glib-1 >= $DBUS_REQS" 2>/dev/null`
36879
48943
 else
36880
48944
   pkg_failed=yes
36881
48945
 fi
36882
48946
- else
 
48947
-    pkg_failed=untried
36883
48948
+    fi
36884
48949
+else
36885
 
     pkg_failed=untried
 
48950
+       pkg_failed=untried
36886
48951
 fi
36887
48952
 
36888
 
@@ -25836,9 +23182,9 @@
 
48953
 
 
48954
@@ -25271,3375 +23182,3388 @@
36889
48955
         _pkg_short_errors_supported=no
36890
48956
 fi
36891
48957
         if test $_pkg_short_errors_supported = yes; then
36892
 
-               DBUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "dbus-glib-1 >= $DBUS_REQS" 2>&1`
 
48958
-               MEDIA_PLAYER_KEYS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "dbus-glib-1" 2>&1`
36893
48959
+               DBUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "dbus-glib-1 >= $DBUS_REQS"`
36894
48960
         else
36895
 
-               DBUS_PKG_ERRORS=`$PKG_CONFIG --print-errors "dbus-glib-1 >= $DBUS_REQS" 2>&1`
 
48961
-               MEDIA_PLAYER_KEYS_PKG_ERRORS=`$PKG_CONFIG --print-errors "dbus-glib-1" 2>&1`
36896
48962
+               DBUS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "dbus-glib-1 >= $DBUS_REQS"`
36897
48963
         fi
36898
48964
        # Put the nasty error message in config.log where it belongs
36899
 
        echo "$DBUS_PKG_ERRORS" >&5
36900
 
@@ -26294,7 +23640,7 @@
36901
 
 
36902
 
 
36903
 
 
36904
 
-ac_config_files="$ac_config_files Makefile totem.spec lib/Makefile src/Makefile src/plugins/Makefile src/plugins/bemused/Makefile src/plugins/screensaver/Makefile src/plugins/ontop/Makefile src/plugins/galago/Makefile src/plugins/gromit/Makefile src/plugins/lirc/Makefile src/plugins/media-player-keys/Makefile src/plugins/mythtv/Makefile src/plugins/properties/Makefile src/plugins/sidebar-test/Makefile src/plugins/skipto/Makefile src/plugins/sample-python/Makefile src/plugins/sample-vala/Makefile src/plugins/thumbnail/Makefile src/plugins/totem/Makefile src/plugins/tracker/Makefile src/plugins/youtube/Makefile src/plugins/pythonconsole/Makefile src/plugins/publish/Makefile src/backend/Makefile browser-plugin/Makefile data/Makefile data/totem.desktop.in.in data/icons/Makefile data/icons/16x16/Makefile data/icons/22x22/Makefile data/icons/24x24/Makefile data/icons/32x32/Makefile data/icons/48x48/Makefile data/icons/scalable/Makefile po/Makefile.in help/Makefile help/bg/Makefile bindings/Makefile bindings/python/Makefile bindings/vala/Makefile"
 
48965
-       echo "$MEDIA_PLAYER_KEYS_PKG_ERRORS" >&5
 
48966
+       echo "$DBUS_PKG_ERRORS" >&5
 
48967
 
 
48968
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
48969
-$as_echo "no" >&6; }
 
48970
-                HAVE_MEDIA_PLAYER_KEYS=no
 
48971
+       { echo "$as_me:$LINENO: result: no" >&5
 
48972
+echo "${ECHO_T}no" >&6; }
 
48973
+                enable_dbus=no
 
48974
 elif test $pkg_failed = untried; then
 
48975
-       HAVE_MEDIA_PLAYER_KEYS=no
 
48976
+       enable_dbus=no
 
48977
 else
 
48978
-       MEDIA_PLAYER_KEYS_CFLAGS=$pkg_cv_MEDIA_PLAYER_KEYS_CFLAGS
 
48979
-       MEDIA_PLAYER_KEYS_LIBS=$pkg_cv_MEDIA_PLAYER_KEYS_LIBS
 
48980
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
48981
-$as_echo "yes" >&6; }
 
48982
-       HAVE_MEDIA_PLAYER_KEYS=yes
 
48983
+       DBUS_CFLAGS=$pkg_cv_DBUS_CFLAGS
 
48984
+       DBUS_LIBS=$pkg_cv_DBUS_LIBS
 
48985
+        { echo "$as_me:$LINENO: result: yes" >&5
 
48986
+echo "${ECHO_T}yes" >&6; }
 
48987
+       enable_dbus=yes
 
48988
 fi
 
48989
-                       if test "${HAVE_MEDIA_PLAYER_KEYS}" != "yes" ; then
 
48990
-                               plugin_error_or_ignore "you need dbus-glib-1 installed for the media-player-keys plugin"
 
48991
-                               add_plugin="0"
 
48992
-                       fi
 
48993
-               ;;
 
48994
-               lirc)
 
48995
-                       { $as_echo "$as_me:$LINENO: checking for lirc_init in -llirc_client" >&5
 
48996
-$as_echo_n "checking for lirc_init in -llirc_client... " >&6; }
 
48997
-if test "${ac_cv_lib_lirc_client_lirc_init+set}" = set; then
 
48998
-  $as_echo_n "(cached) " >&6
 
48999
+        if test "x$with_dbus" = xyes && test "x$enable_dbus" = xno; then
 
49000
+          { { echo "$as_me:$LINENO: error: D-BUS explicitly requested but no support found" >&5
 
49001
+echo "$as_me: error: D-BUS explicitly requested but no support found" >&2;}
 
49002
+   { (exit 1); exit 1; }; }
 
49003
+       fi
 
49004
+        if test "x$enable_dbus" = xyes; then
 
49005
+
 
49006
+cat >>confdefs.h <<\_ACEOF
 
49007
+#define WITH_DBUS 1
 
49008
+_ACEOF
 
49009
+
 
49010
+       fi
 
49011
+fi
 
49012
+ if test "x$enable_dbus" = "xyes"; then
 
49013
+  WITH_DBUS_TRUE=
 
49014
+  WITH_DBUS_FALSE='#'
 
49015
 else
 
49016
-  ac_check_lib_save_LIBS=$LIBS
 
49017
-LIBS="-llirc_client  $LIBS"
 
49018
-cat >conftest.$ac_ext <<_ACEOF
 
49019
+  WITH_DBUS_TRUE='#'
 
49020
+  WITH_DBUS_FALSE=
 
49021
+fi
 
49022
+
 
49023
+
 
49024
+# Extract the first word of "gconftool-2", so it can be a program name with args.
 
49025
+set dummy gconftool-2; ac_word=$2
 
49026
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
49027
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
49028
+if test "${ac_cv_path_GCONFTOOL+set}" = set; then
 
49029
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
49030
+else
 
49031
+  case $GCONFTOOL in
 
49032
+  [\\/]* | ?:[\\/]*)
 
49033
+  ac_cv_path_GCONFTOOL="$GCONFTOOL" # Let the user override the test with a path.
 
49034
+  ;;
 
49035
+  *)
 
49036
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
49037
+for as_dir in $PATH
 
49038
+do
 
49039
+  IFS=$as_save_IFS
 
49040
+  test -z "$as_dir" && as_dir=.
 
49041
+  for ac_exec_ext in '' $ac_executable_extensions; do
 
49042
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
49043
+    ac_cv_path_GCONFTOOL="$as_dir/$ac_word$ac_exec_ext"
 
49044
+    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
49045
+    break 2
 
49046
+  fi
 
49047
+done
 
49048
+done
 
49049
+IFS=$as_save_IFS
 
49050
+
 
49051
+  ;;
 
49052
+esac
 
49053
+fi
 
49054
+GCONFTOOL=$ac_cv_path_GCONFTOOL
 
49055
+if test -n "$GCONFTOOL"; then
 
49056
+  { echo "$as_me:$LINENO: result: $GCONFTOOL" >&5
 
49057
+echo "${ECHO_T}$GCONFTOOL" >&6; }
 
49058
+else
 
49059
+  { echo "$as_me:$LINENO: result: no" >&5
 
49060
+echo "${ECHO_T}no" >&6; }
 
49061
+fi
 
49062
+
 
49063
+
 
49064
+
 
49065
+  if test "x$GCONF_SCHEMA_INSTALL_SOURCE" = "x"; then
 
49066
+    GCONF_SCHEMA_CONFIG_SOURCE=`gconftool-2 --get-default-source`
 
49067
+  else
 
49068
+    GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE
 
49069
+  fi
 
49070
+
 
49071
+
 
49072
+# Check whether --with-gconf-source was given.
 
49073
+if test "${with_gconf_source+set}" = set; then
 
49074
+  withval=$with_gconf_source; GCONF_SCHEMA_CONFIG_SOURCE="$withval"
 
49075
+fi
 
49076
+
 
49077
+
 
49078
+
 
49079
+  { echo "$as_me:$LINENO: result: Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation" >&5
 
49080
+echo "${ECHO_T}Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation" >&6; }
 
49081
+
 
49082
+  if test "x$GCONF_SCHEMA_FILE_DIR" = "x"; then
 
49083
+    GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas'
 
49084
+  fi
 
49085
+
 
49086
+
 
49087
+# Check whether --with-gconf-schema-file-dir was given.
 
49088
+if test "${with_gconf_schema_file_dir+set}" = set; then
 
49089
+  withval=$with_gconf_schema_file_dir; GCONF_SCHEMA_FILE_DIR="$withval"
 
49090
+fi
 
49091
+
 
49092
+
 
49093
+
 
49094
+  { echo "$as_me:$LINENO: result: Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files" >&5
 
49095
+echo "${ECHO_T}Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files" >&6; }
 
49096
+
 
49097
+  # Check whether --enable-schemas-install was given.
 
49098
+if test "${enable_schemas_install+set}" = set; then
 
49099
+  enableval=$enable_schemas_install; case ${enableval} in
 
49100
+       yes|no) ;;
 
49101
+       *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-schemas-install" >&5
 
49102
+echo "$as_me: error: bad value ${enableval} for --enable-schemas-install" >&2;}
 
49103
+   { (exit 1); exit 1; }; } ;;
 
49104
+      esac
 
49105
+fi
 
49106
+
 
49107
+   if test "$enable_schemas_install" != no; then
 
49108
+  GCONF_SCHEMAS_INSTALL_TRUE=
 
49109
+  GCONF_SCHEMAS_INSTALL_FALSE='#'
 
49110
+else
 
49111
+  GCONF_SCHEMAS_INSTALL_TRUE='#'
 
49112
+  GCONF_SCHEMAS_INSTALL_FALSE=
 
49113
+fi
 
49114
+
 
49115
+
 
49116
+
 
49117
+
 
49118
+
 
49119
+
 
49120
+      ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}"
 
49121
+  if test -n "$ac_macro_dir"; then
 
49122
+    ACLOCAL_AMFLAGS="-I $ac_macro_dir $ACLOCAL_AMFLAGS"
 
49123
+  fi
 
49124
+
 
49125
+
 
49126
+
 
49127
+
 
49128
+       # Check whether --enable-debug was given.
 
49129
+if test "${enable_debug+set}" = set; then
 
49130
+  enableval=$enable_debug;
 
49131
+else
 
49132
+  enable_debug=no
 
49133
+fi
 
49134
+
 
49135
+
 
49136
+       if test x$enable_debug = xyes ; then
 
49137
+
 
49138
+cat >>confdefs.h <<\_ACEOF
 
49139
+#define GNOME_ENABLE_DEBUG 1
 
49140
+_ACEOF
 
49141
+
 
49142
+       fi
 
49143
+
 
49144
+
 
49145
+
 
49146
+    # Check whether --enable-compile-warnings was given.
 
49147
+if test "${enable_compile_warnings+set}" = set; then
 
49148
+  enableval=$enable_compile_warnings;
 
49149
+else
 
49150
+  enable_compile_warnings="maximum"
 
49151
+fi
 
49152
+
 
49153
+
 
49154
+    warnCFLAGS=
 
49155
+    if test "x$GCC" != xyes; then
 
49156
+       enable_compile_warnings=no
 
49157
+    fi
 
49158
+
 
49159
+    warning_flags=
 
49160
+    realsave_CFLAGS="$CFLAGS"
 
49161
+
 
49162
+    case "$enable_compile_warnings" in
 
49163
+    no)
 
49164
+       warning_flags=
 
49165
+       ;;
 
49166
+    minimum)
 
49167
+       warning_flags="-Wall"
 
49168
+       ;;
 
49169
+    yes)
 
49170
+       warning_flags="-Wall -Wmissing-prototypes"
 
49171
+       ;;
 
49172
+    maximum|error)
 
49173
+       warning_flags="-Wall -Wmissing-prototypes -Wnested-externs -Wpointer-arith"
 
49174
+       CFLAGS="$warning_flags $CFLAGS"
 
49175
+       for option in -Wno-sign-compare; do
 
49176
+               SAVE_CFLAGS="$CFLAGS"
 
49177
+               CFLAGS="$CFLAGS $option"
 
49178
+               { echo "$as_me:$LINENO: checking whether gcc understands $option" >&5
 
49179
+echo $ECHO_N "checking whether gcc understands $option... $ECHO_C" >&6; }
 
49180
+               cat >conftest.$ac_ext <<_ACEOF
 
49181
 /* confdefs.h.  */
 
49182
 _ACEOF
 
49183
 cat confdefs.h >>conftest.$ac_ext
 
49184
 cat >>conftest.$ac_ext <<_ACEOF
 
49185
 /* end confdefs.h.  */
 
49186
 
 
49187
-/* Override any GCC internal prototype to avoid an error.
 
49188
-   Use char because int might match the return type of a GCC
 
49189
-   builtin and then its argument prototype would still apply.  */
 
49190
-#ifdef __cplusplus
 
49191
-extern "C"
 
49192
-#endif
 
49193
-char lirc_init ();
 
49194
 int
 
49195
 main ()
 
49196
 {
 
49197
-return lirc_init ();
 
49198
+
 
49199
   ;
 
49200
   return 0;
 
49201
 }
 
49202
 _ACEOF
 
49203
-rm -f conftest.$ac_objext conftest$ac_exeext
 
49204
-if { (ac_try="$ac_link"
 
49205
-case "(($ac_try" in
 
49206
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
49207
-  *) ac_try_echo=$ac_try;;
 
49208
-esac
 
49209
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
49210
-$as_echo "$ac_try_echo") >&5
 
49211
-  (eval "$ac_link") 2>conftest.er1
 
49212
-  ac_status=$?
 
49213
-  grep -v '^ *+' conftest.er1 >conftest.err
 
49214
-  rm -f conftest.er1
 
49215
-  cat conftest.err >&5
 
49216
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
49217
-  (exit $ac_status); } && {
 
49218
-        test -z "$ac_c_werror_flag" ||
 
49219
-        test ! -s conftest.err
 
49220
-       } && test -s conftest$ac_exeext && {
 
49221
-        test "$cross_compiling" = yes ||
 
49222
-        $as_test_x conftest$ac_exeext
 
49223
-       }; then
 
49224
-  ac_cv_lib_lirc_client_lirc_init=yes
 
49225
-else
 
49226
-  $as_echo "$as_me: failed program was:" >&5
 
49227
-sed 's/^/| /' conftest.$ac_ext >&5
 
49228
-
 
49229
-       ac_cv_lib_lirc_client_lirc_init=no
 
49230
-fi
 
49231
-
 
49232
-rm -rf conftest.dSYM
 
49233
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
49234
-      conftest$ac_exeext conftest.$ac_ext
 
49235
-LIBS=$ac_check_lib_save_LIBS
 
49236
-fi
 
49237
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_lirc_client_lirc_init" >&5
 
49238
-$as_echo "$ac_cv_lib_lirc_client_lirc_init" >&6; }
 
49239
-if test "x$ac_cv_lib_lirc_client_lirc_init" = x""yes; then
 
49240
-  if test "${ac_cv_header_lirc_lirc_client_h+set}" = set; then
 
49241
-  { $as_echo "$as_me:$LINENO: checking for lirc/lirc_client.h" >&5
 
49242
-$as_echo_n "checking for lirc/lirc_client.h... " >&6; }
 
49243
-if test "${ac_cv_header_lirc_lirc_client_h+set}" = set; then
 
49244
-  $as_echo_n "(cached) " >&6
 
49245
-fi
 
49246
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_lirc_lirc_client_h" >&5
 
49247
-$as_echo "$ac_cv_header_lirc_lirc_client_h" >&6; }
 
49248
-else
 
49249
-  # Is the header compilable?
 
49250
-{ $as_echo "$as_me:$LINENO: checking lirc/lirc_client.h usability" >&5
 
49251
-$as_echo_n "checking lirc/lirc_client.h usability... " >&6; }
 
49252
-cat >conftest.$ac_ext <<_ACEOF
 
49253
-/* confdefs.h.  */
 
49254
-_ACEOF
 
49255
-cat confdefs.h >>conftest.$ac_ext
 
49256
-cat >>conftest.$ac_ext <<_ACEOF
 
49257
-/* end confdefs.h.  */
 
49258
-$ac_includes_default
 
49259
-#include <lirc/lirc_client.h>
 
49260
-_ACEOF
 
49261
 rm -f conftest.$ac_objext
 
49262
 if { (ac_try="$ac_compile"
 
49263
 case "(($ac_try" in
 
49264
   *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
49265
   *) ac_try_echo=$ac_try;;
 
49266
 esac
 
49267
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
49268
-$as_echo "$ac_try_echo") >&5
 
49269
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
49270
   (eval "$ac_compile") 2>conftest.er1
 
49271
   ac_status=$?
 
49272
   grep -v '^ *+' conftest.er1 >conftest.err
 
49273
   rm -f conftest.er1
 
49274
   cat conftest.err >&5
 
49275
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
49276
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
49277
   (exit $ac_status); } && {
 
49278
         test -z "$ac_c_werror_flag" ||
 
49279
         test ! -s conftest.err
 
49280
        } && test -s conftest.$ac_objext; then
 
49281
-  ac_header_compiler=yes
 
49282
+  has_option=yes
 
49283
 else
 
49284
-  $as_echo "$as_me: failed program was:" >&5
 
49285
+  echo "$as_me: failed program was:" >&5
 
49286
 sed 's/^/| /' conftest.$ac_ext >&5
 
49287
 
 
49288
-       ac_header_compiler=no
 
49289
+       has_option=no
 
49290
 fi
 
49291
 
 
49292
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
49293
-{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
49294
-$as_echo "$ac_header_compiler" >&6; }
 
49295
-
 
49296
-# Is the header present?
 
49297
-{ $as_echo "$as_me:$LINENO: checking lirc/lirc_client.h presence" >&5
 
49298
-$as_echo_n "checking lirc/lirc_client.h presence... " >&6; }
 
49299
-cat >conftest.$ac_ext <<_ACEOF
 
49300
-/* confdefs.h.  */
 
49301
-_ACEOF
 
49302
-cat confdefs.h >>conftest.$ac_ext
 
49303
-cat >>conftest.$ac_ext <<_ACEOF
 
49304
-/* end confdefs.h.  */
 
49305
-#include <lirc/lirc_client.h>
 
49306
-_ACEOF
 
49307
-if { (ac_try="$ac_cpp conftest.$ac_ext"
 
49308
-case "(($ac_try" in
 
49309
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
49310
-  *) ac_try_echo=$ac_try;;
 
49311
-esac
 
49312
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
49313
-$as_echo "$ac_try_echo") >&5
 
49314
-  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
49315
-  ac_status=$?
 
49316
-  grep -v '^ *+' conftest.er1 >conftest.err
 
49317
-  rm -f conftest.er1
 
49318
-  cat conftest.err >&5
 
49319
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
49320
-  (exit $ac_status); } >/dev/null && {
 
49321
-        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
49322
-        test ! -s conftest.err
 
49323
-       }; then
 
49324
-  ac_header_preproc=yes
 
49325
-else
 
49326
-  $as_echo "$as_me: failed program was:" >&5
 
49327
-sed 's/^/| /' conftest.$ac_ext >&5
 
49328
-
 
49329
-  ac_header_preproc=no
 
49330
-fi
 
49331
-
 
49332
-rm -f conftest.err conftest.$ac_ext
 
49333
-{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
49334
-$as_echo "$ac_header_preproc" >&6; }
 
49335
-
 
49336
-# So?  What about this header?
 
49337
-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
 
49338
-  yes:no: )
 
49339
-    { $as_echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: accepted by the compiler, rejected by the preprocessor!" >&5
 
49340
-$as_echo "$as_me: WARNING: lirc/lirc_client.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
 
49341
-    { $as_echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: proceeding with the compiler's result" >&5
 
49342
-$as_echo "$as_me: WARNING: lirc/lirc_client.h: proceeding with the compiler's result" >&2;}
 
49343
-    ac_header_preproc=yes
 
49344
-    ;;
 
49345
-  no:yes:* )
 
49346
-    { $as_echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: present but cannot be compiled" >&5
 
49347
-$as_echo "$as_me: WARNING: lirc/lirc_client.h: present but cannot be compiled" >&2;}
 
49348
-    { $as_echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h:     check for missing prerequisite headers?" >&5
 
49349
-$as_echo "$as_me: WARNING: lirc/lirc_client.h:     check for missing prerequisite headers?" >&2;}
 
49350
-    { $as_echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: see the Autoconf documentation" >&5
 
49351
-$as_echo "$as_me: WARNING: lirc/lirc_client.h: see the Autoconf documentation" >&2;}
 
49352
-    { $as_echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h:     section \"Present But Cannot Be Compiled\"" >&5
 
49353
-$as_echo "$as_me: WARNING: lirc/lirc_client.h:     section \"Present But Cannot Be Compiled\"" >&2;}
 
49354
-    { $as_echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: proceeding with the preprocessor's result" >&5
 
49355
-$as_echo "$as_me: WARNING: lirc/lirc_client.h: proceeding with the preprocessor's result" >&2;}
 
49356
-    { $as_echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: in the future, the compiler will take precedence" >&5
 
49357
-$as_echo "$as_me: WARNING: lirc/lirc_client.h: in the future, the compiler will take precedence" >&2;}
 
49358
-    ( cat <<\_ASBOX
 
49359
-## -------------------------------------------------------------------- ##
 
49360
-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=totem ##
 
49361
-## -------------------------------------------------------------------- ##
 
49362
-_ASBOX
 
49363
-     ) | sed "s/^/$as_me: WARNING:     /" >&2
 
49364
-    ;;
 
49365
-esac
 
49366
-{ $as_echo "$as_me:$LINENO: checking for lirc/lirc_client.h" >&5
 
49367
-$as_echo_n "checking for lirc/lirc_client.h... " >&6; }
 
49368
-if test "${ac_cv_header_lirc_lirc_client_h+set}" = set; then
 
49369
-  $as_echo_n "(cached) " >&6
 
49370
-else
 
49371
-  ac_cv_header_lirc_lirc_client_h=$ac_header_preproc
 
49372
-fi
 
49373
-{ $as_echo "$as_me:$LINENO: result: $ac_cv_header_lirc_lirc_client_h" >&5
 
49374
-$as_echo "$ac_cv_header_lirc_lirc_client_h" >&6; }
 
49375
+               CFLAGS="$SAVE_CFLAGS"
 
49376
+               { echo "$as_me:$LINENO: result: $has_option" >&5
 
49377
+echo "${ECHO_T}$has_option" >&6; }
 
49378
+               if test $has_option = yes; then
 
49379
+                 warning_flags="$warning_flags $option"
 
49380
+               fi
 
49381
+               unset has_option
 
49382
+               unset SAVE_CFLAGS
 
49383
+       done
 
49384
+       unset option
 
49385
+       if test "$enable_compile_warnings" = "error" ; then
 
49386
+           warning_flags="$warning_flags -Werror"
 
49387
+       fi
 
49388
+       ;;
 
49389
+    *)
 
49390
+       { { echo "$as_me:$LINENO: error: Unknown argument '$enable_compile_warnings' to --enable-compile-warnings" >&5
 
49391
+echo "$as_me: error: Unknown argument '$enable_compile_warnings' to --enable-compile-warnings" >&2;}
 
49392
+   { (exit 1); exit 1; }; }
 
49393
+       ;;
 
49394
+    esac
 
49395
+    CFLAGS="$realsave_CFLAGS"
 
49396
+    { echo "$as_me:$LINENO: checking what warning flags to pass to the C compiler" >&5
 
49397
+echo $ECHO_N "checking what warning flags to pass to the C compiler... $ECHO_C" >&6; }
 
49398
+    { echo "$as_me:$LINENO: result: $warning_flags" >&5
 
49399
+echo "${ECHO_T}$warning_flags" >&6; }
 
49400
 
 
49401
-fi
 
49402
-if test "x$ac_cv_header_lirc_lirc_client_h" = x""yes; then
 
49403
-  LIRC_LIBS="-llirc_client"
 
49404
-                                        HAVE_LIRC=yes
 
49405
+    # Check whether --enable-iso-c was given.
 
49406
+if test "${enable_iso_c+set}" = set; then
 
49407
+  enableval=$enable_iso_c;
 
49408
 else
 
49409
-
 
49410
-                                        LIRC_LIBS=""
 
49411
-                                        HAVE_LIRC=no
 
49412
-fi
 
49413
-
 
49414
-
 
49415
+  enable_iso_c=no
 
49416
 fi
 
49417
 
 
49418
 
 
49419
-                       if test "${HAVE_LIRC}" != "yes" ; then
 
49420
-                               plugin_error_or_ignore "you need lirc_client installed for the lirc plugin"
 
49421
-                               add_plugin="0"
 
49422
-                       fi
 
49423
-               ;;
 
49424
-               mythtv)
 
49425
-
 
49426
-pkg_failed=no
 
49427
-{ $as_echo "$as_me:$LINENO: checking for GMYTH" >&5
 
49428
-$as_echo_n "checking for GMYTH... " >&6; }
 
49429
-
 
49430
-if test -n "$GMYTH_CFLAGS"; then
 
49431
-    pkg_cv_GMYTH_CFLAGS="$GMYTH_CFLAGS"
 
49432
- elif test -n "$PKG_CONFIG"; then
 
49433
-    if test -n "$PKG_CONFIG" && \
 
49434
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gmyth >= 0.7.1 gmyth-upnp >= 0.7.1\"") >&5
 
49435
-  ($PKG_CONFIG --exists --print-errors "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1") 2>&5
 
49436
-  ac_status=$?
 
49437
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
49438
-  (exit $ac_status); }; then
 
49439
-  pkg_cv_GMYTH_CFLAGS=`$PKG_CONFIG --cflags "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1" 2>/dev/null`
 
49440
-else
 
49441
-  pkg_failed=yes
 
49442
-fi
 
49443
- else
 
49444
-    pkg_failed=untried
 
49445
-fi
 
49446
-if test -n "$GMYTH_LIBS"; then
 
49447
-    pkg_cv_GMYTH_LIBS="$GMYTH_LIBS"
 
49448
- elif test -n "$PKG_CONFIG"; then
 
49449
-    if test -n "$PKG_CONFIG" && \
 
49450
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gmyth >= 0.7.1 gmyth-upnp >= 0.7.1\"") >&5
 
49451
-  ($PKG_CONFIG --exists --print-errors "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1") 2>&5
 
49452
-  ac_status=$?
 
49453
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
49454
-  (exit $ac_status); }; then
 
49455
-  pkg_cv_GMYTH_LIBS=`$PKG_CONFIG --libs "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1" 2>/dev/null`
 
49456
-else
 
49457
-  pkg_failed=yes
 
49458
-fi
 
49459
- else
 
49460
-    pkg_failed=untried
 
49461
-fi
 
49462
+    { echo "$as_me:$LINENO: checking what language compliance flags to pass to the C compiler" >&5
 
49463
+echo $ECHO_N "checking what language compliance flags to pass to the C compiler... $ECHO_C" >&6; }
 
49464
+    complCFLAGS=
 
49465
+    if test "x$enable_iso_c" != "xno"; then
 
49466
+       if test "x$GCC" = "xyes"; then
 
49467
+       case " $CFLAGS " in
 
49468
+           *\ \        -ansi\ \        *) ;;
 
49469
+           *) complCFLAGS="$complCFLAGS -ansi" ;;
 
49470
+       esac
 
49471
+       case " $CFLAGS " in
 
49472
+           *\ \        -pedantic\ \    *) ;;
 
49473
+           *) complCFLAGS="$complCFLAGS -pedantic" ;;
 
49474
+       esac
 
49475
+       fi
 
49476
+    fi
 
49477
+    { echo "$as_me:$LINENO: result: $complCFLAGS" >&5
 
49478
+echo "${ECHO_T}$complCFLAGS" >&6; }
 
49479
 
 
49480
+    WARN_CFLAGS="$warning_flags $complCFLAGS"
 
49481
 
 
49482
 
 
49483
-if test $pkg_failed = yes; then
 
49484
 
 
49485
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
49486
-        _pkg_short_errors_supported=yes
 
49487
+  # Check whether --enable-cxx-warnings was given.
 
49488
+if test "${enable_cxx_warnings+set}" = set; then
 
49489
+  enableval=$enable_cxx_warnings;
 
49490
 else
 
49491
-        _pkg_short_errors_supported=no
 
49492
+  enable_cxx_warnings="minimum"
 
49493
 fi
 
49494
-        if test $_pkg_short_errors_supported = yes; then
 
49495
-               GMYTH_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1" 2>&1`
 
49496
-        else
 
49497
-               GMYTH_PKG_ERRORS=`$PKG_CONFIG --print-errors "gmyth >= 0.7.1 gmyth-upnp >= 0.7.1" 2>&1`
 
49498
-        fi
 
49499
-       # Put the nasty error message in config.log where it belongs
 
49500
-       echo "$GMYTH_PKG_ERRORS" >&5
 
49501
 
 
49502
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
49503
-$as_echo "no" >&6; }
 
49504
-                HAVE_GMYTH=no
 
49505
-elif test $pkg_failed = untried; then
 
49506
-       HAVE_GMYTH=no
 
49507
-else
 
49508
-       GMYTH_CFLAGS=$pkg_cv_GMYTH_CFLAGS
 
49509
-       GMYTH_LIBS=$pkg_cv_GMYTH_LIBS
 
49510
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
49511
-$as_echo "yes" >&6; }
 
49512
-       HAVE_GMYTH=yes
 
49513
-fi
 
49514
-                       if test "${HAVE_GMYTH}" != "yes"; then
 
49515
-                               plugin_error_or_ignore "you need GMyth >= 0.7 installed for the MythTV plugin"
 
49516
-                               add_plugin="0"
 
49517
-                       fi
 
49518
-               ;;
 
49519
-               bemused)
 
49520
 
 
49521
-pkg_failed=no
 
49522
-{ $as_echo "$as_me:$LINENO: checking for BEMUSED" >&5
 
49523
-$as_echo_n "checking for BEMUSED... " >&6; }
 
49524
+  { echo "$as_me:$LINENO: checking what warning flags to pass to the C++ compiler" >&5
 
49525
+echo $ECHO_N "checking what warning flags to pass to the C++ compiler... $ECHO_C" >&6; }
 
49526
+  warnCXXFLAGS=
 
49527
+  if test "x$GXX" != xyes; then
 
49528
+    enable_cxx_warnings=no
 
49529
+  fi
 
49530
+  if test "x$enable_cxx_warnings" != "xno"; then
 
49531
+    if test "x$GXX" = "xyes"; then
 
49532
+      case " $CXXFLAGS " in
 
49533
+      *\ \     -Wall\ \        *) ;;
 
49534
+      *) warnCXXFLAGS="-Wall -Wno-unused" ;;
 
49535
+      esac
 
49536
 
 
49537
-if test -n "$BEMUSED_CFLAGS"; then
 
49538
-    pkg_cv_BEMUSED_CFLAGS="$BEMUSED_CFLAGS"
 
49539
- elif test -n "$PKG_CONFIG"; then
 
49540
-    if test -n "$PKG_CONFIG" && \
 
49541
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"bluez\"") >&5
 
49542
-  ($PKG_CONFIG --exists --print-errors "bluez") 2>&5
 
49543
-  ac_status=$?
 
49544
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
49545
-  (exit $ac_status); }; then
 
49546
-  pkg_cv_BEMUSED_CFLAGS=`$PKG_CONFIG --cflags "bluez" 2>/dev/null`
 
49547
-else
 
49548
-  pkg_failed=yes
 
49549
-fi
 
49550
- else
 
49551
-    pkg_failed=untried
 
49552
-fi
 
49553
-if test -n "$BEMUSED_LIBS"; then
 
49554
-    pkg_cv_BEMUSED_LIBS="$BEMUSED_LIBS"
 
49555
- elif test -n "$PKG_CONFIG"; then
 
49556
-    if test -n "$PKG_CONFIG" && \
 
49557
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"bluez\"") >&5
 
49558
-  ($PKG_CONFIG --exists --print-errors "bluez") 2>&5
 
49559
-  ac_status=$?
 
49560
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
49561
-  (exit $ac_status); }; then
 
49562
-  pkg_cv_BEMUSED_LIBS=`$PKG_CONFIG --libs "bluez" 2>/dev/null`
 
49563
+      ## -W is not all that useful.  And it cannot be controlled
 
49564
+      ## with individual -Wno-xxx flags, unlike -Wall
 
49565
+      if test "x$enable_cxx_warnings" = "xyes"; then
 
49566
+       warnCXXFLAGS="$warnCXXFLAGS -Wshadow -Woverloaded-virtual"
 
49567
+      fi
 
49568
+    fi
 
49569
+  fi
 
49570
+  { echo "$as_me:$LINENO: result: $warnCXXFLAGS" >&5
 
49571
+echo "${ECHO_T}$warnCXXFLAGS" >&6; }
 
49572
+
 
49573
+   # Check whether --enable-iso-cxx was given.
 
49574
+if test "${enable_iso_cxx+set}" = set; then
 
49575
+  enableval=$enable_iso_cxx;
 
49576
 else
 
49577
-  pkg_failed=yes
 
49578
-fi
 
49579
- else
 
49580
-    pkg_failed=untried
 
49581
+  enable_iso_cxx=no
 
49582
 fi
 
49583
 
 
49584
 
 
49585
+   { echo "$as_me:$LINENO: checking what language compliance flags to pass to the C++ compiler" >&5
 
49586
+echo $ECHO_N "checking what language compliance flags to pass to the C++ compiler... $ECHO_C" >&6; }
 
49587
+   complCXXFLAGS=
 
49588
+   if test "x$enable_iso_cxx" != "xno"; then
 
49589
+     if test "x$GXX" = "xyes"; then
 
49590
+      case " $CXXFLAGS " in
 
49591
+      *\ \     -ansi\ \        *) ;;
 
49592
+      *) complCXXFLAGS="$complCXXFLAGS -ansi" ;;
 
49593
+      esac
 
49594
+
 
49595
+      case " $CXXFLAGS " in
 
49596
+      *\ \     -pedantic\ \    *) ;;
 
49597
+      *) complCXXFLAGS="$complCXXFLAGS -pedantic" ;;
 
49598
+      esac
 
49599
+     fi
 
49600
+   fi
 
49601
+  { echo "$as_me:$LINENO: result: $complCXXFLAGS" >&5
 
49602
+echo "${ECHO_T}$complCXXFLAGS" >&6; }
 
49603
+
 
49604
+  WARN_CXXFLAGS="$CXXFLAGS $warnCXXFLAGS $complCXXFLAGS"
 
49605
 
 
49606
-if test $pkg_failed = yes; then
 
49607
 
 
49608
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
49609
-        _pkg_short_errors_supported=yes
 
49610
+{ echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
 
49611
+echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6; }
 
49612
+    # Check whether --enable-maintainer-mode was given.
 
49613
+if test "${enable_maintainer_mode+set}" = set; then
 
49614
+  enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval
 
49615
 else
 
49616
-        _pkg_short_errors_supported=no
 
49617
+  USE_MAINTAINER_MODE=no
 
49618
 fi
 
49619
-        if test $_pkg_short_errors_supported = yes; then
 
49620
-               BEMUSED_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "bluez" 2>&1`
 
49621
-        else
 
49622
-               BEMUSED_PKG_ERRORS=`$PKG_CONFIG --print-errors "bluez" 2>&1`
 
49623
-        fi
 
49624
-       # Put the nasty error message in config.log where it belongs
 
49625
-       echo "$BEMUSED_PKG_ERRORS" >&5
 
49626
 
 
49627
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
49628
-$as_echo "no" >&6; }
 
49629
-                HAVE_BLUEZ=no
 
49630
-elif test $pkg_failed = untried; then
 
49631
-       HAVE_BLUEZ=no
 
49632
+  { echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
 
49633
+echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6; }
 
49634
+   if test $USE_MAINTAINER_MODE = yes; then
 
49635
+  MAINTAINER_MODE_TRUE=
 
49636
+  MAINTAINER_MODE_FALSE='#'
 
49637
 else
 
49638
-       BEMUSED_CFLAGS=$pkg_cv_BEMUSED_CFLAGS
 
49639
-       BEMUSED_LIBS=$pkg_cv_BEMUSED_LIBS
 
49640
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
49641
-$as_echo "yes" >&6; }
 
49642
-       HAVE_BLUEZ=yes
 
49643
+  MAINTAINER_MODE_TRUE='#'
 
49644
+  MAINTAINER_MODE_FALSE=
 
49645
 fi
 
49646
-                       if test "${HAVE_BLUEZ}" != "yes" ; then
 
49647
-                               plugin_error_or_ignore "you need the bluez libraries installed for the Bemused plugin"
 
49648
-                               add_plugin="0"
 
49649
-                       fi
 
49650
-               ;;
 
49651
-               publish)
 
49652
 
 
49653
-pkg_failed=no
 
49654
-{ $as_echo "$as_me:$LINENO: checking for LIBEPC" >&5
 
49655
-$as_echo_n "checking for LIBEPC... " >&6; }
 
49656
+  MAINT=$MAINTAINER_MODE_TRUE
 
49657
 
 
49658
-if test -n "$LIBEPC_CFLAGS"; then
 
49659
-    pkg_cv_LIBEPC_CFLAGS="$LIBEPC_CFLAGS"
 
49660
- elif test -n "$PKG_CONFIG"; then
 
49661
-    if test -n "$PKG_CONFIG" && \
 
49662
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libepc-ui-1.0 >= 0.3.0\"") >&5
 
49663
-  ($PKG_CONFIG --exists --print-errors "libepc-ui-1.0 >= 0.3.0") 2>&5
 
49664
-  ac_status=$?
 
49665
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
49666
-  (exit $ac_status); }; then
 
49667
-  pkg_cv_LIBEPC_CFLAGS=`$PKG_CONFIG --cflags "libepc-ui-1.0 >= 0.3.0" 2>/dev/null`
 
49668
-else
 
49669
-  pkg_failed=yes
 
49670
-fi
 
49671
- else
 
49672
-    pkg_failed=untried
 
49673
-fi
 
49674
-if test -n "$LIBEPC_LIBS"; then
 
49675
-    pkg_cv_LIBEPC_LIBS="$LIBEPC_LIBS"
 
49676
- elif test -n "$PKG_CONFIG"; then
 
49677
-    if test -n "$PKG_CONFIG" && \
 
49678
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libepc-ui-1.0 >= 0.3.0\"") >&5
 
49679
-  ($PKG_CONFIG --exists --print-errors "libepc-ui-1.0 >= 0.3.0") 2>&5
 
49680
-  ac_status=$?
 
49681
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
49682
-  (exit $ac_status); }; then
 
49683
-  pkg_cv_LIBEPC_LIBS=`$PKG_CONFIG --libs "libepc-ui-1.0 >= 0.3.0" 2>/dev/null`
 
49684
-else
 
49685
-  pkg_failed=yes
 
49686
-fi
 
49687
- else
 
49688
-    pkg_failed=untried
 
49689
-fi
 
49690
 
 
49691
 
 
49692
 
 
49693
-if test $pkg_failed = yes; then
 
49694
 
 
49695
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
49696
-        _pkg_short_errors_supported=yes
 
49697
-else
 
49698
-        _pkg_short_errors_supported=no
 
49699
-fi
 
49700
-        if test $_pkg_short_errors_supported = yes; then
 
49701
-               LIBEPC_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "libepc-ui-1.0 >= 0.3.0" 2>&1`
 
49702
-        else
 
49703
-               LIBEPC_PKG_ERRORS=`$PKG_CONFIG --print-errors "libepc-ui-1.0 >= 0.3.0" 2>&1`
 
49704
-        fi
 
49705
-       # Put the nasty error message in config.log where it belongs
 
49706
-       echo "$LIBEPC_PKG_ERRORS" >&5
 
49707
+       if test $USE_MAINTAINER_MODE = yes; then
 
49708
+               DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGCONF_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED -DBONOBO_UI_DISABLE_DEPRECATED -DGNOME_VFS_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DLIBGLADE_DISABLE_DEPRECATED"
 
49709
+       else
 
49710
+               DISABLE_DEPRECATED=""
 
49711
+       fi
 
49712
 
 
49713
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
49714
-$as_echo "no" >&6; }
 
49715
-                HAVE_LIBEPC=no
 
49716
-elif test $pkg_failed = untried; then
 
49717
-       HAVE_LIBEPC=no
 
49718
-else
 
49719
-       LIBEPC_CFLAGS=$pkg_cv_LIBEPC_CFLAGS
 
49720
-       LIBEPC_LIBS=$pkg_cv_LIBEPC_LIBS
 
49721
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
49722
-$as_echo "yes" >&6; }
 
49723
-       HAVE_LIBEPC=yes
 
49724
-fi
 
49725
-                       if test "${HAVE_LIBEPC}" != "yes" ; then
 
49726
-                               plugin_error_or_ignore "you need the easy-publish-and-consume library installed for the publish plugin"
 
49727
-                               add_plugin="0"
 
49728
-                       fi
 
49729
-               ;;
 
49730
-               tracker)
 
49731
 
 
49732
-pkg_failed=no
 
49733
-{ $as_echo "$as_me:$LINENO: checking for TRACKER" >&5
 
49734
-$as_echo_n "checking for TRACKER... " >&6; }
 
49735
 
 
49736
-if test -n "$TRACKER_CFLAGS"; then
 
49737
-    pkg_cv_TRACKER_CFLAGS="$TRACKER_CFLAGS"
 
49738
- elif test -n "$PKG_CONFIG"; then
 
49739
-    if test -n "$PKG_CONFIG" && \
 
49740
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"tracker\"") >&5
 
49741
-  ($PKG_CONFIG --exists --print-errors "tracker") 2>&5
 
49742
-  ac_status=$?
 
49743
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
49744
-  (exit $ac_status); }; then
 
49745
-  pkg_cv_TRACKER_CFLAGS=`$PKG_CONFIG --cflags "tracker" 2>/dev/null`
 
49746
-else
 
49747
-  pkg_failed=yes
 
49748
-fi
 
49749
- else
 
49750
-    pkg_failed=untried
 
49751
-fi
 
49752
-if test -n "$TRACKER_LIBS"; then
 
49753
-    pkg_cv_TRACKER_LIBS="$TRACKER_LIBS"
 
49754
- elif test -n "$PKG_CONFIG"; then
 
49755
-    if test -n "$PKG_CONFIG" && \
 
49756
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"tracker\"") >&5
 
49757
-  ($PKG_CONFIG --exists --print-errors "tracker") 2>&5
 
49758
-  ac_status=$?
 
49759
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
49760
-  (exit $ac_status); }; then
 
49761
-  pkg_cv_TRACKER_LIBS=`$PKG_CONFIG --libs "tracker" 2>/dev/null`
 
49762
-else
 
49763
-  pkg_failed=yes
 
49764
-fi
 
49765
- else
 
49766
-    pkg_failed=untried
 
49767
-fi
 
49768
+# This macro expands DIR and assigns it to RET.
 
49769
+# If DIR is NONE, then it's replaced by DEFAULT.
 
49770
+# Based on AC_DEFINE_DIR
 
49771
 
 
49772
 
 
49773
 
 
49774
-if test $pkg_failed = yes; then
 
49775
+  test "x$prefix" = xNONE && prefix="$ac_default_prefix"
 
49776
+  test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
 
49777
+  ac_expand=$libexecdir
 
49778
+  test "x$ac_expand" = xNONE && ac_expand="$NONE"
 
49779
+  ac_expand=`eval echo $ac_expand`
 
49780
+  FULL_LIBEXECDIR=`eval echo $ac_expand`
 
49781
 
 
49782
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
49783
-        _pkg_short_errors_supported=yes
 
49784
-else
 
49785
-        _pkg_short_errors_supported=no
 
49786
-fi
 
49787
-        if test $_pkg_short_errors_supported = yes; then
 
49788
-               TRACKER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "tracker" 2>&1`
 
49789
-        else
 
49790
-               TRACKER_PKG_ERRORS=`$PKG_CONFIG --print-errors "tracker" 2>&1`
 
49791
-        fi
 
49792
-       # Put the nasty error message in config.log where it belongs
 
49793
-       echo "$TRACKER_PKG_ERRORS" >&5
 
49794
 
 
49795
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
49796
-$as_echo "no" >&6; }
 
49797
-                HAVE_TRACKER=no
 
49798
-elif test $pkg_failed = untried; then
 
49799
-       HAVE_TRACKER=no
 
49800
+
 
49801
+# Check whether --enable-debug was given.
 
49802
+if test "${enable_debug+set}" = set; then
 
49803
+  enableval=$enable_debug; case "${enableval}" in
 
49804
+       yes) ENABLE_DEBUG=yes ;;
 
49805
+       no)  ENABLE_DEBUG=no ;;
 
49806
+       *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --disable-debug" >&5
 
49807
+echo "$as_me: error: bad value ${enableval} for --disable-debug" >&2;}
 
49808
+   { (exit 1); exit 1; }; } ;;
 
49809
+       esac
 
49810
 else
 
49811
-       TRACKER_CFLAGS=$pkg_cv_TRACKER_CFLAGS
 
49812
-       TRACKER_LIBS=$pkg_cv_TRACKER_LIBS
 
49813
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
49814
-$as_echo "yes" >&6; }
 
49815
-       HAVE_TRACKER=yes
 
49816
+  ENABLE_DEBUG=no
 
49817
 fi
 
49818
-                       if test "${HAVE_TRACKER}" != "yes" ; then
 
49819
-                               plugin_error_or_ignore "you need the tracker development headers installed for the tracker plugin"
 
49820
-                               add_plugin="0"
 
49821
-                       fi
 
49822
-               ;;
 
49823
-               sample-vala)
 
49824
-                       if test "${with_vala}" != "yes" ; then
 
49825
-                               plugin_error_or_ignore "you need vala installed to use the sample-vala plugin"
 
49826
-                               add_plugin="0"
 
49827
-                       fi
 
49828
-               ;;
 
49829
-               thumbnail)
 
49830
+ if test x$ENABLE_DEBUG = xyes; then
 
49831
 
 
49832
-pkg_failed=no
 
49833
-{ $as_echo "$as_me:$LINENO: checking for GLIB" >&5
 
49834
-$as_echo_n "checking for GLIB... " >&6; }
 
49835
+cat >>confdefs.h <<\_ACEOF
 
49836
+#define TOTEM_DEBUG 1
 
49837
+_ACEOF
 
49838
 
 
49839
-if test -n "$GLIB_CFLAGS"; then
 
49840
-    pkg_cv_GLIB_CFLAGS="$GLIB_CFLAGS"
 
49841
- elif test -n "$PKG_CONFIG"; then
 
49842
-    if test -n "$PKG_CONFIG" && \
 
49843
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.15.0\"") >&5
 
49844
-  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.15.0") 2>&5
 
49845
-  ac_status=$?
 
49846
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
49847
-  (exit $ac_status); }; then
 
49848
-  pkg_cv_GLIB_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 2.15.0" 2>/dev/null`
 
49849
-else
 
49850
-  pkg_failed=yes
 
49851
 fi
 
49852
- else
 
49853
-    pkg_failed=untried
 
49854
-fi
 
49855
-if test -n "$GLIB_LIBS"; then
 
49856
-    pkg_cv_GLIB_LIBS="$GLIB_LIBS"
 
49857
- elif test -n "$PKG_CONFIG"; then
 
49858
-    if test -n "$PKG_CONFIG" && \
 
49859
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.15.0\"") >&5
 
49860
-  ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.15.0") 2>&5
 
49861
-  ac_status=$?
 
49862
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
49863
-  (exit $ac_status); }; then
 
49864
-  pkg_cv_GLIB_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= 2.15.0" 2>/dev/null`
 
49865
+
 
49866
+# Check whether --enable-run-in-source-tree was given.
 
49867
+if test "${enable_run_in_source_tree+set}" = set; then
 
49868
+  enableval=$enable_run_in_source_tree; case "${enableval}" in
 
49869
+       yes) ENABLE_RUN_IN_SOURCE_TREE=yes ;;
 
49870
+       no)  ENABLE_RUN_IN_SOURCE_TREE=no ;;
 
49871
+       *) { { echo "$as_me:$LINENO: error: bad value ${enableval} for --disable-run-in-source-tree" >&5
 
49872
+echo "$as_me: error: bad value ${enableval} for --disable-run-in-source-tree" >&2;}
 
49873
+   { (exit 1); exit 1; }; } ;;
 
49874
+       esac
 
49875
 else
 
49876
-  pkg_failed=yes
 
49877
-fi
 
49878
- else
 
49879
-    pkg_failed=untried
 
49880
+  ENABLE_RUN_IN_SOURCE_TREE=yes
 
49881
 fi
 
49882
+ if test x$ENABLE_RUN_IN_SOURCE_TREE = xyes; then
 
49883
 
 
49884
+cat >>confdefs.h <<\_ACEOF
 
49885
+#define TOTEM_RUN_IN_SOURCE_TREE 1
 
49886
+_ACEOF
 
49887
 
 
49888
-
 
49889
-if test $pkg_failed = yes; then
 
49890
-
 
49891
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
49892
-        _pkg_short_errors_supported=yes
 
49893
-else
 
49894
-        _pkg_short_errors_supported=no
 
49895
 fi
 
49896
-        if test $_pkg_short_errors_supported = yes; then
 
49897
-               GLIB_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "glib-2.0 >= 2.15.0" 2>&1`
 
49898
-        else
 
49899
-               GLIB_PKG_ERRORS=`$PKG_CONFIG --print-errors "glib-2.0 >= 2.15.0" 2>&1`
 
49900
-        fi
 
49901
-       # Put the nasty error message in config.log where it belongs
 
49902
-       echo "$GLIB_PKG_ERRORS" >&5
 
49903
 
 
49904
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
49905
-$as_echo "no" >&6; }
 
49906
-                HAVE_GLIB_2_15=no
 
49907
-elif test $pkg_failed = untried; then
 
49908
-       HAVE_GLIB_2_15=no
 
49909
-else
 
49910
-       GLIB_CFLAGS=$pkg_cv_GLIB_CFLAGS
 
49911
-       GLIB_LIBS=$pkg_cv_GLIB_LIBS
 
49912
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
49913
-$as_echo "yes" >&6; }
 
49914
-       HAVE_GLIB_2_15=yes
 
49915
+if test "$GCC" = "yes" ; then
 
49916
+       CFLAGS="\
 
49917
+       -Wall \
 
49918
+       -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes \
 
49919
+       -Wnested-externs -Wpointer-arith \
 
49920
+       -Wcast-align -Wsign-compare \
 
49921
+       -fno-strict-aliasing \
 
49922
+       $CFLAGS"
 
49923
 fi
 
49924
-                       if test "${HAVE_GLIB_2_15}" != "yes" ; then
 
49925
-                               plugin_error_or_ignore "you need glib >= 2.15.0 to use the thumbnail plugin"
 
49926
-                               add_plugin="0"
 
49927
-                       fi
 
49928
-               ;;
 
49929
-       esac
 
49930
 
 
49931
-       # Add the specified plugin
 
49932
-       if test "${add_plugin}" = "1" ; then
 
49933
-               used_plugins2="${used_plugins2} ${plugin}"
 
49934
-       fi
 
49935
-done
 
49936
 
 
49937
-ALL_PLUGINS=$allowed_plugins
 
49938
-PLUGINS=$used_plugins2
 
49939
 
 
49940
-{ $as_echo "$as_me:$LINENO: checking which plugins to compile" >&5
 
49941
-$as_echo_n "checking which plugins to compile... " >&6; }
 
49942
-{ $as_echo "$as_me:$LINENO: result: $PLUGINS" >&5
 
49943
-$as_echo "$PLUGINS" >&6; }
 
49944
 
 
49945
 
 
49946
 
36905
49947
+ac_config_files="$ac_config_files Makefile totem.spec lib/Makefile src/Makefile src/plugins/Makefile src/plugins/bbc/Makefile src/plugins/bemused/Makefile src/plugins/screensaver/Makefile src/plugins/ontop/Makefile src/plugins/galago/Makefile src/plugins/gromit/Makefile src/plugins/lirc/Makefile src/plugins/media-player-keys/Makefile src/plugins/mythtv/Makefile src/plugins/properties/Makefile src/plugins/sidebar-test/Makefile src/plugins/skipto/Makefile src/plugins/sample-python/Makefile src/plugins/sample-vala/Makefile src/plugins/thumbnail/Makefile src/plugins/totem/Makefile src/plugins/tracker/Makefile src/plugins/youtube/Makefile src/plugins/pythonconsole/Makefile src/plugins/publish/Makefile src/backend/Makefile browser-plugin/Makefile data/Makefile data/totem.desktop.in.in data/icons/Makefile data/icons/16x16/Makefile data/icons/22x22/Makefile data/icons/24x24/Makefile data/icons/32x32/Makefile data/icons/48x48/Makefile data/icons/scalable/Makefile po/Makefile.in help/Makefile help/bg/Makefile bindings/Makefile bindings/python/Makefile bindings/vala/Makefile"
36906
49948
 
36907
 
 cat >confcache <<\_ACEOF
36908
 
 # This file is a shell script that caches the results of configure
36909
 
@@ -26431,6 +23777,13 @@
36910
 
 Usually this means the macro was only invoked conditionally." >&2;}
 
49949
-# ***************
 
49950
-# Browser plugins
 
49951
-# ***************
 
49952
+cat >confcache <<\_ACEOF
 
49953
+# This file is a shell script that caches the results of configure
 
49954
+# tests run on this system so they can be shared between configure
 
49955
+# scripts and configure runs, see configure's option --config-cache.
 
49956
+# It is not useful on other systems.  If it contains results you don't
 
49957
+# want to keep, you may remove or edit it.
 
49958
+#
 
49959
+# config.status only pays attention to the cache file if you give it
 
49960
+# the --recheck option to rerun configure.
 
49961
+#
 
49962
+# `ac_cv_env_foo' variables (set or unset) will be overridden when
 
49963
+# loading this file, other *unset* `ac_cv_foo' will be assigned the
 
49964
+# following values.
 
49965
 
 
49966
-{ $as_echo "$as_me:$LINENO: checking whether to compile the browser plugins" >&5
 
49967
-$as_echo_n "checking whether to compile the browser plugins... " >&6; }
 
49968
+_ACEOF
 
49969
 
 
49970
-# Check whether --enable-browser-plugins was given.
 
49971
-if test "${enable_browser_plugins+set}" = set; then
 
49972
-  enableval=$enable_browser_plugins;
 
49973
-else
 
49974
-  enable_browser_plugins=yes
 
49975
+# The following way of writing the cache mishandles newlines in values,
 
49976
+# but we know of no workaround that is simple, portable, and efficient.
 
49977
+# So, we kill variables containing newlines.
 
49978
+# Ultrix sh set writes to stderr and can't be redirected directly,
 
49979
+# and sets the high bit in the cache file unless we assign to the vars.
 
49980
+(
 
49981
+  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
 
49982
+    eval ac_val=\$$ac_var
 
49983
+    case $ac_val in #(
 
49984
+    *${as_nl}*)
 
49985
+      case $ac_var in #(
 
49986
+      *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
 
49987
+echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
 
49988
+      esac
 
49989
+      case $ac_var in #(
 
49990
+      _ | IFS | as_nl) ;; #(
 
49991
+      *) $as_unset $ac_var ;;
 
49992
+      esac ;;
 
49993
+    esac
 
49994
+  done
 
49995
+
 
49996
+  (set) 2>&1 |
 
49997
+    case $as_nl`(ac_space=' '; set) 2>&1` in #(
 
49998
+    *${as_nl}ac_space=\ *)
 
49999
+      # `set' does not quote correctly, so add quotes (double-quote
 
50000
+      # substitution turns \\\\ into \\, and sed turns \\ into \).
 
50001
+      sed -n \
 
50002
+       "s/'/'\\\\''/g;
 
50003
+         s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
 
50004
+      ;; #(
 
50005
+    *)
 
50006
+      # `set' quotes correctly as required by POSIX, so do not add quotes.
 
50007
+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
 
50008
+      ;;
 
50009
+    esac |
 
50010
+    sort
 
50011
+) |
 
50012
+  sed '
 
50013
+     /^ac_cv_env_/b end
 
50014
+     t clear
 
50015
+     :clear
 
50016
+     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
 
50017
+     t end
 
50018
+     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
 
50019
+     :end' >>confcache
 
50020
+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
 
50021
+  if test -w "$cache_file"; then
 
50022
+    test "x$cache_file" != "x/dev/null" &&
 
50023
+      { echo "$as_me:$LINENO: updating cache $cache_file" >&5
 
50024
+echo "$as_me: updating cache $cache_file" >&6;}
 
50025
+    cat confcache >$cache_file
 
50026
+  else
 
50027
+    { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
 
50028
+echo "$as_me: not updating unwritable cache $cache_file" >&6;}
 
50029
+  fi
 
50030
 fi
 
50031
+rm -f confcache
 
50032
 
 
50033
-{ $as_echo "$as_me:$LINENO: result: $enable_browser_plugins" >&5
 
50034
-$as_echo "$enable_browser_plugins" >&6; }
 
50035
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
 
50036
+# Let make expand exec_prefix.
 
50037
+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
 
50038
 
 
50039
-if test "$enable_browser_plugins" = "yes" ; then
 
50040
+DEFS=-DHAVE_CONFIG_H
 
50041
 
 
50042
-cat >>confdefs.h <<\_ACEOF
 
50043
-#define ENABLE_BROWSER_PLUGINS 1
 
50044
-_ACEOF
 
50045
+ac_libobjs=
 
50046
+ac_ltlibobjs=
 
50047
+for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
 
50048
+  # 1. Remove the extension, and $U if already installed.
 
50049
+  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
 
50050
+  ac_i=`echo "$ac_i" | sed "$ac_script"`
 
50051
+  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
 
50052
+  #    will be set to the directory where LIBOBJS objects are built.
 
50053
+  ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext"
 
50054
+  ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo'
 
50055
+done
 
50056
+LIBOBJS=$ac_libobjs
 
50057
 
 
50058
+LTLIBOBJS=$ac_ltlibobjs
 
50059
 
 
50060
-       BROWSER_PLUGIN_DIR="${BROWSER_PLUGIN_DIR:-"\${libdir}/mozilla/plugins"}"
 
50061
 
 
50062
+if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
 
50063
+  { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
 
50064
+Usually this means the macro was only invoked conditionally." >&5
 
50065
+echo "$as_me: error: conditional \"AMDEP\" was never defined.
 
50066
+Usually this means the macro was only invoked conditionally." >&2;}
 
50067
+   { (exit 1); exit 1; }; }
 
50068
+fi
 
50069
+if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
 
50070
+  { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
 
50071
+Usually this means the macro was only invoked conditionally." >&5
 
50072
+echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
 
50073
+Usually this means the macro was only invoked conditionally." >&2;}
 
50074
+   { (exit 1); exit 1; }; }
 
50075
+fi
 
50076
 
 
50077
+  ac_config_commands="$ac_config_commands po/stamp-it"
 
50078
 
 
50079
-pkg_failed=no
 
50080
-{ $as_echo "$as_me:$LINENO: checking for BROWSER_PLUGIN" >&5
 
50081
-$as_echo_n "checking for BROWSER_PLUGIN... " >&6; }
 
50082
 
 
50083
-if test -n "$BROWSER_PLUGIN_CFLAGS"; then
 
50084
-    pkg_cv_BROWSER_PLUGIN_CFLAGS="$BROWSER_PLUGIN_CFLAGS"
 
50085
- elif test -n "$PKG_CONFIG"; then
 
50086
-    if test -n "$PKG_CONFIG" && \
 
50087
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0
 
50088
-                gio-2.0
 
50089
-                totem-plparser-mini >= \$TOTEM_PLPARSER_REQS\"") >&5
 
50090
-  ($PKG_CONFIG --exists --print-errors "glib-2.0
 
50091
-                gio-2.0
 
50092
-                totem-plparser-mini >= $TOTEM_PLPARSER_REQS") 2>&5
 
50093
-  ac_status=$?
 
50094
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
50095
-  (exit $ac_status); }; then
 
50096
-  pkg_cv_BROWSER_PLUGIN_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0
 
50097
-                gio-2.0
 
50098
-                totem-plparser-mini >= $TOTEM_PLPARSER_REQS" 2>/dev/null`
 
50099
-else
 
50100
-  pkg_failed=yes
 
50101
+if test -z "${ENABLE_SK_TRUE}" && test -z "${ENABLE_SK_FALSE}"; then
 
50102
+  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_SK\" was never defined.
 
50103
+Usually this means the macro was only invoked conditionally." >&5
 
50104
+echo "$as_me: error: conditional \"ENABLE_SK\" was never defined.
 
50105
+Usually this means the macro was only invoked conditionally." >&2;}
 
50106
+   { (exit 1); exit 1; }; }
 
50107
 fi
 
50108
- else
 
50109
-    pkg_failed=untried
 
50110
+if test -z "${HAVE_GNOME_DOC_UTILS_TRUE}" && test -z "${HAVE_GNOME_DOC_UTILS_FALSE}"; then
 
50111
+  { { echo "$as_me:$LINENO: error: conditional \"HAVE_GNOME_DOC_UTILS\" was never defined.
 
50112
+Usually this means the macro was only invoked conditionally." >&5
 
50113
+echo "$as_me: error: conditional \"HAVE_GNOME_DOC_UTILS\" was never defined.
 
50114
+Usually this means the macro was only invoked conditionally." >&2;}
 
50115
+   { (exit 1); exit 1; }; }
 
50116
 fi
 
50117
-if test -n "$BROWSER_PLUGIN_LIBS"; then
 
50118
-    pkg_cv_BROWSER_PLUGIN_LIBS="$BROWSER_PLUGIN_LIBS"
 
50119
- elif test -n "$PKG_CONFIG"; then
 
50120
-    if test -n "$PKG_CONFIG" && \
 
50121
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0
 
50122
-                gio-2.0
 
50123
-                totem-plparser-mini >= \$TOTEM_PLPARSER_REQS\"") >&5
 
50124
-  ($PKG_CONFIG --exists --print-errors "glib-2.0
 
50125
-                gio-2.0
 
50126
-                totem-plparser-mini >= $TOTEM_PLPARSER_REQS") 2>&5
 
50127
-  ac_status=$?
 
50128
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
50129
-  (exit $ac_status); }; then
 
50130
-  pkg_cv_BROWSER_PLUGIN_LIBS=`$PKG_CONFIG --libs "glib-2.0
 
50131
-                gio-2.0
 
50132
-                totem-plparser-mini >= $TOTEM_PLPARSER_REQS" 2>/dev/null`
 
50133
-else
 
50134
-  pkg_failed=yes
 
50135
+if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then
 
50136
+  { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined.
 
50137
+Usually this means the macro was only invoked conditionally." >&5
 
50138
+echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined.
 
50139
+Usually this means the macro was only invoked conditionally." >&2;}
 
50140
+   { (exit 1); exit 1; }; }
 
50141
+fi
 
50142
+if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then
 
50143
+  { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined.
 
50144
+Usually this means the macro was only invoked conditionally." >&5
 
50145
+echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined.
 
50146
+Usually this means the macro was only invoked conditionally." >&2;}
 
50147
+   { (exit 1); exit 1; }; }
 
50148
 fi
 
50149
- else
 
50150
-    pkg_failed=untried
 
50151
+if test -z "${TOTEM_GST_TRUE}" && test -z "${TOTEM_GST_FALSE}"; then
 
50152
+  { { echo "$as_me:$LINENO: error: conditional \"TOTEM_GST\" was never defined.
 
50153
+Usually this means the macro was only invoked conditionally." >&5
 
50154
+echo "$as_me: error: conditional \"TOTEM_GST\" was never defined.
 
50155
+Usually this means the macro was only invoked conditionally." >&2;}
 
50156
+   { (exit 1); exit 1; }; }
 
50157
 fi
 
50158
-
 
50159
-
 
50160
-
 
50161
-if test $pkg_failed = yes; then
 
50162
-
 
50163
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
50164
-        _pkg_short_errors_supported=yes
 
50165
-else
 
50166
-        _pkg_short_errors_supported=no
 
50167
+if test -z "${HAVE_GNOME_TRUE}" && test -z "${HAVE_GNOME_FALSE}"; then
 
50168
+  { { echo "$as_me:$LINENO: error: conditional \"HAVE_GNOME\" was never defined.
 
50169
+Usually this means the macro was only invoked conditionally." >&5
 
50170
+echo "$as_me: error: conditional \"HAVE_GNOME\" was never defined.
 
50171
+Usually this means the macro was only invoked conditionally." >&2;}
 
50172
+   { (exit 1); exit 1; }; }
 
50173
 fi
 
50174
-        if test $_pkg_short_errors_supported = yes; then
 
50175
-               BROWSER_PLUGIN_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "glib-2.0
 
50176
-                gio-2.0
 
50177
-                totem-plparser-mini >= $TOTEM_PLPARSER_REQS" 2>&1`
 
50178
-        else
 
50179
-               BROWSER_PLUGIN_PKG_ERRORS=`$PKG_CONFIG --print-errors "glib-2.0
 
50180
-                gio-2.0
 
50181
-                totem-plparser-mini >= $TOTEM_PLPARSER_REQS" 2>&1`
 
50182
-        fi
 
50183
-       # Put the nasty error message in config.log where it belongs
 
50184
-       echo "$BROWSER_PLUGIN_PKG_ERRORS" >&5
 
50185
-
 
50186
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
50187
-$as_echo "no" >&6; }
 
50188
-                enable_browser_plugins=no
 
50189
-elif test $pkg_failed = untried; then
 
50190
-       enable_browser_plugins=no
 
50191
-else
 
50192
-       BROWSER_PLUGIN_CFLAGS=$pkg_cv_BROWSER_PLUGIN_CFLAGS
 
50193
-       BROWSER_PLUGIN_LIBS=$pkg_cv_BROWSER_PLUGIN_LIBS
 
50194
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
50195
-$as_echo "yes" >&6; }
 
50196
-       :
 
50197
+if test -z "${HAVE_XVIDMODE_TRUE}" && test -z "${HAVE_XVIDMODE_FALSE}"; then
 
50198
+  { { echo "$as_me:$LINENO: error: conditional \"HAVE_XVIDMODE\" was never defined.
 
50199
+Usually this means the macro was only invoked conditionally." >&5
 
50200
+echo "$as_me: error: conditional \"HAVE_XVIDMODE\" was never defined.
 
50201
+Usually this means the macro was only invoked conditionally." >&2;}
 
50202
+   { (exit 1); exit 1; }; }
 
50203
 fi
 
50204
-
 
50205
-
 
50206
-
 
50207
-
 
50208
-       # Earlier versions misdetect playlists
 
50209
-       if test -n "$PKG_CONFIG" && \
 
50210
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"shared-mime-info >= 0.22\"") >&5
 
50211
-  ($PKG_CONFIG --exists --print-errors "shared-mime-info >= 0.22") 2>&5
 
50212
-  ac_status=$?
 
50213
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
50214
-  (exit $ac_status); }; then
 
50215
-  :
 
50216
-else
 
50217
-  { { $as_echo "$as_me:$LINENO: error:
 
50218
-                               The Browser plugin requires shared-mime-info
 
50219
-                               >= 0.22 to function." >&5
 
50220
-$as_echo "$as_me: error:
 
50221
-                               The Browser plugin requires shared-mime-info
 
50222
-                               >= 0.22 to function." >&2;}
 
50223
+if test -z "${ENABLE_PYTHON_TRUE}" && test -z "${ENABLE_PYTHON_FALSE}"; then
 
50224
+  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_PYTHON\" was never defined.
 
50225
+Usually this means the macro was only invoked conditionally." >&5
 
50226
+echo "$as_me: error: conditional \"ENABLE_PYTHON\" was never defined.
 
50227
+Usually this means the macro was only invoked conditionally." >&2;}
 
50228
+   { (exit 1); exit 1; }; }
 
50229
+fi
 
50230
+if test -z "${ENABLE_VALA_TRUE}" && test -z "${ENABLE_VALA_FALSE}"; then
 
50231
+  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_VALA\" was never defined.
 
50232
+Usually this means the macro was only invoked conditionally." >&5
 
50233
+echo "$as_me: error: conditional \"ENABLE_VALA\" was never defined.
 
50234
+Usually this means the macro was only invoked conditionally." >&2;}
 
50235
+   { (exit 1); exit 1; }; }
 
50236
+fi
 
50237
+if test -z "${ENABLE_BROWSER_PLUGINS_TRUE}" && test -z "${ENABLE_BROWSER_PLUGINS_FALSE}"; then
 
50238
+  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_BROWSER_PLUGINS\" was never defined.
 
50239
+Usually this means the macro was only invoked conditionally." >&5
 
50240
+echo "$as_me: error: conditional \"ENABLE_BROWSER_PLUGINS\" was never defined.
 
50241
+Usually this means the macro was only invoked conditionally." >&2;}
 
50242
+   { (exit 1); exit 1; }; }
 
50243
+fi
 
50244
+if test -z "${ENABLE_BASIC_PLUGIN_TRUE}" && test -z "${ENABLE_BASIC_PLUGIN_FALSE}"; then
 
50245
+  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_BASIC_PLUGIN\" was never defined.
 
50246
+Usually this means the macro was only invoked conditionally." >&5
 
50247
+echo "$as_me: error: conditional \"ENABLE_BASIC_PLUGIN\" was never defined.
 
50248
+Usually this means the macro was only invoked conditionally." >&2;}
 
50249
+   { (exit 1); exit 1; }; }
 
50250
+fi
 
50251
+if test -z "${ENABLE_GMP_PLUGIN_TRUE}" && test -z "${ENABLE_GMP_PLUGIN_FALSE}"; then
 
50252
+  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_GMP_PLUGIN\" was never defined.
 
50253
+Usually this means the macro was only invoked conditionally." >&5
 
50254
+echo "$as_me: error: conditional \"ENABLE_GMP_PLUGIN\" was never defined.
 
50255
+Usually this means the macro was only invoked conditionally." >&2;}
 
50256
+   { (exit 1); exit 1; }; }
 
50257
+fi
 
50258
+if test -z "${ENABLE_COMPLEX_PLUGIN_TRUE}" && test -z "${ENABLE_COMPLEX_PLUGIN_FALSE}"; then
 
50259
+  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_COMPLEX_PLUGIN\" was never defined.
 
50260
+Usually this means the macro was only invoked conditionally." >&5
 
50261
+echo "$as_me: error: conditional \"ENABLE_COMPLEX_PLUGIN\" was never defined.
 
50262
+Usually this means the macro was only invoked conditionally." >&2;}
 
50263
+   { (exit 1); exit 1; }; }
 
50264
+fi
 
50265
+if test -z "${ENABLE_NARROWSPACE_PLUGIN_TRUE}" && test -z "${ENABLE_NARROWSPACE_PLUGIN_FALSE}"; then
 
50266
+  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_NARROWSPACE_PLUGIN\" was never defined.
 
50267
+Usually this means the macro was only invoked conditionally." >&5
 
50268
+echo "$as_me: error: conditional \"ENABLE_NARROWSPACE_PLUGIN\" was never defined.
 
50269
+Usually this means the macro was only invoked conditionally." >&2;}
 
50270
+   { (exit 1); exit 1; }; }
 
50271
+fi
 
50272
+if test -z "${ENABLE_MULLY_PLUGIN_TRUE}" && test -z "${ENABLE_MULLY_PLUGIN_FALSE}"; then
 
50273
+  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_MULLY_PLUGIN\" was never defined.
 
50274
+Usually this means the macro was only invoked conditionally." >&5
 
50275
+echo "$as_me: error: conditional \"ENABLE_MULLY_PLUGIN\" was never defined.
 
50276
+Usually this means the macro was only invoked conditionally." >&2;}
 
50277
+   { (exit 1); exit 1; }; }
 
50278
+fi
 
50279
+if test -z "${ENABLE_CONE_PLUGIN_TRUE}" && test -z "${ENABLE_CONE_PLUGIN_FALSE}"; then
 
50280
+  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_CONE_PLUGIN\" was never defined.
 
50281
+Usually this means the macro was only invoked conditionally." >&5
 
50282
+echo "$as_me: error: conditional \"ENABLE_CONE_PLUGIN\" was never defined.
 
50283
+Usually this means the macro was only invoked conditionally." >&2;}
36911
50284
    { (exit 1); exit 1; }; }
36912
50285
 fi
36913
 
+if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then
36914
 
+  { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined.
36915
 
+Usually this means the macro was only invoked conditionally." >&5
36916
 
+echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined.
36917
 
+Usually this means the macro was only invoked conditionally." >&2;}
36918
 
+   { (exit 1); exit 1; }; }
36919
 
+fi
36920
 
 if test -z "${TOTEM_GST_TRUE}" && test -z "${TOTEM_GST_FALSE}"; then
36921
 
   { { echo "$as_me:$LINENO: error: conditional \"TOTEM_GST\" was never defined.
36922
 
 Usually this means the macro was only invoked conditionally." >&5
36923
 
@@ -27003,6 +24356,356 @@
36924
 
 AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
36925
 
 
36926
 
 
36927
 
+
 
50286
+if test -z "${HAVE_NAUTILUS_TRUE}" && test -z "${HAVE_NAUTILUS_FALSE}"; then
 
50287
+  { { echo "$as_me:$LINENO: error: conditional \"HAVE_NAUTILUS\" was never defined.
 
50288
+Usually this means the macro was only invoked conditionally." >&5
 
50289
+echo "$as_me: error: conditional \"HAVE_NAUTILUS\" was never defined.
 
50290
+Usually this means the macro was only invoked conditionally." >&2;}
 
50291
+   { (exit 1); exit 1; }; }
 
50292
+fi
 
50293
+if test -z "${WITH_DBUS_TRUE}" && test -z "${WITH_DBUS_FALSE}"; then
 
50294
+  { { echo "$as_me:$LINENO: error: conditional \"WITH_DBUS\" was never defined.
 
50295
+Usually this means the macro was only invoked conditionally." >&5
 
50296
+echo "$as_me: error: conditional \"WITH_DBUS\" was never defined.
 
50297
+Usually this means the macro was only invoked conditionally." >&2;}
 
50298
+   { (exit 1); exit 1; }; }
 
50299
+fi
 
50300
+if test -z "${GCONF_SCHEMAS_INSTALL_TRUE}" && test -z "${GCONF_SCHEMAS_INSTALL_FALSE}"; then
 
50301
+  { { echo "$as_me:$LINENO: error: conditional \"GCONF_SCHEMAS_INSTALL\" was never defined.
 
50302
+Usually this means the macro was only invoked conditionally." >&5
 
50303
+echo "$as_me: error: conditional \"GCONF_SCHEMAS_INSTALL\" was never defined.
 
50304
+Usually this means the macro was only invoked conditionally." >&2;}
 
50305
+   { (exit 1); exit 1; }; }
 
50306
+fi
 
50307
+if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
 
50308
+  { { echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined.
 
50309
+Usually this means the macro was only invoked conditionally." >&5
 
50310
+echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined.
 
50311
+Usually this means the macro was only invoked conditionally." >&2;}
 
50312
+   { (exit 1); exit 1; }; }
 
50313
+fi
 
50314
+
 
50315
+: ${CONFIG_STATUS=./config.status}
 
50316
+ac_clean_files_save=$ac_clean_files
 
50317
+ac_clean_files="$ac_clean_files $CONFIG_STATUS"
 
50318
+{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
 
50319
+echo "$as_me: creating $CONFIG_STATUS" >&6;}
 
50320
+cat >$CONFIG_STATUS <<_ACEOF
 
50321
+#! $SHELL
 
50322
+# Generated by $as_me.
 
50323
+# Run this file to recreate the current configuration.
 
50324
+# Compiler output produced by configure, useful for debugging
 
50325
+# configure, is in config.log if it exists.
 
50326
 
 
50327
+debug=false
 
50328
+ac_cs_recheck=false
 
50329
+ac_cs_silent=false
 
50330
+SHELL=\${CONFIG_SHELL-$SHELL}
 
50331
+_ACEOF
 
50332
 
 
50333
-pkg_failed=no
 
50334
-{ $as_echo "$as_me:$LINENO: checking for DBUS" >&5
 
50335
-$as_echo_n "checking for DBUS... " >&6; }
 
50336
+cat >>$CONFIG_STATUS <<\_ACEOF
 
50337
+## --------------------- ##
 
50338
+## M4sh Initialization.  ##
 
50339
+## --------------------- ##
 
50340
 
 
50341
-if test -n "$DBUS_CFLAGS"; then
 
50342
-    pkg_cv_DBUS_CFLAGS="$DBUS_CFLAGS"
 
50343
- elif test -n "$PKG_CONFIG"; then
 
50344
-    if test -n "$PKG_CONFIG" && \
 
50345
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1 >= \$DBUS_REQS\"") >&5
 
50346
-  ($PKG_CONFIG --exists --print-errors "dbus-glib-1 >= $DBUS_REQS") 2>&5
 
50347
-  ac_status=$?
 
50348
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
50349
-  (exit $ac_status); }; then
 
50350
-  pkg_cv_DBUS_CFLAGS=`$PKG_CONFIG --cflags "dbus-glib-1 >= $DBUS_REQS" 2>/dev/null`
 
50351
-else
 
50352
-  pkg_failed=yes
 
50353
-fi
 
50354
- else
 
50355
-    pkg_failed=untried
 
50356
-fi
 
50357
-if test -n "$DBUS_LIBS"; then
 
50358
-    pkg_cv_DBUS_LIBS="$DBUS_LIBS"
 
50359
- elif test -n "$PKG_CONFIG"; then
 
50360
-    if test -n "$PKG_CONFIG" && \
 
50361
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1 >= \$DBUS_REQS\"") >&5
 
50362
-  ($PKG_CONFIG --exists --print-errors "dbus-glib-1 >= $DBUS_REQS") 2>&5
 
50363
-  ac_status=$?
 
50364
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
50365
-  (exit $ac_status); }; then
 
50366
-  pkg_cv_DBUS_LIBS=`$PKG_CONFIG --libs "dbus-glib-1 >= $DBUS_REQS" 2>/dev/null`
 
50367
+# Be more Bourne compatible
 
50368
+DUALCASE=1; export DUALCASE # for MKS sh
 
50369
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
50370
+  emulate sh
 
50371
+  NULLCMD=:
 
50372
+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
 
50373
+  # is contrary to our usage.  Disable this feature.
 
50374
+  alias -g '${1+"$@"}'='"$@"'
 
50375
+  setopt NO_GLOB_SUBST
 
50376
 else
 
50377
-  pkg_failed=yes
 
50378
-fi
 
50379
- else
 
50380
-    pkg_failed=untried
 
50381
+  case `(set -o) 2>/dev/null` in
 
50382
+  *posix*) set -o posix ;;
 
50383
+esac
 
50384
+
 
50385
 fi
 
50386
 
 
50387
 
 
50388
 
 
50389
-if test $pkg_failed = yes; then
 
50390
 
 
50391
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
50392
-        _pkg_short_errors_supported=yes
 
50393
-else
 
50394
-        _pkg_short_errors_supported=no
 
50395
+# PATH needs CR
 
50396
+# Avoid depending upon Character Ranges.
 
50397
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 
50398
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
50399
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 
50400
+as_cr_digits='0123456789'
 
50401
+as_cr_alnum=$as_cr_Letters$as_cr_digits
 
50402
+
 
50403
+# The user is always right.
 
50404
+if test "${PATH_SEPARATOR+set}" != set; then
 
50405
+  echo "#! /bin/sh" >conf$$.sh
 
50406
+  echo  "exit 0"   >>conf$$.sh
 
50407
+  chmod +x conf$$.sh
 
50408
+  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
 
50409
+    PATH_SEPARATOR=';'
 
50410
+  else
 
50411
+    PATH_SEPARATOR=:
 
50412
+  fi
 
50413
+  rm -f conf$$.sh
 
50414
 fi
 
50415
-        if test $_pkg_short_errors_supported = yes; then
 
50416
-               DBUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "dbus-glib-1 >= $DBUS_REQS" 2>&1`
 
50417
-        else
 
50418
-               DBUS_PKG_ERRORS=`$PKG_CONFIG --print-errors "dbus-glib-1 >= $DBUS_REQS" 2>&1`
 
50419
-        fi
 
50420
-       # Put the nasty error message in config.log where it belongs
 
50421
-       echo "$DBUS_PKG_ERRORS" >&5
 
50422
 
 
50423
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
50424
-$as_echo "no" >&6; }
 
50425
-                enable_browser_plugins=no
 
50426
-elif test $pkg_failed = untried; then
 
50427
-       enable_browser_plugins=no
 
50428
+# Support unset when possible.
 
50429
+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
 
50430
+  as_unset=unset
 
50431
 else
 
50432
-       DBUS_CFLAGS=$pkg_cv_DBUS_CFLAGS
 
50433
-       DBUS_LIBS=$pkg_cv_DBUS_LIBS
 
50434
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
50435
-$as_echo "yes" >&6; }
 
50436
-       :
 
50437
+  as_unset=false
 
50438
 fi
 
50439
-       DBUSLIBDIR="`$PKG_CONFIG dbus-glib-1 --variable=libdir`"
 
50440
-       DBUSBINDIR="`echo $DBUSLIBDIR | sed -e s/lib/bin/`"
 
50441
-       # Extract the first word of "dbus-binding-tool", so it can be a program name with args.
 
50442
-set dummy dbus-binding-tool; ac_word=$2
 
50443
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
50444
-$as_echo_n "checking for $ac_word... " >&6; }
 
50445
-if test "${ac_cv_path_DBUS_BIND+set}" = set; then
 
50446
-  $as_echo_n "(cached) " >&6
 
50447
-else
 
50448
-  case $DBUS_BIND in
 
50449
-  [\\/]* | ?:[\\/]*)
 
50450
-  ac_cv_path_DBUS_BIND="$DBUS_BIND" # Let the user override the test with a path.
 
50451
-  ;;
 
50452
-  *)
 
50453
-  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
50454
-as_dummy="$DBUSBINDIR:$PATH"
 
50455
-for as_dir in $as_dummy
 
50456
+
 
50457
+
 
50458
+# IFS
 
50459
+# We need space, tab and new line, in precisely that order.  Quoting is
 
50460
+# there to prevent editors from complaining about space-tab.
 
50461
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
 
50462
+# splitting by setting IFS to empty value.)
 
50463
+as_nl='
 
50464
+'
 
50465
+IFS=" ""       $as_nl"
 
50466
+
 
50467
+# Find who we are.  Look in the path if we contain no directory separator.
 
50468
+case $0 in
 
50469
+  *[\\/]* ) as_myself=$0 ;;
 
50470
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
50471
+for as_dir in $PATH
 
50472
 do
 
50473
   IFS=$as_save_IFS
 
50474
   test -z "$as_dir" && as_dir=.
 
50475
-  for ac_exec_ext in '' $ac_executable_extensions; do
 
50476
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
50477
-    ac_cv_path_DBUS_BIND="$as_dir/$ac_word$ac_exec_ext"
 
50478
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
50479
-    break 2
 
50480
-  fi
 
50481
-done
 
50482
+  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 
50483
 done
 
50484
 IFS=$as_save_IFS
 
50485
 
 
50486
-  test -z "$ac_cv_path_DBUS_BIND" && ac_cv_path_DBUS_BIND="no"
 
50487
-  ;;
 
50488
+     ;;
 
50489
 esac
 
50490
+# We did not find ourselves, most probably we were run as `sh COMMAND'
 
50491
+# in which case we are not to be found in the path.
 
50492
+if test "x$as_myself" = x; then
 
50493
+  as_myself=$0
 
50494
 fi
 
50495
-DBUS_BIND=$ac_cv_path_DBUS_BIND
 
50496
-if test -n "$DBUS_BIND"; then
 
50497
-  { $as_echo "$as_me:$LINENO: result: $DBUS_BIND" >&5
 
50498
-$as_echo "$DBUS_BIND" >&6; }
 
50499
-else
 
50500
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
50501
-$as_echo "no" >&6; }
 
50502
+if test ! -f "$as_myself"; then
 
50503
+  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 
50504
+  { (exit 1); exit 1; }
 
50505
 fi
 
50506
 
 
50507
+# Work around bugs in pre-3.0 UWIN ksh.
 
50508
+for as_var in ENV MAIL MAILPATH
 
50509
+do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 
50510
+done
 
50511
+PS1='$ '
 
50512
+PS2='> '
 
50513
+PS4='+ '
 
50514
 
 
50515
-       if test "x$DBUS_BIND" = "xno"; then
 
50516
-               { $as_echo "$as_me:$LINENO: WARNING: dbus-binding-tool not found" >&5
 
50517
-$as_echo "$as_me: WARNING: dbus-binding-tool not found" >&2;}
 
50518
-               enable_browser_plugins=no
 
50519
-       fi
 
50520
-
 
50521
-
 
50522
-pkg_failed=no
 
50523
-{ $as_echo "$as_me:$LINENO: checking for SN" >&5
 
50524
-$as_echo_n "checking for SN... " >&6; }
 
50525
+# NLS nuisances.
 
50526
+for as_var in \
 
50527
+  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
 
50528
+  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
 
50529
+  LC_TELEPHONE LC_TIME
 
50530
+do
 
50531
+  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
 
50532
+    eval $as_var=C; export $as_var
 
50533
+  else
 
50534
+    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 
50535
+  fi
 
50536
+done
 
50537
 
 
50538
-if test -n "$SN_CFLAGS"; then
 
50539
-    pkg_cv_SN_CFLAGS="$SN_CFLAGS"
 
50540
- elif test -n "$PKG_CONFIG"; then
 
50541
-    if test -n "$PKG_CONFIG" && \
 
50542
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" libstartup-notification-1.0 >= 0.8 \"") >&5
 
50543
-  ($PKG_CONFIG --exists --print-errors " libstartup-notification-1.0 >= 0.8 ") 2>&5
 
50544
-  ac_status=$?
 
50545
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
50546
-  (exit $ac_status); }; then
 
50547
-  pkg_cv_SN_CFLAGS=`$PKG_CONFIG --cflags " libstartup-notification-1.0 >= 0.8 " 2>/dev/null`
 
50548
+# Required to use basename.
 
50549
+if expr a : '\(a\)' >/dev/null 2>&1 &&
 
50550
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
50551
+  as_expr=expr
 
50552
 else
 
50553
-  pkg_failed=yes
 
50554
-fi
 
50555
- else
 
50556
-    pkg_failed=untried
 
50557
+  as_expr=false
 
50558
 fi
 
50559
-if test -n "$SN_LIBS"; then
 
50560
-    pkg_cv_SN_LIBS="$SN_LIBS"
 
50561
- elif test -n "$PKG_CONFIG"; then
 
50562
-    if test -n "$PKG_CONFIG" && \
 
50563
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \" libstartup-notification-1.0 >= 0.8 \"") >&5
 
50564
-  ($PKG_CONFIG --exists --print-errors " libstartup-notification-1.0 >= 0.8 ") 2>&5
 
50565
-  ac_status=$?
 
50566
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
50567
-  (exit $ac_status); }; then
 
50568
-  pkg_cv_SN_LIBS=`$PKG_CONFIG --libs " libstartup-notification-1.0 >= 0.8 " 2>/dev/null`
 
50569
+
 
50570
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
 
50571
+  as_basename=basename
 
50572
 else
 
50573
-  pkg_failed=yes
 
50574
-fi
 
50575
- else
 
50576
-    pkg_failed=untried
 
50577
+  as_basename=false
 
50578
 fi
 
50579
 
 
50580
 
 
50581
+# Name of the executable.
 
50582
+as_me=`$as_basename -- "$0" ||
 
50583
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 
50584
+        X"$0" : 'X\(//\)$' \| \
 
50585
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 
50586
+echo X/"$0" |
 
50587
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
 
50588
+           s//\1/
 
50589
+           q
 
50590
+         }
 
50591
+         /^X\/\(\/\/\)$/{
 
50592
+           s//\1/
 
50593
+           q
 
50594
+         }
 
50595
+         /^X\/\(\/\).*/{
 
50596
+           s//\1/
 
50597
+           q
 
50598
+         }
 
50599
+         s/.*/./; q'`
 
50600
 
 
50601
-if test $pkg_failed = yes; then
 
50602
+# CDPATH.
 
50603
+$as_unset CDPATH
 
50604
 
 
50605
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
50606
-        _pkg_short_errors_supported=yes
 
50607
-else
 
50608
-        _pkg_short_errors_supported=no
 
50609
-fi
 
50610
-        if test $_pkg_short_errors_supported = yes; then
 
50611
-               SN_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors " libstartup-notification-1.0 >= 0.8 " 2>&1`
 
50612
-        else
 
50613
-               SN_PKG_ERRORS=`$PKG_CONFIG --print-errors " libstartup-notification-1.0 >= 0.8 " 2>&1`
 
50614
-        fi
 
50615
-       # Put the nasty error message in config.log where it belongs
 
50616
-       echo "$SN_PKG_ERRORS" >&5
 
50617
 
 
50618
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
50619
-$as_echo "no" >&6; }
 
50620
-                enable_browser_plugins=no
 
50621
-elif test $pkg_failed = untried; then
 
50622
-       enable_browser_plugins=no
 
50623
-else
 
50624
-       SN_CFLAGS=$pkg_cv_SN_CFLAGS
 
50625
-       SN_LIBS=$pkg_cv_SN_LIBS
 
50626
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
50627
-$as_echo "yes" >&6; }
 
50628
-       enable_browser_plugins=yes
 
50629
-fi
 
50630
-       if test "x$enable_browser_plugins" != "xyes" ; then
 
50631
-               { $as_echo "$as_me:$LINENO: WARNING: libstartup-notification not found, necessary to build the plugin viewer" >&5
 
50632
-$as_echo "$as_me: WARNING: libstartup-notification not found, necessary to build the plugin viewer" >&2;}
 
50633
-       fi
 
50634
 
 
50635
-        # check for -fno-rtti flag
 
50636
+  as_lineno_1=$LINENO
 
50637
+  as_lineno_2=$LINENO
 
50638
+  test "x$as_lineno_1" != "x$as_lineno_2" &&
 
50639
+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
 
50640
 
 
50641
-       ac_ext=cpp
 
50642
-ac_cpp='$CXXCPP $CPPFLAGS'
 
50643
-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
50644
-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
50645
-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
 
50646
+  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
 
50647
+  # uniformly replaced by the line number.  The first 'sed' inserts a
 
50648
+  # line-number line after each line using $LINENO; the second 'sed'
 
50649
+  # does the real work.  The second script uses 'N' to pair each
 
50650
+  # line-number line with the line containing $LINENO, and appends
 
50651
+  # trailing '-' during substitution so that $LINENO is not a special
 
50652
+  # case at line end.
 
50653
+  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
 
50654
+  # scripts with optimization help from Paolo Bonzini.  Blame Lee
 
50655
+  # E. McMahon (1931-1989) for sed's syntax.  :-)
 
50656
+  sed -n '
 
50657
+    p
 
50658
+    /[$]LINENO/=
 
50659
+  ' <$as_myself |
 
50660
+    sed '
 
50661
+      s/[$]LINENO.*/&-/
 
50662
+      t lineno
 
50663
+      b
 
50664
+      :lineno
 
50665
+      N
 
50666
+      :loop
 
50667
+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
 
50668
+      t loop
 
50669
+      s/-\n.*//
 
50670
+    ' >$as_me.lineno &&
 
50671
+  chmod +x "$as_me.lineno" ||
 
50672
+    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
 
50673
+   { (exit 1); exit 1; }; }
 
50674
 
 
50675
-       __SAVE_CXXFLAGS=$CXXFLAGS
 
50676
-       CXXFLAGS="-fno-rtti $CXXFLAGS"
 
50677
+  # Don't try to exec as it changes $[0], causing all sort of problems
 
50678
+  # (the dirname of $[0] is not the place where we might find the
 
50679
+  # original and so on.  Autoconf is especially sensitive to this).
 
50680
+  . "./$as_me.lineno"
 
50681
+  # Exit status is that of the last command.
 
50682
+  exit
 
50683
+}
 
50684
+
 
50685
+
 
50686
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
 
50687
+  as_dirname=dirname
 
50688
+else
 
50689
+  as_dirname=false
 
50690
+fi
 
50691
+
 
50692
+ECHO_C= ECHO_N= ECHO_T=
 
50693
+case `echo -n x` in
 
50694
+-n*)
 
50695
+  case `echo 'x\c'` in
 
50696
+  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
 
50697
+  *)   ECHO_C='\c';;
 
50698
+  esac;;
 
50699
+*)
 
50700
+  ECHO_N='-n';;
 
50701
+esac
 
50702
 
 
50703
-       { $as_echo "$as_me:$LINENO: checking for -fno-rtti compiler flag" >&5
 
50704
-$as_echo_n "checking for -fno-rtti compiler flag... " >&6; }
 
50705
-       cat >conftest.$ac_ext <<_ACEOF
 
50706
-/* confdefs.h.  */
 
50707
-_ACEOF
 
50708
-cat confdefs.h >>conftest.$ac_ext
 
50709
-cat >>conftest.$ac_ext <<_ACEOF
 
50710
-/* end confdefs.h.  */
 
50711
+if expr a : '\(a\)' >/dev/null 2>&1 &&
 
50712
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
50713
+  as_expr=expr
 
50714
+else
 
50715
+  as_expr=false
 
50716
+fi
 
50717
 
 
50718
-int
 
50719
-main ()
 
50720
-{
 
50721
+rm -f conf$$ conf$$.exe conf$$.file
 
50722
+if test -d conf$$.dir; then
 
50723
+  rm -f conf$$.dir/conf$$.file
 
50724
+else
 
50725
+  rm -f conf$$.dir
 
50726
+  mkdir conf$$.dir
 
50727
+fi
 
50728
+echo >conf$$.file
 
50729
+if ln -s conf$$.file conf$$ 2>/dev/null; then
 
50730
+  as_ln_s='ln -s'
 
50731
+  # ... but there are two gotchas:
 
50732
+  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 
50733
+  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 
50734
+  # In both cases, we have to default to `cp -p'.
 
50735
+  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 
50736
+    as_ln_s='cp -p'
 
50737
+elif ln conf$$.file conf$$ 2>/dev/null; then
 
50738
+  as_ln_s=ln
 
50739
+else
 
50740
+  as_ln_s='cp -p'
 
50741
+fi
 
50742
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 
50743
+rmdir conf$$.dir 2>/dev/null
 
50744
 
 
50745
-  ;
 
50746
-  return 0;
 
50747
-}
 
50748
-_ACEOF
 
50749
-rm -f conftest.$ac_objext
 
50750
-if { (ac_try="$ac_compile"
 
50751
-case "(($ac_try" in
 
50752
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
50753
-  *) ac_try_echo=$ac_try;;
 
50754
-esac
 
50755
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
50756
-$as_echo "$ac_try_echo") >&5
 
50757
-  (eval "$ac_compile") 2>conftest.er1
 
50758
-  ac_status=$?
 
50759
-  grep -v '^ *+' conftest.er1 >conftest.err
 
50760
-  rm -f conftest.er1
 
50761
-  cat conftest.err >&5
 
50762
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
50763
-  (exit $ac_status); } && {
 
50764
-        test -z "$ac_cxx_werror_flag" ||
 
50765
-        test ! -s conftest.err
 
50766
-       } && test -s conftest.$ac_objext; then
 
50767
-  have_no_rtti_flag=yes
 
50768
+if mkdir -p . 2>/dev/null; then
 
50769
+  as_mkdir_p=:
 
50770
 else
 
50771
-  $as_echo "$as_me: failed program was:" >&5
 
50772
-sed 's/^/| /' conftest.$ac_ext >&5
 
50773
+  test -d ./-p && rmdir ./-p
 
50774
+  as_mkdir_p=false
 
50775
+fi
 
50776
 
 
50777
-       have_no_rtti_flag=no
 
50778
+if test -x / >/dev/null 2>&1; then
 
50779
+  as_test_x='test -x'
 
50780
+else
 
50781
+  if ls -dL / >/dev/null 2>&1; then
 
50782
+    as_ls_L_option=L
 
50783
+  else
 
50784
+    as_ls_L_option=
 
50785
+  fi
 
50786
+  as_test_x='
 
50787
+    eval sh -c '\''
 
50788
+      if test -d "$1"; then
 
50789
+        test -d "$1/.";
 
50790
+      else
 
50791
+       case $1 in
 
50792
+        -*)set "./$1";;
 
50793
+       esac;
 
50794
+       case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
 
50795
+       ???[sx]*):;;*)false;;esac;fi
 
50796
+    '\'' sh
 
50797
+  '
 
50798
 fi
 
50799
+as_executable_p=$as_test_x
 
50800
 
 
50801
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
50802
-       { $as_echo "$as_me:$LINENO: result: $have_no_rtti_flag" >&5
 
50803
-$as_echo "$have_no_rtti_flag" >&6; }
 
50804
+# Sed expression to map a string onto a valid CPP name.
 
50805
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
50806
 
 
50807
-       CXXFLAGS=$__SAVE_CXXFLAGS
 
50808
-       ac_ext=c
 
50809
-ac_cpp='$CPP $CPPFLAGS'
 
50810
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
50811
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
50812
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
50813
+# Sed expression to map a string onto a valid variable name.
 
50814
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 
50815
 
 
50816
 
 
50817
-       if test "$have_no_rtti_flag" = "yes"; then
 
50818
-               AM_CXXFLAGS="-fno-rtti $AM_CXXFLAGS"
 
50819
-       fi
 
50820
-fi
 
50821
+exec 6>&1
 
50822
 
 
50823
- if test "$enable_browser_plugins" = "yes"; then
 
50824
-  ENABLE_BROWSER_PLUGINS_TRUE=
 
50825
-  ENABLE_BROWSER_PLUGINS_FALSE='#'
 
50826
-else
 
50827
-  ENABLE_BROWSER_PLUGINS_TRUE='#'
 
50828
-  ENABLE_BROWSER_PLUGINS_FALSE=
 
50829
-fi
 
50830
+# Save the log message, to keep $[0] and so on meaningful, and to
 
50831
+# report actual input values of CONFIG_FILES etc. instead of their
 
50832
+# values after options handling.
 
50833
+ac_log="
 
50834
+This file was extended by totem $as_me 2.24.3, which was
 
50835
+generated by GNU Autoconf 2.61.  Invocation command line was
 
50836
 
 
50837
+  CONFIG_FILES    = $CONFIG_FILES
 
50838
+  CONFIG_HEADERS  = $CONFIG_HEADERS
 
50839
+  CONFIG_LINKS    = $CONFIG_LINKS
 
50840
+  CONFIG_COMMANDS = $CONFIG_COMMANDS
 
50841
+  $ $0 $@
 
50842
 
 
50843
-# check which plugins to enable
 
50844
+on `(hostname || uname -n) 2>/dev/null | sed 1q`
 
50845
+"
 
50846
 
 
50847
-if test "$enable_browser_plugins" = "yes"; then
 
50848
+_ACEOF
 
50849
 
 
50850
-{ $as_echo "$as_me:$LINENO: checking whether to enable the basic browser plugin" >&5
 
50851
-$as_echo_n "checking whether to enable the basic browser plugin... " >&6; }
 
50852
-# Check whether --enable-basic-plugin was given.
 
50853
-if test "${enable_basic_plugin+set}" = set; then
 
50854
-  enableval=$enable_basic_plugin;
 
50855
-else
 
50856
-  enable_basic_plugin=yes
 
50857
-fi
 
50858
+cat >>$CONFIG_STATUS <<_ACEOF
 
50859
+# Files that config.status was made for.
 
50860
+config_files="$ac_config_files"
 
50861
+config_headers="$ac_config_headers"
 
50862
+config_commands="$ac_config_commands"
 
50863
 
 
50864
-{ $as_echo "$as_me:$LINENO: result: $enable_basic_plugin" >&5
 
50865
-$as_echo "$enable_basic_plugin" >&6; }
 
50866
+_ACEOF
 
50867
 
 
50868
-{ $as_echo "$as_me:$LINENO: checking whether to enable the GMP browser plugin" >&5
 
50869
-$as_echo_n "checking whether to enable the GMP browser plugin... " >&6; }
 
50870
-# Check whether --enable-gmp-plugin was given.
 
50871
-if test "${enable_gmp_plugin+set}" = set; then
 
50872
-  enableval=$enable_gmp_plugin;
 
50873
-else
 
50874
-  enable_gmp_plugin=yes
 
50875
-fi
 
50876
+cat >>$CONFIG_STATUS <<\_ACEOF
 
50877
+ac_cs_usage="\
 
50878
+\`$as_me' instantiates files from templates according to the
 
50879
+current configuration.
 
50880
 
 
50881
-{ $as_echo "$as_me:$LINENO: result: $enable_gmp_plugin" >&5
 
50882
-$as_echo "$enable_gmp_plugin" >&6; }
 
50883
+Usage: $0 [OPTIONS] [FILE]...
 
50884
 
 
50885
-{ $as_echo "$as_me:$LINENO: checking whether to enable the Complex browser plugin" >&5
 
50886
-$as_echo_n "checking whether to enable the Complex browser plugin... " >&6; }
 
50887
-# Check whether --enable-complex-plugin was given.
 
50888
-if test "${enable_complex_plugin+set}" = set; then
 
50889
-  enableval=$enable_complex_plugin;
 
50890
-else
 
50891
-  enable_complex_plugin=no
 
50892
-fi
 
50893
+  -h, --help       print this help, then exit
 
50894
+  -V, --version    print version number and configuration settings, then exit
 
50895
+  -q, --quiet      do not print progress messages
 
50896
+  -d, --debug      don't remove temporary files
 
50897
+      --recheck    update $as_me by reconfiguring in the same conditions
 
50898
+  --file=FILE[:TEMPLATE]
 
50899
+                  instantiate the configuration file FILE
 
50900
+  --header=FILE[:TEMPLATE]
 
50901
+                  instantiate the configuration header FILE
 
50902
 
 
50903
-{ $as_echo "$as_me:$LINENO: result: $enable_complex_plugin" >&5
 
50904
-$as_echo "$enable_complex_plugin" >&6; }
 
50905
+Configuration files:
 
50906
+$config_files
 
50907
 
 
50908
-{ $as_echo "$as_me:$LINENO: checking whether to enable the NarrowSpace browser plugin" >&5
 
50909
-$as_echo_n "checking whether to enable the NarrowSpace browser plugin... " >&6; }
 
50910
-# Check whether --enable-narrowspace-plugin was given.
 
50911
-if test "${enable_narrowspace_plugin+set}" = set; then
 
50912
-  enableval=$enable_narrowspace_plugin;
 
50913
-else
 
50914
-  enable_narrowspace_plugin=yes
 
50915
-fi
 
50916
+Configuration headers:
 
50917
+$config_headers
 
50918
 
 
50919
-{ $as_echo "$as_me:$LINENO: result: $enable_narrowspace_plugin" >&5
 
50920
-$as_echo "$enable_narrowspace_plugin" >&6; }
 
50921
+Configuration commands:
 
50922
+$config_commands
 
50923
 
 
50924
-{ $as_echo "$as_me:$LINENO: checking whether to enable the MullY browser plugin" >&5
 
50925
-$as_echo_n "checking whether to enable the MullY browser plugin... " >&6; }
 
50926
-# Check whether --enable-mully-plugin was given.
 
50927
-if test "${enable_mully_plugin+set}" = set; then
 
50928
-  enableval=$enable_mully_plugin;
 
50929
-else
 
50930
-  enable_mully_plugin=yes
 
50931
-fi
 
50932
+Report bugs to <bug-autoconf@gnu.org>."
 
50933
 
 
50934
-{ $as_echo "$as_me:$LINENO: result: $enable_mully_plugin" >&5
 
50935
-$as_echo "$enable_mully_plugin" >&6; }
 
50936
+_ACEOF
 
50937
+cat >>$CONFIG_STATUS <<_ACEOF
 
50938
+ac_cs_version="\\
 
50939
+totem config.status 2.24.3
 
50940
+configured by $0, generated by GNU Autoconf 2.61,
 
50941
+  with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
 
50942
 
 
50943
-{ $as_echo "$as_me:$LINENO: checking whether to enable the Cone browser plugin" >&5
 
50944
-$as_echo_n "checking whether to enable the Cone browser plugin... " >&6; }
 
50945
-# Check whether --enable-cone-plugin was given.
 
50946
-if test "${enable_cone_plugin+set}" = set; then
 
50947
-  enableval=$enable_cone_plugin;
 
50948
-else
 
50949
-  enable_cone_plugin=yes
 
50950
-fi
 
50951
+Copyright (C) 2006 Free Software Foundation, Inc.
 
50952
+This config.status script is free software; the Free Software Foundation
 
50953
+gives unlimited permission to copy, distribute and modify it."
 
50954
 
 
50955
-{ $as_echo "$as_me:$LINENO: result: $enable_cone_plugin" >&5
 
50956
-$as_echo "$enable_cone_plugin" >&6; }
 
50957
+ac_pwd='$ac_pwd'
 
50958
+srcdir='$srcdir'
 
50959
+INSTALL='$INSTALL'
 
50960
+MKDIR_P='$MKDIR_P'
 
50961
+_ACEOF
 
50962
 
 
50963
-fi
 
50964
+cat >>$CONFIG_STATUS <<\_ACEOF
 
50965
+# If no file are specified by the user, then we need to provide default
 
50966
+# value.  By we need to know if files were specified by the user.
 
50967
+ac_need_defaults=:
 
50968
+while test $# != 0
 
50969
+do
 
50970
+  case $1 in
 
50971
+  --*=*)
 
50972
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
 
50973
+    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
 
50974
+    ac_shift=:
 
50975
+    ;;
 
50976
+  *)
 
50977
+    ac_option=$1
 
50978
+    ac_optarg=$2
 
50979
+    ac_shift=shift
 
50980
+    ;;
 
50981
+  esac
 
50982
 
 
50983
- if test "$enable_basic_plugin" = "yes"; then
 
50984
-  ENABLE_BASIC_PLUGIN_TRUE=
 
50985
-  ENABLE_BASIC_PLUGIN_FALSE='#'
 
50986
-else
 
50987
-  ENABLE_BASIC_PLUGIN_TRUE='#'
 
50988
-  ENABLE_BASIC_PLUGIN_FALSE=
 
50989
-fi
 
50990
+  case $ac_option in
 
50991
+  # Handling of the options.
 
50992
+  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
 
50993
+    ac_cs_recheck=: ;;
 
50994
+  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
 
50995
+    echo "$ac_cs_version"; exit ;;
 
50996
+  --debug | --debu | --deb | --de | --d | -d )
 
50997
+    debug=: ;;
 
50998
+  --file | --fil | --fi | --f )
 
50999
+    $ac_shift
 
51000
+    CONFIG_FILES="$CONFIG_FILES $ac_optarg"
 
51001
+    ac_need_defaults=false;;
 
51002
+  --header | --heade | --head | --hea )
 
51003
+    $ac_shift
 
51004
+    CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
 
51005
+    ac_need_defaults=false;;
 
51006
+  --he | --h)
 
51007
+    # Conflict between --help and --header
 
51008
+    { echo "$as_me: error: ambiguous option: $1
 
51009
+Try \`$0 --help' for more information." >&2
 
51010
+   { (exit 1); exit 1; }; };;
 
51011
+  --help | --hel | -h )
 
51012
+    echo "$ac_cs_usage"; exit ;;
 
51013
+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
51014
+  | -silent | --silent | --silen | --sile | --sil | --si | --s)
 
51015
+    ac_cs_silent=: ;;
 
51016
 
 
51017
- if test "$enable_gmp_plugin" = "yes"; then
 
51018
-  ENABLE_GMP_PLUGIN_TRUE=
 
51019
-  ENABLE_GMP_PLUGIN_FALSE='#'
 
51020
-else
 
51021
-  ENABLE_GMP_PLUGIN_TRUE='#'
 
51022
-  ENABLE_GMP_PLUGIN_FALSE=
 
51023
-fi
 
51024
+  # This is an error.
 
51025
+  -*) { echo "$as_me: error: unrecognized option: $1
 
51026
+Try \`$0 --help' for more information." >&2
 
51027
+   { (exit 1); exit 1; }; } ;;
 
51028
 
 
51029
- if test "$enable_complex_plugin" = "yes"; then
 
51030
-  ENABLE_COMPLEX_PLUGIN_TRUE=
 
51031
-  ENABLE_COMPLEX_PLUGIN_FALSE='#'
 
51032
-else
 
51033
-  ENABLE_COMPLEX_PLUGIN_TRUE='#'
 
51034
-  ENABLE_COMPLEX_PLUGIN_FALSE=
 
51035
-fi
 
51036
+  *) ac_config_targets="$ac_config_targets $1"
 
51037
+     ac_need_defaults=false ;;
 
51038
 
 
51039
- if test "$enable_narrowspace_plugin" = "yes"; then
 
51040
-  ENABLE_NARROWSPACE_PLUGIN_TRUE=
 
51041
-  ENABLE_NARROWSPACE_PLUGIN_FALSE='#'
 
51042
-else
 
51043
-  ENABLE_NARROWSPACE_PLUGIN_TRUE='#'
 
51044
-  ENABLE_NARROWSPACE_PLUGIN_FALSE=
 
51045
-fi
 
51046
+  esac
 
51047
+  shift
 
51048
+done
 
51049
 
 
51050
- if test "$enable_mully_plugin" = "yes"; then
 
51051
-  ENABLE_MULLY_PLUGIN_TRUE=
 
51052
-  ENABLE_MULLY_PLUGIN_FALSE='#'
 
51053
-else
 
51054
-  ENABLE_MULLY_PLUGIN_TRUE='#'
 
51055
-  ENABLE_MULLY_PLUGIN_FALSE=
 
51056
+ac_configure_extra_args=
 
51057
+
 
51058
+if $ac_cs_silent; then
 
51059
+  exec 6>/dev/null
 
51060
+  ac_configure_extra_args="$ac_configure_extra_args --silent"
 
51061
 fi
 
51062
 
 
51063
- if test "$enable_cone_plugin" = "yes"; then
 
51064
-  ENABLE_CONE_PLUGIN_TRUE=
 
51065
-  ENABLE_CONE_PLUGIN_FALSE='#'
 
51066
-else
 
51067
-  ENABLE_CONE_PLUGIN_TRUE='#'
 
51068
-  ENABLE_CONE_PLUGIN_FALSE=
 
51069
+_ACEOF
 
51070
+cat >>$CONFIG_STATUS <<_ACEOF
 
51071
+if \$ac_cs_recheck; then
 
51072
+  echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
 
51073
+  CONFIG_SHELL=$SHELL
 
51074
+  export CONFIG_SHELL
 
51075
+  exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
 
51076
 fi
 
51077
 
 
51078
+_ACEOF
 
51079
+cat >>$CONFIG_STATUS <<\_ACEOF
 
51080
+exec 5>>config.log
 
51081
+{
 
51082
+  echo
 
51083
+  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
 
51084
+## Running $as_me. ##
 
51085
+_ASBOX
 
51086
+  echo "$ac_log"
 
51087
+} >&5
 
51088
 
 
51089
+_ACEOF
 
51090
+cat >>$CONFIG_STATUS <<_ACEOF
 
51091
+#
 
51092
+# INIT-COMMANDS
 
51093
+#
 
51094
+AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
 
51095
 
 
51096
-# Check whether --enable-nautilus was given.
 
51097
-if test "${enable_nautilus+set}" = set; then
 
51098
-  enableval=$enable_nautilus; case "${enableval}" in
 
51099
-       yes) ENABLE_NAUTILUS=yes ;;
 
51100
-       no) ENABLE_NAUTILUS=no ;;
 
51101
-       *) { { $as_echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-nautilus" >&5
 
51102
-$as_echo "$as_me: error: bad value ${enableval} for --enable-nautilus" >&2;}
 
51103
-   { (exit 1); exit 1; }; } ;;
 
51104
-       esac
 
51105
-else
 
51106
-  ENABLE_NAUTILUS=yes
 
51107
-fi
 
51108
 
 
51109
-if test x$ENABLE_NAUTILUS = "xyes" ; then
 
51110
 
 
51111
-pkg_failed=no
 
51112
-{ $as_echo "$as_me:$LINENO: checking for NAUTILUS" >&5
 
51113
-$as_echo_n "checking for NAUTILUS... " >&6; }
36928
51114
+# The HP-UX ksh and POSIX shell print the target directory to stdout
36929
51115
+# if CDPATH is set.
36930
51116
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
36931
 
+
 
51117
 
 
51118
-if test -n "$NAUTILUS_CFLAGS"; then
 
51119
-    pkg_cv_NAUTILUS_CFLAGS="$NAUTILUS_CFLAGS"
 
51120
- elif test -n "$PKG_CONFIG"; then
 
51121
-    if test -n "$PKG_CONFIG" && \
 
51122
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 gthread-2.0 libnautilus-extension\"") >&5
 
51123
-  ($PKG_CONFIG --exists --print-errors "gtk+-2.0 gthread-2.0 libnautilus-extension") 2>&5
 
51124
-  ac_status=$?
 
51125
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
51126
-  (exit $ac_status); }; then
 
51127
-  pkg_cv_NAUTILUS_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 gthread-2.0 libnautilus-extension" 2>/dev/null`
 
51128
-else
 
51129
-  pkg_failed=yes
 
51130
-fi
 
51131
- else
 
51132
-    pkg_failed=untried
 
51133
-fi
 
51134
-if test -n "$NAUTILUS_LIBS"; then
 
51135
-    pkg_cv_NAUTILUS_LIBS="$NAUTILUS_LIBS"
 
51136
- elif test -n "$PKG_CONFIG"; then
 
51137
-    if test -n "$PKG_CONFIG" && \
 
51138
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 gthread-2.0 libnautilus-extension\"") >&5
 
51139
-  ($PKG_CONFIG --exists --print-errors "gtk+-2.0 gthread-2.0 libnautilus-extension") 2>&5
 
51140
-  ac_status=$?
 
51141
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
51142
-  (exit $ac_status); }; then
 
51143
-  pkg_cv_NAUTILUS_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 gthread-2.0 libnautilus-extension" 2>/dev/null`
 
51144
-else
 
51145
-  pkg_failed=yes
 
51146
-fi
 
51147
- else
 
51148
-    pkg_failed=untried
 
51149
-fi
36932
51150
+sed_quote_subst='$sed_quote_subst'
36933
51151
+double_quote_subst='$double_quote_subst'
36934
51152
+delay_variable_subst='$delay_variable_subst'
37206
51424
+      ;;
37207
51425
+    esac
37208
51426
+done
37209
 
+
 
51427
 
37210
51428
+# Double-quote double-evaled strings.
37211
51429
+for var in reload_cmds \
37212
51430
+old_postinstall_cmds \
37244
51462
+      ;;
37245
51463
+    esac
37246
51464
+done
37247
 
+
 
51465
 
37248
51466
+# Fix-up fallback echo if it was mangled by the above quoting rules.
37249
51467
+case \$lt_ECHO in
37250
51468
+*'\\\$0 --fallback-echo"')  lt_ECHO=\`\$ECHO "X\$lt_ECHO" | \$Xsed -e 's/\\\\\\\\\\\\\\\$0 --fallback-echo"\$/\$0 --fallback-echo"/'\`
37251
51469
+  ;;
37252
51470
+esac
37253
 
+
 
51471
 
 
51472
-if test $pkg_failed = yes; then
37254
51473
+ac_aux_dir='$ac_aux_dir'
37255
51474
+xsi_shell='$xsi_shell'
37256
51475
+lt_shell_append='$lt_shell_append'
37257
 
+
 
51476
 
 
51477
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
51478
-        _pkg_short_errors_supported=yes
 
51479
-else
 
51480
-        _pkg_short_errors_supported=no
37258
51481
+# See if we are running on zsh, and set the options which allow our
37259
51482
+# commands through without removal of \ escapes INIT.
37260
51483
+if test -n "\${ZSH_VERSION+set}" ; then
37261
51484
+   setopt NO_GLOB_SUBST
37262
 
+fi
37263
 
+
37264
 
+
 
51485
 fi
 
51486
-        if test $_pkg_short_errors_supported = yes; then
 
51487
-               NAUTILUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "gtk+-2.0 gthread-2.0 libnautilus-extension" 2>&1`
 
51488
-        else
 
51489
-               NAUTILUS_PKG_ERRORS=`$PKG_CONFIG --print-errors "gtk+-2.0 gthread-2.0 libnautilus-extension" 2>&1`
 
51490
-        fi
 
51491
-       # Put the nasty error message in config.log where it belongs
 
51492
-       echo "$NAUTILUS_PKG_ERRORS" >&5
 
51493
 
 
51494
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
51495
-$as_echo "no" >&6; }
 
51496
-                HAVE_NAUTILUS=no
 
51497
-elif test $pkg_failed = untried; then
 
51498
-       HAVE_NAUTILUS=no
 
51499
-else
 
51500
-       NAUTILUS_CFLAGS=$pkg_cv_NAUTILUS_CFLAGS
 
51501
-       NAUTILUS_LIBS=$pkg_cv_NAUTILUS_LIBS
 
51502
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
51503
-$as_echo "yes" >&6; }
 
51504
-       HAVE_NAUTILUS=yes
 
51505
-fi
 
51506
-fi
 
51507
 
 
51508
-NAUTILUS_LIBS="$NAUTILUS_LIBS $EXTRA_BACKEND_LIBS"
37265
51509
+    PACKAGE='$PACKAGE'
37266
51510
+    VERSION='$VERSION'
37267
51511
+    TIMESTAMP='$TIMESTAMP'
37271
51515
+
37272
51516
+
37273
51517
+ac_aux_dir='$ac_aux_dir'
37274
 
+
37275
 
+
37276
 
+
 
51518
 
 
51519
 
 
51520
-if test x$HAVE_NAUTILUS = "xyes"; then
 
51521
 
 
51522
-cat >>confdefs.h <<\_ACEOF
 
51523
-#define HAVE_NAUTILUS 1
37277
51524
 _ACEOF
37278
51525
 
37279
 
 cat >>$CONFIG_STATUS <<\_ACEOF
37280
 
@@ -27014,11 +24717,13 @@
37281
 
     "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
37282
 
     "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
37283
 
     "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
 
51526
-       NAUTILUSDIR=`pkg-config --variable=extensiondir libnautilus-extension`
 
51527
+cat >>$CONFIG_STATUS <<\_ACEOF
 
51528
 
 
51529
-fi
 
51530
- if test x$HAVE_NAUTILUS = "xyes"; then
 
51531
-  HAVE_NAUTILUS_TRUE=
 
51532
-  HAVE_NAUTILUS_FALSE='#'
 
51533
-else
 
51534
-  HAVE_NAUTILUS_TRUE='#'
 
51535
-  HAVE_NAUTILUS_FALSE=
 
51536
-fi
 
51537
+# Handling of arguments.
 
51538
+for ac_config_target in $ac_config_targets
 
51539
+do
 
51540
+  case $ac_config_target in
 
51541
+    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
 
51542
+    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
 
51543
+    "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
37284
51544
+    "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
37285
 
     "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
37286
 
     "totem.spec") CONFIG_FILES="$CONFIG_FILES totem.spec" ;;
37287
 
     "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;;
37288
 
     "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
37289
 
     "src/plugins/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/Makefile" ;;
 
51545
+    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
 
51546
+    "totem.spec") CONFIG_FILES="$CONFIG_FILES totem.spec" ;;
 
51547
+    "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;;
 
51548
+    "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
 
51549
+    "src/plugins/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/Makefile" ;;
37290
51550
+    "src/plugins/bbc/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/bbc/Makefile" ;;
37291
 
     "src/plugins/bemused/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/bemused/Makefile" ;;
37292
 
     "src/plugins/screensaver/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/screensaver/Makefile" ;;
37293
 
     "src/plugins/ontop/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/ontop/Makefile" ;;
37294
 
@@ -27294,6 +24999,7 @@
37295
 
 CXXDEPMODE!$CXXDEPMODE$ac_delim
37296
 
 am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim
37297
 
 am__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim
 
51551
+    "src/plugins/bemused/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/bemused/Makefile" ;;
 
51552
+    "src/plugins/screensaver/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/screensaver/Makefile" ;;
 
51553
+    "src/plugins/ontop/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/ontop/Makefile" ;;
 
51554
+    "src/plugins/galago/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/galago/Makefile" ;;
 
51555
+    "src/plugins/gromit/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/gromit/Makefile" ;;
 
51556
+    "src/plugins/lirc/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/lirc/Makefile" ;;
 
51557
+    "src/plugins/media-player-keys/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/media-player-keys/Makefile" ;;
 
51558
+    "src/plugins/mythtv/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/mythtv/Makefile" ;;
 
51559
+    "src/plugins/properties/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/properties/Makefile" ;;
 
51560
+    "src/plugins/sidebar-test/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/sidebar-test/Makefile" ;;
 
51561
+    "src/plugins/skipto/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/skipto/Makefile" ;;
 
51562
+    "src/plugins/sample-python/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/sample-python/Makefile" ;;
 
51563
+    "src/plugins/sample-vala/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/sample-vala/Makefile" ;;
 
51564
+    "src/plugins/thumbnail/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/thumbnail/Makefile" ;;
 
51565
+    "src/plugins/totem/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/totem/Makefile" ;;
 
51566
+    "src/plugins/tracker/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/tracker/Makefile" ;;
 
51567
+    "src/plugins/youtube/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/youtube/Makefile" ;;
 
51568
+    "src/plugins/pythonconsole/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/pythonconsole/Makefile" ;;
 
51569
+    "src/plugins/publish/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/publish/Makefile" ;;
 
51570
+    "src/backend/Makefile") CONFIG_FILES="$CONFIG_FILES src/backend/Makefile" ;;
 
51571
+    "browser-plugin/Makefile") CONFIG_FILES="$CONFIG_FILES browser-plugin/Makefile" ;;
 
51572
+    "data/Makefile") CONFIG_FILES="$CONFIG_FILES data/Makefile" ;;
 
51573
+    "data/totem.desktop.in.in") CONFIG_FILES="$CONFIG_FILES data/totem.desktop.in.in" ;;
 
51574
+    "data/icons/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/Makefile" ;;
 
51575
+    "data/icons/16x16/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/16x16/Makefile" ;;
 
51576
+    "data/icons/22x22/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/22x22/Makefile" ;;
 
51577
+    "data/icons/24x24/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/24x24/Makefile" ;;
 
51578
+    "data/icons/32x32/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/32x32/Makefile" ;;
 
51579
+    "data/icons/48x48/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/48x48/Makefile" ;;
 
51580
+    "data/icons/scalable/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/scalable/Makefile" ;;
 
51581
+    "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
 
51582
+    "help/Makefile") CONFIG_FILES="$CONFIG_FILES help/Makefile" ;;
 
51583
+    "help/bg/Makefile") CONFIG_FILES="$CONFIG_FILES help/bg/Makefile" ;;
 
51584
+    "bindings/Makefile") CONFIG_FILES="$CONFIG_FILES bindings/Makefile" ;;
 
51585
+    "bindings/python/Makefile") CONFIG_FILES="$CONFIG_FILES bindings/python/Makefile" ;;
 
51586
+    "bindings/vala/Makefile") CONFIG_FILES="$CONFIG_FILES bindings/vala/Makefile" ;;
 
51587
+    "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;;
 
51588
 
 
51589
+  *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
 
51590
+echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
 
51591
+   { (exit 1); exit 1; }; };;
 
51592
+  esac
 
51593
+done
 
51594
 
 
51595
 
 
51596
-# Check whether --with-dbus was given.
 
51597
-if test "${with_dbus+set}" = set; then
 
51598
-  withval=$with_dbus;
 
51599
-else
 
51600
-  with_dbus=auto
 
51601
+# If the user did not use the arguments to specify the items to instantiate,
 
51602
+# then the envvar interface is used.  Set only those that are not.
 
51603
+# We use the long form for the default assignment because of an extremely
 
51604
+# bizarre bug on SunOS 4.1.3.
 
51605
+if $ac_need_defaults; then
 
51606
+  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
 
51607
+  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
 
51608
+  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
 
51609
 fi
 
51610
 
 
51611
-if test "x$with_dbus" != "xno"; then
 
51612
+# Have a temporary directory for convenience.  Make it in the build tree
 
51613
+# simply because there is no reason against having it here, and in addition,
 
51614
+# creating and moving files from /tmp can sometimes cause problems.
 
51615
+# Hook for its removal unless debugging.
 
51616
+# Note that there is a small window in which the directory will not be cleaned:
 
51617
+# after its creation but before its name has been assigned to `$tmp'.
 
51618
+$debug ||
 
51619
+{
 
51620
+  tmp=
 
51621
+  trap 'exit_status=$?
 
51622
+  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
 
51623
+' 0
 
51624
+  trap '{ (exit 1); exit 1; }' 1 2 13 15
 
51625
+}
 
51626
+# Create a (secure) tmp directory for tmp files.
 
51627
 
 
51628
-pkg_failed=no
 
51629
-{ $as_echo "$as_me:$LINENO: checking for DBUS" >&5
 
51630
-$as_echo_n "checking for DBUS... " >&6; }
 
51631
+{
 
51632
+  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
 
51633
+  test -n "$tmp" && test -d "$tmp"
 
51634
+}  ||
 
51635
+{
 
51636
+  tmp=./conf$$-$RANDOM
 
51637
+  (umask 077 && mkdir "$tmp")
 
51638
+} ||
 
51639
+{
 
51640
+   echo "$me: cannot create a temporary directory in ." >&2
 
51641
+   { (exit 1); exit 1; }
 
51642
+}
 
51643
 
 
51644
-if test -n "$DBUS_CFLAGS"; then
 
51645
-    pkg_cv_DBUS_CFLAGS="$DBUS_CFLAGS"
 
51646
- elif test -n "$PKG_CONFIG"; then
 
51647
-    if test -n "$PKG_CONFIG" && \
 
51648
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1 >= \$DBUS_REQS\"") >&5
 
51649
-  ($PKG_CONFIG --exists --print-errors "dbus-glib-1 >= $DBUS_REQS") 2>&5
 
51650
-  ac_status=$?
 
51651
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
51652
-  (exit $ac_status); }; then
 
51653
-  pkg_cv_DBUS_CFLAGS=`$PKG_CONFIG --cflags "dbus-glib-1 >= $DBUS_REQS" 2>/dev/null`
 
51654
-else
 
51655
-  pkg_failed=yes
 
51656
-fi
 
51657
- else
 
51658
-    pkg_failed=untried
 
51659
-fi
 
51660
-if test -n "$DBUS_LIBS"; then
 
51661
-    pkg_cv_DBUS_LIBS="$DBUS_LIBS"
 
51662
- elif test -n "$PKG_CONFIG"; then
 
51663
-    if test -n "$PKG_CONFIG" && \
 
51664
-    { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dbus-glib-1 >= \$DBUS_REQS\"") >&5
 
51665
-  ($PKG_CONFIG --exists --print-errors "dbus-glib-1 >= $DBUS_REQS") 2>&5
 
51666
-  ac_status=$?
 
51667
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
51668
-  (exit $ac_status); }; then
 
51669
-  pkg_cv_DBUS_LIBS=`$PKG_CONFIG --libs "dbus-glib-1 >= $DBUS_REQS" 2>/dev/null`
 
51670
-else
 
51671
-  pkg_failed=yes
 
51672
-fi
 
51673
- else
 
51674
-    pkg_failed=untried
 
51675
-fi
 
51676
+#
 
51677
+# Set up the sed scripts for CONFIG_FILES section.
 
51678
+#
 
51679
 
 
51680
+# No need to generate the scripts if there are no CONFIG_FILES.
 
51681
+# This happens for instance when ./config.status config.h
 
51682
+if test -n "$CONFIG_FILES"; then
 
51683
 
 
51684
+_ACEOF
 
51685
 
 
51686
-if test $pkg_failed = yes; then
 
51687
 
 
51688
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
51689
-        _pkg_short_errors_supported=yes
 
51690
-else
 
51691
-        _pkg_short_errors_supported=no
 
51692
-fi
 
51693
-        if test $_pkg_short_errors_supported = yes; then
 
51694
-               DBUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "dbus-glib-1 >= $DBUS_REQS" 2>&1`
 
51695
-        else
 
51696
-               DBUS_PKG_ERRORS=`$PKG_CONFIG --print-errors "dbus-glib-1 >= $DBUS_REQS" 2>&1`
 
51697
-        fi
 
51698
-       # Put the nasty error message in config.log where it belongs
 
51699
-       echo "$DBUS_PKG_ERRORS" >&5
 
51700
 
 
51701
-       { $as_echo "$as_me:$LINENO: result: no" >&5
 
51702
-$as_echo "no" >&6; }
 
51703
-                enable_dbus=no
 
51704
-elif test $pkg_failed = untried; then
 
51705
-       enable_dbus=no
 
51706
-else
 
51707
-       DBUS_CFLAGS=$pkg_cv_DBUS_CFLAGS
 
51708
-       DBUS_LIBS=$pkg_cv_DBUS_LIBS
 
51709
-        { $as_echo "$as_me:$LINENO: result: yes" >&5
 
51710
-$as_echo "yes" >&6; }
 
51711
-       enable_dbus=yes
 
51712
-fi
 
51713
-        if test "x$with_dbus" = xyes && test "x$enable_dbus" = xno; then
 
51714
-          { { $as_echo "$as_me:$LINENO: error: D-BUS explicitly requested but no support found" >&5
 
51715
-$as_echo "$as_me: error: D-BUS explicitly requested but no support found" >&2;}
 
51716
+ac_delim='%!_!# '
 
51717
+for ac_last_try in false false false false false :; do
 
51718
+  cat >conf$$subs.sed <<_ACEOF
 
51719
+SHELL!$SHELL$ac_delim
 
51720
+PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim
 
51721
+PACKAGE_NAME!$PACKAGE_NAME$ac_delim
 
51722
+PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim
 
51723
+PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim
 
51724
+PACKAGE_STRING!$PACKAGE_STRING$ac_delim
 
51725
+PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim
 
51726
+exec_prefix!$exec_prefix$ac_delim
 
51727
+prefix!$prefix$ac_delim
 
51728
+program_transform_name!$program_transform_name$ac_delim
 
51729
+bindir!$bindir$ac_delim
 
51730
+sbindir!$sbindir$ac_delim
 
51731
+libexecdir!$libexecdir$ac_delim
 
51732
+datarootdir!$datarootdir$ac_delim
 
51733
+datadir!$datadir$ac_delim
 
51734
+sysconfdir!$sysconfdir$ac_delim
 
51735
+sharedstatedir!$sharedstatedir$ac_delim
 
51736
+localstatedir!$localstatedir$ac_delim
 
51737
+includedir!$includedir$ac_delim
 
51738
+oldincludedir!$oldincludedir$ac_delim
 
51739
+docdir!$docdir$ac_delim
 
51740
+infodir!$infodir$ac_delim
 
51741
+htmldir!$htmldir$ac_delim
 
51742
+dvidir!$dvidir$ac_delim
 
51743
+pdfdir!$pdfdir$ac_delim
 
51744
+psdir!$psdir$ac_delim
 
51745
+libdir!$libdir$ac_delim
 
51746
+localedir!$localedir$ac_delim
 
51747
+mandir!$mandir$ac_delim
 
51748
+DEFS!$DEFS$ac_delim
 
51749
+ECHO_C!$ECHO_C$ac_delim
 
51750
+ECHO_N!$ECHO_N$ac_delim
 
51751
+ECHO_T!$ECHO_T$ac_delim
 
51752
+LIBS!$LIBS$ac_delim
 
51753
+build_alias!$build_alias$ac_delim
 
51754
+host_alias!$host_alias$ac_delim
 
51755
+target_alias!$target_alias$ac_delim
 
51756
+INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
 
51757
+INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
 
51758
+INSTALL_DATA!$INSTALL_DATA$ac_delim
 
51759
+am__isrc!$am__isrc$ac_delim
 
51760
+CYGPATH_W!$CYGPATH_W$ac_delim
 
51761
+PACKAGE!$PACKAGE$ac_delim
 
51762
+VERSION!$VERSION$ac_delim
 
51763
+ACLOCAL!$ACLOCAL$ac_delim
 
51764
+AUTOCONF!$AUTOCONF$ac_delim
 
51765
+AUTOMAKE!$AUTOMAKE$ac_delim
 
51766
+AUTOHEADER!$AUTOHEADER$ac_delim
 
51767
+MAKEINFO!$MAKEINFO$ac_delim
 
51768
+install_sh!$install_sh$ac_delim
 
51769
+STRIP!$STRIP$ac_delim
 
51770
+INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim
 
51771
+mkdir_p!$mkdir_p$ac_delim
 
51772
+AWK!$AWK$ac_delim
 
51773
+SET_MAKE!$SET_MAKE$ac_delim
 
51774
+am__leading_dot!$am__leading_dot$ac_delim
 
51775
+AMTAR!$AMTAR$ac_delim
 
51776
+am__tar!$am__tar$ac_delim
 
51777
+am__untar!$am__untar$ac_delim
 
51778
+GETTEXT_PACKAGE!$GETTEXT_PACKAGE$ac_delim
 
51779
+CC!$CC$ac_delim
 
51780
+CFLAGS!$CFLAGS$ac_delim
 
51781
+LDFLAGS!$LDFLAGS$ac_delim
 
51782
+CPPFLAGS!$CPPFLAGS$ac_delim
 
51783
+ac_ct_CC!$ac_ct_CC$ac_delim
 
51784
+EXEEXT!$EXEEXT$ac_delim
 
51785
+OBJEXT!$OBJEXT$ac_delim
 
51786
+DEPDIR!$DEPDIR$ac_delim
 
51787
+am__include!$am__include$ac_delim
 
51788
+am__quote!$am__quote$ac_delim
 
51789
+AMDEP_TRUE!$AMDEP_TRUE$ac_delim
 
51790
+AMDEP_FALSE!$AMDEP_FALSE$ac_delim
 
51791
+AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim
 
51792
+CCDEPMODE!$CCDEPMODE$ac_delim
 
51793
+am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim
 
51794
+am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim
 
51795
+CPP!$CPP$ac_delim
 
51796
+GREP!$GREP$ac_delim
 
51797
+EGREP!$EGREP$ac_delim
 
51798
+USE_NLS!$USE_NLS$ac_delim
 
51799
+MSGFMT!$MSGFMT$ac_delim
 
51800
+MSGFMT_OPTS!$MSGFMT_OPTS$ac_delim
 
51801
+GMSGFMT!$GMSGFMT$ac_delim
 
51802
+XGETTEXT!$XGETTEXT$ac_delim
 
51803
+CATALOGS!$CATALOGS$ac_delim
 
51804
+CATOBJEXT!$CATOBJEXT$ac_delim
 
51805
+DATADIRNAME!$DATADIRNAME$ac_delim
 
51806
+GMOFILES!$GMOFILES$ac_delim
 
51807
+INSTOBJEXT!$INSTOBJEXT$ac_delim
 
51808
+INTLLIBS!$INTLLIBS$ac_delim
 
51809
+PO_IN_DATADIR_TRUE!$PO_IN_DATADIR_TRUE$ac_delim
 
51810
+PO_IN_DATADIR_FALSE!$PO_IN_DATADIR_FALSE$ac_delim
 
51811
+POFILES!$POFILES$ac_delim
 
51812
+POSUB!$POSUB$ac_delim
 
51813
+MKINSTALLDIRS!$MKINSTALLDIRS$ac_delim
 
51814
+INTLTOOL_UPDATE!$INTLTOOL_UPDATE$ac_delim
 
51815
+INTLTOOL_MERGE!$INTLTOOL_MERGE$ac_delim
 
51816
+_ACEOF
 
51817
+
 
51818
+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
 
51819
+    break
 
51820
+  elif $ac_last_try; then
 
51821
+    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
 
51822
+echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
 
51823
    { (exit 1); exit 1; }; }
 
51824
-       fi
 
51825
-        if test "x$enable_dbus" = xyes; then
 
51826
+  else
 
51827
+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
 
51828
+  fi
 
51829
+done
 
51830
 
 
51831
-cat >>confdefs.h <<\_ACEOF
 
51832
-#define WITH_DBUS 1
 
51833
+ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
 
51834
+if test -n "$ac_eof"; then
 
51835
+  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
 
51836
+  ac_eof=`expr $ac_eof + 1`
 
51837
+fi
 
51838
+
 
51839
+cat >>$CONFIG_STATUS <<_ACEOF
 
51840
+cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof
 
51841
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
 
51842
+_ACEOF
 
51843
+sed '
 
51844
+s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
 
51845
+s/^/s,@/; s/!/@,|#_!!_#|/
 
51846
+:n
 
51847
+t n
 
51848
+s/'"$ac_delim"'$/,g/; t
 
51849
+s/$/\\/; p
 
51850
+N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
 
51851
+' >>$CONFIG_STATUS <conf$$subs.sed
 
51852
+rm -f conf$$subs.sed
 
51853
+cat >>$CONFIG_STATUS <<_ACEOF
 
51854
+CEOF$ac_eof
 
51855
 _ACEOF
 
51856
 
 
51857
-       fi
 
51858
-fi
 
51859
- if test "x$enable_dbus" = "xyes"; then
 
51860
-  WITH_DBUS_TRUE=
 
51861
-  WITH_DBUS_FALSE='#'
 
51862
-else
 
51863
-  WITH_DBUS_TRUE='#'
 
51864
-  WITH_DBUS_FALSE=
 
51865
-fi
 
51866
 
 
51867
+ac_delim='%!_!# '
 
51868
+for ac_last_try in false false false false false :; do
 
51869
+  cat >conf$$subs.sed <<_ACEOF
 
51870
+INTLTOOL_EXTRACT!$INTLTOOL_EXTRACT$ac_delim
 
51871
+INTLTOOL_DESKTOP_RULE!$INTLTOOL_DESKTOP_RULE$ac_delim
 
51872
+INTLTOOL_DIRECTORY_RULE!$INTLTOOL_DIRECTORY_RULE$ac_delim
 
51873
+INTLTOOL_KEYS_RULE!$INTLTOOL_KEYS_RULE$ac_delim
 
51874
+INTLTOOL_PROP_RULE!$INTLTOOL_PROP_RULE$ac_delim
 
51875
+INTLTOOL_OAF_RULE!$INTLTOOL_OAF_RULE$ac_delim
 
51876
+INTLTOOL_PONG_RULE!$INTLTOOL_PONG_RULE$ac_delim
 
51877
+INTLTOOL_SERVER_RULE!$INTLTOOL_SERVER_RULE$ac_delim
 
51878
+INTLTOOL_SHEET_RULE!$INTLTOOL_SHEET_RULE$ac_delim
 
51879
+INTLTOOL_SOUNDLIST_RULE!$INTLTOOL_SOUNDLIST_RULE$ac_delim
 
51880
+INTLTOOL_UI_RULE!$INTLTOOL_UI_RULE$ac_delim
 
51881
+INTLTOOL_XAM_RULE!$INTLTOOL_XAM_RULE$ac_delim
 
51882
+INTLTOOL_KBD_RULE!$INTLTOOL_KBD_RULE$ac_delim
 
51883
+INTLTOOL_XML_RULE!$INTLTOOL_XML_RULE$ac_delim
 
51884
+INTLTOOL_XML_NOMERGE_RULE!$INTLTOOL_XML_NOMERGE_RULE$ac_delim
 
51885
+INTLTOOL_CAVES_RULE!$INTLTOOL_CAVES_RULE$ac_delim
 
51886
+INTLTOOL_SCHEMAS_RULE!$INTLTOOL_SCHEMAS_RULE$ac_delim
 
51887
+INTLTOOL_THEME_RULE!$INTLTOOL_THEME_RULE$ac_delim
 
51888
+INTLTOOL_SERVICE_RULE!$INTLTOOL_SERVICE_RULE$ac_delim
 
51889
+INTLTOOL_POLICY_RULE!$INTLTOOL_POLICY_RULE$ac_delim
 
51890
+MSGMERGE!$MSGMERGE$ac_delim
 
51891
+INTLTOOL_PERL!$INTLTOOL_PERL$ac_delim
 
51892
+ALL_LINGUAS!$ALL_LINGUAS$ac_delim
 
51893
+PKG_CONFIG!$PKG_CONFIG$ac_delim
 
51894
+HELP_DIR!$HELP_DIR$ac_delim
 
51895
+OMF_DIR!$OMF_DIR$ac_delim
 
51896
+DOC_USER_FORMATS!$DOC_USER_FORMATS$ac_delim
 
51897
+ENABLE_SK_TRUE!$ENABLE_SK_TRUE$ac_delim
 
51898
+ENABLE_SK_FALSE!$ENABLE_SK_FALSE$ac_delim
 
51899
+DISTCHECK_CONFIGURE_FLAGS!$DISTCHECK_CONFIGURE_FLAGS$ac_delim
 
51900
+HAVE_GNOME_DOC_UTILS_TRUE!$HAVE_GNOME_DOC_UTILS_TRUE$ac_delim
 
51901
+HAVE_GNOME_DOC_UTILS_FALSE!$HAVE_GNOME_DOC_UTILS_FALSE$ac_delim
 
51902
+CXX!$CXX$ac_delim
 
51903
+CXXFLAGS!$CXXFLAGS$ac_delim
 
51904
+ac_ct_CXX!$ac_ct_CXX$ac_delim
 
51905
+CXXDEPMODE!$CXXDEPMODE$ac_delim
 
51906
+am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim
 
51907
+am__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim
37298
51908
+LIBTOOL!$LIBTOOL$ac_delim
37299
 
 build!$build$ac_delim
37300
 
 build_cpu!$build_cpu$ac_delim
37301
 
 build_vendor!$build_vendor$ac_delim
37302
 
@@ -27303,15 +25009,21 @@
37303
 
 host_vendor!$host_vendor$ac_delim
37304
 
 host_os!$host_os$ac_delim
37305
 
 SED!$SED$ac_delim
 
51909
+build!$build$ac_delim
 
51910
+build_cpu!$build_cpu$ac_delim
 
51911
+build_vendor!$build_vendor$ac_delim
 
51912
+build_os!$build_os$ac_delim
 
51913
+host!$host$ac_delim
 
51914
+host_cpu!$host_cpu$ac_delim
 
51915
+host_vendor!$host_vendor$ac_delim
 
51916
+host_os!$host_os$ac_delim
 
51917
+SED!$SED$ac_delim
37306
51918
+FGREP!$FGREP$ac_delim
37307
51919
+LD!$LD$ac_delim
37308
51920
+DUMPBIN!$DUMPBIN$ac_delim
37309
51921
+ac_ct_DUMPBIN!$ac_ct_DUMPBIN$ac_delim
37310
51922
+NM!$NM$ac_delim
37311
 
 LN_S!$LN_S$ac_delim
37312
 
-ECHO!$ECHO$ac_delim
37313
 
 AR!$AR$ac_delim
37314
 
 RANLIB!$RANLIB$ac_delim
 
51923
+LN_S!$LN_S$ac_delim
 
51924
+AR!$AR$ac_delim
 
51925
+RANLIB!$RANLIB$ac_delim
37315
51926
+lt_ECHO!$lt_ECHO$ac_delim
37316
51927
+DSYMUTIL!$DSYMUTIL$ac_delim
37317
51928
+NMEDIT!$NMEDIT$ac_delim
37318
51929
+LIPO!$LIPO$ac_delim
37319
51930
+OTOOL!$OTOOL$ac_delim
37320
51931
+OTOOL64!$OTOOL64$ac_delim
37321
 
 CXXCPP!$CXXCPP$ac_delim
37322
 
-F77!$F77$ac_delim
37323
 
-FFLAGS!$FFLAGS$ac_delim
37324
 
-ac_ct_F77!$ac_ct_F77$ac_delim
37325
 
-LIBTOOL!$LIBTOOL$ac_delim
37326
 
 GLIB_GENMARSHAL!$GLIB_GENMARSHAL$ac_delim
37327
 
 GLIB_MKENUMS!$GLIB_MKENUMS$ac_delim
37328
 
 TOTEM_VERSION_MAJOR!$TOTEM_VERSION_MAJOR$ac_delim
37329
 
@@ -27346,13 +25058,6 @@
37330
 
 PYTHON!$PYTHON$ac_delim
37331
 
 PYTHON_VERSION!$PYTHON_VERSION$ac_delim
37332
 
 PYTHON_PREFIX!$PYTHON_PREFIX$ac_delim
37333
 
-PYTHON_EXEC_PREFIX!$PYTHON_EXEC_PREFIX$ac_delim
37334
 
-PYTHON_PLATFORM!$PYTHON_PLATFORM$ac_delim
37335
 
-pythondir!$pythondir$ac_delim
37336
 
-pkgpythondir!$pkgpythondir$ac_delim
37337
 
-pyexecdir!$pyexecdir$ac_delim
37338
 
-pkgpyexecdir!$pkgpyexecdir$ac_delim
37339
 
-PYTHON_LIBS!$PYTHON_LIBS$ac_delim
37340
 
 _ACEOF
37341
 
 
37342
 
   if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
37343
 
@@ -27394,6 +25099,13 @@
37344
 
 ac_delim='%!_!# '
37345
 
 for ac_last_try in false false false false false :; do
37346
 
   cat >conf$$subs.sed <<_ACEOF
 
51932
+CXXCPP!$CXXCPP$ac_delim
 
51933
+GLIB_GENMARSHAL!$GLIB_GENMARSHAL$ac_delim
 
51934
+GLIB_MKENUMS!$GLIB_MKENUMS$ac_delim
 
51935
+TOTEM_VERSION_MAJOR!$TOTEM_VERSION_MAJOR$ac_delim
 
51936
+TOTEM_VERSION_MINOR!$TOTEM_VERSION_MINOR$ac_delim
 
51937
+TOTEM_VERSION_MICRO!$TOTEM_VERSION_MICRO$ac_delim
 
51938
+PLUGINDIR!$PLUGINDIR$ac_delim
 
51939
+NVTV_CFLAGS!$NVTV_CFLAGS$ac_delim
 
51940
+NVTV_LIBS!$NVTV_LIBS$ac_delim
 
51941
+MISSING_PLUGINS_CFLAGS!$MISSING_PLUGINS_CFLAGS$ac_delim
 
51942
+MISSING_PLUGINS_LIBS!$MISSING_PLUGINS_LIBS$ac_delim
 
51943
+GST_CFLAGS!$GST_CFLAGS$ac_delim
 
51944
+GST_LIBS!$GST_LIBS$ac_delim
 
51945
+XINE_CFLAGS!$XINE_CFLAGS$ac_delim
 
51946
+XINE_LIBS!$XINE_LIBS$ac_delim
 
51947
+TOTEM_GST_TRUE!$TOTEM_GST_TRUE$ac_delim
 
51948
+TOTEM_GST_FALSE!$TOTEM_GST_FALSE$ac_delim
 
51949
+EXTRA_GNOME_CFLAGS!$EXTRA_GNOME_CFLAGS$ac_delim
 
51950
+EXTRA_GNOME_LIBS!$EXTRA_GNOME_LIBS$ac_delim
 
51951
+MM_CFLAGS!$MM_CFLAGS$ac_delim
 
51952
+MM_LIBS!$MM_LIBS$ac_delim
 
51953
+HAVE_GNOME_TRUE!$HAVE_GNOME_TRUE$ac_delim
 
51954
+HAVE_GNOME_FALSE!$HAVE_GNOME_FALSE$ac_delim
 
51955
+GTK_CFLAGS!$GTK_CFLAGS$ac_delim
 
51956
+GTK_LIBS!$GTK_LIBS$ac_delim
 
51957
+XMKMF!$XMKMF$ac_delim
 
51958
+XTEST_LIBS!$XTEST_LIBS$ac_delim
 
51959
+XVIDMODE_CFLAGS!$XVIDMODE_CFLAGS$ac_delim
 
51960
+XVIDMODE_LIBS!$XVIDMODE_LIBS$ac_delim
 
51961
+X_LIBS!$X_LIBS$ac_delim
 
51962
+HAVE_XVIDMODE_TRUE!$HAVE_XVIDMODE_TRUE$ac_delim
 
51963
+HAVE_XVIDMODE_FALSE!$HAVE_XVIDMODE_FALSE$ac_delim
 
51964
+PYTHON!$PYTHON$ac_delim
 
51965
+PYTHON_VERSION!$PYTHON_VERSION$ac_delim
 
51966
+PYTHON_PREFIX!$PYTHON_PREFIX$ac_delim
 
51967
+_ACEOF
 
51968
 
 
51969
-# Extract the first word of "gconftool-2", so it can be a program name with args.
 
51970
-set dummy gconftool-2; ac_word=$2
 
51971
-{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
 
51972
-$as_echo_n "checking for $ac_word... " >&6; }
 
51973
-if test "${ac_cv_path_GCONFTOOL+set}" = set; then
 
51974
-  $as_echo_n "(cached) " >&6
 
51975
-else
 
51976
-  case $GCONFTOOL in
 
51977
-  [\\/]* | ?:[\\/]*)
 
51978
-  ac_cv_path_GCONFTOOL="$GCONFTOOL" # Let the user override the test with a path.
 
51979
-  ;;
 
51980
-  *)
 
51981
-  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
51982
-for as_dir in $PATH
 
51983
-do
 
51984
-  IFS=$as_save_IFS
 
51985
-  test -z "$as_dir" && as_dir=.
 
51986
-  for ac_exec_ext in '' $ac_executable_extensions; do
 
51987
-  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
51988
-    ac_cv_path_GCONFTOOL="$as_dir/$ac_word$ac_exec_ext"
 
51989
-    $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
51990
-    break 2
 
51991
+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
 
51992
+    break
 
51993
+  elif $ac_last_try; then
 
51994
+    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
 
51995
+echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
 
51996
+   { (exit 1); exit 1; }; }
 
51997
+  else
 
51998
+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
 
51999
   fi
 
52000
 done
 
52001
-done
 
52002
-IFS=$as_save_IFS
 
52003
 
 
52004
-  ;;
 
52005
-esac
 
52006
-fi
 
52007
-GCONFTOOL=$ac_cv_path_GCONFTOOL
 
52008
-if test -n "$GCONFTOOL"; then
 
52009
-  { $as_echo "$as_me:$LINENO: result: $GCONFTOOL" >&5
 
52010
-$as_echo "$GCONFTOOL" >&6; }
 
52011
-else
 
52012
-  { $as_echo "$as_me:$LINENO: result: no" >&5
 
52013
-$as_echo "no" >&6; }
 
52014
+ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
 
52015
+if test -n "$ac_eof"; then
 
52016
+  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
 
52017
+  ac_eof=`expr $ac_eof + 1`
 
52018
 fi
 
52019
 
 
52020
+cat >>$CONFIG_STATUS <<_ACEOF
 
52021
+cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof
 
52022
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
 
52023
+_ACEOF
 
52024
+sed '
 
52025
+s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
 
52026
+s/^/s,@/; s/!/@,|#_!!_#|/
 
52027
+:n
 
52028
+t n
 
52029
+s/'"$ac_delim"'$/,g/; t
 
52030
+s/$/\\/; p
 
52031
+N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
 
52032
+' >>$CONFIG_STATUS <conf$$subs.sed
 
52033
+rm -f conf$$subs.sed
 
52034
+cat >>$CONFIG_STATUS <<_ACEOF
 
52035
+CEOF$ac_eof
 
52036
+_ACEOF
 
52037
 
 
52038
 
 
52039
-  if test "x$GCONF_SCHEMA_INSTALL_SOURCE" = "x"; then
 
52040
-    GCONF_SCHEMA_CONFIG_SOURCE=`gconftool-2 --get-default-source`
 
52041
+ac_delim='%!_!# '
 
52042
+for ac_last_try in false false false false false :; do
 
52043
+  cat >conf$$subs.sed <<_ACEOF
37347
52044
+PYTHON_EXEC_PREFIX!$PYTHON_EXEC_PREFIX$ac_delim
37348
52045
+PYTHON_PLATFORM!$PYTHON_PLATFORM$ac_delim
37349
52046
+pythondir!$pythondir$ac_delim
37351
52048
+pyexecdir!$pyexecdir$ac_delim
37352
52049
+pkgpyexecdir!$pkgpyexecdir$ac_delim
37353
52050
+PYTHON_LIBS!$PYTHON_LIBS$ac_delim
37354
 
 PYTHON_LIB_LOC!$PYTHON_LIB_LOC$ac_delim
37355
 
 PYTHON_CFLAGS!$PYTHON_CFLAGS$ac_delim
37356
 
 PYTHON_EXTRA_LIBS!$PYTHON_EXTRA_LIBS$ac_delim
37357
 
@@ -27417,6 +25129,8 @@
37358
 
 LIRC_LIBS!$LIRC_LIBS$ac_delim
37359
 
 GMYTH_CFLAGS!$GMYTH_CFLAGS$ac_delim
37360
 
 GMYTH_LIBS!$GMYTH_LIBS$ac_delim
 
52051
+PYTHON_LIB_LOC!$PYTHON_LIB_LOC$ac_delim
 
52052
+PYTHON_CFLAGS!$PYTHON_CFLAGS$ac_delim
 
52053
+PYTHON_EXTRA_LIBS!$PYTHON_EXTRA_LIBS$ac_delim
 
52054
+PYGTK_CFLAGS!$PYGTK_CFLAGS$ac_delim
 
52055
+PYGTK_LIBS!$PYGTK_LIBS$ac_delim
 
52056
+PYGTK_DEFSDIR!$PYGTK_DEFSDIR$ac_delim
 
52057
+PYGTK_CODEGEN!$PYGTK_CODEGEN$ac_delim
 
52058
+PYGTK_H2DEF!$PYGTK_H2DEF$ac_delim
 
52059
+NO_STRICT_ALIASING_CFLAGS!$NO_STRICT_ALIASING_CFLAGS$ac_delim
 
52060
+ENABLE_PYTHON_TRUE!$ENABLE_PYTHON_TRUE$ac_delim
 
52061
+ENABLE_PYTHON_FALSE!$ENABLE_PYTHON_FALSE$ac_delim
 
52062
+VALA_CFLAGS!$VALA_CFLAGS$ac_delim
 
52063
+VALA_LIBS!$VALA_LIBS$ac_delim
 
52064
+VALAC!$VALAC$ac_delim
 
52065
+ENABLE_VALA_TRUE!$ENABLE_VALA_TRUE$ac_delim
 
52066
+ENABLE_VALA_FALSE!$ENABLE_VALA_FALSE$ac_delim
 
52067
+LIBGALAGO_CFLAGS!$LIBGALAGO_CFLAGS$ac_delim
 
52068
+LIBGALAGO_LIBS!$LIBGALAGO_LIBS$ac_delim
 
52069
+MEDIA_PLAYER_KEYS_CFLAGS!$MEDIA_PLAYER_KEYS_CFLAGS$ac_delim
 
52070
+MEDIA_PLAYER_KEYS_LIBS!$MEDIA_PLAYER_KEYS_LIBS$ac_delim
 
52071
+LIRC_LIBS!$LIRC_LIBS$ac_delim
 
52072
+GMYTH_CFLAGS!$GMYTH_CFLAGS$ac_delim
 
52073
+GMYTH_LIBS!$GMYTH_LIBS$ac_delim
37361
52074
+BBC_CFLAGS!$BBC_CFLAGS$ac_delim
37362
52075
+BBC_LIBS!$BBC_LIBS$ac_delim
37363
 
 BEMUSED_CFLAGS!$BEMUSED_CFLAGS$ac_delim
37364
 
 BEMUSED_LIBS!$BEMUSED_LIBS$ac_delim
37365
 
 LIBEPC_CFLAGS!$LIBEPC_CFLAGS$ac_delim
37366
 
@@ -27477,576 +25191,1375 @@
37367
 
 LTLIBOBJS!$LTLIBOBJS$ac_delim
37368
 
 _ACEOF
37369
 
 
37370
 
-  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 81; then
37371
 
-    break
37372
 
-  elif $ac_last_try; then
37373
 
-    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
37374
 
-echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
37375
 
-   { (exit 1); exit 1; }; }
37376
 
-  else
37377
 
-    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
37378
 
-  fi
37379
 
-done
 
52076
+BEMUSED_CFLAGS!$BEMUSED_CFLAGS$ac_delim
 
52077
+BEMUSED_LIBS!$BEMUSED_LIBS$ac_delim
 
52078
+LIBEPC_CFLAGS!$LIBEPC_CFLAGS$ac_delim
 
52079
+LIBEPC_LIBS!$LIBEPC_LIBS$ac_delim
 
52080
+TRACKER_CFLAGS!$TRACKER_CFLAGS$ac_delim
 
52081
+TRACKER_LIBS!$TRACKER_LIBS$ac_delim
 
52082
+GLIB_CFLAGS!$GLIB_CFLAGS$ac_delim
 
52083
+GLIB_LIBS!$GLIB_LIBS$ac_delim
 
52084
+ALL_PLUGINS!$ALL_PLUGINS$ac_delim
 
52085
+PLUGINS!$PLUGINS$ac_delim
 
52086
+BROWSER_PLUGIN_DIR!$BROWSER_PLUGIN_DIR$ac_delim
 
52087
+BROWSER_PLUGIN_CFLAGS!$BROWSER_PLUGIN_CFLAGS$ac_delim
 
52088
+BROWSER_PLUGIN_LIBS!$BROWSER_PLUGIN_LIBS$ac_delim
 
52089
+DBUS_CFLAGS!$DBUS_CFLAGS$ac_delim
 
52090
+DBUS_LIBS!$DBUS_LIBS$ac_delim
 
52091
+DBUS_BIND!$DBUS_BIND$ac_delim
 
52092
+SN_CFLAGS!$SN_CFLAGS$ac_delim
 
52093
+SN_LIBS!$SN_LIBS$ac_delim
 
52094
+ENABLE_BROWSER_PLUGINS_TRUE!$ENABLE_BROWSER_PLUGINS_TRUE$ac_delim
 
52095
+ENABLE_BROWSER_PLUGINS_FALSE!$ENABLE_BROWSER_PLUGINS_FALSE$ac_delim
 
52096
+ENABLE_BASIC_PLUGIN_TRUE!$ENABLE_BASIC_PLUGIN_TRUE$ac_delim
 
52097
+ENABLE_BASIC_PLUGIN_FALSE!$ENABLE_BASIC_PLUGIN_FALSE$ac_delim
 
52098
+ENABLE_GMP_PLUGIN_TRUE!$ENABLE_GMP_PLUGIN_TRUE$ac_delim
 
52099
+ENABLE_GMP_PLUGIN_FALSE!$ENABLE_GMP_PLUGIN_FALSE$ac_delim
 
52100
+ENABLE_COMPLEX_PLUGIN_TRUE!$ENABLE_COMPLEX_PLUGIN_TRUE$ac_delim
 
52101
+ENABLE_COMPLEX_PLUGIN_FALSE!$ENABLE_COMPLEX_PLUGIN_FALSE$ac_delim
 
52102
+ENABLE_NARROWSPACE_PLUGIN_TRUE!$ENABLE_NARROWSPACE_PLUGIN_TRUE$ac_delim
 
52103
+ENABLE_NARROWSPACE_PLUGIN_FALSE!$ENABLE_NARROWSPACE_PLUGIN_FALSE$ac_delim
 
52104
+ENABLE_MULLY_PLUGIN_TRUE!$ENABLE_MULLY_PLUGIN_TRUE$ac_delim
 
52105
+ENABLE_MULLY_PLUGIN_FALSE!$ENABLE_MULLY_PLUGIN_FALSE$ac_delim
 
52106
+ENABLE_CONE_PLUGIN_TRUE!$ENABLE_CONE_PLUGIN_TRUE$ac_delim
 
52107
+ENABLE_CONE_PLUGIN_FALSE!$ENABLE_CONE_PLUGIN_FALSE$ac_delim
 
52108
+NAUTILUS_CFLAGS!$NAUTILUS_CFLAGS$ac_delim
 
52109
+NAUTILUS_LIBS!$NAUTILUS_LIBS$ac_delim
 
52110
+NAUTILUSDIR!$NAUTILUSDIR$ac_delim
 
52111
+HAVE_NAUTILUS_TRUE!$HAVE_NAUTILUS_TRUE$ac_delim
 
52112
+HAVE_NAUTILUS_FALSE!$HAVE_NAUTILUS_FALSE$ac_delim
 
52113
+WITH_DBUS_TRUE!$WITH_DBUS_TRUE$ac_delim
 
52114
+WITH_DBUS_FALSE!$WITH_DBUS_FALSE$ac_delim
 
52115
+GCONFTOOL!$GCONFTOOL$ac_delim
 
52116
+GCONF_SCHEMA_CONFIG_SOURCE!$GCONF_SCHEMA_CONFIG_SOURCE$ac_delim
 
52117
+GCONF_SCHEMA_FILE_DIR!$GCONF_SCHEMA_FILE_DIR$ac_delim
 
52118
+GCONF_SCHEMAS_INSTALL_TRUE!$GCONF_SCHEMAS_INSTALL_TRUE$ac_delim
 
52119
+GCONF_SCHEMAS_INSTALL_FALSE!$GCONF_SCHEMAS_INSTALL_FALSE$ac_delim
 
52120
+ACLOCAL_AMFLAGS!$ACLOCAL_AMFLAGS$ac_delim
 
52121
+WARN_CFLAGS!$WARN_CFLAGS$ac_delim
 
52122
+WARN_CXXFLAGS!$WARN_CXXFLAGS$ac_delim
 
52123
+MAINTAINER_MODE_TRUE!$MAINTAINER_MODE_TRUE$ac_delim
 
52124
+MAINTAINER_MODE_FALSE!$MAINTAINER_MODE_FALSE$ac_delim
 
52125
+MAINT!$MAINT$ac_delim
 
52126
+DISABLE_DEPRECATED!$DISABLE_DEPRECATED$ac_delim
 
52127
+FULL_LIBEXECDIR!$FULL_LIBEXECDIR$ac_delim
 
52128
+AM_CPPFLAGS!$AM_CPPFLAGS$ac_delim
 
52129
+AM_CFLAGS!$AM_CFLAGS$ac_delim
 
52130
+AM_CXXFLAGS!$AM_CXXFLAGS$ac_delim
 
52131
+AM_LDFLAGS!$AM_LDFLAGS$ac_delim
 
52132
+LIBOBJS!$LIBOBJS$ac_delim
 
52133
+LTLIBOBJS!$LTLIBOBJS$ac_delim
 
52134
+_ACEOF
 
52135
+
37380
52136
+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 90; then
37381
52137
+    break
37382
52138
+  elif $ac_last_try; then
37383
52139
+    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
37384
52140
+echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
37385
52141
+   { (exit 1); exit 1; }; }
37386
 
+  else
 
52142
   else
 
52143
-    GCONF_SCHEMA_CONFIG_SOURCE=$GCONF_SCHEMA_INSTALL_SOURCE
37387
52144
+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
37388
 
+  fi
 
52145
   fi
37389
52146
+done
37390
 
+
 
52147
 
37391
52148
+ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
37392
52149
+if test -n "$ac_eof"; then
37393
52150
+  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
37413
52170
+s/|#_!!_#|//g
37414
52171
+CEOF$ac_eof
37415
52172
+_ACEOF
37416
 
+
 
52173
 
 
52174
-# Check whether --with-gconf-source was given.
 
52175
-if test "${with_gconf_source+set}" = set; then
 
52176
-  withval=$with_gconf_source; GCONF_SCHEMA_CONFIG_SOURCE="$withval"
37417
52177
+
37418
52178
+# VPATH may cause trouble with some makes, so we remove $(srcdir),
37419
52179
+# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
37428
52188
+s/:*$//
37429
52189
+s/^[^=]*=[      ]*$//
37430
52190
+}'
37431
 
+fi
37432
 
+
 
52191
 fi
 
52192
 
37433
52193
+cat >>$CONFIG_STATUS <<\_ACEOF
37434
52194
+fi # test -n "$CONFIG_FILES"
37435
 
+
37436
 
+
 
52195
 
 
52196
 
 
52197
-  { $as_echo "$as_me:$LINENO: result: Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation" >&5
 
52198
-$as_echo "Using config source $GCONF_SCHEMA_CONFIG_SOURCE for schema installation" >&6; }
37437
52199
+for ac_tag in  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS
37438
52200
+do
37439
52201
+  case $ac_tag in
37454
52216
+  shift
37455
52217
+  ac_file=$1
37456
52218
+  shift
37457
 
+
 
52219
 
 
52220
-  if test "x$GCONF_SCHEMA_FILE_DIR" = "x"; then
 
52221
-    GCONF_SCHEMA_FILE_DIR='$(sysconfdir)/gconf/schemas'
 
52222
-  fi
37458
52223
+  case $ac_mode in
37459
52224
+  :L) ac_source=$1;;
37460
52225
+  :[FH])
37477
52242
+      esac
37478
52243
+      ac_file_inputs="$ac_file_inputs $ac_f"
37479
52244
+    done
37480
 
+
 
52245
 
37481
52246
+    # Let's still pretend it is `configure' which instantiates (i.e., don't
37482
52247
+    # use $as_me), people would be surprised to read:
37483
52248
+    #    /* config.h.  Generated by config.status.  */
37592
52357
+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
37593
52358
+esac
37594
52359
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
37595
 
+
37596
 
+
 
52360
 
 
52361
-# Check whether --with-gconf-schema-file-dir was given.
 
52362
-if test "${with_gconf_schema_file_dir+set}" = set; then
 
52363
-  withval=$with_gconf_schema_file_dir; GCONF_SCHEMA_FILE_DIR="$withval"
 
52364
-fi
 
52365
 
37597
52366
+  case $ac_mode in
37598
52367
+  :F)
37599
52368
+  #
37600
52369
+  # CONFIG_FILE
37601
52370
+  #
37602
 
+
 
52371
 
37603
52372
+  case $INSTALL in
37604
52373
+  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
37605
52374
+  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
37610
52379
+  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
37611
52380
+  esac
37612
52381
+_ACEOF
37613
 
+
 
52382
 
 
52383
-  { $as_echo "$as_me:$LINENO: result: Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files" >&5
 
52384
-$as_echo "Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files" >&6; }
37614
52385
+cat >>$CONFIG_STATUS <<\_ACEOF
37615
52386
+# If the template does not know about datarootdir, expand it.
37616
52387
+# FIXME: This hack should be removed a few years after 2.60.
37617
52388
+ac_datarootdir_hack=; ac_datarootdir_seen=
37618
 
+
 
52389
 
 
52390
-  # Check whether --enable-schemas-install was given.
 
52391
-if test "${enable_schemas_install+set}" = set; then
 
52392
-  enableval=$enable_schemas_install; case ${enableval} in
 
52393
-       yes|no) ;;
 
52394
-       *) { { $as_echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-schemas-install" >&5
 
52395
-$as_echo "$as_me: error: bad value ${enableval} for --enable-schemas-install" >&2;}
 
52396
-   { (exit 1); exit 1; }; } ;;
 
52397
-      esac
 
52398
-fi
37619
52399
+case `sed -n '/datarootdir/ {
37620
52400
+  p
37621
52401
+  q
37641
52421
+    s&\\\${datarootdir}&$datarootdir&g' ;;
37642
52422
+esac
37643
52423
+_ACEOF
37644
 
+
 
52424
 
 
52425
-   if test "$enable_schemas_install" != no; then
 
52426
-  GCONF_SCHEMAS_INSTALL_TRUE=
 
52427
-  GCONF_SCHEMAS_INSTALL_FALSE='#'
 
52428
-else
 
52429
-  GCONF_SCHEMAS_INSTALL_TRUE='#'
 
52430
-  GCONF_SCHEMAS_INSTALL_FALSE=
 
52431
-fi
37645
52432
+# Neutralize VPATH when `$srcdir' = `.'.
37646
52433
+# Shell code in configure.ac might set extrasub.
37647
52434
+# FIXME: do we really want to maintain this feature?
37665
52452
+s&@MKDIR_P@&$ac_MKDIR_P&;t t
37666
52453
+$ac_datarootdir_hack
37667
52454
+" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" | sed -f "$tmp/subs-3.sed" >$tmp/out
37668
 
+
 
52455
 
37669
52456
+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
37670
52457
+  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
37671
52458
+  { ac_out=`sed -n '/^[         ]*datarootdir[  ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
37673
52460
+which seems to be undefined.  Please make sure it is defined." >&5
37674
52461
+echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
37675
52462
+which seems to be undefined.  Please make sure it is defined." >&2;}
37676
 
+
 
52463
 
37677
52464
+  rm -f "$tmp/stdin"
37678
52465
+  case $ac_file in
37679
52466
+  -) cat "$tmp/out"; rm -f "$tmp/out";;
37685
52472
+  # CONFIG_HEADER
37686
52473
+  #
37687
52474
+_ACEOF
37688
 
+
 
52475
 
37689
52476
+# Transform confdefs.h into a sed script `conftest.defines', that
37690
52477
+# substitutes the proper values into config.h.in to produce config.h.
37691
52478
+rm -f conftest.defines conftest.tail
37705
52492
+ac_dB='\\)[     (].*,\\1define\\2'
37706
52493
+ac_dC=' '
37707
52494
+ac_dD=' ,'
37708
 
+
 
52495
 
37709
52496
+uniq confdefs.h |
37710
52497
+  sed -n '
37711
52498
+       t rset
37737
52524
+ac_in='$ac_file_inputs'
37738
52525
+ac_out='"$tmp/out1"'
37739
52526
+ac_nxt='"$tmp/out2"'
37740
 
+
 
52527
 
37741
52528
+while :
37742
52529
+do
37743
52530
+  # Write a here document:
37759
52546
+  mv conftest.tail conftest.defines
37760
52547
+done
37761
52548
+rm -f conftest.defines conftest.tail
37762
 
+
 
52549
 
 
52550
-      ACLOCAL_AMFLAGS="\${ACLOCAL_FLAGS}"
 
52551
-  if test -n "$ac_macro_dir"; then
 
52552
-    ACLOCAL_AMFLAGS="-I $ac_macro_dir $ACLOCAL_AMFLAGS"
37763
52553
+echo "ac_result=$ac_in" >>$CONFIG_STATUS
37764
52554
+cat >>$CONFIG_STATUS <<\_ACEOF
37765
52555
+  if test x"$ac_file" != x-; then
37775
52565
+  else
37776
52566
+    echo "/* $configure_input  */"
37777
52567
+    cat "$ac_result"
37778
 
+  fi
 
52568
   fi
37779
52569
+  rm -f "$tmp/out12"
37780
52570
+# Compute $ac_file's index in $config_headers.
37781
52571
+_am_arg=$ac_file
37812
52602
+         }
37813
52603
+         s/.*/./; q'`/stamp-h$_am_stamp_count
37814
52604
+ ;;
37815
 
+
 
52605
 
37816
52606
+  :C)  { echo "$as_me:$LINENO: executing $ac_file commands" >&5
37817
52607
+echo "$as_me: executing $ac_file commands" >&6;}
37818
52608
+ ;;
37819
52609
+  esac
37820
 
+
37821
 
+
 
52610
 
 
52611
 
37822
52612
+  case $ac_file$ac_mode in
37823
52613
+    "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
37824
52614
+  # Strip MF so we end up with the name of the file.
37948
52738
+        sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
37949
52739
+      esac ;;
37950
52740
+    "libtool":C)
37951
 
+
 
52741
 
 
52742
-       # Check whether --enable-debug was given.
 
52743
-if test "${enable_debug+set}" = set; then
 
52744
-  enableval=$enable_debug;
 
52745
-else
 
52746
-  enable_debug=no
 
52747
-fi
 
52748
-
 
52749
-
 
52750
-       if test x$enable_debug = xyes ; then
 
52751
-
 
52752
-cat >>confdefs.h <<\_ACEOF
 
52753
-#define GNOME_ENABLE_DEBUG 1
 
52754
-_ACEOF
37952
52755
+    # See if we are running on zsh, and set the options which allow our
37953
52756
+    # commands through without removal of \ escapes.
37954
52757
+    if test -n "${ZSH_VERSION+set}" ; then
37955
52758
+      setopt NO_GLOB_SUBST
37956
52759
+    fi
37957
 
+
 
52760
 
 
52761
-       fi
37958
52762
+    cfgfile="${ofile}T"
37959
52763
+    trap "$RM \"$cfgfile\"; exit 1" 1 2 15
37960
52764
+    $RM "$cfgfile"
37961
 
+
 
52765
 
37962
52766
+    cat <<_LT_EOF >> "$cfgfile"
37963
52767
+#! $SHELL
37964
 
+
 
52768
 
37965
52769
+# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
37966
52770
+# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
37967
52771
+# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
37993
52797
+# can be downloaded from http://www.gnu.org/licenses/gpl.html, or
37994
52798
+# obtained by writing to the Free Software Foundation, Inc.,
37995
52799
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
37996
 
+
37997
 
+
 
52800
 
 
52801
-    # Check whether --enable-compile-warnings was given.
 
52802
-if test "${enable_compile_warnings+set}" = set; then
 
52803
-  enableval=$enable_compile_warnings;
 
52804
-else
 
52805
-  enable_compile_warnings="maximum"
 
52806
-fi
 
52807
 
37998
52808
+# The names of the tagged configurations supported by this script.
37999
52809
+available_tags="CXX "
38000
 
+
 
52810
 
 
52811
-    warnCFLAGS=
 
52812
-    if test "x$GCC" != xyes; then
 
52813
-       enable_compile_warnings=no
 
52814
-    fi
38001
52815
+# ### BEGIN LIBTOOL CONFIG
38002
 
+
 
52816
 
 
52817
-    warning_flags=
 
52818
-    realsave_CFLAGS="$CFLAGS"
38003
52819
+# Which release of libtool.m4 was used?
38004
52820
+macro_version=$macro_version
38005
52821
+macro_revision=$macro_revision
38006
 
+
 
52822
 
 
52823
-    case "$enable_compile_warnings" in
 
52824
-    no)
 
52825
-       warning_flags=
 
52826
-       ;;
 
52827
-    minimum)
 
52828
-       warning_flags="-Wall"
 
52829
-       ;;
 
52830
-    yes)
 
52831
-       warning_flags="-Wall -Wmissing-prototypes"
 
52832
-       ;;
 
52833
-    maximum|error)
 
52834
-       warning_flags="-Wall -Wmissing-prototypes -Wnested-externs -Wpointer-arith"
 
52835
-       CFLAGS="$warning_flags $CFLAGS"
 
52836
-       for option in -Wno-sign-compare; do
 
52837
-               SAVE_CFLAGS="$CFLAGS"
 
52838
-               CFLAGS="$CFLAGS $option"
 
52839
-               { $as_echo "$as_me:$LINENO: checking whether gcc understands $option" >&5
 
52840
-$as_echo_n "checking whether gcc understands $option... " >&6; }
 
52841
-               cat >conftest.$ac_ext <<_ACEOF
 
52842
-/* confdefs.h.  */
 
52843
-_ACEOF
 
52844
-cat confdefs.h >>conftest.$ac_ext
 
52845
-cat >>conftest.$ac_ext <<_ACEOF
 
52846
-/* end confdefs.h.  */
38007
52847
+# Whether or not to build shared libraries.
38008
52848
+build_libtool_libs=$enable_shared
38009
 
+
 
52849
 
 
52850
-int
 
52851
-main ()
 
52852
-{
38010
52853
+# Whether or not to build static libraries.
38011
52854
+build_old_libs=$enable_static
38012
 
+
 
52855
 
 
52856
-  ;
 
52857
-  return 0;
 
52858
-}
 
52859
-_ACEOF
 
52860
-rm -f conftest.$ac_objext
 
52861
-if { (ac_try="$ac_compile"
 
52862
-case "(($ac_try" in
 
52863
-  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
52864
-  *) ac_try_echo=$ac_try;;
 
52865
-esac
 
52866
-eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
 
52867
-$as_echo "$ac_try_echo") >&5
 
52868
-  (eval "$ac_compile") 2>conftest.er1
 
52869
-  ac_status=$?
 
52870
-  grep -v '^ *+' conftest.er1 >conftest.err
 
52871
-  rm -f conftest.er1
 
52872
-  cat conftest.err >&5
 
52873
-  $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
52874
-  (exit $ac_status); } && {
 
52875
-        test -z "$ac_c_werror_flag" ||
 
52876
-        test ! -s conftest.err
 
52877
-       } && test -s conftest.$ac_objext; then
 
52878
-  has_option=yes
 
52879
-else
 
52880
-  $as_echo "$as_me: failed program was:" >&5
 
52881
-sed 's/^/| /' conftest.$ac_ext >&5
38013
52882
+# What type of objects to build.
38014
52883
+pic_mode=$pic_mode
38015
 
+
 
52884
 
 
52885
-       has_option=no
 
52886
-fi
38016
52887
+# Whether or not to optimize for fast installation.
38017
52888
+fast_install=$enable_fast_install
38018
 
+
 
52889
 
 
52890
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
52891
-               CFLAGS="$SAVE_CFLAGS"
 
52892
-               { $as_echo "$as_me:$LINENO: result: $has_option" >&5
 
52893
-$as_echo "$has_option" >&6; }
 
52894
-               if test $has_option = yes; then
 
52895
-                 warning_flags="$warning_flags $option"
 
52896
-               fi
 
52897
-               unset has_option
 
52898
-               unset SAVE_CFLAGS
 
52899
-       done
 
52900
-       unset option
 
52901
-       if test "$enable_compile_warnings" = "error" ; then
 
52902
-           warning_flags="$warning_flags -Werror"
 
52903
-       fi
 
52904
-       ;;
 
52905
-    *)
 
52906
-       { { $as_echo "$as_me:$LINENO: error: Unknown argument '$enable_compile_warnings' to --enable-compile-warnings" >&5
 
52907
-$as_echo "$as_me: error: Unknown argument '$enable_compile_warnings' to --enable-compile-warnings" >&2;}
 
52908
-   { (exit 1); exit 1; }; }
 
52909
-       ;;
 
52910
-    esac
 
52911
-    CFLAGS="$realsave_CFLAGS"
 
52912
-    { $as_echo "$as_me:$LINENO: checking what warning flags to pass to the C compiler" >&5
 
52913
-$as_echo_n "checking what warning flags to pass to the C compiler... " >&6; }
 
52914
-    { $as_echo "$as_me:$LINENO: result: $warning_flags" >&5
 
52915
-$as_echo "$warning_flags" >&6; }
38019
52916
+# The host system.
38020
52917
+host_alias=$host_alias
38021
52918
+host=$host
38022
52919
+host_os=$host_os
38023
 
+
 
52920
 
 
52921
-    # Check whether --enable-iso-c was given.
 
52922
-if test "${enable_iso_c+set}" = set; then
 
52923
-  enableval=$enable_iso_c;
 
52924
-else
 
52925
-  enable_iso_c=no
 
52926
-fi
38024
52927
+# The build system.
38025
52928
+build_alias=$build_alias
38026
52929
+build=$build
38027
52930
+build_os=$build_os
38028
 
+
 
52931
 
38029
52932
+# A sed program that does not truncate output.
38030
52933
+SED=$lt_SED
38031
 
+
 
52934
 
 
52935
-    { $as_echo "$as_me:$LINENO: checking what language compliance flags to pass to the C compiler" >&5
 
52936
-$as_echo_n "checking what language compliance flags to pass to the C compiler... " >&6; }
 
52937
-    complCFLAGS=
 
52938
-    if test "x$enable_iso_c" != "xno"; then
 
52939
-       if test "x$GCC" = "xyes"; then
 
52940
-       case " $CFLAGS " in
 
52941
-           *\ \        -ansi\ \        *) ;;
 
52942
-           *) complCFLAGS="$complCFLAGS -ansi" ;;
 
52943
-       esac
 
52944
-       case " $CFLAGS " in
 
52945
-           *\ \        -pedantic\ \    *) ;;
 
52946
-           *) complCFLAGS="$complCFLAGS -pedantic" ;;
 
52947
-       esac
 
52948
-       fi
 
52949
-    fi
 
52950
-    { $as_echo "$as_me:$LINENO: result: $complCFLAGS" >&5
 
52951
-$as_echo "$complCFLAGS" >&6; }
38032
52952
+# Sed that helps us avoid accidentally triggering echo(1) options like -n.
38033
52953
+Xsed="\$SED -e 1s/^X//"
38034
 
+
 
52954
 
 
52955
-    WARN_CFLAGS="$warning_flags $complCFLAGS"
38035
52956
+# A grep program that handles long lines.
38036
52957
+GREP=$lt_GREP
38037
 
+
 
52958
 
38038
52959
+# An ERE matcher.
38039
52960
+EGREP=$lt_EGREP
38040
 
+
 
52961
 
38041
52962
+# A literal string matcher.
38042
52963
+FGREP=$lt_FGREP
38043
 
+
 
52964
 
 
52965
-  # Check whether --enable-cxx-warnings was given.
 
52966
-if test "${enable_cxx_warnings+set}" = set; then
 
52967
-  enableval=$enable_cxx_warnings;
 
52968
-else
 
52969
-  enable_cxx_warnings="minimum"
 
52970
-fi
38044
52971
+# A BSD- or MS-compatible name lister.
38045
52972
+NM=$lt_NM
38046
 
+
 
52973
 
38047
52974
+# Whether we need soft or hard links.
38048
52975
+LN_S=$lt_LN_S
38049
 
+
 
52976
 
 
52977
-  { $as_echo "$as_me:$LINENO: checking what warning flags to pass to the C++ compiler" >&5
 
52978
-$as_echo_n "checking what warning flags to pass to the C++ compiler... " >&6; }
 
52979
-  warnCXXFLAGS=
 
52980
-  if test "x$GXX" != xyes; then
 
52981
-    enable_cxx_warnings=no
 
52982
-  fi
 
52983
-  if test "x$enable_cxx_warnings" != "xno"; then
 
52984
-    if test "x$GXX" = "xyes"; then
 
52985
-      case " $CXXFLAGS " in
 
52986
-      *\ \     -Wall\ \        *) ;;
 
52987
-      *) warnCXXFLAGS="-Wall -Wno-unused" ;;
 
52988
-      esac
38050
52989
+# What is the maximum length of a command?
38051
52990
+max_cmd_len=$max_cmd_len
38052
 
+
 
52991
 
 
52992
-      ## -W is not all that useful.  And it cannot be controlled
 
52993
-      ## with individual -Wno-xxx flags, unlike -Wall
 
52994
-      if test "x$enable_cxx_warnings" = "xyes"; then
 
52995
-       warnCXXFLAGS="$warnCXXFLAGS -Wshadow -Woverloaded-virtual"
 
52996
-      fi
 
52997
-    fi
 
52998
-  fi
 
52999
-  { $as_echo "$as_me:$LINENO: result: $warnCXXFLAGS" >&5
 
53000
-$as_echo "$warnCXXFLAGS" >&6; }
38053
53001
+# Object file suffix (normally "o").
38054
53002
+objext=$ac_objext
38055
 
+
 
53003
 
 
53004
-   # Check whether --enable-iso-cxx was given.
 
53005
-if test "${enable_iso_cxx+set}" = set; then
 
53006
-  enableval=$enable_iso_cxx;
 
53007
-else
 
53008
-  enable_iso_cxx=no
 
53009
-fi
38056
53010
+# Executable file suffix (normally "").
38057
53011
+exeext=$exeext
38058
 
+
 
53012
 
38059
53013
+# whether the shell understands "unset".
38060
53014
+lt_unset=$lt_unset
38061
 
+
 
53015
 
 
53016
-   { $as_echo "$as_me:$LINENO: checking what language compliance flags to pass to the C++ compiler" >&5
 
53017
-$as_echo_n "checking what language compliance flags to pass to the C++ compiler... " >&6; }
 
53018
-   complCXXFLAGS=
 
53019
-   if test "x$enable_iso_cxx" != "xno"; then
 
53020
-     if test "x$GXX" = "xyes"; then
 
53021
-      case " $CXXFLAGS " in
 
53022
-      *\ \     -ansi\ \        *) ;;
 
53023
-      *) complCXXFLAGS="$complCXXFLAGS -ansi" ;;
 
53024
-      esac
38062
53025
+# turn spaces into newlines.
38063
53026
+SP2NL=$lt_lt_SP2NL
38064
 
+
 
53027
 
 
53028
-      case " $CXXFLAGS " in
 
53029
-      *\ \     -pedantic\ \    *) ;;
 
53030
-      *) complCXXFLAGS="$complCXXFLAGS -pedantic" ;;
 
53031
-      esac
 
53032
-     fi
 
53033
-   fi
 
53034
-  { $as_echo "$as_me:$LINENO: result: $complCXXFLAGS" >&5
 
53035
-$as_echo "$complCXXFLAGS" >&6; }
38065
53036
+# turn newlines into spaces.
38066
53037
+NL2SP=$lt_lt_NL2SP
38067
 
+
 
53038
 
 
53039
-  WARN_CXXFLAGS="$CXXFLAGS $warnCXXFLAGS $complCXXFLAGS"
38068
53040
+# How to create reloadable object files.
38069
53041
+reload_flag=$lt_reload_flag
38070
53042
+reload_cmds=$lt_reload_cmds
38071
 
+
 
53043
 
38072
53044
+# Method to check whether dependent libraries are shared objects.
38073
53045
+deplibs_check_method=$lt_deplibs_check_method
38074
 
+
 
53046
 
 
53047
-{ $as_echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
 
53048
-$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
 
53049
-    # Check whether --enable-maintainer-mode was given.
 
53050
-if test "${enable_maintainer_mode+set}" = set; then
 
53051
-  enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval
 
53052
-else
 
53053
-  USE_MAINTAINER_MODE=no
 
53054
-fi
38075
53055
+# Command to use when deplibs_check_method == "file_magic".
38076
53056
+file_magic_cmd=$lt_file_magic_cmd
38077
 
+
 
53057
 
 
53058
-  { $as_echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
 
53059
-$as_echo "$USE_MAINTAINER_MODE" >&6; }
 
53060
-   if test $USE_MAINTAINER_MODE = yes; then
 
53061
-  MAINTAINER_MODE_TRUE=
 
53062
-  MAINTAINER_MODE_FALSE='#'
 
53063
-else
 
53064
-  MAINTAINER_MODE_TRUE='#'
 
53065
-  MAINTAINER_MODE_FALSE=
 
53066
-fi
38078
53067
+# The archiver.
38079
53068
+AR=$lt_AR
38080
53069
+AR_FLAGS=$lt_AR_FLAGS
38081
 
+
 
53070
 
 
53071
-  MAINT=$MAINTAINER_MODE_TRUE
38082
53072
+# A symbol stripping program.
38083
53073
+STRIP=$lt_STRIP
38084
 
+
 
53074
 
38085
53075
+# Commands used to install an old-style archive.
38086
53076
+RANLIB=$lt_RANLIB
38087
53077
+old_postinstall_cmds=$lt_old_postinstall_cmds
38088
53078
+old_postuninstall_cmds=$lt_old_postuninstall_cmds
38089
 
+
 
53079
 
38090
53080
+# A C compiler.
38091
53081
+LTCC=$lt_CC
38092
 
+
 
53082
 
38093
53083
+# LTCC compiler flags.
38094
53084
+LTCFLAGS=$lt_CFLAGS
38095
 
+
 
53085
 
38096
53086
+# Take the output of nm and produce a listing of raw symbols and C names.
38097
53087
+global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
38098
 
+
 
53088
 
 
53089
-       if test $USE_MAINTAINER_MODE = yes; then
 
53090
-               DISABLE_DEPRECATED="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGCONF_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED -DBONOBO_UI_DISABLE_DEPRECATED -DGNOME_VFS_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -DLIBGLADE_DISABLE_DEPRECATED"
 
53091
-       else
 
53092
-               DISABLE_DEPRECATED=""
 
53093
-       fi
38099
53094
+# Transform the output of nm in a proper C declaration.
38100
53095
+global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
38101
 
+
 
53096
 
38102
53097
+# Transform the output of nm in a C name address pair.
38103
53098
+global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
38104
 
+
 
53099
 
38105
53100
+# Transform the output of nm in a C name address pair when lib prefix is needed.
38106
53101
+global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
38107
 
+
 
53102
 
 
53103
-# This macro expands DIR and assigns it to RET.
 
53104
-# If DIR is NONE, then it's replaced by DEFAULT.
 
53105
-# Based on AC_DEFINE_DIR
38108
53106
+# The name of the directory that contains temporary libtool files.
38109
53107
+objdir=$objdir
38110
 
+
 
53108
 
38111
53109
+# Shell to use when invoking shell scripts.
38112
53110
+SHELL=$lt_SHELL
38113
 
+
 
53111
 
38114
53112
+# An echo program that does not interpret backslashes.
38115
53113
+ECHO=$lt_ECHO
38116
 
+
 
53114
 
 
53115
-  test "x$prefix" = xNONE && prefix="$ac_default_prefix"
 
53116
-  test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
 
53117
-  ac_expand=$libexecdir
 
53118
-  test "x$ac_expand" = xNONE && ac_expand="$NONE"
 
53119
-  ac_expand=`eval echo $ac_expand`
 
53120
-  FULL_LIBEXECDIR=`eval echo $ac_expand`
38117
53121
+# Used to examine libraries when file_magic_cmd begins with "file".
38118
53122
+MAGIC_CMD=$MAGIC_CMD
38119
 
+
 
53123
 
38120
53124
+# Must we lock files when doing compilation?
38121
53125
+need_locks=$lt_need_locks
38122
 
+
 
53126
 
38123
53127
+# Tool to manipulate archived DWARF debug symbol files on Mac OS X.
38124
53128
+DSYMUTIL=$lt_DSYMUTIL
38125
 
+
 
53129
 
 
53130
-# Check whether --enable-debug was given.
 
53131
-if test "${enable_debug+set}" = set; then
 
53132
-  enableval=$enable_debug; case "${enableval}" in
 
53133
-       yes) ENABLE_DEBUG=yes ;;
 
53134
-       no)  ENABLE_DEBUG=no ;;
 
53135
-       *) { { $as_echo "$as_me:$LINENO: error: bad value ${enableval} for --disable-debug" >&5
 
53136
-$as_echo "$as_me: error: bad value ${enableval} for --disable-debug" >&2;}
 
53137
-   { (exit 1); exit 1; }; } ;;
 
53138
-       esac
 
53139
-else
 
53140
-  ENABLE_DEBUG=no
 
53141
-fi
 
53142
- if test x$ENABLE_DEBUG = xyes; then
38126
53143
+# Tool to change global to local symbols on Mac OS X.
38127
53144
+NMEDIT=$lt_NMEDIT
38128
 
+
 
53145
 
 
53146
-cat >>confdefs.h <<\_ACEOF
 
53147
-#define TOTEM_DEBUG 1
 
53148
-_ACEOF
38129
53149
+# Tool to manipulate fat objects and archives on Mac OS X.
38130
53150
+LIPO=$lt_LIPO
38131
 
+
 
53151
 
 
53152
-fi
38132
53153
+# ldd/readelf like tool for Mach-O binaries on Mac OS X.
38133
53154
+OTOOL=$lt_OTOOL
38134
 
+
 
53155
 
 
53156
-# Check whether --enable-run-in-source-tree was given.
 
53157
-if test "${enable_run_in_source_tree+set}" = set; then
 
53158
-  enableval=$enable_run_in_source_tree; case "${enableval}" in
 
53159
-       yes) ENABLE_RUN_IN_SOURCE_TREE=yes ;;
 
53160
-       no)  ENABLE_RUN_IN_SOURCE_TREE=no ;;
 
53161
-       *) { { $as_echo "$as_me:$LINENO: error: bad value ${enableval} for --disable-run-in-source-tree" >&5
 
53162
-$as_echo "$as_me: error: bad value ${enableval} for --disable-run-in-source-tree" >&2;}
 
53163
-   { (exit 1); exit 1; }; } ;;
 
53164
-       esac
 
53165
-else
 
53166
-  ENABLE_RUN_IN_SOURCE_TREE=yes
 
53167
-fi
 
53168
- if test x$ENABLE_RUN_IN_SOURCE_TREE = xyes; then
38135
53169
+# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
38136
53170
+OTOOL64=$lt_OTOOL64
38137
 
+
 
53171
 
 
53172
-cat >>confdefs.h <<\_ACEOF
 
53173
-#define TOTEM_RUN_IN_SOURCE_TREE 1
 
53174
-_ACEOF
38138
53175
+# Old archive suffix (normally "a").
38139
53176
+libext=$libext
38140
 
+
 
53177
 
 
53178
-fi
38141
53179
+# Shared library suffix (normally ".so").
38142
53180
+shrext_cmds=$lt_shrext_cmds
38143
 
+
 
53181
 
 
53182
-if test "$GCC" = "yes" ; then
 
53183
-       CFLAGS="\
 
53184
-       -Wall \
 
53185
-       -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes \
 
53186
-       -Wnested-externs -Wpointer-arith \
 
53187
-       -Wcast-align -Wsign-compare \
 
53188
-       -fno-strict-aliasing \
 
53189
-       $CFLAGS"
 
53190
-fi
38144
53191
+# The commands to extract the exported symbol list from a shared archive.
38145
53192
+extract_expsyms_cmds=$lt_extract_expsyms_cmds
38146
 
+
 
53193
 
38147
53194
+# Variables whose values should be saved in libtool wrapper scripts and
38148
53195
+# restored at link time.
38149
53196
+variables_saved_for_relink=$lt_variables_saved_for_relink
38150
 
+
 
53197
 
38151
53198
+# Do we need the "lib" prefix for modules?
38152
53199
+need_lib_prefix=$need_lib_prefix
38153
 
+
 
53200
 
38154
53201
+# Do we need a version for libraries?
38155
53202
+need_version=$need_version
38156
 
+
 
53203
 
38157
53204
+# Library versioning type.
38158
53205
+version_type=$version_type
38159
 
+
 
53206
 
38160
53207
+# Shared library runtime path variable.
38161
53208
+runpath_var=$runpath_var
38162
 
+
 
53209
 
 
53210
-ac_config_files="$ac_config_files Makefile totem.spec lib/Makefile src/Makefile src/plugins/Makefile src/plugins/bemused/Makefile src/plugins/screensaver/Makefile src/plugins/ontop/Makefile src/plugins/galago/Makefile src/plugins/gromit/Makefile src/plugins/lirc/Makefile src/plugins/media-player-keys/Makefile src/plugins/mythtv/Makefile src/plugins/properties/Makefile src/plugins/sidebar-test/Makefile src/plugins/skipto/Makefile src/plugins/sample-python/Makefile src/plugins/sample-vala/Makefile src/plugins/thumbnail/Makefile src/plugins/totem/Makefile src/plugins/tracker/Makefile src/plugins/youtube/Makefile src/plugins/pythonconsole/Makefile src/plugins/publish/Makefile src/backend/Makefile browser-plugin/Makefile data/Makefile data/totem.desktop.in.in data/icons/Makefile data/icons/16x16/Makefile data/icons/22x22/Makefile data/icons/24x24/Makefile data/icons/32x32/Makefile data/icons/48x48/Makefile data/icons/scalable/Makefile po/Makefile.in help/Makefile help/bg/Makefile bindings/Makefile bindings/python/Makefile bindings/vala/Makefile"
38163
53211
+# Shared library path variable.
38164
53212
+shlibpath_var=$shlibpath_var
38165
 
+
 
53213
 
 
53214
-cat >confcache <<\_ACEOF
 
53215
-# This file is a shell script that caches the results of configure
 
53216
-# tests run on this system so they can be shared between configure
 
53217
-# scripts and configure runs, see configure's option --config-cache.
 
53218
-# It is not useful on other systems.  If it contains results you don't
 
53219
-# want to keep, you may remove or edit it.
 
53220
-#
 
53221
-# config.status only pays attention to the cache file if you give it
 
53222
-# the --recheck option to rerun configure.
 
53223
-#
 
53224
-# `ac_cv_env_foo' variables (set or unset) will be overridden when
 
53225
-# loading this file, other *unset* `ac_cv_foo' will be assigned the
 
53226
-# following values.
38166
53227
+# Is shlibpath searched before the hard-coded library search path?
38167
53228
+shlibpath_overrides_runpath=$shlibpath_overrides_runpath
38168
 
+
 
53229
 
 
53230
-_ACEOF
38169
53231
+# Format of library name prefix.
38170
53232
+libname_spec=$lt_libname_spec
38171
 
+
 
53233
 
 
53234
-# The following way of writing the cache mishandles newlines in values,
 
53235
-# but we know of no workaround that is simple, portable, and efficient.
 
53236
-# So, we kill variables containing newlines.
 
53237
-# Ultrix sh set writes to stderr and can't be redirected directly,
 
53238
-# and sets the high bit in the cache file unless we assign to the vars.
 
53239
-(
 
53240
-  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
 
53241
-    eval ac_val=\$$ac_var
 
53242
-    case $ac_val in #(
 
53243
-    *${as_nl}*)
 
53244
-      case $ac_var in #(
 
53245
-      *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5
 
53246
-$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
 
53247
-      esac
 
53248
-      case $ac_var in #(
 
53249
-      _ | IFS | as_nl) ;; #(
 
53250
-      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
 
53251
-      *) $as_unset $ac_var ;;
 
53252
-      esac ;;
 
53253
-    esac
 
53254
-  done
38172
53255
+# List of archive names.  First name is the real one, the rest are links.
38173
53256
+# The last name is the one that the linker finds with -lNAME
38174
53257
+library_names_spec=$lt_library_names_spec
38175
 
+
 
53258
 
 
53259
-  (set) 2>&1 |
 
53260
-    case $as_nl`(ac_space=' '; set) 2>&1` in #(
 
53261
-    *${as_nl}ac_space=\ *)
 
53262
-      # `set' does not quote correctly, so add quotes (double-quote
 
53263
-      # substitution turns \\\\ into \\, and sed turns \\ into \).
 
53264
-      sed -n \
 
53265
-       "s/'/'\\\\''/g;
 
53266
-         s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
 
53267
-      ;; #(
 
53268
-    *)
 
53269
-      # `set' quotes correctly as required by POSIX, so do not add quotes.
 
53270
-      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
 
53271
-      ;;
 
53272
-    esac |
 
53273
-    sort
 
53274
-) |
 
53275
-  sed '
 
53276
-     /^ac_cv_env_/b end
 
53277
-     t clear
 
53278
-     :clear
 
53279
-     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
 
53280
-     t end
 
53281
-     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
 
53282
-     :end' >>confcache
 
53283
-if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
 
53284
-  if test -w "$cache_file"; then
 
53285
-    test "x$cache_file" != "x/dev/null" &&
 
53286
-      { $as_echo "$as_me:$LINENO: updating cache $cache_file" >&5
 
53287
-$as_echo "$as_me: updating cache $cache_file" >&6;}
 
53288
-    cat confcache >$cache_file
 
53289
-  else
 
53290
-    { $as_echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
 
53291
-$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
 
53292
-  fi
 
53293
-fi
 
53294
-rm -f confcache
38176
53295
+# The coded name of the library, if different from the real name.
38177
53296
+soname_spec=$lt_soname_spec
38178
 
+
 
53297
 
 
53298
-test "x$prefix" = xNONE && prefix=$ac_default_prefix
 
53299
-# Let make expand exec_prefix.
 
53300
-test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
38179
53301
+# Command to use after installation of a shared archive.
38180
53302
+postinstall_cmds=$lt_postinstall_cmds
38181
 
+
 
53303
 
 
53304
-DEFS=-DHAVE_CONFIG_H
38182
53305
+# Command to use after uninstallation of a shared archive.
38183
53306
+postuninstall_cmds=$lt_postuninstall_cmds
38184
 
+
 
53307
 
 
53308
-ac_libobjs=
 
53309
-ac_ltlibobjs=
 
53310
-for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
 
53311
-  # 1. Remove the extension, and $U if already installed.
 
53312
-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
 
53313
-  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
 
53314
-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
 
53315
-  #    will be set to the directory where LIBOBJS objects are built.
 
53316
-  ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext"
 
53317
-  ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo'
 
53318
-done
 
53319
-LIBOBJS=$ac_libobjs
38185
53320
+# Commands used to finish a libtool library installation in a directory.
38186
53321
+finish_cmds=$lt_finish_cmds
38187
 
+
 
53322
 
 
53323
-LTLIBOBJS=$ac_ltlibobjs
38188
53324
+# As "finish_cmds", except a single script fragment to be evaled but
38189
53325
+# not shown.
38190
53326
+finish_eval=$lt_finish_eval
38191
 
+
 
53327
 
38192
53328
+# Whether we should hardcode library paths into libraries.
38193
53329
+hardcode_into_libs=$hardcode_into_libs
38194
 
+
 
53330
 
 
53331
-if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
 
53332
-  { { $as_echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
 
53333
-Usually this means the macro was only invoked conditionally." >&5
 
53334
-$as_echo "$as_me: error: conditional \"AMDEP\" was never defined.
 
53335
-Usually this means the macro was only invoked conditionally." >&2;}
 
53336
-   { (exit 1); exit 1; }; }
 
53337
-fi
 
53338
-if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
 
53339
-  { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
 
53340
-Usually this means the macro was only invoked conditionally." >&5
 
53341
-$as_echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
 
53342
-Usually this means the macro was only invoked conditionally." >&2;}
 
53343
-   { (exit 1); exit 1; }; }
 
53344
-fi
38195
53345
+# Compile-time system search path for libraries.
38196
53346
+sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
38197
 
+
 
53347
 
 
53348
-  ac_config_commands="$ac_config_commands po/stamp-it"
38198
53349
+# Run-time system search path for libraries.
38199
53350
+sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
38200
 
+
 
53351
 
38201
53352
+# Whether dlopen is supported.
38202
53353
+dlopen_support=$enable_dlopen
38203
 
+
 
53354
 
 
53355
-if test -z "${ENABLE_SK_TRUE}" && test -z "${ENABLE_SK_FALSE}"; then
 
53356
-  { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_SK\" was never defined.
 
53357
-Usually this means the macro was only invoked conditionally." >&5
 
53358
-$as_echo "$as_me: error: conditional \"ENABLE_SK\" was never defined.
 
53359
-Usually this means the macro was only invoked conditionally." >&2;}
 
53360
-   { (exit 1); exit 1; }; }
 
53361
-fi
 
53362
-if test -z "${HAVE_GNOME_DOC_UTILS_TRUE}" && test -z "${HAVE_GNOME_DOC_UTILS_FALSE}"; then
 
53363
-  { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_GNOME_DOC_UTILS\" was never defined.
 
53364
-Usually this means the macro was only invoked conditionally." >&5
 
53365
-$as_echo "$as_me: error: conditional \"HAVE_GNOME_DOC_UTILS\" was never defined.
 
53366
-Usually this means the macro was only invoked conditionally." >&2;}
 
53367
-   { (exit 1); exit 1; }; }
 
53368
-fi
 
53369
-if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then
 
53370
-  { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined.
 
53371
-Usually this means the macro was only invoked conditionally." >&5
 
53372
-$as_echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined.
 
53373
-Usually this means the macro was only invoked conditionally." >&2;}
 
53374
-   { (exit 1); exit 1; }; }
 
53375
-fi
 
53376
-if test -z "${TOTEM_GST_TRUE}" && test -z "${TOTEM_GST_FALSE}"; then
 
53377
-  { { $as_echo "$as_me:$LINENO: error: conditional \"TOTEM_GST\" was never defined.
 
53378
-Usually this means the macro was only invoked conditionally." >&5
 
53379
-$as_echo "$as_me: error: conditional \"TOTEM_GST\" was never defined.
 
53380
-Usually this means the macro was only invoked conditionally." >&2;}
 
53381
-   { (exit 1); exit 1; }; }
 
53382
-fi
 
53383
-if test -z "${HAVE_GNOME_TRUE}" && test -z "${HAVE_GNOME_FALSE}"; then
 
53384
-  { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_GNOME\" was never defined.
 
53385
-Usually this means the macro was only invoked conditionally." >&5
 
53386
-$as_echo "$as_me: error: conditional \"HAVE_GNOME\" was never defined.
 
53387
-Usually this means the macro was only invoked conditionally." >&2;}
 
53388
-   { (exit 1); exit 1; }; }
 
53389
-fi
 
53390
-if test -z "${HAVE_XVIDMODE_TRUE}" && test -z "${HAVE_XVIDMODE_FALSE}"; then
 
53391
-  { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_XVIDMODE\" was never defined.
 
53392
-Usually this means the macro was only invoked conditionally." >&5
 
53393
-$as_echo "$as_me: error: conditional \"HAVE_XVIDMODE\" was never defined.
 
53394
-Usually this means the macro was only invoked conditionally." >&2;}
 
53395
-   { (exit 1); exit 1; }; }
 
53396
-fi
 
53397
-if test -z "${ENABLE_PYTHON_TRUE}" && test -z "${ENABLE_PYTHON_FALSE}"; then
 
53398
-  { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_PYTHON\" was never defined.
 
53399
-Usually this means the macro was only invoked conditionally." >&5
 
53400
-$as_echo "$as_me: error: conditional \"ENABLE_PYTHON\" was never defined.
 
53401
-Usually this means the macro was only invoked conditionally." >&2;}
 
53402
-   { (exit 1); exit 1; }; }
 
53403
-fi
 
53404
-if test -z "${ENABLE_VALA_TRUE}" && test -z "${ENABLE_VALA_FALSE}"; then
 
53405
-  { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_VALA\" was never defined.
 
53406
-Usually this means the macro was only invoked conditionally." >&5
 
53407
-$as_echo "$as_me: error: conditional \"ENABLE_VALA\" was never defined.
 
53408
-Usually this means the macro was only invoked conditionally." >&2;}
 
53409
-   { (exit 1); exit 1; }; }
 
53410
-fi
 
53411
-if test -z "${ENABLE_BROWSER_PLUGINS_TRUE}" && test -z "${ENABLE_BROWSER_PLUGINS_FALSE}"; then
 
53412
-  { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_BROWSER_PLUGINS\" was never defined.
 
53413
-Usually this means the macro was only invoked conditionally." >&5
 
53414
-$as_echo "$as_me: error: conditional \"ENABLE_BROWSER_PLUGINS\" was never defined.
 
53415
-Usually this means the macro was only invoked conditionally." >&2;}
 
53416
-   { (exit 1); exit 1; }; }
 
53417
-fi
 
53418
-if test -z "${ENABLE_BASIC_PLUGIN_TRUE}" && test -z "${ENABLE_BASIC_PLUGIN_FALSE}"; then
 
53419
-  { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_BASIC_PLUGIN\" was never defined.
 
53420
-Usually this means the macro was only invoked conditionally." >&5
 
53421
-$as_echo "$as_me: error: conditional \"ENABLE_BASIC_PLUGIN\" was never defined.
 
53422
-Usually this means the macro was only invoked conditionally." >&2;}
 
53423
-   { (exit 1); exit 1; }; }
 
53424
-fi
 
53425
-if test -z "${ENABLE_GMP_PLUGIN_TRUE}" && test -z "${ENABLE_GMP_PLUGIN_FALSE}"; then
 
53426
-  { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_GMP_PLUGIN\" was never defined.
 
53427
-Usually this means the macro was only invoked conditionally." >&5
 
53428
-$as_echo "$as_me: error: conditional \"ENABLE_GMP_PLUGIN\" was never defined.
 
53429
-Usually this means the macro was only invoked conditionally." >&2;}
 
53430
-   { (exit 1); exit 1; }; }
 
53431
-fi
 
53432
-if test -z "${ENABLE_COMPLEX_PLUGIN_TRUE}" && test -z "${ENABLE_COMPLEX_PLUGIN_FALSE}"; then
 
53433
-  { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_COMPLEX_PLUGIN\" was never defined.
 
53434
-Usually this means the macro was only invoked conditionally." >&5
 
53435
-$as_echo "$as_me: error: conditional \"ENABLE_COMPLEX_PLUGIN\" was never defined.
 
53436
-Usually this means the macro was only invoked conditionally." >&2;}
 
53437
-   { (exit 1); exit 1; }; }
 
53438
-fi
 
53439
-if test -z "${ENABLE_NARROWSPACE_PLUGIN_TRUE}" && test -z "${ENABLE_NARROWSPACE_PLUGIN_FALSE}"; then
 
53440
-  { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_NARROWSPACE_PLUGIN\" was never defined.
 
53441
-Usually this means the macro was only invoked conditionally." >&5
 
53442
-$as_echo "$as_me: error: conditional \"ENABLE_NARROWSPACE_PLUGIN\" was never defined.
 
53443
-Usually this means the macro was only invoked conditionally." >&2;}
 
53444
-   { (exit 1); exit 1; }; }
 
53445
-fi
 
53446
-if test -z "${ENABLE_MULLY_PLUGIN_TRUE}" && test -z "${ENABLE_MULLY_PLUGIN_FALSE}"; then
 
53447
-  { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_MULLY_PLUGIN\" was never defined.
 
53448
-Usually this means the macro was only invoked conditionally." >&5
 
53449
-$as_echo "$as_me: error: conditional \"ENABLE_MULLY_PLUGIN\" was never defined.
 
53450
-Usually this means the macro was only invoked conditionally." >&2;}
 
53451
-   { (exit 1); exit 1; }; }
 
53452
-fi
 
53453
-if test -z "${ENABLE_CONE_PLUGIN_TRUE}" && test -z "${ENABLE_CONE_PLUGIN_FALSE}"; then
 
53454
-  { { $as_echo "$as_me:$LINENO: error: conditional \"ENABLE_CONE_PLUGIN\" was never defined.
 
53455
-Usually this means the macro was only invoked conditionally." >&5
 
53456
-$as_echo "$as_me: error: conditional \"ENABLE_CONE_PLUGIN\" was never defined.
 
53457
-Usually this means the macro was only invoked conditionally." >&2;}
 
53458
-   { (exit 1); exit 1; }; }
 
53459
-fi
 
53460
-if test -z "${HAVE_NAUTILUS_TRUE}" && test -z "${HAVE_NAUTILUS_FALSE}"; then
 
53461
-  { { $as_echo "$as_me:$LINENO: error: conditional \"HAVE_NAUTILUS\" was never defined.
 
53462
-Usually this means the macro was only invoked conditionally." >&5
 
53463
-$as_echo "$as_me: error: conditional \"HAVE_NAUTILUS\" was never defined.
 
53464
-Usually this means the macro was only invoked conditionally." >&2;}
 
53465
-   { (exit 1); exit 1; }; }
 
53466
-fi
 
53467
-if test -z "${WITH_DBUS_TRUE}" && test -z "${WITH_DBUS_FALSE}"; then
 
53468
-  { { $as_echo "$as_me:$LINENO: error: conditional \"WITH_DBUS\" was never defined.
 
53469
-Usually this means the macro was only invoked conditionally." >&5
 
53470
-$as_echo "$as_me: error: conditional \"WITH_DBUS\" was never defined.
 
53471
-Usually this means the macro was only invoked conditionally." >&2;}
 
53472
-   { (exit 1); exit 1; }; }
 
53473
-fi
 
53474
-if test -z "${GCONF_SCHEMAS_INSTALL_TRUE}" && test -z "${GCONF_SCHEMAS_INSTALL_FALSE}"; then
 
53475
-  { { $as_echo "$as_me:$LINENO: error: conditional \"GCONF_SCHEMAS_INSTALL\" was never defined.
 
53476
-Usually this means the macro was only invoked conditionally." >&5
 
53477
-$as_echo "$as_me: error: conditional \"GCONF_SCHEMAS_INSTALL\" was never defined.
 
53478
-Usually this means the macro was only invoked conditionally." >&2;}
 
53479
-   { (exit 1); exit 1; }; }
 
53480
-fi
 
53481
-if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
 
53482
-  { { $as_echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined.
 
53483
-Usually this means the macro was only invoked conditionally." >&5
 
53484
-$as_echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined.
 
53485
-Usually this means the macro was only invoked conditionally." >&2;}
 
53486
-   { (exit 1); exit 1; }; }
 
53487
-fi
38204
53488
+# Whether dlopen of programs is supported.
38205
53489
+dlopen_self=$enable_dlopen_self
38206
 
+
 
53490
 
 
53491
-: ${CONFIG_STATUS=./config.status}
 
53492
-ac_write_fail=0
 
53493
-ac_clean_files_save=$ac_clean_files
 
53494
-ac_clean_files="$ac_clean_files $CONFIG_STATUS"
 
53495
-{ $as_echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
 
53496
-$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
 
53497
-cat >$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
53498
-#! $SHELL
 
53499
-# Generated by $as_me.
 
53500
-# Run this file to recreate the current configuration.
 
53501
-# Compiler output produced by configure, useful for debugging
 
53502
-# configure, is in config.log if it exists.
38207
53503
+# Whether dlopen of statically linked programs is supported.
38208
53504
+dlopen_self_static=$enable_dlopen_self_static
38209
 
+
 
53505
 
 
53506
-debug=false
 
53507
-ac_cs_recheck=false
 
53508
-ac_cs_silent=false
 
53509
-SHELL=\${CONFIG_SHELL-$SHELL}
 
53510
-_ACEOF
38210
53511
+# Commands to strip libraries.
38211
53512
+old_striplib=$lt_old_striplib
38212
53513
+striplib=$lt_striplib
38213
 
+
38214
 
+
 
53514
 
 
53515
-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
53516
-## --------------------- ##
 
53517
-## M4sh Initialization.  ##
 
53518
-## --------------------- ##
 
53519
 
 
53520
-# Be more Bourne compatible
 
53521
-DUALCASE=1; export DUALCASE # for MKS sh
 
53522
-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
53523
-  emulate sh
 
53524
-  NULLCMD=:
 
53525
-  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
 
53526
-  # is contrary to our usage.  Disable this feature.
 
53527
-  alias -g '${1+"$@"}'='"$@"'
 
53528
-  setopt NO_GLOB_SUBST
 
53529
-else
 
53530
-  case `(set -o) 2>/dev/null` in
 
53531
-  *posix*) set -o posix ;;
 
53532
-esac
38215
53533
+# The linker used to build libraries.
38216
53534
+LD=$lt_LD
38217
53535
+
38223
53541
+
38224
53542
+# Is the compiler the GNU compiler?
38225
53543
+with_gcc=$GCC
38226
 
+
 
53544
 
 
53545
-fi
38227
53546
+# Compiler flag to turn off builtin functions.
38228
53547
+no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
38229
 
+
 
53548
 
38230
53549
+# How to pass a linker flag through the compiler.
38231
53550
+wl=$lt_lt_prog_compiler_wl
38232
 
+
 
53551
 
38233
53552
+# Additional compiler flags for building library objects.
38234
53553
+pic_flag=$lt_lt_prog_compiler_pic
38235
 
+
 
53554
 
38236
53555
+# Compiler flag to prevent dynamic linking.
38237
53556
+link_static_flag=$lt_lt_prog_compiler_static
38238
 
+
 
53557
 
 
53558
-# PATH needs CR
 
53559
-# Avoid depending upon Character Ranges.
 
53560
-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 
53561
-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
53562
-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 
53563
-as_cr_digits='0123456789'
 
53564
-as_cr_alnum=$as_cr_Letters$as_cr_digits
38239
53565
+# Does compiler simultaneously support -c and -o options?
38240
53566
+compiler_c_o=$lt_lt_cv_prog_compiler_c_o
38241
 
+
 
53567
 
 
53568
-as_nl='
 
53569
-'
 
53570
-export as_nl
 
53571
-# Printing a long string crashes Solaris 7 /usr/bin/printf.
 
53572
-as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
 
53573
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
 
53574
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
 
53575
-if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
 
53576
-  as_echo='printf %s\n'
 
53577
-  as_echo_n='printf %s'
 
53578
-else
 
53579
-  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
 
53580
-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
 
53581
-    as_echo_n='/usr/ucb/echo -n'
 
53582
-  else
 
53583
-    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
 
53584
-    as_echo_n_body='eval
 
53585
-      arg=$1;
 
53586
-      case $arg in
 
53587
-      *"$as_nl"*)
 
53588
-       expr "X$arg" : "X\\(.*\\)$as_nl";
 
53589
-       arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
 
53590
-      esac;
 
53591
-      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
 
53592
-    '
 
53593
-    export as_echo_n_body
 
53594
-    as_echo_n='sh -c $as_echo_n_body as_echo'
 
53595
-  fi
 
53596
-  export as_echo_body
 
53597
-  as_echo='sh -c $as_echo_body as_echo'
 
53598
-fi
38242
53599
+# Whether or not to add -lc for building shared libraries.
38243
53600
+build_libtool_need_lc=$archive_cmds_need_lc
38244
 
+
 
53601
 
 
53602
-# The user is always right.
 
53603
-if test "${PATH_SEPARATOR+set}" != set; then
 
53604
-  PATH_SEPARATOR=:
 
53605
-  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
 
53606
-    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
 
53607
-      PATH_SEPARATOR=';'
 
53608
-  }
 
53609
-fi
38245
53610
+# Whether or not to disallow shared libs when runtime libs are static.
38246
53611
+allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
38247
 
+
 
53612
 
 
53613
-# Support unset when possible.
 
53614
-if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
 
53615
-  as_unset=unset
 
53616
-else
 
53617
-  as_unset=false
 
53618
-fi
38248
53619
+# Compiler flag to allow reflexive dlopens.
38249
53620
+export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
38250
 
+
 
53621
 
38251
53622
+# Compiler flag to generate shared objects directly from archives.
38252
53623
+whole_archive_flag_spec=$lt_whole_archive_flag_spec
38253
 
+
 
53624
 
 
53625
-# IFS
 
53626
-# We need space, tab and new line, in precisely that order.  Quoting is
 
53627
-# there to prevent editors from complaining about space-tab.
 
53628
-# (If _AS_PATH_WALK were called with IFS unset, it would disable word
 
53629
-# splitting by setting IFS to empty value.)
 
53630
-IFS=" ""       $as_nl"
38254
53631
+# Whether the compiler copes with passing no objects directly.
38255
53632
+compiler_needs_object=$lt_compiler_needs_object
38256
 
+
 
53633
 
 
53634
-# Find who we are.  Look in the path if we contain no directory separator.
 
53635
-case $0 in
 
53636
-  *[\\/]* ) as_myself=$0 ;;
 
53637
-  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
53638
-for as_dir in $PATH
 
53639
-do
 
53640
-  IFS=$as_save_IFS
 
53641
-  test -z "$as_dir" && as_dir=.
 
53642
-  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 
53643
-done
 
53644
-IFS=$as_save_IFS
38257
53645
+# Create an old-style archive from a shared archive.
38258
53646
+old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
38259
 
+
 
53647
 
 
53648
-     ;;
 
53649
-esac
 
53650
-# We did not find ourselves, most probably we were run as `sh COMMAND'
 
53651
-# in which case we are not to be found in the path.
 
53652
-if test "x$as_myself" = x; then
 
53653
-  as_myself=$0
 
53654
-fi
 
53655
-if test ! -f "$as_myself"; then
 
53656
-  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 
53657
-  { (exit 1); exit 1; }
 
53658
-fi
38260
53659
+# Create a temporary old-style archive to link instead of a shared archive.
38261
53660
+old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
38262
 
+
 
53661
 
 
53662
-# Work around bugs in pre-3.0 UWIN ksh.
 
53663
-for as_var in ENV MAIL MAILPATH
 
53664
-do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 
53665
-done
 
53666
-PS1='$ '
 
53667
-PS2='> '
 
53668
-PS4='+ '
38263
53669
+# Commands used to build a shared archive.
38264
53670
+archive_cmds=$lt_archive_cmds
38265
53671
+archive_expsym_cmds=$lt_archive_expsym_cmds
38266
 
+
 
53672
 
 
53673
-# NLS nuisances.
 
53674
-LC_ALL=C
 
53675
-export LC_ALL
 
53676
-LANGUAGE=C
 
53677
-export LANGUAGE
38267
53678
+# Commands used to build a loadable module if different from building
38268
53679
+# a shared archive.
38269
53680
+module_cmds=$lt_module_cmds
38270
53681
+module_expsym_cmds=$lt_module_expsym_cmds
38271
 
+
 
53682
 
 
53683
-# Required to use basename.
 
53684
-if expr a : '\(a\)' >/dev/null 2>&1 &&
 
53685
-   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
53686
-  as_expr=expr
 
53687
-else
 
53688
-  as_expr=false
 
53689
-fi
38272
53690
+# Whether we are building with GNU ld or not.
38273
53691
+with_gnu_ld=$lt_with_gnu_ld
38274
53692
 
38275
 
-ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
38276
 
-if test -n "$ac_eof"; then
38277
 
-  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
38278
 
-  ac_eof=`expr $ac_eof + 1`
 
53693
-if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
 
53694
-  as_basename=basename
 
53695
-else
 
53696
-  as_basename=false
38279
53697
-fi
38280
53698
+# Flag that allows shared libraries with undefined symbols to be built.
38281
53699
+allow_undefined_flag=$lt_allow_undefined_flag
38282
53700
 
38283
 
-cat >>$CONFIG_STATUS <<_ACEOF
38284
 
-cat >"\$tmp/subs-3.sed" <<\CEOF$ac_eof
38285
 
-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end
38286
 
-_ACEOF
38287
 
-sed '
38288
 
-s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
38289
 
-s/^/s,@/; s/!/@,|#_!!_#|/
38290
 
-:n
38291
 
-t n
38292
 
-s/'"$ac_delim"'$/,g/; t
38293
 
-s/$/\\/; p
38294
 
-N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
38295
 
-' >>$CONFIG_STATUS <conf$$subs.sed
38296
 
-rm -f conf$$subs.sed
38297
 
-cat >>$CONFIG_STATUS <<_ACEOF
38298
 
-:end
38299
 
-s/|#_!!_#|//g
38300
 
-CEOF$ac_eof
38301
 
-_ACEOF
38302
53701
+# Flag that enforces no undefined symbols.
38303
53702
+no_undefined_flag=$lt_no_undefined_flag
38304
53703
 
 
53704
-# Name of the executable.
 
53705
-as_me=`$as_basename -- "$0" ||
 
53706
-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 
53707
-        X"$0" : 'X\(//\)$' \| \
 
53708
-        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 
53709
-$as_echo X/"$0" |
 
53710
-    sed '/^.*\/\([^/][^/]*\)\/*$/{
 
53711
-           s//\1/
 
53712
-           q
 
53713
-         }
 
53714
-         /^X\/\(\/\/\)$/{
 
53715
-           s//\1/
 
53716
-           q
 
53717
-         }
 
53718
-         /^X\/\(\/\).*/{
 
53719
-           s//\1/
 
53720
-           q
 
53721
-         }
 
53722
-         s/.*/./; q'`
38305
53723
+# Flag to hardcode \$libdir into a binary during linking.
38306
53724
+# This must work even if \$libdir does not exist
38307
53725
+hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
38308
53726
 
 
53727
-# CDPATH.
 
53728
-$as_unset CDPATH
 
53729
+# If ld is used when linking, flag to hardcode \$libdir into a binary
 
53730
+# during linking.  This must work even if \$libdir does not exist.
 
53731
+hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
 
53732
 
 
53733
+# Whether we need a single "-rpath" flag with a separated argument.
 
53734
+hardcode_libdir_separator=$lt_hardcode_libdir_separator
 
53735
 
 
53736
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
 
53737
+# DIR into the resulting binary.
 
53738
+hardcode_direct=$hardcode_direct
 
53739
 
 
53740
-  as_lineno_1=$LINENO
 
53741
-  as_lineno_2=$LINENO
 
53742
-  test "x$as_lineno_1" != "x$as_lineno_2" &&
 
53743
-  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
 
53744
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
 
53745
+# DIR into the resulting binary and the resulting library dependency is
 
53746
+# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
 
53747
+# library is relocated.
 
53748
+hardcode_direct_absolute=$hardcode_direct_absolute
 
53749
 
 
53750
-  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
 
53751
-  # uniformly replaced by the line number.  The first 'sed' inserts a
 
53752
-  # line-number line after each line using $LINENO; the second 'sed'
 
53753
-  # does the real work.  The second script uses 'N' to pair each
 
53754
-  # line-number line with the line containing $LINENO, and appends
 
53755
-  # trailing '-' during substitution so that $LINENO is not a special
 
53756
-  # case at line end.
 
53757
-  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
 
53758
-  # scripts with optimization help from Paolo Bonzini.  Blame Lee
 
53759
-  # E. McMahon (1931-1989) for sed's syntax.  :-)
 
53760
-  sed -n '
 
53761
-    p
 
53762
-    /[$]LINENO/=
 
53763
-  ' <$as_myself |
 
53764
-    sed '
 
53765
-      s/[$]LINENO.*/&-/
 
53766
-      t lineno
 
53767
-      b
 
53768
-      :lineno
 
53769
-      N
 
53770
-      :loop
 
53771
-      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
 
53772
-      t loop
 
53773
-      s/-\n.*//
 
53774
-    ' >$as_me.lineno &&
 
53775
-  chmod +x "$as_me.lineno" ||
 
53776
-    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
 
53777
-   { (exit 1); exit 1; }; }
 
53778
+# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
 
53779
+# into the resulting binary.
 
53780
+hardcode_minus_L=$hardcode_minus_L
 
53781
 
 
53782
-  # Don't try to exec as it changes $[0], causing all sort of problems
 
53783
-  # (the dirname of $[0] is not the place where we might find the
 
53784
-  # original and so on.  Autoconf is especially sensitive to this).
 
53785
-  . "./$as_me.lineno"
 
53786
-  # Exit status is that of the last command.
 
53787
-  exit
 
53788
-}
 
53789
+# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
 
53790
+# into the resulting binary.
 
53791
+hardcode_shlibpath_var=$hardcode_shlibpath_var
 
53792
 
 
53793
+# Set to "yes" if building a shared library automatically hardcodes DIR
 
53794
+# into the library and all subsequent libraries and executables linked
 
53795
+# against it.
 
53796
+hardcode_automatic=$hardcode_automatic
 
53797
 
 
53798
-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
 
53799
-  as_dirname=dirname
 
53800
-else
 
53801
-  as_dirname=false
 
53802
-fi
 
53803
+# Set to yes if linker adds runtime paths of dependent libraries
 
53804
+# to runtime path list.
 
53805
+inherit_rpath=$inherit_rpath
 
53806
 
 
53807
-ECHO_C= ECHO_N= ECHO_T=
 
53808
-case `echo -n x` in
 
53809
--n*)
 
53810
-  case `echo 'x\c'` in
 
53811
-  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
 
53812
-  *)   ECHO_C='\c';;
 
53813
-  esac;;
 
53814
-*)
 
53815
-  ECHO_N='-n';;
 
53816
-esac
 
53817
-if expr a : '\(a\)' >/dev/null 2>&1 &&
 
53818
-   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
53819
-  as_expr=expr
 
53820
-else
 
53821
-  as_expr=false
 
53822
-fi
 
53823
+# Whether libtool must link a program against all its dependency libraries.
 
53824
+link_all_deplibs=$link_all_deplibs
 
53825
 
 
53826
-rm -f conf$$ conf$$.exe conf$$.file
 
53827
-if test -d conf$$.dir; then
 
53828
-  rm -f conf$$.dir/conf$$.file
 
53829
-else
 
53830
-  rm -f conf$$.dir
 
53831
-  mkdir conf$$.dir 2>/dev/null
 
53832
-fi
 
53833
-if (echo >conf$$.file) 2>/dev/null; then
 
53834
-  if ln -s conf$$.file conf$$ 2>/dev/null; then
 
53835
-    as_ln_s='ln -s'
 
53836
-    # ... but there are two gotchas:
 
53837
-    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 
53838
-    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 
53839
-    # In both cases, we have to default to `cp -p'.
 
53840
-    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 
53841
-      as_ln_s='cp -p'
 
53842
-  elif ln conf$$.file conf$$ 2>/dev/null; then
 
53843
-    as_ln_s=ln
 
53844
-  else
 
53845
-    as_ln_s='cp -p'
 
53846
-  fi
 
53847
-else
 
53848
-  as_ln_s='cp -p'
 
53849
-fi
 
53850
-rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 
53851
-rmdir conf$$.dir 2>/dev/null
 
53852
+# Fix the shell variable \$srcfile for the compiler.
 
53853
+fix_srcfile_path=$lt_fix_srcfile_path
 
53854
 
 
53855
-if mkdir -p . 2>/dev/null; then
 
53856
-  as_mkdir_p=:
 
53857
-else
 
53858
-  test -d ./-p && rmdir ./-p
 
53859
-  as_mkdir_p=false
 
53860
-fi
 
53861
+# Set to "yes" if exported symbols are required.
 
53862
+always_export_symbols=$always_export_symbols
 
53863
 
 
53864
-if test -x / >/dev/null 2>&1; then
 
53865
-  as_test_x='test -x'
 
53866
-else
 
53867
-  if ls -dL / >/dev/null 2>&1; then
 
53868
-    as_ls_L_option=L
 
53869
-  else
 
53870
-    as_ls_L_option=
 
53871
-  fi
 
53872
-  as_test_x='
 
53873
-    eval sh -c '\''
 
53874
-      if test -d "$1"; then
 
53875
-       test -d "$1/.";
 
53876
-      else
 
53877
-       case $1 in
 
53878
-       -*)set "./$1";;
 
53879
-       esac;
 
53880
-       case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
 
53881
-       ???[sx]*):;;*)false;;esac;fi
 
53882
-    '\'' sh
 
53883
-  '
 
53884
-fi
 
53885
-as_executable_p=$as_test_x
 
53886
+# The commands to list exported symbols.
 
53887
+export_symbols_cmds=$lt_export_symbols_cmds
 
53888
 
 
53889
-# Sed expression to map a string onto a valid CPP name.
 
53890
-as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
53891
+# Symbols that should not be listed in the preloaded symbols.
 
53892
+exclude_expsyms=$lt_exclude_expsyms
 
53893
 
 
53894
-# Sed expression to map a string onto a valid variable name.
 
53895
-as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 
53896
+# Symbols that must always be exported.
 
53897
+include_expsyms=$lt_include_expsyms
 
53898
 
 
53899
+# Commands necessary for linking programs (against libraries) with templates.
 
53900
+prelink_cmds=$lt_prelink_cmds
 
53901
 
 
53902
-exec 6>&1
 
53903
+# Specify filename containing input files.
 
53904
+file_list_spec=$lt_file_list_spec
 
53905
 
 
53906
-# Save the log message, to keep $[0] and so on meaningful, and to
 
53907
-# report actual input values of CONFIG_FILES etc. instead of their
 
53908
-# values after options handling.
 
53909
-ac_log="
 
53910
-This file was extended by totem $as_me 2.24.3, which was
 
53911
-generated by GNU Autoconf 2.63.  Invocation command line was
 
53912
+# How to hardcode a shared library path into an executable.
 
53913
+hardcode_action=$hardcode_action
 
53914
 
 
53915
-  CONFIG_FILES    = $CONFIG_FILES
 
53916
-  CONFIG_HEADERS  = $CONFIG_HEADERS
 
53917
-  CONFIG_LINKS    = $CONFIG_LINKS
 
53918
-  CONFIG_COMMANDS = $CONFIG_COMMANDS
 
53919
-  $ $0 $@
 
53920
+# The directories searched by this compiler when creating a shared library.
 
53921
+compiler_lib_search_dirs=$lt_compiler_lib_search_dirs
 
53922
+
 
53923
+# Dependencies to place before and after the objects being linked to
 
53924
+# create a shared library.
 
53925
+predep_objects=$lt_predep_objects
 
53926
+postdep_objects=$lt_postdep_objects
 
53927
+predeps=$lt_predeps
 
53928
+postdeps=$lt_postdeps
 
53929
 
 
53930
-on `(hostname || uname -n) 2>/dev/null | sed 1q`
 
53931
-"
 
53932
+# The library search path used internally by the compiler when linking
 
53933
+# a shared library.
 
53934
+compiler_lib_search_path=$lt_compiler_lib_search_path
 
53935
 
 
53936
-_ACEOF
 
53937
+# ### END LIBTOOL CONFIG
 
53938
 
 
53939
-case $ac_config_files in *"
 
53940
-"*) set x $ac_config_files; shift; ac_config_files=$*;;
 
53941
-esac
 
53942
+_LT_EOF
 
53943
 
 
53944
-case $ac_config_headers in *"
 
53945
-"*) set x $ac_config_headers; shift; ac_config_headers=$*;;
 
53946
-esac
 
53947
+  case $host_os in
 
53948
+  aix3*)
 
53949
+    cat <<\_LT_EOF >> "$cfgfile"
 
53950
+# AIX sometimes has problems with the GCC collect2 program.  For some
 
53951
+# reason, if we set the COLLECT_NAMES environment variable, the problems
 
53952
+# vanish in a puff of smoke.
 
53953
+if test "X${COLLECT_NAMES+set}" != Xset; then
 
53954
+  COLLECT_NAMES=
 
53955
+  export COLLECT_NAMES
 
53956
+fi
 
53957
+_LT_EOF
 
53958
+    ;;
 
53959
+  esac
 
53960
 
 
53961
 
 
53962
-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
53963
-# Files that config.status was made for.
 
53964
-config_files="$ac_config_files"
 
53965
-config_headers="$ac_config_headers"
 
53966
-config_commands="$ac_config_commands"
 
53967
+ltmain="$ac_aux_dir/ltmain.sh"
 
53968
 
 
53969
-_ACEOF
 
53970
 
 
53971
-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
53972
-ac_cs_usage="\
 
53973
-\`$as_me' instantiates files from templates according to the
 
53974
-current configuration.
 
53975
+  # We use sed instead of cat because bash on DJGPP gets confused if
 
53976
+  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
 
53977
+  # text mode, it properly converts lines to CR/LF.  This bash problem
 
53978
+  # is reportedly fixed, but why not run on old versions too?
 
53979
+  sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \
 
53980
+    || (rm -f "$cfgfile"; exit 1)
 
53981
 
 
53982
-Usage: $0 [OPTION]... [FILE]...
 
53983
+  case $xsi_shell in
 
53984
+  yes)
 
53985
+    cat << \_LT_EOF >> "$cfgfile"
 
53986
+
 
53987
+# func_dirname file append nondir_replacement
 
53988
+# Compute the dirname of FILE.  If nonempty, add APPEND to the result,
 
53989
+# otherwise set result to NONDIR_REPLACEMENT.
 
53990
+func_dirname ()
 
53991
+{
 
53992
+  case ${1} in
 
53993
+    */*) func_dirname_result="${1%/*}${2}" ;;
 
53994
+    *  ) func_dirname_result="${3}" ;;
 
53995
+  esac
 
53996
+}
 
53997
 
 
53998
-  -h, --help       print this help, then exit
 
53999
-  -V, --version    print version number and configuration settings, then exit
 
54000
-  -q, --quiet, --silent
 
54001
-                   do not print progress messages
 
54002
-  -d, --debug      don't remove temporary files
 
54003
-      --recheck    update $as_me by reconfiguring in the same conditions
 
54004
-      --file=FILE[:TEMPLATE]
 
54005
-                   instantiate the configuration file FILE
 
54006
-      --header=FILE[:TEMPLATE]
 
54007
-                   instantiate the configuration header FILE
 
54008
+# func_basename file
 
54009
+func_basename ()
 
54010
+{
 
54011
+  func_basename_result="${1##*/}"
 
54012
+}
 
54013
 
 
54014
-Configuration files:
 
54015
-$config_files
 
54016
+# func_dirname_and_basename file append nondir_replacement
 
54017
+# perform func_basename and func_dirname in a single function
 
54018
+# call:
 
54019
+#   dirname:  Compute the dirname of FILE.  If nonempty,
 
54020
+#             add APPEND to the result, otherwise set result
 
54021
+#             to NONDIR_REPLACEMENT.
 
54022
+#             value returned in "$func_dirname_result"
 
54023
+#   basename: Compute filename of FILE.
 
54024
+#             value retuned in "$func_basename_result"
 
54025
+# Implementation must be kept synchronized with func_dirname
 
54026
+# and func_basename. For efficiency, we do not delegate to
 
54027
+# those functions but instead duplicate the functionality here.
 
54028
+func_dirname_and_basename ()
 
54029
+{
 
54030
+  case ${1} in
 
54031
+    */*) func_dirname_result="${1%/*}${2}" ;;
 
54032
+    *  ) func_dirname_result="${3}" ;;
 
54033
+  esac
 
54034
+  func_basename_result="${1##*/}"
 
54035
+}
 
54036
 
 
54037
-Configuration headers:
 
54038
-$config_headers
 
54039
+# func_stripname prefix suffix name
 
54040
+# strip PREFIX and SUFFIX off of NAME.
 
54041
+# PREFIX and SUFFIX must not contain globbing or regex special
 
54042
+# characters, hashes, percent signs, but SUFFIX may contain a leading
 
54043
+# dot (in which case that matches only a dot).
 
54044
+func_stripname ()
 
54045
+{
 
54046
+  # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
 
54047
+  # positional parameters, so assign one to ordinary parameter first.
 
54048
+  func_stripname_result=${3}
 
54049
+  func_stripname_result=${func_stripname_result#"${1}"}
 
54050
+  func_stripname_result=${func_stripname_result%"${2}"}
 
54051
+}
 
54052
 
 
54053
-Configuration commands:
 
54054
-$config_commands
 
54055
+# func_opt_split
 
54056
+func_opt_split ()
 
54057
+{
 
54058
+  func_opt_split_opt=${1%%=*}
 
54059
+  func_opt_split_arg=${1#*=}
 
54060
+}
 
54061
 
 
54062
-Report bugs to <bug-autoconf@gnu.org>."
 
54063
+# func_lo2o object
 
54064
+func_lo2o ()
 
54065
+{
 
54066
+  case ${1} in
 
54067
+    *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
 
54068
+    *)    func_lo2o_result=${1} ;;
 
54069
+  esac
 
54070
+}
 
54071
 
 
54072
-_ACEOF
 
54073
-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
54074
-ac_cs_version="\\
 
54075
-totem config.status 2.24.3
 
54076
-configured by $0, generated by GNU Autoconf 2.63,
 
54077
-  with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
 
54078
+# func_xform libobj-or-source
 
54079
+func_xform ()
 
54080
+{
 
54081
+  func_xform_result=${1%.*}.lo
 
54082
+}
 
54083
 
 
54084
-Copyright (C) 2008 Free Software Foundation, Inc.
 
54085
-This config.status script is free software; the Free Software Foundation
 
54086
-gives unlimited permission to copy, distribute and modify it."
 
54087
+# func_arith arithmetic-term...
 
54088
+func_arith ()
 
54089
+{
 
54090
+  func_arith_result=$(( $* ))
 
54091
+}
 
54092
 
 
54093
-ac_pwd='$ac_pwd'
 
54094
-srcdir='$srcdir'
 
54095
-INSTALL='$INSTALL'
 
54096
-MKDIR_P='$MKDIR_P'
 
54097
-AWK='$AWK'
 
54098
-test -n "\$AWK" || AWK=awk
 
54099
-_ACEOF
 
54100
+# func_len string
 
54101
+# STRING may not start with a hyphen.
 
54102
+func_len ()
 
54103
+{
 
54104
+  func_len_result=${#1}
 
54105
+}
 
54106
 
 
54107
-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
54108
-# The default lists apply if the user does not specify any file.
 
54109
-ac_need_defaults=:
 
54110
-while test $# != 0
 
54111
-do
 
54112
-  case $1 in
 
54113
-  --*=*)
 
54114
-    ac_option=`expr "X$1" : 'X\([^=]*\)='`
 
54115
-    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
 
54116
-    ac_shift=:
 
54117
-    ;;
 
54118
-  *)
 
54119
-    ac_option=$1
 
54120
-    ac_optarg=$2
 
54121
-    ac_shift=shift
 
54122
+_LT_EOF
 
54123
     ;;
 
54124
-  esac
 
54125
+  *) # Bourne compatible functions.
 
54126
+    cat << \_LT_EOF >> "$cfgfile"
 
54127
 
 
54128
-  case $ac_option in
 
54129
-  # Handling of the options.
 
54130
-  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
 
54131
-    ac_cs_recheck=: ;;
 
54132
-  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
 
54133
-    $as_echo "$ac_cs_version"; exit ;;
 
54134
-  --debug | --debu | --deb | --de | --d | -d )
 
54135
-    debug=: ;;
 
54136
-  --file | --fil | --fi | --f )
 
54137
-    $ac_shift
 
54138
-    case $ac_optarg in
 
54139
-    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
 
54140
-    esac
 
54141
-    CONFIG_FILES="$CONFIG_FILES '$ac_optarg'"
 
54142
-    ac_need_defaults=false;;
 
54143
-  --header | --heade | --head | --hea )
 
54144
-    $ac_shift
 
54145
-    case $ac_optarg in
 
54146
-    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
 
54147
-    esac
 
54148
-    CONFIG_HEADERS="$CONFIG_HEADERS '$ac_optarg'"
 
54149
-    ac_need_defaults=false;;
 
54150
-  --he | --h)
 
54151
-    # Conflict between --help and --header
 
54152
-    { $as_echo "$as_me: error: ambiguous option: $1
 
54153
-Try \`$0 --help' for more information." >&2
 
54154
-   { (exit 1); exit 1; }; };;
 
54155
-  --help | --hel | -h )
 
54156
-    $as_echo "$ac_cs_usage"; exit ;;
 
54157
-  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
54158
-  | -silent | --silent | --silen | --sile | --sil | --si | --s)
 
54159
-    ac_cs_silent=: ;;
 
54160
+# func_dirname file append nondir_replacement
 
54161
+# Compute the dirname of FILE.  If nonempty, add APPEND to the result,
 
54162
+# otherwise set result to NONDIR_REPLACEMENT.
 
54163
+func_dirname ()
 
54164
+{
 
54165
+  # Extract subdirectory from the argument.
 
54166
+  func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"`
 
54167
+  if test "X$func_dirname_result" = "X${1}"; then
 
54168
+    func_dirname_result="${3}"
 
54169
+  else
 
54170
+    func_dirname_result="$func_dirname_result${2}"
 
54171
+  fi
 
54172
+}
 
54173
 
 
54174
-  # This is an error.
 
54175
-  -*) { $as_echo "$as_me: error: unrecognized option: $1
 
54176
-Try \`$0 --help' for more information." >&2
 
54177
-   { (exit 1); exit 1; }; } ;;
 
54178
+# func_basename file
 
54179
+func_basename ()
 
54180
+{
 
54181
+  func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"`
 
54182
+}
 
54183
 
 
54184
-  *) ac_config_targets="$ac_config_targets $1"
 
54185
-     ac_need_defaults=false ;;
 
54186
 
 
54187
+# func_stripname prefix suffix name
 
54188
+# strip PREFIX and SUFFIX off of NAME.
 
54189
+# PREFIX and SUFFIX must not contain globbing or regex special
 
54190
+# characters, hashes, percent signs, but SUFFIX may contain a leading
 
54191
+# dot (in which case that matches only a dot).
 
54192
+# func_strip_suffix prefix name
 
54193
+func_stripname ()
 
54194
+{
 
54195
+  case ${2} in
 
54196
+    .*) func_stripname_result=`$ECHO "X${3}" \
 
54197
+           | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;;
 
54198
+    *)  func_stripname_result=`$ECHO "X${3}" \
 
54199
+           | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;;
 
54200
   esac
 
54201
-  shift
 
54202
-done
 
54203
+}
 
54204
 
 
54205
-ac_configure_extra_args=
 
54206
+# sed scripts:
 
54207
+my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q'
 
54208
+my_sed_long_arg='1s/^-[^=]*=//'
 
54209
 
 
54210
-if $ac_cs_silent; then
 
54211
-  exec 6>/dev/null
 
54212
-  ac_configure_extra_args="$ac_configure_extra_args --silent"
 
54213
-fi
 
54214
+# func_opt_split
 
54215
+func_opt_split ()
 
54216
+{
 
54217
+  func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"`
 
54218
+  func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"`
 
54219
+}
 
54220
 
 
54221
-_ACEOF
 
54222
-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
54223
-if \$ac_cs_recheck; then
 
54224
-  set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
 
54225
-  shift
 
54226
-  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
 
54227
-  CONFIG_SHELL='$SHELL'
 
54228
-  export CONFIG_SHELL
 
54229
-  exec "\$@"
 
54230
-fi
 
54231
+# func_lo2o object
 
54232
+func_lo2o ()
 
54233
+{
 
54234
+  func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"`
 
54235
+}
 
54236
 
 
54237
-_ACEOF
 
54238
-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
54239
-exec 5>>config.log
 
54240
+# func_xform libobj-or-source
 
54241
+func_xform ()
 
54242
 {
 
54243
-  echo
 
54244
-  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
 
54245
-## Running $as_me. ##
 
54246
-_ASBOX
 
54247
-  $as_echo "$ac_log"
 
54248
-} >&5
 
54249
+  func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[^.]*$/.lo/'`
 
54250
+}
 
54251
 
 
54252
-_ACEOF
 
54253
-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
54254
-#
 
54255
-# INIT-COMMANDS
 
54256
-#
 
54257
-AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
 
54258
+# func_arith arithmetic-term...
 
54259
+func_arith ()
 
54260
+{
 
54261
+  func_arith_result=`expr "$@"`
 
54262
+}
 
54263
 
 
54264
+# func_len string
 
54265
+# STRING may not start with a hyphen.
 
54266
+func_len ()
 
54267
+{
 
54268
+  func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len`
 
54269
+}
 
54270
 
 
54271
-_ACEOF
 
54272
+_LT_EOF
 
54273
+esac
 
54274
 
 
54275
-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
54276
+case $lt_shell_append in
 
54277
+  yes)
 
54278
+    cat << \_LT_EOF >> "$cfgfile"
 
54279
+
 
54280
+# func_append var value
 
54281
+# Append VALUE to the end of shell variable VAR.
 
54282
+func_append ()
 
54283
+{
 
54284
+  eval "$1+=\$2"
 
54285
+}
 
54286
+_LT_EOF
 
54287
+    ;;
 
54288
+  *)
 
54289
+    cat << \_LT_EOF >> "$cfgfile"
 
54290
 
 
54291
-# Handling of arguments.
 
54292
-for ac_config_target in $ac_config_targets
 
54293
-do
 
54294
-  case $ac_config_target in
 
54295
-    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
 
54296
-    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
 
54297
-    "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
 
54298
-    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
 
54299
-    "totem.spec") CONFIG_FILES="$CONFIG_FILES totem.spec" ;;
 
54300
-    "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;;
 
54301
-    "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
 
54302
-    "src/plugins/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/Makefile" ;;
 
54303
-    "src/plugins/bemused/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/bemused/Makefile" ;;
 
54304
-    "src/plugins/screensaver/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/screensaver/Makefile" ;;
 
54305
-    "src/plugins/ontop/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/ontop/Makefile" ;;
 
54306
-    "src/plugins/galago/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/galago/Makefile" ;;
 
54307
-    "src/plugins/gromit/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/gromit/Makefile" ;;
 
54308
-    "src/plugins/lirc/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/lirc/Makefile" ;;
 
54309
-    "src/plugins/media-player-keys/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/media-player-keys/Makefile" ;;
 
54310
-    "src/plugins/mythtv/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/mythtv/Makefile" ;;
 
54311
-    "src/plugins/properties/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/properties/Makefile" ;;
 
54312
-    "src/plugins/sidebar-test/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/sidebar-test/Makefile" ;;
 
54313
-    "src/plugins/skipto/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/skipto/Makefile" ;;
 
54314
-    "src/plugins/sample-python/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/sample-python/Makefile" ;;
 
54315
-    "src/plugins/sample-vala/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/sample-vala/Makefile" ;;
 
54316
-    "src/plugins/thumbnail/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/thumbnail/Makefile" ;;
 
54317
-    "src/plugins/totem/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/totem/Makefile" ;;
 
54318
-    "src/plugins/tracker/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/tracker/Makefile" ;;
 
54319
-    "src/plugins/youtube/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/youtube/Makefile" ;;
 
54320
-    "src/plugins/pythonconsole/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/pythonconsole/Makefile" ;;
 
54321
-    "src/plugins/publish/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugins/publish/Makefile" ;;
 
54322
-    "src/backend/Makefile") CONFIG_FILES="$CONFIG_FILES src/backend/Makefile" ;;
 
54323
-    "browser-plugin/Makefile") CONFIG_FILES="$CONFIG_FILES browser-plugin/Makefile" ;;
 
54324
-    "data/Makefile") CONFIG_FILES="$CONFIG_FILES data/Makefile" ;;
 
54325
-    "data/totem.desktop.in.in") CONFIG_FILES="$CONFIG_FILES data/totem.desktop.in.in" ;;
 
54326
-    "data/icons/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/Makefile" ;;
 
54327
-    "data/icons/16x16/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/16x16/Makefile" ;;
 
54328
-    "data/icons/22x22/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/22x22/Makefile" ;;
 
54329
-    "data/icons/24x24/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/24x24/Makefile" ;;
 
54330
-    "data/icons/32x32/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/32x32/Makefile" ;;
 
54331
-    "data/icons/48x48/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/48x48/Makefile" ;;
 
54332
-    "data/icons/scalable/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/scalable/Makefile" ;;
 
54333
-    "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
 
54334
-    "help/Makefile") CONFIG_FILES="$CONFIG_FILES help/Makefile" ;;
 
54335
-    "help/bg/Makefile") CONFIG_FILES="$CONFIG_FILES help/bg/Makefile" ;;
 
54336
-    "bindings/Makefile") CONFIG_FILES="$CONFIG_FILES bindings/Makefile" ;;
 
54337
-    "bindings/python/Makefile") CONFIG_FILES="$CONFIG_FILES bindings/python/Makefile" ;;
 
54338
-    "bindings/vala/Makefile") CONFIG_FILES="$CONFIG_FILES bindings/vala/Makefile" ;;
 
54339
-    "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;;
 
54340
+# func_append var value
 
54341
+# Append VALUE to the end of shell variable VAR.
 
54342
+func_append ()
 
54343
+{
 
54344
+  eval "$1=\$$1\$2"
 
54345
+}
 
54346
 
 
54347
-  *) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
 
54348
-$as_echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
 
54349
-   { (exit 1); exit 1; }; };;
 
54350
+_LT_EOF
 
54351
+    ;;
 
54352
   esac
 
54353
-done
 
54354
 
 
54355
 
 
54356
-# If the user did not use the arguments to specify the items to instantiate,
 
54357
-# then the envvar interface is used.  Set only those that are not.
 
54358
-# We use the long form for the default assignment because of an extremely
 
54359
-# bizarre bug on SunOS 4.1.3.
 
54360
-if $ac_need_defaults; then
 
54361
-  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
 
54362
-  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
 
54363
-  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
 
54364
-fi
 
54365
+  sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \
 
54366
+    || (rm -f "$cfgfile"; exit 1)
 
54367
 
 
54368
-# Have a temporary directory for convenience.  Make it in the build tree
 
54369
-# simply because there is no reason against having it here, and in addition,
 
54370
-# creating and moving files from /tmp can sometimes cause problems.
 
54371
-# Hook for its removal unless debugging.
 
54372
-# Note that there is a small window in which the directory will not be cleaned:
 
54373
-# after its creation but before its name has been assigned to `$tmp'.
 
54374
-$debug ||
 
54375
-{
 
54376
-  tmp=
 
54377
-  trap 'exit_status=$?
 
54378
-  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
 
54379
-' 0
 
54380
-  trap '{ (exit 1); exit 1; }' 1 2 13 15
 
54381
-}
 
54382
-# Create a (secure) tmp directory for tmp files.
 
54383
+  mv -f "$cfgfile" "$ofile" ||
 
54384
+    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
 
54385
+  chmod +x "$ofile"
 
54386
+
 
54387
+
 
54388
+    cat <<_LT_EOF >> "$ofile"
 
54389
+
 
54390
+# ### BEGIN LIBTOOL TAG CONFIG: CXX
 
54391
 
 
54392
-{
 
54393
-  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
 
54394
-  test -n "$tmp" && test -d "$tmp"
 
54395
-}  ||
 
54396
-{
 
54397
-  tmp=./conf$$-$RANDOM
 
54398
-  (umask 077 && mkdir "$tmp")
 
54399
-} ||
 
54400
-{
 
54401
-   $as_echo "$as_me: cannot create a temporary directory in ." >&2
 
54402
-   { (exit 1); exit 1; }
 
54403
-}
 
54404
+# The linker used to build libraries.
 
54405
+LD=$lt_LD_CXX
 
54406
 
 
54407
-# Set up the scripts for CONFIG_FILES section.
 
54408
-# No need to generate them if there are no CONFIG_FILES.
 
54409
-# This happens for instance with `./config.status config.h'.
 
54410
-if test -n "$CONFIG_FILES"; then
 
54411
+# Commands used to build an old-style archive.
 
54412
+old_archive_cmds=$lt_old_archive_cmds_CXX
 
54413
 
 
54414
+# A language specific compiler.
 
54415
+CC=$lt_compiler_CXX
 
54416
 
 
54417
-ac_cr='
 
 
b"'"
 
54418
-ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
 
54419
-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
 
54420
-  ac_cs_awk_cr='\\r'
 
54421
-else
 
54422
-  ac_cs_awk_cr=$ac_cr
 
54423
-fi
 
54424
+# Is the compiler the GNU compiler?
 
54425
+with_gcc=$GCC_CXX
 
54426
 
 
54427
-echo 'BEGIN {' >"$tmp/subs1.awk" &&
 
54428
-_ACEOF
 
54429
+# Compiler flag to turn off builtin functions.
 
54430
+no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX
 
54431
 
 
54432
+# How to pass a linker flag through the compiler.
 
54433
+wl=$lt_lt_prog_compiler_wl_CXX
 
54434
 
 
54435
-{
 
54436
-  echo "cat >conf$$subs.awk <<_ACEOF" &&
 
54437
-  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
 
54438
-  echo "_ACEOF"
 
54439
-} >conf$$subs.sh ||
 
54440
-  { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
 
54441
-$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
 
54442
-   { (exit 1); exit 1; }; }
 
54443
-ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
 
54444
-ac_delim='%!_!# '
 
54445
-for ac_last_try in false false false false false :; do
 
54446
-  . ./conf$$subs.sh ||
 
54447
-    { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
 
54448
-$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
 
54449
-   { (exit 1); exit 1; }; }
 
54450
+# Additional compiler flags for building library objects.
 
54451
+pic_flag=$lt_lt_prog_compiler_pic_CXX
 
54452
 
 
54453
-  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
 
54454
-  if test $ac_delim_n = $ac_delim_num; then
 
54455
-    break
 
54456
-  elif $ac_last_try; then
 
54457
-    { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
 
54458
-$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
 
54459
-   { (exit 1); exit 1; }; }
 
54460
-  else
 
54461
-    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
 
54462
-  fi
 
54463
-done
 
54464
-rm -f conf$$subs.sh
 
54465
+# Compiler flag to prevent dynamic linking.
 
54466
+link_static_flag=$lt_lt_prog_compiler_static_CXX
 
54467
 
 
54468
-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
54469
-cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
 
54470
-_ACEOF
 
54471
-sed -n '
 
54472
-h
 
54473
-s/^/S["/; s/!.*/"]=/
 
54474
-p
 
54475
-g
 
54476
-s/^[^!]*!//
 
54477
-:repl
 
54478
-t repl
 
54479
-s/'"$ac_delim"'$//
 
54480
-t delim
 
54481
-:nl
 
54482
-h
 
54483
-s/\(.\{148\}\).*/\1/
 
54484
-t more1
 
54485
-s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
 
54486
-p
 
54487
-n
 
54488
-b repl
 
54489
-:more1
 
54490
-s/["\\]/\\&/g; s/^/"/; s/$/"\\/
 
54491
-p
 
54492
-g
 
54493
-s/.\{148\}//
 
54494
-t nl
 
54495
-:delim
 
54496
-h
 
54497
-s/\(.\{148\}\).*/\1/
 
54498
-t more2
 
54499
-s/["\\]/\\&/g; s/^/"/; s/$/"/
 
54500
-p
 
54501
-b
 
54502
-:more2
 
54503
-s/["\\]/\\&/g; s/^/"/; s/$/"\\/
 
54504
-p
 
54505
-g
 
54506
-s/.\{148\}//
 
54507
-t delim
 
54508
-' <conf$$subs.awk | sed '
 
54509
-/^[^""]/{
 
54510
-  N
 
54511
-  s/\n//
 
54512
-}
 
54513
-' >>$CONFIG_STATUS || ac_write_fail=1
 
54514
-rm -f conf$$subs.awk
 
54515
-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
54516
-_ACAWK
 
54517
-cat >>"\$tmp/subs1.awk" <<_ACAWK &&
 
54518
-  for (key in S) S_is_set[key] = 1
 
54519
-  FS = ""
 
54520
+# Does compiler simultaneously support -c and -o options?
 
54521
+compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX
 
54522
 
 
54523
-}
 
54524
-{
 
54525
-  line = $ 0
 
54526
-  nfields = split(line, field, "@")
 
54527
-  substed = 0
 
54528
-  len = length(field[1])
 
54529
-  for (i = 2; i < nfields; i++) {
 
54530
-    key = field[i]
 
54531
-    keylen = length(key)
 
54532
-    if (S_is_set[key]) {
 
54533
-      value = S[key]
 
54534
-      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
 
54535
-      len += length(value) + length(field[++i])
 
54536
-      substed = 1
 
54537
-    } else
 
54538
-      len += 1 + keylen
 
54539
-  }
 
54540
+# Whether or not to add -lc for building shared libraries.
 
54541
+build_libtool_need_lc=$archive_cmds_need_lc_CXX
 
54542
 
 
54543
-  print line
 
54544
-}
 
54545
+# Whether or not to disallow shared libs when runtime libs are static.
 
54546
+allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX
 
54547
 
 
54548
-_ACAWK
 
54549
-_ACEOF
 
54550
-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
54551
-if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
 
54552
-  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
 
54553
-else
 
54554
-  cat
 
54555
-fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
 
54556
-  || { { $as_echo "$as_me:$LINENO: error: could not setup config files machinery" >&5
 
54557
-$as_echo "$as_me: error: could not setup config files machinery" >&2;}
 
54558
-   { (exit 1); exit 1; }; }
 
54559
-_ACEOF
 
54560
+# Compiler flag to allow reflexive dlopens.
 
54561
+export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX
 
54562
 
38309
54563
-# VPATH may cause trouble with some makes, so we remove $(srcdir),
38310
54564
-# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
38311
54565
-# trailing colons and then remove the whole line if VPATH becomes empty
38320
54574
-s/^[^=]*=[      ]*$//
38321
54575
-}'
38322
54576
-fi
38323
 
+# If ld is used when linking, flag to hardcode \$libdir into a binary
38324
 
+# during linking.  This must work even if \$libdir does not exist.
38325
 
+hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
 
54577
+# Compiler flag to generate shared objects directly from archives.
 
54578
+whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX
38326
54579
 
38327
 
-cat >>$CONFIG_STATUS <<\_ACEOF
 
54580
-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
38328
54581
-fi # test -n "$CONFIG_FILES"
38329
 
+# Whether we need a single "-rpath" flag with a separated argument.
38330
 
+hardcode_libdir_separator=$lt_hardcode_libdir_separator
38331
 
 
38332
 
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
38333
 
+# DIR into the resulting binary.
38334
 
+hardcode_direct=$hardcode_direct
38335
 
 
38336
 
-for ac_tag in  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS
 
54582
+# Whether the compiler copes with passing no objects directly.
 
54583
+compiler_needs_object=$lt_compiler_needs_object_CXX
 
54584
 
 
54585
-# Set up the scripts for CONFIG_HEADERS section.
 
54586
-# No need to generate them if there are no CONFIG_HEADERS.
 
54587
-# This happens for instance with `./config.status Makefile'.
 
54588
-if test -n "$CONFIG_HEADERS"; then
 
54589
-cat >"$tmp/defines.awk" <<\_ACAWK ||
 
54590
-BEGIN {
 
54591
-_ACEOF
 
54592
+# Create an old-style archive from a shared archive.
 
54593
+old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX
 
54594
 
 
54595
-# Transform confdefs.h into an awk script `defines.awk', embedded as
 
54596
-# here-document in config.status, that substitutes the proper values into
 
54597
-# config.h.in to produce config.h.
 
54598
+# Create a temporary old-style archive to link instead of a shared archive.
 
54599
+old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX
 
54600
 
 
54601
-# Create a delimiter string that does not exist in confdefs.h, to ease
 
54602
-# handling of long lines.
 
54603
-ac_delim='%!_!# '
 
54604
-for ac_last_try in false false :; do
 
54605
-  ac_t=`sed -n "/$ac_delim/p" confdefs.h`
 
54606
-  if test -z "$ac_t"; then
 
54607
-    break
 
54608
-  elif $ac_last_try; then
 
54609
-    { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_HEADERS" >&5
 
54610
-$as_echo "$as_me: error: could not make $CONFIG_HEADERS" >&2;}
 
54611
-   { (exit 1); exit 1; }; }
 
54612
-  else
 
54613
-    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
 
54614
-  fi
 
54615
-done
 
54616
+# Commands used to build a shared archive.
 
54617
+archive_cmds=$lt_archive_cmds_CXX
 
54618
+archive_expsym_cmds=$lt_archive_expsym_cmds_CXX
 
54619
 
 
54620
-# For the awk script, D is an array of macro values keyed by name,
 
54621
-# likewise P contains macro parameters if any.  Preserve backslash
 
54622
-# newline sequences.
 
54623
+# Commands used to build a loadable module if different from building
 
54624
+# a shared archive.
 
54625
+module_cmds=$lt_module_cmds_CXX
 
54626
+module_expsym_cmds=$lt_module_expsym_cmds_CXX
 
54627
 
 
54628
-ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
 
54629
-sed -n '
 
54630
-s/.\{148\}/&'"$ac_delim"'/g
 
54631
-t rset
 
54632
-:rset
 
54633
-s/^[    ]*#[    ]*define[       ][      ]*/ /
 
54634
-t def
 
54635
-d
 
54636
-:def
 
54637
-s/\\$//
 
54638
-t bsnl
 
54639
-s/["\\]/\\&/g
 
54640
-s/^ \('"$ac_word_re"'\)\(([^()]*)\)[    ]*\(.*\)/P["\1"]="\2"\
 
54641
-D["\1"]=" \3"/p
 
54642
-s/^ \('"$ac_word_re"'\)[        ]*\(.*\)/D["\1"]=" \2"/p
 
54643
-d
 
54644
-:bsnl
 
54645
-s/["\\]/\\&/g
 
54646
-s/^ \('"$ac_word_re"'\)\(([^()]*)\)[    ]*\(.*\)/P["\1"]="\2"\
 
54647
-D["\1"]=" \3\\\\\\n"\\/p
 
54648
-t cont
 
54649
-s/^ \('"$ac_word_re"'\)[        ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p
 
54650
-t cont
 
54651
-d
 
54652
-:cont
 
54653
-n
 
54654
-s/.\{148\}/&'"$ac_delim"'/g
 
54655
-t clear
 
54656
-:clear
 
54657
-s/\\$//
 
54658
-t bsnlc
 
54659
-s/["\\]/\\&/g; s/^/"/; s/$/"/p
 
54660
-d
 
54661
-:bsnlc
 
54662
-s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p
 
54663
-b cont
 
54664
-' <confdefs.h | sed '
 
54665
-s/'"$ac_delim"'/"\\\
 
54666
-"/g' >>$CONFIG_STATUS || ac_write_fail=1
 
54667
-
 
54668
-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
54669
-  for (key in D) D_is_set[key] = 1
 
54670
-  FS = ""
 
54671
-}
 
54672
-/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ {
 
54673
-  line = \$ 0
 
54674
-  split(line, arg, " ")
 
54675
-  if (arg[1] == "#") {
 
54676
-    defundef = arg[2]
 
54677
-    mac1 = arg[3]
 
54678
-  } else {
 
54679
-    defundef = substr(arg[1], 2)
 
54680
-    mac1 = arg[2]
 
54681
-  }
 
54682
-  split(mac1, mac2, "(") #)
 
54683
-  macro = mac2[1]
 
54684
-  prefix = substr(line, 1, index(line, defundef) - 1)
 
54685
-  if (D_is_set[macro]) {
 
54686
-    # Preserve the white space surrounding the "#".
 
54687
-    print prefix "define", macro P[macro] D[macro]
 
54688
-    next
 
54689
-  } else {
 
54690
-    # Replace #undef with comments.  This is necessary, for example,
 
54691
-    # in the case of _POSIX_SOURCE, which is predefined and required
 
54692
-    # on some systems where configure will not decide to define it.
 
54693
-    if (defundef == "undef") {
 
54694
-      print "/*", prefix defundef, macro, "*/"
 
54695
-      next
 
54696
-    }
 
54697
-  }
 
54698
-}
 
54699
-{ print }
 
54700
-_ACAWK
 
54701
-_ACEOF
 
54702
-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
54703
-  { { $as_echo "$as_me:$LINENO: error: could not setup config headers machinery" >&5
 
54704
-$as_echo "$as_me: error: could not setup config headers machinery" >&2;}
 
54705
-   { (exit 1); exit 1; }; }
 
54706
-fi # test -n "$CONFIG_HEADERS"
 
54707
+# Whether we are building with GNU ld or not.
 
54708
+with_gnu_ld=$lt_with_gnu_ld_CXX
 
54709
 
 
54710
+# Flag that allows shared libraries with undefined symbols to be built.
 
54711
+allow_undefined_flag=$lt_allow_undefined_flag_CXX
 
54712
 
 
54713
-eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS"
 
54714
-shift
 
54715
-for ac_tag
38337
54716
-do
38338
54717
-  case $ac_tag in
38339
54718
-  :[FHLC]) ac_mode=$ac_tag; continue;;
38340
54719
-  esac
38341
54720
-  case $ac_mode$ac_tag in
38342
54721
-  :[FHL]*:*);;
38343
 
-  :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
38344
 
-echo "$as_me: error: Invalid tag $ac_tag." >&2;}
 
54722
-  :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5
 
54723
-$as_echo "$as_me: error: invalid tag $ac_tag" >&2;}
38345
54724
-   { (exit 1); exit 1; }; };;
38346
54725
-  :[FH]-) ac_tag=-:-;;
38347
54726
-  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
38353
54732
-  shift
38354
54733
-  ac_file=$1
38355
54734
-  shift
38356
 
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
38357
 
+# DIR into the resulting binary and the resulting library dependency is
38358
 
+# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
38359
 
+# library is relocated.
38360
 
+hardcode_direct_absolute=$hardcode_direct_absolute
 
54735
+# Flag that enforces no undefined symbols.
 
54736
+no_undefined_flag=$lt_no_undefined_flag_CXX
38361
54737
 
38362
54738
-  case $ac_mode in
38363
54739
-  :L) ac_source=$1;;
38375
54751
-          [\\/$]*) false;;
38376
54752
-          *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
38377
54753
-          esac ||
38378
 
-          { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
38379
 
-echo "$as_me: error: cannot find input file: $ac_f" >&2;}
 
54754
-          { { $as_echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
 
54755
-$as_echo "$as_me: error: cannot find input file: $ac_f" >&2;}
38380
54756
-   { (exit 1); exit 1; }; };;
38381
54757
-      esac
38382
 
-      ac_file_inputs="$ac_file_inputs $ac_f"
 
54758
-      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
 
54759
-      ac_file_inputs="$ac_file_inputs '$ac_f'"
38383
54760
-    done
38384
 
+# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
38385
 
+# into the resulting binary.
38386
 
+hardcode_minus_L=$hardcode_minus_L
 
54761
+# Flag to hardcode \$libdir into a binary during linking.
 
54762
+# This must work even if \$libdir does not exist
 
54763
+hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX
38387
54764
 
38388
54765
-    # Let's still pretend it is `configure' which instantiates (i.e., don't
38389
54766
-    # use $as_me), people would be surprised to read:
38390
54767
-    #    /* config.h.  Generated by config.status.  */
38391
 
-    configure_input="Generated from "`IFS=:
38392
 
-         echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure."
 
54768
-    configure_input='Generated from '`
 
54769
-         $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
 
54770
-       `' by configure.'
38393
54771
-    if test x"$ac_file" != x-; then
38394
54772
-      configure_input="$ac_file.  $configure_input"
38395
 
-      { echo "$as_me:$LINENO: creating $ac_file" >&5
38396
 
-echo "$as_me: creating $ac_file" >&6;}
 
54773
-      { $as_echo "$as_me:$LINENO: creating $ac_file" >&5
 
54774
-$as_echo "$as_me: creating $ac_file" >&6;}
38397
54775
-    fi
38398
 
+# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
38399
 
+# into the resulting binary.
38400
 
+hardcode_shlibpath_var=$hardcode_shlibpath_var
 
54776
-    # Neutralize special characters interpreted by sed in replacement strings.
 
54777
-    case $configure_input in #(
 
54778
-    *\&* | *\|* | *\\* )
 
54779
-       ac_sed_conf_input=`$as_echo "$configure_input" |
 
54780
-       sed 's/[\\\\&|]/\\\\&/g'`;; #(
 
54781
-    *) ac_sed_conf_input=$configure_input;;
 
54782
-    esac
 
54783
+# If ld is used when linking, flag to hardcode \$libdir into a binary
 
54784
+# during linking.  This must work even if \$libdir does not exist.
 
54785
+hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX
38401
54786
 
38402
54787
-    case $ac_tag in
38403
 
-    *:-:* | *:-) cat >"$tmp/stdin";;
 
54788
-    *:-:* | *:-) cat >"$tmp/stdin" \
 
54789
-      || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
 
54790
-$as_echo "$as_me: error: could not create $ac_file" >&2;}
 
54791
-   { (exit 1); exit 1; }; } ;;
38404
54792
-    esac
38405
 
+# Set to "yes" if building a shared library automatically hardcodes DIR
38406
 
+# into the library and all subsequent libraries and executables linked
38407
 
+# against it.
38408
 
+hardcode_automatic=$hardcode_automatic
38409
 
+
38410
 
+# Set to yes if linker adds runtime paths of dependent libraries
38411
 
+# to runtime path list.
38412
 
+inherit_rpath=$inherit_rpath
38413
 
+
38414
 
+# Whether libtool must link a program against all its dependency libraries.
38415
 
+link_all_deplibs=$link_all_deplibs
38416
 
+
38417
 
+# Fix the shell variable \$srcfile for the compiler.
38418
 
+fix_srcfile_path=$lt_fix_srcfile_path
38419
 
+
38420
 
+# Set to "yes" if exported symbols are required.
38421
 
+always_export_symbols=$always_export_symbols
38422
 
+
38423
 
+# The commands to list exported symbols.
38424
 
+export_symbols_cmds=$lt_export_symbols_cmds
38425
 
+
38426
 
+# Symbols that should not be listed in the preloaded symbols.
38427
 
+exclude_expsyms=$lt_exclude_expsyms
38428
 
+
38429
 
+# Symbols that must always be exported.
38430
 
+include_expsyms=$lt_include_expsyms
38431
 
+
38432
 
+# Commands necessary for linking programs (against libraries) with templates.
38433
 
+prelink_cmds=$lt_prelink_cmds
38434
 
+
38435
 
+# Specify filename containing input files.
38436
 
+file_list_spec=$lt_file_list_spec
38437
 
+
38438
 
+# How to hardcode a shared library path into an executable.
38439
 
+hardcode_action=$hardcode_action
38440
 
+
38441
 
+# The directories searched by this compiler when creating a shared library.
38442
 
+compiler_lib_search_dirs=$lt_compiler_lib_search_dirs
38443
 
+
38444
 
+# Dependencies to place before and after the objects being linked to
38445
 
+# create a shared library.
38446
 
+predep_objects=$lt_predep_objects
38447
 
+postdep_objects=$lt_postdep_objects
38448
 
+predeps=$lt_predeps
38449
 
+postdeps=$lt_postdeps
38450
 
+
38451
 
+# The library search path used internally by the compiler when linking
38452
 
+# a shared library.
38453
 
+compiler_lib_search_path=$lt_compiler_lib_search_path
38454
 
+
38455
 
+# ### END LIBTOOL CONFIG
38456
 
+
38457
 
+_LT_EOF
38458
 
+
38459
 
+  case $host_os in
38460
 
+  aix3*)
38461
 
+    cat <<\_LT_EOF >> "$cfgfile"
38462
 
+# AIX sometimes has problems with the GCC collect2 program.  For some
38463
 
+# reason, if we set the COLLECT_NAMES environment variable, the problems
38464
 
+# vanish in a puff of smoke.
38465
 
+if test "X${COLLECT_NAMES+set}" != Xset; then
38466
 
+  COLLECT_NAMES=
38467
 
+  export COLLECT_NAMES
38468
 
+fi
38469
 
+_LT_EOF
38470
 
     ;;
38471
 
   esac
 
54793
-    ;;
 
54794
-  esac
 
54795
+# Whether we need a single "-rpath" flag with a separated argument.
 
54796
+hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX
38472
54797
 
38473
54798
-  ac_dir=`$as_dirname -- "$ac_file" ||
38474
54799
-$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
38475
54800
-        X"$ac_file" : 'X\(//\)[^/]' \| \
38476
54801
-        X"$ac_file" : 'X\(//\)$' \| \
38477
54802
-        X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
38478
 
-echo X"$ac_file" |
 
54803
-$as_echo X"$ac_file" |
38479
54804
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
38480
54805
-           s//\1/
38481
54806
-           q
38501
54826
-    as_dirs=
38502
54827
-    while :; do
38503
54828
-      case $as_dir in #(
38504
 
-      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
 
54829
-      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
38505
54830
-      *) as_qdir=$as_dir;;
38506
 
+
38507
 
+ltmain="$ac_aux_dir/ltmain.sh"
38508
 
+
38509
 
+
38510
 
+  # We use sed instead of cat because bash on DJGPP gets confused if
38511
 
+  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
38512
 
+  # text mode, it properly converts lines to CR/LF.  This bash problem
38513
 
+  # is reportedly fixed, but why not run on old versions too?
38514
 
+  sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \
38515
 
+    || (rm -f "$cfgfile"; exit 1)
38516
 
+
38517
 
+  case $xsi_shell in
38518
 
+  yes)
38519
 
+    cat << \_LT_EOF >> "$cfgfile"
38520
 
+
38521
 
+# func_dirname file append nondir_replacement
38522
 
+# Compute the dirname of FILE.  If nonempty, add APPEND to the result,
38523
 
+# otherwise set result to NONDIR_REPLACEMENT.
38524
 
+func_dirname ()
38525
 
+{
38526
 
+  case ${1} in
38527
 
+    */*) func_dirname_result="${1%/*}${2}" ;;
38528
 
+    *  ) func_dirname_result="${3}" ;;
38529
 
       esac
 
54831
-      esac
38530
54832
-      as_dirs="'$as_qdir' $as_dirs"
38531
54833
-      as_dir=`$as_dirname -- "$as_dir" ||
38532
54834
-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
38533
54835
-        X"$as_dir" : 'X\(//\)[^/]' \| \
38534
54836
-        X"$as_dir" : 'X\(//\)$' \| \
38535
54837
-        X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
38536
 
-echo X"$as_dir" |
 
54838
-$as_echo X"$as_dir" |
38537
54839
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
38538
54840
-           s//\1/
38539
54841
-           q
38554
54856
-      test -d "$as_dir" && break
38555
54857
-    done
38556
54858
-    test -z "$as_dirs" || eval "mkdir $as_dirs"
38557
 
-  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
38558
 
-echo "$as_me: error: cannot create directory $as_dir" >&2;}
 
54859
-  } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
 
54860
-$as_echo "$as_me: error: cannot create directory $as_dir" >&2;}
38559
54861
-   { (exit 1); exit 1; }; }; }
38560
54862
-  ac_builddir=.
38561
 
+}
 
54863
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
 
54864
+# DIR into the resulting binary.
 
54865
+hardcode_direct=$hardcode_direct_CXX
38562
54866
 
38563
54867
-case "$ac_dir" in
38564
54868
-.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
38565
54869
-*)
38566
 
-  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
 
54870
-  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
38567
54871
-  # A ".." for each directory in $ac_dir_suffix.
38568
 
-  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
 
54872
-  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
38569
54873
-  case $ac_top_builddir_sub in
38570
54874
-  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
38571
54875
-  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
38575
54879
-ac_abs_builddir=$ac_pwd$ac_dir_suffix
38576
54880
-# for backward compatibility:
38577
54881
-ac_top_builddir=$ac_top_build_prefix
38578
 
+# func_basename file
38579
 
+func_basename ()
38580
 
+{
38581
 
+  func_basename_result="${1##*/}"
38582
 
+}
 
54882
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
 
54883
+# DIR into the resulting binary and the resulting library dependency is
 
54884
+# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
 
54885
+# library is relocated.
 
54886
+hardcode_direct_absolute=$hardcode_direct_absolute_CXX
38583
54887
 
38584
54888
-case $srcdir in
38585
54889
-  .)  # We are building in place.
38596
54900
-    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
38597
54901
-esac
38598
54902
-ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
38599
 
+# func_dirname_and_basename file append nondir_replacement
38600
 
+# perform func_basename and func_dirname in a single function
38601
 
+# call:
38602
 
+#   dirname:  Compute the dirname of FILE.  If nonempty,
38603
 
+#             add APPEND to the result, otherwise set result
38604
 
+#             to NONDIR_REPLACEMENT.
38605
 
+#             value returned in "$func_dirname_result"
38606
 
+#   basename: Compute filename of FILE.
38607
 
+#             value retuned in "$func_basename_result"
38608
 
+# Implementation must be kept synchronized with func_dirname
38609
 
+# and func_basename. For efficiency, we do not delegate to
38610
 
+# those functions but instead duplicate the functionality here.
38611
 
+func_dirname_and_basename ()
38612
 
+{
38613
 
+  case ${1} in
38614
 
+    */*) func_dirname_result="${1%/*}${2}" ;;
38615
 
+    *  ) func_dirname_result="${3}" ;;
38616
 
+  esac
38617
 
+  func_basename_result="${1##*/}"
38618
 
+}
 
54903
+# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
 
54904
+# into the resulting binary.
 
54905
+hardcode_minus_L=$hardcode_minus_L_CXX
 
54906
+
 
54907
+# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
 
54908
+# into the resulting binary.
 
54909
+hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX
 
54910
+
 
54911
+# Set to "yes" if building a shared library automatically hardcodes DIR
 
54912
+# into the library and all subsequent libraries and executables linked
 
54913
+# against it.
 
54914
+hardcode_automatic=$hardcode_automatic_CXX
 
54915
+
 
54916
+# Set to yes if linker adds runtime paths of dependent libraries
 
54917
+# to runtime path list.
 
54918
+inherit_rpath=$inherit_rpath_CXX
 
54919
+
 
54920
+# Whether libtool must link a program against all its dependency libraries.
 
54921
+link_all_deplibs=$link_all_deplibs_CXX
 
54922
+
 
54923
+# Fix the shell variable \$srcfile for the compiler.
 
54924
+fix_srcfile_path=$lt_fix_srcfile_path_CXX
 
54925
+
 
54926
+# Set to "yes" if exported symbols are required.
 
54927
+always_export_symbols=$always_export_symbols_CXX
38619
54928
 
38620
 
+# func_stripname prefix suffix name
38621
 
+# strip PREFIX and SUFFIX off of NAME.
38622
 
+# PREFIX and SUFFIX must not contain globbing or regex special
38623
 
+# characters, hashes, percent signs, but SUFFIX may contain a leading
38624
 
+# dot (in which case that matches only a dot).
38625
 
+func_stripname ()
38626
 
+{
38627
 
+  # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
38628
 
+  # positional parameters, so assign one to ordinary parameter first.
38629
 
+  func_stripname_result=${3}
38630
 
+  func_stripname_result=${func_stripname_result#"${1}"}
38631
 
+  func_stripname_result=${func_stripname_result%"${2}"}
38632
 
+}
 
54929
+# The commands to list exported symbols.
 
54930
+export_symbols_cmds=$lt_export_symbols_cmds_CXX
38633
54931
 
38634
54932
-  case $ac_mode in
38635
54933
-  :F)
38636
54934
-  #
38637
54935
-  # CONFIG_FILE
38638
54936
-  #
38639
 
+# func_opt_split
38640
 
+func_opt_split ()
38641
 
+{
38642
 
+  func_opt_split_opt=${1%%=*}
38643
 
+  func_opt_split_arg=${1#*=}
38644
 
+}
 
54937
+# Symbols that should not be listed in the preloaded symbols.
 
54938
+exclude_expsyms=$lt_exclude_expsyms_CXX
38645
54939
 
38646
54940
-  case $INSTALL in
38647
54941
-  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
38648
54942
-  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
38649
 
+# func_lo2o object
38650
 
+func_lo2o ()
38651
 
+{
38652
 
+  case ${1} in
38653
 
+    *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
38654
 
+    *)    func_lo2o_result=${1} ;;
38655
 
   esac
 
54943
-  esac
38656
54944
-  ac_MKDIR_P=$MKDIR_P
38657
54945
-  case $MKDIR_P in
38658
54946
-  [\\/$]* | ?:[\\/]* ) ;;
38659
54947
-  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
38660
 
+}
38661
 
+
38662
 
+# func_xform libobj-or-source
38663
 
+func_xform ()
38664
 
+{
38665
 
+  func_xform_result=${1%.*}.lo
38666
 
+}
38667
 
+
38668
 
+# func_arith arithmetic-term...
38669
 
+func_arith ()
38670
 
+{
38671
 
+  func_arith_result=$(( $* ))
38672
 
+}
38673
 
+
38674
 
+# func_len string
38675
 
+# STRING may not start with a hyphen.
38676
 
+func_len ()
38677
 
+{
38678
 
+  func_len_result=${#1}
38679
 
+}
38680
 
+
38681
 
+_LT_EOF
38682
 
+    ;;
38683
 
+  *) # Bourne compatible functions.
38684
 
+    cat << \_LT_EOF >> "$cfgfile"
38685
 
+
38686
 
+# func_dirname file append nondir_replacement
38687
 
+# Compute the dirname of FILE.  If nonempty, add APPEND to the result,
38688
 
+# otherwise set result to NONDIR_REPLACEMENT.
38689
 
+func_dirname ()
38690
 
+{
38691
 
+  # Extract subdirectory from the argument.
38692
 
+  func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"`
38693
 
+  if test "X$func_dirname_result" = "X${1}"; then
38694
 
+    func_dirname_result="${3}"
38695
 
+  else
38696
 
+    func_dirname_result="$func_dirname_result${2}"
38697
 
+  fi
38698
 
+}
38699
 
+
38700
 
+# func_basename file
38701
 
+func_basename ()
38702
 
+{
38703
 
+  func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"`
38704
 
+}
38705
 
+
38706
 
+
38707
 
+# func_stripname prefix suffix name
38708
 
+# strip PREFIX and SUFFIX off of NAME.
38709
 
+# PREFIX and SUFFIX must not contain globbing or regex special
38710
 
+# characters, hashes, percent signs, but SUFFIX may contain a leading
38711
 
+# dot (in which case that matches only a dot).
38712
 
+# func_strip_suffix prefix name
38713
 
+func_stripname ()
38714
 
+{
38715
 
+  case ${2} in
38716
 
+    .*) func_stripname_result=`$ECHO "X${3}" \
38717
 
+           | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;;
38718
 
+    *)  func_stripname_result=`$ECHO "X${3}" \
38719
 
+           | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;;
38720
 
   esac
 
54948
-  esac
38721
54949
-_ACEOF
38722
 
+}
 
54950
+# Symbols that must always be exported.
 
54951
+include_expsyms=$lt_include_expsyms_CXX
38723
54952
 
38724
 
-cat >>$CONFIG_STATUS <<\_ACEOF
 
54953
-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
38725
54954
-# If the template does not know about datarootdir, expand it.
38726
54955
-# FIXME: This hack should be removed a few years after 2.60.
38727
54956
-ac_datarootdir_hack=; ac_datarootdir_seen=
38728
 
+# sed scripts:
38729
 
+my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q'
38730
 
+my_sed_long_arg='1s/^-[^=]*=//'
 
54957
+# Commands necessary for linking programs (against libraries) with templates.
 
54958
+prelink_cmds=$lt_prelink_cmds_CXX
38731
54959
 
38732
 
-case `sed -n '/datarootdir/ {
 
54960
-ac_sed_dataroot='
 
54961
-/datarootdir/ {
38733
54962
-  p
38734
54963
-  q
38735
 
+# func_opt_split
38736
 
+func_opt_split ()
38737
 
+{
38738
 
+  func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"`
38739
 
+  func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"`
38740
 
 }
 
54964
-}
38741
54965
-/@datadir@/p
38742
54966
-/@docdir@/p
38743
54967
-/@infodir@/p
38744
54968
-/@localedir@/p
38745
54969
-/@mandir@/p
38746
 
-' $ac_file_inputs` in
 
54970
-'
 
54971
-case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
38747
54972
-*datarootdir*) ac_datarootdir_seen=yes;;
38748
54973
-*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
38749
 
-  { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
38750
 
-echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
 
54974
-  { $as_echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
 
54975
-$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
38751
54976
-_ACEOF
38752
 
-cat >>$CONFIG_STATUS <<_ACEOF
 
54977
-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
38753
54978
-  ac_datarootdir_hack='
38754
54979
-  s&@datadir@&$datadir&g
38755
54980
-  s&@docdir@&$docdir&g
38757
54982
-  s&@localedir@&$localedir&g
38758
54983
-  s&@mandir@&$mandir&g
38759
54984
-    s&\\\${datarootdir}&$datarootdir&g' ;;
38760
 
+
38761
 
+# func_lo2o object
38762
 
+func_lo2o ()
38763
 
+{
38764
 
+  func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"`
38765
 
+}
38766
 
+
38767
 
+# func_xform libobj-or-source
38768
 
+func_xform ()
38769
 
+{
38770
 
+  func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[^.]*$/.lo/'`
38771
 
+}
38772
 
+
38773
 
+# func_arith arithmetic-term...
38774
 
+func_arith ()
38775
 
+{
38776
 
+  func_arith_result=`expr "$@"`
38777
 
+}
38778
 
+
38779
 
+# func_len string
38780
 
+# STRING may not start with a hyphen.
38781
 
+func_len ()
38782
 
+{
38783
 
+  func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len`
38784
 
+}
38785
 
+
38786
 
+_LT_EOF
38787
 
 esac
 
54985
-esac
38788
54986
-_ACEOF
 
54987
+# Specify filename containing input files.
 
54988
+file_list_spec=$lt_file_list_spec_CXX
38789
54989
 
38790
54990
-# Neutralize VPATH when `$srcdir' = `.'.
38791
54991
-# Shell code in configure.ac might set extrasub.
38792
54992
-# FIXME: do we really want to maintain this feature?
38793
 
-cat >>$CONFIG_STATUS <<_ACEOF
38794
 
-  sed "$ac_vpsub
 
54993
-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
54994
-ac_sed_extra="$ac_vpsub
38795
54995
-$extrasub
38796
54996
-_ACEOF
38797
 
-cat >>$CONFIG_STATUS <<\_ACEOF
 
54997
-cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
38798
54998
-:t
38799
54999
-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
38800
 
-s&@configure_input@&$configure_input&;t t
 
55000
-s|@configure_input@|$ac_sed_conf_input|;t t
38801
55001
-s&@top_builddir@&$ac_top_builddir_sub&;t t
 
55002
-s&@top_build_prefix@&$ac_top_build_prefix&;t t
38802
55003
-s&@srcdir@&$ac_srcdir&;t t
38803
55004
-s&@abs_srcdir@&$ac_abs_srcdir&;t t
38804
55005
-s&@top_srcdir@&$ac_top_srcdir&;t t
38809
55010
-s&@INSTALL@&$ac_INSTALL&;t t
38810
55011
-s&@MKDIR_P@&$ac_MKDIR_P&;t t
38811
55012
-$ac_datarootdir_hack
38812
 
-" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" | sed -f "$tmp/subs-3.sed" >$tmp/out
38813
 
+case $lt_shell_append in
38814
 
+  yes)
38815
 
+    cat << \_LT_EOF >> "$cfgfile"
 
55013
-"
 
55014
-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
 
55015
-  || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
 
55016
-$as_echo "$as_me: error: could not create $ac_file" >&2;}
 
55017
-   { (exit 1); exit 1; }; }
 
55018
+# How to hardcode a shared library path into an executable.
 
55019
+hardcode_action=$hardcode_action_CXX
38816
55020
 
38817
55021
-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
38818
55022
-  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
38819
55023
-  { ac_out=`sed -n '/^[         ]*datarootdir[  ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
38820
 
-  { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 
55024
-  { $as_echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
38821
55025
-which seems to be undefined.  Please make sure it is defined." >&5
38822
 
-echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 
55026
-$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
38823
55027
-which seems to be undefined.  Please make sure it is defined." >&2;}
38824
 
+# func_append var value
38825
 
+# Append VALUE to the end of shell variable VAR.
38826
 
+func_append ()
38827
 
+{
38828
 
+  eval "$1+=\$2"
38829
 
+}
38830
 
+_LT_EOF
38831
 
+    ;;
38832
 
+  *)
38833
 
+    cat << \_LT_EOF >> "$cfgfile"
 
55028
+# The directories searched by this compiler when creating a shared library.
 
55029
+compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX
38834
55030
 
38835
55031
-  rm -f "$tmp/stdin"
38836
55032
-  case $ac_file in
38837
 
-  -) cat "$tmp/out"; rm -f "$tmp/out";;
38838
 
-  *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
38839
 
-  esac
38840
 
+# func_append var value
38841
 
+# Append VALUE to the end of shell variable VAR.
38842
 
+func_append ()
38843
 
+{
38844
 
+  eval "$1=\$$1\$2"
38845
 
+}
38846
 
+
38847
 
+_LT_EOF
38848
 
  ;;
 
55033
-  -) cat "$tmp/out" && rm -f "$tmp/out";;
 
55034
-  *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
 
55035
-  esac \
 
55036
-  || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
 
55037
-$as_echo "$as_me: error: could not create $ac_file" >&2;}
 
55038
-   { (exit 1); exit 1; }; }
 
55039
- ;;
38849
55040
-  :H)
38850
55041
-  #
38851
55042
-  # CONFIG_HEADER
38852
55043
-  #
38853
 
-_ACEOF
38854
 
+  esac
38855
 
 
38856
 
-# Transform confdefs.h into a sed script `conftest.defines', that
38857
 
-# substitutes the proper values into config.h.in to produce config.h.
38858
 
-rm -f conftest.defines conftest.tail
38859
 
-# First, append a space to every undef/define line, to ease matching.
38860
 
-echo 's/$/ /' >conftest.defines
38861
 
-# Then, protect against being on the right side of a sed subst, or in
38862
 
-# an unquoted here document, in config.status.  If some macros were
38863
 
-# called several times there might be several #defines for the same
38864
 
-# symbol, which is useless.  But do not sort them, since the last
38865
 
-# AC_DEFINE must be honored.
38866
 
-ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
38867
 
-# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where
38868
 
-# NAME is the cpp macro being defined, VALUE is the value it is being given.
38869
 
-# PARAMS is the parameter list in the macro definition--in most cases, it's
38870
 
-# just an empty string.
38871
 
-ac_dA='s,^\\([  #]*\\)[^        ]*\\([  ]*'
38872
 
-ac_dB='\\)[     (].*,\\1define\\2'
38873
 
-ac_dC=' '
38874
 
-ac_dD=' ,'
38875
 
 
38876
 
-uniq confdefs.h |
38877
 
-  sed -n '
38878
 
-       t rset
38879
 
-       :rset
38880
 
-       s/^[     ]*#[    ]*define[       ][      ]*//
38881
 
-       t ok
38882
 
-       d
38883
 
-       :ok
38884
 
-       s/[\\&,]/\\&/g
38885
 
-       s/^\('"$ac_word_re"'\)\(([^()]*)\)[      ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p
38886
 
-       s/^\('"$ac_word_re"'\)[  ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p
38887
 
-  ' >>conftest.defines
38888
 
+  sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \
38889
 
+    || (rm -f "$cfgfile"; exit 1)
38890
 
+
38891
 
+  mv -f "$cfgfile" "$ofile" ||
38892
 
+    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
38893
 
+  chmod +x "$ofile"
38894
 
+
38895
 
+
38896
 
+    cat <<_LT_EOF >> "$ofile"
38897
 
+
38898
 
+# ### BEGIN LIBTOOL TAG CONFIG: CXX
38899
 
+
38900
 
+# The linker used to build libraries.
38901
 
+LD=$lt_LD_CXX
38902
 
+
38903
 
+# Commands used to build an old-style archive.
38904
 
+old_archive_cmds=$lt_old_archive_cmds_CXX
38905
 
+
38906
 
+# A language specific compiler.
38907
 
+CC=$lt_compiler_CXX
38908
 
+
38909
 
+# Is the compiler the GNU compiler?
38910
 
+with_gcc=$GCC_CXX
38911
 
+
38912
 
+# Compiler flag to turn off builtin functions.
38913
 
+no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX
38914
 
+
38915
 
+# How to pass a linker flag through the compiler.
38916
 
+wl=$lt_lt_prog_compiler_wl_CXX
38917
 
+
38918
 
+# Additional compiler flags for building library objects.
38919
 
+pic_flag=$lt_lt_prog_compiler_pic_CXX
38920
 
+
38921
 
+# Compiler flag to prevent dynamic linking.
38922
 
+link_static_flag=$lt_lt_prog_compiler_static_CXX
38923
 
+
38924
 
+# Does compiler simultaneously support -c and -o options?
38925
 
+compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX
38926
 
+
38927
 
+# Whether or not to add -lc for building shared libraries.
38928
 
+build_libtool_need_lc=$archive_cmds_need_lc_CXX
38929
 
+
38930
 
+# Whether or not to disallow shared libs when runtime libs are static.
38931
 
+allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX
38932
 
+
38933
 
+# Compiler flag to allow reflexive dlopens.
38934
 
+export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX
38935
 
+
38936
 
+# Compiler flag to generate shared objects directly from archives.
38937
 
+whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX
38938
 
+
38939
 
+# Whether the compiler copes with passing no objects directly.
38940
 
+compiler_needs_object=$lt_compiler_needs_object_CXX
38941
 
+
38942
 
+# Create an old-style archive from a shared archive.
38943
 
+old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX
38944
 
+
38945
 
+# Create a temporary old-style archive to link instead of a shared archive.
38946
 
+old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX
38947
 
+
38948
 
+# Commands used to build a shared archive.
38949
 
+archive_cmds=$lt_archive_cmds_CXX
38950
 
+archive_expsym_cmds=$lt_archive_expsym_cmds_CXX
38951
 
+
38952
 
+# Commands used to build a loadable module if different from building
38953
 
+# a shared archive.
38954
 
+module_cmds=$lt_module_cmds_CXX
38955
 
+module_expsym_cmds=$lt_module_expsym_cmds_CXX
38956
 
+
38957
 
+# Whether we are building with GNU ld or not.
38958
 
+with_gnu_ld=$lt_with_gnu_ld_CXX
38959
 
+
38960
 
+# Flag that allows shared libraries with undefined symbols to be built.
38961
 
+allow_undefined_flag=$lt_allow_undefined_flag_CXX
38962
 
+
38963
 
+# Flag that enforces no undefined symbols.
38964
 
+no_undefined_flag=$lt_no_undefined_flag_CXX
38965
 
+
38966
 
+# Flag to hardcode \$libdir into a binary during linking.
38967
 
+# This must work even if \$libdir does not exist
38968
 
+hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX
38969
 
+
38970
 
+# If ld is used when linking, flag to hardcode \$libdir into a binary
38971
 
+# during linking.  This must work even if \$libdir does not exist.
38972
 
+hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX
38973
 
+
38974
 
+# Whether we need a single "-rpath" flag with a separated argument.
38975
 
+hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX
38976
 
+
38977
 
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
38978
 
+# DIR into the resulting binary.
38979
 
+hardcode_direct=$hardcode_direct_CXX
38980
 
+
38981
 
+# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes
38982
 
+# DIR into the resulting binary and the resulting library dependency is
38983
 
+# "absolute",i.e impossible to change by setting \${shlibpath_var} if the
38984
 
+# library is relocated.
38985
 
+hardcode_direct_absolute=$hardcode_direct_absolute_CXX
38986
 
+
38987
 
+# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
38988
 
+# into the resulting binary.
38989
 
+hardcode_minus_L=$hardcode_minus_L_CXX
38990
 
+
38991
 
+# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
38992
 
+# into the resulting binary.
38993
 
+hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX
38994
 
+
38995
 
+# Set to "yes" if building a shared library automatically hardcodes DIR
38996
 
+# into the library and all subsequent libraries and executables linked
38997
 
+# against it.
38998
 
+hardcode_automatic=$hardcode_automatic_CXX
38999
 
+
39000
 
+# Set to yes if linker adds runtime paths of dependent libraries
39001
 
+# to runtime path list.
39002
 
+inherit_rpath=$inherit_rpath_CXX
39003
 
+
39004
 
+# Whether libtool must link a program against all its dependency libraries.
39005
 
+link_all_deplibs=$link_all_deplibs_CXX
39006
 
+
39007
 
+# Fix the shell variable \$srcfile for the compiler.
39008
 
+fix_srcfile_path=$lt_fix_srcfile_path_CXX
39009
 
 
39010
 
-# Remove the space that was appended to ease matching.
39011
 
-# Then replace #undef with comments.  This is necessary, for
39012
 
-# example, in the case of _POSIX_SOURCE, which is predefined and required
39013
 
-# on some systems where configure will not decide to define it.
39014
 
-# (The regexp can be short, since the line contains either #define or #undef.)
39015
 
-echo 's/ $//
39016
 
-s,^[    #]*u.*,/* & */,' >>conftest.defines
39017
 
+# Set to "yes" if exported symbols are required.
39018
 
+always_export_symbols=$always_export_symbols_CXX
39019
 
 
39020
 
-# Break up conftest.defines:
39021
 
-ac_max_sed_lines=50
39022
 
+# The commands to list exported symbols.
39023
 
+export_symbols_cmds=$lt_export_symbols_cmds_CXX
39024
 
 
39025
 
-# First sed command is:         sed -f defines.sed $ac_file_inputs >"$tmp/out1"
39026
 
-# Second one is:        sed -f defines.sed "$tmp/out1" >"$tmp/out2"
39027
 
-# Third one will be:    sed -f defines.sed "$tmp/out2" >"$tmp/out1"
39028
 
-# et cetera.
39029
 
-ac_in='$ac_file_inputs'
39030
 
-ac_out='"$tmp/out1"'
39031
 
-ac_nxt='"$tmp/out2"'
39032
 
+# Symbols that should not be listed in the preloaded symbols.
39033
 
+exclude_expsyms=$lt_exclude_expsyms_CXX
39034
 
 
39035
 
-while :
39036
 
-do
39037
 
-  # Write a here document:
39038
 
-    cat >>$CONFIG_STATUS <<_ACEOF
39039
 
-    # First, check the format of the line:
39040
 
-    cat >"\$tmp/defines.sed" <<\\CEOF
39041
 
-/^[     ]*#[    ]*undef[        ][      ]*$ac_word_re[  ]*\$/b def
39042
 
-/^[     ]*#[    ]*define[       ][      ]*$ac_word_re[(         ]/b def
39043
 
-b
39044
 
-:def
39045
 
-_ACEOF
39046
 
-  sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS
39047
 
-  echo 'CEOF
39048
 
-    sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS
39049
 
-  ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in
39050
 
-  sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail
39051
 
-  grep . conftest.tail >/dev/null || break
39052
 
-  rm -f conftest.defines
39053
 
-  mv conftest.tail conftest.defines
39054
 
-done
39055
 
-rm -f conftest.defines conftest.tail
39056
 
+# Symbols that must always be exported.
39057
 
+include_expsyms=$lt_include_expsyms_CXX
39058
 
 
39059
 
-echo "ac_result=$ac_in" >>$CONFIG_STATUS
39060
 
-cat >>$CONFIG_STATUS <<\_ACEOF
39061
55044
-  if test x"$ac_file" != x-; then
39062
 
-    echo "/* $configure_input  */" >"$tmp/config.h"
39063
 
-    cat "$ac_result" >>"$tmp/config.h"
39064
 
-    if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then
39065
 
-      { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
39066
 
-echo "$as_me: $ac_file is unchanged" >&6;}
 
55045
-    {
 
55046
-      $as_echo "/* $configure_input  */" \
 
55047
-      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
 
55048
-    } >"$tmp/config.h" \
 
55049
-      || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
 
55050
-$as_echo "$as_me: error: could not create $ac_file" >&2;}
 
55051
-   { (exit 1); exit 1; }; }
 
55052
-    if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
 
55053
-      { $as_echo "$as_me:$LINENO: $ac_file is unchanged" >&5
 
55054
-$as_echo "$as_me: $ac_file is unchanged" >&6;}
39067
55055
-    else
39068
 
-      rm -f $ac_file
39069
 
-      mv "$tmp/config.h" $ac_file
 
55056
-      rm -f "$ac_file"
 
55057
-      mv "$tmp/config.h" "$ac_file" \
 
55058
-       || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
 
55059
-$as_echo "$as_me: error: could not create $ac_file" >&2;}
 
55060
-   { (exit 1); exit 1; }; }
39070
55061
-    fi
39071
55062
-  else
39072
 
-    echo "/* $configure_input  */"
39073
 
-    cat "$ac_result"
 
55063
-    $as_echo "/* $configure_input  */" \
 
55064
-      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
 
55065
-      || { { $as_echo "$as_me:$LINENO: error: could not create -" >&5
 
55066
-$as_echo "$as_me: error: could not create -" >&2;}
 
55067
-   { (exit 1); exit 1; }; }
39074
55068
-  fi
39075
 
-  rm -f "$tmp/out12"
39076
 
-# Compute $ac_file's index in $config_headers.
39077
 
-_am_arg=$ac_file
 
55069
-# Compute "$ac_file"'s index in $config_headers.
 
55070
-_am_arg="$ac_file"
39078
55071
-_am_stamp_count=1
39079
55072
-for _am_header in $config_headers :; do
39080
55073
-  case $_am_header in
39089
55082
-        X"$_am_arg" : 'X\(//\)[^/]' \| \
39090
55083
-        X"$_am_arg" : 'X\(//\)$' \| \
39091
55084
-        X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
39092
 
-echo X"$_am_arg" |
 
55085
-$as_echo X"$_am_arg" |
39093
55086
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
39094
55087
-           s//\1/
39095
55088
-           q
39108
55101
-         }
39109
55102
-         s/.*/./; q'`/stamp-h$_am_stamp_count
39110
55103
- ;;
39111
 
+# Commands necessary for linking programs (against libraries) with templates.
39112
 
+prelink_cmds=$lt_prelink_cmds_CXX
39113
 
 
39114
 
-  :C)  { echo "$as_me:$LINENO: executing $ac_file commands" >&5
39115
 
-echo "$as_me: executing $ac_file commands" >&6;}
39116
 
- ;;
39117
 
-  esac
39118
 
+# Specify filename containing input files.
39119
 
+file_list_spec=$lt_file_list_spec_CXX
39120
 
 
39121
 
+# How to hardcode a shared library path into an executable.
39122
 
+hardcode_action=$hardcode_action_CXX
39123
 
+
39124
 
+# The directories searched by this compiler when creating a shared library.
39125
 
+compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX
39126
 
+
39127
55104
+# Dependencies to place before and after the objects being linked to
39128
55105
+# create a shared library.
39129
55106
+predep_objects=$lt_predep_objects_CXX
39130
55107
+postdep_objects=$lt_postdep_objects_CXX
39131
55108
+predeps=$lt_predeps_CXX
39132
55109
+postdeps=$lt_postdeps_CXX
39133
 
+
 
55110
 
 
55111
-  :C)  { $as_echo "$as_me:$LINENO: executing $ac_file commands" >&5
 
55112
-$as_echo "$as_me: executing $ac_file commands" >&6;}
 
55113
- ;;
 
55114
-  esac
39134
55115
+# The library search path used internally by the compiler when linking
39135
55116
+# a shared library.
39136
55117
+compiler_lib_search_path=$lt_compiler_lib_search_path_CXX
39137
 
+
 
55118
 
39138
55119
+# ### END LIBTOOL TAG CONFIG: CXX
39139
55120
+_LT_EOF
39140
55121
 
39155
55136
-        X"$mf" : 'X\(//\)[^/]' \| \
39156
55137
-        X"$mf" : 'X\(//\)$' \| \
39157
55138
-        X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
39158
 
-echo X"$mf" |
 
55139
-$as_echo X"$mf" |
39159
55140
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
39160
55141
-           s//\1/
39161
55142
-           q
39199
55180
-        X"$file" : 'X\(//\)[^/]' \| \
39200
55181
-        X"$file" : 'X\(//\)$' \| \
39201
55182
-        X"$file" : 'X\(/\)' \| . 2>/dev/null ||
39202
 
-echo X"$file" |
 
55183
-$as_echo X"$file" |
39203
55184
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
39204
55185
-           s//\1/
39205
55186
-           q
39225
55206
-    as_dirs=
39226
55207
-    while :; do
39227
55208
-      case $as_dir in #(
39228
 
-      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
 
55209
-      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
39229
55210
-      *) as_qdir=$as_dir;;
39230
55211
-      esac
39231
55212
-      as_dirs="'$as_qdir' $as_dirs"
39234
55215
-        X"$as_dir" : 'X\(//\)[^/]' \| \
39235
55216
-        X"$as_dir" : 'X\(//\)$' \| \
39236
55217
-        X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
39237
 
-echo X"$as_dir" |
 
55218
-$as_echo X"$as_dir" |
39238
55219
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
39239
55220
-           s//\1/
39240
55221
-           q
39255
55236
-      test -d "$as_dir" && break
39256
55237
-    done
39257
55238
-    test -z "$as_dirs" || eval "mkdir $as_dirs"
39258
 
-  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
39259
 
-echo "$as_me: error: cannot create directory $as_dir" >&2;}
 
55239
-  } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
 
55240
-$as_echo "$as_me: error: cannot create directory $as_dir" >&2;}
39260
55241
-   { (exit 1); exit 1; }; }; }
39261
55242
-    # echo "creating $dirpart/$file"
39262
55243
-    echo '# dummy' > "$dirpart/$file"
39267
55248
-        sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
39268
55249
-      esac ;;
39269
55250
     "po/stamp-it":C)
 
55251
     if  ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" ; then
 
55252
-       { { $as_echo "$as_me:$LINENO: error: po/Makefile.in.in was not created by intltoolize." >&5
 
55253
-$as_echo "$as_me: error: po/Makefile.in.in was not created by intltoolize." >&2;}
 
55254
+       { { echo "$as_me:$LINENO: error: po/Makefile.in.in was not created by intltoolize." >&5
 
55255
+echo "$as_me: error: po/Makefile.in.in was not created by intltoolize." >&2;}
 
55256
    { (exit 1); exit 1; }; }
 
55257
     fi
39270
55258
     rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp"
39271
 
     >"po/stamp-it.tmp"
39272
 
@@ -28056,17 +26569,11 @@
39273
 
        '"s|^|  $ac_top_srcdir/|" \
39274
 
       "$srcdir/po/POTFILES.in" | sed '$!s/$/ \\/' >"po/POTFILES"
 
55259
@@ -28668,11 +26592,6 @@
 
55260
 chmod +x $CONFIG_STATUS
 
55261
 ac_clean_files=$ac_clean_files_save
39275
55262
 
39276
 
-    if test ! -f "po/Makefile"; then
39277
 
-      { { echo "$as_me:$LINENO: error: po/Makefile is not ready." >&5
39278
 
-echo "$as_me: error: po/Makefile is not ready." >&2;}
 
55263
-test $ac_write_fail = 0 ||
 
55264
-  { { $as_echo "$as_me:$LINENO: error: write failure creating $CONFIG_STATUS" >&5
 
55265
-$as_echo "$as_me: error: write failure creating $CONFIG_STATUS" >&2;}
39279
55266
-   { (exit 1); exit 1; }; }
39280
 
-    fi
39281
 
-    mv "po/Makefile" "po/Makefile.tmp"
39282
 
     sed '/^POTFILES =/,/[^\\]$/ {
39283
 
                /^POTFILES =/!d
39284
 
                r po/POTFILES
39285
 
          }
39286
 
-        ' "po/Makefile.tmp" >"po/Makefile"
39287
 
+        ' "po/Makefile.in" >"po/Makefile"
39288
 
     rm -f "po/Makefile.tmp"
39289
 
     mv "po/stamp-it.tmp" "po/stamp-it"
39290
 
    ;;
39291
 
diff -Nurb totem-2.24.2/data/icons/16x16/Makefile.in totem-2.24.2.new/data/icons/16x16/Makefile.in
39292
 
--- totem-2.24.2/data/icons/16x16/Makefile.in   2008-10-07 16:18:53.000000000 +0200
39293
 
+++ totem-2.24.2.new/data/icons/16x16/Makefile.in       2008-10-08 15:16:16.000000000 +0200
39294
 
@@ -67,6 +67,8 @@
39295
 
 AUTOHEADER = @AUTOHEADER@
39296
 
 AUTOMAKE = @AUTOMAKE@
39297
 
 AWK = @AWK@
39298
 
+BBC_CFLAGS = @BBC_CFLAGS@
39299
 
+BBC_LIBS = @BBC_LIBS@
39300
 
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
39301
 
 BEMUSED_LIBS = @BEMUSED_LIBS@
39302
 
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
39303
 
@@ -93,7 +95,8 @@
39304
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
39305
 
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
39306
 
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
39307
 
-ECHO = @ECHO@
39308
 
+DSYMUTIL = @DSYMUTIL@
39309
 
+DUMPBIN = @DUMPBIN@
39310
 
 ECHO_C = @ECHO_C@
39311
 
 ECHO_N = @ECHO_N@
39312
 
 ECHO_T = @ECHO_T@
39313
 
@@ -101,8 +104,7 @@
39314
 
 EXEEXT = @EXEEXT@
39315
 
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
39316
 
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
39317
 
-F77 = @F77@
39318
 
-FFLAGS = @FFLAGS@
39319
 
+FGREP = @FGREP@
39320
 
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
39321
 
 GCONFTOOL = @GCONFTOOL@
39322
 
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
39323
 
@@ -152,6 +154,7 @@
39324
 
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
39325
 
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
39326
 
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
39327
 
+LD = @LD@
39328
 
 LDFLAGS = @LDFLAGS@
39329
 
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
39330
 
 LIBEPC_LIBS = @LIBEPC_LIBS@
39331
 
@@ -160,6 +163,7 @@
39332
 
 LIBOBJS = @LIBOBJS@
39333
 
 LIBS = @LIBS@
39334
 
 LIBTOOL = @LIBTOOL@
39335
 
+LIPO = @LIPO@
39336
 
 LIRC_LIBS = @LIRC_LIBS@
39337
 
 LN_S = @LN_S@
39338
 
 LTLIBOBJS = @LTLIBOBJS@
39339
 
@@ -179,11 +183,15 @@
39340
 
 NAUTILUSDIR = @NAUTILUSDIR@
39341
 
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
39342
 
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
39343
 
+NM = @NM@
39344
 
+NMEDIT = @NMEDIT@
39345
 
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
39346
 
 NVTV_CFLAGS = @NVTV_CFLAGS@
39347
 
 NVTV_LIBS = @NVTV_LIBS@
39348
 
 OBJEXT = @OBJEXT@
39349
 
 OMF_DIR = @OMF_DIR@
39350
 
+OTOOL = @OTOOL@
39351
 
+OTOOL64 = @OTOOL64@
39352
 
 PACKAGE = @PACKAGE@
39353
 
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
39354
 
 PACKAGE_NAME = @PACKAGE_NAME@
39355
 
@@ -245,7 +253,7 @@
39356
 
 abs_top_srcdir = @abs_top_srcdir@
39357
 
 ac_ct_CC = @ac_ct_CC@
39358
 
 ac_ct_CXX = @ac_ct_CXX@
39359
 
-ac_ct_F77 = @ac_ct_F77@
39360
 
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
39361
 
 am__include = @am__include@
39362
 
 am__leading_dot = @am__leading_dot@
39363
 
 am__quote = @am__quote@
39364
 
@@ -276,6 +284,7 @@
39365
 
 libexecdir = @libexecdir@
39366
 
 localedir = @localedir@
39367
 
 localstatedir = @localstatedir@
39368
 
+lt_ECHO = @lt_ECHO@
39369
 
 mandir = @mandir@
39370
 
 mkdir_p = @mkdir_p@
39371
 
 oldincludedir = @oldincludedir@
39372
 
diff -Nurb totem-2.24.2/data/icons/22x22/Makefile.in totem-2.24.2.new/data/icons/22x22/Makefile.in
39373
 
--- totem-2.24.2/data/icons/22x22/Makefile.in   2008-10-07 16:18:53.000000000 +0200
39374
 
+++ totem-2.24.2.new/data/icons/22x22/Makefile.in       2008-10-08 15:16:16.000000000 +0200
39375
 
@@ -67,6 +67,8 @@
39376
 
 AUTOHEADER = @AUTOHEADER@
39377
 
 AUTOMAKE = @AUTOMAKE@
39378
 
 AWK = @AWK@
39379
 
+BBC_CFLAGS = @BBC_CFLAGS@
39380
 
+BBC_LIBS = @BBC_LIBS@
39381
 
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
39382
 
 BEMUSED_LIBS = @BEMUSED_LIBS@
39383
 
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
39384
 
@@ -93,7 +95,8 @@
39385
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
39386
 
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
39387
 
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
39388
 
-ECHO = @ECHO@
39389
 
+DSYMUTIL = @DSYMUTIL@
39390
 
+DUMPBIN = @DUMPBIN@
39391
 
 ECHO_C = @ECHO_C@
39392
 
 ECHO_N = @ECHO_N@
39393
 
 ECHO_T = @ECHO_T@
39394
 
@@ -101,8 +104,7 @@
39395
 
 EXEEXT = @EXEEXT@
39396
 
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
39397
 
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
39398
 
-F77 = @F77@
39399
 
-FFLAGS = @FFLAGS@
39400
 
+FGREP = @FGREP@
39401
 
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
39402
 
 GCONFTOOL = @GCONFTOOL@
39403
 
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
39404
 
@@ -152,6 +154,7 @@
39405
 
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
39406
 
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
39407
 
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
39408
 
+LD = @LD@
39409
 
 LDFLAGS = @LDFLAGS@
39410
 
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
39411
 
 LIBEPC_LIBS = @LIBEPC_LIBS@
39412
 
@@ -160,6 +163,7 @@
39413
 
 LIBOBJS = @LIBOBJS@
39414
 
 LIBS = @LIBS@
39415
 
 LIBTOOL = @LIBTOOL@
39416
 
+LIPO = @LIPO@
39417
 
 LIRC_LIBS = @LIRC_LIBS@
39418
 
 LN_S = @LN_S@
39419
 
 LTLIBOBJS = @LTLIBOBJS@
39420
 
@@ -179,11 +183,15 @@
39421
 
 NAUTILUSDIR = @NAUTILUSDIR@
39422
 
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
39423
 
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
39424
 
+NM = @NM@
39425
 
+NMEDIT = @NMEDIT@
39426
 
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
39427
 
 NVTV_CFLAGS = @NVTV_CFLAGS@
39428
 
 NVTV_LIBS = @NVTV_LIBS@
39429
 
 OBJEXT = @OBJEXT@
39430
 
 OMF_DIR = @OMF_DIR@
39431
 
+OTOOL = @OTOOL@
39432
 
+OTOOL64 = @OTOOL64@
39433
 
 PACKAGE = @PACKAGE@
39434
 
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
39435
 
 PACKAGE_NAME = @PACKAGE_NAME@
39436
 
@@ -245,7 +253,7 @@
39437
 
 abs_top_srcdir = @abs_top_srcdir@
39438
 
 ac_ct_CC = @ac_ct_CC@
39439
 
 ac_ct_CXX = @ac_ct_CXX@
39440
 
-ac_ct_F77 = @ac_ct_F77@
39441
 
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
39442
 
 am__include = @am__include@
39443
 
 am__leading_dot = @am__leading_dot@
39444
 
 am__quote = @am__quote@
39445
 
@@ -276,6 +284,7 @@
39446
 
 libexecdir = @libexecdir@
39447
 
 localedir = @localedir@
39448
 
 localstatedir = @localstatedir@
39449
 
+lt_ECHO = @lt_ECHO@
39450
 
 mandir = @mandir@
39451
 
 mkdir_p = @mkdir_p@
39452
 
 oldincludedir = @oldincludedir@
39453
 
diff -Nurb totem-2.24.2/data/icons/24x24/Makefile.in totem-2.24.2.new/data/icons/24x24/Makefile.in
39454
 
--- totem-2.24.2/data/icons/24x24/Makefile.in   2008-10-07 16:18:54.000000000 +0200
39455
 
+++ totem-2.24.2.new/data/icons/24x24/Makefile.in       2008-10-08 15:16:16.000000000 +0200
39456
 
@@ -67,6 +67,8 @@
39457
 
 AUTOHEADER = @AUTOHEADER@
39458
 
 AUTOMAKE = @AUTOMAKE@
39459
 
 AWK = @AWK@
39460
 
+BBC_CFLAGS = @BBC_CFLAGS@
39461
 
+BBC_LIBS = @BBC_LIBS@
39462
 
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
39463
 
 BEMUSED_LIBS = @BEMUSED_LIBS@
39464
 
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
39465
 
@@ -93,7 +95,8 @@
39466
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
39467
 
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
39468
 
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
39469
 
-ECHO = @ECHO@
39470
 
+DSYMUTIL = @DSYMUTIL@
39471
 
+DUMPBIN = @DUMPBIN@
39472
 
 ECHO_C = @ECHO_C@
39473
 
 ECHO_N = @ECHO_N@
39474
 
 ECHO_T = @ECHO_T@
39475
 
@@ -101,8 +104,7 @@
39476
 
 EXEEXT = @EXEEXT@
39477
 
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
39478
 
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
39479
 
-F77 = @F77@
39480
 
-FFLAGS = @FFLAGS@
39481
 
+FGREP = @FGREP@
39482
 
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
39483
 
 GCONFTOOL = @GCONFTOOL@
39484
 
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
39485
 
@@ -152,6 +154,7 @@
39486
 
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
39487
 
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
39488
 
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
39489
 
+LD = @LD@
39490
 
 LDFLAGS = @LDFLAGS@
39491
 
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
39492
 
 LIBEPC_LIBS = @LIBEPC_LIBS@
39493
 
@@ -160,6 +163,7 @@
39494
 
 LIBOBJS = @LIBOBJS@
39495
 
 LIBS = @LIBS@
39496
 
 LIBTOOL = @LIBTOOL@
39497
 
+LIPO = @LIPO@
39498
 
 LIRC_LIBS = @LIRC_LIBS@
39499
 
 LN_S = @LN_S@
39500
 
 LTLIBOBJS = @LTLIBOBJS@
39501
 
@@ -179,11 +183,15 @@
39502
 
 NAUTILUSDIR = @NAUTILUSDIR@
39503
 
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
39504
 
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
39505
 
+NM = @NM@
39506
 
+NMEDIT = @NMEDIT@
39507
 
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
39508
 
 NVTV_CFLAGS = @NVTV_CFLAGS@
39509
 
 NVTV_LIBS = @NVTV_LIBS@
39510
 
 OBJEXT = @OBJEXT@
39511
 
 OMF_DIR = @OMF_DIR@
39512
 
+OTOOL = @OTOOL@
39513
 
+OTOOL64 = @OTOOL64@
39514
 
 PACKAGE = @PACKAGE@
39515
 
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
39516
 
 PACKAGE_NAME = @PACKAGE_NAME@
39517
 
@@ -245,7 +253,7 @@
39518
 
 abs_top_srcdir = @abs_top_srcdir@
39519
 
 ac_ct_CC = @ac_ct_CC@
39520
 
 ac_ct_CXX = @ac_ct_CXX@
39521
 
-ac_ct_F77 = @ac_ct_F77@
39522
 
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
39523
 
 am__include = @am__include@
39524
 
 am__leading_dot = @am__leading_dot@
39525
 
 am__quote = @am__quote@
39526
 
@@ -276,6 +284,7 @@
39527
 
 libexecdir = @libexecdir@
39528
 
 localedir = @localedir@
39529
 
 localstatedir = @localstatedir@
39530
 
+lt_ECHO = @lt_ECHO@
39531
 
 mandir = @mandir@
39532
 
 mkdir_p = @mkdir_p@
39533
 
 oldincludedir = @oldincludedir@
39534
 
diff -Nurb totem-2.24.2/data/icons/32x32/Makefile.in totem-2.24.2.new/data/icons/32x32/Makefile.in
39535
 
--- totem-2.24.2/data/icons/32x32/Makefile.in   2008-10-07 16:18:54.000000000 +0200
39536
 
+++ totem-2.24.2.new/data/icons/32x32/Makefile.in       2008-10-08 15:16:16.000000000 +0200
39537
 
@@ -67,6 +67,8 @@
39538
 
 AUTOHEADER = @AUTOHEADER@
39539
 
 AUTOMAKE = @AUTOMAKE@
39540
 
 AWK = @AWK@
39541
 
+BBC_CFLAGS = @BBC_CFLAGS@
39542
 
+BBC_LIBS = @BBC_LIBS@
39543
 
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
39544
 
 BEMUSED_LIBS = @BEMUSED_LIBS@
39545
 
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
39546
 
@@ -93,7 +95,8 @@
39547
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
39548
 
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
39549
 
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
39550
 
-ECHO = @ECHO@
39551
 
+DSYMUTIL = @DSYMUTIL@
39552
 
+DUMPBIN = @DUMPBIN@
39553
 
 ECHO_C = @ECHO_C@
39554
 
 ECHO_N = @ECHO_N@
39555
 
 ECHO_T = @ECHO_T@
39556
 
@@ -101,8 +104,7 @@
39557
 
 EXEEXT = @EXEEXT@
39558
 
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
39559
 
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
39560
 
-F77 = @F77@
39561
 
-FFLAGS = @FFLAGS@
39562
 
+FGREP = @FGREP@
39563
 
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
39564
 
 GCONFTOOL = @GCONFTOOL@
39565
 
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
39566
 
@@ -152,6 +154,7 @@
39567
 
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
39568
 
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
39569
 
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
39570
 
+LD = @LD@
39571
 
 LDFLAGS = @LDFLAGS@
39572
 
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
39573
 
 LIBEPC_LIBS = @LIBEPC_LIBS@
39574
 
@@ -160,6 +163,7 @@
39575
 
 LIBOBJS = @LIBOBJS@
39576
 
 LIBS = @LIBS@
39577
 
 LIBTOOL = @LIBTOOL@
39578
 
+LIPO = @LIPO@
39579
 
 LIRC_LIBS = @LIRC_LIBS@
39580
 
 LN_S = @LN_S@
39581
 
 LTLIBOBJS = @LTLIBOBJS@
39582
 
@@ -179,11 +183,15 @@
39583
 
 NAUTILUSDIR = @NAUTILUSDIR@
39584
 
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
39585
 
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
39586
 
+NM = @NM@
39587
 
+NMEDIT = @NMEDIT@
39588
 
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
39589
 
 NVTV_CFLAGS = @NVTV_CFLAGS@
39590
 
 NVTV_LIBS = @NVTV_LIBS@
39591
 
 OBJEXT = @OBJEXT@
39592
 
 OMF_DIR = @OMF_DIR@
39593
 
+OTOOL = @OTOOL@
39594
 
+OTOOL64 = @OTOOL64@
39595
 
 PACKAGE = @PACKAGE@
39596
 
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
39597
 
 PACKAGE_NAME = @PACKAGE_NAME@
39598
 
@@ -245,7 +253,7 @@
39599
 
 abs_top_srcdir = @abs_top_srcdir@
39600
 
 ac_ct_CC = @ac_ct_CC@
39601
 
 ac_ct_CXX = @ac_ct_CXX@
39602
 
-ac_ct_F77 = @ac_ct_F77@
39603
 
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
39604
 
 am__include = @am__include@
39605
 
 am__leading_dot = @am__leading_dot@
39606
 
 am__quote = @am__quote@
39607
 
@@ -276,6 +284,7 @@
39608
 
 libexecdir = @libexecdir@
39609
 
 localedir = @localedir@
39610
 
 localstatedir = @localstatedir@
39611
 
+lt_ECHO = @lt_ECHO@
39612
 
 mandir = @mandir@
39613
 
 mkdir_p = @mkdir_p@
39614
 
 oldincludedir = @oldincludedir@
39615
 
diff -Nurb totem-2.24.2/data/icons/48x48/Makefile.in totem-2.24.2.new/data/icons/48x48/Makefile.in
39616
 
--- totem-2.24.2/data/icons/48x48/Makefile.in   2008-10-07 16:18:54.000000000 +0200
39617
 
+++ totem-2.24.2.new/data/icons/48x48/Makefile.in       2008-10-08 15:16:16.000000000 +0200
39618
 
@@ -67,6 +67,8 @@
39619
 
 AUTOHEADER = @AUTOHEADER@
39620
 
 AUTOMAKE = @AUTOMAKE@
39621
 
 AWK = @AWK@
39622
 
+BBC_CFLAGS = @BBC_CFLAGS@
39623
 
+BBC_LIBS = @BBC_LIBS@
39624
 
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
39625
 
 BEMUSED_LIBS = @BEMUSED_LIBS@
39626
 
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
39627
 
@@ -93,7 +95,8 @@
39628
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
39629
 
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
39630
 
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
39631
 
-ECHO = @ECHO@
39632
 
+DSYMUTIL = @DSYMUTIL@
39633
 
+DUMPBIN = @DUMPBIN@
39634
 
 ECHO_C = @ECHO_C@
39635
 
 ECHO_N = @ECHO_N@
39636
 
 ECHO_T = @ECHO_T@
39637
 
@@ -101,8 +104,7 @@
39638
 
 EXEEXT = @EXEEXT@
39639
 
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
39640
 
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
39641
 
-F77 = @F77@
39642
 
-FFLAGS = @FFLAGS@
39643
 
+FGREP = @FGREP@
39644
 
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
39645
 
 GCONFTOOL = @GCONFTOOL@
39646
 
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
39647
 
@@ -152,6 +154,7 @@
39648
 
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
39649
 
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
39650
 
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
39651
 
+LD = @LD@
39652
 
 LDFLAGS = @LDFLAGS@
39653
 
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
39654
 
 LIBEPC_LIBS = @LIBEPC_LIBS@
39655
 
@@ -160,6 +163,7 @@
39656
 
 LIBOBJS = @LIBOBJS@
39657
 
 LIBS = @LIBS@
39658
 
 LIBTOOL = @LIBTOOL@
39659
 
+LIPO = @LIPO@
39660
 
 LIRC_LIBS = @LIRC_LIBS@
39661
 
 LN_S = @LN_S@
39662
 
 LTLIBOBJS = @LTLIBOBJS@
39663
 
@@ -179,11 +183,15 @@
39664
 
 NAUTILUSDIR = @NAUTILUSDIR@
39665
 
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
39666
 
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
39667
 
+NM = @NM@
39668
 
+NMEDIT = @NMEDIT@
39669
 
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
39670
 
 NVTV_CFLAGS = @NVTV_CFLAGS@
39671
 
 NVTV_LIBS = @NVTV_LIBS@
39672
 
 OBJEXT = @OBJEXT@
39673
 
 OMF_DIR = @OMF_DIR@
39674
 
+OTOOL = @OTOOL@
39675
 
+OTOOL64 = @OTOOL64@
39676
 
 PACKAGE = @PACKAGE@
39677
 
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
39678
 
 PACKAGE_NAME = @PACKAGE_NAME@
39679
 
@@ -245,7 +253,7 @@
39680
 
 abs_top_srcdir = @abs_top_srcdir@
39681
 
 ac_ct_CC = @ac_ct_CC@
39682
 
 ac_ct_CXX = @ac_ct_CXX@
39683
 
-ac_ct_F77 = @ac_ct_F77@
39684
 
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
39685
 
 am__include = @am__include@
39686
 
 am__leading_dot = @am__leading_dot@
39687
 
 am__quote = @am__quote@
39688
 
@@ -276,6 +284,7 @@
39689
 
 libexecdir = @libexecdir@
39690
 
 localedir = @localedir@
39691
 
 localstatedir = @localstatedir@
39692
 
+lt_ECHO = @lt_ECHO@
39693
 
 mandir = @mandir@
39694
 
 mkdir_p = @mkdir_p@
39695
 
 oldincludedir = @oldincludedir@
39696
 
diff -Nurb totem-2.24.2/data/icons/Makefile.in totem-2.24.2.new/data/icons/Makefile.in
39697
 
--- totem-2.24.2/data/icons/Makefile.in 2008-10-07 16:18:54.000000000 +0200
39698
 
+++ totem-2.24.2.new/data/icons/Makefile.in     2008-10-08 15:16:16.000000000 +0200
 
55267
-
 
55268
 
 
55269
 # configure is writing to config.log, and then calls config.status.
 
55270
 # config.status does its own redirection, appending to config.log.
 
55271
@@ -28694,167 +26613,163 @@
 
55272
   # would make configure fail if this is the last instruction.
 
55273
   $ac_cs_success || { (exit 1); exit 1; }
 
55274
 fi
 
55275
-if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
 
55276
-  { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
 
55277
-$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
 
55278
-fi
 
55279
 
 
55280
 
 
55281
-{ $as_echo "$as_me:$LINENO: Totem was configured with the following options:" >&5
 
55282
-$as_echo "$as_me: Totem was configured with the following options:" >&6;}
 
55283
+{ echo "$as_me:$LINENO: Totem was configured with the following options:" >&5
 
55284
+echo "$as_me: Totem was configured with the following options:" >&6;}
 
55285
 if test x$HAVE_GSTREAMER = xno ; then
 
55286
-       { $as_echo "$as_me:$LINENO: ** Using the xine backend" >&5
 
55287
-$as_echo "$as_me: ** Using the xine backend" >&6;}
 
55288
+       { echo "$as_me:$LINENO: ** Using the xine backend" >&5
 
55289
+echo "$as_me: ** Using the xine backend" >&6;}
 
55290
 else
 
55291
-       { $as_echo "$as_me:$LINENO: ** Using the GStreamer-$GST_MAJORMINOR backend" >&5
 
55292
-$as_echo "$as_me: ** Using the GStreamer-$GST_MAJORMINOR backend" >&6;}
 
55293
+       { echo "$as_me:$LINENO: ** Using the GStreamer-$GST_MAJORMINOR backend" >&5
 
55294
+echo "$as_me: ** Using the GStreamer-$GST_MAJORMINOR backend" >&6;}
 
55295
        if test "x$MISSING_PLUGINS_LIBS" != "x"; then
 
55296
-               { $as_echo "$as_me:$LINENO: ** Easy codec installation support enabled" >&5
 
55297
-$as_echo "$as_me: ** Easy codec installation support enabled" >&6;}
 
55298
+               { echo "$as_me:$LINENO: ** Easy codec installation support enabled" >&5
 
55299
+echo "$as_me: ** Easy codec installation support enabled" >&6;}
 
55300
        else
 
55301
-               { $as_echo "$as_me:$LINENO:    Easy codec installation support disabled" >&5
 
55302
-$as_echo "$as_me:    Easy codec installation support disabled" >&6;}
 
55303
+               { echo "$as_me:$LINENO:    Easy codec installation support disabled" >&5
 
55304
+echo "$as_me:    Easy codec installation support disabled" >&6;}
 
55305
        fi
 
55306
 fi
 
55307
 if test x$found_nvtv = xyes ; then
 
55308
-       { $as_echo "$as_me:$LINENO: ** nvtv support enabled" >&5
 
55309
-$as_echo "$as_me: ** nvtv support enabled" >&6;}
 
55310
+       { echo "$as_me:$LINENO: ** nvtv support enabled" >&5
 
55311
+echo "$as_me: ** nvtv support enabled" >&6;}
 
55312
 else
 
55313
-       { $as_echo "$as_me:$LINENO:    nvtv support disabled" >&5
 
55314
-$as_echo "$as_me:    nvtv support disabled" >&6;}
 
55315
+       { echo "$as_me:$LINENO:    nvtv support disabled" >&5
 
55316
+echo "$as_me:    nvtv support disabled" >&6;}
 
55317
 fi
 
55318
 if test x$ENABLE_GTK = xyes ; then
 
55319
-       { $as_echo "$as_me:$LINENO: ** GTK+-only version enabled" >&5
 
55320
-$as_echo "$as_me: ** GTK+-only version enabled" >&6;}
 
55321
+       { echo "$as_me:$LINENO: ** GTK+-only version enabled" >&5
 
55322
+echo "$as_me: ** GTK+-only version enabled" >&6;}
 
55323
 else
 
55324
-       { $as_echo "$as_me:$LINENO: ** GNOME version enabled" >&5
 
55325
-$as_echo "$as_me: ** GNOME version enabled" >&6;}
 
55326
+       { echo "$as_me:$LINENO: ** GNOME version enabled" >&5
 
55327
+echo "$as_me: ** GNOME version enabled" >&6;}
 
55328
 fi
 
55329
 if test x$enable_python = xyes ; then
 
55330
-       { $as_echo "$as_me:$LINENO: ** Python binding support enabled" >&5
 
55331
-$as_echo "$as_me: ** Python binding support enabled" >&6;}
 
55332
+       { echo "$as_me:$LINENO: ** Python binding support enabled" >&5
 
55333
+echo "$as_me: ** Python binding support enabled" >&6;}
 
55334
 else
 
55335
-       { $as_echo "$as_me:$LINENO:    Python binding support disabled" >&5
 
55336
-$as_echo "$as_me:    Python binding support disabled" >&6;}
 
55337
+       { echo "$as_me:$LINENO:    Python binding support disabled" >&5
 
55338
+echo "$as_me:    Python binding support disabled" >&6;}
 
55339
 fi
 
55340
 if test x$with_vala = xyes ; then
 
55341
-       { $as_echo "$as_me:$LINENO: ** Vala binding support enabled" >&5
 
55342
-$as_echo "$as_me: ** Vala binding support enabled" >&6;}
 
55343
+       { echo "$as_me:$LINENO: ** Vala binding support enabled" >&5
 
55344
+echo "$as_me: ** Vala binding support enabled" >&6;}
 
55345
 else
 
55346
-       { $as_echo "$as_me:$LINENO:    Vala binding support disabled" >&5
 
55347
-$as_echo "$as_me:    Vala binding support disabled" >&6;}
 
55348
+       { echo "$as_me:$LINENO:    Vala binding support disabled" >&5
 
55349
+echo "$as_me:    Vala binding support disabled" >&6;}
 
55350
 fi
 
55351
 if test "x${PLUGINS}" != "x" ; then
 
55352
        for allowed_plugin in ${ALL_PLUGINS}; do
 
55353
                for plugin in ${PLUGINS}; do
 
55354
                        case ${allowed_plugin} in
 
55355
                                ${plugin})
 
55356
-                                       { $as_echo "$as_me:$LINENO: ** ${allowed_plugin} plugin enabled" >&5
 
55357
-$as_echo "$as_me: ** ${allowed_plugin} plugin enabled" >&6;}
 
55358
+                                       { echo "$as_me:$LINENO: ** ${allowed_plugin} plugin enabled" >&5
 
55359
+echo "$as_me: ** ${allowed_plugin} plugin enabled" >&6;}
 
55360
                                        continue 2
 
55361
                                ;;
 
55362
                                *);;
 
55363
                        esac
 
55364
                done
 
55365
-               { $as_echo "$as_me:$LINENO:    ${allowed_plugin} plugin disabled" >&5
 
55366
-$as_echo "$as_me:    ${allowed_plugin} plugin disabled" >&6;}
 
55367
+               { echo "$as_me:$LINENO:    ${allowed_plugin} plugin disabled" >&5
 
55368
+echo "$as_me:    ${allowed_plugin} plugin disabled" >&6;}
 
55369
        done
 
55370
 else
 
55371
-       { $as_echo "$as_me:$LINENO:    No Totem plugins enabled" >&5
 
55372
-$as_echo "$as_me:    No Totem plugins enabled" >&6;}
 
55373
+       { echo "$as_me:$LINENO:    No Totem plugins enabled" >&5
 
55374
+echo "$as_me:    No Totem plugins enabled" >&6;}
 
55375
 fi
 
55376
 if test x$enable_browser_plugins = xyes ; then
 
55377
-       { $as_echo "$as_me:$LINENO: ** Browser plugin enabled (using $MOZILLA)" >&5
 
55378
-$as_echo "$as_me: ** Browser plugin enabled (using $MOZILLA)" >&6;}
 
55379
+       { echo "$as_me:$LINENO: ** Browser plugin enabled (using $MOZILLA)" >&5
 
55380
+echo "$as_me: ** Browser plugin enabled (using $MOZILLA)" >&6;}
 
55381
        if test x$enable_basic_plugin = xyes ; then
 
55382
-               { $as_echo "$as_me:$LINENO: ** Basic browser plugin enabled" >&5
 
55383
-$as_echo "$as_me: ** Basic browser plugin enabled" >&6;}
 
55384
+               { echo "$as_me:$LINENO: ** Basic browser plugin enabled" >&5
 
55385
+echo "$as_me: ** Basic browser plugin enabled" >&6;}
 
55386
        else
 
55387
-               { $as_echo "$as_me:$LINENO:    Basic browser plugin disabled" >&5
 
55388
-$as_echo "$as_me:    Basic browser plugin disabled" >&6;}
 
55389
+               { echo "$as_me:$LINENO:    Basic browser plugin disabled" >&5
 
55390
+echo "$as_me:    Basic browser plugin disabled" >&6;}
 
55391
        fi
 
55392
        if test x$enable_gmp_plugin = xyes ; then
 
55393
-               { $as_echo "$as_me:$LINENO: ** GMP (Windows Media) plugin enabled" >&5
 
55394
-$as_echo "$as_me: ** GMP (Windows Media) plugin enabled" >&6;}
 
55395
+               { echo "$as_me:$LINENO: ** GMP (Windows Media) plugin enabled" >&5
 
55396
+echo "$as_me: ** GMP (Windows Media) plugin enabled" >&6;}
 
55397
        else
 
55398
-               { $as_echo "$as_me:$LINENO:    GMP (Windows Media) plugin disabled" >&5
 
55399
-$as_echo "$as_me:    GMP (Windows Media) plugin disabled" >&6;}
 
55400
+               { echo "$as_me:$LINENO:    GMP (Windows Media) plugin disabled" >&5
 
55401
+echo "$as_me:    GMP (Windows Media) plugin disabled" >&6;}
 
55402
        fi
 
55403
        if test x$enable_complex_plugin = xyes ; then
 
55404
-               { $as_echo "$as_me:$LINENO: ** Complex (Real) plugin enabled" >&5
 
55405
-$as_echo "$as_me: ** Complex (Real) plugin enabled" >&6;}
 
55406
+               { echo "$as_me:$LINENO: ** Complex (Real) plugin enabled" >&5
 
55407
+echo "$as_me: ** Complex (Real) plugin enabled" >&6;}
 
55408
        else
 
55409
-               { $as_echo "$as_me:$LINENO:    Complex (Real) plugin disabled" >&5
 
55410
-$as_echo "$as_me:    Complex (Real) plugin disabled" >&6;}
 
55411
+               { echo "$as_me:$LINENO:    Complex (Real) plugin disabled" >&5
 
55412
+echo "$as_me:    Complex (Real) plugin disabled" >&6;}
 
55413
        fi
 
55414
        if test x$enable_narrowspace_plugin = xyes ; then
 
55415
-               { $as_echo "$as_me:$LINENO: ** NarrowSpace (QuickTime) plugin enabled" >&5
 
55416
-$as_echo "$as_me: ** NarrowSpace (QuickTime) plugin enabled" >&6;}
 
55417
+               { echo "$as_me:$LINENO: ** NarrowSpace (QuickTime) plugin enabled" >&5
 
55418
+echo "$as_me: ** NarrowSpace (QuickTime) plugin enabled" >&6;}
 
55419
        else
 
55420
-               { $as_echo "$as_me:$LINENO:    NarrowSpace (QuickTime) plugin disabled" >&5
 
55421
-$as_echo "$as_me:    NarrowSpace (QuickTime) plugin disabled" >&6;}
 
55422
+               { echo "$as_me:$LINENO:    NarrowSpace (QuickTime) plugin disabled" >&5
 
55423
+echo "$as_me:    NarrowSpace (QuickTime) plugin disabled" >&6;}
 
55424
        fi
 
55425
        if test x$enable_mully_plugin = xyes ; then
 
55426
-               { $as_echo "$as_me:$LINENO: ** MullY (DivX) plugin enabled" >&5
 
55427
-$as_echo "$as_me: ** MullY (DivX) plugin enabled" >&6;}
 
55428
+               { echo "$as_me:$LINENO: ** MullY (DivX) plugin enabled" >&5
 
55429
+echo "$as_me: ** MullY (DivX) plugin enabled" >&6;}
 
55430
        else
 
55431
-               { $as_echo "$as_me:$LINENO:    MullY (DivX) plugin disabled" >&5
 
55432
-$as_echo "$as_me:    MullY (DivX) plugin disabled" >&6;}
 
55433
+               { echo "$as_me:$LINENO:    MullY (DivX) plugin disabled" >&5
 
55434
+echo "$as_me:    MullY (DivX) plugin disabled" >&6;}
 
55435
        fi
 
55436
        if test x$enable_cone_plugin = xyes ; then
 
55437
-               { $as_echo "$as_me:$LINENO: ** Cone (VLC) plugin enabled" >&5
 
55438
-$as_echo "$as_me: ** Cone (VLC) plugin enabled" >&6;}
 
55439
+               { echo "$as_me:$LINENO: ** Cone (VLC) plugin enabled" >&5
 
55440
+echo "$as_me: ** Cone (VLC) plugin enabled" >&6;}
 
55441
        else
 
55442
-               { $as_echo "$as_me:$LINENO:    Cone (VLC) plugin disabled" >&5
 
55443
-$as_echo "$as_me:    Cone (VLC) plugin disabled" >&6;}
 
55444
+               { echo "$as_me:$LINENO:    Cone (VLC) plugin disabled" >&5
 
55445
+echo "$as_me:    Cone (VLC) plugin disabled" >&6;}
 
55446
        fi
 
55447
 else
 
55448
-       { $as_echo "$as_me:$LINENO:    Browser plugin disabled" >&5
 
55449
-$as_echo "$as_me:    Browser plugin disabled" >&6;}
 
55450
+       { echo "$as_me:$LINENO:    Browser plugin disabled" >&5
 
55451
+echo "$as_me:    Browser plugin disabled" >&6;}
 
55452
 fi
 
55453
 if test x$ENABLE_NAUTILUS = xyes ; then
 
55454
-       { $as_echo "$as_me:$LINENO: ** Nautilus properties page enabled" >&5
 
55455
-$as_echo "$as_me: ** Nautilus properties page enabled" >&6;}
 
55456
+       { echo "$as_me:$LINENO: ** Nautilus properties page enabled" >&5
 
55457
+echo "$as_me: ** Nautilus properties page enabled" >&6;}
 
55458
 else
 
55459
-       { $as_echo "$as_me:$LINENO:    Nautilus properties page disabled" >&5
 
55460
-$as_echo "$as_me:    Nautilus properties page disabled" >&6;}
 
55461
+       { echo "$as_me:$LINENO:    Nautilus properties page disabled" >&5
 
55462
+echo "$as_me:    Nautilus properties page disabled" >&6;}
 
55463
 fi
 
55464
 if test x$disable_iso_codes_check = xno ; then
 
55465
-       { $as_echo "$as_me:$LINENO: ** iso-codes support checked" >&5
 
55466
-$as_echo "$as_me: ** iso-codes support checked" >&6;}
 
55467
+       { echo "$as_me:$LINENO: ** iso-codes support checked" >&5
 
55468
+echo "$as_me: ** iso-codes support checked" >&6;}
 
55469
 else
 
55470
-       { $as_echo "$as_me:$LINENO:    iso-codes support checked at run-time" >&5
 
55471
-$as_echo "$as_me:    iso-codes support checked at run-time" >&6;}
 
55472
+       { echo "$as_me:$LINENO:    iso-codes support checked at run-time" >&5
 
55473
+echo "$as_me:    iso-codes support checked at run-time" >&6;}
 
55474
 fi
 
55475
 if test x$enable_xtest = xyes ; then
 
55476
-       { $as_echo "$as_me:$LINENO: ** XTest (legacy screensaver) support enabled" >&5
 
55477
-$as_echo "$as_me: ** XTest (legacy screensaver) support enabled" >&6;}
 
55478
+       { echo "$as_me:$LINENO: ** XTest (legacy screensaver) support enabled" >&5
 
55479
+echo "$as_me: ** XTest (legacy screensaver) support enabled" >&6;}
 
55480
 else
 
55481
-       { $as_echo "$as_me:$LINENO:    XTest (legacy screensaver) support disabled" >&5
 
55482
-$as_echo "$as_me:    XTest (legacy screensaver) support disabled" >&6;}
 
55483
+       { echo "$as_me:$LINENO:    XTest (legacy screensaver) support disabled" >&5
 
55484
+echo "$as_me:    XTest (legacy screensaver) support disabled" >&6;}
 
55485
 fi
 
55486
 if test x$enable_dbus = xyes ; then
 
55487
-       { $as_echo "$as_me:$LINENO: ** D-Bus (gnome-screensaver) support enabled" >&5
 
55488
-$as_echo "$as_me: ** D-Bus (gnome-screensaver) support enabled" >&6;}
 
55489
+       { echo "$as_me:$LINENO: ** D-Bus (gnome-screensaver) support enabled" >&5
 
55490
+echo "$as_me: ** D-Bus (gnome-screensaver) support enabled" >&6;}
 
55491
 else
 
55492
-       { $as_echo "$as_me:$LINENO:    D-Bus (gnome-screensaver) support disabled" >&5
 
55493
-$as_echo "$as_me:    D-Bus (gnome-screensaver) support disabled" >&6;}
 
55494
+       { echo "$as_me:$LINENO:    D-Bus (gnome-screensaver) support disabled" >&5
 
55495
+echo "$as_me:    D-Bus (gnome-screensaver) support disabled" >&6;}
 
55496
 fi
 
55497
 if test x$have_xvidmode = xyes ; then
 
55498
-       { $as_echo "$as_me:$LINENO: ** XVidmode support enabled" >&5
 
55499
-$as_echo "$as_me: ** XVidmode support enabled" >&6;}
 
55500
+       { echo "$as_me:$LINENO: ** XVidmode support enabled" >&5
 
55501
+echo "$as_me: ** XVidmode support enabled" >&6;}
 
55502
 else
 
55503
-       { $as_echo "$as_me:$LINENO:    XVidmode support disabled" >&5
 
55504
-$as_echo "$as_me:    XVidmode support disabled" >&6;}
 
55505
+       { echo "$as_me:$LINENO:    XVidmode support disabled" >&5
 
55506
+echo "$as_me:    XVidmode support disabled" >&6;}
 
55507
 fi
 
55508
 if test x$have_xfree = xyes ; then
 
55509
-       { $as_echo "$as_me:$LINENO: ** XFree86 multimedia keys support enabled" >&5
 
55510
-$as_echo "$as_me: ** XFree86 multimedia keys support enabled" >&6;}
 
55511
+       { echo "$as_me:$LINENO: ** XFree86 multimedia keys support enabled" >&5
 
55512
+echo "$as_me: ** XFree86 multimedia keys support enabled" >&6;}
 
55513
 else
 
55514
-       { $as_echo "$as_me:$LINENO:    XFree86 multimedia keys support disabled" >&5
 
55515
-$as_echo "$as_me:    XFree86 multimedia keys support disabled" >&6;}
 
55516
+       { echo "$as_me:$LINENO:    XFree86 multimedia keys support disabled" >&5
 
55517
+echo "$as_me:    XFree86 multimedia keys support disabled" >&6;}
 
55518
 fi
 
55519
 
 
55520
-{ $as_echo "$as_me:$LINENO: End options" >&5
 
55521
-$as_echo "$as_me: End options" >&6;}
 
55522
+{ echo "$as_me:$LINENO: End options" >&5
 
55523
+echo "$as_me: End options" >&6;}
 
55524
 
 
55525
Index: totem-2.24.3/data/icons/16x16/Makefile.in
 
55526
===================================================================
 
55527
--- totem-2.24.3.orig/data/icons/16x16/Makefile.in      2008-10-26 15:40:45.000000000 +0100
 
55528
+++ totem-2.24.3/data/icons/16x16/Makefile.in   2008-10-30 19:06:36.000000000 +0100
 
55529
@@ -67,6 +67,8 @@
 
55530
 AUTOHEADER = @AUTOHEADER@
 
55531
 AUTOMAKE = @AUTOMAKE@
 
55532
 AWK = @AWK@
 
55533
+BBC_CFLAGS = @BBC_CFLAGS@
 
55534
+BBC_LIBS = @BBC_LIBS@
 
55535
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
 
55536
 BEMUSED_LIBS = @BEMUSED_LIBS@
 
55537
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
 
55538
@@ -94,7 +96,7 @@
 
55539
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
 
55540
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
55541
 DSYMUTIL = @DSYMUTIL@
 
55542
-ECHO = @ECHO@
 
55543
+DUMPBIN = @DUMPBIN@
 
55544
 ECHO_C = @ECHO_C@
 
55545
 ECHO_N = @ECHO_N@
 
55546
 ECHO_T = @ECHO_T@
 
55547
@@ -102,8 +104,7 @@
 
55548
 EXEEXT = @EXEEXT@
 
55549
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
 
55550
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
 
55551
-F77 = @F77@
 
55552
-FFLAGS = @FFLAGS@
 
55553
+FGREP = @FGREP@
 
55554
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
 
55555
 GCONFTOOL = @GCONFTOOL@
 
55556
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
 
55557
@@ -153,6 +154,7 @@
 
55558
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
 
55559
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
 
55560
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
 
55561
+LD = @LD@
 
55562
 LDFLAGS = @LDFLAGS@
 
55563
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
 
55564
 LIBEPC_LIBS = @LIBEPC_LIBS@
 
55565
@@ -161,6 +163,7 @@
 
55566
 LIBOBJS = @LIBOBJS@
 
55567
 LIBS = @LIBS@
 
55568
 LIBTOOL = @LIBTOOL@
 
55569
+LIPO = @LIPO@
 
55570
 LIRC_LIBS = @LIRC_LIBS@
 
55571
 LN_S = @LN_S@
 
55572
 LTLIBOBJS = @LTLIBOBJS@
 
55573
@@ -180,12 +183,15 @@
 
55574
 NAUTILUSDIR = @NAUTILUSDIR@
 
55575
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
 
55576
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
 
55577
+NM = @NM@
 
55578
 NMEDIT = @NMEDIT@
 
55579
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
 
55580
 NVTV_CFLAGS = @NVTV_CFLAGS@
 
55581
 NVTV_LIBS = @NVTV_LIBS@
 
55582
 OBJEXT = @OBJEXT@
 
55583
 OMF_DIR = @OMF_DIR@
 
55584
+OTOOL = @OTOOL@
 
55585
+OTOOL64 = @OTOOL64@
 
55586
 PACKAGE = @PACKAGE@
 
55587
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
 
55588
 PACKAGE_NAME = @PACKAGE_NAME@
 
55589
@@ -247,7 +253,7 @@
 
55590
 abs_top_srcdir = @abs_top_srcdir@
 
55591
 ac_ct_CC = @ac_ct_CC@
 
55592
 ac_ct_CXX = @ac_ct_CXX@
 
55593
-ac_ct_F77 = @ac_ct_F77@
 
55594
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
 
55595
 am__include = @am__include@
 
55596
 am__leading_dot = @am__leading_dot@
 
55597
 am__quote = @am__quote@
 
55598
@@ -278,6 +284,7 @@
 
55599
 libexecdir = @libexecdir@
 
55600
 localedir = @localedir@
 
55601
 localstatedir = @localstatedir@
 
55602
+lt_ECHO = @lt_ECHO@
 
55603
 mandir = @mandir@
 
55604
 mkdir_p = @mkdir_p@
 
55605
 oldincludedir = @oldincludedir@
 
55606
@@ -294,7 +301,6 @@
 
55607
 srcdir = @srcdir@
 
55608
 sysconfdir = @sysconfdir@
 
55609
 target_alias = @target_alias@
 
55610
-top_build_prefix = @top_build_prefix@
 
55611
 top_builddir = @top_builddir@
 
55612
 top_srcdir = @top_srcdir@
 
55613
 icondir = $(datadir)/icons/hicolor/16x16/apps
 
55614
Index: totem-2.24.3/data/icons/22x22/Makefile.in
 
55615
===================================================================
 
55616
--- totem-2.24.3.orig/data/icons/22x22/Makefile.in      2008-10-26 15:40:45.000000000 +0100
 
55617
+++ totem-2.24.3/data/icons/22x22/Makefile.in   2008-10-30 19:06:36.000000000 +0100
 
55618
@@ -67,6 +67,8 @@
 
55619
 AUTOHEADER = @AUTOHEADER@
 
55620
 AUTOMAKE = @AUTOMAKE@
 
55621
 AWK = @AWK@
 
55622
+BBC_CFLAGS = @BBC_CFLAGS@
 
55623
+BBC_LIBS = @BBC_LIBS@
 
55624
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
 
55625
 BEMUSED_LIBS = @BEMUSED_LIBS@
 
55626
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
 
55627
@@ -94,7 +96,7 @@
 
55628
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
 
55629
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
55630
 DSYMUTIL = @DSYMUTIL@
 
55631
-ECHO = @ECHO@
 
55632
+DUMPBIN = @DUMPBIN@
 
55633
 ECHO_C = @ECHO_C@
 
55634
 ECHO_N = @ECHO_N@
 
55635
 ECHO_T = @ECHO_T@
 
55636
@@ -102,8 +104,7 @@
 
55637
 EXEEXT = @EXEEXT@
 
55638
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
 
55639
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
 
55640
-F77 = @F77@
 
55641
-FFLAGS = @FFLAGS@
 
55642
+FGREP = @FGREP@
 
55643
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
 
55644
 GCONFTOOL = @GCONFTOOL@
 
55645
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
 
55646
@@ -153,6 +154,7 @@
 
55647
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
 
55648
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
 
55649
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
 
55650
+LD = @LD@
 
55651
 LDFLAGS = @LDFLAGS@
 
55652
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
 
55653
 LIBEPC_LIBS = @LIBEPC_LIBS@
 
55654
@@ -161,6 +163,7 @@
 
55655
 LIBOBJS = @LIBOBJS@
 
55656
 LIBS = @LIBS@
 
55657
 LIBTOOL = @LIBTOOL@
 
55658
+LIPO = @LIPO@
 
55659
 LIRC_LIBS = @LIRC_LIBS@
 
55660
 LN_S = @LN_S@
 
55661
 LTLIBOBJS = @LTLIBOBJS@
 
55662
@@ -180,12 +183,15 @@
 
55663
 NAUTILUSDIR = @NAUTILUSDIR@
 
55664
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
 
55665
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
 
55666
+NM = @NM@
 
55667
 NMEDIT = @NMEDIT@
 
55668
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
 
55669
 NVTV_CFLAGS = @NVTV_CFLAGS@
 
55670
 NVTV_LIBS = @NVTV_LIBS@
 
55671
 OBJEXT = @OBJEXT@
 
55672
 OMF_DIR = @OMF_DIR@
 
55673
+OTOOL = @OTOOL@
 
55674
+OTOOL64 = @OTOOL64@
 
55675
 PACKAGE = @PACKAGE@
 
55676
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
 
55677
 PACKAGE_NAME = @PACKAGE_NAME@
 
55678
@@ -247,7 +253,7 @@
 
55679
 abs_top_srcdir = @abs_top_srcdir@
 
55680
 ac_ct_CC = @ac_ct_CC@
 
55681
 ac_ct_CXX = @ac_ct_CXX@
 
55682
-ac_ct_F77 = @ac_ct_F77@
 
55683
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
 
55684
 am__include = @am__include@
 
55685
 am__leading_dot = @am__leading_dot@
 
55686
 am__quote = @am__quote@
 
55687
@@ -278,6 +284,7 @@
 
55688
 libexecdir = @libexecdir@
 
55689
 localedir = @localedir@
 
55690
 localstatedir = @localstatedir@
 
55691
+lt_ECHO = @lt_ECHO@
 
55692
 mandir = @mandir@
 
55693
 mkdir_p = @mkdir_p@
 
55694
 oldincludedir = @oldincludedir@
 
55695
@@ -294,7 +301,6 @@
 
55696
 srcdir = @srcdir@
 
55697
 sysconfdir = @sysconfdir@
 
55698
 target_alias = @target_alias@
 
55699
-top_build_prefix = @top_build_prefix@
 
55700
 top_builddir = @top_builddir@
 
55701
 top_srcdir = @top_srcdir@
 
55702
 icondir = $(datadir)/icons/hicolor/22x22/apps
 
55703
Index: totem-2.24.3/data/icons/24x24/Makefile.in
 
55704
===================================================================
 
55705
--- totem-2.24.3.orig/data/icons/24x24/Makefile.in      2008-10-26 15:40:45.000000000 +0100
 
55706
+++ totem-2.24.3/data/icons/24x24/Makefile.in   2008-10-30 19:06:36.000000000 +0100
 
55707
@@ -67,6 +67,8 @@
 
55708
 AUTOHEADER = @AUTOHEADER@
 
55709
 AUTOMAKE = @AUTOMAKE@
 
55710
 AWK = @AWK@
 
55711
+BBC_CFLAGS = @BBC_CFLAGS@
 
55712
+BBC_LIBS = @BBC_LIBS@
 
55713
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
 
55714
 BEMUSED_LIBS = @BEMUSED_LIBS@
 
55715
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
 
55716
@@ -94,7 +96,7 @@
 
55717
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
 
55718
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
55719
 DSYMUTIL = @DSYMUTIL@
 
55720
-ECHO = @ECHO@
 
55721
+DUMPBIN = @DUMPBIN@
 
55722
 ECHO_C = @ECHO_C@
 
55723
 ECHO_N = @ECHO_N@
 
55724
 ECHO_T = @ECHO_T@
 
55725
@@ -102,8 +104,7 @@
 
55726
 EXEEXT = @EXEEXT@
 
55727
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
 
55728
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
 
55729
-F77 = @F77@
 
55730
-FFLAGS = @FFLAGS@
 
55731
+FGREP = @FGREP@
 
55732
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
 
55733
 GCONFTOOL = @GCONFTOOL@
 
55734
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
 
55735
@@ -153,6 +154,7 @@
 
55736
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
 
55737
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
 
55738
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
 
55739
+LD = @LD@
 
55740
 LDFLAGS = @LDFLAGS@
 
55741
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
 
55742
 LIBEPC_LIBS = @LIBEPC_LIBS@
 
55743
@@ -161,6 +163,7 @@
 
55744
 LIBOBJS = @LIBOBJS@
 
55745
 LIBS = @LIBS@
 
55746
 LIBTOOL = @LIBTOOL@
 
55747
+LIPO = @LIPO@
 
55748
 LIRC_LIBS = @LIRC_LIBS@
 
55749
 LN_S = @LN_S@
 
55750
 LTLIBOBJS = @LTLIBOBJS@
 
55751
@@ -180,12 +183,15 @@
 
55752
 NAUTILUSDIR = @NAUTILUSDIR@
 
55753
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
 
55754
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
 
55755
+NM = @NM@
 
55756
 NMEDIT = @NMEDIT@
 
55757
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
 
55758
 NVTV_CFLAGS = @NVTV_CFLAGS@
 
55759
 NVTV_LIBS = @NVTV_LIBS@
 
55760
 OBJEXT = @OBJEXT@
 
55761
 OMF_DIR = @OMF_DIR@
 
55762
+OTOOL = @OTOOL@
 
55763
+OTOOL64 = @OTOOL64@
 
55764
 PACKAGE = @PACKAGE@
 
55765
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
 
55766
 PACKAGE_NAME = @PACKAGE_NAME@
 
55767
@@ -247,7 +253,7 @@
 
55768
 abs_top_srcdir = @abs_top_srcdir@
 
55769
 ac_ct_CC = @ac_ct_CC@
 
55770
 ac_ct_CXX = @ac_ct_CXX@
 
55771
-ac_ct_F77 = @ac_ct_F77@
 
55772
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
 
55773
 am__include = @am__include@
 
55774
 am__leading_dot = @am__leading_dot@
 
55775
 am__quote = @am__quote@
 
55776
@@ -278,6 +284,7 @@
 
55777
 libexecdir = @libexecdir@
 
55778
 localedir = @localedir@
 
55779
 localstatedir = @localstatedir@
 
55780
+lt_ECHO = @lt_ECHO@
 
55781
 mandir = @mandir@
 
55782
 mkdir_p = @mkdir_p@
 
55783
 oldincludedir = @oldincludedir@
 
55784
@@ -294,7 +301,6 @@
 
55785
 srcdir = @srcdir@
 
55786
 sysconfdir = @sysconfdir@
 
55787
 target_alias = @target_alias@
 
55788
-top_build_prefix = @top_build_prefix@
 
55789
 top_builddir = @top_builddir@
 
55790
 top_srcdir = @top_srcdir@
 
55791
 icondir = $(datadir)/icons/hicolor/24x24/apps
 
55792
Index: totem-2.24.3/data/icons/32x32/Makefile.in
 
55793
===================================================================
 
55794
--- totem-2.24.3.orig/data/icons/32x32/Makefile.in      2008-10-26 15:40:45.000000000 +0100
 
55795
+++ totem-2.24.3/data/icons/32x32/Makefile.in   2008-10-30 19:06:36.000000000 +0100
 
55796
@@ -67,6 +67,8 @@
 
55797
 AUTOHEADER = @AUTOHEADER@
 
55798
 AUTOMAKE = @AUTOMAKE@
 
55799
 AWK = @AWK@
 
55800
+BBC_CFLAGS = @BBC_CFLAGS@
 
55801
+BBC_LIBS = @BBC_LIBS@
 
55802
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
 
55803
 BEMUSED_LIBS = @BEMUSED_LIBS@
 
55804
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
 
55805
@@ -94,7 +96,7 @@
 
55806
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
 
55807
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
55808
 DSYMUTIL = @DSYMUTIL@
 
55809
-ECHO = @ECHO@
 
55810
+DUMPBIN = @DUMPBIN@
 
55811
 ECHO_C = @ECHO_C@
 
55812
 ECHO_N = @ECHO_N@
 
55813
 ECHO_T = @ECHO_T@
 
55814
@@ -102,8 +104,7 @@
 
55815
 EXEEXT = @EXEEXT@
 
55816
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
 
55817
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
 
55818
-F77 = @F77@
 
55819
-FFLAGS = @FFLAGS@
 
55820
+FGREP = @FGREP@
 
55821
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
 
55822
 GCONFTOOL = @GCONFTOOL@
 
55823
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
 
55824
@@ -153,6 +154,7 @@
 
55825
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
 
55826
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
 
55827
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
 
55828
+LD = @LD@
 
55829
 LDFLAGS = @LDFLAGS@
 
55830
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
 
55831
 LIBEPC_LIBS = @LIBEPC_LIBS@
 
55832
@@ -161,6 +163,7 @@
 
55833
 LIBOBJS = @LIBOBJS@
 
55834
 LIBS = @LIBS@
 
55835
 LIBTOOL = @LIBTOOL@
 
55836
+LIPO = @LIPO@
 
55837
 LIRC_LIBS = @LIRC_LIBS@
 
55838
 LN_S = @LN_S@
 
55839
 LTLIBOBJS = @LTLIBOBJS@
 
55840
@@ -180,12 +183,15 @@
 
55841
 NAUTILUSDIR = @NAUTILUSDIR@
 
55842
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
 
55843
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
 
55844
+NM = @NM@
 
55845
 NMEDIT = @NMEDIT@
 
55846
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
 
55847
 NVTV_CFLAGS = @NVTV_CFLAGS@
 
55848
 NVTV_LIBS = @NVTV_LIBS@
 
55849
 OBJEXT = @OBJEXT@
 
55850
 OMF_DIR = @OMF_DIR@
 
55851
+OTOOL = @OTOOL@
 
55852
+OTOOL64 = @OTOOL64@
 
55853
 PACKAGE = @PACKAGE@
 
55854
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
 
55855
 PACKAGE_NAME = @PACKAGE_NAME@
 
55856
@@ -247,7 +253,7 @@
 
55857
 abs_top_srcdir = @abs_top_srcdir@
 
55858
 ac_ct_CC = @ac_ct_CC@
 
55859
 ac_ct_CXX = @ac_ct_CXX@
 
55860
-ac_ct_F77 = @ac_ct_F77@
 
55861
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
 
55862
 am__include = @am__include@
 
55863
 am__leading_dot = @am__leading_dot@
 
55864
 am__quote = @am__quote@
 
55865
@@ -278,6 +284,7 @@
 
55866
 libexecdir = @libexecdir@
 
55867
 localedir = @localedir@
 
55868
 localstatedir = @localstatedir@
 
55869
+lt_ECHO = @lt_ECHO@
 
55870
 mandir = @mandir@
 
55871
 mkdir_p = @mkdir_p@
 
55872
 oldincludedir = @oldincludedir@
 
55873
@@ -294,7 +301,6 @@
 
55874
 srcdir = @srcdir@
 
55875
 sysconfdir = @sysconfdir@
 
55876
 target_alias = @target_alias@
 
55877
-top_build_prefix = @top_build_prefix@
 
55878
 top_builddir = @top_builddir@
 
55879
 top_srcdir = @top_srcdir@
 
55880
 icondir = $(datadir)/icons/hicolor/32x32/apps
 
55881
Index: totem-2.24.3/data/icons/48x48/Makefile.in
 
55882
===================================================================
 
55883
--- totem-2.24.3.orig/data/icons/48x48/Makefile.in      2008-10-26 15:40:46.000000000 +0100
 
55884
+++ totem-2.24.3/data/icons/48x48/Makefile.in   2008-10-30 19:06:36.000000000 +0100
 
55885
@@ -67,6 +67,8 @@
 
55886
 AUTOHEADER = @AUTOHEADER@
 
55887
 AUTOMAKE = @AUTOMAKE@
 
55888
 AWK = @AWK@
 
55889
+BBC_CFLAGS = @BBC_CFLAGS@
 
55890
+BBC_LIBS = @BBC_LIBS@
 
55891
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
 
55892
 BEMUSED_LIBS = @BEMUSED_LIBS@
 
55893
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
 
55894
@@ -94,7 +96,7 @@
 
55895
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
 
55896
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
55897
 DSYMUTIL = @DSYMUTIL@
 
55898
-ECHO = @ECHO@
 
55899
+DUMPBIN = @DUMPBIN@
 
55900
 ECHO_C = @ECHO_C@
 
55901
 ECHO_N = @ECHO_N@
 
55902
 ECHO_T = @ECHO_T@
 
55903
@@ -102,8 +104,7 @@
 
55904
 EXEEXT = @EXEEXT@
 
55905
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
 
55906
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
 
55907
-F77 = @F77@
 
55908
-FFLAGS = @FFLAGS@
 
55909
+FGREP = @FGREP@
 
55910
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
 
55911
 GCONFTOOL = @GCONFTOOL@
 
55912
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
 
55913
@@ -153,6 +154,7 @@
 
55914
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
 
55915
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
 
55916
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
 
55917
+LD = @LD@
 
55918
 LDFLAGS = @LDFLAGS@
 
55919
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
 
55920
 LIBEPC_LIBS = @LIBEPC_LIBS@
 
55921
@@ -161,6 +163,7 @@
 
55922
 LIBOBJS = @LIBOBJS@
 
55923
 LIBS = @LIBS@
 
55924
 LIBTOOL = @LIBTOOL@
 
55925
+LIPO = @LIPO@
 
55926
 LIRC_LIBS = @LIRC_LIBS@
 
55927
 LN_S = @LN_S@
 
55928
 LTLIBOBJS = @LTLIBOBJS@
 
55929
@@ -180,12 +183,15 @@
 
55930
 NAUTILUSDIR = @NAUTILUSDIR@
 
55931
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
 
55932
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
 
55933
+NM = @NM@
 
55934
 NMEDIT = @NMEDIT@
 
55935
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
 
55936
 NVTV_CFLAGS = @NVTV_CFLAGS@
 
55937
 NVTV_LIBS = @NVTV_LIBS@
 
55938
 OBJEXT = @OBJEXT@
 
55939
 OMF_DIR = @OMF_DIR@
 
55940
+OTOOL = @OTOOL@
 
55941
+OTOOL64 = @OTOOL64@
 
55942
 PACKAGE = @PACKAGE@
 
55943
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
 
55944
 PACKAGE_NAME = @PACKAGE_NAME@
 
55945
@@ -247,7 +253,7 @@
 
55946
 abs_top_srcdir = @abs_top_srcdir@
 
55947
 ac_ct_CC = @ac_ct_CC@
 
55948
 ac_ct_CXX = @ac_ct_CXX@
 
55949
-ac_ct_F77 = @ac_ct_F77@
 
55950
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
 
55951
 am__include = @am__include@
 
55952
 am__leading_dot = @am__leading_dot@
 
55953
 am__quote = @am__quote@
 
55954
@@ -278,6 +284,7 @@
 
55955
 libexecdir = @libexecdir@
 
55956
 localedir = @localedir@
 
55957
 localstatedir = @localstatedir@
 
55958
+lt_ECHO = @lt_ECHO@
 
55959
 mandir = @mandir@
 
55960
 mkdir_p = @mkdir_p@
 
55961
 oldincludedir = @oldincludedir@
 
55962
@@ -294,7 +301,6 @@
 
55963
 srcdir = @srcdir@
 
55964
 sysconfdir = @sysconfdir@
 
55965
 target_alias = @target_alias@
 
55966
-top_build_prefix = @top_build_prefix@
 
55967
 top_builddir = @top_builddir@
 
55968
 top_srcdir = @top_srcdir@
 
55969
 icondir = $(datadir)/icons/hicolor/48x48/apps
 
55970
Index: totem-2.24.3/data/icons/Makefile.in
 
55971
===================================================================
 
55972
--- totem-2.24.3.orig/data/icons/Makefile.in    2008-10-26 15:40:46.000000000 +0100
 
55973
+++ totem-2.24.3/data/icons/Makefile.in 2008-10-30 19:06:36.000000000 +0100
39699
55974
@@ -69,6 +69,8 @@
39700
55975
 AUTOHEADER = @AUTOHEADER@
39701
55976
 AUTOMAKE = @AUTOMAKE@
39705
55980
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
39706
55981
 BEMUSED_LIBS = @BEMUSED_LIBS@
39707
55982
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
39708
 
@@ -95,7 +97,8 @@
39709
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
55983
@@ -96,7 +98,7 @@
39710
55984
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
39711
55985
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
55986
 DSYMUTIL = @DSYMUTIL@
39712
55987
-ECHO = @ECHO@
39713
 
+DSYMUTIL = @DSYMUTIL@
39714
55988
+DUMPBIN = @DUMPBIN@
39715
55989
 ECHO_C = @ECHO_C@
39716
55990
 ECHO_N = @ECHO_N@
39717
55991
 ECHO_T = @ECHO_T@
39718
 
@@ -103,8 +106,7 @@
 
55992
@@ -104,8 +106,7 @@
39719
55993
 EXEEXT = @EXEEXT@
39720
55994
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
39721
55995
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
39725
55999
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
39726
56000
 GCONFTOOL = @GCONFTOOL@
39727
56001
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
39728
 
@@ -154,6 +156,7 @@
 
56002
@@ -155,6 +156,7 @@
39729
56003
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
39730
56004
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
39731
56005
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
39733
56007
 LDFLAGS = @LDFLAGS@
39734
56008
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
39735
56009
 LIBEPC_LIBS = @LIBEPC_LIBS@
39736
 
@@ -162,6 +165,7 @@
 
56010
@@ -163,6 +165,7 @@
39737
56011
 LIBOBJS = @LIBOBJS@
39738
56012
 LIBS = @LIBS@
39739
56013
 LIBTOOL = @LIBTOOL@
39741
56015
 LIRC_LIBS = @LIRC_LIBS@
39742
56016
 LN_S = @LN_S@
39743
56017
 LTLIBOBJS = @LTLIBOBJS@
39744
 
@@ -181,11 +185,15 @@
 
56018
@@ -182,12 +185,15 @@
39745
56019
 NAUTILUSDIR = @NAUTILUSDIR@
39746
56020
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
39747
56021
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
39748
56022
+NM = @NM@
39749
 
+NMEDIT = @NMEDIT@
 
56023
 NMEDIT = @NMEDIT@
39750
56024
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
39751
56025
 NVTV_CFLAGS = @NVTV_CFLAGS@
39752
56026
 NVTV_LIBS = @NVTV_LIBS@
39757
56031
 PACKAGE = @PACKAGE@
39758
56032
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
39759
56033
 PACKAGE_NAME = @PACKAGE_NAME@
39760
 
@@ -247,7 +255,7 @@
 
56034
@@ -249,7 +255,7 @@
39761
56035
 abs_top_srcdir = @abs_top_srcdir@
39762
56036
 ac_ct_CC = @ac_ct_CC@
39763
56037
 ac_ct_CXX = @ac_ct_CXX@
39766
56040
 am__include = @am__include@
39767
56041
 am__leading_dot = @am__leading_dot@
39768
56042
 am__quote = @am__quote@
39769
 
@@ -278,6 +286,7 @@
 
56043
@@ -280,6 +286,7 @@
39770
56044
 libexecdir = @libexecdir@
39771
56045
 localedir = @localedir@
39772
56046
 localstatedir = @localstatedir@
39774
56048
 mandir = @mandir@
39775
56049
 mkdir_p = @mkdir_p@
39776
56050
 oldincludedir = @oldincludedir@
39777
 
diff -Nurb totem-2.24.2/data/icons/scalable/Makefile.in totem-2.24.2.new/data/icons/scalable/Makefile.in
39778
 
--- totem-2.24.2/data/icons/scalable/Makefile.in        2008-10-07 16:18:54.000000000 +0200
39779
 
+++ totem-2.24.2.new/data/icons/scalable/Makefile.in    2008-10-08 15:16:16.000000000 +0200
 
56051
@@ -296,7 +303,6 @@
 
56052
 srcdir = @srcdir@
 
56053
 sysconfdir = @sysconfdir@
 
56054
 target_alias = @target_alias@
 
56055
-top_build_prefix = @top_build_prefix@
 
56056
 top_builddir = @top_builddir@
 
56057
 top_srcdir = @top_srcdir@
 
56058
 SUBDIRS = 16x16 22x22 24x24 32x32 48x48 scalable
 
56059
Index: totem-2.24.3/data/icons/scalable/Makefile.in
 
56060
===================================================================
 
56061
--- totem-2.24.3.orig/data/icons/scalable/Makefile.in   2008-10-26 15:40:46.000000000 +0100
 
56062
+++ totem-2.24.3/data/icons/scalable/Makefile.in        2008-10-30 19:06:36.000000000 +0100
39780
56063
@@ -67,6 +67,8 @@
39781
56064
 AUTOHEADER = @AUTOHEADER@
39782
56065
 AUTOMAKE = @AUTOMAKE@
39786
56069
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
39787
56070
 BEMUSED_LIBS = @BEMUSED_LIBS@
39788
56071
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
39789
 
@@ -93,7 +95,8 @@
39790
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
56072
@@ -94,7 +96,7 @@
39791
56073
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
39792
56074
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
56075
 DSYMUTIL = @DSYMUTIL@
39793
56076
-ECHO = @ECHO@
39794
 
+DSYMUTIL = @DSYMUTIL@
39795
56077
+DUMPBIN = @DUMPBIN@
39796
56078
 ECHO_C = @ECHO_C@
39797
56079
 ECHO_N = @ECHO_N@
39798
56080
 ECHO_T = @ECHO_T@
39799
 
@@ -101,8 +104,7 @@
 
56081
@@ -102,8 +104,7 @@
39800
56082
 EXEEXT = @EXEEXT@
39801
56083
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
39802
56084
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
39806
56088
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
39807
56089
 GCONFTOOL = @GCONFTOOL@
39808
56090
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
39809
 
@@ -152,6 +154,7 @@
 
56091
@@ -153,6 +154,7 @@
39810
56092
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
39811
56093
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
39812
56094
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
39814
56096
 LDFLAGS = @LDFLAGS@
39815
56097
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
39816
56098
 LIBEPC_LIBS = @LIBEPC_LIBS@
39817
 
@@ -160,6 +163,7 @@
 
56099
@@ -161,6 +163,7 @@
39818
56100
 LIBOBJS = @LIBOBJS@
39819
56101
 LIBS = @LIBS@
39820
56102
 LIBTOOL = @LIBTOOL@
39822
56104
 LIRC_LIBS = @LIRC_LIBS@
39823
56105
 LN_S = @LN_S@
39824
56106
 LTLIBOBJS = @LTLIBOBJS@
39825
 
@@ -179,11 +183,15 @@
 
56107
@@ -180,12 +183,15 @@
39826
56108
 NAUTILUSDIR = @NAUTILUSDIR@
39827
56109
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
39828
56110
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
39829
56111
+NM = @NM@
39830
 
+NMEDIT = @NMEDIT@
 
56112
 NMEDIT = @NMEDIT@
39831
56113
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
39832
56114
 NVTV_CFLAGS = @NVTV_CFLAGS@
39833
56115
 NVTV_LIBS = @NVTV_LIBS@
39838
56120
 PACKAGE = @PACKAGE@
39839
56121
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
39840
56122
 PACKAGE_NAME = @PACKAGE_NAME@
39841
 
@@ -245,7 +253,7 @@
 
56123
@@ -247,7 +253,7 @@
39842
56124
 abs_top_srcdir = @abs_top_srcdir@
39843
56125
 ac_ct_CC = @ac_ct_CC@
39844
56126
 ac_ct_CXX = @ac_ct_CXX@
39847
56129
 am__include = @am__include@
39848
56130
 am__leading_dot = @am__leading_dot@
39849
56131
 am__quote = @am__quote@
39850
 
@@ -276,6 +284,7 @@
 
56132
@@ -278,6 +284,7 @@
39851
56133
 libexecdir = @libexecdir@
39852
56134
 localedir = @localedir@
39853
56135
 localstatedir = @localstatedir@
39855
56137
 mandir = @mandir@
39856
56138
 mkdir_p = @mkdir_p@
39857
56139
 oldincludedir = @oldincludedir@
39858
 
diff -Nurb totem-2.24.2/data/Makefile.in totem-2.24.2.new/data/Makefile.in
39859
 
--- totem-2.24.2/data/Makefile.in       2008-10-07 16:18:53.000000000 +0200
39860
 
+++ totem-2.24.2.new/data/Makefile.in   2008-10-08 15:16:16.000000000 +0200
 
56140
@@ -294,7 +301,6 @@
 
56141
 srcdir = @srcdir@
 
56142
 sysconfdir = @sysconfdir@
 
56143
 target_alias = @target_alias@
 
56144
-top_build_prefix = @top_build_prefix@
 
56145
 top_builddir = @top_builddir@
 
56146
 top_srcdir = @top_srcdir@
 
56147
 icondir = $(datadir)/icons/hicolor/scalable/apps
 
56148
Index: totem-2.24.3/data/Makefile.in
 
56149
===================================================================
 
56150
--- totem-2.24.3.orig/data/Makefile.in  2008-10-26 15:40:45.000000000 +0100
 
56151
+++ totem-2.24.3/data/Makefile.in       2008-10-30 19:06:36.000000000 +0100
39861
56152
@@ -92,6 +92,8 @@
39862
56153
 AUTOHEADER = @AUTOHEADER@
39863
56154
 AUTOMAKE = @AUTOMAKE@
39867
56158
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
39868
56159
 BEMUSED_LIBS = @BEMUSED_LIBS@
39869
56160
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
39870
 
@@ -118,7 +120,8 @@
39871
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
56161
@@ -119,7 +121,7 @@
39872
56162
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
39873
56163
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
56164
 DSYMUTIL = @DSYMUTIL@
39874
56165
-ECHO = @ECHO@
39875
 
+DSYMUTIL = @DSYMUTIL@
39876
56166
+DUMPBIN = @DUMPBIN@
39877
56167
 ECHO_C = @ECHO_C@
39878
56168
 ECHO_N = @ECHO_N@
39879
56169
 ECHO_T = @ECHO_T@
39880
 
@@ -126,8 +129,7 @@
 
56170
@@ -127,8 +129,7 @@
39881
56171
 EXEEXT = @EXEEXT@
39882
56172
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
39883
56173
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
39887
56177
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
39888
56178
 GCONFTOOL = @GCONFTOOL@
39889
56179
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
39890
 
@@ -177,6 +179,7 @@
 
56180
@@ -178,6 +179,7 @@
39891
56181
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
39892
56182
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
39893
56183
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
39895
56185
 LDFLAGS = @LDFLAGS@
39896
56186
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
39897
56187
 LIBEPC_LIBS = @LIBEPC_LIBS@
39898
 
@@ -185,6 +188,7 @@
 
56188
@@ -186,6 +188,7 @@
39899
56189
 LIBOBJS = @LIBOBJS@
39900
56190
 LIBS = @LIBS@
39901
56191
 LIBTOOL = @LIBTOOL@
39903
56193
 LIRC_LIBS = @LIRC_LIBS@
39904
56194
 LN_S = @LN_S@
39905
56195
 LTLIBOBJS = @LTLIBOBJS@
39906
 
@@ -204,11 +208,15 @@
 
56196
@@ -205,12 +208,15 @@
39907
56197
 NAUTILUSDIR = @NAUTILUSDIR@
39908
56198
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
39909
56199
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
39910
56200
+NM = @NM@
39911
 
+NMEDIT = @NMEDIT@
 
56201
 NMEDIT = @NMEDIT@
39912
56202
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
39913
56203
 NVTV_CFLAGS = @NVTV_CFLAGS@
39914
56204
 NVTV_LIBS = @NVTV_LIBS@
39919
56209
 PACKAGE = @PACKAGE@
39920
56210
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
39921
56211
 PACKAGE_NAME = @PACKAGE_NAME@
39922
 
@@ -270,7 +278,7 @@
 
56212
@@ -272,7 +278,7 @@
39923
56213
 abs_top_srcdir = @abs_top_srcdir@
39924
56214
 ac_ct_CC = @ac_ct_CC@
39925
56215
 ac_ct_CXX = @ac_ct_CXX@
39928
56218
 am__include = @am__include@
39929
56219
 am__leading_dot = @am__leading_dot@
39930
56220
 am__quote = @am__quote@
39931
 
@@ -301,6 +309,7 @@
 
56221
@@ -303,6 +309,7 @@
39932
56222
 libexecdir = @libexecdir@
39933
56223
 localedir = @localedir@
39934
56224
 localstatedir = @localstatedir@
39936
56226
 mandir = @mandir@
39937
56227
 mkdir_p = @mkdir_p@
39938
56228
 oldincludedir = @oldincludedir@
39939
 
diff -Nurb totem-2.24.2/help/bg/Makefile.in totem-2.24.2.new/help/bg/Makefile.in
39940
 
--- totem-2.24.2/help/bg/Makefile.in    2008-10-07 16:18:55.000000000 +0200
39941
 
+++ totem-2.24.2.new/help/bg/Makefile.in        2008-10-08 15:16:16.000000000 +0200
 
56229
@@ -319,7 +326,6 @@
 
56230
 srcdir = @srcdir@
 
56231
 sysconfdir = @sysconfdir@
 
56232
 target_alias = @target_alias@
 
56233
-top_build_prefix = @top_build_prefix@
 
56234
 top_builddir = @top_builddir@
 
56235
 top_srcdir = @top_srcdir@
 
56236
 SUBDIRS = icons
 
56237
Index: totem-2.24.3/help/bg/Makefile.in
 
56238
===================================================================
 
56239
--- totem-2.24.3.orig/help/bg/Makefile.in       2008-10-26 15:40:46.000000000 +0100
 
56240
+++ totem-2.24.3/help/bg/Makefile.in    2008-10-30 19:06:36.000000000 +0100
39942
56241
@@ -122,6 +122,8 @@
39943
56242
 AUTOHEADER = @AUTOHEADER@
39944
56243
 AUTOMAKE = @AUTOMAKE@
39948
56247
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
39949
56248
 BEMUSED_LIBS = @BEMUSED_LIBS@
39950
56249
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
39951
 
@@ -148,7 +150,8 @@
39952
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
56250
@@ -149,7 +151,7 @@
39953
56251
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
39954
56252
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
56253
 DSYMUTIL = @DSYMUTIL@
39955
56254
-ECHO = @ECHO@
39956
 
+DSYMUTIL = @DSYMUTIL@
39957
56255
+DUMPBIN = @DUMPBIN@
39958
56256
 ECHO_C = @ECHO_C@
39959
56257
 ECHO_N = @ECHO_N@
39960
56258
 ECHO_T = @ECHO_T@
39961
 
@@ -156,8 +159,7 @@
 
56259
@@ -157,8 +159,7 @@
39962
56260
 EXEEXT = @EXEEXT@
39963
56261
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
39964
56262
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
39968
56266
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
39969
56267
 GCONFTOOL = @GCONFTOOL@
39970
56268
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
39971
 
@@ -207,6 +209,7 @@
 
56269
@@ -208,6 +209,7 @@
39972
56270
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
39973
56271
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
39974
56272
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
39976
56274
 LDFLAGS = @LDFLAGS@
39977
56275
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
39978
56276
 LIBEPC_LIBS = @LIBEPC_LIBS@
39979
 
@@ -215,6 +218,7 @@
 
56277
@@ -216,6 +218,7 @@
39980
56278
 LIBOBJS = @LIBOBJS@
39981
56279
 LIBS = @LIBS@
39982
56280
 LIBTOOL = @LIBTOOL@
39984
56282
 LIRC_LIBS = @LIRC_LIBS@
39985
56283
 LN_S = @LN_S@
39986
56284
 LTLIBOBJS = @LTLIBOBJS@
39987
 
@@ -234,11 +238,15 @@
 
56285
@@ -235,12 +238,15 @@
39988
56286
 NAUTILUSDIR = @NAUTILUSDIR@
39989
56287
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
39990
56288
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
39991
56289
+NM = @NM@
39992
 
+NMEDIT = @NMEDIT@
 
56290
 NMEDIT = @NMEDIT@
39993
56291
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
39994
56292
 NVTV_CFLAGS = @NVTV_CFLAGS@
39995
56293
 NVTV_LIBS = @NVTV_LIBS@
40000
56298
 PACKAGE = @PACKAGE@
40001
56299
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
40002
56300
 PACKAGE_NAME = @PACKAGE_NAME@
40003
 
@@ -300,7 +308,7 @@
 
56301
@@ -302,7 +308,7 @@
40004
56302
 abs_top_srcdir = @abs_top_srcdir@
40005
56303
 ac_ct_CC = @ac_ct_CC@
40006
56304
 ac_ct_CXX = @ac_ct_CXX@
40009
56307
 am__include = @am__include@
40010
56308
 am__leading_dot = @am__leading_dot@
40011
56309
 am__quote = @am__quote@
40012
 
@@ -336,6 +344,7 @@
 
56310
@@ -338,6 +344,7 @@
40013
56311
 libexecdir = @libexecdir@
40014
56312
 localedir = @localedir@
40015
56313
 localstatedir = @localstatedir@
40017
56315
 mandir = @mandir@
40018
56316
 mkdir_p = @mkdir_p@
40019
56317
 oldincludedir = @oldincludedir@
40020
 
diff -Nurb totem-2.24.2/help/Makefile.in totem-2.24.2.new/help/Makefile.in
40021
 
--- totem-2.24.2/help/Makefile.in       2008-10-07 16:18:55.000000000 +0200
40022
 
+++ totem-2.24.2.new/help/Makefile.in   2008-10-08 15:16:16.000000000 +0200
 
56318
@@ -354,7 +361,6 @@
 
56319
 srcdir = @srcdir@
 
56320
 sysconfdir = @sysconfdir@
 
56321
 target_alias = @target_alias@
 
56322
-top_build_prefix = @top_build_prefix@
 
56323
 top_builddir = @top_builddir@
 
56324
 top_srcdir = @top_srcdir@
 
56325
 figdir = figures
 
56326
Index: totem-2.24.3/help/Makefile.in
 
56327
===================================================================
 
56328
--- totem-2.24.3.orig/help/Makefile.in  2008-10-26 15:40:46.000000000 +0100
 
56329
+++ totem-2.24.3/help/Makefile.in       2008-10-30 19:06:36.000000000 +0100
40023
56330
@@ -94,6 +94,8 @@
40024
56331
 AUTOHEADER = @AUTOHEADER@
40025
56332
 AUTOMAKE = @AUTOMAKE@
40029
56336
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
40030
56337
 BEMUSED_LIBS = @BEMUSED_LIBS@
40031
56338
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
40032
 
@@ -120,7 +122,8 @@
40033
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
56339
@@ -121,7 +123,7 @@
40034
56340
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
40035
56341
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
56342
 DSYMUTIL = @DSYMUTIL@
40036
56343
-ECHO = @ECHO@
40037
 
+DSYMUTIL = @DSYMUTIL@
40038
56344
+DUMPBIN = @DUMPBIN@
40039
56345
 ECHO_C = @ECHO_C@
40040
56346
 ECHO_N = @ECHO_N@
40041
56347
 ECHO_T = @ECHO_T@
40042
 
@@ -128,8 +131,7 @@
 
56348
@@ -129,8 +131,7 @@
40043
56349
 EXEEXT = @EXEEXT@
40044
56350
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
40045
56351
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
40049
56355
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
40050
56356
 GCONFTOOL = @GCONFTOOL@
40051
56357
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
40052
 
@@ -179,6 +181,7 @@
 
56358
@@ -180,6 +181,7 @@
40053
56359
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
40054
56360
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
40055
56361
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
40057
56363
 LDFLAGS = @LDFLAGS@
40058
56364
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
40059
56365
 LIBEPC_LIBS = @LIBEPC_LIBS@
40060
 
@@ -187,6 +190,7 @@
 
56366
@@ -188,6 +190,7 @@
40061
56367
 LIBOBJS = @LIBOBJS@
40062
56368
 LIBS = @LIBS@
40063
56369
 LIBTOOL = @LIBTOOL@
40065
56371
 LIRC_LIBS = @LIRC_LIBS@
40066
56372
 LN_S = @LN_S@
40067
56373
 LTLIBOBJS = @LTLIBOBJS@
40068
 
@@ -206,11 +210,15 @@
 
56374
@@ -207,12 +210,15 @@
40069
56375
 NAUTILUSDIR = @NAUTILUSDIR@
40070
56376
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
40071
56377
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
40072
56378
+NM = @NM@
40073
 
+NMEDIT = @NMEDIT@
 
56379
 NMEDIT = @NMEDIT@
40074
56380
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
40075
56381
 NVTV_CFLAGS = @NVTV_CFLAGS@
40076
56382
 NVTV_LIBS = @NVTV_LIBS@
40081
56387
 PACKAGE = @PACKAGE@
40082
56388
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
40083
56389
 PACKAGE_NAME = @PACKAGE_NAME@
40084
 
@@ -272,7 +280,7 @@
 
56390
@@ -274,7 +280,7 @@
40085
56391
 abs_top_srcdir = @abs_top_srcdir@
40086
56392
 ac_ct_CC = @ac_ct_CC@
40087
56393
 ac_ct_CXX = @ac_ct_CXX@
40090
56396
 am__include = @am__include@
40091
56397
 am__leading_dot = @am__leading_dot@
40092
56398
 am__quote = @am__quote@
40093
 
@@ -303,6 +311,7 @@
 
56399
@@ -305,6 +311,7 @@
40094
56400
 libexecdir = @libexecdir@
40095
56401
 localedir = @localedir@
40096
56402
 localstatedir = @localstatedir@
40098
56404
 mandir = @mandir@
40099
56405
 mkdir_p = @mkdir_p@
40100
56406
 oldincludedir = @oldincludedir@
40101
 
diff -Nurb totem-2.24.2/lib/Makefile.in totem-2.24.2.new/lib/Makefile.in
40102
 
--- totem-2.24.2/lib/Makefile.in        2008-10-07 16:18:55.000000000 +0200
40103
 
+++ totem-2.24.2.new/lib/Makefile.in    2008-10-08 15:16:17.000000000 +0200
 
56407
@@ -321,7 +328,6 @@
 
56408
 srcdir = @srcdir@
 
56409
 sysconfdir = @sysconfdir@
 
56410
 target_alias = @target_alias@
 
56411
-top_build_prefix = @top_build_prefix@
 
56412
 top_builddir = @top_builddir@
 
56413
 top_srcdir = @top_srcdir@
 
56414
 _clean_doc_header = $(if $(DOC_H_FILE),clean-doc-header)
 
56415
Index: totem-2.24.3/lib/Makefile.in
 
56416
===================================================================
 
56417
--- totem-2.24.3.orig/lib/Makefile.in   2008-10-26 15:40:46.000000000 +0100
 
56418
+++ totem-2.24.3/lib/Makefile.in        2008-10-30 19:06:36.000000000 +0100
40104
56419
@@ -83,6 +83,8 @@
40105
56420
 AUTOHEADER = @AUTOHEADER@
40106
56421
 AUTOMAKE = @AUTOMAKE@
40110
56425
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
40111
56426
 BEMUSED_LIBS = @BEMUSED_LIBS@
40112
56427
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
40113
 
@@ -109,7 +111,8 @@
40114
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
56428
@@ -110,7 +112,7 @@
40115
56429
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
40116
56430
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
56431
 DSYMUTIL = @DSYMUTIL@
40117
56432
-ECHO = @ECHO@
40118
 
+DSYMUTIL = @DSYMUTIL@
40119
56433
+DUMPBIN = @DUMPBIN@
40120
56434
 ECHO_C = @ECHO_C@
40121
56435
 ECHO_N = @ECHO_N@
40122
56436
 ECHO_T = @ECHO_T@
40123
 
@@ -117,8 +120,7 @@
 
56437
@@ -118,8 +120,7 @@
40124
56438
 EXEEXT = @EXEEXT@
40125
56439
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
40126
56440
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
40130
56444
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
40131
56445
 GCONFTOOL = @GCONFTOOL@
40132
56446
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
40133
 
@@ -168,6 +170,7 @@
 
56447
@@ -169,6 +170,7 @@
40134
56448
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
40135
56449
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
40136
56450
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
40138
56452
 LDFLAGS = @LDFLAGS@
40139
56453
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
40140
56454
 LIBEPC_LIBS = @LIBEPC_LIBS@
40141
 
@@ -176,6 +179,7 @@
 
56455
@@ -177,6 +179,7 @@
40142
56456
 LIBOBJS = @LIBOBJS@
40143
56457
 LIBS = @LIBS@
40144
56458
 LIBTOOL = @LIBTOOL@
40146
56460
 LIRC_LIBS = @LIRC_LIBS@
40147
56461
 LN_S = @LN_S@
40148
56462
 LTLIBOBJS = @LTLIBOBJS@
40149
 
@@ -195,11 +199,15 @@
 
56463
@@ -196,12 +199,15 @@
40150
56464
 NAUTILUSDIR = @NAUTILUSDIR@
40151
56465
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
40152
56466
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
40153
56467
+NM = @NM@
40154
 
+NMEDIT = @NMEDIT@
 
56468
 NMEDIT = @NMEDIT@
40155
56469
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
40156
56470
 NVTV_CFLAGS = @NVTV_CFLAGS@
40157
56471
 NVTV_LIBS = @NVTV_LIBS@
40162
56476
 PACKAGE = @PACKAGE@
40163
56477
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
40164
56478
 PACKAGE_NAME = @PACKAGE_NAME@
40165
 
@@ -261,7 +269,7 @@
 
56479
@@ -263,7 +269,7 @@
40166
56480
 abs_top_srcdir = @abs_top_srcdir@
40167
56481
 ac_ct_CC = @ac_ct_CC@
40168
56482
 ac_ct_CXX = @ac_ct_CXX@
40171
56485
 am__include = @am__include@
40172
56486
 am__leading_dot = @am__leading_dot@
40173
56487
 am__quote = @am__quote@
40174
 
@@ -292,6 +300,7 @@
 
56488
@@ -294,6 +300,7 @@
40175
56489
 libexecdir = @libexecdir@
40176
56490
 localedir = @localedir@
40177
56491
 localstatedir = @localstatedir@
40179
56493
 mandir = @mandir@
40180
56494
 mkdir_p = @mkdir_p@
40181
56495
 oldincludedir = @oldincludedir@
40182
 
diff -Nurb totem-2.24.2/ltmain.sh totem-2.24.2.new/ltmain.sh
40183
 
--- totem-2.24.2/ltmain.sh      2008-01-30 21:27:02.000000000 +0100
40184
 
+++ totem-2.24.2.new/ltmain.sh  2008-10-08 15:16:06.000000000 +0200
 
56496
@@ -310,7 +317,6 @@
 
56497
 srcdir = @srcdir@
 
56498
 sysconfdir = @sysconfdir@
 
56499
 target_alias = @target_alias@
 
56500
-top_build_prefix = @top_build_prefix@
 
56501
 top_builddir = @top_builddir@
 
56502
 top_srcdir = @top_srcdir@
 
56503
 noinst_LTLIBRARIES = \
 
56504
Index: totem-2.24.3/ltmain.sh
 
56505
===================================================================
 
56506
--- totem-2.24.3.orig/ltmain.sh 2008-01-30 21:27:02.000000000 +0100
 
56507
+++ totem-2.24.3/ltmain.sh      2008-10-30 19:06:19.000000000 +0100
40185
56508
@@ -1,52 +1,83 @@
40186
56509
-# ltmain.sh - Provide generalized library-building support services.
40187
56510
-# NOTE: Changing this file will not affect anything until you rerun configure.
40645
56968
       # Return a directory name, but don't create it in dry-run mode
40646
56969
       my_tmpdir="${my_template}-$$"
40647
56970
     else
40648
 
@@ -175,495 +369,752 @@
 
56971
@@ -175,558 +369,812 @@
40649
56972
 
40650
56973
        save_mktempdir_umask=`umask`
40651
56974
        umask 0077
41083
57406
-    tag)
41084
57407
-      tagname="$arg"
41085
57408
-      preserve_args="${preserve_args}=$arg"
41086
 
+magic="%%%MAGIC variable%%%"
41087
 
+magic_exe="%%%MAGIC EXE variable%%%"
41088
 
 
 
57409
-
41089
57410
-      # Check whether tagname contains only valid characters
41090
57411
-      case $tagname in
41091
57412
-      *[!-_A-Za-z0-9,/]*)
41093
57414
-       exit $EXIT_FAILURE
41094
57415
-       ;;
41095
57416
-      esac
 
57417
+magic="%%%MAGIC variable%%%"
 
57418
+magic_exe="%%%MAGIC EXE variable%%%"
 
57419
 
 
57420
-      case $tagname in
 
57421
-      CC)
 
57422
-       # Don't test for the "default" C tag, as we know, it's there, but
 
57423
-       # not specially marked.
 
57424
-       ;;
 
57425
-      *)
 
57426
-       if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then
 
57427
-         taglist="$taglist $tagname"
 
57428
-         # Evaluate the configuration.
 
57429
-         eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`"
 
57430
-       else
 
57431
-         $echo "$progname: ignoring unknown tag $tagname" 1>&2
 
57432
-       fi
 
57433
-       ;;
 
57434
-      esac
 
57435
-      ;;
 
57436
-    *)
 
57437
-      eval "$prev=\$arg"
 
57438
-      ;;
 
57439
-    esac
41096
57440
+# Global variables.
41097
57441
+# $mode is unset
41098
57442
+nonopt=
41103
57447
+extracted_archives=
41104
57448
+extracted_serial=0
41105
57449
 
41106
 
-      case $tagname in
41107
 
-      CC)
41108
 
-       # Don't test for the "default" C tag, as we know, it's there, but
41109
 
-       # not specially marked.
41110
 
-       ;;
41111
 
-      *)
41112
 
-       if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then
41113
 
-         taglist="$taglist $tagname"
41114
 
-         # Evaluate the configuration.
41115
 
-         eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`"
41116
 
-       else
41117
 
-         $echo "$progname: ignoring unknown tag $tagname" 1>&2
41118
 
-       fi
41119
 
-       ;;
41120
 
-      esac
41121
 
-      ;;
41122
 
-    *)
41123
 
-      eval "$prev=\$arg"
41124
 
-      ;;
41125
 
-    esac
 
57450
-    prev=
 
57451
-    prevopt=
 
57452
-    continue
 
57453
-  fi
41126
57454
+opt_dry_run=false
41127
57455
+opt_duplicate_deps=false
41128
57456
+opt_silent=false
41129
57457
+opt_debug=:
41130
57458
 
41131
 
-    prev=
41132
 
-    prevopt=
41133
 
-    continue
41134
 
-  fi
 
57459
-  # Have we seen a non-optional argument yet?
 
57460
-  case $arg in
 
57461
-  --help)
 
57462
-    show_help=yes
 
57463
-    ;;
41135
57464
+# If this variable is set in any of the actions, the command in it
41136
57465
+# will be execed at the end.  This prevents here-documents from being
41137
57466
+# left over by shells.
41138
57467
+exec_cmd=
41139
57468
 
41140
 
-  # Have we seen a non-optional argument yet?
41141
 
-  case $arg in
41142
 
-  --help)
41143
 
-    show_help=yes
41144
 
-    ;;
41145
 
+# func_fatal_configuration arg...
41146
 
+# Echo program name prefixed message to standard error, followed by
41147
 
+# a configuration failure hint, and exit.
41148
 
+func_fatal_configuration ()
41149
 
+{
41150
 
+    func_error ${1+"$@"}
41151
 
+    func_error "See the $PACKAGE documentation for more information."
41152
 
+    func_fatal_error "Fatal configuration error."
41153
 
+}
41154
 
 
41155
57469
-  --version)
41156
57470
-    echo "\
41157
57471
-$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP
41158
 
 
 
57472
-
41159
57473
-Copyright (C) 2007  Free Software Foundation, Inc.
41160
57474
-This is free software; see the source for copying conditions.  There is NO
41161
57475
-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
41162
57476
-    exit $?
41163
57477
-    ;;
 
57478
+# func_fatal_configuration arg...
 
57479
+# Echo program name prefixed message to standard error, followed by
 
57480
+# a configuration failure hint, and exit.
 
57481
+func_fatal_configuration ()
 
57482
+{
 
57483
+    func_error ${1+"$@"}
 
57484
+    func_error "See the $PACKAGE documentation for more information."
 
57485
+    func_fatal_error "Fatal configuration error."
 
57486
+}
 
57487
+
 
57488
+
41164
57489
+# func_config
41165
57490
+# Display the configuration for all the tags in this script.
41166
57491
+func_config ()
41228
57553
+{
41229
57554
+  # Global variable:
41230
57555
+  tagname="$1"
41231
 
+
 
57556
 
 
57557
-  --mode) prevopt="--mode" prev=mode ;;
 
57558
-  --mode=*) mode="$optarg" ;;
41232
57559
+  re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
41233
57560
+  re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
41234
57561
+  sed_extractcf="/$re_begincf/,/$re_endcf/p"
41235
 
 
41236
 
-  --mode) prevopt="--mode" prev=mode ;;
41237
 
-  --mode=*) mode="$optarg" ;;
 
57562
+
41238
57563
+  # Validate tagname.
41239
57564
+  case $tagname in
41240
57565
+    *[!-_A-Za-z0-9,/]*)
41266
57591
     ;;
41267
57592
+  esac
41268
57593
+}
41269
 
+
 
57594
 
 
57595
-  --tag)
 
57596
-    prevopt="--tag"
 
57597
-    prev=tag
 
57598
-    preserve_args="$preserve_args --tag"
41270
57599
+# Parse options once, thoroughly.  This comes as soon as possible in
41271
57600
+# the script to make things like `libtool --version' happen quickly.
41272
57601
+{
41273
 
 
41274
 
-  --tag)
41275
 
-    prevopt="--tag"
41276
 
-    prev=tag
41277
 
-    preserve_args="$preserve_args --tag"
 
57602
+
41278
57603
+  # Shorthand for --mode=foo, only valid as the first argument
41279
57604
+  case $1 in
41280
57605
+  clean|clea|cle|cl)
41299
57624
+    ;;
41300
57625
+  link|lin|li|l)
41301
57626
+    shift; set dummy --mode link ${1+"$@"}; shift
41302
 
     ;;
 
57627
+    ;;
41303
57628
+  uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
41304
57629
+    shift; set dummy --mode uninstall ${1+"$@"}; shift
41305
 
+    ;;
 
57630
     ;;
41306
57631
+  esac
41307
 
 
41308
 
-  -dlopen)
41309
 
-    prevopt="-dlopen"
41310
 
-    prev=execute_dlfiles
 
57632
+
41311
57633
+  # Parse non-mode specific arguments:
41312
57634
+  while test "$#" -gt 0; do
41313
57635
+    opt="$1"
41315
57637
+
41316
57638
+    case $opt in
41317
57639
+      --config)                func_config                                     ;;
41318
 
+
 
57640
 
 
57641
-  -dlopen)
 
57642
-    prevopt="-dlopen"
 
57643
-    prev=execute_dlfiles
41319
57644
+      --debug)         preserve_args="$preserve_args $opt"
41320
57645
+                       func_echo "enabling shell trace mode"
41321
57646
+                       opt_debug='set -x'
41573
57898
-      case $arg_mode in
41574
57899
-      arg  )
41575
57900
-       # do not "continue".  Instead, add this to base_compile
 
57901
-       lastarg="$arg"
 
57902
-       arg_mode=normal
 
57903
-       ;;
41576
57904
+           read lalib_p_line
41577
57905
+           case "$lalib_p_line" in
41578
57906
+               \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;;
41582
57910
+    fi
41583
57911
+    test "$lalib_p" = yes
41584
57912
+}
41585
 
+
 
57913
 
 
57914
-      target )
 
57915
-       libobj="$arg"
 
57916
-       arg_mode=normal
 
57917
-       continue
 
57918
-       ;;
41586
57919
+# func_ltwrapper_script_p file
41587
57920
+# True iff FILE is a libtool wrapper script
41588
57921
+# This function is only a basic sanity check; it will hardly flush out
41591
57924
+{
41592
57925
+    func_lalib_p "$1"
41593
57926
+}
41594
 
+
 
57927
 
 
57928
-      normal )
 
57929
-       # Accept any command-line options.
 
57930
-       case $arg in
 
57931
-       -o)
 
57932
-         if test -n "$libobj" ; then
 
57933
-           $echo "$modename: you cannot specify \`-o' more than once" 1>&2
 
57934
-           exit $EXIT_FAILURE
 
57935
-         fi
 
57936
-         arg_mode=target
 
57937
-         continue
 
57938
-         ;;
41595
57939
+# func_ltwrapper_executable_p file
41596
57940
+# True iff FILE is a libtool wrapper executable
41597
57941
+# This function is only a basic sanity check; it will hardly flush out
41605
57949
+    esac
41606
57950
+    $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1
41607
57951
+}
41608
 
+
 
57952
 
 
57953
-       -static | -prefer-pic | -prefer-non-pic)
 
57954
-         later="$later $arg"
 
57955
-         continue
 
57956
-         ;;
41609
57957
+# func_ltwrapper_scriptname file
41610
57958
+# Assumes file is an ltwrapper_executable
41611
57959
+# uses $file to determine the appropriate filename for a
41619
57967
+       func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper"
41620
57968
+    fi
41621
57969
+}
41622
 
+
 
57970
 
 
57971
-       -no-suppress)
 
57972
-         suppress_opt=no
 
57973
-         continue
 
57974
-         ;;
41623
57975
+# func_ltwrapper_p file
41624
57976
+# True iff FILE is a libtool wrapper script or wrapper executable
41625
57977
+# This function is only a basic sanity check; it will hardly flush out
41628
57980
+{
41629
57981
+    func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1"
41630
57982
+}
41631
 
+
41632
 
+
 
57983
 
 
57984
-       -Xcompiler)
 
57985
-         arg_mode=arg  #  the next one goes into the "base_compile" arg list
 
57986
-         continue      #  The current "srcfile" will either be retained or
 
57987
-         ;;            #  replaced later.  I would guess that would be a bug.
 
57988
 
 
57989
-       -Wc,*)
 
57990
-         args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
 
57991
-         lastarg=
 
57992
-         save_ifs="$IFS"; IFS=','
 
57993
-         for arg in $args; do
 
57994
-           IFS="$save_ifs"
41633
57995
+# func_execute_cmds commands fail_cmd
41634
57996
+# Execute tilde-delimited COMMANDS.
41635
57997
+# If FAIL_CMD is given, eval that upon failure.
41645
58007
+    done
41646
58008
+    IFS=$save_ifs
41647
58009
+}
41648
 
+
41649
 
+
 
58010
 
 
58011
-           # Double-quote args containing other shell metacharacters.
 
58012
-           # Many Bourne shells cannot handle close brackets correctly
 
58013
-           # in scan sets, so we specify it separately.
 
58014
-           case $arg in
 
58015
-             *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
 
58016
-             arg="\"$arg\""
 
58017
-             ;;
 
58018
-           esac
 
58019
-           lastarg="$lastarg $arg"
 
58020
-         done
 
58021
-         IFS="$save_ifs"
 
58022
-         lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
 
58023
 
 
58024
-         # Add the arguments to base_compile.
41650
58025
+# func_source file
41651
58026
+# Source FILE, adding directory component if necessary.
41652
58027
+# Note that it is not necessary on cygwin/mingw to append a dot to
41778
58153
+      case $arg_mode in
41779
58154
+      arg  )
41780
58155
+       # do not "continue".  Instead, add this to base_compile
41781
 
        lastarg="$arg"
41782
 
        arg_mode=normal
41783
 
        ;;
41784
 
@@ -678,15 +1129,18 @@
41785
 
        # Accept any command-line options.
41786
 
        case $arg in
41787
 
        -o)
41788
 
-         if test -n "$libobj" ; then
41789
 
-           $echo "$modename: you cannot specify \`-o' more than once" 1>&2
41790
 
-           exit $EXIT_FAILURE
41791
 
-         fi
 
58156
+       lastarg="$arg"
 
58157
+       arg_mode=normal
 
58158
+       ;;
 
58159
+
 
58160
+      target )
 
58161
+       libobj="$arg"
 
58162
+       arg_mode=normal
 
58163
+       continue
 
58164
+       ;;
 
58165
+
 
58166
+      normal )
 
58167
+       # Accept any command-line options.
 
58168
+       case $arg in
 
58169
+       -o)
41792
58170
+         test -n "$libobj" && \
41793
58171
+           func_fatal_error "you cannot specify \`-o' more than once"
41794
 
          arg_mode=target
41795
 
          continue
41796
 
          ;;
41797
 
 
41798
 
-       -static | -prefer-pic | -prefer-non-pic)
 
58172
+         arg_mode=target
 
58173
+         continue
 
58174
+         ;;
 
58175
+
41799
58176
+       -pie | -fpie | -fPIE)
41800
58177
+          pie_flag="$pie_flag $arg"
41801
58178
+         continue
41802
58179
+         ;;
41803
58180
+
41804
58181
+       -shared | -static | -prefer-pic | -prefer-non-pic)
41805
 
          later="$later $arg"
41806
 
          continue
41807
 
          ;;
41808
 
@@ -702,31 +1156,25 @@
41809
 
          ;;            #  replaced later.  I would guess that would be a bug.
41810
 
 
41811
 
        -Wc,*)
41812
 
-         args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
 
58182
+         later="$later $arg"
 
58183
+         continue
 
58184
+         ;;
 
58185
+
 
58186
+       -no-suppress)
 
58187
+         suppress_opt=no
 
58188
+         continue
 
58189
+         ;;
 
58190
+
 
58191
+       -Xcompiler)
 
58192
+         arg_mode=arg  #  the next one goes into the "base_compile" arg list
 
58193
+         continue      #  The current "srcfile" will either be retained or
 
58194
+         ;;            #  replaced later.  I would guess that would be a bug.
 
58195
+
 
58196
+       -Wc,*)
41813
58197
+         func_stripname '-Wc,' '' "$arg"
41814
58198
+         args=$func_stripname_result
41815
 
          lastarg=
41816
 
          save_ifs="$IFS"; IFS=','
41817
 
          for arg in $args; do
41818
 
            IFS="$save_ifs"
41819
 
-
41820
 
-           # Double-quote args containing other shell metacharacters.
41821
 
-           # Many Bourne shells cannot handle close brackets correctly
41822
 
-           # in scan sets, so we specify it separately.
41823
 
-           case $arg in
41824
 
-             *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \     ]*|*]*|"")
41825
 
-             arg="\"$arg\""
41826
 
-             ;;
41827
 
-           esac
41828
 
-           lastarg="$lastarg $arg"
 
58199
+         lastarg=
 
58200
+         save_ifs="$IFS"; IFS=','
 
58201
+         for arg in $args; do
 
58202
+           IFS="$save_ifs"
41829
58203
+           func_quote_for_eval "$arg"
41830
58204
+           lastarg="$lastarg $func_quote_for_eval_result"
41831
 
          done
41832
 
          IFS="$save_ifs"
41833
 
-         lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
 
58205
+         done
 
58206
+         IFS="$save_ifs"
41834
58207
+         func_stripname ' ' '' "$lastarg"
41835
58208
+         lastarg=$func_stripname_result
41836
 
 
41837
 
          # Add the arguments to base_compile.
 
58209
+
 
58210
+         # Add the arguments to base_compile.
41838
58211
          base_compile="$base_compile $lastarg"
41839
58212
          continue
41840
58213
          ;;
42247
58620
-      # -no-undefined on the libtool link line when we can be certain
42248
58621
-      # that all symbols are satisfied, otherwise we get a static library.
42249
58622
-      allow_undefined=yes
 
58623
-      ;;
 
58624
-    *)
 
58625
-      allow_undefined=yes
42250
58626
+func_mode_help ()
42251
58627
+{
42252
58628
+    # We need to display help for each of the modes.
42256
58632
+        # at the start of this file.
42257
58633
+        func_help
42258
58634
       ;;
42259
 
-    *)
42260
 
-      allow_undefined=yes
42261
 
+
42262
 
+      clean)
42263
 
+        $ECHO \
42264
 
+"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
42265
 
+
42266
 
+Remove files from the build directory.
42267
 
+
42268
 
+RM is the name of the program to use to delete files associated with each FILE
42269
 
+(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
42270
 
+to RM.
42271
 
+
42272
 
+If FILE is a libtool library, object or program, all the files associated
42273
 
+with it are deleted. Otherwise, only FILE itself is deleted using RM."
42274
 
       ;;
42275
58635
-    esac
42276
58636
-    libtool_args="$nonopt"
42277
58637
-    base_compile="$nonopt $@"
42291
58651
-    dllsearchpath=
42292
58652
-    lib_search_path=`pwd`
42293
58653
-    inst_prefix_dir=
42294
 
+      compile)
42295
 
+      $ECHO \
42296
 
+"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
 
58654
+      clean)
 
58655
+        $ECHO \
 
58656
+"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
42297
58657
 
42298
58658
-    avoid_version=no
42299
58659
-    dlfiles=
42323
58683
-    thread_safe=no
42324
58684
-    vinfo=
42325
58685
-    vinfo_number=no
42326
 
+Compile a source file into a libtool library object.
 
58686
+Remove files from the build directory.
42327
58687
 
42328
58688
-    func_infer_tag $base_compile
42329
 
+This mode accepts the following additional options:
 
58689
+RM is the name of the program to use to delete files associated with each FILE
 
58690
+(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
 
58691
+to RM.
42330
58692
 
42331
58693
-    # We need to know -static, to get the right output filenames.
42332
58694
-    for arg
42342
58704
-           dlopen_self=$dlopen_self_static
42343
58705
-         fi
42344
58706
-         prefer_static_libs=yes
 
58707
+If FILE is a libtool library, object or program, all the files associated
 
58708
+with it are deleted. Otherwise, only FILE itself is deleted using RM."
 
58709
+      ;;
 
58710
+
 
58711
+      compile)
 
58712
+      $ECHO \
 
58713
+"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
 
58714
+
 
58715
+Compile a source file into a libtool library object.
 
58716
+
 
58717
+This mode accepts the following additional options:
 
58718
+
42345
58719
+  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE
42346
58720
+  -no-suppress      do not suppress compiler output for multiple passes
42347
58721
+  -prefer-pic       try to building PIC objects only
42617
58991
          fi
42618
58992
-         prev=
42619
58993
-         continue
42620
 
          ;;
 
58994
-         ;;
42621
58995
-       expsyms_regex)
42622
58996
-         export_symbols_regex="$arg"
42623
58997
-         prev=
42624
58998
-         continue
42625
 
+
42626
 
+      *.lo)
42627
 
+       # Just add the directory containing the .lo file.
42628
 
+       func_dirname "$file" "" "."
42629
 
+       dir="$func_dirname_result"
42630
 
          ;;
 
58999
-         ;;
42631
59000
-       inst_prefix)
42632
59001
-         inst_prefix_dir="$arg"
42633
59002
-         prev=
42634
 
+
42635
 
+      *)
42636
 
+       func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
42637
 
          continue
 
59003
-         continue
42638
59004
          ;;
42639
59005
-       precious_regex)
42640
59006
-         precious_files_regex="$arg"
42641
59007
-         prev=
42642
59008
-         continue
42643
 
-         ;;
 
59009
+
 
59010
+      *.lo)
 
59011
+       # Just add the directory containing the .lo file.
 
59012
+       func_dirname "$file" "" "."
 
59013
+       dir="$func_dirname_result"
 
59014
          ;;
42644
59015
-       release)
42645
59016
-         release="-$arg"
42646
59017
-         prev=
42647
 
-         continue
42648
 
-         ;;
 
59018
+
 
59019
+      *)
 
59020
+       func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
 
59021
          continue
 
59022
          ;;
42649
59023
-       objectlist)
42650
59024
-         if test -f "$arg"; then
42651
59025
-           save_arg=$arg
43006
59380
-      fi # test -n "$prev"
43007
59381
 
43008
59382
-      prevarg="$arg"
43009
 
+      # Aesthetically quote the argument.
43010
 
+      func_quote_for_eval "$arg"
43011
 
+      install_prog="$install_prog $func_quote_for_eval_result"
43012
 
+    done
43013
 
 
 
59383
-
43014
59384
-      case $arg in
43015
59385
-      -all-static)
43016
59386
-       if test -n "$link_static_flag"; then
43019
59389
-       fi
43020
59390
-       continue
43021
59391
-       ;;
43022
 
+    test -z "$install_prog" && \
43023
 
+      func_fatal_help "you must specify an install program"
43024
 
 
 
59392
-
43025
59393
-      -allow-undefined)
43026
59394
-       # FIXME: remove this flag sometime in the future.
43027
59395
-       $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2
43028
59396
-       continue
43029
59397
-       ;;
43030
 
+    test -n "$prev" && \
43031
 
+      func_fatal_help "the \`$prev' option requires an argument"
 
59398
+      # Aesthetically quote the argument.
 
59399
+      func_quote_for_eval "$arg"
 
59400
+      install_prog="$install_prog $func_quote_for_eval_result"
 
59401
+    done
43032
59402
 
43033
59403
-      -avoid-version)
43034
59404
-       avoid_version=yes
43035
59405
-       continue
43036
59406
-       ;;
 
59407
+    test -z "$install_prog" && \
 
59408
+      func_fatal_help "you must specify an install program"
 
59409
 
 
59410
-      -dlopen)
 
59411
-       prev=dlfiles
 
59412
-       continue
 
59413
-       ;;
 
59414
+    test -n "$prev" && \
 
59415
+      func_fatal_help "the \`$prev' option requires an argument"
 
59416
 
 
59417
-      -dlpreopen)
 
59418
-       prev=dlprefiles
 
59419
-       continue
 
59420
-       ;;
43037
59421
+    if test -z "$files"; then
43038
59422
+      if test -z "$dest"; then
43039
59423
+       func_fatal_help "no file or destination specified"
43042
59426
+      fi
43043
59427
+    fi
43044
59428
 
43045
 
-      -dlopen)
43046
 
-       prev=dlfiles
43047
 
-       continue
43048
 
-       ;;
43049
 
-
43050
 
-      -dlpreopen)
43051
 
-       prev=dlprefiles
43052
 
-       continue
43053
 
-       ;;
43054
 
-
43055
59429
-      -export-dynamic)
43056
59430
-       export_dynamic=yes
43057
59431
-       continue
43544
59918
-         arg="$arg $wl$flag"
43545
59919
-         compiler_flags="$compiler_flags $wl$flag"
43546
59920
-         linker_flags="$linker_flags $flag"
 
59921
-       done
 
59922
-       IFS="$save_ifs"
 
59923
-       arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
 
59924
-       ;;
43547
59925
+       if func_ltwrapper_script_p "$wrapper"; then
43548
59926
+         notinst_deplibs=
43549
59927
+         relink_command=
43550
 
+
 
59928
 
 
59929
-      -Xcompiler)
 
59930
-       prev=xcompiler
 
59931
-       continue
 
59932
-       ;;
43551
59933
+         func_source "$wrapper"
43552
 
+
 
59934
 
 
59935
-      -Xlinker)
 
59936
-       prev=xlinker
 
59937
-       continue
 
59938
-       ;;
43553
59939
+         # Check the variables that should have been set.
43554
59940
+         test -z "$generated_by_libtool_version" && \
43555
59941
+           func_fatal_error "invalid libtool wrapper script \`$wrapper'"
43556
 
+
 
59942
 
 
59943
-      -XCClinker)
 
59944
-       prev=xcclinker
43557
59945
+         finalize=yes
43558
59946
+         for lib in $notinst_deplibs; do
43559
59947
+           # Check to see that each library is installed.
43566
59954
+             func_warning "\`$lib' has not been installed in \`$libdir'"
43567
59955
+             finalize=no
43568
59956
+           fi
43569
 
        done
43570
 
-       IFS="$save_ifs"
43571
 
-       arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
43572
 
-       ;;
43573
 
 
43574
 
-      -Xcompiler)
43575
 
-       prev=xcompiler
43576
 
-       continue
43577
 
-       ;;
 
59957
+       done
 
59958
+
43578
59959
+         relink_command=
43579
59960
+         func_source "$wrapper"
43580
 
 
43581
 
-      -Xlinker)
43582
 
-       prev=xlinker
43583
 
-       continue
43584
 
-       ;;
 
59961
+
43585
59962
+         outputname=
43586
59963
+         if test "$fast_install" = no && test -n "$relink_command"; then
43587
59964
+           $opt_dry_run || {
43592
59969
+               outputname="$tmpdir/$file"
43593
59970
+               # Replace the output file specification.
43594
59971
+               relink_command=`$ECHO "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`
43595
 
 
43596
 
-      -XCClinker)
43597
 
-       prev=xcclinker
 
59972
+
43598
59973
+               $opt_silent || {
43599
59974
+                 func_quote_for_expand "$relink_command"
43600
59975
+                 eval "func_echo $func_quote_for_expand_result"
43746
60121
-             dlprefiles="$dlprefiles $pic_object"
43747
60122
-             prev=
43748
60123
-           fi
 
60124
-
 
60125
-           # A PIC object.
 
60126
-           libobjs="$libobjs $pic_object"
 
60127
-           arg="$pic_object"
 
60128
-         fi
 
60129
-
 
60130
-         # Non-PIC object.
 
60131
-         if test "$non_pic_object" != none; then
 
60132
-           # Prepend the subdirectory the object is found in.
 
60133
-           non_pic_object="$xdir$non_pic_object"
43749
60134
+    if test -n "$my_dlsyms"; then
43750
60135
+      case $my_dlsyms in
43751
60136
+      "") ;;
43752
60137
+      *.c)
43753
60138
+       # Discover the nlist of each of the dlfiles.
43754
60139
+       nlist="$output_objdir/${my_outputname}.nm"
43755
 
 
43756
 
-           # A PIC object.
43757
 
-           libobjs="$libobjs $pic_object"
43758
 
-           arg="$pic_object"
43759
 
-         fi
 
60140
+
43760
60141
+       func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
43761
 
 
43762
 
-         # Non-PIC object.
43763
 
-         if test "$non_pic_object" != none; then
43764
 
-           # Prepend the subdirectory the object is found in.
43765
 
-           non_pic_object="$xdir$non_pic_object"
 
60142
+
43766
60143
+       # Parse the name list into a source file.
43767
60144
+       func_verbose "creating $output_objdir/$my_dlsyms"
 
60145
+
 
60146
+       $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\
 
60147
+/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */
 
60148
+/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */
43768
60149
 
43769
60150
-           # A standard non-PIC object
43770
60151
-           non_pic_objects="$non_pic_objects $non_pic_object"
43784
60165
-           exit $EXIT_FAILURE
43785
60166
-         else
43786
60167
-           # Dry-run case.
43787
 
+       $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\
43788
 
+/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */
43789
 
+/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */
 
60168
+#ifdef __cplusplus
 
60169
+extern \"C\" {
 
60170
+#endif
43790
60171
 
43791
60172
-           # Extract subdirectory from the argument.
43792
60173
-           xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
43795
60176
-           else
43796
60177
-             xdir="$xdir/"
43797
60178
-           fi
43798
 
+#ifdef __cplusplus
43799
 
+extern \"C\" {
43800
 
+#endif
 
60179
+/* External symbol declarations for the compiler. */\
 
60180
+"
43801
60181
 
43802
60182
-           pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
43803
60183
-           non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
43806
60186
-         fi
43807
60187
-       fi
43808
60188
-       ;;
43809
 
+/* External symbol declarations for the compiler. */\
43810
 
+"
 
60189
+       if test "$dlself" = yes; then
 
60190
+         func_verbose "generating symbol list for \`$output'"
43811
60191
 
43812
60192
-      *.$libext)
43813
60193
-       # An archive.
43815
60195
-       old_deplibs="$old_deplibs $arg"
43816
60196
-       continue
43817
60197
-       ;;
43818
 
+       if test "$dlself" = yes; then
43819
 
+         func_verbose "generating symbol list for \`$output'"
 
60198
+         $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
43820
60199
 
43821
60200
-      *.la)
43822
60201
-       # A libtool-controlled library.
43823
 
+         $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
 
60202
+         # Add our own program objects to the symbol list.
 
60203
+         progfiles=`$ECHO "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
 
60204
+         for progfile in $progfiles; do
 
60205
+           func_verbose "extracting global C symbols from \`$progfile'"
 
60206
+           $opt_dry_run || eval "$NM $progfile | $global_symbol_pipe >> '$nlist'"
 
60207
+         done
43824
60208
 
43825
60209
-       if test "$prev" = dlfiles; then
43826
60210
-         # This library was specified with -dlopen.
43832
60216
-         prev=
43833
60217
-       else
43834
60218
-         deplibs="$deplibs $arg"
43835
 
+         # Add our own program objects to the symbol list.
43836
 
+         progfiles=`$ECHO "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
43837
 
+         for progfile in $progfiles; do
43838
 
+           func_verbose "extracting global C symbols from \`$progfile'"
43839
 
+           $opt_dry_run || eval "$NM $progfile | $global_symbol_pipe >> '$nlist'"
43840
 
+         done
43841
 
+
43842
60219
+         if test -n "$exclude_expsyms"; then
43843
60220
+           $opt_dry_run || {
43844
60221
+             eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
43896
60273
+           }
43897
60274
       fi
43898
60275
-    done # argument parsing loop
43899
 
-
43900
 
-    if test -n "$prev"; then
43901
 
-      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
43902
 
-      $echo "$help" 1>&2
43903
 
-      exit $EXIT_FAILURE
43904
 
     fi
43905
 
 
43906
 
-    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
43907
 
-      eval arg=\"$export_dynamic_flag_spec\"
43908
 
-      compile_command="$compile_command $arg"
43909
 
-      finalize_command="$finalize_command $arg"
43910
 
-    fi
 
60276
+    fi
 
60277
+
43911
60278
+       for dlprefile in $dlprefiles; do
43912
60279
+         func_verbose "extracting global C symbols from \`$dlprefile'"
43913
60280
+         func_basename "$dlprefile"
43918
60285
+         }
43919
60286
+       done
43920
60287
 
 
60288
-    if test -n "$prev"; then
 
60289
-      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
 
60290
-      $echo "$help" 1>&2
 
60291
-      exit $EXIT_FAILURE
 
60292
+       $opt_dry_run || {
 
60293
+         # Make sure we have at least an empty file.
 
60294
+         test -f "$nlist" || : > "$nlist"
 
60295
+
 
60296
+         if test -n "$exclude_expsyms"; then
 
60297
+           $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
 
60298
+           $MV "$nlist"T "$nlist"
 
60299
     fi
 
60300
 
 
60301
-    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
 
60302
-      eval arg=\"$export_dynamic_flag_spec\"
 
60303
-      compile_command="$compile_command $arg"
 
60304
-      finalize_command="$finalize_command $arg"
 
60305
+         # Try sorting and uniquifying the output.
 
60306
+         if $GREP -v "^: " < "$nlist" |
 
60307
+             if sort -k 3 </dev/null >/dev/null 2>&1; then
 
60308
+               sort -k 3
 
60309
+    else
 
60310
+               sort +2
 
60311
+             fi |
 
60312
+             uniq > "$nlist"S; then
 
60313
+           :
 
60314
+         else
 
60315
+           $GREP -v "^: " < "$nlist" > "$nlist"S
 
60316
+      fi
 
60317
+
 
60318
+         if test -f "$nlist"S; then
 
60319
+           eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"'
 
60320
+         else
 
60321
+           $ECHO '/* NONE */' >> "$output_objdir/$my_dlsyms"
 
60322
     fi
 
60323
 
43921
60324
-    oldlibs=
43922
60325
-    # calculate the name of the file, without its directory
43923
60326
-    outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
43924
60327
-    libobjs_save="$libobjs"
43925
 
+       $opt_dry_run || {
43926
 
+         # Make sure we have at least an empty file.
43927
 
+         test -f "$nlist" || : > "$nlist"
 
60328
+         $ECHO >> "$output_objdir/$my_dlsyms" "\
43928
60329
 
43929
60330
-    if test -n "$shlibpath_var"; then
43930
60331
-      # get the directories listed in $shlibpath_var
43931
60332
-      eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
43932
60333
-    else
43933
60334
-      shlib_search_path=
43934
 
+         if test -n "$exclude_expsyms"; then
43935
 
+           $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
43936
 
+           $MV "$nlist"T "$nlist"
43937
 
     fi
 
60335
-    fi
43938
60336
-    eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
43939
60337
-    eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
43940
 
 
 
60338
-
43941
60339
-    output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
43942
60340
-    if test "X$output_objdir" = "X$output"; then
43943
60341
-      output_objdir="$objdir"
43944
 
+         # Try sorting and uniquifying the output.
43945
 
+         if $GREP -v "^: " < "$nlist" |
43946
 
+             if sort -k 3 </dev/null >/dev/null 2>&1; then
43947
 
+               sort -k 3
43948
 
     else
 
60342
-    else
43949
60343
-      output_objdir="$output_objdir/$objdir"
43950
60344
-    fi
43951
60345
-    # Create the object directory.
43955
60349
-      exit_status=$?
43956
60350
-      if test "$exit_status" -ne 0 && test ! -d "$output_objdir"; then
43957
60351
-       exit $exit_status
43958
 
+               sort +2
43959
 
+             fi |
43960
 
+             uniq > "$nlist"S; then
43961
 
+           :
43962
 
+         else
43963
 
+           $GREP -v "^: " < "$nlist" > "$nlist"S
43964
 
       fi
43965
 
+
43966
 
+         if test -f "$nlist"S; then
43967
 
+           eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"'
43968
 
+         else
43969
 
+           $ECHO '/* NONE */' >> "$output_objdir/$my_dlsyms"
43970
 
     fi
43971
 
 
43972
 
-    # Determine the type of output
43973
 
-    case $output in
43974
 
-    "")
43975
 
-      $echo "$modename: you must specify an output file" 1>&2
43976
 
-      $echo "$help" 1>&2
43977
 
-      exit $EXIT_FAILURE
43978
 
-      ;;
43979
 
-    *.$libext) linkmode=oldlib ;;
43980
 
-    *.lo | *.$objext) linkmode=obj ;;
43981
 
-    *.la) linkmode=lib ;;
43982
 
-    *) linkmode=prog ;; # Anything else should be a program.
43983
 
-    esac
43984
 
+         $ECHO >> "$output_objdir/$my_dlsyms" "\
43985
 
 
 
60352
-      fi
 
60353
-    fi
43986
60354
+/* The mapping between symbol names and symbols.  */
43987
60355
+typedef struct {
43988
60356
+  const char *name;
43989
60357
+  void *address;
43990
60358
+} lt_dlsymlist;
43991
60359
+"
43992
 
     case $host in
43993
 
-    *cygwin* | *mingw* | *pw32*)
43994
 
-      # don't eliminate duplications in $postdeps and $predeps
43995
 
-      duplicate_compiler_generated_deps=yes
 
60360
+    case $host in
43996
60361
+         *cygwin* | *mingw* )
43997
60362
+           $ECHO >> "$output_objdir/$my_dlsyms" "\
43998
60363
+/* DATA imports from DLLs on WIN32 con't be const, because
44006
60371
+         *)
44007
60372
+           lt_dlsym_const=const ;;
44008
60373
+         esac
44009
 
+
 
60374
 
 
60375
-    # Determine the type of output
 
60376
-    case $output in
 
60377
-    "")
 
60378
-      $echo "$modename: you must specify an output file" 1>&2
 
60379
-      $echo "$help" 1>&2
 
60380
-      exit $EXIT_FAILURE
 
60381
-      ;;
 
60382
-    *.$libext) linkmode=oldlib ;;
 
60383
-    *.lo | *.$objext) linkmode=obj ;;
 
60384
-    *.la) linkmode=lib ;;
 
60385
-    *) linkmode=prog ;; # Anything else should be a program.
 
60386
-    esac
44010
60387
+         $ECHO >> "$output_objdir/$my_dlsyms" "\
44011
60388
+extern $lt_dlsym_const lt_dlsymlist
44012
60389
+lt_${my_prefix}_LTX_preloaded_symbols[];
44014
60391
+lt_${my_prefix}_LTX_preloaded_symbols[] =
44015
60392
+{\
44016
60393
+  { \"$my_originator\", (void *) 0 },"
44017
 
+
 
60394
 
 
60395
-    case $host in
 
60396
-    *cygwin* | *mingw* | *pw32*)
 
60397
-      # don't eliminate duplications in $postdeps and $predeps
 
60398
-      duplicate_compiler_generated_deps=yes
44018
60399
+         case $need_lib_prefix in
44019
60400
+         no)
44020
60401
+           eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms"
44986
61367
-             *" $absdir "*) ;;
44987
61368
-             *) compile_rpath="$compile_rpath $absdir"
44988
61369
-             esac
 
61370
-             ;;
 
61371
-           esac
 
61372
-           case " $sys_lib_dlsearch_path " in
 
61373
-           *" $libdir "*) ;;
 
61374
-           *)
 
61375
-             case "$finalize_rpath " in
 
61376
-             *" $libdir "*) ;;
 
61377
-             *) finalize_rpath="$finalize_rpath $libdir"
 
61378
-             esac
 
61379
-             ;;
 
61380
-           esac
 
61381
-         fi
44989
61382
+/* $cwrappersource - temporary wrapper executable for $objdir/$outputname
44990
61383
+   Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
44991
 
+
 
61384
 
 
61385
-         if test -n "$old_archive_from_expsyms_cmds"; then
 
61386
-           # figure out the soname
 
61387
-           set dummy $library_names
 
61388
-           realname="$2"
 
61389
-           shift; shift
 
61390
-           libname=`eval \\$echo \"$libname_spec\"`
 
61391
-           # use dlname if we got it. it's perfectly good, no?
 
61392
-           if test -n "$dlname"; then
 
61393
-             soname="$dlname"
 
61394
-           elif test -n "$soname_spec"; then
 
61395
-             # bleh windows
 
61396
-             case $host in
 
61397
-             *cygwin* | mingw*)
 
61398
-               major=`expr $current - $age`
 
61399
-               versuffix="-$major"
 
61400
-               ;;
 
61401
-             esac
 
61402
-             eval soname=\"$soname_spec\"
 
61403
-           else
 
61404
-             soname="$realname"
 
61405
-           fi
44992
61406
+   The $output program cannot be directly executed until all the libtool
44993
61407
+   libraries that it depends on are installed.
44994
 
+
 
61408
 
 
61409
-           # Make a new name for the extract_expsyms_cmds to use
 
61410
-           soroot="$soname"
 
61411
-           soname=`$echo $soroot | ${SED} -e 's/^.*\///'`
 
61412
-           newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a"
44995
61413
+   This wrapper executable should never be moved out of the build directory.
44996
61414
+   If it is, it will not operate correctly.
44997
 
+
 
61415
 
 
61416
-           # If the library has no export list, then create one now
 
61417
-           if test -f "$output_objdir/$soname-def"; then :
 
61418
-           else
 
61419
-             $show "extracting exported symbol list from \`$soname'"
 
61420
-             save_ifs="$IFS"; IFS='~'
 
61421
-             cmds=$extract_expsyms_cmds
 
61422
-             for cmd in $cmds; do
 
61423
-               IFS="$save_ifs"
 
61424
-               eval cmd=\"$cmd\"
 
61425
-               $show "$cmd"
 
61426
-               $run eval "$cmd" || exit $?
 
61427
-             done
 
61428
-             IFS="$save_ifs"
 
61429
-           fi
44998
61430
+   Currently, it simply execs the wrapper *script* "$SHELL $output",
44999
61431
+   but could eventually absorb all of the scripts functionality and
45000
61432
+   exec $objdir/$outputname directly.
45023
61455
+#include <errno.h>
45024
61456
+#include <fcntl.h>
45025
61457
+#include <sys/stat.h>
45026
 
+
 
61458
 
 
61459
-           # Create $newlib
 
61460
-           if test -f "$output_objdir/$newlib"; then :; else
 
61461
-             $show "generating import library for \`$soname'"
 
61462
-             save_ifs="$IFS"; IFS='~'
 
61463
-             cmds=$old_archive_from_expsyms_cmds
 
61464
-             for cmd in $cmds; do
 
61465
-               IFS="$save_ifs"
 
61466
-               eval cmd=\"$cmd\"
 
61467
-               $show "$cmd"
 
61468
-               $run eval "$cmd" || exit $?
 
61469
-             done
 
61470
-             IFS="$save_ifs"
 
61471
-           fi
 
61472
-           # make sure the library variables are pointing to the new library
 
61473
-           dir=$output_objdir
 
61474
-           linklib=$newlib
 
61475
-         fi # test -n "$old_archive_from_expsyms_cmds"
45027
61476
+#if defined(PATH_MAX)
45028
61477
+# define LT_PATHMAX PATH_MAX
45029
61478
+#elif defined(MAXPATHLEN)
45031
61480
+#else
45032
61481
+# define LT_PATHMAX 1024
45033
61482
+#endif
45034
 
+
 
61483
 
 
61484
-         if test "$linkmode" = prog || test "$mode" != relink; then
 
61485
-           add_shlibpath=
 
61486
-           add_dir=
 
61487
-           add=
 
61488
-           lib_linked=yes
 
61489
-           case $hardcode_action in
 
61490
-           immediate | unsupported)
 
61491
-             if test "$hardcode_direct" = no; then
 
61492
-               add="$dir/$linklib"
 
61493
-               case $host in
 
61494
-                 *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;;
 
61495
-                 *-*-sysv4*uw2*) add_dir="-L$dir" ;;
 
61496
-                 *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \
 
61497
-                   *-*-unixware7*) add_dir="-L$dir" ;;
 
61498
-                 *-*-darwin* )
 
61499
-                   # if the lib is a module then we can not link against
 
61500
-                   # it, someone is ignoring the new warnings I added
 
61501
-                   if /usr/bin/file -L $add 2> /dev/null |
 
61502
-                      $EGREP ": [^:]* bundle" >/dev/null ; then
 
61503
-                     $echo "** Warning, lib $linklib is a module, not a shared library"
 
61504
-                     if test -z "$old_library" ; then
 
61505
-                       $echo
 
61506
-                       $echo "** And there doesn't seem to be a static archive available"
 
61507
-                       $echo "** The link will probably fail, sorry"
 
61508
-                     else
 
61509
-                       add="$dir/$old_library"
 
61510
-                     fi
 
61511
-                   fi
 
61512
-               esac
 
61513
-             elif test "$hardcode_minus_L" = no; then
 
61514
-               case $host in
 
61515
-               *-*-sunos*) add_shlibpath="$dir" ;;
 
61516
-               esac
 
61517
-               add_dir="-L$dir"
 
61518
-               add="-l$name"
 
61519
-             elif test "$hardcode_shlibpath_var" = no; then
 
61520
-               add_shlibpath="$dir"
 
61521
-               add="-l$name"
 
61522
-             else
 
61523
-               lib_linked=no
 
61524
-             fi
 
61525
-             ;;
 
61526
-           relink)
 
61527
-             if test "$hardcode_direct" = yes; then
 
61528
-               add="$dir/$linklib"
 
61529
-             elif test "$hardcode_minus_L" = yes; then
 
61530
-               add_dir="-L$dir"
 
61531
-               # Try looking first in the location we're being installed to.
 
61532
-               if test -n "$inst_prefix_dir"; then
 
61533
-                 case $libdir in
 
61534
-                   [\\/]*)
 
61535
-                     add_dir="$add_dir -L$inst_prefix_dir$libdir"
 
61536
-                     ;;
 
61537
-                 esac
 
61538
-               fi
 
61539
-               add="-l$name"
 
61540
-             elif test "$hardcode_shlibpath_var" = yes; then
 
61541
-               add_shlibpath="$dir"
 
61542
-               add="-l$name"
 
61543
-             else
 
61544
-               lib_linked=no
 
61545
-             fi
45035
61546
+#ifndef S_IXOTH
45036
61547
+# define S_IXOTH 0
45037
61548
+#endif
45159
61670
+               # make stdout use "unix" line endings
45160
61671
+               echo "          setmode(1,_O_BINARY);"
45161
61672
              ;;
 
61673
-           *) lib_linked=no ;;
45162
61674
            esac
45163
 
-           case " $sys_lib_dlsearch_path " in
45164
 
-           *" $libdir "*) ;;
45165
 
-           *)
45166
 
-             case "$finalize_rpath " in
45167
 
-             *" $libdir "*) ;;
45168
 
-             *) finalize_rpath="$finalize_rpath $libdir"
45169
 
+
 
61675
 
 
61676
-           if test "$lib_linked" != yes; then
 
61677
-             $echo "$modename: configuration error: unsupported hardcode properties"
 
61678
-             exit $EXIT_FAILURE
 
61679
-           fi
45170
61680
+           cat <<EOF
45171
61681
+         printf ("%s", script_text);
45172
61682
+         return 0;
45173
61683
+       }
45174
61684
+    }
45175
 
+
 
61685
 
 
61686
-           if test -n "$add_shlibpath"; then
 
61687
-             case :$compile_shlibpath: in
 
61688
-             *":$add_shlibpath:"*) ;;
 
61689
-             *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;
 
61690
-             esac
 
61691
-           fi
 
61692
-           if test "$linkmode" = prog; then
 
61693
-             test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
 
61694
-             test -n "$add" && compile_deplibs="$add $compile_deplibs"
45176
61695
+  newargz = XMALLOC (char *, argc + 2);
45177
61696
+EOF
45178
61697
+
45179
61698
+           if test -n "$TARGETSHELL" ; then
45180
61699
+             # no path translation at all
45181
61700
+             lt_newargv0=$TARGETSHELL
45182
 
+           else
 
61701
            else
 
61702
-             test -n "$add_dir" && deplibs="$add_dir $deplibs"
 
61703
-             test -n "$add" && deplibs="$add $deplibs"
 
61704
-             if test "$hardcode_direct" != yes && \
 
61705
-                test "$hardcode_minus_L" != yes && \
 
61706
-                test "$hardcode_shlibpath_var" = yes; then
 
61707
-               case :$finalize_shlibpath: in
 
61708
-               *":$libdir:"*) ;;
 
61709
-               *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
 
61710
-               esac
 
61711
-             fi
 
61712
-           fi
45183
61713
+             case "$host" in
45184
61714
+               *mingw* )
45185
61715
+                 # awkward: cmd appends spaces to result
45188
61718
+                 case $lt_newargv0 in
45189
61719
+                   *.exe | *.EXE) ;;
45190
61720
+                   *) lt_newargv0=$lt_newargv0.exe ;;
45191
 
              esac
45192
 
              ;;
 
61721
+             esac
 
61722
+             ;;
45193
61723
+               * ) lt_newargv0=$SHELL ;;
45194
 
            esac
 
61724
+           esac
45195
61725
          fi
45196
61726
 
45197
 
-         if test -n "$old_archive_from_expsyms_cmds"; then
45198
 
-           # figure out the soname
45199
 
-           set dummy $library_names
45200
 
-           realname="$2"
45201
 
-           shift; shift
45202
 
-           libname=`eval \\$echo \"$libname_spec\"`
45203
 
-           # use dlname if we got it. it's perfectly good, no?
45204
 
-           if test -n "$dlname"; then
45205
 
-             soname="$dlname"
45206
 
-           elif test -n "$soname_spec"; then
45207
 
-             # bleh windows
45208
 
-             case $host in
45209
 
-             *cygwin* | mingw*)
45210
 
-               major=`expr $current - $age`
45211
 
-               versuffix="-$major"
45212
 
+               cat <<EOF
45213
 
+  newargz[0] = (char *) xstrdup ("$lt_newargv0");
45214
 
+EOF
45215
 
+
45216
 
+           cat <<"EOF"
45217
 
+  tmp_pathspec = find_executable (argv[0]);
45218
 
+  if (tmp_pathspec == NULL)
45219
 
+    lt_fatal ("Couldn't find %s", argv[0]);
45220
 
+  LTWRAPPER_DEBUGPRINTF (("(main) found exe (before symlink chase) at : %s\n",
45221
 
+                         tmp_pathspec));
45222
 
+
45223
 
+  actual_cwrapper_path = chase_symlinks (tmp_pathspec);
45224
 
+  LTWRAPPER_DEBUGPRINTF (("(main) found exe (after symlink chase) at : %s\n",
45225
 
+                         actual_cwrapper_path));
45226
 
+  XFREE (tmp_pathspec);
45227
 
+
45228
 
+  shwrapper_name = (char *) xstrdup (base_name (actual_cwrapper_path));
45229
 
+  strendzap (actual_cwrapper_path, shwrapper_name);
45230
 
+
45231
 
+  /* shwrapper_name transforms */
45232
 
+  strendzap (shwrapper_name, ".exe");
45233
 
+  tmp_pathspec = XMALLOC (char, (strlen (shwrapper_name) +
45234
 
+                                strlen ("_ltshwrapperTMP") + 1));
45235
 
+  strcpy (tmp_pathspec, shwrapper_name);
45236
 
+  strcat (tmp_pathspec, "_ltshwrapperTMP");
45237
 
+  XFREE (shwrapper_name);
45238
 
+  shwrapper_name = tmp_pathspec;
45239
 
+  tmp_pathspec = 0;
45240
 
+  LTWRAPPER_DEBUGPRINTF (("(main) libtool shell wrapper name: %s\n",
45241
 
+                         shwrapper_name));
45242
 
+EOF
45243
 
+
45244
 
+           cat <<EOF
45245
 
+  newargz[1] =
45246
 
+    XMALLOC (char, (strlen (actual_cwrapper_path) +
45247
 
+                   strlen ("$objdir") + 1 + strlen (shwrapper_name) + 1));
45248
 
+  strcpy (newargz[1], actual_cwrapper_path);
45249
 
+  strcat (newargz[1], "$objdir");
45250
 
+  strcat (newargz[1], "/");
45251
 
+  strcat (newargz[1], shwrapper_name);
45252
 
+EOF
45253
 
+
45254
 
+
45255
 
+           case $host_os in
45256
 
+             mingw*)
45257
 
+           cat <<"EOF"
45258
 
+  {
45259
 
+    char* p;
45260
 
+    while ((p = strchr (newargz[1], '\\')) != NULL)
45261
 
+      {
45262
 
+       *p = '/';
45263
 
+      }
45264
 
+  }
45265
 
+EOF
45266
 
                ;;
45267
 
              esac
45268
 
-             eval soname=\"$soname_spec\"
45269
 
-           else
45270
 
-             soname="$realname"
45271
 
-           fi
45272
 
 
45273
 
-           # Make a new name for the extract_expsyms_cmds to use
45274
 
-           soroot="$soname"
45275
 
-           soname=`$echo $soroot | ${SED} -e 's/^.*\///'`
45276
 
-           newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a"
45277
 
+           cat <<"EOF"
45278
 
+  XFREE (shwrapper_name);
45279
 
+  XFREE (actual_cwrapper_path);
45280
 
 
45281
 
-           # If the library has no export list, then create one now
45282
 
-           if test -f "$output_objdir/$soname-def"; then :
45283
 
-           else
45284
 
-             $show "extracting exported symbol list from \`$soname'"
45285
 
-             save_ifs="$IFS"; IFS='~'
45286
 
-             cmds=$extract_expsyms_cmds
45287
 
-             for cmd in $cmds; do
45288
 
-               IFS="$save_ifs"
45289
 
-               eval cmd=\"$cmd\"
45290
 
-               $show "$cmd"
45291
 
-               $run eval "$cmd" || exit $?
45292
 
-             done
45293
 
-             IFS="$save_ifs"
45294
 
-           fi
45295
 
+  /* always write in binary mode */
45296
 
+  if ((shwrapper = fopen (newargz[1], FOPEN_WB)) == 0)
45297
 
+    {
45298
 
+      lt_fatal ("Could not open %s for writing", newargz[1]);
45299
 
+    }
45300
 
+  fprintf (shwrapper, "%s", script_text);
45301
 
+  fclose (shwrapper);
45302
 
 
45303
 
-           # Create $newlib
45304
 
-           if test -f "$output_objdir/$newlib"; then :; else
45305
 
-             $show "generating import library for \`$soname'"
45306
 
-             save_ifs="$IFS"; IFS='~'
45307
 
-             cmds=$old_archive_from_expsyms_cmds
45308
 
-             for cmd in $cmds; do
45309
 
-               IFS="$save_ifs"
45310
 
-               eval cmd=\"$cmd\"
45311
 
-               $show "$cmd"
45312
 
-               $run eval "$cmd" || exit $?
45313
 
-             done
45314
 
-             IFS="$save_ifs"
45315
 
-           fi
45316
 
-           # make sure the library variables are pointing to the new library
45317
 
-           dir=$output_objdir
45318
 
-           linklib=$newlib
45319
 
-         fi # test -n "$old_archive_from_expsyms_cmds"
45320
 
+  make_executable (newargz[1]);
45321
 
 
45322
 
-         if test "$linkmode" = prog || test "$mode" != relink; then
45323
 
-           add_shlibpath=
45324
 
-           add_dir=
45325
 
-           add=
45326
 
-           lib_linked=yes
45327
 
-           case $hardcode_action in
45328
 
-           immediate | unsupported)
45329
 
-             if test "$hardcode_direct" = no; then
45330
 
-               add="$dir/$linklib"
45331
 
-               case $host in
45332
 
-                 *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;;
45333
 
-                 *-*-sysv4*uw2*) add_dir="-L$dir" ;;
45334
 
-                 *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \
45335
 
-                   *-*-unixware7*) add_dir="-L$dir" ;;
45336
 
-                 *-*-darwin* )
45337
 
-                   # if the lib is a module then we can not link against
45338
 
-                   # it, someone is ignoring the new warnings I added
45339
 
-                   if /usr/bin/file -L $add 2> /dev/null |
45340
 
-                      $EGREP ": [^:]* bundle" >/dev/null ; then
45341
 
-                     $echo "** Warning, lib $linklib is a module, not a shared library"
45342
 
-                     if test -z "$old_library" ; then
45343
 
-                       $echo
45344
 
-                       $echo "** And there doesn't seem to be a static archive available"
45345
 
-                       $echo "** The link will probably fail, sorry"
45346
 
-                     else
45347
 
-                       add="$dir/$old_library"
45348
 
-                     fi
45349
 
-                   fi
45350
 
-               esac
45351
 
-             elif test "$hardcode_minus_L" = no; then
45352
 
-               case $host in
45353
 
-               *-*-sunos*) add_shlibpath="$dir" ;;
45354
 
-               esac
45355
 
-               add_dir="-L$dir"
45356
 
-               add="-l$name"
45357
 
-             elif test "$hardcode_shlibpath_var" = no; then
45358
 
-               add_shlibpath="$dir"
45359
 
-               add="-l$name"
45360
 
-             else
45361
 
-               lib_linked=no
45362
 
-             fi
45363
 
-             ;;
45364
 
-           relink)
45365
 
-             if test "$hardcode_direct" = yes; then
45366
 
-               add="$dir/$linklib"
45367
 
-             elif test "$hardcode_minus_L" = yes; then
45368
 
-               add_dir="-L$dir"
45369
 
-               # Try looking first in the location we're being installed to.
45370
 
-               if test -n "$inst_prefix_dir"; then
45371
 
-                 case $libdir in
45372
 
-                   [\\/]*)
45373
 
-                     add_dir="$add_dir -L$inst_prefix_dir$libdir"
45374
 
-                     ;;
45375
 
-                 esac
45376
 
-               fi
45377
 
-               add="-l$name"
45378
 
-             elif test "$hardcode_shlibpath_var" = yes; then
45379
 
-               add_shlibpath="$dir"
45380
 
-               add="-l$name"
45381
 
-             else
45382
 
-               lib_linked=no
45383
 
-             fi
45384
 
-             ;;
45385
 
-           *) lib_linked=no ;;
45386
 
+  for (i = 1; i < argc; i++)
45387
 
+    newargz[i + 1] = xstrdup (argv[i]);
45388
 
+  newargz[argc + 1] = NULL;
45389
 
+
45390
 
+  for (i = 0; i < argc + 1; i++)
45391
 
+    {
45392
 
+      LTWRAPPER_DEBUGPRINTF (("(main) newargz[%d]   : %s\n", i, newargz[i]));
45393
 
+    }
45394
 
+
45395
 
+EOF
45396
 
+
45397
 
+           case $host_os in
45398
 
+             mingw*)
45399
 
+               cat <<EOF
45400
 
+  /* execv doesn't actually work on mingw as expected on unix */
45401
 
+  rval = _spawnv (_P_WAIT, "$lt_newargv0", (const char * const *) newargz);
45402
 
+  if (rval == -1)
45403
 
+    {
45404
 
+      /* failed to start process */
45405
 
+      LTWRAPPER_DEBUGPRINTF (("(main) failed to launch target \"$lt_newargv0\": errno = %d\n", errno));
45406
 
+      return 127;
45407
 
+    }
45408
 
+  return rval;
45409
 
+}
45410
 
+EOF
45411
 
+               ;;
45412
 
+             *)
45413
 
+               cat <<EOF
45414
 
+  execv ("$lt_newargv0", newargz);
45415
 
+  return rval; /* =127, but avoids unused variable warning */
45416
 
+}
45417
 
+EOF
45418
 
+               ;;
45419
 
            esac
45420
 
 
45421
 
-           if test "$lib_linked" != yes; then
45422
 
-             $echo "$modename: configuration error: unsupported hardcode properties"
45423
 
-             exit $EXIT_FAILURE
45424
 
-           fi
45425
 
+           cat <<"EOF"
45426
 
 
45427
 
-           if test -n "$add_shlibpath"; then
45428
 
-             case :$compile_shlibpath: in
45429
 
-             *":$add_shlibpath:"*) ;;
45430
 
-             *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;
45431
 
-             esac
45432
 
-           fi
45433
 
-           if test "$linkmode" = prog; then
45434
 
-             test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
45435
 
-             test -n "$add" && compile_deplibs="$add $compile_deplibs"
45436
 
-           else
45437
 
-             test -n "$add_dir" && deplibs="$add_dir $deplibs"
45438
 
-             test -n "$add" && deplibs="$add $deplibs"
45439
 
-             if test "$hardcode_direct" != yes && \
45440
 
-                test "$hardcode_minus_L" != yes && \
45441
 
-                test "$hardcode_shlibpath_var" = yes; then
45442
 
-               case :$finalize_shlibpath: in
45443
 
-               *":$libdir:"*) ;;
45444
 
-               *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
45445
 
-               esac
45446
 
-             fi
45447
 
-           fi
45448
 
-         fi
45449
 
+void *
45450
 
+xmalloc (size_t num)
45451
 
+{
45452
 
+  void *p = (void *) malloc (num);
45453
 
+  if (!p)
45454
 
+    lt_fatal ("Memory exhausted");
45455
 
 
45456
61727
-         if test "$linkmode" = prog || test "$mode" = relink; then
45457
61728
-           add_shlibpath=
45458
61729
-           add_dir=
45489
61760
-             fi
45490
61761
-             add="-l$name"
45491
61762
-           fi
45492
 
+  return p;
45493
 
+}
 
61763
+               cat <<EOF
 
61764
+  newargz[0] = (char *) xstrdup ("$lt_newargv0");
 
61765
+EOF
45494
61766
 
45495
61767
-           if test "$linkmode" = prog; then
45496
61768
-             test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
45517
61789
-         if test "$deplibs_check_method" != pass_all; then
45518
61790
-           # We're trying link a shared library against a static one
45519
61791
-           # but the system doesn't support it.
45520
 
+char *
45521
 
+xstrdup (const char *string)
45522
 
+{
45523
 
+  return string ? strcpy ((char *) xmalloc (strlen (string) + 1),
45524
 
+                         string) : NULL;
45525
 
+}
 
61792
+           cat <<"EOF"
 
61793
+  tmp_pathspec = find_executable (argv[0]);
 
61794
+  if (tmp_pathspec == NULL)
 
61795
+    lt_fatal ("Couldn't find %s", argv[0]);
 
61796
+  LTWRAPPER_DEBUGPRINTF (("(main) found exe (before symlink chase) at : %s\n",
 
61797
+                         tmp_pathspec));
 
61798
+
 
61799
+  actual_cwrapper_path = chase_symlinks (tmp_pathspec);
 
61800
+  LTWRAPPER_DEBUGPRINTF (("(main) found exe (after symlink chase) at : %s\n",
 
61801
+                         actual_cwrapper_path));
 
61802
+  XFREE (tmp_pathspec);
 
61803
+
 
61804
+  shwrapper_name = (char *) xstrdup (base_name (actual_cwrapper_path));
 
61805
+  strendzap (actual_cwrapper_path, shwrapper_name);
 
61806
+
 
61807
+  /* shwrapper_name transforms */
 
61808
+  strendzap (shwrapper_name, ".exe");
 
61809
+  tmp_pathspec = XMALLOC (char, (strlen (shwrapper_name) +
 
61810
+                                strlen ("_ltshwrapperTMP") + 1));
 
61811
+  strcpy (tmp_pathspec, shwrapper_name);
 
61812
+  strcat (tmp_pathspec, "_ltshwrapperTMP");
 
61813
+  XFREE (shwrapper_name);
 
61814
+  shwrapper_name = tmp_pathspec;
 
61815
+  tmp_pathspec = 0;
 
61816
+  LTWRAPPER_DEBUGPRINTF (("(main) libtool shell wrapper name: %s\n",
 
61817
+                         shwrapper_name));
 
61818
+EOF
45526
61819
 
45527
61820
-           # Just print a warning and add the library to dependency_libs so
45528
61821
-           # that the program can be linked against the static library.
45549
61842
-               build_libtool_libs=no
45550
61843
-             fi
45551
61844
-           fi
45552
 
+const char *
45553
 
+base_name (const char *name)
45554
 
+{
45555
 
+  const char *base;
45556
 
+
45557
 
+#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
45558
 
+  /* Skip over the disk name in MSDOS pathnames. */
45559
 
+  if (isalpha ((unsigned char) name[0]) && name[1] == ':')
45560
 
+    name += 2;
45561
 
+#endif
45562
 
+
45563
 
+  for (base = name; *name; name++)
45564
 
+    if (IS_DIR_SEPARATOR (*name))
45565
 
+      base = name + 1;
45566
 
+  return base;
45567
 
+}
45568
 
+
45569
 
+int
45570
 
+check_executable (const char *path)
45571
 
+{
45572
 
+  struct stat st;
45573
 
+
45574
 
+  LTWRAPPER_DEBUGPRINTF (("(check_executable)  : %s\n",
45575
 
+                         path ? (*path ? path : "EMPTY!") : "NULL!"));
45576
 
+  if ((!path) || (!*path))
45577
 
+    return 0;
45578
 
+
45579
 
+  if ((stat (path, &st) >= 0)
45580
 
+      && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
45581
 
+    return 1;
45582
 
          else
 
61845
-         else
45583
61846
-           deplibs="$dir/$old_library $deplibs"
45584
61847
-           link_static=yes
45585
61848
-         fi
45586
61849
-       fi # link shared/static library?
45587
 
+    return 0;
45588
 
+}
 
61850
+           cat <<EOF
 
61851
+  newargz[1] =
 
61852
+    XMALLOC (char, (strlen (actual_cwrapper_path) +
 
61853
+                   strlen ("$objdir") + 1 + strlen (shwrapper_name) + 1));
 
61854
+  strcpy (newargz[1], actual_cwrapper_path);
 
61855
+  strcat (newargz[1], "$objdir");
 
61856
+  strcat (newargz[1], "/");
 
61857
+  strcat (newargz[1], shwrapper_name);
 
61858
+EOF
45589
61859
 
45590
61860
-       if test "$linkmode" = lib; then
45591
61861
-         if test -n "$dependency_libs" &&
45606
61876
-           done
45607
61877
-           dependency_libs="$temp_deplibs"
45608
61878
-         fi
45609
 
+int
45610
 
+make_executable (const char *path)
45611
 
+{
45612
 
+  int rval = 0;
45613
 
+  struct stat st;
45614
61879
 
45615
61880
-         newlib_search_path="$newlib_search_path $absdir"
45616
61881
-         # Link against this library
45622
61887
-           if test "X$duplicate_deps" = "Xyes" ; then
45623
61888
-             case "$tmp_libs " in
45624
61889
-             *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
45625
 
-             esac
 
61890
+           case $host_os in
 
61891
+             mingw*)
 
61892
+           cat <<"EOF"
 
61893
+  {
 
61894
+    char* p;
 
61895
+    while ((p = strchr (newargz[1], '\\')) != NULL)
 
61896
+      {
 
61897
+       *p = '/';
 
61898
+      }
 
61899
+  }
 
61900
+EOF
 
61901
+               ;;
 
61902
              esac
45626
61903
-           fi
45627
61904
-           tmp_libs="$tmp_libs $deplib"
45628
61905
-         done
45629
 
+  LTWRAPPER_DEBUGPRINTF (("(make_executable)   : %s\n",
45630
 
+                         path ? (*path ? path : "EMPTY!") : "NULL!"));
45631
 
+  if ((!path) || (!*path))
45632
 
+    return 0;
45633
61906
 
45634
61907
-         if test "$link_all_deplibs" != no; then
45635
61908
-           # Add the search paths of all dependency libraries
45652
61925
-               esac
45653
61926
-               if grep "^installed=no" $deplib > /dev/null; then
45654
61927
-                 path="$absdir/$objdir"
45655
 
+  if (stat (path, &st) >= 0)
45656
 
+    {
45657
 
+      rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);
45658
 
+    }
45659
 
+  return rval;
45660
 
+}
45661
 
+
45662
 
+/* Searches for the full path of the wrapper.  Returns
45663
 
+   newly allocated full path name if found, NULL otherwise
45664
 
+   Does not chase symlinks, even on platforms that support them.
45665
 
+*/
45666
 
+char *
45667
 
+find_executable (const char *wrapper)
45668
 
+{
45669
 
+  int has_slash = 0;
45670
 
+  const char *p;
45671
 
+  const char *p_next;
45672
 
+  /* static buffer for getcwd */
45673
 
+  char tmp[LT_PATHMAX + 1];
45674
 
+  int tmp_len;
45675
 
+  char *concat_name;
45676
 
+
45677
 
+  LTWRAPPER_DEBUGPRINTF (("(find_executable)   : %s\n",
45678
 
+                         wrapper ? (*wrapper ? wrapper : "EMPTY!") : "NULL!"));
45679
 
+
45680
 
+  if ((wrapper == NULL) || (*wrapper == '\0'))
45681
 
+    return NULL;
45682
 
+
45683
 
+  /* Absolute path? */
45684
 
+#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
45685
 
+  if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')
45686
 
+    {
45687
 
+      concat_name = xstrdup (wrapper);
45688
 
+      if (check_executable (concat_name))
45689
 
+       return concat_name;
45690
 
+      XFREE (concat_name);
45691
 
+    }
45692
 
                else
 
61928
-               else
45693
61929
-                 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
45694
61930
-                 if test -z "$libdir"; then
45695
61931
-                   $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
45775
62011
-         done
45776
62012
-         newlib_search_path=
45777
62013
-       fi
45778
 
+    {
45779
 
+#endif
45780
 
+      if (IS_DIR_SEPARATOR (wrapper[0]))
45781
 
+       {
45782
 
+         concat_name = xstrdup (wrapper);
45783
 
+         if (check_executable (concat_name))
45784
 
+           return concat_name;
45785
 
+         XFREE (concat_name);
45786
 
+       }
45787
 
+#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
45788
 
+    }
45789
 
+#endif
 
62014
+           cat <<"EOF"
 
62015
+  XFREE (shwrapper_name);
 
62016
+  XFREE (actual_cwrapper_path);
45790
62017
 
45791
62018
-       if test "$linkmode,$pass" != "prog,link"; then
45792
62019
-         vars="deplibs"
45793
 
+  for (p = wrapper; *p; p++)
45794
 
+    if (*p == '/')
45795
 
+      {
45796
 
+       has_slash = 1;
45797
 
+       break;
45798
 
+      }
45799
 
+  if (!has_slash)
45800
 
+    {
45801
 
+      /* no slashes; search PATH */
45802
 
+      const char *path = getenv ("PATH");
45803
 
+      if (path != NULL)
45804
 
+       {
45805
 
+         for (p = path; *p; p = p_next)
45806
 
+           {
45807
 
+             const char *q;
45808
 
+             size_t p_len;
45809
 
+             for (q = p; *q; q++)
45810
 
+               if (IS_PATH_SEPARATOR (*q))
45811
 
+                 break;
45812
 
+             p_len = q - p;
45813
 
+             p_next = (*q == '\0' ? q : q + 1);
45814
 
+             if (p_len == 0)
45815
 
+               {
45816
 
+                 /* empty path: current directory */
45817
 
+                 if (getcwd (tmp, LT_PATHMAX) == NULL)
45818
 
+                   lt_fatal ("getcwd failed");
45819
 
+                 tmp_len = strlen (tmp);
45820
 
+                 concat_name =
45821
 
+                   XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
45822
 
+                 memcpy (concat_name, tmp, tmp_len);
45823
 
+                 concat_name[tmp_len] = '/';
45824
 
+                 strcpy (concat_name + tmp_len + 1, wrapper);
45825
 
+               }
45826
 
        else
 
62020
-       else
45827
62021
-         vars="compile_deplibs finalize_deplibs"
45828
62022
-       fi
45829
62023
-       for var in $vars dependency_libs; do
45857
62051
-             # for duplicate removal.
45858
62052
-             case " $specialdeplibs " in
45859
62053
-             *" $deplib "*) new_libs="$deplib $new_libs" ;;
45860
 
-             *)
 
62054
+  /* always write in binary mode */
 
62055
+  if ((shwrapper = fopen (newargz[1], FOPEN_WB)) == 0)
 
62056
+    {
 
62057
+      lt_fatal ("Could not open %s for writing", newargz[1]);
 
62058
+    }
 
62059
+  fprintf (shwrapper, "%s", script_text);
 
62060
+  fclose (shwrapper);
 
62061
+
 
62062
+  make_executable (newargz[1]);
 
62063
+
 
62064
+  for (i = 1; i < argc; i++)
 
62065
+    newargz[i + 1] = xstrdup (argv[i]);
 
62066
+  newargz[argc + 1] = NULL;
 
62067
+
 
62068
+  for (i = 0; i < argc + 1; i++)
 
62069
+    {
 
62070
+      LTWRAPPER_DEBUGPRINTF (("(main) newargz[%d]   : %s\n", i, newargz[i]));
 
62071
+    }
 
62072
+
 
62073
+EOF
 
62074
+
 
62075
+           case $host_os in
 
62076
+             mingw*)
 
62077
+               cat <<EOF
 
62078
+  /* execv doesn't actually work on mingw as expected on unix */
 
62079
+  rval = _spawnv (_P_WAIT, "$lt_newargv0", (const char * const *) newargz);
 
62080
+  if (rval == -1)
 
62081
+    {
 
62082
+      /* failed to start process */
 
62083
+      LTWRAPPER_DEBUGPRINTF (("(main) failed to launch target \"$lt_newargv0\": errno = %d\n", errno));
 
62084
+      return 127;
 
62085
+    }
 
62086
+  return rval;
 
62087
+}
 
62088
+EOF
 
62089
+               ;;
 
62090
              *)
45861
62091
-               case " $new_libs " in
45862
62092
-               *" $deplib "*) ;;
45863
62093
-               *) new_libs="$deplib $new_libs" ;;
45864
62094
-               esac
45865
 
-               ;;
 
62095
+               cat <<EOF
 
62096
+  execv ("$lt_newargv0", newargz);
 
62097
+  return rval; /* =127, but avoids unused variable warning */
 
62098
+}
 
62099
+EOF
 
62100
                ;;
45866
62101
-             esac
45867
62102
-             ;;
45868
62103
-           esac
45877
62112
-             esac
45878
62113
-             ;;
45879
62114
-           *) tmp_libs="$tmp_libs $deplib" ;;
45880
 
-           esac
 
62115
            esac
45881
62116
-         done
45882
62117
-         eval $var=\"$tmp_libs\"
45883
62118
-       done # for var
45901
62136
-      dlfiles="$newdlfiles"
45902
62137
-      dlprefiles="$newdlprefiles"
45903
62138
-    fi
 
62139
 
 
62140
-    case $linkmode in
 
62141
-    oldlib)
 
62142
-      if test -n "$deplibs"; then
 
62143
-       $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2
 
62144
-      fi
 
62145
+           cat <<"EOF"
 
62146
 
 
62147
-      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
 
62148
-       $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
 
62149
-      fi
 
62150
+void *
 
62151
+xmalloc (size_t num)
 
62152
+{
 
62153
+  void *p = (void *) malloc (num);
 
62154
+  if (!p)
 
62155
+    lt_fatal ("Memory exhausted");
 
62156
 
 
62157
-      if test -n "$rpath"; then
 
62158
-       $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2
 
62159
-      fi
 
62160
+  return p;
 
62161
+}
 
62162
 
 
62163
-      if test -n "$xrpath"; then
 
62164
-       $echo "$modename: warning: \`-R' is ignored for archives" 1>&2
 
62165
-      fi
 
62166
+char *
 
62167
+xstrdup (const char *string)
 
62168
+{
 
62169
+  return string ? strcpy ((char *) xmalloc (strlen (string) + 1),
 
62170
+                         string) : NULL;
 
62171
+}
 
62172
 
 
62173
-      if test -n "$vinfo"; then
 
62174
-       $echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2
 
62175
-      fi
 
62176
+const char *
 
62177
+base_name (const char *name)
 
62178
+{
 
62179
+  const char *base;
 
62180
 
 
62181
-      if test -n "$release"; then
 
62182
-       $echo "$modename: warning: \`-release' is ignored for archives" 1>&2
 
62183
-      fi
 
62184
+#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
 
62185
+  /* Skip over the disk name in MSDOS pathnames. */
 
62186
+  if (isalpha ((unsigned char) name[0]) && name[1] == ':')
 
62187
+    name += 2;
 
62188
+#endif
 
62189
 
 
62190
-      if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
 
62191
-       $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2
 
62192
-      fi
 
62193
+  for (base = name; *name; name++)
 
62194
+    if (IS_DIR_SEPARATOR (*name))
 
62195
+      base = name + 1;
 
62196
+  return base;
 
62197
+}
 
62198
 
 
62199
-      # Now set the variables for building old libraries.
 
62200
-      build_libtool_libs=no
 
62201
-      oldlibs="$output"
 
62202
-      objs="$objs$old_deplibs"
 
62203
-      ;;
 
62204
+int
 
62205
+check_executable (const char *path)
 
62206
+{
 
62207
+  struct stat st;
 
62208
 
 
62209
-    lib)
 
62210
-      # Make sure we only generate libraries of the form `libNAME.la'.
 
62211
-      case $outputname in
 
62212
-      lib*)
 
62213
-       name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
 
62214
-       eval shared_ext=\"$shrext_cmds\"
 
62215
-       eval libname=\"$libname_spec\"
 
62216
-       ;;
 
62217
-      *)
 
62218
-       if test "$module" = no; then
 
62219
-         $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
 
62220
-         $echo "$help" 1>&2
 
62221
-         exit $EXIT_FAILURE
 
62222
-       fi
 
62223
-       if test "$need_lib_prefix" != no; then
 
62224
-         # Add the "lib" prefix for modules if required
 
62225
-         name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
 
62226
-         eval shared_ext=\"$shrext_cmds\"
 
62227
-         eval libname=\"$libname_spec\"
 
62228
-       else
 
62229
-         libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
 
62230
-       fi
 
62231
-       ;;
 
62232
-      esac
 
62233
+  LTWRAPPER_DEBUGPRINTF (("(check_executable)  : %s\n",
 
62234
+                         path ? (*path ? path : "EMPTY!") : "NULL!"));
 
62235
+  if ((!path) || (!*path))
 
62236
+    return 0;
 
62237
 
 
62238
-      if test -n "$objs"; then
 
62239
-       if test "$deplibs_check_method" != pass_all; then
 
62240
-         $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1
 
62241
-         exit $EXIT_FAILURE
 
62242
-       else
 
62243
-         $echo
 
62244
-         $echo "*** Warning: Linking the shared library $output against the non-libtool"
 
62245
-         $echo "*** objects $objs is not portable!"
 
62246
-         libobjs="$libobjs $objs"
 
62247
-       fi
 
62248
-      fi
 
62249
+  if ((stat (path, &st) >= 0)
 
62250
+      && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
 
62251
+    return 1;
 
62252
+         else
 
62253
+    return 0;
 
62254
+}
 
62255
 
 
62256
-      if test "$dlself" != no; then
 
62257
-       $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2
 
62258
-      fi
 
62259
+int
 
62260
+make_executable (const char *path)
 
62261
+{
 
62262
+  int rval = 0;
 
62263
+  struct stat st;
 
62264
 
 
62265
-      set dummy $rpath
 
62266
-      if test "$#" -gt 2; then
 
62267
-       $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
 
62268
-      fi
 
62269
-      install_libdir="$2"
 
62270
+  LTWRAPPER_DEBUGPRINTF (("(make_executable)   : %s\n",
 
62271
+                         path ? (*path ? path : "EMPTY!") : "NULL!"));
 
62272
+  if ((!path) || (!*path))
 
62273
+    return 0;
 
62274
 
 
62275
-      oldlibs=
 
62276
-      if test -z "$rpath"; then
 
62277
-       if test "$build_libtool_libs" = yes; then
 
62278
-         # Building a libtool convenience library.
 
62279
-         # Some compilers have problems with a `.al' extension so
 
62280
-         # convenience libraries should have the same extension an
 
62281
-         # archive normally would.
 
62282
-         oldlibs="$output_objdir/$libname.$libext $oldlibs"
 
62283
-         build_libtool_libs=convenience
 
62284
-         build_old_libs=yes
 
62285
-       fi
 
62286
-
 
62287
-       if test -n "$vinfo"; then
 
62288
-         $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2
 
62289
-       fi
 
62290
-
 
62291
-       if test -n "$release"; then
 
62292
-         $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2
 
62293
-       fi
 
62294
-      else
 
62295
-
 
62296
-       # Parse the version information argument.
 
62297
-       save_ifs="$IFS"; IFS=':'
 
62298
-       set dummy $vinfo 0 0 0
 
62299
-       IFS="$save_ifs"
 
62300
-
 
62301
-       if test -n "$8"; then
 
62302
-         $echo "$modename: too many parameters to \`-version-info'" 1>&2
 
62303
-         $echo "$help" 1>&2
 
62304
-         exit $EXIT_FAILURE
 
62305
-       fi
 
62306
+  if (stat (path, &st) >= 0)
 
62307
+    {
 
62308
+      rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);
 
62309
+    }
 
62310
+  return rval;
 
62311
+}
 
62312
 
 
62313
-       # convert absolute version numbers to libtool ages
 
62314
-       # this retains compatibility with .la files and attempts
 
62315
-       # to make the code below a bit more comprehensible
 
62316
+/* Searches for the full path of the wrapper.  Returns
 
62317
+   newly allocated full path name if found, NULL otherwise
 
62318
+   Does not chase symlinks, even on platforms that support them.
 
62319
+*/
 
62320
+char *
 
62321
+find_executable (const char *wrapper)
 
62322
+{
 
62323
+  int has_slash = 0;
 
62324
+  const char *p;
 
62325
+  const char *p_next;
 
62326
+  /* static buffer for getcwd */
 
62327
+  char tmp[LT_PATHMAX + 1];
 
62328
+  int tmp_len;
 
62329
+  char *concat_name;
 
62330
 
 
62331
-       case $vinfo_number in
 
62332
-       yes)
 
62333
-         number_major="$2"
 
62334
-         number_minor="$3"
 
62335
-         number_revision="$4"
 
62336
-         #
 
62337
-         # There are really only two kinds -- those that
 
62338
-         # use the current revision as the major version
 
62339
-         # and those that subtract age and use age as
 
62340
-         # a minor version.  But, then there is irix
 
62341
-         # which has an extra 1 added just for fun
 
62342
-         #
 
62343
-         case $version_type in
 
62344
-         darwin|linux|osf|windows|none)
 
62345
-           current=`expr $number_major + $number_minor`
 
62346
-           age="$number_minor"
 
62347
-           revision="$number_revision"
 
62348
-           ;;
 
62349
-         freebsd-aout|freebsd-elf|sunos)
 
62350
-           current="$number_major"
 
62351
-           revision="$number_minor"
 
62352
-           age="0"
 
62353
-           ;;
 
62354
-         irix|nonstopux)
 
62355
-           current=`expr $number_major + $number_minor`
 
62356
-           age="$number_minor"
 
62357
-           revision="$number_minor"
 
62358
-           lt_irix_increment=no
 
62359
-           ;;
 
62360
-         esac
 
62361
-         ;;
 
62362
-       no)
 
62363
-         current="$2"
 
62364
-         revision="$3"
 
62365
-         age="$4"
 
62366
-         ;;
 
62367
-       esac
 
62368
+  LTWRAPPER_DEBUGPRINTF (("(find_executable)   : %s\n",
 
62369
+                         wrapper ? (*wrapper ? wrapper : "EMPTY!") : "NULL!"));
 
62370
 
 
62371
-       # Check that each of the things are valid numbers.
 
62372
-       case $current in
 
62373
-       0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
 
62374
-       *)
 
62375
-         $echo "$modename: CURRENT \`$current' must be a nonnegative integer" 1>&2
 
62376
-         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
62377
-         exit $EXIT_FAILURE
 
62378
-         ;;
 
62379
-       esac
 
62380
+  if ((wrapper == NULL) || (*wrapper == '\0'))
 
62381
+    return NULL;
 
62382
 
 
62383
-       case $revision in
 
62384
-       0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
 
62385
-       *)
 
62386
-         $echo "$modename: REVISION \`$revision' must be a nonnegative integer" 1>&2
 
62387
-         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
62388
-         exit $EXIT_FAILURE
 
62389
-         ;;
 
62390
-       esac
 
62391
+  /* Absolute path? */
 
62392
+#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
 
62393
+  if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')
 
62394
+    {
 
62395
+      concat_name = xstrdup (wrapper);
 
62396
+      if (check_executable (concat_name))
 
62397
+       return concat_name;
 
62398
+      XFREE (concat_name);
 
62399
+    }
 
62400
+               else
 
62401
+    {
 
62402
+#endif
 
62403
+      if (IS_DIR_SEPARATOR (wrapper[0]))
 
62404
+       {
 
62405
+         concat_name = xstrdup (wrapper);
 
62406
+         if (check_executable (concat_name))
 
62407
+           return concat_name;
 
62408
+         XFREE (concat_name);
 
62409
+       }
 
62410
+#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
 
62411
+    }
 
62412
+#endif
 
62413
 
 
62414
-       case $age in
 
62415
-       0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
 
62416
-       *)
 
62417
-         $echo "$modename: AGE \`$age' must be a nonnegative integer" 1>&2
 
62418
-         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
62419
-         exit $EXIT_FAILURE
 
62420
-         ;;
 
62421
-       esac
 
62422
+  for (p = wrapper; *p; p++)
 
62423
+    if (*p == '/')
 
62424
+      {
 
62425
+       has_slash = 1;
 
62426
+       break;
 
62427
+      }
 
62428
+  if (!has_slash)
 
62429
+    {
 
62430
+      /* no slashes; search PATH */
 
62431
+      const char *path = getenv ("PATH");
 
62432
+      if (path != NULL)
 
62433
+       {
 
62434
+         for (p = path; *p; p = p_next)
 
62435
+           {
 
62436
+             const char *q;
 
62437
+             size_t p_len;
 
62438
+             for (q = p; *q; q++)
 
62439
+               if (IS_PATH_SEPARATOR (*q))
 
62440
+                 break;
 
62441
+             p_len = q - p;
 
62442
+             p_next = (*q == '\0' ? q : q + 1);
 
62443
+             if (p_len == 0)
 
62444
+               {
 
62445
+                 /* empty path: current directory */
 
62446
+                 if (getcwd (tmp, LT_PATHMAX) == NULL)
 
62447
+                   lt_fatal ("getcwd failed");
 
62448
+                 tmp_len = strlen (tmp);
 
62449
+                 concat_name =
 
62450
+                   XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
 
62451
+                 memcpy (concat_name, tmp, tmp_len);
 
62452
+                 concat_name[tmp_len] = '/';
 
62453
+                 strcpy (concat_name + tmp_len + 1, wrapper);
 
62454
+               }
 
62455
+       else
45904
62456
+               {
45905
62457
+                 concat_name =
45906
62458
+                   XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);
45924
62476
+  concat_name[tmp_len] = '/';
45925
62477
+  strcpy (concat_name + tmp_len + 1, wrapper);
45926
62478
 
45927
 
-    case $linkmode in
45928
 
-    oldlib)
45929
 
-      if test -n "$deplibs"; then
45930
 
-       $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2
45931
 
-      fi
 
62479
-       if test "$age" -gt "$current"; then
 
62480
-         $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
 
62481
-         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
 
62482
-         exit $EXIT_FAILURE
 
62483
-       fi
45932
62484
+  if (check_executable (concat_name))
45933
62485
+    return concat_name;
45934
62486
+  XFREE (concat_name);
45935
62487
+  return NULL;
45936
62488
+}
45937
62489
 
45938
 
-      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
45939
 
-       $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
45940
 
-      fi
 
62490
-       # Calculate the version variables.
 
62491
-       major=
 
62492
-       versuffix=
 
62493
-       verstring=
 
62494
-       case $version_type in
 
62495
-       none) ;;
45941
62496
+char *
45942
62497
+chase_symlinks (const char *pathspec)
45943
62498
+{
45961
62516
+             break;
45962
62517
+           }
45963
62518
 
45964
 
-      if test -n "$rpath"; then
45965
 
-       $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2
45966
 
-      fi
 
62519
-       darwin)
 
62520
-         # Like Linux, but with the current version available in
 
62521
-         # verstring for coding it into the library header
 
62522
-         major=.`expr $current - $age`
 
62523
-         versuffix="$major.$age.$revision"
 
62524
-         # Darwin ld doesn't like 0 for these options...
 
62525
-         minor_current=`expr $current + 1`
 
62526
-         xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
 
62527
-         verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
 
62528
-         ;;
45967
62529
+         /* search backwards for last DIR_SEPARATOR */
45968
62530
+         p = tmp_pathspec + strlen (tmp_pathspec) - 1;
45969
62531
+         while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
45983
62545
+    }
45984
62546
+  XFREE (tmp_pathspec);
45985
62547
 
45986
 
-      if test -n "$xrpath"; then
45987
 
-       $echo "$modename: warning: \`-R' is ignored for archives" 1>&2
45988
 
-      fi
 
62548
-       freebsd-aout)
 
62549
-         major=".$current"
 
62550
-         versuffix=".$current.$revision";
 
62551
-         ;;
45989
62552
+  if (!has_symlinks)
45990
62553
+    {
45991
62554
+      return xstrdup (pathspec);
45992
62555
+    }
45993
62556
 
45994
 
-      if test -n "$vinfo"; then
45995
 
-       $echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2
45996
 
-      fi
 
62557
-       freebsd-elf)
 
62558
-         major=".$current"
 
62559
-         versuffix=".$current";
 
62560
-         ;;
45997
62561
+  tmp_pathspec = realpath (pathspec, buf);
45998
62562
+  if (tmp_pathspec == 0)
45999
62563
+    {
46003
62567
+#endif
46004
62568
+}
46005
62569
 
46006
 
-      if test -n "$release"; then
46007
 
-       $echo "$modename: warning: \`-release' is ignored for archives" 1>&2
46008
 
-      fi
 
62570
-       irix | nonstopux)
 
62571
-         if test "X$lt_irix_increment" = "Xno"; then
 
62572
-           major=`expr $current - $age`
 
62573
-         else
 
62574
-           major=`expr $current - $age + 1`
 
62575
-         fi
 
62576
-         case $version_type in
 
62577
-           nonstopux) verstring_prefix=nonstopux ;;
 
62578
-           *)         verstring_prefix=sgi ;;
 
62579
-         esac
 
62580
-         verstring="$verstring_prefix$major.$revision"
46009
62581
+char *
46010
62582
+strendzap (char *str, const char *pat)
46011
62583
+{
46012
62584
+  size_t len, patlen;
46013
62585
 
46014
 
-      if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
46015
 
-       $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2
46016
 
-      fi
 
62586
-         # Add in all the interfaces that we are compatible with.
 
62587
-         loop=$revision
 
62588
-         while test "$loop" -ne 0; do
 
62589
-           iface=`expr $revision - $loop`
 
62590
-           loop=`expr $loop - 1`
 
62591
-           verstring="$verstring_prefix$major.$iface:$verstring"
 
62592
-         done
46017
62593
+  assert (str != NULL);
46018
62594
+  assert (pat != NULL);
46019
62595
 
46020
 
-      # Now set the variables for building old libraries.
46021
 
-      build_libtool_libs=no
46022
 
-      oldlibs="$output"
46023
 
-      objs="$objs$old_deplibs"
46024
 
-      ;;
 
62596
-         # Before this point, $major must not contain `.'.
 
62597
-         major=.$major
 
62598
-         versuffix="$major.$revision"
 
62599
-         ;;
46025
62600
+  len = strlen (str);
46026
62601
+  patlen = strlen (pat);
46027
62602
 
46028
 
-    lib)
46029
 
-      # Make sure we only generate libraries of the form `libNAME.la'.
46030
 
-      case $outputname in
46031
 
-      lib*)
46032
 
-       name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
46033
 
-       eval shared_ext=\"$shrext_cmds\"
46034
 
-       eval libname=\"$libname_spec\"
46035
 
-       ;;
46036
 
-      *)
46037
 
-       if test "$module" = no; then
46038
 
-         $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
46039
 
-         $echo "$help" 1>&2
46040
 
-         exit $EXIT_FAILURE
46041
 
-       fi
46042
 
-       if test "$need_lib_prefix" != no; then
46043
 
-         # Add the "lib" prefix for modules if required
46044
 
-         name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
46045
 
-         eval shared_ext=\"$shrext_cmds\"
46046
 
-         eval libname=\"$libname_spec\"
46047
 
-       else
46048
 
-         libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
46049
 
-       fi
46050
 
-       ;;
46051
 
-      esac
 
62603
-       linux)
 
62604
-         major=.`expr $current - $age`
 
62605
-         versuffix="$major.$age.$revision"
 
62606
-         ;;
46052
62607
+  if (patlen <= len)
46053
62608
+    {
46054
62609
+      str += len - patlen;
46058
62613
+  return str;
46059
62614
+}
46060
62615
 
46061
 
-      if test -n "$objs"; then
46062
 
-       if test "$deplibs_check_method" != pass_all; then
46063
 
-         $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1
46064
 
-         exit $EXIT_FAILURE
46065
 
-       else
46066
 
-         $echo
46067
 
-         $echo "*** Warning: Linking the shared library $output against the non-libtool"
46068
 
-         $echo "*** objects $objs is not portable!"
46069
 
-         libobjs="$libobjs $objs"
46070
 
-       fi
46071
 
-      fi
 
62616
-       osf)
 
62617
-         major=.`expr $current - $age`
 
62618
-         versuffix=".$current.$age.$revision"
 
62619
-         verstring="$current.$age.$revision"
46072
62620
+static void
46073
62621
+lt_error_core (int exit_status, const char *mode,
46074
62622
+              const char *message, va_list ap)
46077
62625
+  vfprintf (stderr, message, ap);
46078
62626
+  fprintf (stderr, ".\n");
46079
62627
 
46080
 
-      if test "$dlself" != no; then
46081
 
-       $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2
46082
 
-      fi
 
62628
-         # Add in all the interfaces that we are compatible with.
 
62629
-         loop=$age
 
62630
-         while test "$loop" -ne 0; do
 
62631
-           iface=`expr $current - $loop`
 
62632
-           loop=`expr $loop - 1`
 
62633
-           verstring="$verstring:${iface}.0"
 
62634
-         done
46083
62635
+  if (exit_status >= 0)
46084
62636
+    exit (exit_status);
46085
62637
+}
46086
62638
 
46087
 
-      set dummy $rpath
46088
 
-      if test "$#" -gt 2; then
46089
 
-       $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
46090
 
-      fi
46091
 
-      install_libdir="$2"
 
62639
-         # Make executables depend on our current version.
 
62640
-         verstring="$verstring:${current}.0"
 
62641
-         ;;
46092
62642
+void
46093
62643
+lt_fatal (const char *message, ...)
46094
62644
+{
46101
62651
+}
46102
62652
+# end: func_emit_cwrapperexe_src
46103
62653
 
46104
 
-      oldlibs=
46105
 
-      if test -z "$rpath"; then
46106
 
-       if test "$build_libtool_libs" = yes; then
46107
 
-         # Building a libtool convenience library.
46108
 
-         # Some compilers have problems with a `.al' extension so
46109
 
-         # convenience libraries should have the same extension an
46110
 
-         # archive normally would.
46111
 
-         oldlibs="$output_objdir/$libname.$libext $oldlibs"
46112
 
-         build_libtool_libs=convenience
46113
 
-         build_old_libs=yes
46114
 
-       fi
 
62654
-       sunos)
 
62655
-         major=".$current"
 
62656
-         versuffix=".$current.$revision"
 
62657
-         ;;
46115
62658
+# func_mode_link arg...
46116
62659
+func_mode_link ()
46117
62660
+{
46124
62667
+      # flag for every libtool invocation.
46125
62668
+      # allow_undefined=no
46126
62669
 
46127
 
-       if test -n "$vinfo"; then
46128
 
-         $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2
46129
 
-       fi
 
62670
-       windows)
 
62671
-         # Use '-' rather than '.', since we only want one
 
62672
-         # extension on DOS 8.3 filesystems.
 
62673
-         major=`expr $current - $age`
 
62674
-         versuffix="-$major"
 
62675
-         ;;
46130
62676
+      # FIXME: Unfortunately, there are problems with the above when trying
46131
62677
+      # to make a dll which has undefined symbols, in which case not
46132
62678
+      # even a static library is built.  For now, we need to specify
46143
62689
+    compile_command=$nonopt
46144
62690
+    finalize_command=$nonopt
46145
62691
 
46146
 
-       if test -n "$release"; then
46147
 
-         $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2
46148
 
-       fi
46149
 
-      else
 
62692
-       *)
 
62693
-         $echo "$modename: unknown library version type \`$version_type'" 1>&2
 
62694
-         $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
 
62695
-         exit $EXIT_FAILURE
 
62696
-         ;;
 
62697
-       esac
46150
62698
+    compile_rpath=
46151
62699
+    finalize_rpath=
46152
62700
+    compile_shlibpath=
46162
62710
+    inst_prefix_dir=
46163
62711
+    new_inherited_linker_flags=
46164
62712
 
46165
 
-       # Parse the version information argument.
46166
 
-       save_ifs="$IFS"; IFS=':'
46167
 
-       set dummy $vinfo 0 0 0
46168
 
-       IFS="$save_ifs"
 
62713
-       # Clear the version info if we defaulted, and they specified a release.
 
62714
-       if test -z "$vinfo" && test -n "$release"; then
 
62715
-         major=
 
62716
-         case $version_type in
 
62717
-         darwin)
 
62718
-           # we can't check for "0.0" in archive_cmds due to quoting
 
62719
-           # problems, so we reset it completely
 
62720
-           verstring=
46169
62721
+    avoid_version=no
46170
62722
+    dlfiles=
46171
62723
+    dlprefiles=
46196
62748
+    weak_libs=
46197
62749
+    single_module="${wl}-single_module"
46198
62750
+    func_infer_tag $base_compile
46199
 
 
46200
 
-       if test -n "$8"; then
46201
 
-         $echo "$modename: too many parameters to \`-version-info'" 1>&2
46202
 
-         $echo "$help" 1>&2
46203
 
-         exit $EXIT_FAILURE
 
62751
+
46204
62752
+    # We need to know -static, to get the right output filenames.
46205
62753
+    for arg
46206
62754
+    do
46216
62764
+       -all-static)
46217
62765
+         if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
46218
62766
+           func_warning "complete static linking is impossible in this configuration"
46219
 
        fi
46220
 
-
46221
 
-       # convert absolute version numbers to libtool ages
46222
 
-       # this retains compatibility with .la files and attempts
46223
 
-       # to make the code below a bit more comprehensible
46224
 
-
46225
 
-       case $vinfo_number in
46226
 
-       yes)
46227
 
-         number_major="$2"
46228
 
-         number_minor="$3"
46229
 
-         number_revision="$4"
46230
 
-         #
46231
 
-         # There are really only two kinds -- those that
46232
 
-         # use the current revision as the major version
46233
 
-         # and those that subtract age and use age as
46234
 
-         # a minor version.  But, then there is irix
46235
 
-         # which has an extra 1 added just for fun
46236
 
-         #
46237
 
-         case $version_type in
46238
 
-         darwin|linux|osf|windows|none)
46239
 
-           current=`expr $number_major + $number_minor`
46240
 
-           age="$number_minor"
46241
 
-           revision="$number_revision"
 
62767
+       fi
46242
62768
+         if test -n "$link_static_flag"; then
46243
62769
+           dlopen_self=$dlopen_self_static
46244
62770
+         fi
46245
62771
+         prefer_static_libs=yes
46246
62772
            ;;
46247
 
-         freebsd-aout|freebsd-elf|sunos)
46248
 
-           current="$number_major"
46249
 
-           revision="$number_minor"
46250
 
-           age="0"
 
62773
-         *)
 
62774
-           verstring="0.0"
46251
62775
+       -static)
46252
62776
+         if test -z "$pic_flag" && test -n "$link_static_flag"; then
46253
62777
+           dlopen_self=$dlopen_self_static
46254
62778
+         fi
46255
62779
+         prefer_static_libs=built
46256
 
            ;;
46257
 
-         irix|nonstopux)
46258
 
-           current=`expr $number_major + $number_minor`
46259
 
-           age="$number_minor"
46260
 
-           revision="$number_minor"
46261
 
-           lt_irix_increment=no
 
62780
+           ;;
46262
62781
+       -static-libtool-libs)
46263
62782
+         if test -z "$pic_flag" && test -n "$link_static_flag"; then
46264
62783
+           dlopen_self=$dlopen_self_static
46266
62785
+         prefer_static_libs=yes
46267
62786
            ;;
46268
62787
          esac
46269
 
-         ;;
46270
 
-       no)
46271
 
-         current="$2"
46272
 
-         revision="$3"
46273
 
-         age="$4"
 
62788
-         if test "$need_version" = no; then
 
62789
-           versuffix=
46274
62790
+       build_libtool_libs=no
46275
62791
+       build_old_libs=yes
46276
62792
+       break
46277
 
          ;;
46278
 
        esac
 
62793
+         ;;
 
62794
+       esac
46279
62795
+    done
46280
 
 
46281
 
-       # Check that each of the things are valid numbers.
46282
 
-       case $current in
46283
 
-       0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
46284
 
-       *)
46285
 
-         $echo "$modename: CURRENT \`$current' must be a nonnegative integer" 1>&2
46286
 
-         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
46287
 
-         exit $EXIT_FAILURE
46288
 
-         ;;
46289
 
-       esac
 
62796
+
46290
62797
+    # See if our shared archives depend on static archives.
46291
62798
+    test -n "$old_archive_from_new_cmds" && build_old_libs=yes
46292
 
 
46293
 
-       case $revision in
46294
 
-       0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
46295
 
-       *)
46296
 
-         $echo "$modename: REVISION \`$revision' must be a nonnegative integer" 1>&2
46297
 
-         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
46298
 
-         exit $EXIT_FAILURE
46299
 
-         ;;
46300
 
-       esac
 
62799
+
46301
62800
+    # Go through the arguments, transforming them on the way.
46302
62801
+    while test "$#" -gt 0; do
46303
62802
+      arg="$1"
46305
62804
+      func_quote_for_eval "$arg"
46306
62805
+      qarg=$func_quote_for_eval_unquoted_result
46307
62806
+      func_append libtool_args " $func_quote_for_eval_result"
46308
 
 
46309
 
-       case $age in
46310
 
-       0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
46311
 
-       *)
46312
 
-         $echo "$modename: AGE \`$age' must be a nonnegative integer" 1>&2
46313
 
-         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
46314
 
-         exit $EXIT_FAILURE
 
62807
+
46315
62808
+      # If the previous option needs an argument, assign it.
46316
62809
+      if test -n "$prev"; then
46317
62810
+       case $prev in
46318
62811
+       output)
46319
62812
+         func_append compile_command " @OUTPUT@"
46320
62813
+         func_append finalize_command " @OUTPUT@"
46321
 
          ;;
46322
 
        esac
46323
 
 
46324
 
-       if test "$age" -gt "$current"; then
46325
 
-         $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
46326
 
-         $echo "$modename: \`$vinfo' is not valid version information" 1>&2
46327
 
-         exit $EXIT_FAILURE
 
62814
+         ;;
 
62815
+       esac
 
62816
+
46328
62817
+       case $prev in
46329
62818
+       dlfiles|dlprefiles)
46330
62819
+         if test "$preload" = no; then
46332
62821
+           func_append compile_command " @SYMFILE@"
46333
62822
+           func_append finalize_command " @SYMFILE@"
46334
62823
+           preload=yes
46335
 
        fi
46336
 
-
46337
 
-       # Calculate the version variables.
46338
 
-       major=
46339
 
-       versuffix=
46340
 
-       verstring=
46341
 
-       case $version_type in
46342
 
-       none) ;;
46343
 
-
46344
 
-       darwin)
46345
 
-         # Like Linux, but with the current version available in
46346
 
-         # verstring for coding it into the library header
46347
 
-         major=.`expr $current - $age`
46348
 
-         versuffix="$major.$age.$revision"
46349
 
-         # Darwin ld doesn't like 0 for these options...
46350
 
-         minor_current=`expr $current + 1`
46351
 
-         xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
46352
 
-         verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
46353
 
-         ;;
46354
 
-
46355
 
-       freebsd-aout)
46356
 
-         major=".$current"
46357
 
-         versuffix=".$current.$revision";
 
62824
+       fi
46358
62825
+         case $arg in
46359
62826
+         *.la | *.lo) ;;  # We handle these cases below.
46360
62827
+         force)
46364
62831
+           fi
46365
62832
+           prev=
46366
62833
+           continue
46367
 
          ;;
46368
 
-
46369
 
-       freebsd-elf)
46370
 
-         major=".$current"
46371
 
-         versuffix=".$current";
 
62834
+         ;;
46372
62835
+         self)
46373
62836
+           if test "$prev" = dlprefiles; then
46374
62837
+             dlself=yes
46380
62843
+           fi
46381
62844
+           prev=
46382
62845
+           continue
46383
 
          ;;
46384
 
-
46385
 
-       irix | nonstopux)
46386
 
-         if test "X$lt_irix_increment" = "Xno"; then
46387
 
-           major=`expr $current - $age`
 
62846
+         ;;
46388
62847
+         *)
46389
62848
+           if test "$prev" = dlfiles; then
46390
62849
+             dlfiles="$dlfiles $arg"
46391
62850
          else
46392
 
-           major=`expr $current - $age + 1`
 
62851
-           versuffix=".0.0"
46393
62852
+             dlprefiles="$dlprefiles $arg"
46394
62853
          fi
46395
 
-         case $version_type in
46396
 
-           nonstopux) verstring_prefix=nonstopux ;;
46397
 
-           *)         verstring_prefix=sgi ;;
 
62854
-       fi
46398
62855
+           prev=
46399
62856
+           continue
46400
62857
+           ;;
46401
 
          esac
46402
 
-         verstring="$verstring_prefix$major.$revision"
46403
 
-
46404
 
-         # Add in all the interfaces that we are compatible with.
46405
 
-         loop=$revision
46406
 
-         while test "$loop" -ne 0; do
46407
 
-           iface=`expr $revision - $loop`
46408
 
-           loop=`expr $loop - 1`
46409
 
-           verstring="$verstring_prefix$major.$iface:$verstring"
46410
 
-         done
46411
 
-
46412
 
-         # Before this point, $major must not contain `.'.
46413
 
-         major=.$major
46414
 
-         versuffix="$major.$revision"
46415
 
-         ;;
46416
 
-
46417
 
-       linux)
46418
 
-         major=.`expr $current - $age`
46419
 
-         versuffix="$major.$age.$revision"
46420
 
          ;;
46421
 
-
46422
 
-       osf)
46423
 
-         major=.`expr $current - $age`
46424
 
-         versuffix=".$current.$age.$revision"
46425
 
-         verstring="$current.$age.$revision"
46426
 
-
46427
 
-         # Add in all the interfaces that we are compatible with.
46428
 
-         loop=$age
46429
 
-         while test "$loop" -ne 0; do
46430
 
-           iface=`expr $current - $loop`
46431
 
-           loop=`expr $loop - 1`
46432
 
-           verstring="$verstring:${iface}.0"
46433
 
-         done
46434
 
-
46435
 
-         # Make executables depend on our current version.
46436
 
-         verstring="$verstring:${current}.0"
 
62858
+         esac
 
62859
+         ;;
46437
62860
+       expsyms)
46438
62861
+         export_symbols="$arg"
46439
62862
+         test -f "$arg" \
46440
62863
+           || func_fatal_error "symbol file \`$arg' does not exist"
46441
62864
+         prev=
46442
62865
+         continue
46443
 
          ;;
46444
 
-
46445
 
-       sunos)
46446
 
-         major=".$current"
46447
 
-         versuffix=".$current.$revision"
 
62866
+         ;;
46448
62867
+       expsyms_regex)
46449
62868
+         export_symbols_regex="$arg"
46450
62869
+         prev=
46451
62870
+         continue
46452
 
          ;;
46453
 
-
46454
 
-       windows)
46455
 
-         # Use '-' rather than '.', since we only want one
46456
 
-         # extension on DOS 8.3 filesystems.
46457
 
-         major=`expr $current - $age`
46458
 
-         versuffix="-$major"
 
62871
+         ;;
46459
62872
+       framework)
46460
62873
+         case $host in
46461
62874
+           *-*-darwin*)
46462
62875
+             case "$deplibs " in
46463
62876
+               *" $qarg.ltframework "*) ;;
46464
62877
+               *) deplibs="$deplibs $qarg.ltframework" # this is fixed later
46465
 
          ;;
46466
 
-
46467
 
-       *)
46468
 
-         $echo "$modename: unknown library version type \`$version_type'" 1>&2
46469
 
-         $echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
46470
 
-         exit $EXIT_FAILURE
 
62878
+         ;;
46471
62879
+             esac
46472
 
          ;;
46473
 
        esac
46474
 
-
46475
 
-       # Clear the version info if we defaulted, and they specified a release.
46476
 
-       if test -z "$vinfo" && test -n "$release"; then
46477
 
-         major=
46478
 
-         case $version_type in
46479
 
-         darwin)
46480
 
-           # we can't check for "0.0" in archive_cmds due to quoting
46481
 
-           # problems, so we reset it completely
46482
 
-           verstring=
 
62880
+         ;;
 
62881
+       esac
46483
62882
+         prev=
46484
62883
+         continue
46485
 
            ;;
46486
 
-         *)
46487
 
-           verstring="0.0"
 
62884
+           ;;
46488
62885
+       inst_prefix)
46489
62886
+         inst_prefix_dir="$arg"
46490
62887
+         prev=
46491
62888
+         continue
46492
 
            ;;
46493
 
-         esac
46494
 
-         if test "$need_version" = no; then
46495
 
-           versuffix=
46496
 
-         else
46497
 
-           versuffix=".0.0"
46498
 
-         fi
46499
 
-       fi
 
62889
+           ;;
46500
62890
+       objectlist)
46501
62891
+         if test -f "$arg"; then
46502
62892
+           save_arg=$arg
46647
63037
-       *" $lib "*) ;;
46648
63038
-       *) dlfiles="$dlfiles $lib" ;;
46649
63039
-       esac
46650
 
-      done
 
63040
+                 func_lo2o "$arg"
 
63041
+                 pic_object=$xdir$objdir/$func_lo2o_result
 
63042
+                 non_pic_object=$xdir$func_lo2o_result
 
63043
+                 func_append libobjs " $pic_object"
 
63044
+                 func_append non_pic_objects " $non_pic_object"
 
63045
+               else
 
63046
+                 func_fatal_error "\`$arg' is not a valid libtool object"
 
63047
+               fi
 
63048
+             fi
 
63049
       done
46651
63050
-
46652
63051
-      # Make sure dlprefiles contains only unique files
46653
63052
-      old_dlprefiles="$dlprefiles"
46657
63056
-       *" $lib "*) ;;
46658
63057
-       *) dlprefiles="$dlprefiles $lib" ;;
46659
63058
-       esac
46660
 
+                 func_lo2o "$arg"
46661
 
+                 pic_object=$xdir$objdir/$func_lo2o_result
46662
 
+                 non_pic_object=$xdir$func_lo2o_result
46663
 
+                 func_append libobjs " $pic_object"
46664
 
+                 func_append non_pic_objects " $non_pic_object"
46665
 
+               else
46666
 
+                 func_fatal_error "\`$arg' is not a valid libtool object"
46667
 
+               fi
46668
 
+             fi
46669
 
       done
 
63059
-      done
46670
63060
-
46671
63061
-      if test "$build_libtool_libs" = yes; then
46672
63062
-       if test -n "$rpath"; then
47294
63684
-           eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
47295
63685
-         fi
47296
63686
-         test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
47297
 
-       fi
47298
 
-
 
63687
        fi
 
63688
+       deplibs="$deplibs $arg"
 
63689
+       continue
 
63690
+       ;;
 
63691
 
47299
63692
-       shlibpath="$finalize_shlibpath"
47300
63693
-       test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
47301
63694
-       if test -n "$shlibpath"; then
47302
63695
-         eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
47303
 
        fi
47304
 
+       deplibs="$deplibs $arg"
 
63696
-       fi
 
63697
+      -module)
 
63698
+       module=yes
47305
63699
+       continue
47306
63700
+       ;;
47307
63701
 
47311
63705
-       set dummy $library_names
47312
63706
-       realname="$2"
47313
63707
-       shift; shift
47314
 
-
 
63708
+      # Tru64 UNIX uses -model [arg] to determine the layout of C++
 
63709
+      # classes, name mangling, and exception handling.
 
63710
+      # Darwin uses the -arch flag to determine output architecture.
 
63711
+      -model|-arch|-isysroot)
 
63712
+       compiler_flags="$compiler_flags $arg"
 
63713
+       func_append compile_command " $arg"
 
63714
+       func_append finalize_command " $arg"
 
63715
+       prev=xcompiler
 
63716
+       continue
 
63717
+       ;;
 
63718
 
47315
63719
-       if test -n "$soname_spec"; then
47316
63720
-         eval soname=\"$soname_spec\"
47317
63721
-       else
47320
63724
-       if test -z "$dlname"; then
47321
63725
-         dlname=$soname
47322
63726
-       fi
47323
 
+      -module)
47324
 
+       module=yes
 
63727
+      -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
 
63728
+       compiler_flags="$compiler_flags $arg"
 
63729
+       func_append compile_command " $arg"
 
63730
+       func_append finalize_command " $arg"
 
63731
+       case "$new_inherited_linker_flags " in
 
63732
+           *" $arg "*) ;;
 
63733
+           * ) new_inherited_linker_flags="$new_inherited_linker_flags $arg" ;;
 
63734
+       esac
47325
63735
+       continue
47326
63736
+       ;;
47327
63737
 
47331
63741
-       do
47332
63742
-         linknames="$linknames $link"
47333
63743
-       done
47334
 
+      # Tru64 UNIX uses -model [arg] to determine the layout of C++
47335
 
+      # classes, name mangling, and exception handling.
47336
 
+      # Darwin uses the -arch flag to determine output architecture.
47337
 
+      -model|-arch|-isysroot)
47338
 
+       compiler_flags="$compiler_flags $arg"
47339
 
+       func_append compile_command " $arg"
47340
 
+       func_append finalize_command " $arg"
47341
 
+       prev=xcompiler
 
63744
+      -multi_module)
 
63745
+       single_module="${wl}-multi_module"
47342
63746
+       continue
47343
63747
+       ;;
47344
63748
 
47345
63749
-       # Use standard objects if they are pic
47346
63750
-       test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
47347
 
+      -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
47348
 
+       compiler_flags="$compiler_flags $arg"
47349
 
+       func_append compile_command " $arg"
47350
 
+       func_append finalize_command " $arg"
47351
 
+       case "$new_inherited_linker_flags " in
47352
 
+           *" $arg "*) ;;
47353
 
+           * ) new_inherited_linker_flags="$new_inherited_linker_flags $arg" ;;
47354
 
+       esac
 
63751
+      -no-fast-install)
 
63752
+       fast_install=no
47355
63753
+       continue
47356
63754
+       ;;
47357
63755
 
47389
63787
-           fi
47390
63788
-         fi
47391
63789
-       fi
47392
 
+      -multi_module)
47393
 
+       single_module="${wl}-multi_module"
47394
 
+       continue
47395
 
+       ;;
47396
 
 
 
63790
-
47397
63791
-       if test -n "$export_symbols" && test -n "$include_expsyms"; then
47398
63792
-         $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"'
47399
63793
-       fi
47400
 
+      -no-fast-install)
47401
 
+       fast_install=no
47402
 
+       continue
47403
 
+       ;;
47404
 
 
 
63794
-
47405
63795
-       tmp_deplibs=
47406
63796
-       for test_deplib in $deplibs; do
47407
63797
-               case " $convenience " in
47449
63839
-         eval flag=\"$thread_safe_flag_spec\"
47450
63840
-         linker_flags="$linker_flags $flag"
47451
63841
-       fi
47452
 
+      -o) prev=output ;;
47453
 
 
 
63842
-
47454
63843
-       # Make a backup of the uninstalled library when relinking
47455
63844
-       if test "$mode" = relink; then
47456
63845
-         $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $?
47457
63846
-       fi
47458
 
+      -precious-files-regex)
47459
 
+       prev=precious_regex
47460
 
+       continue
47461
 
+       ;;
 
63847
+      -o) prev=output ;;
47462
63848
 
47463
63849
-       # Do each of the archive commands.
47464
63850
-       if test "$module" = yes && test -n "$module_cmds" ; then
47478
63864
-         cmds=$archive_cmds
47479
63865
-         fi
47480
63866
-       fi
47481
 
+      -release)
47482
 
+       prev=release
 
63867
+      -precious-files-regex)
 
63868
+       prev=precious_regex
47483
63869
+       continue
47484
63870
+       ;;
47485
63871
 
47490
63876
-       else
47491
63877
-         # The command line is too long to link in one step, link piecewise.
47492
63878
-         $echo "creating reloadable object files..."
47493
 
+      -rpath)
47494
 
+       prev=rpath
 
63879
+      -release)
 
63880
+       prev=release
47495
63881
+       continue
47496
63882
+       ;;
47497
63883
 
47508
63894
-         fi
47509
63895
-         save_output=$output
47510
63896
-         output_la=`$echo "X$output" | $Xsed -e "$basename"`
47511
 
+      -R)
47512
 
+       prev=xrpath
 
63897
+      -rpath)
 
63898
+       prev=rpath
47513
63899
+       continue
47514
63900
+       ;;
47515
63901
 
47553
63939
-         # files will link in the last one created.
47554
63940
-         test -z "$concat_cmds" || concat_cmds=$concat_cmds~
47555
63941
-         eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\"
47556
 
+      -R*)
47557
 
+       func_stripname '-R' '' "$arg"
47558
 
+       dir=$func_stripname_result
47559
 
+       # We need an absolute path.
47560
 
+       case $dir in
47561
 
+       [\\/]* | [A-Za-z]:[\\/]*) ;;
47562
 
+       *)
47563
 
+         func_fatal_error "only absolute run-paths are allowed"
47564
 
+         ;;
47565
 
+       esac
47566
 
+       case "$xrpath " in
47567
 
+       *" $dir "*) ;;
47568
 
+       *) xrpath="$xrpath $dir" ;;
47569
 
+       esac
 
63942
+      -R)
 
63943
+       prev=xrpath
47570
63944
+       continue
47571
63945
+       ;;
47572
63946
 
47578
63952
-           # Append the command to create the export file.
47579
63953
-           eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\"
47580
63954
-          fi
47581
 
+      -shared)
47582
 
+       # The effects of -shared are defined in a previous loop.
47583
 
+       continue
47584
 
+       ;;
47585
 
 
 
63955
-
47586
63956
-         # Set up a command to remove the reloadable object files
47587
63957
-         # after they are used.
47588
63958
-         i=0
47591
63961
-           i=`expr $i + 1`
47592
63962
-           delfiles="$delfiles $output_objdir/$output_la-${i}.$objext"
47593
63963
-         done
 
63964
+      -R*)
 
63965
+       func_stripname '-R' '' "$arg"
 
63966
+       dir=$func_stripname_result
 
63967
+       # We need an absolute path.
 
63968
+       case $dir in
 
63969
+       [\\/]* | [A-Za-z]:[\\/]*) ;;
 
63970
+       *)
 
63971
+         func_fatal_error "only absolute run-paths are allowed"
 
63972
+         ;;
 
63973
+       esac
 
63974
+       case "$xrpath " in
 
63975
+       *" $dir "*) ;;
 
63976
+       *) xrpath="$xrpath $dir" ;;
 
63977
+       esac
 
63978
+       continue
 
63979
+       ;;
 
63980
 
 
63981
-         $echo "creating a temporary reloadable object file: $output"
 
63982
+      -shared)
 
63983
+       # The effects of -shared are defined in a previous loop.
 
63984
+       continue
 
63985
+       ;;
 
63986
 
 
63987
-         # Loop through the commands generated above and execute them.
 
63988
-         save_ifs="$IFS"; IFS='~'
 
63989
-         for cmd in $concat_cmds; do
 
63990
-           IFS="$save_ifs"
 
63991
-           $show "$cmd"
 
63992
-           $run eval "$cmd" || exit $?
 
63993
-         done
 
63994
-         IFS="$save_ifs"
47594
63995
+      -shrext)
47595
63996
+       prev=shrext
47596
63997
+       continue
47597
63998
+       ;;
47598
63999
 
47599
 
-         $echo "creating a temporary reloadable object file: $output"
 
64000
-         libobjs=$output
 
64001
-         # Restore the value of output.
 
64002
-         output=$save_output
47600
64003
+      -static | -static-libtool-libs)
47601
64004
+       # The effects of -static are defined in a previous loop.
47602
64005
+       # We used to do the same as -all-static on platforms that
47606
64009
+       continue
47607
64010
+       ;;
47608
64011
 
47609
 
-         # Loop through the commands generated above and execute them.
47610
 
-         save_ifs="$IFS"; IFS='~'
47611
 
-         for cmd in $concat_cmds; do
47612
 
-           IFS="$save_ifs"
47613
 
-           $show "$cmd"
47614
 
-           $run eval "$cmd" || exit $?
47615
 
-         done
47616
 
-         IFS="$save_ifs"
47617
 
+      -thread-safe)
47618
 
+       thread_safe=yes
47619
 
+       continue
47620
 
+       ;;
47621
 
 
47622
 
-         libobjs=$output
47623
 
-         # Restore the value of output.
47624
 
-         output=$save_output
47625
 
+      -version-info)
47626
 
+       prev=vinfo
47627
 
+       continue
47628
 
+       ;;
47629
 
 
47630
64012
-         if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
47631
64013
-           eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
47632
64014
-         fi
47633
64015
-         # Expand the library linking commands again to reset the
47634
64016
-         # value of $libobjs for piecewise linking.
47635
 
+      -version-number)
47636
 
+       prev=vinfo
47637
 
+       vinfo_number=yes
 
64017
+      -thread-safe)
 
64018
+       thread_safe=yes
47638
64019
+       continue
47639
64020
+       ;;
47640
64021
 
47652
64033
-           cmds=$archive_cmds
47653
64034
-           fi
47654
64035
-         fi
47655
 
+      -weak)
47656
 
+        prev=weak
 
64036
+      -version-info)
 
64037
+       prev=vinfo
47657
64038
+       continue
47658
64039
+       ;;
47659
64040
 
47663
64044
-       fi
47664
64045
-       save_ifs="$IFS"; IFS='~'
47665
64046
-       for cmd in $cmds; do
47666
 
+      -Wc,*)
47667
 
+       func_stripname '-Wc,' '' "$arg"
47668
 
+       args=$func_stripname_result
47669
 
+       arg=
47670
 
+       save_ifs="$IFS"; IFS=','
47671
 
+       for flag in $args; do
47672
 
          IFS="$save_ifs"
 
64047
-         IFS="$save_ifs"
47673
64048
-         eval cmd=\"$cmd\"
47674
64049
-         $show "$cmd"
47675
64050
-         $run eval "$cmd" || {
47676
64051
-           lt_exit=$?
47677
 
-
 
64052
+      -version-number)
 
64053
+       prev=vinfo
 
64054
+       vinfo_number=yes
 
64055
+       continue
 
64056
+       ;;
 
64057
 
47678
64058
-           # Restore the uninstalled library and exit
47679
64059
-           if test "$mode" = relink; then
47680
64060
-             $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)'
47681
64061
-           fi
 
64062
+      -weak)
 
64063
+        prev=weak
 
64064
+       continue
 
64065
+       ;;
 
64066
 
 
64067
-           exit $lt_exit
 
64068
-         }
 
64069
+      -Wc,*)
 
64070
+       func_stripname '-Wc,' '' "$arg"
 
64071
+       args=$func_stripname_result
 
64072
+       arg=
 
64073
+       save_ifs="$IFS"; IFS=','
 
64074
+       for flag in $args; do
 
64075
+         IFS="$save_ifs"
47682
64076
+          func_quote_for_eval "$flag"
47683
64077
+         arg="$arg $wl$func_quote_for_eval_result"
47684
64078
+         compiler_flags="$compiler_flags $func_quote_for_eval_result"
47685
 
+       done
47686
 
+       IFS="$save_ifs"
47687
 
+       func_stripname ' ' '' "$arg"
47688
 
+       arg=$func_stripname_result
47689
 
+       ;;
47690
 
 
47691
 
-           exit $lt_exit
47692
 
-         }
47693
 
+      -Wl,*)
47694
 
+       func_stripname '-Wl,' '' "$arg"
47695
 
+       args=$func_stripname_result
47696
 
+       arg=
47697
 
+       save_ifs="$IFS"; IFS=','
47698
 
+       for flag in $args; do
47699
 
+         IFS="$save_ifs"
47700
 
+          func_quote_for_eval "$flag"
47701
 
+         arg="$arg $wl$func_quote_for_eval_result"
47702
 
+         compiler_flags="$compiler_flags $wl$func_quote_for_eval_result"
47703
 
+         linker_flags="$linker_flags $func_quote_for_eval_result"
47704
64079
        done
47705
64080
        IFS="$save_ifs"
47706
64081
+       func_stripname ' ' '' "$arg"
47710
64085
-       # Restore the uninstalled library and exit
47711
64086
-       if test "$mode" = relink; then
47712
64087
-         $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $?
47713
 
+      -Xcompiler)
47714
 
+       prev=xcompiler
47715
 
+       continue
47716
 
+       ;;
47717
 
 
 
64088
-
47718
64089
-         if test -n "$convenience"; then
47719
64090
-           if test -z "$whole_archive_flag_spec"; then
47720
64091
-             $show "${rm}r $gentop"
47721
64092
-             $run ${rm}r "$gentop"
47722
64093
-           fi
47723
64094
-         fi
47724
 
+      -Xlinker)
47725
 
+       prev=xlinker
47726
 
+       continue
47727
 
+       ;;
47728
 
 
 
64095
-
47729
64096
-         exit $EXIT_SUCCESS
47730
64097
-       fi
47731
 
+      -XCClinker)
47732
 
+       prev=xcclinker
47733
 
+       continue
47734
 
+       ;;
47735
 
 
 
64098
-
47736
64099
-       # Create links to the real library.
47737
64100
-       for linkname in $linknames; do
47738
64101
-         if test "$realname" != "$linkname"; then
47739
64102
-           $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)"
47740
64103
-           $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $?
47741
64104
-         fi
47742
 
-       done
47743
 
+      # -msg_* for osf cc
47744
 
+      -msg_*)
47745
 
+       func_quote_for_eval "$arg"
47746
 
+       arg="$func_quote_for_eval_result"
 
64105
+      -Wl,*)
 
64106
+       func_stripname '-Wl,' '' "$arg"
 
64107
+       args=$func_stripname_result
 
64108
+       arg=
 
64109
+       save_ifs="$IFS"; IFS=','
 
64110
+       for flag in $args; do
 
64111
+         IFS="$save_ifs"
 
64112
+          func_quote_for_eval "$flag"
 
64113
+         arg="$arg $wl$func_quote_for_eval_result"
 
64114
+         compiler_flags="$compiler_flags $wl$func_quote_for_eval_result"
 
64115
+         linker_flags="$linker_flags $func_quote_for_eval_result"
 
64116
        done
 
64117
+       IFS="$save_ifs"
 
64118
+       func_stripname ' ' '' "$arg"
 
64119
+       arg=$func_stripname_result
47747
64120
+       ;;
47748
64121
 
47749
64122
-       # If -module or -export-dynamic was specified, set the dlname.
47752
64125
-         dlname="$soname"
47753
64126
-       fi
47754
64127
-      fi
 
64128
-      ;;
 
64129
-
 
64130
-    obj)
 
64131
-      if test -n "$deplibs"; then
 
64132
-       $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
 
64133
-      fi
 
64134
+      -Xcompiler)
 
64135
+       prev=xcompiler
 
64136
+       continue
 
64137
+       ;;
 
64138
 
 
64139
-      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
 
64140
-       $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
 
64141
-      fi
 
64142
+      -Xlinker)
 
64143
+       prev=xlinker
 
64144
+       continue
 
64145
+       ;;
 
64146
 
 
64147
-      if test -n "$rpath"; then
 
64148
-       $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
 
64149
-      fi
 
64150
+      -XCClinker)
 
64151
+       prev=xcclinker
 
64152
+       continue
 
64153
+       ;;
 
64154
 
 
64155
-      if test -n "$xrpath"; then
 
64156
-       $echo "$modename: warning: \`-R' is ignored for objects" 1>&2
 
64157
-      fi
 
64158
+      # -msg_* for osf cc
 
64159
+      -msg_*)
 
64160
+       func_quote_for_eval "$arg"
 
64161
+       arg="$func_quote_for_eval_result"
 
64162
+       ;;
 
64163
 
 
64164
-      if test -n "$vinfo"; then
 
64165
-       $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
 
64166
-      fi
 
64167
-
 
64168
-      if test -n "$release"; then
 
64169
-       $echo "$modename: warning: \`-release' is ignored for objects" 1>&2
 
64170
-      fi
47755
64171
+      # -64, -mips[0-9] enable 64-bit mode on the SGI compiler
47756
64172
+      # -r[0-9][0-9]* specifies the processor on the SGI compiler
47757
64173
+      # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler
47770
64186
+        func_append finalize_command " $arg"
47771
64187
+        compiler_flags="$compiler_flags $arg"
47772
64188
+        continue
47773
 
       ;;
47774
 
 
47775
 
-    obj)
47776
 
-      if test -n "$deplibs"; then
47777
 
-       $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
47778
 
-      fi
47779
 
+      # Some other compiler flag.
47780
 
+      -* | +*)
47781
 
+        func_quote_for_eval "$arg"
47782
 
+       arg="$func_quote_for_eval_result"
47783
 
+       ;;
47784
 
 
47785
 
-      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
47786
 
-       $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
47787
 
-      fi
47788
 
+      *.$objext)
47789
 
+       # A standard object.
47790
 
+       objs="$objs $arg"
47791
 
+       ;;
47792
 
 
47793
 
-      if test -n "$rpath"; then
47794
 
-       $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
47795
 
-      fi
47796
 
+      *.lo)
47797
 
+       # A libtool-controlled object.
47798
 
 
47799
 
-      if test -n "$xrpath"; then
47800
 
-       $echo "$modename: warning: \`-R' is ignored for objects" 1>&2
47801
 
-      fi
47802
 
+       # Check to see that this really is a libtool object.
47803
 
+       if func_lalib_unsafe_p "$arg"; then
47804
 
+         pic_object=
47805
 
+         non_pic_object=
47806
 
 
47807
 
-      if test -n "$vinfo"; then
47808
 
-       $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
47809
 
-      fi
47810
 
+         # Read the .lo file
47811
 
+         func_source "$arg"
47812
 
 
47813
 
-      if test -n "$release"; then
47814
 
-       $echo "$modename: warning: \`-release' is ignored for objects" 1>&2
47815
 
+         if test -z "$pic_object" ||
47816
 
+            test -z "$non_pic_object" ||
47817
 
+            test "$pic_object" = none &&
47818
 
+            test "$non_pic_object" = none; then
47819
 
+           func_fatal_error "cannot find name of object for \`$arg'"
47820
 
       fi
 
64189
+      ;;
47821
64190
 
47822
64191
-      case $output in
47823
64192
-      *.lo)
47827
64196
-       fi
47828
64197
-       libobj="$output"
47829
64198
-       obj=`$echo "X$output" | $Xsed -e "$lo2o"`
47830
 
-       ;;
 
64199
+      # Some other compiler flag.
 
64200
+      -* | +*)
 
64201
+        func_quote_for_eval "$arg"
 
64202
+       arg="$func_quote_for_eval_result"
 
64203
        ;;
47831
64204
-      *)
47832
64205
-       libobj=
47833
64206
-       obj="$output"
47834
 
-       ;;
 
64207
+
 
64208
+      *.$objext)
 
64209
+       # A standard object.
 
64210
+       objs="$objs $arg"
 
64211
        ;;
47835
64212
-      esac
47836
 
-
 
64213
 
47837
64214
-      # Delete the old objects.
47838
64215
-      $run $rm $obj $libobj
47839
 
+         # Extract subdirectory from the argument.
47840
 
+         func_dirname "$arg" "/" ""
47841
 
+         xdir="$func_dirname_result"
 
64216
+      *.lo)
 
64217
+       # A libtool-controlled object.
47842
64218
 
47843
64219
-      # Objects from convenience libraries.  This assumes
47844
64220
-      # single-version convenience libraries.  Whenever we create
47850
64226
-      # -Wl from whole_archive_flag_spec and hope we can get by with
47851
64227
-      # turning comma into space..
47852
64228
-      wl=
47853
 
+         if test "$pic_object" != none; then
47854
 
+           # Prepend the subdirectory the object is found in.
47855
 
+           pic_object="$xdir$pic_object"
 
64229
+       # Check to see that this really is a libtool object.
 
64230
+       if func_lalib_unsafe_p "$arg"; then
 
64231
+         pic_object=
 
64232
+         non_pic_object=
47856
64233
 
47857
64234
-      if test -n "$convenience"; then
47858
64235
-       if test -n "$whole_archive_flag_spec"; then
47859
64236
-         eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\"
47860
64237
-         reload_conv_objs=$reload_objs\ `$echo "X$tmp_whole_archive_flags" | $Xsed -e 's|,| |g'`
47861
 
+           if test "$prev" = dlfiles; then
47862
 
+             if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
47863
 
+               dlfiles="$dlfiles $pic_object"
47864
 
+               prev=
47865
 
+               continue
47866
 
        else
 
64238
-       else
47867
64239
-         gentop="$output_objdir/${obj}x"
47868
64240
-         generated="$generated $gentop"
47869
 
-
 
64241
+         # Read the .lo file
 
64242
+         func_source "$arg"
 
64243
 
47870
64244
-         func_extract_archives $gentop $convenience
47871
64245
-         reload_conv_objs="$reload_objs $func_extract_archives_result"
47872
 
+               # If libtool objects are unsupported, then we need to preload.
47873
 
+               prev=dlprefiles
47874
 
        fi
 
64246
-       fi
 
64247
+         if test -z "$pic_object" ||
 
64248
+            test -z "$non_pic_object" ||
 
64249
+            test "$pic_object" = none &&
 
64250
+            test "$non_pic_object" = none; then
 
64251
+           func_fatal_error "cannot find name of object for \`$arg'"
47875
64252
       fi
47876
64253
 
47877
64254
-      # Create the old-style object.
47878
64255
-      reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
47879
 
-
 
64256
+         # Extract subdirectory from the argument.
 
64257
+         func_dirname "$arg" "/" ""
 
64258
+         xdir="$func_dirname_result"
 
64259
 
47880
64260
-      output="$obj"
47881
64261
-      cmds=$reload_cmds
47882
64262
-      save_ifs="$IFS"; IFS='~'
47887
64267
-       $run eval "$cmd" || exit $?
47888
64268
-      done
47889
64269
-      IFS="$save_ifs"
47890
 
-
 
64270
+         if test "$pic_object" != none; then
 
64271
+           # Prepend the subdirectory the object is found in.
 
64272
+           pic_object="$xdir$pic_object"
 
64273
 
47891
64274
-      # Exit if we aren't doing a library object file.
47892
64275
-      if test -z "$libobj"; then
47893
64276
-       if test -n "$gentop"; then
47894
64277
-         $show "${rm}r $gentop"
47895
64278
-         $run ${rm}r $gentop
 
64279
+           if test "$prev" = dlfiles; then
 
64280
+             if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
 
64281
+               dlfiles="$dlfiles $pic_object"
 
64282
+               prev=
 
64283
+               continue
 
64284
+       else
 
64285
+               # If libtool objects are unsupported, then we need to preload.
 
64286
+               prev=dlprefiles
 
64287
        fi
 
64288
-
 
64289
-       exit $EXIT_SUCCESS
 
64290
       fi
 
64291
 
 
64292
-      if test "$build_libtool_libs" != yes; then
 
64293
-       if test -n "$gentop"; then
 
64294
-         $show "${rm}r $gentop"
 
64295
-         $run ${rm}r $gentop
47896
64296
+           # CHECK ME:  I think I busted this.  -Ossama
47897
64297
+           if test "$prev" = dlprefiles; then
47898
64298
+             # Preload the old-style object.
47900
64300
+             prev=
47901
64301
        fi
47902
64302
 
47903
 
-       exit $EXIT_SUCCESS
47904
 
+           # A PIC object.
47905
 
+           func_append libobjs " $pic_object"
47906
 
+           arg="$pic_object"
47907
 
       fi
47908
 
 
47909
 
-      if test "$build_libtool_libs" != yes; then
47910
 
-       if test -n "$gentop"; then
47911
 
-         $show "${rm}r $gentop"
47912
 
-         $run ${rm}r $gentop
47913
 
-       fi
47914
 
+         # Non-PIC object.
47915
 
+         if test "$non_pic_object" != none; then
47916
 
+           # Prepend the subdirectory the object is found in.
47917
 
+           non_pic_object="$xdir$non_pic_object"
47918
 
 
47919
64303
-       # Create an invalid libtool object if no PIC, so that we don't
47920
64304
-       # accidentally link it into a program.
47921
64305
-       # $show "echo timestamp > $libobj"
47922
64306
-       # $run eval "echo timestamp > $libobj" || exit $?
47923
64307
-       exit $EXIT_SUCCESS
47924
 
+           # A standard non-PIC object
47925
 
+           func_append non_pic_objects " $non_pic_object"
47926
 
+           if test -z "$pic_object" || test "$pic_object" = none ; then
47927
 
+             arg="$non_pic_object"
 
64308
+           # A PIC object.
 
64309
+           func_append libobjs " $pic_object"
 
64310
+           arg="$pic_object"
47928
64311
       fi
47929
 
-
 
64312
 
47930
64313
-      if test -n "$pic_flag" || test "$pic_mode" != default; then
47931
64314
-       # Only do commands if we really have different PIC objects.
47932
64315
-       reload_objs="$libobjs $reload_conv_objs"
47940
64323
-         $run eval "$cmd" || exit $?
47941
64324
-       done
47942
64325
-       IFS="$save_ifs"
 
64326
+         # Non-PIC object.
 
64327
+         if test "$non_pic_object" != none; then
 
64328
+           # Prepend the subdirectory the object is found in.
 
64329
+           non_pic_object="$xdir$non_pic_object"
 
64330
+
 
64331
+           # A standard non-PIC object
 
64332
+           func_append non_pic_objects " $non_pic_object"
 
64333
+           if test -z "$pic_object" || test "$pic_object" = none ; then
 
64334
+             arg="$non_pic_object"
 
64335
       fi
47943
64336
+         else
47944
64337
+           # If the PIC object exists, use it instead.
47945
64338
+           # $xdir was prepended to $pic_object above.
47946
64339
+           non_pic_object="$pic_object"
47947
64340
+           func_append non_pic_objects " $non_pic_object"
47948
 
       fi
 
64341
+      fi
47949
64342
+       else
47950
64343
+         # Only an error if not doing a dry-run.
47951
64344
+         if $opt_dry_run; then
47997
64390
       fi
47998
64391
+       continue
47999
64392
+       ;;
48000
 
 
48001
 
-      if test -n "$release"; then
48002
 
-       $echo "$modename: warning: \`-release' is ignored for programs" 1>&2
 
64393
+
48003
64394
+      # Some other compiler argument.
48004
64395
+      *)
48005
64396
+       # Unknown arguments in both finalize_command and compile_command need
48008
64399
+       arg="$func_quote_for_eval_result"
48009
64400
+       ;;
48010
64401
+      esac # arg
48011
 
+
 
64402
 
 
64403
-      if test -n "$release"; then
 
64404
-       $echo "$modename: warning: \`-release' is ignored for programs" 1>&2
48012
64405
+      # Now actually substitute the argument into the commands.
48013
64406
+      if test -n "$arg"; then
48014
64407
+       func_append compile_command " $arg"
48154
64547
        esac
48155
64548
-      done
48156
64549
-      compile_deplibs="$new_libs"
48157
 
-
 
64550
 
48158
64551
-
48159
64552
-      compile_command="$compile_command $compile_deplibs"
48160
64553
-      finalize_command="$finalize_command $finalize_deplibs"
48161
 
 
 
64554
-
48162
64555
-      if test -n "$rpath$xrpath"; then
48163
64556
-       # If the user specified any rpath flags, then add them.
48164
64557
-       for libdir in $rpath $xrpath; do
48391
64784
-           if test -n "$exclude_expsyms"; then
48392
64785
-             $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
48393
64786
-             $run eval '$mv "$nlist"T "$nlist"'
 
64787
-           fi
 
64788
-
 
64789
-           if test -n "$export_symbols_regex"; then
 
64790
-             $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
 
64791
-             $run eval '$mv "$nlist"T "$nlist"'
 
64792
-           fi
 
64793
-
 
64794
-           # Prepare the list of exported symbols
 
64795
-           if test -z "$export_symbols"; then
 
64796
-             export_symbols="$output_objdir/$outputname.exp"
 
64797
-             $run $rm $export_symbols
 
64798
-             $run eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
 
64799
-              case $host in
 
64800
-              *cygwin* | *mingw* )
 
64801
-               $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
 
64802
-               $run eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"'
 
64803
-                ;;
 
64804
-              esac
48394
64805
+         done
48395
64806
+         if test "$found" != yes; then
48396
64807
+           # deplib doesn't seem to be a libtool library
48397
64808
+           if test "$linkmode,$pass" = "prog,link"; then
48398
64809
+             compile_deplibs="$deplib $compile_deplibs"
48399
64810
+             finalize_deplibs="$deplib $finalize_deplibs"
48400
 
+           else
 
64811
            else
 
64812
-             $run eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
 
64813
-             $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T'
 
64814
-             $run eval 'mv "$nlist"T "$nlist"'
 
64815
-              case $host in
 
64816
-              *cygwin* | *mingw* )
 
64817
-               $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
 
64818
-               $run eval 'cat "$nlist" >> "$output_objdir/$outputname.def"'
48401
64819
+             deplibs="$deplib $deplibs"
48402
64820
+             test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
48403
64821
+           fi
48428
64846
+                     test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
48429
64847
+                   fi
48430
64848
+                   continue
48431
 
            fi
48432
 
-
48433
 
-           if test -n "$export_symbols_regex"; then
48434
 
-             $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
48435
 
-             $run eval '$mv "$nlist"T "$nlist"'
48436
 
            fi
48437
 
-
48438
 
-           # Prepare the list of exported symbols
48439
 
-           if test -z "$export_symbols"; then
48440
 
-             export_symbols="$output_objdir/$outputname.exp"
48441
 
-             $run $rm $export_symbols
48442
 
-             $run eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
48443
 
-              case $host in
48444
 
-              *cygwin* | *mingw* )
48445
 
-               $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
48446
 
-               $run eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"'
 
64849
+           fi
 
64850
+           fi
48447
64851
                 ;;
48448
64852
+             *) ;;
48449
64853
               esac
48450
 
+           fi
48451
 
+         fi
48452
 
+         ;; # -l
48453
 
+       *.ltframework)
48454
 
+         if test "$linkmode,$pass" = "prog,link"; then
48455
 
+           compile_deplibs="$deplib $compile_deplibs"
48456
 
+           finalize_deplibs="$deplib $finalize_deplibs"
48457
 
            else
48458
 
-             $run eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
48459
 
-             $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T'
48460
 
-             $run eval 'mv "$nlist"T "$nlist"'
48461
 
-              case $host in
48462
 
-              *cygwin* | *mingw* )
48463
 
-               $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
48464
 
-               $run eval 'cat "$nlist" >> "$output_objdir/$outputname.def"'
48465
 
-                ;;
48466
 
+           deplibs="$deplib $deplibs"
48467
 
+           if test "$linkmode" = lib ; then
48468
 
+               case "$new_inherited_linker_flags " in
48469
 
+                   *" $deplib "*) ;;
48470
 
+                   * ) new_inherited_linker_flags="$new_inherited_linker_flags $deplib" ;;
48471
 
               esac
48472
64854
            fi
48473
64855
          fi
48474
64856
-
48497
64879
-               fi |
48498
64880
-               uniq > "$nlist"S; then
48499
64881
-             :
48500
 
-           else
 
64882
+         ;; # -l
 
64883
+       *.ltframework)
 
64884
+         if test "$linkmode,$pass" = "prog,link"; then
 
64885
+           compile_deplibs="$deplib $compile_deplibs"
 
64886
+           finalize_deplibs="$deplib $finalize_deplibs"
 
64887
            else
48501
64888
-             grep -v "^: " < "$nlist" > "$nlist"S
 
64889
+           deplibs="$deplib $deplibs"
 
64890
+           if test "$linkmode" = lib ; then
 
64891
+               case "$new_inherited_linker_flags " in
 
64892
+                   *" $deplib "*) ;;
 
64893
+                   * ) new_inherited_linker_flags="$new_inherited_linker_flags $deplib" ;;
 
64894
+              esac
 
64895
            fi
 
64896
-
 
64897
-           if test -f "$nlist"S; then
 
64898
-             eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"'
 
64899
+         fi
48502
64900
+         continue
48503
64901
+         ;;
48504
64902
+       -L*)
48514
64912
+           if test "$pass" = conv; then
48515
64913
+             deplibs="$deplib $deplibs"
48516
64914
+             continue
48517
 
            fi
48518
 
-
48519
 
-           if test -f "$nlist"S; then
48520
 
-             eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"'
 
64915
+           fi
48521
64916
+           if test "$pass" = scan; then
48522
64917
+             deplibs="$deplib $deplibs"
48523
64918
            else
48953
65348
 
48954
65349
-      # Replace the output file specification.
48955
65350
-      link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
48956
 
-
48957
 
-      # Delete the old output files.
48958
 
-      $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname
48959
65351
+       # This library was specified with -dlpreopen.
48960
65352
+       if test "$pass" = dlpreopen; then
48961
65353
+         if test -z "$libdir" && test "$linkmode" = prog; then
48977
65369
+         fi
48978
65370
+       fi # $pass = dlpreopen
48979
65371
 
48980
 
-      $show "$link_command"
48981
 
-      $run eval "$link_command" || exit $?
 
65372
-      # Delete the old output files.
 
65373
-      $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname
48982
65374
+       if test -z "$libdir"; then
48983
65375
+         # Link the convenience library
48984
65376
+         if test "$linkmode" = lib; then
48992
65384
+         continue
48993
65385
+       fi
48994
65386
 
 
65387
-      $show "$link_command"
 
65388
-      $run eval "$link_command" || exit $?
 
65389
 
48995
65390
-      # Now create the wrapper script.
48996
65391
-      $show "creating $output"
 
65392
+       if test "$linkmode" = prog && test "$pass" != link; then
 
65393
+         newlib_search_path="$newlib_search_path $ladir"
 
65394
+         deplibs="$lib $deplibs"
48997
65395
 
48998
65396
-      # Quote the relink command for shipping.
48999
65397
-      if test -n "$relink_command"; then
49003
65401
-           relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
49004
65402
-         elif eval var_value=\$$var; test -z "$var_value"; then
49005
65403
-           relink_command="$var=; export $var; $relink_command"
49006
 
+       if test "$linkmode" = prog && test "$pass" != link; then
49007
 
+         newlib_search_path="$newlib_search_path $ladir"
49008
 
+         deplibs="$lib $deplibs"
49009
 
+
 
65404
-         else
 
65405
-           var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
 
65406
-           relink_command="$var=\"$var_value\"; export $var; $relink_command"
49010
65407
+         linkalldeplibs=no
49011
65408
+         if test "$link_all_deplibs" != no || test -z "$library_names" ||
49012
65409
+            test "$build_libtool_libs" = no; then
49013
65410
+           linkalldeplibs=yes
49014
 
+         fi
49015
 
+
 
65411
          fi
 
65412
-       done
 
65413
-       relink_command="(cd `pwd`; $relink_command)"
 
65414
-       relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e "$sed_quote_subst" | $NL2SP`
 
65415
-      fi
 
65416
 
 
65417
-      # Quote $echo for shipping.
 
65418
-      if test "X$echo" = "X$SHELL $progpath --fallback-echo"; then
 
65419
-       case $progpath in
 
65420
-       [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";;
 
65421
-       *) qecho="$SHELL `pwd`/$progpath --fallback-echo";;
49016
65422
+         tmp_libs=
49017
65423
+         for deplib in $dependency_libs; do
49018
65424
+           case $deplib in
49023
65429
+           # Need to link against all dependency_libs?
49024
65430
+           if test "$linkalldeplibs" = yes; then
49025
65431
+             deplibs="$deplib $deplibs"
49026
 
          else
49027
 
-           var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
49028
 
-           relink_command="$var=\"$var_value\"; export $var; $relink_command"
 
65432
+         else
49029
65433
+             # Need to hardcode shared library paths
49030
65434
+             # or/and link against static libraries
49031
65435
+             newdependency_libs="$deplib $newdependency_libs"
49032
 
          fi
49033
 
-       done
49034
 
-       relink_command="(cd `pwd`; $relink_command)"
49035
 
-       relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e "$sed_quote_subst" | $NL2SP`
 
65436
+         fi
49036
65437
+           if $opt_duplicate_deps ; then
49037
65438
+             case "$tmp_libs " in
49038
65439
+             *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
49039
65440
+             esac
49040
 
       fi
 
65441
+      fi
49041
65442
+           tmp_libs="$tmp_libs $deplib"
49042
65443
+         done # for deplib
49043
65444
+         continue
49044
65445
+       fi # $linkmode = prog...
49045
 
 
49046
 
-      # Quote $echo for shipping.
49047
 
-      if test "X$echo" = "X$SHELL $progpath --fallback-echo"; then
49048
 
-       case $progpath in
49049
 
-       [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";;
49050
 
-       *) qecho="$SHELL `pwd`/$progpath --fallback-echo";;
 
65446
+
49051
65447
+       if test "$linkmode,$pass" = "prog,link"; then
49052
65448
+         if test -n "$library_names" &&
49053
65449
+            { { test "$prefer_static_libs" = no ||
49272
65668
-            cat >> $cwrappersource <<"EOF"
49273
65669
-  return 127;
49274
65670
-}
 
65671
-
 
65672
-void *
 
65673
-xmalloc (size_t num)
 
65674
-{
 
65675
-  void * p = (void *) malloc (num);
 
65676
-  if (!p)
 
65677
-    lt_fatal ("Memory exhausted");
49275
65678
+         # Warn about portability, can't link against -module's on some
49276
65679
+         # systems (darwin).  Don't bleat about dlopened modules though!
49277
65680
+         dlopenmodule=""
49315
65718
+           esac
49316
65719
+         fi
49317
65720
 
49318
 
-void *
49319
 
-xmalloc (size_t num)
49320
 
-{
49321
 
-  void * p = (void *) malloc (num);
49322
 
-  if (!p)
49323
 
-    lt_fatal ("Memory exhausted");
49324
 
-
49325
65721
-  return p;
49326
65722
-}
49327
 
-
49328
 
-char *
49329
 
-xstrdup (const char *string)
49330
 
-{
49331
 
-  return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL
49332
 
-;
49333
 
-}
49334
65723
+         if test -n "$old_archive_from_expsyms_cmds"; then
49335
65724
+           # figure out the soname
49336
65725
+           set dummy $library_names
49355
65744
+             soname="$realname"
49356
65745
+           fi
49357
65746
 
49358
 
-const char *
49359
 
-base_name (const char *name)
 
65747
-char *
 
65748
-xstrdup (const char *string)
49360
65749
-{
49361
 
-  const char *base;
 
65750
-  return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL
 
65751
-;
 
65752
-}
49362
65753
+           # Make a new name for the extract_expsyms_cmds to use
49363
65754
+           soroot="$soname"
49364
65755
+           func_basename "$soroot"
49366
65757
+           func_stripname 'lib' '.dll' "$soname"
49367
65758
+           newlib=libimp-$func_stripname_result.a
49368
65759
 
49369
 
-#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
49370
 
-  /* Skip over the disk name in MSDOS pathnames. */
49371
 
-  if (isalpha ((unsigned char)name[0]) && name[1] == ':')
49372
 
-    name += 2;
49373
 
-#endif
 
65760
-const char *
 
65761
-base_name (const char *name)
 
65762
-{
 
65763
-  const char *base;
49374
65764
+           # If the library has no export list, then create one now
49375
65765
+           if test -f "$output_objdir/$soname-def"; then :
49376
65766
+           else
49378
65768
+             func_execute_cmds "$extract_expsyms_cmds" 'exit $?'
49379
65769
+           fi
49380
65770
 
49381
 
-  for (base = name; *name; name++)
49382
 
-    if (IS_DIR_SEPARATOR (*name))
49383
 
-      base = name + 1;
49384
 
-  return base;
49385
 
-}
 
65771
-#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
 
65772
-  /* Skip over the disk name in MSDOS pathnames. */
 
65773
-  if (isalpha ((unsigned char)name[0]) && name[1] == ':')
 
65774
-    name += 2;
 
65775
-#endif
49386
65776
+           # Create $newlib
49387
65777
+           if test -f "$output_objdir/$newlib"; then :; else
49388
65778
+             func_verbose "generating import library for \`$soname'"
49393
65783
+           linklib=$newlib
49394
65784
+         fi # test -n "$old_archive_from_expsyms_cmds"
49395
65785
 
 
65786
-  for (base = name; *name; name++)
 
65787
-    if (IS_DIR_SEPARATOR (*name))
 
65788
-      base = name + 1;
 
65789
-  return base;
 
65790
-}
 
65791
-
49396
65792
-int
49397
65793
-check_executable(const char * path)
49398
65794
-{
49635
66031
-#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
49636
66032
-  }
49637
66033
-#endif
49638
 
+               build_libtool_libs=no
49639
 
+             fi
49640
 
+           fi
49641
 
+         else
49642
 
+           deplibs="$dir/$old_library $deplibs"
49643
 
+           link_static=yes
49644
 
+         fi
49645
 
+       fi # link shared/static library?
49646
 
 
 
66034
-
49647
66035
-  for (p = wrapper; *p; p++)
49648
66036
-    if (*p == '/')
49649
66037
-    {
49676
66064
-          concat_name[tmp_len] = '/';
49677
66065
-          strcpy (concat_name + tmp_len + 1, wrapper);
49678
66066
-        }
 
66067
-        else
 
66068
-        {
 
66069
-          concat_name = XMALLOC(char, p_len + 1 + strlen(wrapper) + 1);
 
66070
-          memcpy (concat_name, p, p_len);
 
66071
-          concat_name[p_len] = '/';
 
66072
-          strcpy (concat_name + p_len + 1, wrapper);
 
66073
-        }
 
66074
-        if (check_executable(concat_name))
 
66075
-          return concat_name;
 
66076
-        XFREE(concat_name);
 
66077
-      }
 
66078
-    }
 
66079
-    /* not found in PATH; assume curdir */
 
66080
-  }
 
66081
-  /* Relative path | not found in path: prepend cwd */
 
66082
-  if (getcwd (tmp, LT_PATHMAX) == NULL)
 
66083
-    lt_fatal ("getcwd failed");
 
66084
-  tmp_len = strlen(tmp);
 
66085
-  concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1);
 
66086
-  memcpy (concat_name, tmp, tmp_len);
 
66087
-  concat_name[tmp_len] = '/';
 
66088
-  strcpy (concat_name + tmp_len + 1, wrapper);
 
66089
-
 
66090
-  if (check_executable(concat_name))
 
66091
-    return concat_name;
 
66092
-  XFREE(concat_name);
 
66093
-  return NULL;
 
66094
-}
 
66095
-
 
66096
-char *
 
66097
-strendzap(char *str, const char *pat)
 
66098
-{
 
66099
-  size_t len, patlen;
 
66100
-
 
66101
-  assert(str != NULL);
 
66102
-  assert(pat != NULL);
 
66103
-
 
66104
-  len = strlen(str);
 
66105
-  patlen = strlen(pat);
 
66106
-
 
66107
-  if (patlen <= len)
 
66108
-  {
 
66109
-    str += len - patlen;
 
66110
-    if (strcmp(str, pat) == 0)
 
66111
-      *str = '\0';
 
66112
-  }
 
66113
-  return str;
 
66114
-}
 
66115
+               build_libtool_libs=no
 
66116
+             fi
 
66117
+           fi
 
66118
+         else
 
66119
+           deplibs="$dir/$old_library $deplibs"
 
66120
+           link_static=yes
 
66121
+         fi
 
66122
+       fi # link shared/static library?
 
66123
 
 
66124
-static void
 
66125
-lt_error_core (int exit_status, const char * mode,
 
66126
-          const char * message, va_list ap)
 
66127
-{
 
66128
-  fprintf (stderr, "%s: %s: ", program_name, mode);
 
66129
-  vfprintf (stderr, message, ap);
 
66130
-  fprintf (stderr, ".\n");
49679
66131
+       if test "$linkmode" = lib; then
49680
66132
+         if test -n "$dependency_libs" &&
49681
66133
+            { test "$hardcode_into_libs" != yes ||
49696
66148
+           done
49697
66149
+           dependency_libs="$temp_deplibs"
49698
66150
+         fi
49699
 
+
 
66151
 
 
66152
-  if (exit_status >= 0)
 
66153
-    exit (exit_status);
 
66154
-}
49700
66155
+         newlib_search_path="$newlib_search_path $absdir"
49701
66156
+         # Link against this library
49702
66157
+         test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
49711
66166
+           fi
49712
66167
+           tmp_libs="$tmp_libs $deplib"
49713
66168
+         done
49714
 
+
 
66169
 
 
66170
-void
 
66171
-lt_fatal (const char *message, ...)
 
66172
-{
 
66173
-  va_list ap;
 
66174
-  va_start (ap, message);
 
66175
-  lt_error_core (EXIT_FAILURE, "FATAL", message, ap);
 
66176
-  va_end (ap);
 
66177
-}
 
66178
-EOF
 
66179
-          # we should really use a build-platform specific compiler
 
66180
-          # here, but OTOH, the wrappers (shell script and this C one)
 
66181
-          # are only useful if you want to execute the "real" binary.
 
66182
-          # Since the "real" binary is built for $host, then this
 
66183
-          # wrapper might as well be built for $host, too.
 
66184
-          $run $LTCC $LTCFLAGS -s -o $cwrapper $cwrappersource
 
66185
-          ;;
 
66186
-        esac
 
66187
-        $rm $output
 
66188
-        trap "$rm $output; exit $EXIT_FAILURE" 1 2 15
49715
66189
+         if test "$link_all_deplibs" != no; then
49716
66190
+           # Add the search paths of all dependency libraries
49717
66191
+           for deplib in $dependency_libs; do
49756
66230
+                 path="-L$absdir/$objdir"
49757
66231
+                 ;;
49758
66232
+               esac
49759
 
         else
49760
 
-        {
49761
 
-          concat_name = XMALLOC(char, p_len + 1 + strlen(wrapper) + 1);
49762
 
-          memcpy (concat_name, p, p_len);
49763
 
-          concat_name[p_len] = '/';
49764
 
-          strcpy (concat_name + p_len + 1, wrapper);
49765
 
-        }
49766
 
-        if (check_executable(concat_name))
49767
 
-          return concat_name;
49768
 
-        XFREE(concat_name);
49769
 
-      }
49770
 
-    }
49771
 
-    /* not found in PATH; assume curdir */
49772
 
-  }
49773
 
-  /* Relative path | not found in path: prepend cwd */
49774
 
-  if (getcwd (tmp, LT_PATHMAX) == NULL)
49775
 
-    lt_fatal ("getcwd failed");
49776
 
-  tmp_len = strlen(tmp);
49777
 
-  concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1);
49778
 
-  memcpy (concat_name, tmp, tmp_len);
49779
 
-  concat_name[tmp_len] = '/';
49780
 
-  strcpy (concat_name + tmp_len + 1, wrapper);
 
66233
+        else
49781
66234
+                 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
49782
66235
+                 test -z "$libdir" && \
49783
66236
+                   func_fatal_error "\`$deplib' is not a valid libtool archive"
49784
66237
+                 test "$absdir" != "$libdir" && \
49785
66238
+                   func_warning "\`$deplib' seems to be moved"
49786
 
+
 
66239
 
 
66240
-       $echo > $output "\
 
66241
-#! $SHELL
49787
66242
+                 path="-L$absdir"
49788
66243
+               fi
49789
66244
+               ;;
49823
66278
+         done
49824
66279
+         newlib_search_path=
49825
66280
+       fi
49826
 
+
 
66281
 
 
66282
-# $output - temporary wrapper script for $objdir/$outputname
 
66283
-# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
 
66284
-#
 
66285
-# The $output program cannot be directly executed until all the libtool
 
66286
-# libraries that it depends on are installed.
 
66287
-#
 
66288
-# This wrapper script should never be moved out of the build directory.
 
66289
-# If it is, it will not operate correctly.
49827
66290
+       if test "$linkmode,$pass" != "prog,link"; then
49828
66291
+         vars="deplibs"
49829
66292
+       else
49906
66369
+    if test "$linkmode" = prog || test "$linkmode" = lib; then
49907
66370
+      dlprefiles="$newdlprefiles"
49908
66371
+    fi
49909
 
+
 
66372
 
 
66373
-# Sed substitution that helps us do robust quoting.  It backslashifies
 
66374
-# metacharacters that are still active within double-quoted strings.
 
66375
-Xsed='${SED} -e 1s/^X//'
 
66376
-sed_quote_subst='$sed_quote_subst'
49910
66377
+    case $linkmode in
49911
66378
+    oldlib)
49912
66379
+      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
49913
66380
+       func_warning "\`-dlopen' is ignored for archives"
49914
66381
+      fi
49915
 
+
 
66382
 
 
66383
-# Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE).
 
66384
-if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then
 
66385
-  emulate sh
 
66386
-  NULLCMD=:
 
66387
-  # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which
 
66388
-  # is contrary to our usage.  Disable this feature.
 
66389
-  alias -g '\${1+\"\$@\"}'='\"\$@\"'
 
66390
-  setopt NO_GLOB_SUBST
 
66391
-else
 
66392
-  case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac
 
66393
-fi
 
66394
-BIN_SH=xpg4; export BIN_SH # for Tru64
 
66395
-DUALCASE=1; export DUALCASE # for MKS sh
49916
66396
+      case " $deplibs" in
49917
66397
+      *\ -l* | *\ -L*)
49918
66398
+       func_warning "\`-l' and \`-L' are ignored for archives" ;;
49919
66399
+      esac
49920
 
+
 
66400
 
 
66401
-# The HP-UX ksh and POSIX shell print the target directory to stdout
 
66402
-# if CDPATH is set.
 
66403
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
49921
66404
+      test -n "$rpath" && \
49922
66405
+       func_warning "\`-rpath' is ignored for archives"
49923
 
+
 
66406
 
 
66407
-relink_command=\"$relink_command\"
49924
66408
+      test -n "$xrpath" && \
49925
66409
+       func_warning "\`-R' is ignored for archives"
49926
 
+
 
66410
 
 
66411
-# This environment variable determines our operation mode.
 
66412
-if test \"\$libtool_install_magic\" = \"$magic\"; then
 
66413
-  # install mode needs the following variable:
 
66414
-  notinst_deplibs='$notinst_deplibs'
 
66415
-else
 
66416
-  # When we are sourced in execute mode, \$file and \$echo are already set.
 
66417
-  if test \"\$libtool_execute_magic\" != \"$magic\"; then
 
66418
-    echo=\"$qecho\"
 
66419
-    file=\"\$0\"
 
66420
-    # Make sure echo works.
 
66421
-    if test \"X\$1\" = X--no-reexec; then
 
66422
-      # Discard the --no-reexec flag, and continue.
 
66423
-      shift
 
66424
-    elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
 
66425
-      # Yippee, \$echo works!
 
66426
-      :
 
66427
-    else
 
66428
-      # Restart under the correct shell, and then maybe \$echo will work.
 
66429
-      exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
 
66430
-    fi
 
66431
-  fi\
 
66432
-"
 
66433
-       $echo >> $output "\
49927
66434
+      test -n "$vinfo" && \
49928
66435
+       func_warning "\`-version-info/-version-number' is ignored for archives"
49929
 
+
 
66436
 
 
66437
-  # Find the directory that this script lives in.
 
66438
-  thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
 
66439
-  test \"x\$thisdir\" = \"x\$file\" && thisdir=.
49930
66440
+      test -n "$release" && \
49931
66441
+       func_warning "\`-release' is ignored for archives"
49932
 
+
 
66442
 
 
66443
-  # Follow symbolic links until we get to the real thisdir.
 
66444
-  file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\`
 
66445
-  while test -n \"\$file\"; do
 
66446
-    destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
49933
66447
+      test -n "$export_symbols$export_symbols_regex" && \
49934
66448
+       func_warning "\`-export-symbols' is ignored for archives"
49935
 
+
 
66449
 
 
66450
-    # If there was a directory component, then change thisdir.
 
66451
-    if test \"x\$destdir\" != \"x\$file\"; then
 
66452
-      case \"\$destdir\" in
 
66453
-      [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
 
66454
-      *) thisdir=\"\$thisdir/\$destdir\" ;;
49936
66455
+      # Now set the variables for building old libraries.
49937
66456
+      build_libtool_libs=no
49938
66457
+      oldlibs="$output"
49963
66482
+         libname=$func_stripname_result
49964
66483
+       fi
49965
66484
+       ;;
49966
 
+      esac
 
66485
       esac
49967
66486
+
49968
66487
+      if test -n "$objs"; then
49969
66488
+       if test "$deplibs_check_method" != pass_all; then
50239
66758
+       fi
50240
66759
+
50241
66760
+      fi
50242
 
 
50243
 
-  if (check_executable(concat_name))
50244
 
-    return concat_name;
50245
 
-  XFREE(concat_name);
50246
 
-  return NULL;
50247
 
-}
 
66761
+
50248
66762
+      func_generate_dlsyms "$libname" "$libname" "yes"
50249
66763
+      libobjs="$libobjs $symfileobj"
50250
66764
+      test "X$libobjs" = "X " && libobjs=
50251
 
 
50252
 
-char *
50253
 
-strendzap(char *str, const char *pat)
50254
 
-{
50255
 
-  size_t len, patlen;
 
66765
+
50256
66766
+      if test "$mode" != relink; then
50257
66767
+       # Remove our outputs, but don't remove object files since they
50258
66768
+       # may have been created when compiling PIC objects.
50277
66787
+       test -n "$removelist" && \
50278
66788
+         func_show_eval "${RM}r \$removelist"
50279
66789
+      fi
50280
 
 
50281
 
-  assert(str != NULL);
50282
 
-  assert(pat != NULL);
 
66790
+
50283
66791
+      # Now set the variables for building old libraries.
50284
66792
+      if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
50285
66793
+       oldlibs="$oldlibs $output_objdir/$libname.$libext"
50286
 
 
50287
 
-  len = strlen(str);
50288
 
-  patlen = strlen(pat);
 
66794
+
50289
66795
+       # Transform .lo files to .o files.
50290
66796
+       oldobjs="$objs "`$ECHO "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
50291
66797
+      fi
50292
 
 
50293
 
-  if (patlen <= len)
50294
 
-  {
50295
 
-    str += len - patlen;
50296
 
-    if (strcmp(str, pat) == 0)
50297
 
-      *str = '\0';
50298
 
-  }
50299
 
-  return str;
50300
 
-}
 
66798
+
50301
66799
+      # Eliminate all temporary directories.
50302
66800
+      #for path in $notinst_path; do
50303
66801
+      #        lib_search_path=`$ECHO "X$lib_search_path " | $Xsed -e "s% $path % %g"`
50304
66802
+      #        deplibs=`$ECHO "X$deplibs " | $Xsed -e "s% -L$path % %g"`
50305
66803
+      #        dependency_libs=`$ECHO "X$dependency_libs " | $Xsed -e "s% -L$path % %g"`
50306
66804
+      #done
50307
 
 
50308
 
-static void
50309
 
-lt_error_core (int exit_status, const char * mode,
50310
 
-          const char * message, va_list ap)
50311
 
-{
50312
 
-  fprintf (stderr, "%s: %s: ", program_name, mode);
50313
 
-  vfprintf (stderr, message, ap);
50314
 
-  fprintf (stderr, ".\n");
 
66805
+
50315
66806
+      if test -n "$xrpath"; then
50316
66807
+       # If the user specified any rpath flags, then add them.
50317
66808
+       temp_xrpath=
50326
66817
+         dependency_libs="$temp_xrpath $dependency_libs"
50327
66818
+       fi
50328
66819
+      fi
50329
 
 
50330
 
-  if (exit_status >= 0)
50331
 
-    exit (exit_status);
50332
 
-}
 
66820
+
50333
66821
+      # Make sure dlfiles contains only unique files that won't be dlpreopened
50334
66822
+      old_dlfiles="$dlfiles"
50335
66823
+      dlfiles=
50339
66827
+       *) dlfiles="$dlfiles $lib" ;;
50340
66828
+       esac
50341
66829
+      done
50342
 
 
50343
 
-void
50344
 
-lt_fatal (const char *message, ...)
50345
 
-{
50346
 
-  va_list ap;
50347
 
-  va_start (ap, message);
50348
 
-  lt_error_core (EXIT_FAILURE, "FATAL", message, ap);
50349
 
-  va_end (ap);
50350
 
-}
 
66830
+
50351
66831
+      # Make sure dlprefiles contains only unique files
50352
66832
+      old_dlprefiles="$dlprefiles"
50353
66833
+      dlprefiles=
50420
66900
+         $opt_dry_run || $RM conftest.c
50421
66901
+         cat > conftest.c <<EOF
50422
66902
+         int main() { return 0; }
50423
 
 EOF
50424
 
-          # we should really use a build-platform specific compiler
50425
 
-          # here, but OTOH, the wrappers (shell script and this C one)
50426
 
-          # are only useful if you want to execute the "real" binary.
50427
 
-          # Since the "real" binary is built for $host, then this
50428
 
-          # wrapper might as well be built for $host, too.
50429
 
-          $run $LTCC $LTCFLAGS -s -o $cwrapper $cwrappersource
 
66903
+EOF
50430
66904
+         $opt_dry_run || $RM conftest
50431
66905
+         if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then
50432
66906
+           ldd_output=`ldd conftest`
50588
67062
+           *)
50589
67063
+             # Add a -L argument.
50590
67064
+             newdeplibs="$newdeplibs $a_deplib"
50591
 
           ;;
50592
 
         esac
50593
 
-        $rm $output
50594
 
-        trap "$rm $output; exit $EXIT_FAILURE" 1 2 15
50595
 
-
50596
 
-       $echo > $output "\
50597
 
-#! $SHELL
50598
 
-
50599
 
-# $output - temporary wrapper script for $objdir/$outputname
50600
 
-# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
50601
 
-#
50602
 
-# The $output program cannot be directly executed until all the libtool
50603
 
-# libraries that it depends on are installed.
50604
 
-#
50605
 
-# This wrapper script should never be moved out of the build directory.
50606
 
-# If it is, it will not operate correctly.
50607
 
-
50608
 
-# Sed substitution that helps us do robust quoting.  It backslashifies
50609
 
-# metacharacters that are still active within double-quoted strings.
50610
 
-Xsed='${SED} -e 1s/^X//'
50611
 
-sed_quote_subst='$sed_quote_subst'
50612
 
-
50613
 
-# Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE).
50614
 
-if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then
50615
 
-  emulate sh
50616
 
-  NULLCMD=:
50617
 
-  # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which
50618
 
-  # is contrary to our usage.  Disable this feature.
50619
 
-  alias -g '\${1+\"\$@\"}'='\"\$@\"'
50620
 
-  setopt NO_GLOB_SUBST
50621
 
-else
50622
 
-  case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac
50623
 
-fi
50624
 
-BIN_SH=xpg4; export BIN_SH # for Tru64
50625
 
-DUALCASE=1; export DUALCASE # for MKS sh
50626
 
-
50627
 
-# The HP-UX ksh and POSIX shell print the target directory to stdout
50628
 
-# if CDPATH is set.
50629
 
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
50630
 
-
50631
 
-relink_command=\"$relink_command\"
50632
 
-
50633
 
-# This environment variable determines our operation mode.
50634
 
-if test \"\$libtool_install_magic\" = \"$magic\"; then
50635
 
-  # install mode needs the following variable:
50636
 
-  notinst_deplibs='$notinst_deplibs'
50637
 
-else
50638
 
-  # When we are sourced in execute mode, \$file and \$echo are already set.
50639
 
-  if test \"\$libtool_execute_magic\" != \"$magic\"; then
50640
 
-    echo=\"$qecho\"
50641
 
-    file=\"\$0\"
50642
 
-    # Make sure echo works.
50643
 
-    if test \"X\$1\" = X--no-reexec; then
50644
 
-      # Discard the --no-reexec flag, and continue.
50645
 
-      shift
50646
 
-    elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
50647
 
-      # Yippee, \$echo works!
50648
 
-      :
 
67065
+          ;;
 
67066
+        esac
50649
67067
+         done # Gone through all deplibs.
50650
67068
+         ;;
50651
67069
+       match_pattern*)
50689
67107
+               $ECHO "*** because I did check the linker path looking for a file starting"
50690
67108
+               if test -z "$potlib" ; then
50691
67109
+                 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
50692
 
     else
50693
 
-      # Restart under the correct shell, and then maybe \$echo will work.
50694
 
-      exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
 
67110
+    else
50695
67111
+                 $ECHO "*** with $libname and none of the candidates passed a file format test"
50696
67112
+                 $ECHO "*** using a regex pattern. Last file checked: $potlib"
50697
 
     fi
50698
 
-  fi\
50699
 
-"
50700
 
-       $echo >> $output "\
50701
 
-
50702
 
-  # Find the directory that this script lives in.
50703
 
-  thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
50704
 
-  test \"x\$thisdir\" = \"x\$file\" && thisdir=.
50705
 
-
50706
 
-  # Follow symbolic links until we get to the real thisdir.
50707
 
-  file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\`
50708
 
-  while test -n \"\$file\"; do
50709
 
-    destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
50710
 
-
50711
 
-    # If there was a directory component, then change thisdir.
50712
 
-    if test \"x\$destdir\" != \"x\$file\"; then
50713
 
-      case \"\$destdir\" in
50714
 
-      [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
50715
 
-      *) thisdir=\"\$thisdir/\$destdir\" ;;
 
67113
+    fi
50716
67114
+             fi
50717
67115
+             ;;
50718
67116
+           *)
50719
67117
+             # Add a -L argument.
50720
67118
+             newdeplibs="$newdeplibs $a_deplib"
50721
67119
+             ;;
50722
 
       esac
 
67120
+      esac
50723
67121
+         done # Gone through all deplibs.
50724
67122
+         ;;
50725
67123
+       none | unknown | *)
50962
67360
-       $echo >> $output "\
50963
67361
-
50964
67362
-  if test -f \"\$progdir/\$program\"; then"
 
67363
-
 
67364
-       # Export our shlibpath_var if we have one.
 
67365
-       if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
 
67366
-         $echo >> $output "\
 
67367
-    # Add our own library path to $shlibpath_var
 
67368
-    $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
50965
67369
+       lib="$output_objdir/$realname"
50966
67370
+       linknames=
50967
67371
+       for link
50969
67373
+         linknames="$linknames $link"
50970
67374
+       done
50971
67375
 
50972
 
-       # Export our shlibpath_var if we have one.
50973
 
-       if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
50974
 
-         $echo >> $output "\
50975
 
-    # Add our own library path to $shlibpath_var
50976
 
-    $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
 
67376
-    # Some systems cannot cope with colon-terminated $shlibpath_var
 
67377
-    # The second colon is a workaround for a bug in BeOS R4 sed
 
67378
-    $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
50977
67379
+       # Use standard objects if they are pic
50978
67380
+       test -z "$pic_flag" && libobjs=`$ECHO "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
50979
67381
+       test "X$libobjs" = "X " && libobjs=
50980
67382
 
50981
 
-    # Some systems cannot cope with colon-terminated $shlibpath_var
50982
 
-    # The second colon is a workaround for a bug in BeOS R4 sed
50983
 
-    $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
 
67383
-    export $shlibpath_var
 
67384
-"
50984
67385
+       delfiles=
50985
67386
+       if test -n "$export_symbols" && test -n "$include_expsyms"; then
50986
67387
+         $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp"
50987
67388
+         export_symbols="$output_objdir/$libname.uexp"
50988
67389
+         delfiles="$delfiles $export_symbols"
50989
67390
+       fi
50990
 
 
50991
 
-    export $shlibpath_var
50992
 
-"
 
67391
+
50993
67392
+       orig_export_symbols=
50994
67393
+       case $host_os in
50995
67394
+       cygwin* | mingw*)
51136
67535
+         eval flag=\"$thread_safe_flag_spec\"
51137
67536
+         linker_flags="$linker_flags $flag"
51138
67537
+       fi
 
67538
+
 
67539
+       # Make a backup of the uninstalled library when relinking
 
67540
+       if test "$mode" = relink; then
 
67541
+         $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?
 
67542
+       fi
51139
67543
 
51140
67544
-      if test "$build_libtool_libs" = convenience; then
51141
67545
-       oldobjs="$libobjs_save"
51142
67546
-       addlibs="$convenience"
51143
67547
-       build_libtool_libs=no
51144
 
+       # Make a backup of the uninstalled library when relinking
51145
 
+       if test "$mode" = relink; then
51146
 
+         $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?
51147
 
+       fi
51148
 
+
51149
67548
+       # Do each of the archive commands.
51150
67549
+       if test "$module" = yes && test -n "$module_cmds" ; then
51151
67550
+         if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
51555
67954
-      if test "$hardcode_automatic" = yes ; then
51556
67955
-       relink_command=
51557
67956
-      fi
 
67957
-
51558
67958
 
51559
 
-
51560
67959
-      # Only create the output if not a dry run.
51561
67960
-      if test -z "$run"; then
51562
67961
-       for installed in no yes; do
51627
68026
-             case $lib in
51628
68027
-               [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
51629
68028
-               *) abs=`pwd`"/$lib" ;;
51630
 
+
51631
 
+      case " $deplibs" in
51632
 
+      *\ -l* | *\ -L*)
51633
 
+       func_warning "\`-l' and \`-L' are ignored for objects" ;;
51634
 
              esac
 
68029
-             esac
51635
68030
-             newdlprefiles="$newdlprefiles $abs"
51636
68031
-           done
51637
68032
-           dlprefiles="$newdlprefiles"
51642
68037
-         case $host,$output,$installed,$module,$dlname in
51643
68038
-           *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;;
51644
68039
+
 
68040
+      case " $deplibs" in
 
68041
+      *\ -l* | *\ -L*)
 
68042
+       func_warning "\`-l' and \`-L' are ignored for objects" ;;
 
68043
+             esac
 
68044
+
51645
68045
+      test -n "$rpath" && \
51646
68046
+       func_warning "\`-rpath' is ignored for objects"
51647
68047
+
52014
68414
        esac
52015
68415
-      done
52016
68416
-      ;;
52017
 
+         case :$dllsearchpath: in
52018
 
+         *":$testbindir:"*) ;;
52019
 
+         *) dllsearchpath="$dllsearchpath:$testbindir";;
52020
 
     esac
 
68417
-    esac
52021
68418
-
52022
68419
-    # This variable tells wrapper scripts just to set variables rather
52023
68420
-    # than running their programs.
52033
68430
-      *.$libext)
52034
68431
-       # Do the static libraries later.
52035
68432
-       staticlibs="$staticlibs $file"
 
68433
+         case :$dllsearchpath: in
 
68434
+         *":$testbindir:"*) ;;
 
68435
+         *) dllsearchpath="$dllsearchpath:$testbindir";;
 
68436
+    esac
52036
68437
        ;;
52037
68438
-
52038
68439
-      *.la)
52462
68863
+           cwrapper="$output_path/$output_name.exe"
52463
68864
+           $RM $cwrappersource $cwrapper
52464
68865
+           trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
 
68866
+
 
68867
+           func_emit_cwrapperexe_src > $cwrappersource
 
68868
+
 
68869
+           # we should really use a build-platform specific compiler
 
68870
+           # here, but OTOH, the wrappers (shell script and this C one)
 
68871
+           # are only useful if you want to execute the "real" binary.
 
68872
+           # Since the "real" binary is built for $host, then this
 
68873
+           # wrapper might as well be built for $host, too.
 
68874
+           $opt_dry_run || {
 
68875
+             $LTCC $LTCFLAGS -o $cwrapper $cwrappersource
 
68876
+             $STRIP $cwrapper
 
68877
+           }
52465
68878
 
52466
68879
-         outputname=
52467
68880
-         if test "$fast_install" = no && test -n "$relink_command"; then
52471
68884
-             outputname="$tmpdir/$file"
52472
68885
-             # Replace the output file specification.
52473
68886
-             relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g' | $NL2SP`
52474
 
+           func_emit_cwrapperexe_src > $cwrappersource
52475
 
 
 
68887
-
52476
68888
-             $show "$relink_command"
52477
68889
-             if $run eval "$relink_command"; then :
52478
68890
-             else
52484
68896
-           else
52485
68897
-             $echo "$modename: warning: cannot relink \`$file'" 1>&2
52486
68898
-           fi
52487
 
+           # we should really use a build-platform specific compiler
52488
 
+           # here, but OTOH, the wrappers (shell script and this C one)
52489
 
+           # are only useful if you want to execute the "real" binary.
52490
 
+           # Since the "real" binary is built for $host, then this
52491
 
+           # wrapper might as well be built for $host, too.
52492
 
+           $opt_dry_run || {
52493
 
+             $LTCC $LTCFLAGS -o $cwrapper $cwrappersource
52494
 
+             $STRIP $cwrapper
52495
 
+           }
52496
 
+
52497
68899
+           # Now, create the wrapper script for func_source use:
52498
68900
+           func_ltwrapper_scriptname $cwrapper
52499
68901
+           $RM $func_ltwrapper_scriptname_result
52919
69321
+#
52920
69322
+# Please DO NOT delete this file!
52921
69323
+# It is necessary for linking the library.
52922
 
 
52923
 
-       # Read the libtool library.
52924
 
-       dlname=
52925
 
-       library_names=
 
69324
+
52926
69325
+# The name that we can dlopen(3).
52927
69326
+dlname='$tdlname'
52928
69327
 
52929
 
-       # If there is no directory component, then add one.
52930
 
-       case $file in
52931
 
-       */* | *\\*) . $file ;;
52932
 
-       *) . ./$file ;;
52933
 
-       esac
 
69328
-       # Read the libtool library.
 
69329
-       dlname=
 
69330
-       library_names=
52934
69331
+# Names of this library.
52935
69332
+library_names='$library_names'
52936
69333
 
 
69334
-       # If there is no directory component, then add one.
 
69335
-       case $file in
 
69336
-       */* | *\\*) . $file ;;
 
69337
-       *) . ./$file ;;
 
69338
-       esac
 
69339
+# The name of the static archive.
 
69340
+old_library='$old_library'
 
69341
 
52937
69342
-       # Skip this library if it cannot be dlopened.
52938
69343
-       if test -z "$dlname"; then
52939
69344
-         # Warn if it was a shared library.
52940
69345
-         test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
52941
69346
-         continue
52942
69347
-       fi
52943
 
+# The name of the static archive.
52944
 
+old_library='$old_library'
52945
 
+
52946
69348
+# Linker flags that can not go in dependency_libs.
52947
69349
+inherited_linker_flags='$new_inherited_linker_flags'
52948
 
+
 
69350
 
 
69351
-       dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
 
69352
-       test "X$dir" = "X$file" && dir=.
52949
69353
+# Libraries that this one depends upon.
52950
69354
+dependency_libs='$dependency_libs'
52951
69355
 
52952
 
-       dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
52953
 
-       test "X$dir" = "X$file" && dir=.
52954
 
+# Names of additional weak libraries provided by this library
52955
 
+weak_library_names='$weak_libs'
52956
 
 
52957
69356
-       if test -f "$dir/$objdir/$dlname"; then
52958
69357
-         dir="$dir/$objdir"
52959
69358
-       else
52963
69362
-         fi
52964
69363
-       fi
52965
69364
-       ;;
 
69365
+# Names of additional weak libraries provided by this library
 
69366
+weak_library_names='$weak_libs'
 
69367
 
 
69368
-      *.lo)
 
69369
-       # Just add the directory containing the .lo file.
 
69370
-       dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
 
69371
-       test "X$dir" = "X$file" && dir=.
 
69372
-       ;;
52966
69373
+# Version information for $libname.
52967
69374
+current=$current
52968
69375
+age=$age
52969
69376
+revision=$revision
52970
69377
 
52971
 
-      *.lo)
52972
 
-       # Just add the directory containing the .lo file.
52973
 
-       dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
52974
 
-       test "X$dir" = "X$file" && dir=.
 
69378
-      *)
 
69379
-       $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
 
69380
-       continue
52975
69381
-       ;;
 
69382
-      esac
52976
69383
+# Is this an already installed library?
52977
69384
+installed=$installed
52978
69385
 
52979
 
-      *)
52980
 
-       $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
52981
 
-       continue
52982
 
-       ;;
52983
 
-      esac
52984
 
+# Should we warn about portability when linking against -modules?
52985
 
+shouldnotlink=$module
52986
 
 
52987
69386
-      # Get the absolute pathname.
52988
69387
-      absdir=`cd "$dir" && pwd`
52989
69388
-      test -n "$absdir" && dir="$absdir"
52990
 
+# Files to dlopen/dlpreopen
52991
 
+dlopen='$dlfiles'
52992
 
+dlpreopen='$dlprefiles'
 
69389
+# Should we warn about portability when linking against -modules?
 
69390
+shouldnotlink=$module
52993
69391
 
52994
69392
-      # Now add the directory to shlibpath_var.
52995
69393
-      if eval "test -z \"\$$shlibpath_var\""; then
52996
69394
-       eval "$shlibpath_var=\"\$dir\""
52997
69395
-      else
52998
69396
-       eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
 
69397
+# Files to dlopen/dlpreopen
 
69398
+dlopen='$dlfiles'
 
69399
+dlpreopen='$dlprefiles'
 
69400
+
52999
69401
+# Directory that this library needs to be installed in:
53000
69402
+libdir='$install_libdir'"
53001
69403
+         if test "$installed" = no && test "$need_relink" = yes; then
53513
69915
 # End:
53514
69916
+# vi:sw=2
53515
69917
+
53516
 
diff -Nurb totem-2.24.2/Makefile.in totem-2.24.2.new/Makefile.in
53517
 
--- totem-2.24.2/Makefile.in    2008-10-07 16:19:00.000000000 +0200
53518
 
+++ totem-2.24.2.new/Makefile.in        2008-10-08 15:16:20.000000000 +0200
 
69918
Index: totem-2.24.3/Makefile.in
 
69919
===================================================================
 
69920
--- totem-2.24.3.orig/Makefile.in       2008-10-26 15:40:51.000000000 +0100
 
69921
+++ totem-2.24.3/Makefile.in    2008-10-30 19:06:39.000000000 +0100
53519
69922
@@ -87,6 +87,8 @@
53520
69923
 AUTOHEADER = @AUTOHEADER@
53521
69924
 AUTOMAKE = @AUTOMAKE@
53525
69928
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
53526
69929
 BEMUSED_LIBS = @BEMUSED_LIBS@
53527
69930
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
53528
 
@@ -113,7 +115,8 @@
53529
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
69931
@@ -114,7 +116,7 @@
53530
69932
 DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper
53531
69933
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
69934
 DSYMUTIL = @DSYMUTIL@
53532
69935
-ECHO = @ECHO@
53533
 
+DSYMUTIL = @DSYMUTIL@
53534
69936
+DUMPBIN = @DUMPBIN@
53535
69937
 ECHO_C = @ECHO_C@
53536
69938
 ECHO_N = @ECHO_N@
53537
69939
 ECHO_T = @ECHO_T@
53538
 
@@ -121,8 +124,7 @@
 
69940
@@ -122,8 +124,7 @@
53539
69941
 EXEEXT = @EXEEXT@
53540
69942
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
53541
69943
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
53545
69947
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
53546
69948
 GCONFTOOL = @GCONFTOOL@
53547
69949
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
53548
 
@@ -172,6 +174,7 @@
 
69950
@@ -173,6 +174,7 @@
53549
69951
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
53550
69952
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
53551
69953
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
53553
69955
 LDFLAGS = @LDFLAGS@
53554
69956
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
53555
69957
 LIBEPC_LIBS = @LIBEPC_LIBS@
53556
 
@@ -180,6 +183,7 @@
 
69958
@@ -181,6 +183,7 @@
53557
69959
 LIBOBJS = @LIBOBJS@
53558
69960
 LIBS = @LIBS@
53559
69961
 LIBTOOL = @LIBTOOL@
53561
69963
 LIRC_LIBS = @LIRC_LIBS@
53562
69964
 LN_S = @LN_S@
53563
69965
 LTLIBOBJS = @LTLIBOBJS@
53564
 
@@ -199,11 +203,15 @@
 
69966
@@ -200,12 +203,15 @@
53565
69967
 NAUTILUSDIR = @NAUTILUSDIR@
53566
69968
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
53567
69969
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
53568
69970
+NM = @NM@
53569
 
+NMEDIT = @NMEDIT@
 
69971
 NMEDIT = @NMEDIT@
53570
69972
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
53571
69973
 NVTV_CFLAGS = @NVTV_CFLAGS@
53572
69974
 NVTV_LIBS = @NVTV_LIBS@
53577
69979
 PACKAGE = @PACKAGE@
53578
69980
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
53579
69981
 PACKAGE_NAME = @PACKAGE_NAME@
53580
 
@@ -265,7 +273,7 @@
 
69982
@@ -267,7 +273,7 @@
53581
69983
 abs_top_srcdir = @abs_top_srcdir@
53582
69984
 ac_ct_CC = @ac_ct_CC@
53583
69985
 ac_ct_CXX = @ac_ct_CXX@
53586
69988
 am__include = @am__include@
53587
69989
 am__leading_dot = @am__leading_dot@
53588
69990
 am__quote = @am__quote@
53589
 
@@ -296,6 +304,7 @@
 
69991
@@ -298,6 +304,7 @@
53590
69992
 libexecdir = @libexecdir@
53591
69993
 localedir = @localedir@
53592
69994
 localstatedir = @localstatedir@
53594
69996
 mandir = @mandir@
53595
69997
 mkdir_p = @mkdir_p@
53596
69998
 oldincludedir = @oldincludedir@
53597
 
diff -Nurb totem-2.24.2/src/backend/Makefile.in totem-2.24.2.new/src/backend/Makefile.in
53598
 
--- totem-2.24.2/src/backend/Makefile.in        2008-10-07 16:18:56.000000000 +0200
53599
 
+++ totem-2.24.2.new/src/backend/Makefile.in    2008-10-08 15:16:17.000000000 +0200
 
69999
@@ -314,7 +321,6 @@
 
70000
 srcdir = @srcdir@
 
70001
 sysconfdir = @sysconfdir@
 
70002
 target_alias = @target_alias@
 
70003
-top_build_prefix = @top_build_prefix@
 
70004
 top_builddir = @top_builddir@
 
70005
 top_srcdir = @top_srcdir@
 
70006
 SUBDIRS = lib bindings po data src help $(am__append_1)
 
70007
Index: totem-2.24.3/src/backend/Makefile.in
 
70008
===================================================================
 
70009
--- totem-2.24.3.orig/src/backend/Makefile.in   2008-10-26 15:40:47.000000000 +0100
 
70010
+++ totem-2.24.3/src/backend/Makefile.in        2008-10-30 19:06:37.000000000 +0100
53600
70011
@@ -53,15 +53,7 @@
53601
70012
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
53602
70013
 CONFIG_HEADER = $(top_builddir)/config.h
53623
70034
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
53624
70035
 BEMUSED_LIBS = @BEMUSED_LIBS@
53625
70036
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
53626
 
@@ -156,7 +150,8 @@
53627
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
70037
@@ -157,7 +151,7 @@
53628
70038
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
53629
70039
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
70040
 DSYMUTIL = @DSYMUTIL@
53630
70041
-ECHO = @ECHO@
53631
 
+DSYMUTIL = @DSYMUTIL@
53632
70042
+DUMPBIN = @DUMPBIN@
53633
70043
 ECHO_C = @ECHO_C@
53634
70044
 ECHO_N = @ECHO_N@
53635
70045
 ECHO_T = @ECHO_T@
53636
 
@@ -164,8 +159,7 @@
 
70046
@@ -165,8 +159,7 @@
53637
70047
 EXEEXT = @EXEEXT@
53638
70048
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
53639
70049
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
53643
70053
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
53644
70054
 GCONFTOOL = @GCONFTOOL@
53645
70055
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
53646
 
@@ -215,6 +209,7 @@
 
70056
@@ -216,6 +209,7 @@
53647
70057
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
53648
70058
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
53649
70059
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
53651
70061
 LDFLAGS = @LDFLAGS@
53652
70062
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
53653
70063
 LIBEPC_LIBS = @LIBEPC_LIBS@
53654
 
@@ -223,6 +218,7 @@
 
70064
@@ -224,6 +218,7 @@
53655
70065
 LIBOBJS = @LIBOBJS@
53656
70066
 LIBS = @LIBS@
53657
70067
 LIBTOOL = @LIBTOOL@
53659
70069
 LIRC_LIBS = @LIRC_LIBS@
53660
70070
 LN_S = @LN_S@
53661
70071
 LTLIBOBJS = @LTLIBOBJS@
53662
 
@@ -242,11 +238,15 @@
 
70072
@@ -243,12 +238,15 @@
53663
70073
 NAUTILUSDIR = @NAUTILUSDIR@
53664
70074
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
53665
70075
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
53666
70076
+NM = @NM@
53667
 
+NMEDIT = @NMEDIT@
 
70077
 NMEDIT = @NMEDIT@
53668
70078
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
53669
70079
 NVTV_CFLAGS = @NVTV_CFLAGS@
53670
70080
 NVTV_LIBS = @NVTV_LIBS@
53675
70085
 PACKAGE = @PACKAGE@
53676
70086
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
53677
70087
 PACKAGE_NAME = @PACKAGE_NAME@
53678
 
@@ -308,7 +308,7 @@
 
70088
@@ -310,7 +308,7 @@
53679
70089
 abs_top_srcdir = @abs_top_srcdir@
53680
70090
 ac_ct_CC = @ac_ct_CC@
53681
70091
 ac_ct_CXX = @ac_ct_CXX@
53684
70094
 am__include = @am__include@
53685
70095
 am__leading_dot = @am__leading_dot@
53686
70096
 am__quote = @am__quote@
53687
 
@@ -339,6 +339,7 @@
 
70097
@@ -341,6 +339,7 @@
53688
70098
 libexecdir = @libexecdir@
53689
70099
 localedir = @localedir@
53690
70100
 localstatedir = @localstatedir@
53692
70102
 mandir = @mandir@
53693
70103
 mkdir_p = @mkdir_p@
53694
70104
 oldincludedir = @oldincludedir@
53695
 
@@ -357,7 +358,7 @@
 
70105
@@ -357,10 +356,9 @@
 
70106
 srcdir = @srcdir@
 
70107
 sysconfdir = @sysconfdir@
53696
70108
 target_alias = @target_alias@
 
70109
-top_build_prefix = @top_build_prefix@
53697
70110
 top_builddir = @top_builddir@
53698
70111
 top_srcdir = @top_srcdir@
53699
70112
-lib_LTLIBRARIES = libbaconvideowidget.la
53701
70114
 bvw_test_SOURCES = bvw-test.c
53702
70115
 bvw_test_CPPFLAGS = \
53703
70116
        -I$(top_srcdir)/plparse         \
53704
 
@@ -444,35 +445,17 @@
 
70117
@@ -447,35 +445,17 @@
53705
70118
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
53706
70119
 $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
53707
70120
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
53715
70128
-           $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
53716
70129
-         else :; fi; \
53717
70130
-       done
53718
 
 
 
70131
-
53719
70132
-uninstall-libLTLIBRARIES:
53720
70133
-       @$(NORMAL_UNINSTALL)
53721
70134
-       @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
53723
70136
-         echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
53724
70137
-         $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
53725
70138
-       done
53726
 
-
 
70139
 
53727
70140
-clean-libLTLIBRARIES:
53728
70141
-       -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
53729
70142
-       @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
53741
70154
 
53742
70155
 clean-noinstPROGRAMS:
53743
70156
        @list='$(noinst_PROGRAMS)'; for p in $$list; do \
53744
 
@@ -678,9 +661,6 @@
 
70157
@@ -681,9 +661,6 @@
53745
70158
        $(MAKE) $(AM_MAKEFLAGS) check-am
53746
70159
 all-am: Makefile $(LTLIBRARIES) $(PROGRAMS)
53747
70160
 installdirs:
53751
70164
 install: $(BUILT_SOURCES)
53752
70165
        $(MAKE) $(AM_MAKEFLAGS) install-am
53753
70166
 install-exec: install-exec-am
53754
 
@@ -710,7 +690,7 @@
 
70167
@@ -713,7 +690,7 @@
53755
70168
        -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
53756
70169
 clean: clean-am
53757
70170
 
53760
70173
        clean-noinstPROGRAMS mostlyclean-am
53761
70174
 
53762
70175
 distclean: distclean-am
53763
 
@@ -733,7 +713,7 @@
 
70176
@@ -736,7 +713,7 @@
53764
70177
 
53765
70178
 install-dvi: install-dvi-am
53766
70179
 
53769
70182
 
53770
70183
 install-html: install-html-am
53771
70184
 
53772
 
@@ -765,23 +745,23 @@
 
70185
@@ -768,23 +745,23 @@
53773
70186
 
53774
70187
 ps-am:
53775
70188
 
53800
70213
 
53801
70214
        $(DISABLE_DEPRECATED)           \
53802
70215
        $(AM_CPPFLAGS)
53803
 
diff -Nurb totem-2.24.2/src/Makefile.in totem-2.24.2.new/src/Makefile.in
53804
 
--- totem-2.24.2/src/Makefile.in        2008-10-07 16:18:56.000000000 +0200
53805
 
+++ totem-2.24.2.new/src/Makefile.in    2008-10-08 15:16:17.000000000 +0200
 
70216
Index: totem-2.24.3/src/Makefile.in
 
70217
===================================================================
 
70218
--- totem-2.24.3.orig/src/Makefile.in   2008-10-26 15:40:47.000000000 +0100
 
70219
+++ totem-2.24.3/src/Makefile.in        2008-10-30 19:06:37.000000000 +0100
53806
70220
@@ -240,6 +240,8 @@
53807
70221
 AUTOHEADER = @AUTOHEADER@
53808
70222
 AUTOMAKE = @AUTOMAKE@
53812
70226
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
53813
70227
 BEMUSED_LIBS = @BEMUSED_LIBS@
53814
70228
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
53815
 
@@ -266,7 +268,8 @@
53816
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
70229
@@ -267,7 +269,7 @@
53817
70230
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
53818
70231
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
70232
 DSYMUTIL = @DSYMUTIL@
53819
70233
-ECHO = @ECHO@
53820
 
+DSYMUTIL = @DSYMUTIL@
53821
70234
+DUMPBIN = @DUMPBIN@
53822
70235
 ECHO_C = @ECHO_C@
53823
70236
 ECHO_N = @ECHO_N@
53824
70237
 ECHO_T = @ECHO_T@
53825
 
@@ -274,8 +277,7 @@
 
70238
@@ -275,8 +277,7 @@
53826
70239
 EXEEXT = @EXEEXT@
53827
70240
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
53828
70241
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
53832
70245
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
53833
70246
 GCONFTOOL = @GCONFTOOL@
53834
70247
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
53835
 
@@ -325,6 +327,7 @@
 
70248
@@ -326,6 +327,7 @@
53836
70249
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
53837
70250
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
53838
70251
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
53840
70253
 LDFLAGS = @LDFLAGS@
53841
70254
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
53842
70255
 LIBEPC_LIBS = @LIBEPC_LIBS@
53843
 
@@ -333,6 +336,7 @@
 
70256
@@ -334,6 +336,7 @@
53844
70257
 LIBOBJS = @LIBOBJS@
53845
70258
 LIBS = @LIBS@
53846
70259
 LIBTOOL = @LIBTOOL@
53848
70261
 LIRC_LIBS = @LIRC_LIBS@
53849
70262
 LN_S = @LN_S@
53850
70263
 LTLIBOBJS = @LTLIBOBJS@
53851
 
@@ -352,11 +356,15 @@
 
70264
@@ -353,12 +356,15 @@
53852
70265
 NAUTILUSDIR = @NAUTILUSDIR@
53853
70266
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
53854
70267
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
53855
70268
+NM = @NM@
53856
 
+NMEDIT = @NMEDIT@
 
70269
 NMEDIT = @NMEDIT@
53857
70270
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
53858
70271
 NVTV_CFLAGS = @NVTV_CFLAGS@
53859
70272
 NVTV_LIBS = @NVTV_LIBS@
53864
70277
 PACKAGE = @PACKAGE@
53865
70278
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
53866
70279
 PACKAGE_NAME = @PACKAGE_NAME@
53867
 
@@ -418,7 +426,7 @@
 
70280
@@ -420,7 +426,7 @@
53868
70281
 abs_top_srcdir = @abs_top_srcdir@
53869
70282
 ac_ct_CC = @ac_ct_CC@
53870
70283
 ac_ct_CXX = @ac_ct_CXX@
53873
70286
 am__include = @am__include@
53874
70287
 am__leading_dot = @am__leading_dot@
53875
70288
 am__quote = @am__quote@
53876
 
@@ -449,6 +457,7 @@
 
70289
@@ -451,6 +457,7 @@
53877
70290
 libexecdir = @libexecdir@
53878
70291
 localedir = @localedir@
53879
70292
 localstatedir = @localstatedir@
53881
70294
 mandir = @mandir@
53882
70295
 mkdir_p = @mkdir_p@
53883
70296
 oldincludedir = @oldincludedir@
53884
 
diff -Nurb totem-2.24.2/src/plugins/bbc/Makefile.in totem-2.24.2.new/src/plugins/bbc/Makefile.in
53885
 
--- totem-2.24.2/src/plugins/bbc/Makefile.in    1970-01-01 01:00:00.000000000 +0100
53886
 
+++ totem-2.24.2.new/src/plugins/bbc/Makefile.in        2008-10-08 15:16:17.000000000 +0200
 
70297
@@ -467,7 +474,6 @@
 
70298
 srcdir = @srcdir@
 
70299
 sysconfdir = @sysconfdir@
 
70300
 target_alias = @target_alias@
 
70301
-top_build_prefix = @top_build_prefix@
 
70302
 top_builddir = @top_builddir@
 
70303
 top_srcdir = @top_srcdir@
 
70304
 SUBDIRS = plugins backend
 
70305
Index: totem-2.24.3/src/plugins/bbc/Makefile.in
 
70306
===================================================================
 
70307
--- /dev/null   1970-01-01 00:00:00.000000000 +0000
 
70308
+++ totem-2.24.3/src/plugins/bbc/Makefile.in    2008-10-30 19:06:37.000000000 +0100
53887
70309
@@ -0,0 +1,548 @@
53888
70310
+# Makefile.in generated by automake 1.10.1 from Makefile.am.
53889
70311
+# @configure_input@
54433
70855
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
54434
70856
+# Otherwise a system limit (for SysV at least) may be exceeded.
54435
70857
+.NOEXPORT:
54436
 
diff -Nurb totem-2.24.2/src/plugins/bemused/Makefile.in totem-2.24.2.new/src/plugins/bemused/Makefile.in
54437
 
--- totem-2.24.2/src/plugins/bemused/Makefile.in        2008-10-07 16:18:56.000000000 +0200
54438
 
+++ totem-2.24.2.new/src/plugins/bemused/Makefile.in    2008-10-08 15:16:17.000000000 +0200
 
70858
Index: totem-2.24.3/src/plugins/bemused/Makefile.in
 
70859
===================================================================
 
70860
--- totem-2.24.3.orig/src/plugins/bemused/Makefile.in   2008-10-26 15:40:48.000000000 +0100
 
70861
+++ totem-2.24.3/src/plugins/bemused/Makefile.in        2008-10-30 19:06:37.000000000 +0100
54439
70862
@@ -90,6 +90,8 @@
54440
70863
 AUTOHEADER = @AUTOHEADER@
54441
70864
 AUTOMAKE = @AUTOMAKE@
54445
70868
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
54446
70869
 BEMUSED_LIBS = @BEMUSED_LIBS@
54447
70870
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
54448
 
@@ -116,7 +118,8 @@
54449
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
70871
@@ -117,7 +119,7 @@
54450
70872
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
54451
70873
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
70874
 DSYMUTIL = @DSYMUTIL@
54452
70875
-ECHO = @ECHO@
54453
 
+DSYMUTIL = @DSYMUTIL@
54454
70876
+DUMPBIN = @DUMPBIN@
54455
70877
 ECHO_C = @ECHO_C@
54456
70878
 ECHO_N = @ECHO_N@
54457
70879
 ECHO_T = @ECHO_T@
54458
 
@@ -124,8 +127,7 @@
 
70880
@@ -125,8 +127,7 @@
54459
70881
 EXEEXT = @EXEEXT@
54460
70882
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
54461
70883
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
54465
70887
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
54466
70888
 GCONFTOOL = @GCONFTOOL@
54467
70889
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
54468
 
@@ -175,6 +177,7 @@
 
70890
@@ -176,6 +177,7 @@
54469
70891
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
54470
70892
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
54471
70893
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
54473
70895
 LDFLAGS = @LDFLAGS@
54474
70896
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
54475
70897
 LIBEPC_LIBS = @LIBEPC_LIBS@
54476
 
@@ -183,6 +186,7 @@
 
70898
@@ -184,6 +186,7 @@
54477
70899
 LIBOBJS = @LIBOBJS@
54478
70900
 LIBS = @LIBS@
54479
70901
 LIBTOOL = @LIBTOOL@
54481
70903
 LIRC_LIBS = @LIRC_LIBS@
54482
70904
 LN_S = @LN_S@
54483
70905
 LTLIBOBJS = @LTLIBOBJS@
54484
 
@@ -202,11 +206,15 @@
 
70906
@@ -203,12 +206,15 @@
54485
70907
 NAUTILUSDIR = @NAUTILUSDIR@
54486
70908
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
54487
70909
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
54488
70910
+NM = @NM@
54489
 
+NMEDIT = @NMEDIT@
 
70911
 NMEDIT = @NMEDIT@
54490
70912
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
54491
70913
 NVTV_CFLAGS = @NVTV_CFLAGS@
54492
70914
 NVTV_LIBS = @NVTV_LIBS@
54497
70919
 PACKAGE = @PACKAGE@
54498
70920
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
54499
70921
 PACKAGE_NAME = @PACKAGE_NAME@
54500
 
@@ -268,7 +276,7 @@
 
70922
@@ -270,7 +276,7 @@
54501
70923
 abs_top_srcdir = @abs_top_srcdir@
54502
70924
 ac_ct_CC = @ac_ct_CC@
54503
70925
 ac_ct_CXX = @ac_ct_CXX@
54506
70928
 am__include = @am__include@
54507
70929
 am__leading_dot = @am__leading_dot@
54508
70930
 am__quote = @am__quote@
54509
 
@@ -299,6 +307,7 @@
 
70931
@@ -301,6 +307,7 @@
54510
70932
 libexecdir = @libexecdir@
54511
70933
 localedir = @localedir@
54512
70934
 localstatedir = @localstatedir@
54514
70936
 mandir = @mandir@
54515
70937
 mkdir_p = @mkdir_p@
54516
70938
 oldincludedir = @oldincludedir@
54517
 
diff -Nurb totem-2.24.2/src/plugins/galago/Makefile.in totem-2.24.2.new/src/plugins/galago/Makefile.in
54518
 
--- totem-2.24.2/src/plugins/galago/Makefile.in 2008-10-07 16:18:56.000000000 +0200
54519
 
+++ totem-2.24.2.new/src/plugins/galago/Makefile.in     2008-10-08 15:16:18.000000000 +0200
 
70939
@@ -317,7 +324,6 @@
 
70940
 srcdir = @srcdir@
 
70941
 sysconfdir = @sysconfdir@
 
70942
 target_alias = @target_alias@
 
70943
-top_build_prefix = @top_build_prefix@
 
70944
 top_builddir = @top_builddir@
 
70945
 top_srcdir = @top_srcdir@
 
70946
 modules_flags = -export_dynamic -avoid-version -module
 
70947
Index: totem-2.24.3/src/plugins/galago/Makefile.in
 
70948
===================================================================
 
70949
--- totem-2.24.3.orig/src/plugins/galago/Makefile.in    2008-10-26 15:40:48.000000000 +0100
 
70950
+++ totem-2.24.3/src/plugins/galago/Makefile.in 2008-10-30 19:06:37.000000000 +0100
54520
70951
@@ -91,6 +91,8 @@
54521
70952
 AUTOHEADER = @AUTOHEADER@
54522
70953
 AUTOMAKE = @AUTOMAKE@
54526
70957
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
54527
70958
 BEMUSED_LIBS = @BEMUSED_LIBS@
54528
70959
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
54529
 
@@ -117,7 +119,8 @@
54530
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
70960
@@ -118,7 +120,7 @@
54531
70961
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
54532
70962
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
70963
 DSYMUTIL = @DSYMUTIL@
54533
70964
-ECHO = @ECHO@
54534
 
+DSYMUTIL = @DSYMUTIL@
54535
70965
+DUMPBIN = @DUMPBIN@
54536
70966
 ECHO_C = @ECHO_C@
54537
70967
 ECHO_N = @ECHO_N@
54538
70968
 ECHO_T = @ECHO_T@
54539
 
@@ -125,8 +128,7 @@
 
70969
@@ -126,8 +128,7 @@
54540
70970
 EXEEXT = @EXEEXT@
54541
70971
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
54542
70972
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
54546
70976
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
54547
70977
 GCONFTOOL = @GCONFTOOL@
54548
70978
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
54549
 
@@ -176,6 +178,7 @@
 
70979
@@ -177,6 +178,7 @@
54550
70980
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
54551
70981
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
54552
70982
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
54554
70984
 LDFLAGS = @LDFLAGS@
54555
70985
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
54556
70986
 LIBEPC_LIBS = @LIBEPC_LIBS@
54557
 
@@ -184,6 +187,7 @@
 
70987
@@ -185,6 +187,7 @@
54558
70988
 LIBOBJS = @LIBOBJS@
54559
70989
 LIBS = @LIBS@
54560
70990
 LIBTOOL = @LIBTOOL@
54562
70992
 LIRC_LIBS = @LIRC_LIBS@
54563
70993
 LN_S = @LN_S@
54564
70994
 LTLIBOBJS = @LTLIBOBJS@
54565
 
@@ -203,11 +207,15 @@
 
70995
@@ -204,12 +207,15 @@
54566
70996
 NAUTILUSDIR = @NAUTILUSDIR@
54567
70997
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
54568
70998
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
54569
70999
+NM = @NM@
54570
 
+NMEDIT = @NMEDIT@
 
71000
 NMEDIT = @NMEDIT@
54571
71001
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
54572
71002
 NVTV_CFLAGS = @NVTV_CFLAGS@
54573
71003
 NVTV_LIBS = @NVTV_LIBS@
54578
71008
 PACKAGE = @PACKAGE@
54579
71009
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
54580
71010
 PACKAGE_NAME = @PACKAGE_NAME@
54581
 
@@ -269,7 +277,7 @@
 
71011
@@ -271,7 +277,7 @@
54582
71012
 abs_top_srcdir = @abs_top_srcdir@
54583
71013
 ac_ct_CC = @ac_ct_CC@
54584
71014
 ac_ct_CXX = @ac_ct_CXX@
54587
71017
 am__include = @am__include@
54588
71018
 am__leading_dot = @am__leading_dot@
54589
71019
 am__quote = @am__quote@
54590
 
@@ -300,6 +308,7 @@
 
71020
@@ -302,6 +308,7 @@
54591
71021
 libexecdir = @libexecdir@
54592
71022
 localedir = @localedir@
54593
71023
 localstatedir = @localstatedir@
54595
71025
 mandir = @mandir@
54596
71026
 mkdir_p = @mkdir_p@
54597
71027
 oldincludedir = @oldincludedir@
54598
 
diff -Nurb totem-2.24.2/src/plugins/gromit/Makefile.in totem-2.24.2.new/src/plugins/gromit/Makefile.in
54599
 
--- totem-2.24.2/src/plugins/gromit/Makefile.in 2008-10-07 16:18:57.000000000 +0200
54600
 
+++ totem-2.24.2.new/src/plugins/gromit/Makefile.in     2008-10-08 15:16:18.000000000 +0200
 
71028
@@ -318,7 +325,6 @@
 
71029
 srcdir = @srcdir@
 
71030
 sysconfdir = @sysconfdir@
 
71031
 target_alias = @target_alias@
 
71032
-top_build_prefix = @top_build_prefix@
 
71033
 top_builddir = @top_builddir@
 
71034
 top_srcdir = @top_srcdir@
 
71035
 modules_flags = -export_dynamic -avoid-version -module
 
71036
Index: totem-2.24.3/src/plugins/gromit/Makefile.in
 
71037
===================================================================
 
71038
--- totem-2.24.3.orig/src/plugins/gromit/Makefile.in    2008-10-26 15:40:48.000000000 +0100
 
71039
+++ totem-2.24.3/src/plugins/gromit/Makefile.in 2008-10-30 19:06:37.000000000 +0100
54601
71040
@@ -90,6 +90,8 @@
54602
71041
 AUTOHEADER = @AUTOHEADER@
54603
71042
 AUTOMAKE = @AUTOMAKE@
54607
71046
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
54608
71047
 BEMUSED_LIBS = @BEMUSED_LIBS@
54609
71048
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
54610
 
@@ -116,7 +118,8 @@
54611
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
71049
@@ -117,7 +119,7 @@
54612
71050
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
54613
71051
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
71052
 DSYMUTIL = @DSYMUTIL@
54614
71053
-ECHO = @ECHO@
54615
 
+DSYMUTIL = @DSYMUTIL@
54616
71054
+DUMPBIN = @DUMPBIN@
54617
71055
 ECHO_C = @ECHO_C@
54618
71056
 ECHO_N = @ECHO_N@
54619
71057
 ECHO_T = @ECHO_T@
54620
 
@@ -124,8 +127,7 @@
 
71058
@@ -125,8 +127,7 @@
54621
71059
 EXEEXT = @EXEEXT@
54622
71060
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
54623
71061
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
54627
71065
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
54628
71066
 GCONFTOOL = @GCONFTOOL@
54629
71067
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
54630
 
@@ -175,6 +177,7 @@
 
71068
@@ -176,6 +177,7 @@
54631
71069
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
54632
71070
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
54633
71071
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
54635
71073
 LDFLAGS = @LDFLAGS@
54636
71074
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
54637
71075
 LIBEPC_LIBS = @LIBEPC_LIBS@
54638
 
@@ -183,6 +186,7 @@
 
71076
@@ -184,6 +186,7 @@
54639
71077
 LIBOBJS = @LIBOBJS@
54640
71078
 LIBS = @LIBS@
54641
71079
 LIBTOOL = @LIBTOOL@
54643
71081
 LIRC_LIBS = @LIRC_LIBS@
54644
71082
 LN_S = @LN_S@
54645
71083
 LTLIBOBJS = @LTLIBOBJS@
54646
 
@@ -202,11 +206,15 @@
 
71084
@@ -203,12 +206,15 @@
54647
71085
 NAUTILUSDIR = @NAUTILUSDIR@
54648
71086
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
54649
71087
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
54650
71088
+NM = @NM@
54651
 
+NMEDIT = @NMEDIT@
 
71089
 NMEDIT = @NMEDIT@
54652
71090
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
54653
71091
 NVTV_CFLAGS = @NVTV_CFLAGS@
54654
71092
 NVTV_LIBS = @NVTV_LIBS@
54659
71097
 PACKAGE = @PACKAGE@
54660
71098
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
54661
71099
 PACKAGE_NAME = @PACKAGE_NAME@
54662
 
@@ -268,7 +276,7 @@
 
71100
@@ -270,7 +276,7 @@
54663
71101
 abs_top_srcdir = @abs_top_srcdir@
54664
71102
 ac_ct_CC = @ac_ct_CC@
54665
71103
 ac_ct_CXX = @ac_ct_CXX@
54668
71106
 am__include = @am__include@
54669
71107
 am__leading_dot = @am__leading_dot@
54670
71108
 am__quote = @am__quote@
54671
 
@@ -299,6 +307,7 @@
 
71109
@@ -301,6 +307,7 @@
54672
71110
 libexecdir = @libexecdir@
54673
71111
 localedir = @localedir@
54674
71112
 localstatedir = @localstatedir@
54676
71114
 mandir = @mandir@
54677
71115
 mkdir_p = @mkdir_p@
54678
71116
 oldincludedir = @oldincludedir@
54679
 
diff -Nurb totem-2.24.2/src/plugins/lirc/Makefile.in totem-2.24.2.new/src/plugins/lirc/Makefile.in
54680
 
--- totem-2.24.2/src/plugins/lirc/Makefile.in   2008-10-07 16:18:57.000000000 +0200
54681
 
+++ totem-2.24.2.new/src/plugins/lirc/Makefile.in       2008-10-08 15:16:18.000000000 +0200
 
71117
@@ -317,7 +324,6 @@
 
71118
 srcdir = @srcdir@
 
71119
 sysconfdir = @sysconfdir@
 
71120
 target_alias = @target_alias@
 
71121
-top_build_prefix = @top_build_prefix@
 
71122
 top_builddir = @top_builddir@
 
71123
 top_srcdir = @top_srcdir@
 
71124
 modules_flags = -export_dynamic -avoid-version -module
 
71125
Index: totem-2.24.3/src/plugins/lirc/Makefile.in
 
71126
===================================================================
 
71127
--- totem-2.24.3.orig/src/plugins/lirc/Makefile.in      2008-10-26 15:40:48.000000000 +0100
 
71128
+++ totem-2.24.3/src/plugins/lirc/Makefile.in   2008-10-30 19:06:37.000000000 +0100
54682
71129
@@ -93,6 +93,8 @@
54683
71130
 AUTOHEADER = @AUTOHEADER@
54684
71131
 AUTOMAKE = @AUTOMAKE@
54688
71135
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
54689
71136
 BEMUSED_LIBS = @BEMUSED_LIBS@
54690
71137
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
54691
 
@@ -119,7 +121,8 @@
54692
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
71138
@@ -120,7 +122,7 @@
54693
71139
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
54694
71140
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
71141
 DSYMUTIL = @DSYMUTIL@
54695
71142
-ECHO = @ECHO@
54696
 
+DSYMUTIL = @DSYMUTIL@
54697
71143
+DUMPBIN = @DUMPBIN@
54698
71144
 ECHO_C = @ECHO_C@
54699
71145
 ECHO_N = @ECHO_N@
54700
71146
 ECHO_T = @ECHO_T@
54701
 
@@ -127,8 +130,7 @@
 
71147
@@ -128,8 +130,7 @@
54702
71148
 EXEEXT = @EXEEXT@
54703
71149
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
54704
71150
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
54708
71154
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
54709
71155
 GCONFTOOL = @GCONFTOOL@
54710
71156
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
54711
 
@@ -178,6 +180,7 @@
 
71157
@@ -179,6 +180,7 @@
54712
71158
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
54713
71159
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
54714
71160
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
54716
71162
 LDFLAGS = @LDFLAGS@
54717
71163
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
54718
71164
 LIBEPC_LIBS = @LIBEPC_LIBS@
54719
 
@@ -186,6 +189,7 @@
 
71165
@@ -187,6 +189,7 @@
54720
71166
 LIBOBJS = @LIBOBJS@
54721
71167
 LIBS = @LIBS@
54722
71168
 LIBTOOL = @LIBTOOL@
54724
71170
 LIRC_LIBS = @LIRC_LIBS@
54725
71171
 LN_S = @LN_S@
54726
71172
 LTLIBOBJS = @LTLIBOBJS@
54727
 
@@ -205,11 +209,15 @@
 
71173
@@ -206,12 +209,15 @@
54728
71174
 NAUTILUSDIR = @NAUTILUSDIR@
54729
71175
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
54730
71176
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
54731
71177
+NM = @NM@
54732
 
+NMEDIT = @NMEDIT@
 
71178
 NMEDIT = @NMEDIT@
54733
71179
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
54734
71180
 NVTV_CFLAGS = @NVTV_CFLAGS@
54735
71181
 NVTV_LIBS = @NVTV_LIBS@
54740
71186
 PACKAGE = @PACKAGE@
54741
71187
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
54742
71188
 PACKAGE_NAME = @PACKAGE_NAME@
54743
 
@@ -271,7 +279,7 @@
 
71189
@@ -273,7 +279,7 @@
54744
71190
 abs_top_srcdir = @abs_top_srcdir@
54745
71191
 ac_ct_CC = @ac_ct_CC@
54746
71192
 ac_ct_CXX = @ac_ct_CXX@
54749
71195
 am__include = @am__include@
54750
71196
 am__leading_dot = @am__leading_dot@
54751
71197
 am__quote = @am__quote@
54752
 
@@ -302,6 +310,7 @@
 
71198
@@ -304,6 +310,7 @@
54753
71199
 libexecdir = @libexecdir@
54754
71200
 localedir = @localedir@
54755
71201
 localstatedir = @localstatedir@
54757
71203
 mandir = @mandir@
54758
71204
 mkdir_p = @mkdir_p@
54759
71205
 oldincludedir = @oldincludedir@
54760
 
diff -Nurb totem-2.24.2/src/plugins/Makefile.in totem-2.24.2.new/src/plugins/Makefile.in
54761
 
--- totem-2.24.2/src/plugins/Makefile.in        2008-10-07 16:18:56.000000000 +0200
54762
 
+++ totem-2.24.2.new/src/plugins/Makefile.in    2008-10-08 15:16:17.000000000 +0200
 
71206
@@ -320,7 +327,6 @@
 
71207
 srcdir = @srcdir@
 
71208
 sysconfdir = @sysconfdir@
 
71209
 target_alias = @target_alias@
 
71210
-top_build_prefix = @top_build_prefix@
 
71211
 top_builddir = @top_builddir@
 
71212
 top_srcdir = @top_srcdir@
 
71213
 modules_flags = -export_dynamic -avoid-version -module
 
71214
Index: totem-2.24.3/src/plugins/Makefile.in
 
71215
===================================================================
 
71216
--- totem-2.24.3.orig/src/plugins/Makefile.in   2008-10-26 15:40:47.000000000 +0100
 
71217
+++ totem-2.24.3/src/plugins/Makefile.in        2008-10-30 19:06:37.000000000 +0100
54763
71218
@@ -118,6 +118,8 @@
54764
71219
 AUTOHEADER = @AUTOHEADER@
54765
71220
 AUTOMAKE = @AUTOMAKE@
54769
71224
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
54770
71225
 BEMUSED_LIBS = @BEMUSED_LIBS@
54771
71226
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
54772
 
@@ -144,7 +146,8 @@
54773
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
71227
@@ -145,7 +147,7 @@
54774
71228
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
54775
71229
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
71230
 DSYMUTIL = @DSYMUTIL@
54776
71231
-ECHO = @ECHO@
54777
 
+DSYMUTIL = @DSYMUTIL@
54778
71232
+DUMPBIN = @DUMPBIN@
54779
71233
 ECHO_C = @ECHO_C@
54780
71234
 ECHO_N = @ECHO_N@
54781
71235
 ECHO_T = @ECHO_T@
54782
 
@@ -152,8 +155,7 @@
 
71236
@@ -153,8 +155,7 @@
54783
71237
 EXEEXT = @EXEEXT@
54784
71238
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
54785
71239
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
54789
71243
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
54790
71244
 GCONFTOOL = @GCONFTOOL@
54791
71245
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
54792
 
@@ -203,6 +205,7 @@
 
71246
@@ -204,6 +205,7 @@
54793
71247
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
54794
71248
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
54795
71249
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
54797
71251
 LDFLAGS = @LDFLAGS@
54798
71252
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
54799
71253
 LIBEPC_LIBS = @LIBEPC_LIBS@
54800
 
@@ -211,6 +214,7 @@
 
71254
@@ -212,6 +214,7 @@
54801
71255
 LIBOBJS = @LIBOBJS@
54802
71256
 LIBS = @LIBS@
54803
71257
 LIBTOOL = @LIBTOOL@
54805
71259
 LIRC_LIBS = @LIRC_LIBS@
54806
71260
 LN_S = @LN_S@
54807
71261
 LTLIBOBJS = @LTLIBOBJS@
54808
 
@@ -230,11 +234,15 @@
 
71262
@@ -231,12 +234,15 @@
54809
71263
 NAUTILUSDIR = @NAUTILUSDIR@
54810
71264
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
54811
71265
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
54812
71266
+NM = @NM@
54813
 
+NMEDIT = @NMEDIT@
 
71267
 NMEDIT = @NMEDIT@
54814
71268
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
54815
71269
 NVTV_CFLAGS = @NVTV_CFLAGS@
54816
71270
 NVTV_LIBS = @NVTV_LIBS@
54821
71275
 PACKAGE = @PACKAGE@
54822
71276
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
54823
71277
 PACKAGE_NAME = @PACKAGE_NAME@
54824
 
@@ -296,7 +304,7 @@
 
71278
@@ -298,7 +304,7 @@
54825
71279
 abs_top_srcdir = @abs_top_srcdir@
54826
71280
 ac_ct_CC = @ac_ct_CC@
54827
71281
 ac_ct_CXX = @ac_ct_CXX@
54830
71284
 am__include = @am__include@
54831
71285
 am__leading_dot = @am__leading_dot@
54832
71286
 am__quote = @am__quote@
54833
 
@@ -327,6 +335,7 @@
 
71287
@@ -329,6 +335,7 @@
54834
71288
 libexecdir = @libexecdir@
54835
71289
 localedir = @localedir@
54836
71290
 localstatedir = @localstatedir@
54838
71292
 mandir = @mandir@
54839
71293
 mkdir_p = @mkdir_p@
54840
71294
 oldincludedir = @oldincludedir@
54841
 
diff -Nurb totem-2.24.2/src/plugins/media-player-keys/Makefile.in totem-2.24.2.new/src/plugins/media-player-keys/Makefile.in
54842
 
--- totem-2.24.2/src/plugins/media-player-keys/Makefile.in      2008-10-07 16:18:57.000000000 +0200
54843
 
+++ totem-2.24.2.new/src/plugins/media-player-keys/Makefile.in  2008-10-08 15:16:18.000000000 +0200
 
71295
@@ -345,7 +352,6 @@
 
71296
 srcdir = @srcdir@
 
71297
 sysconfdir = @sysconfdir@
 
71298
 target_alias = @target_alias@
 
71299
-top_build_prefix = @top_build_prefix@
 
71300
 top_builddir = @top_builddir@
 
71301
 top_srcdir = @top_srcdir@
 
71302
 SUBDIRS = $(PLUGINS) $(am__append_1)
 
71303
Index: totem-2.24.3/src/plugins/media-player-keys/Makefile.in
 
71304
===================================================================
 
71305
--- totem-2.24.3.orig/src/plugins/media-player-keys/Makefile.in 2008-10-26 15:40:48.000000000 +0100
 
71306
+++ totem-2.24.3/src/plugins/media-player-keys/Makefile.in      2008-10-30 19:06:37.000000000 +0100
54844
71307
@@ -96,6 +96,8 @@
54845
71308
 AUTOHEADER = @AUTOHEADER@
54846
71309
 AUTOMAKE = @AUTOMAKE@
54850
71313
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
54851
71314
 BEMUSED_LIBS = @BEMUSED_LIBS@
54852
71315
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
54853
 
@@ -122,7 +124,8 @@
54854
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
71316
@@ -123,7 +125,7 @@
54855
71317
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
54856
71318
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
71319
 DSYMUTIL = @DSYMUTIL@
54857
71320
-ECHO = @ECHO@
54858
 
+DSYMUTIL = @DSYMUTIL@
54859
71321
+DUMPBIN = @DUMPBIN@
54860
71322
 ECHO_C = @ECHO_C@
54861
71323
 ECHO_N = @ECHO_N@
54862
71324
 ECHO_T = @ECHO_T@
54863
 
@@ -130,8 +133,7 @@
 
71325
@@ -131,8 +133,7 @@
54864
71326
 EXEEXT = @EXEEXT@
54865
71327
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
54866
71328
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
54870
71332
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
54871
71333
 GCONFTOOL = @GCONFTOOL@
54872
71334
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
54873
 
@@ -181,6 +183,7 @@
 
71335
@@ -182,6 +183,7 @@
54874
71336
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
54875
71337
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
54876
71338
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
54878
71340
 LDFLAGS = @LDFLAGS@
54879
71341
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
54880
71342
 LIBEPC_LIBS = @LIBEPC_LIBS@
54881
 
@@ -189,6 +192,7 @@
 
71343
@@ -190,6 +192,7 @@
54882
71344
 LIBOBJS = @LIBOBJS@
54883
71345
 LIBS = @LIBS@
54884
71346
 LIBTOOL = @LIBTOOL@
54886
71348
 LIRC_LIBS = @LIRC_LIBS@
54887
71349
 LN_S = @LN_S@
54888
71350
 LTLIBOBJS = @LTLIBOBJS@
54889
 
@@ -208,11 +212,15 @@
 
71351
@@ -209,12 +212,15 @@
54890
71352
 NAUTILUSDIR = @NAUTILUSDIR@
54891
71353
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
54892
71354
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
54893
71355
+NM = @NM@
54894
 
+NMEDIT = @NMEDIT@
 
71356
 NMEDIT = @NMEDIT@
54895
71357
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
54896
71358
 NVTV_CFLAGS = @NVTV_CFLAGS@
54897
71359
 NVTV_LIBS = @NVTV_LIBS@
54902
71364
 PACKAGE = @PACKAGE@
54903
71365
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
54904
71366
 PACKAGE_NAME = @PACKAGE_NAME@
54905
 
@@ -274,7 +282,7 @@
 
71367
@@ -276,7 +282,7 @@
54906
71368
 abs_top_srcdir = @abs_top_srcdir@
54907
71369
 ac_ct_CC = @ac_ct_CC@
54908
71370
 ac_ct_CXX = @ac_ct_CXX@
54911
71373
 am__include = @am__include@
54912
71374
 am__leading_dot = @am__leading_dot@
54913
71375
 am__quote = @am__quote@
54914
 
@@ -305,6 +313,7 @@
 
71376
@@ -307,6 +313,7 @@
54915
71377
 libexecdir = @libexecdir@
54916
71378
 localedir = @localedir@
54917
71379
 localstatedir = @localstatedir@
54919
71381
 mandir = @mandir@
54920
71382
 mkdir_p = @mkdir_p@
54921
71383
 oldincludedir = @oldincludedir@
54922
 
diff -Nurb totem-2.24.2/src/plugins/mythtv/Makefile.in totem-2.24.2.new/src/plugins/mythtv/Makefile.in
54923
 
--- totem-2.24.2/src/plugins/mythtv/Makefile.in 2008-10-07 16:18:57.000000000 +0200
54924
 
+++ totem-2.24.2.new/src/plugins/mythtv/Makefile.in     2008-10-08 15:16:18.000000000 +0200
 
71384
@@ -323,7 +330,6 @@
 
71385
 srcdir = @srcdir@
 
71386
 sysconfdir = @sysconfdir@
 
71387
 target_alias = @target_alias@
 
71388
-top_build_prefix = @top_build_prefix@
 
71389
 top_builddir = @top_builddir@
 
71390
 top_srcdir = @top_srcdir@
 
71391
 modules_flags = -export_dynamic -avoid-version -module
 
71392
Index: totem-2.24.3/src/plugins/mythtv/Makefile.in
 
71393
===================================================================
 
71394
--- totem-2.24.3.orig/src/plugins/mythtv/Makefile.in    2008-10-26 15:40:49.000000000 +0100
 
71395
+++ totem-2.24.3/src/plugins/mythtv/Makefile.in 2008-10-30 19:06:37.000000000 +0100
54925
71396
@@ -92,6 +92,8 @@
54926
71397
 AUTOHEADER = @AUTOHEADER@
54927
71398
 AUTOMAKE = @AUTOMAKE@
54931
71402
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
54932
71403
 BEMUSED_LIBS = @BEMUSED_LIBS@
54933
71404
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
54934
 
@@ -118,7 +120,8 @@
54935
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
71405
@@ -119,7 +121,7 @@
54936
71406
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
54937
71407
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
71408
 DSYMUTIL = @DSYMUTIL@
54938
71409
-ECHO = @ECHO@
54939
 
+DSYMUTIL = @DSYMUTIL@
54940
71410
+DUMPBIN = @DUMPBIN@
54941
71411
 ECHO_C = @ECHO_C@
54942
71412
 ECHO_N = @ECHO_N@
54943
71413
 ECHO_T = @ECHO_T@
54944
 
@@ -126,8 +129,7 @@
 
71414
@@ -127,8 +129,7 @@
54945
71415
 EXEEXT = @EXEEXT@
54946
71416
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
54947
71417
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
54951
71421
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
54952
71422
 GCONFTOOL = @GCONFTOOL@
54953
71423
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
54954
 
@@ -177,6 +179,7 @@
 
71424
@@ -178,6 +179,7 @@
54955
71425
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
54956
71426
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
54957
71427
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
54959
71429
 LDFLAGS = @LDFLAGS@
54960
71430
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
54961
71431
 LIBEPC_LIBS = @LIBEPC_LIBS@
54962
 
@@ -185,6 +188,7 @@
 
71432
@@ -186,6 +188,7 @@
54963
71433
 LIBOBJS = @LIBOBJS@
54964
71434
 LIBS = @LIBS@
54965
71435
 LIBTOOL = @LIBTOOL@
54967
71437
 LIRC_LIBS = @LIRC_LIBS@
54968
71438
 LN_S = @LN_S@
54969
71439
 LTLIBOBJS = @LTLIBOBJS@
54970
 
@@ -204,11 +208,15 @@
 
71440
@@ -205,12 +208,15 @@
54971
71441
 NAUTILUSDIR = @NAUTILUSDIR@
54972
71442
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
54973
71443
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
54974
71444
+NM = @NM@
54975
 
+NMEDIT = @NMEDIT@
 
71445
 NMEDIT = @NMEDIT@
54976
71446
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
54977
71447
 NVTV_CFLAGS = @NVTV_CFLAGS@
54978
71448
 NVTV_LIBS = @NVTV_LIBS@
54983
71453
 PACKAGE = @PACKAGE@
54984
71454
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
54985
71455
 PACKAGE_NAME = @PACKAGE_NAME@
54986
 
@@ -270,7 +278,7 @@
 
71456
@@ -272,7 +278,7 @@
54987
71457
 abs_top_srcdir = @abs_top_srcdir@
54988
71458
 ac_ct_CC = @ac_ct_CC@
54989
71459
 ac_ct_CXX = @ac_ct_CXX@
54992
71462
 am__include = @am__include@
54993
71463
 am__leading_dot = @am__leading_dot@
54994
71464
 am__quote = @am__quote@
54995
 
@@ -301,6 +309,7 @@
 
71465
@@ -303,6 +309,7 @@
54996
71466
 libexecdir = @libexecdir@
54997
71467
 localedir = @localedir@
54998
71468
 localstatedir = @localstatedir@
55000
71470
 mandir = @mandir@
55001
71471
 mkdir_p = @mkdir_p@
55002
71472
 oldincludedir = @oldincludedir@
55003
 
diff -Nurb totem-2.24.2/src/plugins/ontop/Makefile.in totem-2.24.2.new/src/plugins/ontop/Makefile.in
55004
 
--- totem-2.24.2/src/plugins/ontop/Makefile.in  2008-10-07 16:18:57.000000000 +0200
55005
 
+++ totem-2.24.2.new/src/plugins/ontop/Makefile.in      2008-10-08 15:16:18.000000000 +0200
 
71473
@@ -319,7 +326,6 @@
 
71474
 srcdir = @srcdir@
 
71475
 sysconfdir = @sysconfdir@
 
71476
 target_alias = @target_alias@
 
71477
-top_build_prefix = @top_build_prefix@
 
71478
 top_builddir = @top_builddir@
 
71479
 top_srcdir = @top_srcdir@
 
71480
 modules_flags = -export_dynamic -avoid-version -module
 
71481
Index: totem-2.24.3/src/plugins/ontop/Makefile.in
 
71482
===================================================================
 
71483
--- totem-2.24.3.orig/src/plugins/ontop/Makefile.in     2008-10-26 15:40:49.000000000 +0100
 
71484
+++ totem-2.24.3/src/plugins/ontop/Makefile.in  2008-10-30 19:06:38.000000000 +0100
55006
71485
@@ -90,6 +90,8 @@
55007
71486
 AUTOHEADER = @AUTOHEADER@
55008
71487
 AUTOMAKE = @AUTOMAKE@
55012
71491
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
55013
71492
 BEMUSED_LIBS = @BEMUSED_LIBS@
55014
71493
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
55015
 
@@ -116,7 +118,8 @@
55016
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
71494
@@ -117,7 +119,7 @@
55017
71495
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
55018
71496
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
71497
 DSYMUTIL = @DSYMUTIL@
55019
71498
-ECHO = @ECHO@
55020
 
+DSYMUTIL = @DSYMUTIL@
55021
71499
+DUMPBIN = @DUMPBIN@
55022
71500
 ECHO_C = @ECHO_C@
55023
71501
 ECHO_N = @ECHO_N@
55024
71502
 ECHO_T = @ECHO_T@
55025
 
@@ -124,8 +127,7 @@
 
71503
@@ -125,8 +127,7 @@
55026
71504
 EXEEXT = @EXEEXT@
55027
71505
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
55028
71506
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
55032
71510
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
55033
71511
 GCONFTOOL = @GCONFTOOL@
55034
71512
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
55035
 
@@ -175,6 +177,7 @@
 
71513
@@ -176,6 +177,7 @@
55036
71514
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
55037
71515
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
55038
71516
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
55040
71518
 LDFLAGS = @LDFLAGS@
55041
71519
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
55042
71520
 LIBEPC_LIBS = @LIBEPC_LIBS@
55043
 
@@ -183,6 +186,7 @@
 
71521
@@ -184,6 +186,7 @@
55044
71522
 LIBOBJS = @LIBOBJS@
55045
71523
 LIBS = @LIBS@
55046
71524
 LIBTOOL = @LIBTOOL@
55048
71526
 LIRC_LIBS = @LIRC_LIBS@
55049
71527
 LN_S = @LN_S@
55050
71528
 LTLIBOBJS = @LTLIBOBJS@
55051
 
@@ -202,11 +206,15 @@
 
71529
@@ -203,12 +206,15 @@
55052
71530
 NAUTILUSDIR = @NAUTILUSDIR@
55053
71531
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
55054
71532
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
55055
71533
+NM = @NM@
55056
 
+NMEDIT = @NMEDIT@
 
71534
 NMEDIT = @NMEDIT@
55057
71535
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
55058
71536
 NVTV_CFLAGS = @NVTV_CFLAGS@
55059
71537
 NVTV_LIBS = @NVTV_LIBS@
55064
71542
 PACKAGE = @PACKAGE@
55065
71543
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
55066
71544
 PACKAGE_NAME = @PACKAGE_NAME@
55067
 
@@ -268,7 +276,7 @@
 
71545
@@ -270,7 +276,7 @@
55068
71546
 abs_top_srcdir = @abs_top_srcdir@
55069
71547
 ac_ct_CC = @ac_ct_CC@
55070
71548
 ac_ct_CXX = @ac_ct_CXX@
55073
71551
 am__include = @am__include@
55074
71552
 am__leading_dot = @am__leading_dot@
55075
71553
 am__quote = @am__quote@
55076
 
@@ -299,6 +307,7 @@
 
71554
@@ -301,6 +307,7 @@
55077
71555
 libexecdir = @libexecdir@
55078
71556
 localedir = @localedir@
55079
71557
 localstatedir = @localstatedir@
55081
71559
 mandir = @mandir@
55082
71560
 mkdir_p = @mkdir_p@
55083
71561
 oldincludedir = @oldincludedir@
55084
 
diff -Nurb totem-2.24.2/src/plugins/properties/Makefile.in totem-2.24.2.new/src/plugins/properties/Makefile.in
55085
 
--- totem-2.24.2/src/plugins/properties/Makefile.in     2008-10-07 16:18:58.000000000 +0200
55086
 
+++ totem-2.24.2.new/src/plugins/properties/Makefile.in 2008-10-08 15:16:18.000000000 +0200
 
71562
@@ -317,7 +324,6 @@
 
71563
 srcdir = @srcdir@
 
71564
 sysconfdir = @sysconfdir@
 
71565
 target_alias = @target_alias@
 
71566
-top_build_prefix = @top_build_prefix@
 
71567
 top_builddir = @top_builddir@
 
71568
 top_srcdir = @top_srcdir@
 
71569
 modules_flags = -export_dynamic -avoid-version -module
 
71570
Index: totem-2.24.3/src/plugins/properties/Makefile.in
 
71571
===================================================================
 
71572
--- totem-2.24.3.orig/src/plugins/properties/Makefile.in        2008-10-26 15:40:49.000000000 +0100
 
71573
+++ totem-2.24.3/src/plugins/properties/Makefile.in     2008-10-30 19:06:38.000000000 +0100
55087
71574
@@ -103,6 +103,8 @@
55088
71575
 AUTOHEADER = @AUTOHEADER@
55089
71576
 AUTOMAKE = @AUTOMAKE@
55093
71580
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
55094
71581
 BEMUSED_LIBS = @BEMUSED_LIBS@
55095
71582
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
55096
 
@@ -129,7 +131,8 @@
55097
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
71583
@@ -130,7 +132,7 @@
55098
71584
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
55099
71585
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
71586
 DSYMUTIL = @DSYMUTIL@
55100
71587
-ECHO = @ECHO@
55101
 
+DSYMUTIL = @DSYMUTIL@
55102
71588
+DUMPBIN = @DUMPBIN@
55103
71589
 ECHO_C = @ECHO_C@
55104
71590
 ECHO_N = @ECHO_N@
55105
71591
 ECHO_T = @ECHO_T@
55106
 
@@ -137,8 +140,7 @@
 
71592
@@ -138,8 +140,7 @@
55107
71593
 EXEEXT = @EXEEXT@
55108
71594
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
55109
71595
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
55113
71599
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
55114
71600
 GCONFTOOL = @GCONFTOOL@
55115
71601
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
55116
 
@@ -188,6 +190,7 @@
 
71602
@@ -189,6 +190,7 @@
55117
71603
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
55118
71604
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
55119
71605
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
55121
71607
 LDFLAGS = @LDFLAGS@
55122
71608
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
55123
71609
 LIBEPC_LIBS = @LIBEPC_LIBS@
55124
 
@@ -196,6 +199,7 @@
 
71610
@@ -197,6 +199,7 @@
55125
71611
 LIBOBJS = @LIBOBJS@
55126
71612
 LIBS = @LIBS@
55127
71613
 LIBTOOL = @LIBTOOL@
55129
71615
 LIRC_LIBS = @LIRC_LIBS@
55130
71616
 LN_S = @LN_S@
55131
71617
 LTLIBOBJS = @LTLIBOBJS@
55132
 
@@ -215,11 +219,15 @@
 
71618
@@ -216,12 +219,15 @@
55133
71619
 NAUTILUSDIR = @NAUTILUSDIR@
55134
71620
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
55135
71621
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
55136
71622
+NM = @NM@
55137
 
+NMEDIT = @NMEDIT@
 
71623
 NMEDIT = @NMEDIT@
55138
71624
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
55139
71625
 NVTV_CFLAGS = @NVTV_CFLAGS@
55140
71626
 NVTV_LIBS = @NVTV_LIBS@
55145
71631
 PACKAGE = @PACKAGE@
55146
71632
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
55147
71633
 PACKAGE_NAME = @PACKAGE_NAME@
55148
 
@@ -281,7 +289,7 @@
 
71634
@@ -283,7 +289,7 @@
55149
71635
 abs_top_srcdir = @abs_top_srcdir@
55150
71636
 ac_ct_CC = @ac_ct_CC@
55151
71637
 ac_ct_CXX = @ac_ct_CXX@
55154
71640
 am__include = @am__include@
55155
71641
 am__leading_dot = @am__leading_dot@
55156
71642
 am__quote = @am__quote@
55157
 
@@ -312,6 +320,7 @@
 
71643
@@ -314,6 +320,7 @@
55158
71644
 libexecdir = @libexecdir@
55159
71645
 localedir = @localedir@
55160
71646
 localstatedir = @localstatedir@
55162
71648
 mandir = @mandir@
55163
71649
 mkdir_p = @mkdir_p@
55164
71650
 oldincludedir = @oldincludedir@
55165
 
diff -Nurb totem-2.24.2/src/plugins/publish/Makefile.in totem-2.24.2.new/src/plugins/publish/Makefile.in
55166
 
--- totem-2.24.2/src/plugins/publish/Makefile.in        2008-10-07 16:18:58.000000000 +0200
55167
 
+++ totem-2.24.2.new/src/plugins/publish/Makefile.in    2008-10-08 15:16:19.000000000 +0200
 
71651
@@ -330,7 +337,6 @@
 
71652
 srcdir = @srcdir@
 
71653
 sysconfdir = @sysconfdir@
 
71654
 target_alias = @target_alias@
 
71655
-top_build_prefix = @top_build_prefix@
 
71656
 top_builddir = @top_builddir@
 
71657
 top_srcdir = @top_srcdir@
 
71658
 modules_flags = -export_dynamic -avoid-version -module
 
71659
Index: totem-2.24.3/src/plugins/publish/Makefile.in
 
71660
===================================================================
 
71661
--- totem-2.24.3.orig/src/plugins/publish/Makefile.in   2008-10-26 15:40:49.000000000 +0100
 
71662
+++ totem-2.24.3/src/plugins/publish/Makefile.in        2008-10-30 19:06:38.000000000 +0100
55168
71663
@@ -93,6 +93,8 @@
55169
71664
 AUTOHEADER = @AUTOHEADER@
55170
71665
 AUTOMAKE = @AUTOMAKE@
55174
71669
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
55175
71670
 BEMUSED_LIBS = @BEMUSED_LIBS@
55176
71671
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
55177
 
@@ -119,7 +121,8 @@
55178
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
71672
@@ -120,7 +122,7 @@
55179
71673
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
55180
71674
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
71675
 DSYMUTIL = @DSYMUTIL@
55181
71676
-ECHO = @ECHO@
55182
 
+DSYMUTIL = @DSYMUTIL@
55183
71677
+DUMPBIN = @DUMPBIN@
55184
71678
 ECHO_C = @ECHO_C@
55185
71679
 ECHO_N = @ECHO_N@
55186
71680
 ECHO_T = @ECHO_T@
55187
 
@@ -127,8 +130,7 @@
 
71681
@@ -128,8 +130,7 @@
55188
71682
 EXEEXT = @EXEEXT@
55189
71683
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
55190
71684
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
55194
71688
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
55195
71689
 GCONFTOOL = @GCONFTOOL@
55196
71690
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
55197
 
@@ -178,6 +180,7 @@
 
71691
@@ -179,6 +180,7 @@
55198
71692
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
55199
71693
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
55200
71694
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
55202
71696
 LDFLAGS = @LDFLAGS@
55203
71697
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
55204
71698
 LIBEPC_LIBS = @LIBEPC_LIBS@
55205
 
@@ -186,6 +189,7 @@
 
71699
@@ -187,6 +189,7 @@
55206
71700
 LIBOBJS = @LIBOBJS@
55207
71701
 LIBS = @LIBS@
55208
71702
 LIBTOOL = @LIBTOOL@
55210
71704
 LIRC_LIBS = @LIRC_LIBS@
55211
71705
 LN_S = @LN_S@
55212
71706
 LTLIBOBJS = @LTLIBOBJS@
55213
 
@@ -205,11 +209,15 @@
 
71707
@@ -206,12 +209,15 @@
55214
71708
 NAUTILUSDIR = @NAUTILUSDIR@
55215
71709
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
55216
71710
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
55217
71711
+NM = @NM@
55218
 
+NMEDIT = @NMEDIT@
 
71712
 NMEDIT = @NMEDIT@
55219
71713
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
55220
71714
 NVTV_CFLAGS = @NVTV_CFLAGS@
55221
71715
 NVTV_LIBS = @NVTV_LIBS@
55226
71720
 PACKAGE = @PACKAGE@
55227
71721
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
55228
71722
 PACKAGE_NAME = @PACKAGE_NAME@
55229
 
@@ -271,7 +279,7 @@
 
71723
@@ -273,7 +279,7 @@
55230
71724
 abs_top_srcdir = @abs_top_srcdir@
55231
71725
 ac_ct_CC = @ac_ct_CC@
55232
71726
 ac_ct_CXX = @ac_ct_CXX@
55235
71729
 am__include = @am__include@
55236
71730
 am__leading_dot = @am__leading_dot@
55237
71731
 am__quote = @am__quote@
55238
 
@@ -302,6 +310,7 @@
 
71732
@@ -304,6 +310,7 @@
55239
71733
 libexecdir = @libexecdir@
55240
71734
 localedir = @localedir@
55241
71735
 localstatedir = @localstatedir@
55243
71737
 mandir = @mandir@
55244
71738
 mkdir_p = @mkdir_p@
55245
71739
 oldincludedir = @oldincludedir@
55246
 
diff -Nurb totem-2.24.2/src/plugins/pythonconsole/Makefile.in totem-2.24.2.new/src/plugins/pythonconsole/Makefile.in
55247
 
--- totem-2.24.2/src/plugins/pythonconsole/Makefile.in  2008-10-07 16:18:58.000000000 +0200
55248
 
+++ totem-2.24.2.new/src/plugins/pythonconsole/Makefile.in      2008-10-08 15:16:19.000000000 +0200
 
71740
@@ -320,7 +327,6 @@
 
71741
 srcdir = @srcdir@
 
71742
 sysconfdir = @sysconfdir@
 
71743
 target_alias = @target_alias@
 
71744
-top_build_prefix = @top_build_prefix@
 
71745
 top_builddir = @top_builddir@
 
71746
 top_srcdir = @top_srcdir@
 
71747
 modules_flags = -export_dynamic -avoid-version -module
 
71748
Index: totem-2.24.3/src/plugins/pythonconsole/Makefile.in
 
71749
===================================================================
 
71750
--- totem-2.24.3.orig/src/plugins/pythonconsole/Makefile.in     2008-10-26 15:40:49.000000000 +0100
 
71751
+++ totem-2.24.3/src/plugins/pythonconsole/Makefile.in  2008-10-30 19:06:38.000000000 +0100
55249
71752
@@ -70,6 +70,8 @@
55250
71753
 AUTOHEADER = @AUTOHEADER@
55251
71754
 AUTOMAKE = @AUTOMAKE@
55255
71758
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
55256
71759
 BEMUSED_LIBS = @BEMUSED_LIBS@
55257
71760
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
55258
 
@@ -96,7 +98,8 @@
55259
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
71761
@@ -97,7 +99,7 @@
55260
71762
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
55261
71763
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
71764
 DSYMUTIL = @DSYMUTIL@
55262
71765
-ECHO = @ECHO@
55263
 
+DSYMUTIL = @DSYMUTIL@
55264
71766
+DUMPBIN = @DUMPBIN@
55265
71767
 ECHO_C = @ECHO_C@
55266
71768
 ECHO_N = @ECHO_N@
55267
71769
 ECHO_T = @ECHO_T@
55268
 
@@ -104,8 +107,7 @@
 
71770
@@ -105,8 +107,7 @@
55269
71771
 EXEEXT = @EXEEXT@
55270
71772
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
55271
71773
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
55275
71777
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
55276
71778
 GCONFTOOL = @GCONFTOOL@
55277
71779
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
55278
 
@@ -155,6 +157,7 @@
 
71780
@@ -156,6 +157,7 @@
55279
71781
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
55280
71782
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
55281
71783
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
55283
71785
 LDFLAGS = @LDFLAGS@
55284
71786
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
55285
71787
 LIBEPC_LIBS = @LIBEPC_LIBS@
55286
 
@@ -163,6 +166,7 @@
 
71788
@@ -164,6 +166,7 @@
55287
71789
 LIBOBJS = @LIBOBJS@
55288
71790
 LIBS = @LIBS@
55289
71791
 LIBTOOL = @LIBTOOL@
55291
71793
 LIRC_LIBS = @LIRC_LIBS@
55292
71794
 LN_S = @LN_S@
55293
71795
 LTLIBOBJS = @LTLIBOBJS@
55294
 
@@ -182,11 +186,15 @@
 
71796
@@ -183,12 +186,15 @@
55295
71797
 NAUTILUSDIR = @NAUTILUSDIR@
55296
71798
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
55297
71799
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
55298
71800
+NM = @NM@
55299
 
+NMEDIT = @NMEDIT@
 
71801
 NMEDIT = @NMEDIT@
55300
71802
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
55301
71803
 NVTV_CFLAGS = @NVTV_CFLAGS@
55302
71804
 NVTV_LIBS = @NVTV_LIBS@
55307
71809
 PACKAGE = @PACKAGE@
55308
71810
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
55309
71811
 PACKAGE_NAME = @PACKAGE_NAME@
55310
 
@@ -248,7 +256,7 @@
 
71812
@@ -250,7 +256,7 @@
55311
71813
 abs_top_srcdir = @abs_top_srcdir@
55312
71814
 ac_ct_CC = @ac_ct_CC@
55313
71815
 ac_ct_CXX = @ac_ct_CXX@
55316
71818
 am__include = @am__include@
55317
71819
 am__leading_dot = @am__leading_dot@
55318
71820
 am__quote = @am__quote@
55319
 
@@ -279,6 +287,7 @@
 
71821
@@ -281,6 +287,7 @@
55320
71822
 libexecdir = @libexecdir@
55321
71823
 localedir = @localedir@
55322
71824
 localstatedir = @localstatedir@
55324
71826
 mandir = @mandir@
55325
71827
 mkdir_p = @mkdir_p@
55326
71828
 oldincludedir = @oldincludedir@
55327
 
diff -Nurb totem-2.24.2/src/plugins/sample-python/Makefile.in totem-2.24.2.new/src/plugins/sample-python/Makefile.in
55328
 
--- totem-2.24.2/src/plugins/sample-python/Makefile.in  2008-10-07 16:18:58.000000000 +0200
55329
 
+++ totem-2.24.2.new/src/plugins/sample-python/Makefile.in      2008-10-08 15:16:19.000000000 +0200
 
71829
@@ -297,7 +304,6 @@
 
71830
 srcdir = @srcdir@
 
71831
 sysconfdir = @sysconfdir@
 
71832
 target_alias = @target_alias@
 
71833
-top_build_prefix = @top_build_prefix@
 
71834
 top_builddir = @top_builddir@
 
71835
 top_srcdir = @top_srcdir@
 
71836
 plugindir = $(PLUGINDIR)/pythonconsole
 
71837
Index: totem-2.24.3/src/plugins/sample-python/Makefile.in
 
71838
===================================================================
 
71839
--- totem-2.24.3.orig/src/plugins/sample-python/Makefile.in     2008-10-26 15:40:49.000000000 +0100
 
71840
+++ totem-2.24.3/src/plugins/sample-python/Makefile.in  2008-10-30 19:06:38.000000000 +0100
55330
71841
@@ -57,6 +57,8 @@
55331
71842
 AUTOHEADER = @AUTOHEADER@
55332
71843
 AUTOMAKE = @AUTOMAKE@
55336
71847
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
55337
71848
 BEMUSED_LIBS = @BEMUSED_LIBS@
55338
71849
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
55339
 
@@ -83,7 +85,8 @@
55340
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
71850
@@ -84,7 +86,7 @@
55341
71851
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
55342
71852
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
71853
 DSYMUTIL = @DSYMUTIL@
55343
71854
-ECHO = @ECHO@
55344
 
+DSYMUTIL = @DSYMUTIL@
55345
71855
+DUMPBIN = @DUMPBIN@
55346
71856
 ECHO_C = @ECHO_C@
55347
71857
 ECHO_N = @ECHO_N@
55348
71858
 ECHO_T = @ECHO_T@
55349
 
@@ -91,8 +94,7 @@
 
71859
@@ -92,8 +94,7 @@
55350
71860
 EXEEXT = @EXEEXT@
55351
71861
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
55352
71862
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
55356
71866
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
55357
71867
 GCONFTOOL = @GCONFTOOL@
55358
71868
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
55359
 
@@ -142,6 +144,7 @@
 
71869
@@ -143,6 +144,7 @@
55360
71870
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
55361
71871
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
55362
71872
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
55364
71874
 LDFLAGS = @LDFLAGS@
55365
71875
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
55366
71876
 LIBEPC_LIBS = @LIBEPC_LIBS@
55367
 
@@ -150,6 +153,7 @@
 
71877
@@ -151,6 +153,7 @@
55368
71878
 LIBOBJS = @LIBOBJS@
55369
71879
 LIBS = @LIBS@
55370
71880
 LIBTOOL = @LIBTOOL@
55372
71882
 LIRC_LIBS = @LIRC_LIBS@
55373
71883
 LN_S = @LN_S@
55374
71884
 LTLIBOBJS = @LTLIBOBJS@
55375
 
@@ -169,11 +173,15 @@
 
71885
@@ -170,12 +173,15 @@
55376
71886
 NAUTILUSDIR = @NAUTILUSDIR@
55377
71887
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
55378
71888
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
55379
71889
+NM = @NM@
55380
 
+NMEDIT = @NMEDIT@
 
71890
 NMEDIT = @NMEDIT@
55381
71891
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
55382
71892
 NVTV_CFLAGS = @NVTV_CFLAGS@
55383
71893
 NVTV_LIBS = @NVTV_LIBS@
55388
71898
 PACKAGE = @PACKAGE@
55389
71899
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
55390
71900
 PACKAGE_NAME = @PACKAGE_NAME@
55391
 
@@ -235,7 +243,7 @@
 
71901
@@ -237,7 +243,7 @@
55392
71902
 abs_top_srcdir = @abs_top_srcdir@
55393
71903
 ac_ct_CC = @ac_ct_CC@
55394
71904
 ac_ct_CXX = @ac_ct_CXX@
55397
71907
 am__include = @am__include@
55398
71908
 am__leading_dot = @am__leading_dot@
55399
71909
 am__quote = @am__quote@
55400
 
@@ -266,6 +274,7 @@
 
71910
@@ -268,6 +274,7 @@
55401
71911
 libexecdir = @libexecdir@
55402
71912
 localedir = @localedir@
55403
71913
 localstatedir = @localstatedir@
55405
71915
 mandir = @mandir@
55406
71916
 mkdir_p = @mkdir_p@
55407
71917
 oldincludedir = @oldincludedir@
55408
 
diff -Nurb totem-2.24.2/src/plugins/sample-vala/Makefile.in totem-2.24.2.new/src/plugins/sample-vala/Makefile.in
55409
 
--- totem-2.24.2/src/plugins/sample-vala/Makefile.in    2008-10-07 16:18:58.000000000 +0200
55410
 
+++ totem-2.24.2.new/src/plugins/sample-vala/Makefile.in        2008-10-08 15:16:19.000000000 +0200
 
71918
@@ -284,7 +291,6 @@
 
71919
 srcdir = @srcdir@
 
71920
 sysconfdir = @sysconfdir@
 
71921
 target_alias = @target_alias@
 
71922
-top_build_prefix = @top_build_prefix@
 
71923
 top_builddir = @top_builddir@
 
71924
 top_srcdir = @top_srcdir@
 
71925
 plugindir = $(PLUGINDIR)/sample-python
 
71926
Index: totem-2.24.3/src/plugins/sample-vala/Makefile.in
 
71927
===================================================================
 
71928
--- totem-2.24.3.orig/src/plugins/sample-vala/Makefile.in       2008-10-26 15:40:50.000000000 +0100
 
71929
+++ totem-2.24.3/src/plugins/sample-vala/Makefile.in    2008-10-30 19:06:38.000000000 +0100
55411
71930
@@ -93,6 +93,8 @@
55412
71931
 AUTOHEADER = @AUTOHEADER@
55413
71932
 AUTOMAKE = @AUTOMAKE@
55417
71936
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
55418
71937
 BEMUSED_LIBS = @BEMUSED_LIBS@
55419
71938
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
55420
 
@@ -119,7 +121,8 @@
55421
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
71939
@@ -120,7 +122,7 @@
55422
71940
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
55423
71941
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
71942
 DSYMUTIL = @DSYMUTIL@
55424
71943
-ECHO = @ECHO@
55425
 
+DSYMUTIL = @DSYMUTIL@
55426
71944
+DUMPBIN = @DUMPBIN@
55427
71945
 ECHO_C = @ECHO_C@
55428
71946
 ECHO_N = @ECHO_N@
55429
71947
 ECHO_T = @ECHO_T@
55430
 
@@ -127,8 +130,7 @@
 
71948
@@ -128,8 +130,7 @@
55431
71949
 EXEEXT = @EXEEXT@
55432
71950
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
55433
71951
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
55437
71955
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
55438
71956
 GCONFTOOL = @GCONFTOOL@
55439
71957
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
55440
 
@@ -178,6 +180,7 @@
 
71958
@@ -179,6 +180,7 @@
55441
71959
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
55442
71960
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
55443
71961
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
55445
71963
 LDFLAGS = @LDFLAGS@
55446
71964
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
55447
71965
 LIBEPC_LIBS = @LIBEPC_LIBS@
55448
 
@@ -186,6 +189,7 @@
 
71966
@@ -187,6 +189,7 @@
55449
71967
 LIBOBJS = @LIBOBJS@
55450
71968
 LIBS = @LIBS@
55451
71969
 LIBTOOL = @LIBTOOL@
55453
71971
 LIRC_LIBS = @LIRC_LIBS@
55454
71972
 LN_S = @LN_S@
55455
71973
 LTLIBOBJS = @LTLIBOBJS@
55456
 
@@ -205,11 +209,15 @@
 
71974
@@ -206,12 +209,15 @@
55457
71975
 NAUTILUSDIR = @NAUTILUSDIR@
55458
71976
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
55459
71977
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
55460
71978
+NM = @NM@
55461
 
+NMEDIT = @NMEDIT@
 
71979
 NMEDIT = @NMEDIT@
55462
71980
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
55463
71981
 NVTV_CFLAGS = @NVTV_CFLAGS@
55464
71982
 NVTV_LIBS = @NVTV_LIBS@
55469
71987
 PACKAGE = @PACKAGE@
55470
71988
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
55471
71989
 PACKAGE_NAME = @PACKAGE_NAME@
55472
 
@@ -271,7 +279,7 @@
 
71990
@@ -273,7 +279,7 @@
55473
71991
 abs_top_srcdir = @abs_top_srcdir@
55474
71992
 ac_ct_CC = @ac_ct_CC@
55475
71993
 ac_ct_CXX = @ac_ct_CXX@
55478
71996
 am__include = @am__include@
55479
71997
 am__leading_dot = @am__leading_dot@
55480
71998
 am__quote = @am__quote@
55481
 
@@ -302,6 +310,7 @@
 
71999
@@ -304,6 +310,7 @@
55482
72000
 libexecdir = @libexecdir@
55483
72001
 localedir = @localedir@
55484
72002
 localstatedir = @localstatedir@
55486
72004
 mandir = @mandir@
55487
72005
 mkdir_p = @mkdir_p@
55488
72006
 oldincludedir = @oldincludedir@
55489
 
diff -Nurb totem-2.24.2/src/plugins/screensaver/Makefile.in totem-2.24.2.new/src/plugins/screensaver/Makefile.in
55490
 
--- totem-2.24.2/src/plugins/screensaver/Makefile.in    2008-10-07 16:18:58.000000000 +0200
55491
 
+++ totem-2.24.2.new/src/plugins/screensaver/Makefile.in        2008-10-08 15:16:19.000000000 +0200
 
72007
@@ -320,7 +327,6 @@
 
72008
 srcdir = @srcdir@
 
72009
 sysconfdir = @sysconfdir@
 
72010
 target_alias = @target_alias@
 
72011
-top_build_prefix = @top_build_prefix@
 
72012
 top_builddir = @top_builddir@
 
72013
 top_srcdir = @top_srcdir@
 
72014
 BUILT_SOURCES = totem-sample-vala-plugin.c totem-sample-vala-plugin.h
 
72015
Index: totem-2.24.3/src/plugins/screensaver/Makefile.in
 
72016
===================================================================
 
72017
--- totem-2.24.3.orig/src/plugins/screensaver/Makefile.in       2008-10-26 15:40:50.000000000 +0100
 
72018
+++ totem-2.24.3/src/plugins/screensaver/Makefile.in    2008-10-30 19:06:38.000000000 +0100
55492
72019
@@ -92,6 +92,8 @@
55493
72020
 AUTOHEADER = @AUTOHEADER@
55494
72021
 AUTOMAKE = @AUTOMAKE@
55498
72025
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
55499
72026
 BEMUSED_LIBS = @BEMUSED_LIBS@
55500
72027
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
55501
 
@@ -118,7 +120,8 @@
55502
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
72028
@@ -119,7 +121,7 @@
55503
72029
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
55504
72030
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
72031
 DSYMUTIL = @DSYMUTIL@
55505
72032
-ECHO = @ECHO@
55506
 
+DSYMUTIL = @DSYMUTIL@
55507
72033
+DUMPBIN = @DUMPBIN@
55508
72034
 ECHO_C = @ECHO_C@
55509
72035
 ECHO_N = @ECHO_N@
55510
72036
 ECHO_T = @ECHO_T@
55511
 
@@ -126,8 +129,7 @@
 
72037
@@ -127,8 +129,7 @@
55512
72038
 EXEEXT = @EXEEXT@
55513
72039
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
55514
72040
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
55518
72044
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
55519
72045
 GCONFTOOL = @GCONFTOOL@
55520
72046
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
55521
 
@@ -177,6 +179,7 @@
 
72047
@@ -178,6 +179,7 @@
55522
72048
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
55523
72049
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
55524
72050
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
55526
72052
 LDFLAGS = @LDFLAGS@
55527
72053
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
55528
72054
 LIBEPC_LIBS = @LIBEPC_LIBS@
55529
 
@@ -185,6 +188,7 @@
 
72055
@@ -186,6 +188,7 @@
55530
72056
 LIBOBJS = @LIBOBJS@
55531
72057
 LIBS = @LIBS@
55532
72058
 LIBTOOL = @LIBTOOL@
55534
72060
 LIRC_LIBS = @LIRC_LIBS@
55535
72061
 LN_S = @LN_S@
55536
72062
 LTLIBOBJS = @LTLIBOBJS@
55537
 
@@ -204,11 +208,15 @@
 
72063
@@ -205,12 +208,15 @@
55538
72064
 NAUTILUSDIR = @NAUTILUSDIR@
55539
72065
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
55540
72066
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
55541
72067
+NM = @NM@
55542
 
+NMEDIT = @NMEDIT@
 
72068
 NMEDIT = @NMEDIT@
55543
72069
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
55544
72070
 NVTV_CFLAGS = @NVTV_CFLAGS@
55545
72071
 NVTV_LIBS = @NVTV_LIBS@
55550
72076
 PACKAGE = @PACKAGE@
55551
72077
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
55552
72078
 PACKAGE_NAME = @PACKAGE_NAME@
55553
 
@@ -270,7 +278,7 @@
 
72079
@@ -272,7 +278,7 @@
55554
72080
 abs_top_srcdir = @abs_top_srcdir@
55555
72081
 ac_ct_CC = @ac_ct_CC@
55556
72082
 ac_ct_CXX = @ac_ct_CXX@
55559
72085
 am__include = @am__include@
55560
72086
 am__leading_dot = @am__leading_dot@
55561
72087
 am__quote = @am__quote@
55562
 
@@ -301,6 +309,7 @@
 
72088
@@ -303,6 +309,7 @@
55563
72089
 libexecdir = @libexecdir@
55564
72090
 localedir = @localedir@
55565
72091
 localstatedir = @localstatedir@
55567
72093
 mandir = @mandir@
55568
72094
 mkdir_p = @mkdir_p@
55569
72095
 oldincludedir = @oldincludedir@
55570
 
diff -Nurb totem-2.24.2/src/plugins/sidebar-test/Makefile.in totem-2.24.2.new/src/plugins/sidebar-test/Makefile.in
55571
 
--- totem-2.24.2/src/plugins/sidebar-test/Makefile.in   2008-10-07 16:18:59.000000000 +0200
55572
 
+++ totem-2.24.2.new/src/plugins/sidebar-test/Makefile.in       2008-10-08 15:16:19.000000000 +0200
 
72096
@@ -319,7 +326,6 @@
 
72097
 srcdir = @srcdir@
 
72098
 sysconfdir = @sysconfdir@
 
72099
 target_alias = @target_alias@
 
72100
-top_build_prefix = @top_build_prefix@
 
72101
 top_builddir = @top_builddir@
 
72102
 top_srcdir = @top_srcdir@
 
72103
 modules_flags = -export_dynamic -avoid-version -module
 
72104
Index: totem-2.24.3/src/plugins/sidebar-test/Makefile.in
 
72105
===================================================================
 
72106
--- totem-2.24.3.orig/src/plugins/sidebar-test/Makefile.in      2008-10-26 15:40:50.000000000 +0100
 
72107
+++ totem-2.24.3/src/plugins/sidebar-test/Makefile.in   2008-10-30 19:06:38.000000000 +0100
55573
72108
@@ -91,6 +91,8 @@
55574
72109
 AUTOHEADER = @AUTOHEADER@
55575
72110
 AUTOMAKE = @AUTOMAKE@
55579
72114
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
55580
72115
 BEMUSED_LIBS = @BEMUSED_LIBS@
55581
72116
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
55582
 
@@ -117,7 +119,8 @@
55583
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
72117
@@ -118,7 +120,7 @@
55584
72118
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
55585
72119
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
72120
 DSYMUTIL = @DSYMUTIL@
55586
72121
-ECHO = @ECHO@
55587
 
+DSYMUTIL = @DSYMUTIL@
55588
72122
+DUMPBIN = @DUMPBIN@
55589
72123
 ECHO_C = @ECHO_C@
55590
72124
 ECHO_N = @ECHO_N@
55591
72125
 ECHO_T = @ECHO_T@
55592
 
@@ -125,8 +128,7 @@
 
72126
@@ -126,8 +128,7 @@
55593
72127
 EXEEXT = @EXEEXT@
55594
72128
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
55595
72129
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
55599
72133
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
55600
72134
 GCONFTOOL = @GCONFTOOL@
55601
72135
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
55602
 
@@ -176,6 +178,7 @@
 
72136
@@ -177,6 +178,7 @@
55603
72137
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
55604
72138
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
55605
72139
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
55607
72141
 LDFLAGS = @LDFLAGS@
55608
72142
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
55609
72143
 LIBEPC_LIBS = @LIBEPC_LIBS@
55610
 
@@ -184,6 +187,7 @@
 
72144
@@ -185,6 +187,7 @@
55611
72145
 LIBOBJS = @LIBOBJS@
55612
72146
 LIBS = @LIBS@
55613
72147
 LIBTOOL = @LIBTOOL@
55615
72149
 LIRC_LIBS = @LIRC_LIBS@
55616
72150
 LN_S = @LN_S@
55617
72151
 LTLIBOBJS = @LTLIBOBJS@
55618
 
@@ -203,11 +207,15 @@
 
72152
@@ -204,12 +207,15 @@
55619
72153
 NAUTILUSDIR = @NAUTILUSDIR@
55620
72154
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
55621
72155
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
55622
72156
+NM = @NM@
55623
 
+NMEDIT = @NMEDIT@
 
72157
 NMEDIT = @NMEDIT@
55624
72158
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
55625
72159
 NVTV_CFLAGS = @NVTV_CFLAGS@
55626
72160
 NVTV_LIBS = @NVTV_LIBS@
55631
72165
 PACKAGE = @PACKAGE@
55632
72166
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
55633
72167
 PACKAGE_NAME = @PACKAGE_NAME@
55634
 
@@ -269,7 +277,7 @@
 
72168
@@ -271,7 +277,7 @@
55635
72169
 abs_top_srcdir = @abs_top_srcdir@
55636
72170
 ac_ct_CC = @ac_ct_CC@
55637
72171
 ac_ct_CXX = @ac_ct_CXX@
55640
72174
 am__include = @am__include@
55641
72175
 am__leading_dot = @am__leading_dot@
55642
72176
 am__quote = @am__quote@
55643
 
@@ -300,6 +308,7 @@
 
72177
@@ -302,6 +308,7 @@
55644
72178
 libexecdir = @libexecdir@
55645
72179
 localedir = @localedir@
55646
72180
 localstatedir = @localstatedir@
55648
72182
 mandir = @mandir@
55649
72183
 mkdir_p = @mkdir_p@
55650
72184
 oldincludedir = @oldincludedir@
55651
 
diff -Nurb totem-2.24.2/src/plugins/skipto/Makefile.in totem-2.24.2.new/src/plugins/skipto/Makefile.in
55652
 
--- totem-2.24.2/src/plugins/skipto/Makefile.in 2008-10-07 16:18:59.000000000 +0200
55653
 
+++ totem-2.24.2.new/src/plugins/skipto/Makefile.in     2008-10-08 15:16:19.000000000 +0200
 
72185
@@ -318,7 +325,6 @@
 
72186
 srcdir = @srcdir@
 
72187
 sysconfdir = @sysconfdir@
 
72188
 target_alias = @target_alias@
 
72189
-top_build_prefix = @top_build_prefix@
 
72190
 top_builddir = @top_builddir@
 
72191
 top_srcdir = @top_srcdir@
 
72192
 modules_flags = -export_dynamic -avoid-version -module
 
72193
Index: totem-2.24.3/src/plugins/skipto/Makefile.in
 
72194
===================================================================
 
72195
--- totem-2.24.3.orig/src/plugins/skipto/Makefile.in    2008-10-26 15:40:50.000000000 +0100
 
72196
+++ totem-2.24.3/src/plugins/skipto/Makefile.in 2008-10-30 19:06:38.000000000 +0100
55654
72197
@@ -93,6 +93,8 @@
55655
72198
 AUTOHEADER = @AUTOHEADER@
55656
72199
 AUTOMAKE = @AUTOMAKE@
55660
72203
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
55661
72204
 BEMUSED_LIBS = @BEMUSED_LIBS@
55662
72205
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
55663
 
@@ -119,7 +121,8 @@
55664
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
72206
@@ -120,7 +122,7 @@
55665
72207
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
55666
72208
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
72209
 DSYMUTIL = @DSYMUTIL@
55667
72210
-ECHO = @ECHO@
55668
 
+DSYMUTIL = @DSYMUTIL@
55669
72211
+DUMPBIN = @DUMPBIN@
55670
72212
 ECHO_C = @ECHO_C@
55671
72213
 ECHO_N = @ECHO_N@
55672
72214
 ECHO_T = @ECHO_T@
55673
 
@@ -127,8 +130,7 @@
 
72215
@@ -128,8 +130,7 @@
55674
72216
 EXEEXT = @EXEEXT@
55675
72217
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
55676
72218
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
55680
72222
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
55681
72223
 GCONFTOOL = @GCONFTOOL@
55682
72224
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
55683
 
@@ -178,6 +180,7 @@
 
72225
@@ -179,6 +180,7 @@
55684
72226
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
55685
72227
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
55686
72228
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
55688
72230
 LDFLAGS = @LDFLAGS@
55689
72231
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
55690
72232
 LIBEPC_LIBS = @LIBEPC_LIBS@
55691
 
@@ -186,6 +189,7 @@
 
72233
@@ -187,6 +189,7 @@
55692
72234
 LIBOBJS = @LIBOBJS@
55693
72235
 LIBS = @LIBS@
55694
72236
 LIBTOOL = @LIBTOOL@
55696
72238
 LIRC_LIBS = @LIRC_LIBS@
55697
72239
 LN_S = @LN_S@
55698
72240
 LTLIBOBJS = @LTLIBOBJS@
55699
 
@@ -205,11 +209,15 @@
 
72241
@@ -206,12 +209,15 @@
55700
72242
 NAUTILUSDIR = @NAUTILUSDIR@
55701
72243
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
55702
72244
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
55703
72245
+NM = @NM@
55704
 
+NMEDIT = @NMEDIT@
 
72246
 NMEDIT = @NMEDIT@
55705
72247
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
55706
72248
 NVTV_CFLAGS = @NVTV_CFLAGS@
55707
72249
 NVTV_LIBS = @NVTV_LIBS@
55712
72254
 PACKAGE = @PACKAGE@
55713
72255
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
55714
72256
 PACKAGE_NAME = @PACKAGE_NAME@
55715
 
@@ -271,7 +279,7 @@
 
72257
@@ -273,7 +279,7 @@
55716
72258
 abs_top_srcdir = @abs_top_srcdir@
55717
72259
 ac_ct_CC = @ac_ct_CC@
55718
72260
 ac_ct_CXX = @ac_ct_CXX@
55721
72263
 am__include = @am__include@
55722
72264
 am__leading_dot = @am__leading_dot@
55723
72265
 am__quote = @am__quote@
55724
 
@@ -302,6 +310,7 @@
 
72266
@@ -304,6 +310,7 @@
55725
72267
 libexecdir = @libexecdir@
55726
72268
 localedir = @localedir@
55727
72269
 localstatedir = @localstatedir@
55729
72271
 mandir = @mandir@
55730
72272
 mkdir_p = @mkdir_p@
55731
72273
 oldincludedir = @oldincludedir@
55732
 
diff -Nurb totem-2.24.2/src/plugins/thumbnail/Makefile.in totem-2.24.2.new/src/plugins/thumbnail/Makefile.in
55733
 
--- totem-2.24.2/src/plugins/thumbnail/Makefile.in      2008-10-07 16:18:59.000000000 +0200
55734
 
+++ totem-2.24.2.new/src/plugins/thumbnail/Makefile.in  2008-10-08 15:16:20.000000000 +0200
 
72274
@@ -320,7 +327,6 @@
 
72275
 srcdir = @srcdir@
 
72276
 sysconfdir = @sysconfdir@
 
72277
 target_alias = @target_alias@
 
72278
-top_build_prefix = @top_build_prefix@
 
72279
 top_builddir = @top_builddir@
 
72280
 top_srcdir = @top_srcdir@
 
72281
 modules_flags = -export_dynamic -avoid-version -module
 
72282
Index: totem-2.24.3/src/plugins/thumbnail/Makefile.in
 
72283
===================================================================
 
72284
--- totem-2.24.3.orig/src/plugins/thumbnail/Makefile.in 2008-10-26 15:40:50.000000000 +0100
 
72285
+++ totem-2.24.3/src/plugins/thumbnail/Makefile.in      2008-10-30 19:06:38.000000000 +0100
55735
72286
@@ -90,6 +90,8 @@
55736
72287
 AUTOHEADER = @AUTOHEADER@
55737
72288
 AUTOMAKE = @AUTOMAKE@
55741
72292
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
55742
72293
 BEMUSED_LIBS = @BEMUSED_LIBS@
55743
72294
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
55744
 
@@ -116,7 +118,8 @@
55745
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
72295
@@ -117,7 +119,7 @@
55746
72296
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
55747
72297
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
72298
 DSYMUTIL = @DSYMUTIL@
55748
72299
-ECHO = @ECHO@
55749
 
+DSYMUTIL = @DSYMUTIL@
55750
72300
+DUMPBIN = @DUMPBIN@
55751
72301
 ECHO_C = @ECHO_C@
55752
72302
 ECHO_N = @ECHO_N@
55753
72303
 ECHO_T = @ECHO_T@
55754
 
@@ -124,8 +127,7 @@
 
72304
@@ -125,8 +127,7 @@
55755
72305
 EXEEXT = @EXEEXT@
55756
72306
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
55757
72307
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
55761
72311
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
55762
72312
 GCONFTOOL = @GCONFTOOL@
55763
72313
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
55764
 
@@ -175,6 +177,7 @@
 
72314
@@ -176,6 +177,7 @@
55765
72315
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
55766
72316
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
55767
72317
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
55769
72319
 LDFLAGS = @LDFLAGS@
55770
72320
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
55771
72321
 LIBEPC_LIBS = @LIBEPC_LIBS@
55772
 
@@ -183,6 +186,7 @@
 
72322
@@ -184,6 +186,7 @@
55773
72323
 LIBOBJS = @LIBOBJS@
55774
72324
 LIBS = @LIBS@
55775
72325
 LIBTOOL = @LIBTOOL@
55777
72327
 LIRC_LIBS = @LIRC_LIBS@
55778
72328
 LN_S = @LN_S@
55779
72329
 LTLIBOBJS = @LTLIBOBJS@
55780
 
@@ -202,11 +206,15 @@
 
72330
@@ -203,12 +206,15 @@
55781
72331
 NAUTILUSDIR = @NAUTILUSDIR@
55782
72332
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
55783
72333
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
55784
72334
+NM = @NM@
55785
 
+NMEDIT = @NMEDIT@
 
72335
 NMEDIT = @NMEDIT@
55786
72336
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
55787
72337
 NVTV_CFLAGS = @NVTV_CFLAGS@
55788
72338
 NVTV_LIBS = @NVTV_LIBS@
55793
72343
 PACKAGE = @PACKAGE@
55794
72344
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
55795
72345
 PACKAGE_NAME = @PACKAGE_NAME@
55796
 
@@ -268,7 +276,7 @@
 
72346
@@ -270,7 +276,7 @@
55797
72347
 abs_top_srcdir = @abs_top_srcdir@
55798
72348
 ac_ct_CC = @ac_ct_CC@
55799
72349
 ac_ct_CXX = @ac_ct_CXX@
55802
72352
 am__include = @am__include@
55803
72353
 am__leading_dot = @am__leading_dot@
55804
72354
 am__quote = @am__quote@
55805
 
@@ -299,6 +307,7 @@
 
72355
@@ -301,6 +307,7 @@
55806
72356
 libexecdir = @libexecdir@
55807
72357
 localedir = @localedir@
55808
72358
 localstatedir = @localstatedir@
55810
72360
 mandir = @mandir@
55811
72361
 mkdir_p = @mkdir_p@
55812
72362
 oldincludedir = @oldincludedir@
55813
 
diff -Nurb totem-2.24.2/src/plugins/totem/Makefile.in totem-2.24.2.new/src/plugins/totem/Makefile.in
55814
 
--- totem-2.24.2/src/plugins/totem/Makefile.in  2008-10-07 16:18:59.000000000 +0200
55815
 
+++ totem-2.24.2.new/src/plugins/totem/Makefile.in      2008-10-08 15:16:20.000000000 +0200
 
72363
@@ -317,7 +324,6 @@
 
72364
 srcdir = @srcdir@
 
72365
 sysconfdir = @sysconfdir@
 
72366
 target_alias = @target_alias@
 
72367
-top_build_prefix = @top_build_prefix@
 
72368
 top_builddir = @top_builddir@
 
72369
 top_srcdir = @top_srcdir@
 
72370
 modules_flags = -export_dynamic -avoid-version -module
 
72371
Index: totem-2.24.3/src/plugins/totem/Makefile.in
 
72372
===================================================================
 
72373
--- totem-2.24.3.orig/src/plugins/totem/Makefile.in     2008-10-26 15:40:51.000000000 +0100
 
72374
+++ totem-2.24.3/src/plugins/totem/Makefile.in  2008-10-30 19:06:39.000000000 +0100
55816
72375
@@ -67,6 +67,8 @@
55817
72376
 AUTOHEADER = @AUTOHEADER@
55818
72377
 AUTOMAKE = @AUTOMAKE@
55822
72381
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
55823
72382
 BEMUSED_LIBS = @BEMUSED_LIBS@
55824
72383
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
55825
 
@@ -93,7 +95,8 @@
55826
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
72384
@@ -94,7 +96,7 @@
55827
72385
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
55828
72386
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
72387
 DSYMUTIL = @DSYMUTIL@
55829
72388
-ECHO = @ECHO@
55830
 
+DSYMUTIL = @DSYMUTIL@
55831
72389
+DUMPBIN = @DUMPBIN@
55832
72390
 ECHO_C = @ECHO_C@
55833
72391
 ECHO_N = @ECHO_N@
55834
72392
 ECHO_T = @ECHO_T@
55835
 
@@ -101,8 +104,7 @@
 
72393
@@ -102,8 +104,7 @@
55836
72394
 EXEEXT = @EXEEXT@
55837
72395
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
55838
72396
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
55842
72400
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
55843
72401
 GCONFTOOL = @GCONFTOOL@
55844
72402
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
55845
 
@@ -152,6 +154,7 @@
 
72403
@@ -153,6 +154,7 @@
55846
72404
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
55847
72405
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
55848
72406
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
55850
72408
 LDFLAGS = @LDFLAGS@
55851
72409
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
55852
72410
 LIBEPC_LIBS = @LIBEPC_LIBS@
55853
 
@@ -160,6 +163,7 @@
 
72411
@@ -161,6 +163,7 @@
55854
72412
 LIBOBJS = @LIBOBJS@
55855
72413
 LIBS = @LIBS@
55856
72414
 LIBTOOL = @LIBTOOL@
55858
72416
 LIRC_LIBS = @LIRC_LIBS@
55859
72417
 LN_S = @LN_S@
55860
72418
 LTLIBOBJS = @LTLIBOBJS@
55861
 
@@ -179,11 +183,15 @@
 
72419
@@ -180,12 +183,15 @@
55862
72420
 NAUTILUSDIR = @NAUTILUSDIR@
55863
72421
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
55864
72422
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
55865
72423
+NM = @NM@
55866
 
+NMEDIT = @NMEDIT@
 
72424
 NMEDIT = @NMEDIT@
55867
72425
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
55868
72426
 NVTV_CFLAGS = @NVTV_CFLAGS@
55869
72427
 NVTV_LIBS = @NVTV_LIBS@
55874
72432
 PACKAGE = @PACKAGE@
55875
72433
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
55876
72434
 PACKAGE_NAME = @PACKAGE_NAME@
55877
 
@@ -245,7 +253,7 @@
 
72435
@@ -247,7 +253,7 @@
55878
72436
 abs_top_srcdir = @abs_top_srcdir@
55879
72437
 ac_ct_CC = @ac_ct_CC@
55880
72438
 ac_ct_CXX = @ac_ct_CXX@
55883
72441
 am__include = @am__include@
55884
72442
 am__leading_dot = @am__leading_dot@
55885
72443
 am__quote = @am__quote@
55886
 
@@ -276,6 +284,7 @@
 
72444
@@ -278,6 +284,7 @@
55887
72445
 libexecdir = @libexecdir@
55888
72446
 localedir = @localedir@
55889
72447
 localstatedir = @localstatedir@
55891
72449
 mandir = @mandir@
55892
72450
 mkdir_p = @mkdir_p@
55893
72451
 oldincludedir = @oldincludedir@
55894
 
diff -Nurb totem-2.24.2/src/plugins/tracker/Makefile.in totem-2.24.2.new/src/plugins/tracker/Makefile.in
55895
 
--- totem-2.24.2/src/plugins/tracker/Makefile.in        2008-10-07 16:18:59.000000000 +0200
55896
 
+++ totem-2.24.2.new/src/plugins/tracker/Makefile.in    2008-10-08 15:16:20.000000000 +0200
 
72452
@@ -294,7 +301,6 @@
 
72453
 srcdir = @srcdir@
 
72454
 sysconfdir = @sysconfdir@
 
72455
 target_alias = @target_alias@
 
72456
-top_build_prefix = @top_build_prefix@
 
72457
 top_builddir = @top_builddir@
 
72458
 top_srcdir = @top_srcdir@
 
72459
 plugindir = $(PLUGINDIR)/totem
 
72460
Index: totem-2.24.3/src/plugins/tracker/Makefile.in
 
72461
===================================================================
 
72462
--- totem-2.24.3.orig/src/plugins/tracker/Makefile.in   2008-10-26 15:40:51.000000000 +0100
 
72463
+++ totem-2.24.3/src/plugins/tracker/Makefile.in        2008-10-30 19:06:39.000000000 +0100
55897
72464
@@ -92,6 +92,8 @@
55898
72465
 AUTOHEADER = @AUTOHEADER@
55899
72466
 AUTOMAKE = @AUTOMAKE@
55903
72470
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
55904
72471
 BEMUSED_LIBS = @BEMUSED_LIBS@
55905
72472
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
55906
 
@@ -118,7 +120,8 @@
55907
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
72473
@@ -119,7 +121,7 @@
55908
72474
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
55909
72475
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
72476
 DSYMUTIL = @DSYMUTIL@
55910
72477
-ECHO = @ECHO@
55911
 
+DSYMUTIL = @DSYMUTIL@
55912
72478
+DUMPBIN = @DUMPBIN@
55913
72479
 ECHO_C = @ECHO_C@
55914
72480
 ECHO_N = @ECHO_N@
55915
72481
 ECHO_T = @ECHO_T@
55916
 
@@ -126,8 +129,7 @@
 
72482
@@ -127,8 +129,7 @@
55917
72483
 EXEEXT = @EXEEXT@
55918
72484
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
55919
72485
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
55923
72489
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
55924
72490
 GCONFTOOL = @GCONFTOOL@
55925
72491
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
55926
 
@@ -177,6 +179,7 @@
 
72492
@@ -178,6 +179,7 @@
55927
72493
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
55928
72494
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
55929
72495
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
55931
72497
 LDFLAGS = @LDFLAGS@
55932
72498
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
55933
72499
 LIBEPC_LIBS = @LIBEPC_LIBS@
55934
 
@@ -185,6 +188,7 @@
 
72500
@@ -186,6 +188,7 @@
55935
72501
 LIBOBJS = @LIBOBJS@
55936
72502
 LIBS = @LIBS@
55937
72503
 LIBTOOL = @LIBTOOL@
55939
72505
 LIRC_LIBS = @LIRC_LIBS@
55940
72506
 LN_S = @LN_S@
55941
72507
 LTLIBOBJS = @LTLIBOBJS@
55942
 
@@ -204,11 +208,15 @@
 
72508
@@ -205,12 +208,15 @@
55943
72509
 NAUTILUSDIR = @NAUTILUSDIR@
55944
72510
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
55945
72511
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
55946
72512
+NM = @NM@
55947
 
+NMEDIT = @NMEDIT@
 
72513
 NMEDIT = @NMEDIT@
55948
72514
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
55949
72515
 NVTV_CFLAGS = @NVTV_CFLAGS@
55950
72516
 NVTV_LIBS = @NVTV_LIBS@
55955
72521
 PACKAGE = @PACKAGE@
55956
72522
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
55957
72523
 PACKAGE_NAME = @PACKAGE_NAME@
55958
 
@@ -270,7 +278,7 @@
 
72524
@@ -272,7 +278,7 @@
55959
72525
 abs_top_srcdir = @abs_top_srcdir@
55960
72526
 ac_ct_CC = @ac_ct_CC@
55961
72527
 ac_ct_CXX = @ac_ct_CXX@
55964
72530
 am__include = @am__include@
55965
72531
 am__leading_dot = @am__leading_dot@
55966
72532
 am__quote = @am__quote@
55967
 
@@ -301,6 +309,7 @@
 
72533
@@ -303,6 +309,7 @@
55968
72534
 libexecdir = @libexecdir@
55969
72535
 localedir = @localedir@
55970
72536
 localstatedir = @localstatedir@
55972
72538
 mandir = @mandir@
55973
72539
 mkdir_p = @mkdir_p@
55974
72540
 oldincludedir = @oldincludedir@
55975
 
diff -Nurb totem-2.24.2/src/plugins/youtube/Makefile.in totem-2.24.2.new/src/plugins/youtube/Makefile.in
55976
 
--- totem-2.24.2/src/plugins/youtube/Makefile.in        2008-10-07 16:19:00.000000000 +0200
55977
 
+++ totem-2.24.2.new/src/plugins/youtube/Makefile.in    2008-10-08 15:16:20.000000000 +0200
 
72541
@@ -319,7 +326,6 @@
 
72542
 srcdir = @srcdir@
 
72543
 sysconfdir = @sysconfdir@
 
72544
 target_alias = @target_alias@
 
72545
-top_build_prefix = @top_build_prefix@
 
72546
 top_builddir = @top_builddir@
 
72547
 top_srcdir = @top_srcdir@
 
72548
 modules_flags = -export_dynamic -avoid-version -module
 
72549
Index: totem-2.24.3/src/plugins/youtube/Makefile.in
 
72550
===================================================================
 
72551
--- totem-2.24.3.orig/src/plugins/youtube/Makefile.in   2008-10-26 15:40:51.000000000 +0100
 
72552
+++ totem-2.24.3/src/plugins/youtube/Makefile.in        2008-10-30 19:06:39.000000000 +0100
55978
72553
@@ -72,6 +72,8 @@
55979
72554
 AUTOHEADER = @AUTOHEADER@
55980
72555
 AUTOMAKE = @AUTOMAKE@
55984
72559
 BEMUSED_CFLAGS = @BEMUSED_CFLAGS@
55985
72560
 BEMUSED_LIBS = @BEMUSED_LIBS@
55986
72561
 BROWSER_PLUGIN_CFLAGS = @BROWSER_PLUGIN_CFLAGS@
55987
 
@@ -98,7 +100,8 @@
55988
 
 DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
72562
@@ -99,7 +101,7 @@
55989
72563
 DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
55990
72564
 DOC_USER_FORMATS = @DOC_USER_FORMATS@
 
72565
 DSYMUTIL = @DSYMUTIL@
55991
72566
-ECHO = @ECHO@
55992
 
+DSYMUTIL = @DSYMUTIL@
55993
72567
+DUMPBIN = @DUMPBIN@
55994
72568
 ECHO_C = @ECHO_C@
55995
72569
 ECHO_N = @ECHO_N@
55996
72570
 ECHO_T = @ECHO_T@
55997
 
@@ -106,8 +109,7 @@
 
72571
@@ -107,8 +109,7 @@
55998
72572
 EXEEXT = @EXEEXT@
55999
72573
 EXTRA_GNOME_CFLAGS = @EXTRA_GNOME_CFLAGS@
56000
72574
 EXTRA_GNOME_LIBS = @EXTRA_GNOME_LIBS@
56004
72578
 FULL_LIBEXECDIR = @FULL_LIBEXECDIR@
56005
72579
 GCONFTOOL = @GCONFTOOL@
56006
72580
 GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
56007
 
@@ -157,6 +159,7 @@
 
72581
@@ -158,6 +159,7 @@
56008
72582
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
56009
72583
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
56010
72584
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
56012
72586
 LDFLAGS = @LDFLAGS@
56013
72587
 LIBEPC_CFLAGS = @LIBEPC_CFLAGS@
56014
72588
 LIBEPC_LIBS = @LIBEPC_LIBS@
56015
 
@@ -165,6 +168,7 @@
 
72589
@@ -166,6 +168,7 @@
56016
72590
 LIBOBJS = @LIBOBJS@
56017
72591
 LIBS = @LIBS@
56018
72592
 LIBTOOL = @LIBTOOL@
56020
72594
 LIRC_LIBS = @LIRC_LIBS@
56021
72595
 LN_S = @LN_S@
56022
72596
 LTLIBOBJS = @LTLIBOBJS@
56023
 
@@ -184,11 +188,15 @@
 
72597
@@ -185,12 +188,15 @@
56024
72598
 NAUTILUSDIR = @NAUTILUSDIR@
56025
72599
 NAUTILUS_CFLAGS = @NAUTILUS_CFLAGS@
56026
72600
 NAUTILUS_LIBS = @NAUTILUS_LIBS@
56027
72601
+NM = @NM@
56028
 
+NMEDIT = @NMEDIT@
 
72602
 NMEDIT = @NMEDIT@
56029
72603
 NO_STRICT_ALIASING_CFLAGS = @NO_STRICT_ALIASING_CFLAGS@
56030
72604
 NVTV_CFLAGS = @NVTV_CFLAGS@
56031
72605
 NVTV_LIBS = @NVTV_LIBS@
56036
72610
 PACKAGE = @PACKAGE@
56037
72611
 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
56038
72612
 PACKAGE_NAME = @PACKAGE_NAME@
56039
 
@@ -250,7 +258,7 @@
 
72613
@@ -252,7 +258,7 @@
56040
72614
 abs_top_srcdir = @abs_top_srcdir@
56041
72615
 ac_ct_CC = @ac_ct_CC@
56042
72616
 ac_ct_CXX = @ac_ct_CXX@
56045
72619
 am__include = @am__include@
56046
72620
 am__leading_dot = @am__leading_dot@
56047
72621
 am__quote = @am__quote@
56048
 
@@ -281,6 +289,7 @@
 
72622
@@ -283,6 +289,7 @@
56049
72623
 libexecdir = @libexecdir@
56050
72624
 localedir = @localedir@
56051
72625
 localstatedir = @localstatedir@
56053
72627
 mandir = @mandir@
56054
72628
 mkdir_p = @mkdir_p@
56055
72629
 oldincludedir = @oldincludedir@
 
72630
@@ -299,7 +306,6 @@
 
72631
 srcdir = @srcdir@
 
72632
 sysconfdir = @sysconfdir@
 
72633
 target_alias = @target_alias@
 
72634
-top_build_prefix = @top_build_prefix@
 
72635
 top_builddir = @top_builddir@
 
72636
 top_srcdir = @top_srcdir@
 
72637
 plugindir = $(PLUGINDIR)/youtube