<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.gnu.libtool.bugs">
    <title>gmane.comp.gnu.libtool.bugs</title>
    <link>http://blog.gmane.org/gmane.comp.gnu.libtool.bugs</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8169"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8162"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8158"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8154"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8153"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8146"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8139"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8138"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8136"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8135"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8134"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8126"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8113"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8112"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8108"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8107"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8103"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8102"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8101"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8100"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8169">
    <title>bug#14429: libdir does not take sysroot into account</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8169</link>
    <description>&lt;pre&gt;I am using libtool master (a4629ebf) configured with
"--with-sysroot=/tmp/root".  My build toolchain (gcc, binutils) has been
configured with the same sysroot.

I am trying to cross-compile linux-pam. All dependencies have been
configured and built with --prefix=/usr, but ultimately been moved after
installing to /tmp/root.

Building fails with

libtool: warning: library '/tmp/root/lib64/libpam.la' was moved.
libtool: warning: library '/tmp/root/lib64/libpam_misc.la' was moved.
libtool:   error: cannot find the library '/lib64/libpam.la' or unhandled
argument '/lib64/libpam.la'

/tmp/root/lib64/libpam.la includes

# Directory that this library needs to be installed in:
libdir='/lib64'

libtool should prepend its sysroot to libdir.
&lt;/pre&gt;</description>
    <dc:creator>markbrounce&lt; at &gt;lavabit.com</dc:creator>
    <dc:date>2013-05-20T22:50:13</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8162">
    <title>bug#14364: Bug Report: Lacking '=' when specifying -soname</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8162</link>
    <description>&lt;pre&gt;The problem: libtool is generating a command line like
     -Wl,-soname -Wl,libglint2.so.0
instead of
     -Wl,-soname=libglint2.so.0

This causes errors in make, like:

    /usr/bin/ld: libglint2.so.0: No such file: No such file or directory
    collect2: error: ld returned 1 exit status
    make: *** [libglint2.la] Error 1

I'm using the following latest versions of autotools:

    drwxrwx---  9 rpfische s1001   32768 2013-05-07 16:42 autoconf-2.69
    drwxr-x---  8 rpfische s1001   32768 2013-05-07 16:42 automake-1.13
    drwxrwx---  5 rpfische s1001   32768 2013-05-07 16:42 libtool-2.4.2
    drwxrwx--- 10 rpfische s1001   32768 2013-05-07 16:42 m4-1.4.16


I'm using g++ 4.7.1

    rpfische&amp;lt; at &amp;gt;dali14:~/git/glint2/slib&amp;gt; which g++
    /usr/local/other/SLES11/gcc/4.7.1/bin/g++


BUT... the OS is pretty old.  I believe it's SLES 11:

    rpfische&amp;lt; at &amp;gt;dali14:~/git/glint2/slib&amp;gt; uname -a
    Linux dali14 2.6.32.54-0.3-default #1 SMP 2012-01-27 17:38:56 +0100
    x86_64 x86_64 x86_64 GNU/Linux

    rpfische&amp;lt; at &amp;gt;dali14:~/git/glint2/slib&amp;gt; ld --version
    GNU ld (GNU Binutils; SUSE Linux Enterprise 11) 2.20.0.20100122-0.7.9
    Copyright 2009 Free Software Foundation, Inc.
    This program is free software; you may redistribute it under the
    terms of
    the GNU General Public License version 3 or (at your option) a later
    version.
    This program has absolutely no warranty.
    rpfische&amp;lt; at &amp;gt;dali14:~/git/glint2/slib&amp;gt; which ld
    /usr/bin/ld


I suspect that the syntax for '-soname' might have changed for ld, and 
that autotools is not correctly generating command line flags for this 
old ld that I'm using.  Things work just fine on MacPorts.

A fuller transcript follows.

&lt;/pre&gt;</description>
    <dc:creator>Bob Fischer</dc:creator>
    <dc:date>2013-05-07T21:11:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8158">
    <title>bug#14291: libtool 2.4.2 fails to build due to macro_revisionreversion</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8158</link>
    <description>&lt;pre&gt;On an OpenIndiana (Solaris) system where I last formally installed 
libtool 2.4.2 on July 30, 2012, I am no longer able to build libtool 
2.4.2.

Regardless of if the build is done in the libtool source tree, or in 
another directory, the build fails with:

libtool: Version mismatch error.  This is libtool 2.4.2, revision 1.3337,
libtool: but the definition of this LT_INIT comes from revision 1.3135.
libtool: You should recreate aclocal.m4 with macros from revision 1.3337
libtool: of libtool 2.4.2 and run autoconf again.

% autoconf --version
autoconf (GNU Autoconf) 2.69

% automake --version
automake (GNU automake) 1.13

% libtool --version
libtool (GNU libtool) 2.4.2

% m4 --version
m4 (GNU M4) 1.4.12
[ yes, the above is old ]

% gcc --version
gcc (GCC) 4.8.0

% gmake --version
GNU Make 3.82

Quite bizarrely (not sure why), the first step of the build process 
regenerates libltdl/m4/ltversion.m4 in the source tree and ends up 
with a different serial number (1.3135) than what it had before 
(1.3337) even though the other libtool m4 files are the same.  A diff 
of the libltdl/m4 directory content only shows the serial number 
change.  The value must be computed by something (perhaps unreliably) 
since it does not appear in the original source files.

This is the result of 'gmake' (the wrong revision is immediately 
apparent in first line of output):

sed -e s,&amp;lt; at &amp;gt;MACRO_VERSION\&amp;lt; at &amp;gt;,2.4.2,g -e s,&amp;lt; at &amp;gt;MACRO_REVISION\&amp;lt; at &amp;gt;,1.3135,g -e s,&amp;lt; at &amp;gt;MACRO_SERIAL\&amp;lt; at &amp;gt;,3135,g -e s,&amp;lt; at &amp;gt;PACKAGE\&amp;lt; at &amp;gt;,libtool,g -e s,&amp;lt; at &amp;gt;PACKAGE_BUGREPORT\&amp;lt; at &amp;gt;,bug-libtool&amp;lt; at &amp;gt;gnu.org,g -e s,&amp;lt; at &amp;gt;PACKAGE_URL\&amp;lt; at &amp;gt;,http://www.gnu.org/software/libtool/,g -e s,&amp;lt; at &amp;gt;PACKAGE_NAME\&amp;lt; at &amp;gt;,GNU Libtool,g -e s,&amp;lt; at &amp;gt;package_revision\&amp;lt; at &amp;gt;,1.3135,g -e s,&amp;lt; at &amp;gt;PACKAGE_STRING\&amp;lt; at &amp;gt;,GNU Libtool 2.4.2,g -e s,&amp;lt; at &amp;gt;PACKAGE_TARNAME\&amp;lt; at &amp;gt;,libtool,g -e s,&amp;lt; at &amp;gt;PACKAGE_VERSION\&amp;lt; at &amp;gt;,2.4.2,g -e s,&amp;lt; at &amp;gt;TIMESTAMP\&amp;lt; at &amp;gt;,,g -e s,&amp;lt; at &amp;gt;VERSION\&amp;lt; at &amp;gt;,2.4.2,g /home/bfriesen/src/gnu/libtool-2.4.2/libltdl/m4/ltversion.in &amp;gt; /home/bfriesen/src/gnu/libtool-2.4.2/libltdl/m4/ltversion.m4
CDPATH="${ZSH_VERSION+.}:" &amp;amp;&amp;amp; cd /home/bfriesen/src/gnu/libtool-2.4.2 &amp;amp;&amp;amp; /bin/sh /home/bfriesen/src/gnu/libtool-2.4.2/libltdl/config/missing --run aclocal-1.11 -I libltdl/m4
  cd /home/bfriesen/src/gnu/libtool-2.4.2 &amp;amp;&amp;amp; /bin/sh /home/bfriesen/src/gnu/libtool-2.4.2/libltdl/config/missing --run automake-1.11 --gnu
CDPATH="${ZSH_VERSION+.}:" &amp;amp;&amp;amp; cd /home/bfriesen/src/gnu/libtool-2.4.2 &amp;amp;&amp;amp; /bin/sh /home/bfriesen/src/gnu/libtool-2.4.2/libltdl/config/missing --run autoconf
/bin/sh ./config.status --recheck
running CONFIG_SHELL=/bin/sh /bin/sh /home/bfriesen/src/gnu/libtool-2.4.2/configure --no-create --no-recursion
configure: loading site script /usr/local/share/config.site
Applying settings for 32-bit build ...
Using GCC 4.8.0 ...
CC       = "gcc-4.8.0"
CXX      = "c++-4.8.0"
F77      = "gfortran-4.8.0"
FC       = "gfortran-4.8.0"
CFLAGS   = "-O2"
CXXFLAGS = "-O"
CPPFLAGS = ""
LDFLAGS  = "-L/usr/local/lib -R/usr/local/lib"
## ------------------------- ##
## Configuring libtool 2.4.2 ##
## ------------------------- ##

checking for a BSD-compatible install... /usr/local/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /home/bfriesen/src/gnu/libtool-2.4.2/libltdl/config/install-sh -c -d
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking build system type... i386-pc-solaris2.11
checking host system type... i386-pc-solaris2.11
configure: autobuild project... GNU Libtool
configure: autobuild revision... 2.4.2 ()
configure: autobuild hostname... weerd
configure: autobuild mode... default
configure: autobuild timestamp... 20130427T150136Z
checking for gcc... gcc-4.8.0
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc-4.8.0 accepts -g... yes
checking for gcc-4.8.0 option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc-4.8.0... gcc3
checking whether gcc-4.8.0 and cc understand -c and -o together... yes
checking how to run the C preprocessor... gcc-4.8.0 -E
checking how to print strings... print -r
checking for a sed that does not truncate output... /usr/bin/gsed
checking for grep that handles long lines and -e... /usr/sfw/bin/ggrep
checking for egrep... /usr/sfw/bin/ggrep -E
checking for fgrep... /usr/sfw/bin/ggrep -F
checking for ld used by gcc-4.8.0... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... no
checking for BSD- or MS-compatible name lister (nm)... /usr/ccs/bin/nm -p
checking the name lister (/usr/ccs/bin/nm -p) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 786240
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert i386-pc-solaris2.11 file names to i386-pc-solaris2.11 format... func_convert_file_noop
checking how to convert i386-pc-solaris2.11 file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... no
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... print -r --
checking for ar... ar
checking for archiver &amp;lt; at &amp;gt;FILE support... no
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/ccs/bin/nm -p output from gcc-4.8.0 object... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc-4.8.0 supports -fno-rtti -fno-exceptions... no
checking for gcc-4.8.0 option to produce PIC... -fPIC -DPIC
checking if gcc-4.8.0 PIC flag -fPIC -DPIC works... yes
checking if gcc-4.8.0 static flag -static works... no
checking if gcc-4.8.0 supports -c -o file.o... yes
checking if gcc-4.8.0 supports -c -o file.o... (cached) yes
checking whether the gcc-4.8.0 linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... solaris2.11 ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... yes
checking whether stripping libraries is possible... no
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking which extension is used for runtime loadable modules... .so
checking which variable specifies run-time module search path... LD_LIBRARY_PATH
checking for the default library search path... /lib /usr/lib
checking for library containing dlopen... none required
checking for dlerror... yes
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dld_link in -ldld... no
checking for _ prefix in compiled symbols... no
checking whether deplibs are loaded by dlopen... yes
checking for argz.h... no
checking for error_t... no
checking for argz_add... no
checking for argz_append... no
checking for argz_count... no
checking for argz_create_sep... no
checking for argz_insert... no
checking for argz_next... no
checking for argz_stringify... no
checking whether libtool supports -dlopen/-dlpreopen... yes
checking for unistd.h... (cached) yes
checking for dl.h... no
checking for sys/dl.h... yes
checking for dld.h... no
checking for mach-o/dyld.h... no
checking for dirent.h... yes
checking for closedir... yes
checking for opendir... yes
checking for readdir... yes
checking for strlcat... yes
checking for strlcpy... yes
checking whether we are using the GNU C++ compiler... yes
checking whether c++-4.8.0 accepts -g... yes
checking dependency style of c++-4.8.0... gcc3
checking how to run the C++ preprocessor... c++-4.8.0 -E
checking for ld used by c++-4.8.0... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... no
checking whether the c++-4.8.0 linker (/usr/bin/ld) supports shared libraries... yes
checking for c++-4.8.0 option to produce PIC... -fPIC -DPIC
checking if c++-4.8.0 PIC flag -fPIC -DPIC works... yes
checking if c++-4.8.0 static flag -static works... no
checking if c++-4.8.0 supports -c -o file.o... yes
checking if c++-4.8.0 supports -c -o file.o... (cached) yes
checking whether the c++-4.8.0 linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... solaris2.11 ld.so
checking how to hardcode library paths into programs... immediate
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether gfortran-4.8.0 accepts -g... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for gfortran-4.8.0 option to produce PIC... -fPIC
checking if gfortran-4.8.0 PIC flag -fPIC works... yes
checking if gfortran-4.8.0 static flag -static works... no
checking if gfortran-4.8.0 supports -c -o file.o... yes
checking if gfortran-4.8.0 supports -c -o file.o... (cached) yes
checking whether the gfortran-4.8.0 linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... solaris2.11 ld.so
checking how to hardcode library paths into programs... immediate
checking whether we are using the GNU Fortran compiler... yes
checking whether gfortran-4.8.0 accepts -g... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for gfortran-4.8.0 option to produce PIC... -fPIC
checking if gfortran-4.8.0 PIC flag -fPIC works... yes
checking if gfortran-4.8.0 static flag -static works... no
checking if gfortran-4.8.0 supports -c -o file.o... yes
checking if gfortran-4.8.0 supports -c -o file.o... (cached) yes
checking whether the gfortran-4.8.0 linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... solaris2.11 ld.so
checking how to hardcode library paths into programs... immediate
checking for gccgo... no
checking for gcj... gcj
checking if gcj supports -fno-rtti -fno-exceptions... (cached) no
checking for gcj option to produce PIC... -fPIC
checking if gcj PIC flag -fPIC works... yes
checking if gcj static flag -static works... no
checking if gcj supports -c -o file.o... yes
checking if gcj supports -c -o file.o... (cached) yes
checking whether the gcj linker (/usr/bin/ld) supports shared libraries... yes
checking how to hardcode library paths into programs... immediate
checking for windres... no
checking whether make supports order-only prerequisites... no
configure: creating ./config.status
  /bin/sh ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing tests/atconfig commands
config.status: executing depfiles commands
config.status: executing libtool commands
rm -f libtoolize.tmp libtoolize
sed -e 's,&amp;lt; at &amp;gt;aclocal_DATA\&amp;lt; at &amp;gt;,m4/argz.m4 m4/libtool.m4 m4/ltdl.m4 m4/ltoptions.m4 m4/ltsugar.m4 m4/ltversion.m4 m4/lt~obsolete.m4,g' -e 's,&amp;lt; at &amp;gt;aclocaldir\&amp;lt; at &amp;gt;,/usr/local/share/aclocal,g' -e 's,&amp;lt; at &amp;gt;datadir\&amp;lt; at &amp;gt;,/usr/local/share,g' -e 's,&amp;lt; at &amp;gt;EGREP\&amp;lt; at &amp;gt;,/usr/sfw/bin/ggrep -E,g' -e 's,&amp;lt; at &amp;gt;FGREP\&amp;lt; at &amp;gt;,/usr/sfw/bin/ggrep -F,g' -e 's,&amp;lt; at &amp;gt;GREP\&amp;lt; at &amp;gt;,/usr/sfw/bin/ggrep,g' -e 's,&amp;lt; at &amp;gt;host_triplet\&amp;lt; at &amp;gt;,i386-pc-solaris2.11,g' -e 's,&amp;lt; at &amp;gt;LN_S\&amp;lt; at &amp;gt;,ln -s,g' -e "s,&amp;lt; at &amp;gt;pkgconfig_files\&amp;lt; at &amp;gt;,config/compile config/config.guess config/config.sub config/depcomp config/install-sh config/missing config/ltmain.sh,g" -e 's,&amp;lt; at &amp;gt;pkgdatadir\&amp;lt; at &amp;gt;,/usr/local/share/libtool,g' -e "s,&amp;lt; at &amp;gt;pkgltdl_files\&amp;lt; at &amp;gt;,libltdl/COPYING.LIB libltdl/README libltdl/Makefile.inc libltdl/Makefile.am libltdl/configure.ac libltdl/aclocal.m4 libltdl/Makefile.in libltdl/config-h.in libltdl/configure libltdl/arg
 z_.h libltdl/argz.c libltdl/loaders/dld_link.c libltdl/loaders/dlopen.c libltdl/loaders/dyld.c libltdl/loaders/load_add_on.c libltdl/loaders/loadlibrary.c libltdl/loaders/shl_load.c libltdl!
 /lt__dirent.c libltdl/lt__strl.c libltdl/libltdl/lt__alloc.h libltdl/libltdl/lt__dirent.h libltdl/libltdl/lt__glibc.h libltdl/libltdl/lt__private.h libltdl/libltdl/lt__strl.h libltdl/libltdl/lt_dlloader.h libltdl/libltdl/lt_error.h libltdl/libltdl/lt_system.h libltdl/libltdl/slist.h libltdl/loaders/preopen.c libltdl/lt__alloc.c libltdl/lt_dlloader.c libltdl/lt_error.c libltdl/ltdl.c libltdl/ltdl.h libltdl/slist.c,g" -e 's,&amp;lt; at &amp;gt;prefix\&amp;lt; at &amp;gt;,/usr/local,g' -e 's,&amp;lt; at &amp;gt;SED\&amp;lt; at &amp;gt;,/usr/bin/gsed,g' \
 /home/bfriesen/src/gnu/libtool-2.4.2/libtoolize.in &amp;gt; libtoolize.tmp
chmod a+x libtoolize.tmp
chmod a-w libtoolize.tmp
mv -f libtoolize.tmp libtoolize
/bin/sh /home/bfriesen/src/gnu/libtool-2.4.2/libltdl/config/install-sh -d . libltdl/
cp /home/bfriesen/src/gnu/libtool-2.4.2/libltdl/argz_.h libltdl/argz.h-t
mv libltdl/argz.h-t libltdl/argz.h
(CDPATH="${ZSH_VERSION+.}:" &amp;amp;&amp;amp; cd /home/bfriesen/src/gnu/libtool-2.4.2 &amp;amp;&amp;amp; /bin/sh /home/bfriesen/src/gnu/libtool-2.4.2/libltdl/config/missing --run autoheader)
rm -f stamp-h1
touch /home/bfriesen/src/gnu/libtool-2.4.2/config-h.in
cd . &amp;amp;&amp;amp; /bin/sh ./config.status config.h
config.status: creating config.h
config.status: config.h is unchanged
gmake  all-recursive
gmake[1]: Entering directory `/scratch/bfriesen/build/libtool-2.4.2'
gmake[2]: Entering directory `/scratch/bfriesen/build/libtool-2.4.2'
test -f doc/.dirstamp || gmake  doc/.dirstamp
gmake[3]: Entering directory `/scratch/bfriesen/build/libtool-2.4.2'
gmake[3]: Leaving directory `/scratch/bfriesen/build/libtool-2.4.2'
/bin/sh ./libtool  --tag=CC   --mode=compile gcc-4.8.0 -DHAVE_CONFIG_H -I. -I/home/bfriesen/src/gnu/libtool-2.4.2  -DLTDLOPEN=libltdl -DLT_CONFIG_H='&amp;lt;config.h&amp;gt;' -DLTDL -I. -I/home/bfriesen/src/gnu/libtool-2.4.2 -Ilibltdl -I/home/bfriesen/src/gnu/libtool-2.4.2/libltdl -I/home/bfriesen/src/gnu/libtool-2.4.2/libltdl/libltdl   -O2 -MT libltdl/loaders/libltdl_libltdl_la-preopen.lo -MD -MP -MF libltdl/loaders/.deps/libltdl_libltdl_la-preopen.Tpo -c -o libltdl/loaders/libltdl_libltdl_la-preopen.lo `test -f 'libltdl/loaders/preopen.c' || echo '/home/bfriesen/src/gnu/libtool-2.4.2/'`libltdl/loaders/preopen.c
libtool: Version mismatch error.  This is libtool 2.4.2, revision 1.3337,
libtool: but the definition of this LT_INIT comes from revision 1.3135.
libtool: You should recreate aclocal.m4 with macros from revision 1.3337
libtool: of libtool 2.4.2 and run autoconf again.
gmake[2]: *** [libltdl/loaders/libltdl_libltdl_la-preopen.lo] Error 63
gmake[2]: Leaving directory `/scratch/bfriesen/build/libtool-2.4.2'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `/scratch/bfriesen/build/libtool-2.4.2'
gmake: *** [all] Error 2

&lt;/pre&gt;</description>
    <dc:creator>Bob Friesenhahn</dc:creator>
    <dc:date>2013-04-27T15:59:08</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8154">
    <title>bug#14195: [GNU Libtool 2.4.2] testsuite: 42 86 115 failed</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8154</link>
    <description>&lt;pre&gt;
&lt;/pre&gt;</description>
    <dc:creator>Toralf Förster</dc:creator>
    <dc:date>2013-04-12T21:25:38</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8153">
    <title>bug#14155: libtool 2.4.2 bug: default " sys_lib_dlsearch_path_spec"missing paths where LIBDIR=lib64</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8153</link>
    <description>&lt;pre&gt;I've

libtool --version
libtool (GNU libtool) 2.4.2
Written by Gordon Matzigkeit &amp;lt;gord&amp;lt; at &amp;gt;gnu.ai.mit.edu&amp;gt;, 1996

Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying
conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.

on

lsb_release -a
LSB Version:   
core-2.0-noarch:core-3.2-noarch:core-4.0-noarch:core-2.0-x86_64:core-3.2-x86_64:core-4.0-x86_64:desktop-4.0-amd64:desktop-4.0-noarch:graphics-2.0-amd64:graphics-2.0-noarch:graphics-3.2-amd64:graphics-3.2-noarch:graphics-4.0-amd64:graphics-4.0-noarch
Distributor ID: openSUSE project
Description:    openSUSE 12.3 (x86_64)
Release:        12.3
Codename:       Dartmouth


I originally reported this &amp;lt; at &amp;gt; Opensuse bugzilla

https://bugzilla.novell.com/show_bug.cgi?id=786460

but was told to report it upstream.  IMO, the issue is directly related
to Opensuse's use of LIBDIR=lib64 on X86_64 systems, and should be
patched THERE, but ... here's the issue:

For installed libtool, checking

grep ^sys_lib_dlsearch_path_spec /usr/bin/libtool
    sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/local/lib64
    /usr/local/lib "

the as-installed default fails to include the libdirs as used on X86_64
systems on Opensuse (and perhaps others that do the same ...).

On x86_64 that shouldn't be "/lib /usr/lib", but rather "/lib64
/usr/lib64".

arguably, /usr/lib/lib64 should lead the order ...
&lt;/pre&gt;</description>
    <dc:creator>ar16&lt; at &gt;imapmail.org</dc:creator>
    <dc:date>2013-04-07T18:32:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8146">
    <title>bug#14055: windows link problem with ".lib" files</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8146</link>
    <description>&lt;pre&gt;Hi,

from time to time I use my automake/libtool project to build libraries 
on windows ...
this create al least problems ...

my actual problem is, I got a tcl distrubution from activestate 
providing a libraray:

C:/Tcl/lib/tcl8.6.lib

and using the libtool command:

  /bin/sh ../../libtool --tag=CC    --mode=link /usr/bin/ccache 
x86_64-w64-mingw32-gcc -std=gnu99 -shared 
-I/home/dev1usr/Project/NHI1/theLink/tclmsgque/../libmsgque 
-IC:/Tcl/include  -DMQ_IGNORE_EXTERN  -g -Wall -Wcast-align -g -O2 
-shared -module -avoid-version -no-undefined*-LC:/Tcl/lib -ltcl86* -o 
tclmsgque.la -rpath /usr/local/lib/NHI1 tclmsgque_la-MqS_tcl.lo 
tclmsgque_la-misc_tcl.lo tclmsgque_la-msgque_tcl.lo 
tclmsgque_la-read_tcl.lo tclmsgque_la-send_tcl.lo 
tclmsgque_la-config_tcl.lo tclmsgque_la-service_tcl.lo 
tclmsgque_la-slave_tcl.lo tclmsgque_la-MqBufferS_tcl.lo 
tclmsgque_la-error_tcl.lo tclmsgque_la-link_tcl.lo 
tclmsgque_la-MqFactoryS_tcl.lo tclmsgque_la-MqDumpS_tcl.lo 
../libmsgque/libtmp.la

with "*-LC:/Tcl/lib -ltcl86*" I got the mystic libtool error message 
that the library is NOT found ...

using the "--debug" option give a hint ....

libtool does not serach for the "right" name ...

If I copy the file tcl86.lib to libtcl86.a in the same directory ....

=&amp;gt; everything works fine.

and now my question:

why does "libtool" on "windows" does NOT search for "*.lib" files

=&amp;gt; enduser would be happy to save debugging hours ;-)

Hint, I use the mingw cross compiler but this is NOT the problem.


mfg AO
_______________________________________________
Bug-libtool mailing list
Bug-libtool&amp;lt; at &amp;gt;gnu.org
https://lists.gnu.org/mailman/listinfo/bug-libtool
&lt;/pre&gt;</description>
    <dc:creator>Andreas Otto</dc:creator>
    <dc:date>2013-03-26T09:38:02</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8139">
    <title>bug#14022: libtool-gug</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8139</link>
    <description>&lt;pre&gt;Hi,

the following code has an error:

# func_convert_core_msys_to_w32 ARG
# Convert file name or path ARG from MSYS format to w32 format. Return
# result in func_convert_core_msys_to_w32_result.
func_convert_core_msys_to_w32 ()
{
   $opt_debug
   # awkward: cmd appends spaces to result
   func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2&amp;gt;/dev/null |
     $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"`
}
#end: func_convert_core_msys_to_w32

I need "...cmd /c ..." to get my stuff compiled

mfg AO

######################################################
OS: Windows7
######################################################
configure --enable-threads --enable-symbols --build=x86_64-w64-mingw32
######################################################
$ libtool --version
libtool (GNU libtool) 2.4
Written by Gordon Matzigkeit &amp;lt;gord&amp;lt; at &amp;gt;gnu.ai.mit.edu&amp;gt;, 1996

Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
######################################################
$ automake --version
automake (GNU automake) 1.12.5
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv2+: GNU GPL version 2 or later 
&amp;lt;http://gnu.org/licenses/gpl-2.0.html&amp;gt;
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Tom Tromey &amp;lt;tromey&amp;lt; at &amp;gt;redhat.com&amp;gt;
        and Alexandre Duret-Lutz &amp;lt;adl&amp;lt; at &amp;gt;gnu.org&amp;gt;.
######################################################
$ cygpath -V
cygpath (cygwin) 1.7.17
Path Conversion Utility
Copyright (C) 1998 - 2012 Red Hat, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
######################################################
environment:
declare -x !::
declare -x ALLUSERSPROFILE="C:\\ProgramData"
declare -x APPDATA="C:\\Users\\dev1usr\\AppData\\Roaming"
declare -x CC="ccache x86_64-w64-mingw32-gcc"
declare -x CCACHE_DIR="/build/dev1usr/Cache"
declare -x COMMONPROGRAMFILES="C:\\Program Files (x86)\\Common Files"
declare -x COMPUTERNAME="HP-HP"
declare -x COMSPEC="C:\\Windows\\system32\\cmd.exe"
declare -x CTAGSFLAGS="--c-kinds=+p"
declare -x CXX="ccache x86_64-w64-mingw32-g++.exe"
declare -x CommonProgramFiles(x86)
declare -x CommonProgramW6432="C:\\Program Files\\Common Files"
declare -x FP_NO_HOST_CHECK="NO"
declare -x HOME="/home/dev1usr"
declare -x HOMEDRIVE="C:"
declare -x HOMEPATH="\\Users\\dev1usr"
declare -x HOSTNAME="HP-HP"
declare -x INFOPATH="/usr/local/info:/usr/share/info:/usr/info:"
declare -x LANG="de_DE.UTF-8"
declare -x LOCALAPPDATA="C:\\Users\\dev1usr\\AppData\\Local"
declare -x LOGONSERVER="\\\\HP-HP"
declare -x MANPATH="/usr/local/man:/usr/share/man:/usr/man::/usr/ssl/man"
declare -x NHI1_HOME="/home/dev1usr/Project/NHI1"
declare -x NHI1_TOOL_ROOT="/home/dev1usr/ext/i686-pc-cygwin"
declare -x NUMBER_OF_PROCESSORS="4"
declare -x OLDPWD="/build/dev1usr/Main/thread/theLink/sqlite"
declare -x OS="Windows_NT"
declare -x OnlineServices="Online Services"
declare -x PATH="/usr/local/bin:/usr/bin:/cygdrive/c/Program 
Files/Common Files/Microsoft Shared/Windows 
Live:/cygdrive/c/Windows/system32:/cygdrive/c/Windows:/cygdrive/c/Windows/System32/Wbem:/cygdrive/c/Windows/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program 
Files/Broadcom/Broadcom 802.11/Driver:/cygdrive/c/Program Files 
(x86)/ATI Technologies/ATI.ACE/Core-Static"
declare -x PATHEXT=".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC"
declare -x PCBRAND="Pavilion"
declare -x PRINTER="Lexmark S300-S400 Series"
declare -x PROCESSOR_ARCHITECTURE="x86"
declare -x PROCESSOR_ARCHITEW6432="AMD64"
declare -x PROCESSOR_IDENTIFIER="Intel64 Family 6 Model 37 Stepping 5, 
GenuineIntel"
declare -x PROCESSOR_LEVEL="6"
declare -x PROCESSOR_REVISION="2505"
declare -x PROGRAMFILES="C:\\Program Files (x86)"
declare -x PS1="\\[\\e]0;\\w\\a\\]\\n\\[\\e[32m\\]\\u&amp;lt; at &amp;gt;\\h 
\\[\\e[33m\\]\\w\\[\\e[0m\\]\\n\\\$ "
declare -x 
PSModulePath="C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules\\"
declare -x PUBLIC="C:\\Users\\Public"
declare -x PWD="/build/dev1usr/Main/thread"
declare -x Platform="MCD"
declare -x ProgramData="C:\\ProgramData"
declare -x ProgramFiles(x86)
declare -x ProgramW6432="C:\\Program Files"
declare -x SESSIONNAME="Console"
declare -x SHELL="/bin/bash"
declare -x SHLVL="2"
declare -x STY="2792.pty0.HP-HP"
declare -x SVN_SSH="ssh -l aotto1968"
declare -x SYSTEMDRIVE="C:"
declare -x SYSTEMROOT="C:\\Windows"
declare -x TEMP="/tmp"
declare -x TERM="screen"
declare -x TERMCAP="SC|screen|VT 100/ANSI X3.64 virtual terminal:\\
         :DO=\\E[%dB:LE=\\E[%dD:RI=\\E[%dC:UP=\\E[%dA:bs:bt=\\E[Z:\\
:cd=\\E[J:ce=\\E[K:cl=\\E[H\\E[J:cm=\\E[%i%d;%dH:ct=\\E[3g:\\
:do=^J:nd=\\E[C:pt:rc=\\E8:rs=\\Ec:sc=\\E7:st=\\EH:up=\\EM:\\
         :le=^H:bl=^G:cr=^M:it#8:ho=\\E[H:nw=\\EE:ta=^I:is=\\E)0:\\
         :li#64:co#140:am:xn:xv:LP:sr=\\EM:al=\\E[L:AL=\\E[%dL:\\
         :cs=\\E[%i%d;%dr:dl=\\E[M:DL=\\E[%dM:dc=\\E[P:DC=\\E[%dP:\\
         :im=\\E[4h:ei=\\E[4l:mi:IC=\\E[%d&amp;lt; at &amp;gt;:ks=\\E[?1h\\E=:\\
:ke=\\E[?1l\\E&amp;gt;:vi=\\E[?25l:ve=\\E[34h\\E[?25h:vs=\\E[34l:\\
:ti=\\E[?1049h:te=\\E[?1049l:us=\\E[4m:ue=\\E[24m:so=\\E[3m:\\
         :se=\\E[23m:mb=\\E[5m:md=\\E[1m:mr=\\E[7m:me=\\E[m:ms:\\
         :Co#8:pa#64:AF=\\E[3%dm:AB=\\E[4%dm:op=\\E[39;49m:AX:\\
         :vb=\\Eg:G0:as=\\E(0:ae=\\E(B:\\
:ac=\\140\\140aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~..--++,,hhII00:\\
:po=\\E[5i:pf=\\E[4i:k0=\\E[10~:k1=\\EOP:k2=\\EOQ:k3=\\EOR:\\
         :k4=\\EOS:k5=\\E[15~:k6=\\E[17~:k7=\\E[18~:k8=\\E[19~:\\
         :k9=\\E[20~:k;=\\E[21~:F1=\\E[23~:F2=\\E[24~:F3=\\E[1;2P:\\
         :F4=\\E[1;2Q:F5=\\E[1;2R:F6=\\E[1;2S:F7=\\E[15;2~:\\
         :F8=\\E[17;2~:F9=\\E[18;2~:FA=\\E[19;2~:kb=^A^?:K2=\\EOE:\\
         :kB=\\E[Z:kF=\\E[1;2B:kR=\\E[1;2A:*4=\\E[3;2~:*7=\\E[1;2F:\\
:#2=\\E[1;2H:#3=\\E[2;2~:#4=\\E[1;2D:%c=\\E[6;2~:%e=\\E[5;2~:\\
         :%i=\\E[1;2C:kh=\\E[1~:&amp;lt; at &amp;gt;1=\\E[1~:kH=\\E[4~:&amp;lt; at &amp;gt;7=\\E[4~:\\
:kN=\\E[6~:kP=\\E[5~:kI=\\E[2~:kD=\\E[3~:ku=\\EOA:kd=\\EOB:\\
         :kr=\\EOC:kl=\\EOD:km:"
declare -x TMP="/tmp"
declare -x TZ="Europe/Berlin"
declare -x USER="dev1usr"
declare -x USERDOMAIN="HP-HP"
declare -x USERNAME="dev1usr"
declare -x USERPROFILE="C:\\Users\\dev1usr"
declare -x WINDIR="C:\\Windows"
declare -x WINDOW="9"
declare -x temp="C:\\Users\\dev1usr\\AppData\\Local\\Temp"
declare -x tmp="C:\\Users\\dev1usr\\AppData\\Local\\Temp"
&lt;/pre&gt;</description>
    <dc:creator>Andreas Otto</dc:creator>
    <dc:date>2013-03-21T14:41:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8138">
    <title>bug#13985: [GNU Libtool 2.4.2] testsuite: 25 115 119 failed</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8138</link>
    <description>&lt;pre&gt;Hello,

Reporting bugs as suggested by "make check" output.

Thanks,
Behzad Salimi.
_______________________________________________
Bug-libtool mailing list
Bug-libtool&amp;lt; at &amp;gt;gnu.org
https://lists.gnu.org/mailman/listinfo/bug-libtool
&lt;/pre&gt;</description>
    <dc:creator>riddle00&lt; at &gt;gmail.com</dc:creator>
    <dc:date>2013-03-17T16:55:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8136">
    <title>bug#13920: link_all_deps and indirect dependencies</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8136</link>
    <description>&lt;pre&gt;Hello,

in my project, I have program A that dynamically links with library B 
(library B is mentioned as DT_NEEDED in program A), and library B 
dynamically links with library C (library C is mentioned as DT_NEEDED in 
library B, and under dependency_libs in libraryB.la).

--&amp;gt; If I want to use a function from library C in program A, am I 
supposed to list (in Makefile.am) that program A depends on library C, 
or can I rely on the fact, that program A loads library B and library B 
loads library C, thus it is not necessary to link explicitly program A 
with library C?

Under Debian, libtool is patched to have link_all_deplibs=no, on other 
systems link_all_deplibs is unknown/yes.  When link_all_deplibs is yes, 
I do not have to link program A explicitly with library C; when 
link_all_deplibs is no, I have to link explicitly.

Program A, library B and library C are in the control of the same 
person, so the dependency on libC in libB is ensured.

According to the Debian maintainer of the libtool package, 
bugs.debian.org/cgi-bin/bugreport.cgi?bug=702737 , libtool's 
documentation shall state (or states, but I don't find where), that 
program A must explicitly link with library C.

Thanks in advance for your feedback
   Дилян



_______________________________________________
Bug-libtool mailing list
Bug-libtool&amp;lt; at &amp;gt;gnu.org
https://lists.gnu.org/mailman/listinfo/bug-libtool
&lt;/pre&gt;</description>
    <dc:creator>Дилян Палаузов</dc:creator>
    <dc:date>2013-03-10T22:10:15</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8135">
    <title>bug#13910: failures running cross-compiled mingw32 tests under wine</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8135</link>
    <description>&lt;pre&gt;I cross-built libtool 2.4.2, then ran the tests under wine (make check
TESTS_ENVIRONMENT=wine).  Most everything worked but there were two
failures.  Attaching the log.

=========================================
   GNU Libtool 2.4.2: ./test-suite.log   
=========================================

2 of 122 tests failed.  (2 tests were not run).  

.. contents:: :depth: 2


SKIP: tests/cdemo-undef.test (exit: 77)
=======================================

cdemo-undef.test: ===  Running cdemo-undef.test
cdemo-undef.test: ===  Running `make distclean' in cdemo
 rm -f cdemo.exe
 rm -f cdemo
rm -rf .libs _libs
test -z "libfoo.la" || rm -f libfoo.la
rm -f "./so_locations"
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "/home/wingo/src/libtool-2.4.2/tests/cdemo" || test -z "" || rm -f 
rm -f libtool config.lt
ac_files="a.out.* a.exe.* a_out.exe.* b.out.* conftest.*"; \
for ac_file in $ac_files; do \
  case $ac_file in \
    *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) rm -rf $ac_file ;; \
  esac; \
done
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -f config.status config.cache config.log configure.lineno config.status.lineno
rm -f Makefile
cdemo-undef.test: ===  Configuring in cdemo
cdemo-undef.test: ===  /bin/sh /home/wingo/src/libtool-2.4.2/tests/cdemo/configure --srcdir=/home/wingo/src/libtool-2.4.2/tests/cdemo --prefix=/home/wingo/src/libtool-2.4.2/+i686-w64-mingw32/_inst-cdemo --disable-static --host=i686-w64-mingw32
configure: WARNING: if you wanted to set the --build type, don't use --host.
    If a cross compiler is detected then cross compile mode will be used
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for i686-w64-mingw32-strip... i686-w64-mingw32-strip
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for i686-w64-mingw32-gcc... i686-w64-mingw32-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.exe
checking for suffix of executables... .exe
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i686-w64-mingw32-gcc accepts -g... yes
checking for i686-w64-mingw32-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i686-w64-mingw32-gcc... gcc3
checking build system type... x86_64-unknown-linux-gnu
checking host system type... i686-w64-mingw32
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by i686-w64-mingw32-gcc... /usr/i686-w64-mingw32/bin/ld
checking if the linker (/usr/i686-w64-mingw32/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/i686-w64-mingw32-nm -B
checking the name lister (/usr/bin/i686-w64-mingw32-nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to i686-w64-mingw32 format... (cached) func_convert_file_nix_to_w32
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop
checking for /usr/i686-w64-mingw32/bin/ld option to reload object files... -r
checking for i686-w64-mingw32-objdump... i686-w64-mingw32-objdump
checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
checking for i686-w64-mingw32-dlltool... i686-w64-mingw32-dlltool
checking how to associate runtime and link libraries... func_cygming_dll_for_implib
checking for i686-w64-mingw32-ar... i686-w64-mingw32-ar
checking for archiver &amp;lt; at &amp;gt;FILE support... &amp;lt; at &amp;gt;
checking for i686-w64-mingw32-strip... (cached) i686-w64-mingw32-strip
checking for i686-w64-mingw32-ranlib... i686-w64-mingw32-ranlib
checking command to parse /usr/bin/i686-w64-mingw32-nm -B output from i686-w64-mingw32-gcc object... ok
checking for sysroot... no
checking for i686-w64-mingw32-mt... :
checking if : is a manifest tool... no
checking how to run the C preprocessor... i686-w64-mingw32-gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if i686-w64-mingw32-gcc supports -fno-rtti -fno-exceptions... no
checking for i686-w64-mingw32-gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if i686-w64-mingw32-gcc PIC flag -DDLL_EXPORT -DPIC works... yes
checking if i686-w64-mingw32-gcc static flag -static works... yes
checking if i686-w64-mingw32-gcc supports -c -o file.o... yes
checking if i686-w64-mingw32-gcc supports -c -o file.o... (cached) yes
checking whether the i686-w64-mingw32-gcc linker (/usr/i686-w64-mingw32/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... yes
checking dynamic linker characteristics... Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for cos in -lm... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: executing depfiles commands
config.status: executing libtool commands
cdemo-undef.test: i686-w64-mingw32 doesn't support undefined symbols in shared libs

SKIP: tests/tagdemo-undef.test (exit: 77)
=========================================

tagdemo-undef.test: ===  Running tagdemo-undef.test
tagdemo-undef.test: ===  Running `make distclean' in tagdemo
 rm -f tagdemo.exe
 rm -f tagdemo
test -z "libfoo.la libbaz.la" || rm -f libfoo.la libbaz.la
rm -f "./so_locations"
rm -f "./so_locations"
rm -rf .libs _libs
test -z "libconv.la" || rm -f libconv.la
rm -f "./so_locations"
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "/home/wingo/src/libtool-2.4.2/tests/tagdemo" || test -z "" || rm -f 
rm -f libtool config.lt
ac_files="a.out.* a.exe.* a_out.exe.* b.out.* conftest.*"; \
for ac_file in $ac_files; do \
  case $ac_file in \
    *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) rm -rf $ac_file ;; \
  esac; \
done
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -f config.status config.cache config.log configure.lineno config.status.lineno
rm -f Makefile
tagdemo-undef.test: ===  Configuring in tagdemo
tagdemo-undef.test: ===  /bin/sh /home/wingo/src/libtool-2.4.2/tests/tagdemo/configure --srcdir=/home/wingo/src/libtool-2.4.2/tests/tagdemo --prefix=/home/wingo/src/libtool-2.4.2/+i686-w64-mingw32/_inst-tagdemo --disable-static --host=i686-w64-mingw32
configure: WARNING: if you wanted to set the --build type, don't use --host.
    If a cross compiler is detected then cross compile mode will be used
checking build system type... x86_64-unknown-linux-gnu
checking host system type... i686-w64-mingw32
checking target system type... i686-w64-mingw32
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for i686-w64-mingw32-strip... i686-w64-mingw32-strip
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for i686-w64-mingw32-gcc... i686-w64-mingw32-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.exe
checking for suffix of executables... .exe
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether i686-w64-mingw32-gcc accepts -g... yes
checking for i686-w64-mingw32-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of i686-w64-mingw32-gcc... gcc3
checking how to run the C preprocessor... i686-w64-mingw32-gcc -E
checking whether i686-w64-mingw32-gcc and cc understand -c and -o together... yes
checking whether we are using the GNU C++ compiler... yes
checking whether i686-w64-mingw32-g++ accepts -g... yes
checking dependency style of i686-w64-mingw32-g++... gcc3
checking how to run the C++ preprocessor... i686-w64-mingw32-g++ -E
checking whether the compiler implements namespaces... yes
checking whether the compiler has ISO C++ iostream... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by i686-w64-mingw32-gcc... /usr/i686-w64-mingw32/bin/ld
checking if the linker (/usr/i686-w64-mingw32/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/i686-w64-mingw32-nm -B
checking the name lister (/usr/bin/i686-w64-mingw32-nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to i686-w64-mingw32 format... (cached) func_convert_file_nix_to_w32
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop
checking for /usr/i686-w64-mingw32/bin/ld option to reload object files... -r
checking for i686-w64-mingw32-objdump... i686-w64-mingw32-objdump
checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
checking for i686-w64-mingw32-dlltool... i686-w64-mingw32-dlltool
checking how to associate runtime and link libraries... func_cygming_dll_for_implib
checking for i686-w64-mingw32-ar... i686-w64-mingw32-ar
checking for archiver &amp;lt; at &amp;gt;FILE support... &amp;lt; at &amp;gt;
checking for i686-w64-mingw32-strip... (cached) i686-w64-mingw32-strip
checking for i686-w64-mingw32-ranlib... i686-w64-mingw32-ranlib
checking command to parse /usr/bin/i686-w64-mingw32-nm -B output from i686-w64-mingw32-gcc object... ok
checking for sysroot... no
checking for i686-w64-mingw32-mt... :
checking if : is a manifest tool... no
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if i686-w64-mingw32-gcc supports -fno-rtti -fno-exceptions... no
checking for i686-w64-mingw32-gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if i686-w64-mingw32-gcc PIC flag -DDLL_EXPORT -DPIC works... yes
checking if i686-w64-mingw32-gcc static flag -static works... yes
checking if i686-w64-mingw32-gcc supports -c -o file.o... yes
checking if i686-w64-mingw32-gcc supports -c -o file.o... (cached) yes
checking whether the i686-w64-mingw32-gcc linker (/usr/i686-w64-mingw32/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... yes
checking dynamic linker characteristics... Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking how to run the C++ preprocessor... i686-w64-mingw32-g++ -E
checking for ld used by i686-w64-mingw32-g++... /usr/i686-w64-mingw32/bin/ld
checking if the linker (/usr/i686-w64-mingw32/bin/ld) is GNU ld... yes
checking whether the i686-w64-mingw32-g++ linker (/usr/i686-w64-mingw32/bin/ld) supports shared libraries... yes
checking for i686-w64-mingw32-g++ option to produce PIC... -DDLL_EXPORT -DPIC
checking if i686-w64-mingw32-g++ PIC flag -DDLL_EXPORT -DPIC works... yes
checking if i686-w64-mingw32-g++ static flag -static works... yes
checking if i686-w64-mingw32-g++ supports -c -o file.o... yes
checking if i686-w64-mingw32-g++ supports -c -o file.o... (cached) yes
checking whether the i686-w64-mingw32-g++ linker (/usr/i686-w64-mingw32/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking for cos in -lm... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: executing depfiles commands
config.status: executing libtool commands
tagdemo-undef.test: i686-w64-mingw32 doesn't support undefined symbols in shared libs

FAIL: tests/demo-hardcode.test (exit: 1)
========================================

demo-hardcode.test: ===  Running demo-hardcode.test
demo-hardcode.test: ===  Running `make hardcode' in demo
You may ignore any linking errors from the following command:
i686-w64-mingw32-gcc -g -O2  -o hc-direct main.o ./.libs/libhello.dll.a -ldl  -lm -L/home/wingo/src/libtool-2.4.2/+i686-w64-mingw32/_inst-demo/lib || echo unsupported &amp;gt; hc-direct
i686-w64-mingw32-gcc -g -O2  -o hc-libflag main.o -L/home/wingo/src/libtool-2.4.2/+i686-w64-mingw32/tests/demo/.libs -L/home/wingo/src/libtool-2.4.2/+i686-w64-mingw32/_inst-demo/lib -lhello -ldl  -lm
You may ignore any linking errors from the following command:
PATH=./.libs i686-w64-mingw32-gcc -g -O2  -o hc-libpath main.o -lhello -ldl  -lm -L/home/wingo/src/libtool-2.4.2/+i686-w64-mingw32/_inst-demo/lib || echo unsupported &amp;gt; hc-libpath
/bin/sh: line 5: i686-w64-mingw32-gcc: command not found
i686-w64-mingw32-gcc -g -O2  -o hc-minusL main.o -L./.libs -lhello -ldl  -lm -L/home/wingo/src/libtool-2.4.2/+i686-w64-mingw32/_inst-demo/lib || echo unsupported &amp;gt; hc-minusL
demo-hardcode.test: ===  Finding libtool.m4's guesses at hardcoding values
= Searching for hardcoded library directories in each program
.libs was not hardcoded in `hc-direct', as libtool expected
.libs was not hardcoded in `hc-libflag', which fooled libtool
`hc-libpath' was not linked properly, as libtool expected
.libs was not hardcoded in `hc-minusL', as libtool expected

FAIL: tests/depdemo-relink.test (exit: 1)
=========================================

depdemo-relink.test: ===  Running depdemo-relink.test
dependencies:
l1 (0)
l2 (0)
 l1 (1)
l4 (0)
 l3 (0)
  l1 (2)
  l2 (2)
   l1 (3)
 libm [sin(1.5) = 0.997495]
var_l1(4) + var_l2(6) + var_l4(10) == 20
depdemo-relink.test: ===  removing libl3.la from depdemo/l3
depdemo-relink.test: ===  running depdemo/depdemo
dependencies:
l1 (0)
l2 (0)
 l1 (1)
l4 (0)
 l3 (0)
  l1 (2)
  l2 (2)
   l1 (3)
 libm [sin(1.5) = 0.997495]
var_l1(4) + var_l2(6) + var_l4(10) == 20
depdemo-relink.test: ===  linking a broken depdemo/l3/libl3.la
/bin/sh ../libtool --tag=CC   --mode=link i686-w64-mingw32-gcc  -g -O2 -no-undefined  -o libl3.la -rpath /home/wingo/src/libtool-2.4.2/+i686-w64-mingw32/_inst-depdemo/lib ../l2/l2.lo ../l1/libl1.la ../l2/libl2.la -ldl 
libtool: link: i686-w64-mingw32-gcc -shared  ../l2/.libs/l2.o   -L/home/wingo/src/libtool-2.4.2/+i686-w64-mingw32/tests/depdemo/l1/.libs ../l1/.libs/libl1.dll.a ../l2/.libs/libl2.dll.a /home/wingo/src/libtool-2.4.2/+i686-w64-mingw32/tests/depdemo/l1/.libs/libl1.dll.a -ldl  -O2   -o .libs/libl3-0.dll -Wl,--enable-auto-image-base -Xlinker --out-implib -Xlinker .libs/libl3.dll.a
libtool: link: ( cd ".libs" &amp;amp;&amp;amp; rm -f "libl3.la" &amp;amp;&amp;amp; ln -s "../libl3.la" "libl3.la" )
depdemo-relink.test: ===  running depdemo/depdemo with broken libl3.la
dependencies:wine: Call from 0x7bc4c9c8 to unimplemented function libl3-0.dll.func_l3, aborting
wine: Unimplemented function libl3-0.dll.func_l3 called at address 0x7bc4c9c8 (thread 0037), starting debugger...
Application tried to create a window, but no driver could be loaded.
Make sure that your X server is running and that $DISPLAY is set correctly.
err:systray:initialize_systray Could not create tray window
Application tried to create a window, but no driver could be loaded.
Make sure that your X server is running and that $DISPLAY is set correctly.
Unhandled exception: unimplemented function libl3-0.dll.func_l3 called in 32-bit code (0x7bc4c9c8).
Register dump:
 CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
 EIP:7bc4c9c8 ESP:0061fcd8 EBP:0061fd3c EFLAGS:00000216(   - --  I   -A-P- )
 EAX:6920c20a EBX:7bcbc000 ECX:0061fce0 EDX:00000000
 ESI:0061fce4 EDI:00110498
Stack dump:
0x0061fcd8:  0061fd28 7ef32aa1 7ef9a200 80000100
0x0061fce8:  00000001 00000000 7bc4c9c8 00000002
0x0061fcf8:  6920c52c 6920c20a 0061fd38 00110498
0x0061fd08:  0061fd28 7ef33055 7ef9a200 669c9024
0x0061fd18:  0061fd38 7ef92000 00000000 00110498
0x0061fd28:  0061fd48 7ef33055 7bc4c97a 00000004
Backtrace:
=&amp;gt;0 0x7bc4c9c8 call_dll_entry_point+0x4f8() in ntdll (0x0061fd3c)
  1 0x0024000f (0x0061fd98)
  2 0x004013fa __tmainCRTStartup+0x279() [/builddir/build/BUILD/mingw-w64-v2.0.999/trunk/mingw-w64-crt/build_win32/../crt/crtexe.c:315] in depdemo (0x0061fe60)
  3 0x7b85f99c call_process_entry+0xb() in kernel32 (0x0061fe78)
  4 0x7b860c7d in kernel32 (+0x50c7c) (0x0061feb8)
  5 0x7bc77a60 call_thread_func_wrapper+0xb() in ntdll (0x0061fed8)
  6 0x7bc7a94e call_thread_func+0x7d() in ntdll (0x0061ffa8)
  7 0x7bc77a3e RtlRaiseException+0x21() in ntdll (0x0061ffc8)
  8 0x7bc4c9ef call_dll_entry_point+0x51e() in ntdll (0x0061ffe8)
  9 0xf75f20ed wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000)
  10 0xf75f21cc wine_switch_to_stack+0x2b() in libwine.so.1 (0xffcccbd8)
  11 0x7bc52667 LdrInitializeThunk+0x3c6() in ntdll (0xffcccc48)
  12 0x7b86747e __wine_kernel_init+0xc1d() in kernel32 (0xffccdd68)
  13 0x7bc52d3b __wine_process_init+0x18a() in ntdll (0xffccddf8)
  14 0xf75efd4c wine_init+0x29b() in libwine.so.1 (0xffccde58)
  15 0x7bf00d7c main+0x8b() in &amp;lt;wine-loader&amp;gt; (0xffcce2a8)
  16 0xf7432865 __libc_start_main+0xf4() in libc.so.6 (0x00000000)
0x7bc4c9c8 call_dll_entry_point+0x4f8 in ntdll: leal0xfffffffc(%esp),%esp
Modules:
ModuleAddressDebug infoName (20 modules)
PE  400000-  419000Dwarf           depdemo
PE62b80000-62b9b000Deferred        libl2-0
PE661c0000-661db000Deferred        libl3-0
PE669c0000-669db000Deferred        libl1-0
PE69200000-6921b000Deferred        libl4-0
ELF7b800000-7ba45000Dwarf           kernel32&amp;lt;elf&amp;gt;
  \-PE7b810000-7ba45000\               kernel32
ELF7bc00000-7bcd8000Dwarf           ntdll&amp;lt;elf&amp;gt;
  \-PE7bc10000-7bcd8000\               ntdll
ELF7bf00000-7bf04000Dwarf           &amp;lt;wine-loader&amp;gt;
ELF7eef4000-7ef9b000Deferred        msvcrt&amp;lt;elf&amp;gt;
  \-PE7ef10000-7ef9b000\               msvcrt
ELF7ef9b000-7efa8000Deferred        libnss_files.so.2
ELF7efa8000-7efe8000Deferred        libm.so.6
ELFf7414000-f7419000Deferred        libdl.so.2
ELFf7419000-f75cf000Dwarf           libc.so.6
ELFf75cf000-f75e9000Deferred        libpthread.so.0
ELFf75e9000-f772d000Dwarf           libwine.so.1
ELFf7746000-f7767000Deferred        ld-linux.so.2
ELFf7767000-f7768000Deferred        [vdso].so
Threads:
process  tid      prio (all id:s are in hex)
0000000e services.exe
0000001f    0
0000001e    0
00000018    0
00000017    0
00000015    0
00000010    0
0000000f    0
00000012 winedevice.exe
0000001c    0
00000019    0
00000014    0
00000013    0
0000001a plugplay.exe
00000020    0
0000001d    0
0000001b    0
00000036 depdemo.exe
00000035    0
00000038 (D) Z:\home\wingo\src\libtool-2.4.2\+i686-w64-mingw32\tests\depdemo\.libs\depdemo.exe
00000037    0 &amp;lt;==
0000003c explorer.exe
0000003b    0
depdemo-relink.test: ===  Exiting: depdemo/depdemo runs even though libl3.la is incomplete
depdemo-relink.test: shlibpath_overrides_runpath should be set to no

&lt;/pre&gt;</description>
    <dc:creator>Andy Wingo</dc:creator>
    <dc:date>2013-03-09T13:21:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8134">
    <title>bug#13633: mips64el: Testsuite fails</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8134</link>
    <description>&lt;pre&gt;'demo-nopic-make.test' fails.  Ludo (CC'd) noticed that '.libs/foo.o' is
not built with '-fPIC'.

=========================================
   GNU Libtool 2.4.2: ./test-suite.log   
=========================================

1 of 103 tests failed.  (2 tests were not run).  

.. contents:: :depth: 2


SKIP: tests/tagtrace.test (exit: 77)
====================================

tagtrace.test: ===  Running tagtrace.test
tagtrace.test: This test requires GNU Autoconf

FAIL: tests/demo-nopic-make.test (exit: 2)
==========================================

demo-nopic-make.test: ===  Running demo-nopic-make.test
demo-nopic-make.test: ===  Running demo-nopic-make.test
demo-nopic-make.test: ===  Running `make ' in demo
/nix/store/xnd5ihy6cvjqj79dx4gzicj21yxqxhrq-bash-4.2/bin/bash ./libtool --tag=CC   --mode=compile gcc -DPACKAGE_NAME=\"demo\" -DPACKAGE_TARNAME=\"demo\" -DPACKAGE_VERSION=\"1.0\" -DPACKAGE_STRING=\"demo\ 1.0\" -DPACKAGE_BUGREPORT=\"bug-libtool&amp;lt; at &amp;gt;gnu.org\" -DPACKAGE_URL=\"\" -DPACKAGE=\"demo\" -DVERSION=\"1.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -I.  -I./../..   -g -O2 -c -o hello.lo hello.c
libtool: compile:  gcc -DPACKAGE_NAME=\"demo\" -DPACKAGE_TARNAME=\"demo\" -DPACKAGE_VERSION=\"1.0\" "-DPACKAGE_STRING=\"demo 1.0\"" -DPACKAGE_BUGREPORT=\"bug-libtool&amp;lt; at &amp;gt;gnu.org\" -DPACKAGE_URL=\"\" -DPACKAGE=\"demo\" -DVERSION=\"1.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -I. -I./../.. -g -O2 -c hello.c -o .libs/hello.o
libtool: compile:  gcc -DPACKAGE_NAME=\"demo\" -DPACKAGE_TARNAME=\"demo\" -DPACKAGE_VERSION=\"1.0\" "-DPACKAGE_STRING=\"demo 1.0\"" -DPACKAGE_BUGREPORT=\"bug-libtool&amp;lt; at &amp;gt;gnu.org\" -DPACKAGE_URL=\"\" -DPACKAGE=\"demo\" -DVERSION=\"1.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -I. -I./../.. -g -O2 -c hello.c -o hello.o &amp;gt;/dev/null 2&amp;gt;&amp;amp;1
/nix/store/xnd5ihy6cvjqj79dx4gzicj21yxqxhrq-bash-4.2/bin/bash ./libtool --tag=CC   --mode=compile gcc -DPACKAGE_NAME=\"demo\" -DPACKAGE_TARNAME=\"demo\" -DPACKAGE_VERSION=\"1.0\" -DPACKAGE_STRING=\"demo\ 1.0\" -DPACKAGE_BUGREPORT=\"bug-libtool&amp;lt; at &amp;gt;gnu.org\" -DPACKAGE_URL=\"\" -DPACKAGE=\"demo\" -DVERSION=\"1.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -I.  -I./../..   -g -O2 -c -o foo.lo foo.c
libtool: compile:  gcc -DPACKAGE_NAME=\"demo\" -DPACKAGE_TARNAME=\"demo\" -DPACKAGE_VERSION=\"1.0\" "-DPACKAGE_STRING=\"demo 1.0\"" -DPACKAGE_BUGREPORT=\"bug-libtool&amp;lt; at &amp;gt;gnu.org\" -DPACKAGE_URL=\"\" -DPACKAGE=\"demo\" -DVERSION=\"1.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -I. -I./../.. -g -O2 -c foo.c -o .libs/foo.o
libtool: compile:  gcc -DPACKAGE_NAME=\"demo\" -DPACKAGE_TARNAME=\"demo\" -DPACKAGE_VERSION=\"1.0\" "-DPACKAGE_STRING=\"demo 1.0\"" -DPACKAGE_BUGREPORT=\"bug-libtool&amp;lt; at &amp;gt;gnu.org\" -DPACKAGE_URL=\"\" -DPACKAGE=\"demo\" -DVERSION=\"1.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -I. -I./../.. -g -O2 -c foo.c -o foo.o &amp;gt;/dev/null 2&amp;gt;&amp;amp;1
/nix/store/xnd5ihy6cvjqj79dx4gzicj21yxqxhrq-bash-4.2/bin/bash ./libtool --tag=CC   --mode=link gcc  -g -O2 -no-undefined -version-info 3:12:1  -o libhello.la -rpath /usr/local/lib hello.lo foo.lo -lm -ldl 
libtool: link: gcc -shared  -fPIC -DPIC  .libs/hello.o .libs/foo.o   -lm -ldl  -O2   -Wl,-soname -Wl,libhello.so.2 -o .libs/libhello.so.2.1.12
ld: .libs/hello.o: relocation R_MIPS_HI16 against `__gnu_local_gp' can not be used when making a shared object; recompile with -fPIC
.libs/hello.o: could not read symbols: Bad value
collect2: error: ld returned 1 exit status
make: *** [libhello.la] Error 1

SKIP: tests/demo-nopic-exec.test (exit: 77)
===========================================

demo-nopic-exec.test: ===  Running demo-nopic-exec.test
demo-nopic-exec.test: ===  Running demo-nopic-exec.test
demo-nopic-exec.test: You must run demo-make.test before running ./tests/demo-nopic-exec.test
----------
&lt;/pre&gt;</description>
    <dc:creator>Nikita Karetnikov</dc:creator>
    <dc:date>2013-02-05T22:27:21</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8126">
    <title>bug#13550: problem with linking libpthread</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8126</link>
    <description>&lt;pre&gt;Hi Folks,

I have received bug which seems to be relevant to libtool
https://bugzilla.redhat.com/show_bug.cgi?id=661333

it refers to:
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25460

$ ~&amp;gt; cat testcase.cpp
#include &amp;lt;pthread.h&amp;gt;

void f(){ pthread_create(0,0,0,0); }
$ ~&amp;gt; libtool --mode=compile g++ -pthread -c testcase.cpp
libtool: compile:  g++ -pthread -c testcase.cpp  -fPIC -DPIC -o 
.libs/testcase.o
libtool: compile:  g++ -pthread -c testcase.cpp -o testcase.o &amp;gt;/dev/null 
2&amp;gt;&amp;amp;1
$ ~&amp;gt; libtool --mode=link g++ -pthread -rpath /lib/ testcase.lo -o 
libtestcase.la
libtool: link: g++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/i686-redhat-linux/4.7.2/../../../crti.o 
/usr/lib/gcc/i686-redhat-linux/4.7.2/crtbeginS.o  .libs/testcase.o 
-L/usr/lib/gcc/i686-redhat-linux/4.7.2 
-L/usr/lib/gcc/i686-redhat-linux/4.7.2/../../.. -lstdc++ -lm -lc -lgcc_s 
/usr/lib/gcc/i686-redhat-linux/4.7.2/crtendS.o 
/usr/lib/gcc/i686-redhat-linux/4.7.2/../../../crtn.o  -pthread -pthread 
-Wl,-soname -Wl,libtestcase.so.0 -o .libs/libtestcase.so.0.0.0
libtool: link: (cd ".libs" &amp;amp;&amp;amp; rm -f "libtestcase.so.0" &amp;amp;&amp;amp; ln -s 
"libtestcase.so.0.0.0" "libtestcase.so.0")
libtool: link: (cd ".libs" &amp;amp;&amp;amp; rm -f "libtestcase.so" &amp;amp;&amp;amp; ln -s 
"libtestcase.so.0.0.0" "libtestcase.so")
libtool: link: ar cru .libs/libtestcase.a  testcase.o
libtool: link: ranlib .libs/libtestcase.a
libtool: link: ( cd ".libs" &amp;amp;&amp;amp; rm -f "libtestcase.la" &amp;amp;&amp;amp; ln -s 
"../libtestcase.la" "libtestcase.la" )
$ ~&amp;gt; ldd -r .libs/libtestcase.so
     linux-gate.so.1 =&amp;gt;  (0xb7719000)
     libstdc++.so.6 =&amp;gt; /lib/libstdc++.so.6 (0xb760e000)
     libm.so.6 =&amp;gt; /lib/libm.so.6 (0xb75e3000)
     libc.so.6 =&amp;gt; /lib/libc.so.6 (0xb7431000)
     libgcc_s.so.1 =&amp;gt; /lib/libgcc_s.so.1 (0xb7414000)
     /lib/ld-linux.so.2 (0x4abcd000)
undefined symbol: pthread_create    (.libs/libtestcase.so)
$ ~&amp;gt;

library libpthread is not linking with my object file

versions of libtool and g++ are:
$ ~&amp;gt; libtool --version
libtool (GNU libtool) 2.4.2
Written by Gordon Matzigkeit &amp;lt;gord&amp;lt; at &amp;gt;gnu.ai.mit.edu&amp;gt;, 1996

Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
$ ~&amp;gt; g++ --version
g++ (GCC) 4.7.2 20120921 (Red Hat 4.7.2-2)
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

$ ~&amp;gt;

How can it be solved? It seems to be a bug in libtool, right?
Can it be a problem with ordering of lib flags in libtool?

&lt;/pre&gt;</description>
    <dc:creator>Petr Hracek</dc:creator>
    <dc:date>2013-01-25T16:57:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8113">
    <title>bug#13472: Execution mode can hang pc when parameter refers to bigfile</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8113</link>
    <description>&lt;pre&gt;Hi liboolers,

the problem — e.g. running the:

  libtool execute ls BIGfile

could stack computer atm (if user has swap enabled and) if the BIGfile
refers to really big file not containing new-lines.

For more info see the bug:

  http://bugzilla.redhat.com/636045

=====

The problem is that libtool is trying to guess whether the 'BIGfile' is
ltwrapper or not (I guess).  One step in this check is that libtool runs
sed for 'head' purposes:

  sed -e 4q BIGfile

The problem of this sed command is that it is probably buffering whole
"binary lines" (which may have gigabytes) into memory.  Don't know "how"
it is doing there, but 'head' utility hes _smaller_ space complexity (two
runs?).  Unfortunately, both sed &amp;amp; head could go through whole really big
file and it can take too long (+ sed costs too much memory).

If you see the Comment #7 in referenced bug, Paolo suggest to use 'dd'
utility.  It would be easy to use dd as sed's "limiter":

diff --git a/build-aux/ltmain.in b/build-aux/ltmain.in
index c8cdb9c..a92b3bb 100644
--- a/build-aux/ltmain.in
+++ b/build-aux/ltmain.in
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -575,7 +575,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; _LTECHO_EOF'
 func_lalib_p ()
 {
     test -f "$1" &amp;amp;&amp;amp;
-      $SED -e 4q "$1" 2&amp;gt;/dev/null \
+      dd if="$1" bs=16K count=1 2&amp;gt;/dev/null | $SED -e 4q 2&amp;gt;/dev/null \
         | $GREP "^# Generated by .*$PACKAGE" &amp;gt; /dev/null 2&amp;gt;&amp;amp;1
 }

Using sed as the head utility is quite common in libtool project, probably
it would be fine to generalize head task that (or other) way.  I am able
to prepare patch if you are interested.

Pavel








_______________________________________________
Bug-libtool mailing list
Bug-libtool&amp;lt; at &amp;gt;gnu.org
https://lists.gnu.org/mailman/listinfo/bug-libtool
&lt;/pre&gt;</description>
    <dc:creator>Pavel Raiskup</dc:creator>
    <dc:date>2013-01-17T11:09:44</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8112">
    <title>bug#13462: error: file 'build-aux/funclib.sh' not found</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8112</link>
    <description>&lt;pre&gt;Hi!

If I, in a dirty git checkout (added an insignificant newline) as
of today, do this

./bootstrap -fc
cd ..
mkdir foo
cd foo
../libtool/configure
make
make check

all is fine. If I then modify build-aux/ltmain.in (with another
insignificant newline) followed by

make

or
make check

I get:

  GEN      ../libtool-msvc/build-aux/ltmain.sh
inline-source:   error: file 'build-aux/funclib.sh' not found
inline-source:   error: file 'build-aux/options-parser' not found
  GEN      libtool

followed by numerous failures that appear to be related.

Cheers,
Peter
&lt;/pre&gt;</description>
    <dc:creator>Peter Rosin</dc:creator>
    <dc:date>2013-01-16T17:00:46</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8108">
    <title>bug#13414: Valid DLL def file mangled by libtool</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8108</link>
    <description>&lt;pre&gt;Hi,
I'd like to report a bug in libtool 2.4 (including the latest git 
revision) which mangles valid DLL def files under MinGW and makes the 
linker barf.

The bug is caused by incorect check for "EXPORTS" keyword in the def 
file which libtool does this way:
if test "x`$SED 1q $export_symbols`" != xEXPORTS; then ... [add another 
"EXPORTS" line at the beginning of file]

This test is incorrect because the "EXPORTS" keyword does not have to 
appear on the very first line. You should replace the test with this:
if test "x`$GREP EXPORTS $export_symbols`" != xEXPORTS; then ...

Also note that this test appears on several places throughout libtool 
sources (both as "xEXPORTS" and just "EXPORTS") so you need to fix all 
of them.

Regards,
Martin Doucha
&lt;/pre&gt;</description>
    <dc:creator>Martin Doucha</dc:creator>
    <dc:date>2013-01-11T11:34:26</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8107">
    <title>bug#13318: libtool make check errors</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8107</link>
    <description>&lt;pre&gt;Log attached

&lt;/pre&gt;</description>
    <dc:creator>Ronald Copley</dc:creator>
    <dc:date>2012-12-31T14:18:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8103">
    <title>bug#13202: Make Microsoft Visual C recognize the .S file extension</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8103</link>
    <description>&lt;pre&gt;Hi,

here is a suggestion how to make MSVC (cl.exe) recognize the standard 
extension for assembly code in C projects: Just add the compiler switch 
/Tc before the file inquestion, or use /TC toforce all files mentioned 
on the command line to be treated as C code.

Regards,
     Jan Rheinländer

_______________________________________________
Bug-libtool mailing list
Bug-libtool&amp;lt; at &amp;gt;gnu.org
https://lists.gnu.org/mailman/listinfo/bug-libtool
&lt;/pre&gt;</description>
    <dc:creator>Rheinländer</dc:creator>
    <dc:date>2012-12-17T00:41:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8102">
    <title>bug#13201: libtool 2.4.2 does not hide dynamic symbols on GNU/Linuxwith -export-symbols</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8102</link>
    <description>&lt;pre&gt;Hi,

I use -export-symbols to specify a list of symbols that should be
exported from the Library. Libtool translates this into a
--retain-symbols-file argument to GNU ld, which does not affect the
dynamic symbol table (see also binutils bug #11650 [1]).

Would it make sense to generate a version script internally in this case?

   Simon

[1] http://sourceware.org/bugzilla/show_bug.cgi?id=11650

_______________________________________________
Bug-libtool mailing list
Bug-libtool&amp;lt; at &amp;gt;gnu.org
https://lists.gnu.org/mailman/listinfo/bug-libtool
&lt;/pre&gt;</description>
    <dc:creator>Simon Richter</dc:creator>
    <dc:date>2012-12-16T16:26:46</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8101">
    <title>bug#13145: [GNU Libtool 2.4.2] testsuite: 10 failed</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8101</link>
    <description>&lt;pre&gt;## ----------------------------- ##
## GNU Libtool 2.4.2 test suite. ##
## ----------------------------- ##

testsuite: command line was:
  $ /home/richard/src/libtool/libtool-2.4.2/tests/testsuite MAKE=gmake CC=gcc CFLAGS=-g -O2 CPP=gcc -E CPPFLAGS= LD=/usr/bin/ld -64 LDFLAGS= LIBS= LN_S=ln -s NM=/opt/pkg/gnu/bin/nm -B RANLIB=ranlib AR=ar M4SH=autom4te --language=m4sh SED=/opt/pkg/bin/gsed STRIP=strip lt_INSTALL=/opt/pkg/bin/ginstall -c MANIFEST_TOOL=: OBJEXT=o EXEEXT= SHELL=/bin/sh CONFIG_SHELL=/bin/sh CXX=g++ CXXFLAGS=-g -O2 CXXCPP=g++ -E F77=gfortran FFLAGS=-g -O2 FC=gfortran FCFLAGS=-g -O2 GCJ= GCJFLAGS=-g -O2 lt_cv_to_host_file_cmd=func_convert_file_noop lt_cv_to_tool_file_cmd=func_convert_file_noop _lt_pkgdatadir=/home/richard/src/libtool/libtool-2.4.2/_build/.. LIBTOOLIZE=/home/richard/src/libtool/libtool-2.4.2/_build/libtoolize LIBTOOL=/home/richard/src/libtool/libtool-2.4.2/_build/libtool tst_aclocaldir=/home/richa
 rd/src/libtool/libtool-2.4.2/_build/../libltdl/m4

## ---------- ##
## ChangeLog. ##
## ---------- ##

| 2011-10-17  Gary V. Vaughan  &amp;lt;gary&amp;lt; at &amp;gt;gnu.org&amp;gt;
| 
| Release 2.4.2.
| * configure.ac, libltdl/configure.ac (AC_INIT): Bump version
| numbers.
| * NEWS: Update version number.
| 
| Replace leading spaces with tabs.
| * libltdl/m4/libtool.m4, libltdl/config/ltmain.m4sh: Replace leading
| spaces in soure code with tabs to match surrounding code.

## --------- ##
## Platform. ##
## --------- ##

hostname = devzone
uname -m = i86pc
uname -r = 5.11
uname -s = SunOS
uname -v = oi_151a7

/usr/bin/uname -p = i386
/bin/uname -X     = System = SunOS
Node = devzone
Release = 5.11
KernelID = oi_151a7
Machine = i86pc
BusType = &amp;lt;unknown&amp;gt;
Serial = &amp;lt;unknown&amp;gt;
Users = &amp;lt;unknown&amp;gt;
OEM# = 0
Origin# = 1
NumCPU = 8

/bin/arch              = i86pc
/usr/bin/arch -k       = i86pc
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /home/richard/src/libtool/libtool-2.4.2/_build/tests
PATH: /home/richard/src/libtool/libtool-2.4.2/tests
PATH: /opt/pkg/sbin
PATH: /opt/pkg/bin
PATH: /opt/pkg/gnu/bin
PATH: /opt/pkg/gcc47/bin
PATH: /usr/bin
PATH: /usr/sbin
PATH: /sbin

testsuite: atconfig:
| # Configurable variable values for building test suites.
| # Generated by ./config.status.
| # Copyright (C) 2012 Free Software Foundation, Inc.
| 
| # The test suite will define top_srcdir=/../.. etc.
| at_testdir='tests'
| abs_builddir='/home/richard/src/libtool/libtool-2.4.2/_build/tests'
| at_srcdir='../../tests'
| abs_srcdir='/home/richard/src/libtool/libtool-2.4.2/_build/../tests'
| at_top_srcdir='../..'
| abs_top_srcdir='/home/richard/src/libtool/libtool-2.4.2/_build/..'
| at_top_build_prefix='../'
| abs_top_builddir='/home/richard/src/libtool/libtool-2.4.2/_build'
| 
| # Backward compatibility with Autotest &amp;lt;= 2.59b:
| at_top_builddir=$at_top_build_prefix
| 
| AUTOTEST_PATH='tests'
| 
| SHELL=${CONFIG_SHELL-'/bin/sh'}

## ---------------- ##
## Tested programs. ##
## ---------------- ##

## ------------------ ##
## Running the tests. ##
## ------------------ ##
testsuite: starting at: Tue Dec 11 18:01:26 CET 2012
1. short option splitting (getopt-m4sh.at:85): ok     (sys0m0.10s)
2. enhanced shell short option splitting (getopt-m4sh.at:98): ok     (sys0m0.12s)
3. long option splitting (getopt-m4sh.at:119): ok     (sys0m0.08s)
4. XSI long option splitting (getopt-m4sh.at:132): ok     (sys0m0.12s)
5. option appending (getopt-m4sh.at:153): ok     (sys0m0.10s)
6. enhanced shell option appending (getopt-m4sh.at:169): ok     (sys0m0.12s)
7. libtoolize macro installation (libtoolize.at:83): ok     (sys0m0.08s)
8. libtoolize macro directory mismatch error (libtoolize.at:108): ok     (sys0m0.01s)
9. libtoolize macro serial update (libtoolize.at:128): ok     (sys0m0.37s)
11. diagnose missing LT_CONFIG_LTDL_DIR (libtoolize.at:281): ok     (sys0m0.32s)
12. copy ltdl.m4 with shared macro directory (libtoolize.at:426): ok     (sys0m0.19s)
13. correctly parse LTDL_INIT from configure.ac (libtoolize.at:438): ok     (sys0m0.19s)
14. diagnose missing LTDL_INIT invocation (libtoolize.at:450): ok     (sys0m0.31s)
15. upgrading verbatim style aclocal.m4 (libtoolize.at:527): ok     (sys0m0.57s)
16. verbatim aclocal.m4 w/o AC_CONFIG_MACRO_DIR (libtoolize.at:651): ok     (sys0m0.40s)
17. nonrecursive ltdl with AC_CONFIG_MACRO_DIR (libtoolize.at:783): ok     (sys0m0.29s)
18. subproject ltdl with non-shared directories (libtoolize.at:854): ok     (sys0m0.37s)
19. LIBTOOLIZE_OPTIONS (libtoolize.at:945): ok     (sys0m0.19s)
20. cleanup old installation (libtoolize.at:992): ok     (sys0m0.36s)
21. standard command line options (help.at:26): ok     (sys0m0.21s)
22. mode short-hands (help.at:45): ok     (sys0m0.25s)
23. debug tracing (help.at:97): ok     (sys0m0.70s)
24. duplicate members in archive tests (duplicate_members.at:25): ok     (sys0m0.49s)
25. duplicate convenience archive names (duplicate_conv.at:25): ok     (sys0m0.47s)
27. passing CC flags through libtool (flags.at:24): ok     (sys0m0.26s)
28. passing CXX flags through libtool (flags.at:24): ok     (sys0m0.29s)
29. passing F77 flags through libtool (flags.at:24): ok     (sys0m0.31s)
30. passing FC flags through libtool (flags.at:24): ok     (sys0m0.29s)
31. passing GCJ flags through libtool (flags.at:24): skipped (flags.at:24)
32. inherited_linker_flags (inherited_flags.at:26): ok     (sys0m0.49s)
33. C convenience archives (convenience.at:31): ok     (sys0m0.53s)
34. C++ convenience archives (convenience.at:70): ok     (sys0m0.65s)
35. F77 convenience archives (convenience.at:110): ok     (sys0m0.49s)
36. FC convenience archives (convenience.at:170): ok     (sys0m0.58s)
37. Java convenience archives (convenience.at:230): skipped (convenience.at:231)
38. Link order test (link-order.at:26): ok     (sys0m0.65s)
39. Link order of deplibs (link-order2.at:46): ok     (sys0m0.89s)
40. Failure tests (fail.at:27): ok     (sys0m0.28s)
41. shlibpath_overrides_runpath (shlibpath.at:25): ok     (sys0m0.18s)
42. Runpath in libtool library files (runpath-in-lalib.at:25): ok     (sys0m0.26s)
43. static linking flags for programs (static.at:68): ok     (sys0m1.88s)
44. ccache -all-static (static.at:358): ok     (sys0m0.02s)
45. Export test (export.at:25): ok     (sys0m0.60s)
46. sys_lib_search_path (search-path.at:24): ok     (sys0m0.05s)
47. sys_lib_search_path on w32 (search-path.at:62): skipped (search-path.at:83)
48. indirect convenience (indirect_deps.at:25): ok     (sys0m0.37s)
49. indirect uninstalled (indirect_deps.at:71): ok     (sys0m0.44s)
51. both of -o prog and -o prog$EXEEXT work (exeext.at:26): skipped (exeext.at:29)
52. execute mode (execute-mode.at:25): ok     (sys0m1.25s)
53. bindir basic lib test (bindir.at:64): ok     (sys0m0.31s)
54. bindir install tests (bindir.at:173): ok     (sys0m4.10s)
55. cwrapper for uninstalled executables (cwrapper.at:25): ok     (sys0m0.75s)
56. cwrapper string length (cwrapper.at:138): skipped (cwrapper.at:190)
57. cwrapper and installed shared libraries (cwrapper.at:201): ok     (sys0m0.18s)
58. deplib in subdir (deplib-in-subdir.at:34): ok     (sys0m1.01s)
59. inferred tag (infer-tag.at:30): ok     (sys0m0.04s)
60. CXX inferred tag (infer-tag.at:42): ok     (sys0m0.05s)
61. F77 inferred tag (infer-tag.at:55): ok     (sys0m0.06s)
62. FC inferred tag (infer-tag.at:69): ok     (sys0m0.03s)
63. GCJ inferred tag (infer-tag.at:83): skipped (infer-tag.at:84)
64. localized compiler messages (localization.at:24): ok     (sys0m0.09s)
65. nocase library search (nocase.at:26): skipped (nocase.at:31)
66. Install tests (install.at:25): ok     (sys0m0.11s)
67. versioning (versioning.at:24): ok     (sys0m0.90s)
68. Simple DESTDIR install (destdir.at:48): ok     (sys0m0.11s)
69. DESTDIR with in-package deplibs (destdir.at:75): ok     (sys0m0.50s)
70. AM_PROG_LIBTOOL (old-m4-iface.at:40): ok     (sys0m1.06s)
71. AC_WITH_LTDL (old-m4-iface.at:112): ok     (sys0m4.80s)
72. C subdir-objects (am-subdir.at:33): ok     (sys0m1.56s)
73. C++ subdir-objects (am-subdir.at:93): ok     (sys0m1.80s)
74. lt_dlexit unloading libs (lt_dlexit.at:30): ok     (sys0m0.20s)
75. lt_dlopenadvise library loading (lt_dladvise.at:28): ok     (sys0m0.28s)
77. lt_dlopen archive (lt_dlopen_a.at:23): ok     (sys0m0.16s)
78. lt_dlopenext error messages (lt_dlopenext.at:23): ok     (sys0m0.13s)
79. libdir of installed modules (ltdl-libdir.at:23): ok     (sys0m0.08s)
80. ltdl API (ltdl-api.at:25): ok     (sys0m0.01s)
81. dlloader API (dlloader-api.at:23): ok     (sys0m0.11s)
82. loadlibrary error messages (loadlibrary.at:23): skipped (loadlibrary.at:250)
84. resident modules (resident.at:27): ok     (sys0m0.12s)
85. SList functionality (slist.at:24): ok     (sys0m0.06s)
86. enforced lib prefix (need_lib_prefix.at:25): ok     (sys0m0.28s)
87. compiling softlinked libltdl (standalone.at:31): ok     (sys0m2.76s)
88. compiling copied libltdl (standalone.at:46): ok     (sys0m2.59s)
89. installable libltdl (standalone.at:61): ok     (sys0m2.62s)
90. linking libltdl without autotools (standalone.at:79): ok     (sys0m2.46s)
91. compiling softlinked libltdl (subproject.at:57): ok     (sys0m4.68s)
92. compiling copied libltdl (subproject.at:73): ok     (sys0m4.41s)
93. installable libltdl (subproject.at:89): ok     (sys0m5.37s)
94. linking libltdl without autotools (subproject.at:109): ok     (sys0m2.49s)
95. compiling softlinked libltdl (nonrecursive.at:78): ok     (sys0m3.10s)
96. compiling copied libltdl (nonrecursive.at:102): ok     (sys0m3.07s)
97. installable libltdl (nonrecursive.at:126): ok     (sys0m3.91s)
98. compiling softlinked libltdl (recursive.at:60): ok     (sys0m3.80s)
99. compiling copied libltdl (recursive.at:80): ok     (sys0m4.13s)
100. installable libltdl (recursive.at:100): ok     (sys0m4.65s)
101. simple template test (template.at:27): ok     (sys0m0.14s)
102. template test with subdirs (template.at:126): ok     (sys0m0.63s)
103. C++ static constructors (ctor.at:27): ok     (sys0m0.13s)
104. C++ exception handling (exceptions.at:24): ok     (sys0m0.68s)
105. config.status (early-libtool.at:32): ok     (sys0m1.42s)
106. config.lt (early-libtool.at:126): ok     (sys0m2.59s)
107. test --with-pic (with-pic.at:24): ok     (sys0m4.94s)
108. AC_NO_EXECUTABLES (no-executables.at:25): ok     (sys0m3.16s)
110. installable libltdl (configure-iface.at:102): ok     (sys0m5.06s)
111. --with-ltdl-include/lib (configure-iface.at:162): ok     (sys0m6.99s)
112. --with-included-ltdl (configure-iface.at:243): ok     (sys0m4.84s)
113. convenience libltdl (configure-iface.at:304): ok     (sys0m1.27s)
114. Link option thorough search test (stresstest.at:31): ok     (sys0m12.73s)
115. Run tests with low max_cmd_len (cmdline_wrap.at:28): ok     (sys0m32.71s)
116. override pic_flag at configure time (pic_flag.at:24): ok     (sys0m3.32s)
117. darwin fat compile (darwin.at:26): skipped (darwin.at:42)
118. darwin concurrent library extraction (darwin.at:103): ok     (sys0m0.92s)
119. darwin gdb debug information (darwin.at:152): skipped (darwin.at:154)
120. darwin ld warnings changing configure results (darwin.at:208): ok     (sys0m2.91s)
121. darwin can lt_dlopen .dylib and .so files (darwin.at:232): skipped (darwin.at:249)
122. dumpbin -symbols section hiding (dumpbin-symbols.at:25): skipped (dumpbin-symbols.at:42)
123. deplibs without file command (deplibs-mingw.at:27): ok     (sys0m0.17s)
124. -L=.../lib -l (sysroot.at:203): skipped (sysroot.at:203)
125. -L SYSROOT/.../lib -l (sysroot.at:204): skipped (sysroot.at:204)
126. SYSROOT/.../*.la (sysroot.at:205): skipped (sysroot.at:205)
testsuite: ending at: Tue Dec 11 18:28:35 CET 2012
testsuite: test suite duration: 0h 27m 9s

## ------------- ##
## Test results. ##
## ------------- ##

ERROR: 111 tests were run,
6 failed (5 expected failures).
15 tests were skipped.

## ------------------------ ##
## Summary of the failures. ##
## ------------------------ ##
Failed tests:
GNU Libtool 2.4.2 test suite test groups:

 NUM: FILE-NAME:LINE     TEST-GROUP-NAME
      KEYWORDS

  10: libtoolize.at:201  libtoolize config files serial update
      libtoolize

Skipped tests:
GNU Libtool 2.4.2 test suite test groups:

 NUM: FILE-NAME:LINE     TEST-GROUP-NAME
      KEYWORDS

  31: flags.at:24        passing GCJ flags through libtool
      libtool gcj
  37: convenience.at:230 Java convenience archives
      gcj libtool
  47: search-path.at:62  sys_lib_search_path on w32
      libtool
  51: exeext.at:26       both of -o prog and -o prog$EXEEXT work
      libtool
  56: cwrapper.at:138    cwrapper string length
  63: infer-tag.at:83    GCJ inferred tag
      gcj libtool
  65: nocase.at:26       nocase library search
      libtool
  82: loadlibrary.at:23  loadlibrary error messages
      libltdl
 117: darwin.at:26       darwin fat compile
 119: darwin.at:152      darwin gdb debug information
 121: darwin.at:232      darwin can lt_dlopen .dylib and .so files
      libltdl dylib
 122: dumpbin-symbols.at:25 dumpbin -symbols section hiding
 124: sysroot.at:203     -L=.../lib -l
      libtool sysroot libtoolize automake autoconf
 125: sysroot.at:204     -L SYSROOT/.../lib -l
      libtool sysroot libtoolize automake autoconf
 126: sysroot.at:205     SYSROOT/.../*.la
      libtool sysroot libtoolize automake autoconf

## ---------------------- ##
## Detailed failed tests. ##
## ---------------------- ##

#                             -*- compilation -*-
10. libtoolize.at:201: testing libtoolize config files serial update ...
../../tests/libtoolize.at:228: $LIBTOOLIZE --copy --install


../../tests/libtoolize.at:242: $LIBTOOLIZE --copy --install


--- experr2012-12-11 18:01:39.863672567 +0100
+++ /home/richard/src/libtool/libtool-2.4.2/_build/tests/testsuite.dir/at-groups/10/stderr2012-12-11 18:01:41.436058580 +0100
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1,2 +1,3 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+libtoolize: warning: no serial number in `/home/richard/src/libtool/libtool-2.4.2/_build/../libltdl/config/install-sh', not copying.
 libtoolize: `build-aux/ltmain.sh' is newer: use `--force' to overwrite
 libtoolize: `m4/ltoptions.m4' is newer: use `--force' to overwrite
10. libtoolize.at:201: 10. libtoolize config files serial update (libtoolize.at:201): FAILED (libtoolize.at:242)


## ------------- ##
## ../config.log ##
## ------------- ##
| This file contains any messages produced by compilers while
| running configure, to aid debugging if configure makes a mistake.
| 
| It was created by GNU Libtool configure 2.4.2, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   $ ../configure --srcdir=.. --prefix=/home/richard/src/libtool/libtool-2.4.2/_inst
| 
| ## --------- ##
| ## Platform. ##
| ## --------- ##
| 
| hostname = devzone
| uname -m = i86pc
| uname -r = 5.11
| uname -s = SunOS
| uname -v = oi_151a7
| 
| /usr/bin/uname -p = i386
| /bin/uname -X     = System = SunOS
| Node = devzone
| Release = 5.11
| KernelID = oi_151a7
| Machine = i86pc
| BusType = &amp;lt;unknown&amp;gt;
| Serial = &amp;lt;unknown&amp;gt;
| Users = &amp;lt;unknown&amp;gt;
| OEM# = 0
| Origin# = 1
| NumCPU = 8
| 
| /bin/arch              = i86pc
| /usr/bin/arch -k       = i86pc
| /usr/convex/getsysinfo = unknown
| /usr/bin/hostinfo      = unknown
| /bin/machine           = unknown
| /usr/bin/oslevel       = unknown
| /bin/universe          = unknown
| 
| PATH: /opt/pkg/sbin
| PATH: /opt/pkg/bin
| PATH: /opt/pkg/gnu/bin
| PATH: /opt/pkg/gcc47/bin
| PATH: /usr/bin
| PATH: /usr/sbin
| PATH: /sbin
| 
| 
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
| 
| configure:2725: checking for a BSD-compatible install
| configure:2793: result: /opt/pkg/bin/ginstall -c
| configure:2804: checking whether build environment is sane
| configure:2859: result: yes
| configure:3010: checking for a thread-safe mkdir -p
| configure:3049: result: /opt/pkg/bin/gmkdir -p
| configure:3056: checking for gawk
| configure:3072: found /opt/pkg/bin/gawk
| configure:3083: result: gawk
| configure:3094: checking whether make sets $(MAKE)
| configure:3116: result: yes
| configure:3216: checking build system type
| configure:3230: result: x86_64-pc-solaris2.11
| configure:3250: checking host system type
| configure:3263: result: x86_64-pc-solaris2.11
| configure:3290: autobuild project... GNU Libtool
| configure:3296: autobuild revision... 2.4.2 ()
| configure:3301: autobuild hostname... devzone
| configure:3305: autobuild mode... default
| configure:3313: autobuild timestamp... 20121211T165353Z
| configure:3412: checking for gcc
| configure:3428: found /opt/pkg/gcc47/bin/gcc
| configure:3439: result: gcc
| configure:3668: checking for C compiler version
| configure:3677: gcc --version &amp;gt;&amp;amp;5
| gcc (GCC) 4.7.2
| Copyright (C) 2012 Free Software Foundation, Inc.
| This is free software; see the source for copying conditions.  There is NO
| warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
| 
| configure:3688: $? = 0
| configure:3677: gcc -v &amp;gt;&amp;amp;5
| Using built-in specs.
| COLLECT_GCC=gcc
| COLLECT_LTO_WRAPPER=/opt/pkg/gcc47/libexec/gcc/x86_64-sun-solaris2.11/4.7.2/lto-wrapper
| Target: x86_64-sun-solaris2.11
| Configured with: ../gcc-4.7.2/configure --enable-languages='c obj-c++ objc go fortran c++' --enable-shared --enable-long-long --with-local-prefix=/opt/pkg/gcc47 --enable-libssp --enable-threads=posix --with-boot-ldflags='-static-libstdc++ -static-libgcc -Wl,-R/opt/pkg/lib' --disable-nls --enable-__cxa_atexit --with-gxx-include-dir=/opt/pkg/gcc47/include/c++/ --without-gnu-ld --with-ld=/usr/bin/ld --with-gnu-as --with-as=/opt/pkg/bin/gas --prefix=/opt/pkg/gcc47 --build=x86_64-sun-solaris2.11 --host=x86_64-sun-solaris2.11 --infodir=/opt/pkg/gcc47/info --mandir=/opt/pkg/gcc47/man
| Thread model: posix
| gcc version 4.7.2 (GCC) 
| configure:3688: $? = 0
| configure:3677: gcc -V &amp;gt;&amp;amp;5
| gcc: error: unrecognized command line option '-V'
| gcc: fatal error: no input files
| compilation terminated.
| configure:3688: $? = 1
| configure:3677: gcc -qversion &amp;gt;&amp;amp;5
| gcc: error: unrecognized command line option '-qversion'
| gcc: fatal error: no input files
| compilation terminated.
| configure:3688: $? = 1
| configure:3708: checking whether the C compiler works
| configure:3730: gcc    conftest.c  &amp;gt;&amp;amp;5
| configure:3734: $? = 0
| configure:3782: result: yes
| configure:3785: checking for C compiler default output file name
| configure:3787: result: a.out
| configure:3793: checking for suffix of executables
| configure:3800: gcc -o conftest    conftest.c  &amp;gt;&amp;amp;5
| configure:3804: $? = 0
| configure:3826: result: 
| configure:3848: checking whether we are cross compiling
| configure:3856: gcc -o conftest    conftest.c  &amp;gt;&amp;amp;5
| configure:3860: $? = 0
| configure:3867: ./conftest
| configure:3871: $? = 0
| configure:3886: result: no
| configure:3891: checking for suffix of object files
| configure:3913: gcc -c   conftest.c &amp;gt;&amp;amp;5
| configure:3917: $? = 0
| configure:3938: result: o
| configure:3942: checking whether we are using the GNU C compiler
| configure:3961: gcc -c   conftest.c &amp;gt;&amp;amp;5
| configure:3961: $? = 0
| configure:3970: result: yes
| configure:3979: checking whether gcc accepts -g
| configure:3999: gcc -c -g  conftest.c &amp;gt;&amp;amp;5
| configure:3999: $? = 0
| configure:4040: result: yes
| configure:4057: checking for gcc option to accept ISO C89
| configure:4120: gcc  -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:4120: $? = 0
| configure:4133: result: none needed
| configure:4164: checking for style of include used by make
| configure:4192: result: GNU
| configure:4218: checking dependency style of gcc
| configure:4329: result: gcc3
| configure:4345: checking whether gcc and cc understand -c and -o together
| configure:4376: gcc -c conftest.c -o conftest2.o &amp;gt;&amp;amp;5
| configure:4380: $? = 0
| configure:4386: gcc -c conftest.c -o conftest2.o &amp;gt;&amp;amp;5
| configure:4390: $? = 0
| configure:4401: cc -c conftest.c &amp;gt;&amp;amp;5
| configure:4405: $? = 0
| configure:4413: cc -c conftest.c -o conftest2.o &amp;gt;&amp;amp;5
| configure:4417: $? = 0
| configure:4423: cc -c conftest.c -o conftest2.o &amp;gt;&amp;amp;5
| configure:4427: $? = 0
| configure:4445: result: yes
| configure:4475: checking how to run the C preprocessor
| configure:4506: gcc -E  conftest.c
| configure:4506: $? = 0
| configure:4520: gcc -E  conftest.c
| conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
| compilation terminated.
| configure:4520: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | /* end confdefs.h.  */
| | #include &amp;lt;ac_nonexistent.h&amp;gt;
| configure:4545: result: gcc -E
| configure:4565: gcc -E  conftest.c
| configure:4565: $? = 0
| configure:4579: gcc -E  conftest.c
| conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
| compilation terminated.
| configure:4579: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | /* end confdefs.h.  */
| | #include &amp;lt;ac_nonexistent.h&amp;gt;
| configure:4657: checking how to print strings
| configure:4686: result: print -r
| configure:4705: checking for a sed that does not truncate output
| configure:4769: result: /opt/pkg/bin/gsed
| configure:4787: checking for grep that handles long lines and -e
| configure:4845: result: /opt/pkg/bin/ggrep
| configure:4850: checking for egrep
| configure:4912: result: /opt/pkg/bin/ggrep -E
| configure:4917: checking for fgrep
| configure:4979: result: /opt/pkg/bin/ggrep -F
| configure:5014: checking for ld used by gcc
| configure:5081: result: /usr/bin/ld
| configure:5088: checking if the linker (/usr/bin/ld) is GNU ld
| configure:5103: result: no
| configure:5115: checking for BSD- or MS-compatible name lister (nm)
| configure:5164: result: /opt/pkg/gnu/bin/nm -B
| configure:5294: checking the name lister (/opt/pkg/gnu/bin/nm -B) interface
| configure:5301: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:5304: /opt/pkg/gnu/bin/nm -B "conftest.o"
| configure:5307: output
| 0000000000000000 B some_variable
| configure:5314: result: BSD nm
| configure:5317: checking whether ln -s works
| configure:5321: result: yes
| configure:5329: checking the maximum length of command line arguments
| configure:5459: result: 786240
| configure:5476: checking whether the shell understands some XSI constructs
| configure:5486: result: yes
| configure:5490: checking whether the shell understands "+="
| configure:5496: result: yes
| configure:5531: checking how to convert x86_64-pc-solaris2.11 file names to x86_64-pc-solaris2.11 format
| configure:5571: result: func_convert_file_noop
| configure:5578: checking how to convert x86_64-pc-solaris2.11 file names to toolchain format
| configure:5598: result: func_convert_file_noop
| configure:5605: checking for /usr/bin/ld option to reload object files
| configure:5612: result: -r
| configure:5686: checking for objdump
| configure:5702: found /opt/pkg/gnu/bin/objdump
| configure:5713: result: objdump
| configure:5742: checking how to recognize dependent libraries
| configure:5944: result: pass_all
| configure:6029: checking for dlltool
| configure:6059: result: no
| configure:6086: checking how to associate runtime and link libraries
| configure:6113: result: print -r --
| configure:6174: checking for ar
| configure:6190: found /opt/pkg/gnu/bin/ar
| configure:6201: result: ar
| configure:6238: checking for archiver &amp;lt; at &amp;gt;FILE support
| configure:6255: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:6255: $? = 0
| configure:6258: ar cru libconftest.a &amp;lt; at &amp;gt;conftest.lst &amp;gt;&amp;amp;5
| configure:6261: $? = 0
| configure:6266: ar cru libconftest.a &amp;lt; at &amp;gt;conftest.lst &amp;gt;&amp;amp;5
| ar: conftest.o: No such file or directory
| configure:6269: $? = 1
| configure:6281: result: &amp;lt; at &amp;gt;
| configure:6339: checking for strip
| configure:6355: found /opt/pkg/gnu/bin/strip
| configure:6366: result: strip
| configure:6438: checking for ranlib
| configure:6454: found /opt/pkg/gnu/bin/ranlib
| configure:6465: result: ranlib
| configure:6567: checking command to parse /opt/pkg/gnu/bin/nm -B output from gcc object
| configure:6687: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:6690: $? = 0
| configure:6694: /opt/pkg/gnu/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \&amp;gt; conftest.nm
| configure:6697: $? = 0
| configure:6763: gcc -o conftest -g -O2   conftest.c conftstm.o &amp;gt;&amp;amp;5
| configure:6766: $? = 0
| configure:6804: result: ok
| configure:6841: checking for sysroot
| configure:6871: result: no
| configure:7047: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:7050: $? = 0
| configure:7127: checking for mt
| configure:7143: found /usr/bin/mt
| configure:7154: result: mt
| configure:7177: checking if mt is a manifest tool
| configure:7183: mt '-?'
| mt: unknown command: -?
| configure:7191: result: no
| configure:7829: checking for ANSI C header files
| configure:7849: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:7849: $? = 0
| configure:7922: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| configure:7922: $? = 0
| configure:7922: ./conftest
| configure:7922: $? = 0
| configure:7933: result: yes
| configure:7946: checking for sys/types.h
| configure:7946: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:7946: $? = 0
| configure:7946: result: yes
| configure:7946: checking for sys/stat.h
| configure:7946: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:7946: $? = 0
| configure:7946: result: yes
| configure:7946: checking for stdlib.h
| configure:7946: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:7946: $? = 0
| configure:7946: result: yes
| configure:7946: checking for string.h
| configure:7946: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:7946: $? = 0
| configure:7946: result: yes
| configure:7946: checking for memory.h
| configure:7946: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:7946: $? = 0
| configure:7946: result: yes
| configure:7946: checking for strings.h
| configure:7946: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:7946: $? = 0
| configure:7946: result: yes
| configure:7946: checking for inttypes.h
| configure:7946: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:7946: $? = 0
| configure:7946: result: yes
| configure:7946: checking for stdint.h
| configure:7946: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:7946: $? = 0
| configure:7946: result: yes
| configure:7946: checking for unistd.h
| configure:7946: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:7946: $? = 0
| configure:7946: result: yes
| configure:7960: checking for dlfcn.h
| configure:7960: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:7960: $? = 0
| configure:7960: result: yes
| configure:8463: checking for objdir
| configure:8478: result: .libs
| configure:8749: checking if gcc supports -fno-rtti -fno-exceptions
| configure:8767: gcc -c -g -O2  -fno-rtti -fno-exceptions conftest.c &amp;gt;&amp;amp;5
| cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default]
| configure:8771: $? = 0
| configure:8784: result: no
| configure:9111: checking for gcc option to produce PIC
| configure:9118: result: -fPIC -DPIC
| configure:9126: checking if gcc PIC flag -fPIC -DPIC works
| configure:9144: gcc -c -g -O2  -fPIC -DPIC -DPIC conftest.c &amp;gt;&amp;amp;5
| configure:9148: $? = 0
| configure:9161: result: yes
| configure:9190: checking if gcc static flag -static works
| configure:9218: result: no
| configure:9233: checking if gcc supports -c -o file.o
| configure:9254: gcc -c -g -O2  -o out/conftest2.o conftest.c &amp;gt;&amp;amp;5
| configure:9258: $? = 0
| configure:9280: result: yes
| configure:9288: checking if gcc supports -c -o file.o
| configure:9335: result: yes
| configure:9368: checking whether the gcc linker (/usr/bin/ld -64) supports shared libraries
| configure:10521: result: yes
| configure:10558: checking whether -lc should be explicitly linked in
| configure:10566: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:10569: $? = 0
| configure:10584: gcc -shared  -fPIC -DPIC -Wl,-z -Wl,text -Wl,-h -Wl,conftest -o conftest conftest.o  -v 2\&amp;gt;\&amp;amp;1 \| /opt/pkg/bin/ggrep  -lc  \&amp;gt;/dev/null 2\&amp;gt;\&amp;amp;1
| configure:10587: $? = 0
| configure:10601: result: no
| configure:10761: checking dynamic linker characteristics
| configure:11494: result: solaris2.11 ld.so
| configure:11601: checking how to hardcode library paths into programs
| configure:11626: result: immediate
| configure:11720: checking for shl_load
| configure:11720: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| Undefinedfirst referenced
|  symbol      in file
| shl_load                            /var/tmp//ccDTaion.o
| ld: fatal: symbol referencing errors. No output written to conftest
| collect2: error: ld returned 1 exit status
| configure:11720: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | /* end confdefs.h.  */
| | /* Define shl_load to an innocuous variant, in case &amp;lt;limits.h&amp;gt; declares shl_load.
| |    For example, HP-UX 11i &amp;lt;limits.h&amp;gt; declares gettimeofday.  */
| | #define shl_load innocuous_shl_load
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char shl_load (); below.
| |     Prefer &amp;lt;limits.h&amp;gt; to &amp;lt;assert.h&amp;gt; if __STDC__ is defined, since
| |     &amp;lt;limits.h&amp;gt; exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include &amp;lt;limits.h&amp;gt;
| | #else
| | # include &amp;lt;assert.h&amp;gt;
| | #endif
| | 
| | #undef shl_load
| | 
| | /* Override any GCC internal prototype to avoid an error.
| |    Use char because int might match the return type of a GCC
| |    builtin and then its argument prototype would still apply.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char shl_load ();
| | /* The GNU C library defines this for functions which it implements
| |     to always fail with ENOSYS.  Some functions are actually named
| |     something starting with __ and the normal name is an alias.  */
| | #if defined __stub_shl_load || defined __stub___shl_load
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return shl_load ();
| |   ;
| |   return 0;
| | }
| configure:11720: result: no
| configure:11724: checking for shl_load in -ldld
| configure:11749: gcc -o conftest -g -O2   conftest.c -ldld   &amp;gt;&amp;amp;5
| ld: fatal: library -ldld: not found
| ld: fatal: file processing errors. No output written to conftest
| collect2: error: ld returned 1 exit status
| configure:11749: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | /* end confdefs.h.  */
| | 
| | /* Override any GCC internal prototype to avoid an error.
| |    Use char because int might match the return type of a GCC
| |    builtin and then its argument prototype would still apply.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char shl_load ();
| | int
| | main ()
| | {
| | return shl_load ();
| |   ;
| |   return 0;
| | }
| configure:11758: result: no
| configure:11763: checking for dlopen
| configure:11763: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| configure:11763: $? = 0
| configure:11763: result: yes
| configure:11920: checking whether a program can dlopen itself
| configure:12000: gcc -o conftest -g -O2  -DHAVE_DLFCN_H   conftest.c   &amp;gt;&amp;amp;5
| configure:12003: $? = 0
| configure:12021: result: yes
| configure:12026: checking whether a statically linked program can dlopen itself
| configure:12106: gcc -o conftest -g -O2  -DHAVE_DLFCN_H    conftest.c   &amp;gt;&amp;amp;5
| configure:12109: $? = 0
| configure:12127: result: yes
| configure:12166: checking whether stripping libraries is possible
| configure:12171: result: yes
| configure:12206: checking if libtool supports shared libraries
| configure:12208: result: yes
| configure:12211: checking whether to build shared libraries
| configure:12232: result: yes
| configure:12235: checking whether to build static libraries
| configure:12239: result: yes
| configure:12277: checking which extension is used for runtime loadable modules
| configure:12289: result: .so
| configure:12306: checking which variable specifies run-time module search path
| configure:12313: result: LD_LIBRARY_PATH
| configure:12323: checking for the default library search path
| configure:12330: result: /lib /usr/lib
| configure:12360: checking for library containing dlopen
| configure:12391: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| configure:12391: $? = 0
| configure:12408: result: none required
| configure:12498: checking for dlerror
| configure:12498: gcc -o conftest -g -O2   conftest.c   &amp;gt;&amp;amp;5
| configure:12498: $? = 0
| configure:12498: result: yes
| configure:12512: checking for shl_load
| configure:12512: result: no
| configure:12519: checking for shl_load in -ldld
| configure:12553: result: no
| configure:12599: checking for dld_link in -ldld
| configure:12624: gcc -o conftest -g -O2   conftest.c -ldld   &amp;gt;&amp;amp;5
| ld: fatal: library -ldld: not found
| ld: fatal: file processing errors. No output written to conftest
| collect2: error: ld returned 1 exit status
| configure:12624: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | /* end confdefs.h.  */
| | 
| | /* Override any GCC internal prototype to avoid an error.
| |    Use char because int might match the return type of a GCC
| |    builtin and then its argument prototype would still apply.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char dld_link ();
| | int
| | main ()
| | {
| | return dld_link ();
| |   ;
| |   return 0;
| | }
| configure:12633: result: no
| configure:12667: checking for _ prefix in compiled symbols
| configure:12677: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:12680: $? = 0
| configure:12684: /opt/pkg/gnu/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \&amp;gt; conftest.nm
| configure:12687: $? = 0
| configure:12709: result: no
| configure:12833: checking whether deplibs are loaded by dlopen
| configure:12927: result: yes
| configure:12939: checking for argz.h
| configure:12939: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| conftest.c:63:18: fatal error: argz.h: No such file or directory
| compilation terminated.
| configure:12939: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | /* end confdefs.h.  */
| | #include &amp;lt;stdio.h&amp;gt;
| | #ifdef HAVE_SYS_TYPES_H
| | # include &amp;lt;sys/types.h&amp;gt;
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include &amp;lt;sys/stat.h&amp;gt;
| | #endif
| | #ifdef STDC_HEADERS
| | # include &amp;lt;stdlib.h&amp;gt;
| | # include &amp;lt;stddef.h&amp;gt;
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include &amp;lt;stdlib.h&amp;gt;
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS &amp;amp;&amp;amp; defined HAVE_MEMORY_H
| | #  include &amp;lt;memory.h&amp;gt;
| | # endif
| | # include &amp;lt;string.h&amp;gt;
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include &amp;lt;strings.h&amp;gt;
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include &amp;lt;inttypes.h&amp;gt;
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include &amp;lt;stdint.h&amp;gt;
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include &amp;lt;unistd.h&amp;gt;
| | #endif
| | 
| | #include &amp;lt;argz.h&amp;gt;
| configure:12939: result: no
| configure:12951: checking for error_t
| configure:12951: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| conftest.c: In function 'main':
| conftest.c:36:13: error: 'error_t' undeclared (first use in this function)
| conftest.c:36:13: note: each undeclared identifier is reported only once for each function it appears in
| configure:12951: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | /* end confdefs.h.  */
| | #if defined(HAVE_ARGZ_H)
| | #  include &amp;lt;argz.h&amp;gt;
| | #endif
| | 
| | int
| | main ()
| | {
| | if (sizeof (error_t))
| |  return 0;
| |   ;
| |   return 0;
| | }
| configure:12951: result: no
| configure:12977: checking for argz_add
| configure:12977: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| Undefinedfirst referenced
|  symbol      in file
| argz_add                            /var/tmp//ccEda4En.o
| ld: fatal: symbol referencing errors. No output written to conftest
| collect2: error: ld returned 1 exit status
| configure:12977: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | /* end confdefs.h.  */
| | /* Define argz_add to an innocuous variant, in case &amp;lt;limits.h&amp;gt; declares argz_add.
| |    For example, HP-UX 11i &amp;lt;limits.h&amp;gt; declares gettimeofday.  */
| | #define argz_add innocuous_argz_add
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char argz_add (); below.
| |     Prefer &amp;lt;limits.h&amp;gt; to &amp;lt;assert.h&amp;gt; if __STDC__ is defined, since
| |     &amp;lt;limits.h&amp;gt; exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include &amp;lt;limits.h&amp;gt;
| | #else
| | # include &amp;lt;assert.h&amp;gt;
| | #endif
| | 
| | #undef argz_add
| | 
| | /* Override any GCC internal prototype to avoid an error.
| |    Use char because int might match the return type of a GCC
| |    builtin and then its argument prototype would still apply.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char argz_add ();
| | /* The GNU C library defines this for functions which it implements
| |     to always fail with ENOSYS.  Some functions are actually named
| |     something starting with __ and the normal name is an alias.  */
| | #if defined __stub_argz_add || defined __stub___argz_add
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return argz_add ();
| |   ;
| |   return 0;
| | }
| configure:12977: result: no
| configure:12977: checking for argz_append
| configure:12977: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| Undefinedfirst referenced
|  symbol      in file
| argz_append                         /var/tmp//ccWfaaHn.o
| ld: fatal: symbol referencing errors. No output written to conftest
| collect2: error: ld returned 1 exit status
| configure:12977: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | /* end confdefs.h.  */
| | /* Define argz_append to an innocuous variant, in case &amp;lt;limits.h&amp;gt; declares argz_append.
| |    For example, HP-UX 11i &amp;lt;limits.h&amp;gt; declares gettimeofday.  */
| | #define argz_append innocuous_argz_append
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char argz_append (); below.
| |     Prefer &amp;lt;limits.h&amp;gt; to &amp;lt;assert.h&amp;gt; if __STDC__ is defined, since
| |     &amp;lt;limits.h&amp;gt; exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include &amp;lt;limits.h&amp;gt;
| | #else
| | # include &amp;lt;assert.h&amp;gt;
| | #endif
| | 
| | #undef argz_append
| | 
| | /* Override any GCC internal prototype to avoid an error.
| |    Use char because int might match the return type of a GCC
| |    builtin and then its argument prototype would still apply.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char argz_append ();
| | /* The GNU C library defines this for functions which it implements
| |     to always fail with ENOSYS.  Some functions are actually named
| |     something starting with __ and the normal name is an alias.  */
| | #if defined __stub_argz_append || defined __stub___argz_append
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return argz_append ();
| |   ;
| |   return 0;
| | }
| configure:12977: result: no
| configure:12977: checking for argz_count
| configure:12977: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| Undefinedfirst referenced
|  symbol      in file
| argz_count                          /var/tmp//cc2iaiJn.o
| ld: fatal: symbol referencing errors. No output written to conftest
| collect2: error: ld returned 1 exit status
| configure:12977: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | /* end confdefs.h.  */
| | /* Define argz_count to an innocuous variant, in case &amp;lt;limits.h&amp;gt; declares argz_count.
| |    For example, HP-UX 11i &amp;lt;limits.h&amp;gt; declares gettimeofday.  */
| | #define argz_count innocuous_argz_count
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char argz_count (); below.
| |     Prefer &amp;lt;limits.h&amp;gt; to &amp;lt;assert.h&amp;gt; if __STDC__ is defined, since
| |     &amp;lt;limits.h&amp;gt; exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include &amp;lt;limits.h&amp;gt;
| | #else
| | # include &amp;lt;assert.h&amp;gt;
| | #endif
| | 
| | #undef argz_count
| | 
| | /* Override any GCC internal prototype to avoid an error.
| |    Use char because int might match the return type of a GCC
| |    builtin and then its argument prototype would still apply.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char argz_count ();
| | /* The GNU C library defines this for functions which it implements
| |     to always fail with ENOSYS.  Some functions are actually named
| |     something starting with __ and the normal name is an alias.  */
| | #if defined __stub_argz_count || defined __stub___argz_count
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return argz_count ();
| |   ;
| |   return 0;
| | }
| configure:12977: result: no
| configure:12977: checking for argz_create_sep
| configure:12977: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| Undefinedfirst referenced
|  symbol      in file
| argz_create_sep                     /var/tmp//ccklaqLn.o
| ld: fatal: symbol referencing errors. No output written to conftest
| collect2: error: ld returned 1 exit status
| configure:12977: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | /* end confdefs.h.  */
| | /* Define argz_create_sep to an innocuous variant, in case &amp;lt;limits.h&amp;gt; declares argz_create_sep.
| |    For example, HP-UX 11i &amp;lt;limits.h&amp;gt; declares gettimeofday.  */
| | #define argz_create_sep innocuous_argz_create_sep
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char argz_create_sep (); below.
| |     Prefer &amp;lt;limits.h&amp;gt; to &amp;lt;assert.h&amp;gt; if __STDC__ is defined, since
| |     &amp;lt;limits.h&amp;gt; exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include &amp;lt;limits.h&amp;gt;
| | #else
| | # include &amp;lt;assert.h&amp;gt;
| | #endif
| | 
| | #undef argz_create_sep
| | 
| | /* Override any GCC internal prototype to avoid an error.
| |    Use char because int might match the return type of a GCC
| |    builtin and then its argument prototype would still apply.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char argz_create_sep ();
| | /* The GNU C library defines this for functions which it implements
| |     to always fail with ENOSYS.  Some functions are actually named
| |     something starting with __ and the normal name is an alias.  */
| | #if defined __stub_argz_create_sep || defined __stub___argz_create_sep
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return argz_create_sep ();
| |   ;
| |   return 0;
| | }
| configure:12977: result: no
| configure:12977: checking for argz_insert
| configure:12977: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| Undefinedfirst referenced
|  symbol      in file
| argz_insert                         /var/tmp//ccRnayNn.o
| ld: fatal: symbol referencing errors. No output written to conftest
| collect2: error: ld returned 1 exit status
| configure:12977: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | /* end confdefs.h.  */
| | /* Define argz_insert to an innocuous variant, in case &amp;lt;limits.h&amp;gt; declares argz_insert.
| |    For example, HP-UX 11i &amp;lt;limits.h&amp;gt; declares gettimeofday.  */
| | #define argz_insert innocuous_argz_insert
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char argz_insert (); below.
| |     Prefer &amp;lt;limits.h&amp;gt; to &amp;lt;assert.h&amp;gt; if __STDC__ is defined, since
| |     &amp;lt;limits.h&amp;gt; exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include &amp;lt;limits.h&amp;gt;
| | #else
| | # include &amp;lt;assert.h&amp;gt;
| | #endif
| | 
| | #undef argz_insert
| | 
| | /* Override any GCC internal prototype to avoid an error.
| |    Use char because int might match the return type of a GCC
| |    builtin and then its argument prototype would still apply.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char argz_insert ();
| | /* The GNU C library defines this for functions which it implements
| |     to always fail with ENOSYS.  Some functions are actually named
| |     something starting with __ and the normal name is an alias.  */
| | #if defined __stub_argz_insert || defined __stub___argz_insert
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return argz_insert ();
| |   ;
| |   return 0;
| | }
| configure:12977: result: no
| configure:12977: checking for argz_next
| configure:12977: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| Undefinedfirst referenced
|  symbol      in file
| argz_next                           /var/tmp//ccQqaGPn.o
| ld: fatal: symbol referencing errors. No output written to conftest
| collect2: error: ld returned 1 exit status
| configure:12977: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | /* end confdefs.h.  */
| | /* Define argz_next to an innocuous variant, in case &amp;lt;limits.h&amp;gt; declares argz_next.
| |    For example, HP-UX 11i &amp;lt;limits.h&amp;gt; declares gettimeofday.  */
| | #define argz_next innocuous_argz_next
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char argz_next (); below.
| |     Prefer &amp;lt;limits.h&amp;gt; to &amp;lt;assert.h&amp;gt; if __STDC__ is defined, since
| |     &amp;lt;limits.h&amp;gt; exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include &amp;lt;limits.h&amp;gt;
| | #else
| | # include &amp;lt;assert.h&amp;gt;
| | #endif
| | 
| | #undef argz_next
| | 
| | /* Override any GCC internal prototype to avoid an error.
| |    Use char because int might match the return type of a GCC
| |    builtin and then its argument prototype would still apply.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char argz_next ();
| | /* The GNU C library defines this for functions which it implements
| |     to always fail with ENOSYS.  Some functions are actually named
| |     something starting with __ and the normal name is an alias.  */
| | #if defined __stub_argz_next || defined __stub___argz_next
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return argz_next ();
| |   ;
| |   return 0;
| | }
| configure:12977: result: no
| configure:12977: checking for argz_stringify
| configure:12977: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| Undefinedfirst referenced
|  symbol      in file
| argz_stringify                      /var/tmp//ccmtaORn.o
| ld: fatal: symbol referencing errors. No output written to conftest
| collect2: error: ld returned 1 exit status
| configure:12977: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | /* end confdefs.h.  */
| | /* Define argz_stringify to an innocuous variant, in case &amp;lt;limits.h&amp;gt; declares argz_stringify.
| |    For example, HP-UX 11i &amp;lt;limits.h&amp;gt; declares gettimeofday.  */
| | #define argz_stringify innocuous_argz_stringify
| | 
| | /* System header to define __stub macros and hopefully few prototypes,
| |     which can conflict with char argz_stringify (); below.
| |     Prefer &amp;lt;limits.h&amp;gt; to &amp;lt;assert.h&amp;gt; if __STDC__ is defined, since
| |     &amp;lt;limits.h&amp;gt; exists even on freestanding compilers.  */
| | 
| | #ifdef __STDC__
| | # include &amp;lt;limits.h&amp;gt;
| | #else
| | # include &amp;lt;assert.h&amp;gt;
| | #endif
| | 
| | #undef argz_stringify
| | 
| | /* Override any GCC internal prototype to avoid an error.
| |    Use char because int might match the return type of a GCC
| |    builtin and then its argument prototype would still apply.  */
| | #ifdef __cplusplus
| | extern "C"
| | #endif
| | char argz_stringify ();
| | /* The GNU C library defines this for functions which it implements
| |     to always fail with ENOSYS.  Some functions are actually named
| |     something starting with __ and the normal name is an alias.  */
| | #if defined __stub_argz_stringify || defined __stub___argz_stringify
| | choke me
| | #endif
| | 
| | int
| | main ()
| | {
| | return argz_stringify ();
| |   ;
| |   return 0;
| | }
| configure:12977: result: no
| configure:13045: checking whether libtool supports -dlopen/-dlpreopen
| configure:13057: result: yes
| configure:13110: checking for unistd.h
| configure:13110: result: yes
| configure:13110: checking for dl.h
| configure:13110: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| conftest.c:67:16: fatal error: dl.h: No such file or directory
| compilation terminated.
| configure:13110: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | #define HAVE_PRELOADED_SYMBOLS 1
| | #define HAVE_UNISTD_H 1
| | /* end confdefs.h.  */
| | #include &amp;lt;stdio.h&amp;gt;
| | #ifdef HAVE_SYS_TYPES_H
| | # include &amp;lt;sys/types.h&amp;gt;
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include &amp;lt;sys/stat.h&amp;gt;
| | #endif
| | #ifdef STDC_HEADERS
| | # include &amp;lt;stdlib.h&amp;gt;
| | # include &amp;lt;stddef.h&amp;gt;
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include &amp;lt;stdlib.h&amp;gt;
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS &amp;amp;&amp;amp; defined HAVE_MEMORY_H
| | #  include &amp;lt;memory.h&amp;gt;
| | # endif
| | # include &amp;lt;string.h&amp;gt;
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include &amp;lt;strings.h&amp;gt;
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include &amp;lt;inttypes.h&amp;gt;
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include &amp;lt;stdint.h&amp;gt;
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include &amp;lt;unistd.h&amp;gt;
| | #endif
| | 
| | #include &amp;lt;dl.h&amp;gt;
| configure:13110: result: no
| configure:13110: checking for sys/dl.h
| configure:13110: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:13110: $? = 0
| configure:13110: result: yes
| configure:13110: checking for dld.h
| configure:13110: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| conftest.c:68:17: fatal error: dld.h: No such file or directory
| compilation terminated.
| configure:13110: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | #define HAVE_PRELOADED_SYMBOLS 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_SYS_DL_H 1
| | /* end confdefs.h.  */
| | #include &amp;lt;stdio.h&amp;gt;
| | #ifdef HAVE_SYS_TYPES_H
| | # include &amp;lt;sys/types.h&amp;gt;
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include &amp;lt;sys/stat.h&amp;gt;
| | #endif
| | #ifdef STDC_HEADERS
| | # include &amp;lt;stdlib.h&amp;gt;
| | # include &amp;lt;stddef.h&amp;gt;
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include &amp;lt;stdlib.h&amp;gt;
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS &amp;amp;&amp;amp; defined HAVE_MEMORY_H
| | #  include &amp;lt;memory.h&amp;gt;
| | # endif
| | # include &amp;lt;string.h&amp;gt;
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include &amp;lt;strings.h&amp;gt;
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include &amp;lt;inttypes.h&amp;gt;
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include &amp;lt;stdint.h&amp;gt;
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include &amp;lt;unistd.h&amp;gt;
| | #endif
| | 
| | #include &amp;lt;dld.h&amp;gt;
| configure:13110: result: no
| configure:13110: checking for mach-o/dyld.h
| configure:13110: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| conftest.c:68:25: fatal error: mach-o/dyld.h: No such file or directory
| compilation terminated.
| configure:13110: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | #define HAVE_PRELOADED_SYMBOLS 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_SYS_DL_H 1
| | /* end confdefs.h.  */
| | #include &amp;lt;stdio.h&amp;gt;
| | #ifdef HAVE_SYS_TYPES_H
| | # include &amp;lt;sys/types.h&amp;gt;
| | #endif
| | #ifdef HAVE_SYS_STAT_H
| | # include &amp;lt;sys/stat.h&amp;gt;
| | #endif
| | #ifdef STDC_HEADERS
| | # include &amp;lt;stdlib.h&amp;gt;
| | # include &amp;lt;stddef.h&amp;gt;
| | #else
| | # ifdef HAVE_STDLIB_H
| | #  include &amp;lt;stdlib.h&amp;gt;
| | # endif
| | #endif
| | #ifdef HAVE_STRING_H
| | # if !defined STDC_HEADERS &amp;amp;&amp;amp; defined HAVE_MEMORY_H
| | #  include &amp;lt;memory.h&amp;gt;
| | # endif
| | # include &amp;lt;string.h&amp;gt;
| | #endif
| | #ifdef HAVE_STRINGS_H
| | # include &amp;lt;strings.h&amp;gt;
| | #endif
| | #ifdef HAVE_INTTYPES_H
| | # include &amp;lt;inttypes.h&amp;gt;
| | #endif
| | #ifdef HAVE_STDINT_H
| | # include &amp;lt;stdint.h&amp;gt;
| | #endif
| | #ifdef HAVE_UNISTD_H
| | # include &amp;lt;unistd.h&amp;gt;
| | #endif
| | 
| | #include &amp;lt;mach-o/dyld.h&amp;gt;
| configure:13110: result: no
| configure:13110: checking for dirent.h
| configure:13110: gcc -c -g -O2  conftest.c &amp;gt;&amp;amp;5
| configure:13110: $? = 0
| configure:13110: result: yes
| configure:13125: checking for closedir
| configure:13125: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| configure:13125: $? = 0
| configure:13125: result: yes
| configure:13125: checking for opendir
| configure:13125: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| configure:13125: $? = 0
| configure:13125: result: yes
| configure:13125: checking for readdir
| configure:13125: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| configure:13125: $? = 0
| configure:13125: result: yes
| configure:13144: checking for strlcat
| configure:13144: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| configure:13144: $? = 0
| configure:13144: result: yes
| configure:13144: checking for strlcpy
| configure:13144: gcc -o conftest -g -O2   conftest.c  &amp;gt;&amp;amp;5
| configure:13144: $? = 0
| configure:13144: result: yes
| configure:13239: checking for g++
| configure:13255: found /opt/pkg/gcc47/bin/g++
| configure:13266: result: g++
| configure:13293: checking for C++ compiler version
| configure:13302: g++ --version &amp;gt;&amp;amp;5
| g++ (GCC) 4.7.2
| Copyright (C) 2012 Free Software Foundation, Inc.
| This is free software; see the source for copying conditions.  There is NO
| warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
| 
| configure:13313: $? = 0
| configure:13302: g++ -v &amp;gt;&amp;amp;5
| Using built-in specs.
| COLLECT_GCC=g++
| COLLECT_LTO_WRAPPER=/opt/pkg/gcc47/libexec/gcc/x86_64-sun-solaris2.11/4.7.2/lto-wrapper
| Target: x86_64-sun-solaris2.11
| Configured with: ../gcc-4.7.2/configure --enable-languages='c obj-c++ objc go fortran c++' --enable-shared --enable-long-long --with-local-prefix=/opt/pkg/gcc47 --enable-libssp --enable-threads=posix --with-boot-ldflags='-static-libstdc++ -static-libgcc -Wl,-R/opt/pkg/lib' --disable-nls --enable-__cxa_atexit --with-gxx-include-dir=/opt/pkg/gcc47/include/c++/ --without-gnu-ld --with-ld=/usr/bin/ld --with-gnu-as --with-as=/opt/pkg/bin/gas --prefix=/opt/pkg/gcc47 --build=x86_64-sun-solaris2.11 --host=x86_64-sun-solaris2.11 --infodir=/opt/pkg/gcc47/info --mandir=/opt/pkg/gcc47/man
| Thread model: posix
| gcc version 4.7.2 (GCC) 
| configure:13313: $? = 0
| configure:13302: g++ -V &amp;gt;&amp;amp;5
| g++: error: unrecognized command line option '-V'
| g++: fatal error: no input files
| compilation terminated.
| configure:13313: $? = 1
| configure:13302: g++ -qversion &amp;gt;&amp;amp;5
| g++: error: unrecognized command line option '-qversion'
| g++: fatal error: no input files
| compilation terminated.
| configure:13313: $? = 1
| configure:13317: checking whether we are using the GNU C++ compiler
| configure:13336: g++ -c   conftest.cpp &amp;gt;&amp;amp;5
| configure:13336: $? = 0
| configure:13345: result: yes
| configure:13354: checking whether g++ accepts -g
| configure:13374: g++ -c -g  conftest.cpp &amp;gt;&amp;amp;5
| configure:13374: $? = 0
| configure:13415: result: yes
| configure:13440: checking dependency style of g++
| configure:13551: result: gcc3
| configure:13585: checking how to run the C++ preprocessor
| configure:13612: g++ -E  conftest.cpp
| configure:13612: $? = 0
| configure:13626: g++ -E  conftest.cpp
| conftest.cpp:42:28: fatal error: ac_nonexistent.h: No such file or directory
| compilation terminated.
| configure:13626: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | #define HAVE_PRELOADED_SYMBOLS 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_SYS_DL_H 1
| | #define HAVE_DIRENT_H 1
| | #define HAVE_CLOSEDIR 1
| | #define HAVE_OPENDIR 1
| | #define HAVE_READDIR 1
| | #define HAVE_STRLCAT 1
| | #define HAVE_STRLCPY 1
| | #define LT_LIBEXT "a"
| | #define LT_LIBPREFIX "lib"
| | /* end confdefs.h.  */
| | #include &amp;lt;ac_nonexistent.h&amp;gt;
| configure:13651: result: g++ -E
| configure:13671: g++ -E  conftest.cpp
| configure:13671: $? = 0
| configure:13685: g++ -E  conftest.cpp
| conftest.cpp:42:28: fatal error: ac_nonexistent.h: No such file or directory
| compilation terminated.
| configure:13685: $? = 1
| configure: failed program was:
| | /* confdefs.h */
| | #define PACKAGE_NAME "GNU Libtool"
| | #define PACKAGE_TARNAME "libtool"
| | #define PACKAGE_VERSION "2.4.2"
| | #define PACKAGE_STRING "GNU Libtool 2.4.2"
| | #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| | #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| | #define PACKAGE "libtool"
| | #define VERSION "2.4.2"
| | #define STDC_HEADERS 1
| | #define HAVE_SYS_TYPES_H 1
| | #define HAVE_SYS_STAT_H 1
| | #define HAVE_STDLIB_H 1
| | #define HAVE_STRING_H 1
| | #define HAVE_MEMORY_H 1
| | #define HAVE_STRINGS_H 1
| | #define HAVE_INTTYPES_H 1
| | #define HAVE_STDINT_H 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_DLFCN_H 1
| | #define LT_OBJDIR ".libs/"
| | #define LT_MODULE_EXT ".so"
| | #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| | #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| | #define HAVE_LIBDL 1
| | #define HAVE_DLERROR 1
| | #define HAVE_LIBDLLOADER 1
| | #define error_t int
| | #define __error_t_defined 1
| | #define HAVE_PRELOADED_SYMBOLS 1
| | #define HAVE_UNISTD_H 1
| | #define HAVE_SYS_DL_H 1
| | #define HAVE_DIRENT_H 1
| | #define HAVE_CLOSEDIR 1
| | #define HAVE_OPENDIR 1
| | #define HAVE_READDIR 1
| | #define HAVE_STRLCAT 1
| | #define HAVE_STRLCPY 1
| | #define LT_LIBEXT "a"
| | #define LT_LIBPREFIX "lib"
| | /* end confdefs.h.  */
| | #include &amp;lt;ac_nonexistent.h&amp;gt;
| configure:13854: checking for ld used by g++
| configure:13921: result: /usr/bin/ld -64
| configure:13928: checking if the linker (/usr/bin/ld -64) is GNU ld
| configure:13943: result: no
| configure:13998: checking whether the g++ linker (/usr/bin/ld -64) supports shared libraries
| configure:15003: result: yes
| configure:15039: g++ -c -g -O2  conftest.cpp &amp;gt;&amp;amp;5
| configure:15042: $? = 0
| configure:15562: checking for g++ option to produce PIC
| configure:15569: result: -fPIC -DPIC
| configure:15577: checking if g++ PIC flag -fPIC -DPIC works
| configure:15595: g++ -c -g -O2  -fPIC -DPIC -DPIC conftest.cpp &amp;gt;&amp;amp;5
| configure:15599: $? = 0
| configure:15612: result: yes
| configure:15635: checking if g++ static flag -static works
| configure:15663: result: no
| configure:15675: checking if g++ supports -c -o file.o
| configure:15696: g++ -c -g -O2  -o out/conftest2.o conftest.cpp &amp;gt;&amp;amp;5
| configure:15700: $? = 0
| configure:15722: result: yes
| configure:15727: checking if g++ supports -c -o file.o
| configure:15774: result: yes
| configure:15804: checking whether the g++ linker (/usr/bin/ld -64) supports shared libraries
| configure:15840: result: yes
| configure:15981: checking dynamic linker characteristics
| configure:16648: result: solaris2.11 ld.so
| configure:16701: checking how to hardcode library paths into programs
| configure:16726: result: immediate
| configure:16819: checking for g77
| configure:16849: result: no
| configure:16819: checking for xlf
| configure:16849: result: no
| configure:16819: checking for f77
| configure:16849: result: no
| configure:16819: checking for frt
| configure:16849: result: no
| configure:16819: checking for pgf77
| configure:16849: result: no
| configure:16819: checking for cf77
| configure:16849: result: no
| configure:16819: checking for fort77
| configure:16849: result: no
| configure:16819: checking for fl32
| configure:16849: result: no
| configure:16819: checking for af77
| configure:16849: result: no
| configure:16819: checking for xlf90
| configure:16849: result: no
| configure:16819: checking for f90
| configure:16849: result: no
| configure:16819: checking for pgf90
| configure:16849: result: no
| configure:16819: checking for pghpf
| configure:16849: result: no
| configure:16819: checking for epcf90
| configure:16849: result: no
| configure:16819: checking for gfortran
| configure:16835: found /opt/pkg/gcc47/bin/gfortran
| configure:16846: result: gfortran
| configure:16872: checking for Fortran 77 compiler version
| configure:16881: gfortran --version &amp;gt;&amp;amp;5
| GNU Fortran (GCC) 4.7.2
| Copyright (C) 2012 Free Software Foundation, Inc.
| 
| GNU Fortran comes with NO WARRANTY, to the extent permitted by law.
| You may redistribute copies of GNU Fortran
| under the terms of the GNU General Public License.
| For more information about these matters, see the file named COPYING
| 
| configure:16892: $? = 0
| configure:16881: gfortran -v &amp;gt;&amp;amp;5
| Using built-in specs.
| COLLECT_GCC=gfortran
| COLLECT_LTO_WRAPPER=/opt/pkg/gcc47/libexec/gcc/x86_64-sun-solaris2.11/4.7.2/lto-wrapper
| Target: x86_64-sun-solaris2.11
| Configured with: ../gcc-4.7.2/configure --enable-languages='c obj-c++ objc go fortran c++' --enable-shared --enable-long-long --with-local-prefix=/opt/pkg/gcc47 --enable-libssp --enable-threads=posix --with-boot-ldflags='-static-libstdc++ -static-libgcc -Wl,-R/opt/pkg/lib' --disable-nls --enable-__cxa_atexit --with-gxx-include-dir=/opt/pkg/gcc47/include/c++/ --without-gnu-ld --with-ld=/usr/bin/ld --with-gnu-as --with-as=/opt/pkg/bin/gas --prefix=/opt/pkg/gcc47 --build=x86_64-sun-solaris2.11 --host=x86_64-sun-solaris2.11 --infodir=/opt/pkg/gcc47/info --mandir=/opt/pkg/gcc47/man
| Thread model: posix
| gcc version 4.7.2 (GCC) 
| configure:16892: $? = 0
| configure:16881: gfortran -V &amp;gt;&amp;amp;5
| gfortran: error: unrecognized command line option '-V'
| gfortran: fatal error: no input files
| compilation terminated.
| configure:16892: $? = 1
| configure:16881: gfortran -qversion &amp;gt;&amp;amp;5
| gfortran: error: unrecognized command line option '-qversion'
| gfortran: fatal error: no input files
| compilation terminated.
| configure:16892: $? = 1
| configure:16901: checking whether we are using the GNU Fortran 77 compiler
| configure:16914: gfortran -c  conftest.F &amp;gt;&amp;amp;5
| configure:16914: $? = 0
| configure:16923: result: yes
| configure:16929: checking whether gfortran accepts -g
| configure:16940: gfortran -c -g conftest.f &amp;gt;&amp;amp;5
| configure:16940: $? = 0
| configure:16948: result: yes
| configure:17084: checking if libtool supports shared libraries
| configure:17086: result: yes
| configure:17089: checking whether to build shared libraries
| configure:17109: result: yes
| configure:17112: checking whether to build static libraries
| configure:17116: result: yes
| configure:17437: checking for gfortran option to produce PIC
| configure:17444: result: -fPIC
| configure:17452: checking if gfortran PIC flag -fPIC works
| configure:17470: gfortran -c -g -O2 -fPIC conftest.f &amp;gt;&amp;amp;5
| configure:17474: $? = 0
| configure:17487: result: yes
| configure:17510: checking if gfortran static flag -static works
| configure:17538: result: no
| configure:17550: checking if gfortran supports -c -o file.o
| configure:17571: gfortran -c -g -O2 -o out/conftest2.o conftest.f &amp;gt;&amp;amp;5
| configure:17575: $? = 0
| configure:17597: result: yes
| configure:17602: checking if gfortran supports -c -o file.o
| configure:17649: result: yes
| configure:17679: checking whether the gfortran linker (/usr/bin/ld -64) supports shared libraries
| configure:18782: result: yes
| configure:18923: checking dynamic linker characteristics
| configure:19584: result: solaris2.11 ld.so
| configure:19637: checking how to hardcode library paths into programs
| configure:19662: result: immediate
| configure:19748: checking for gfortran
| configure:19764: found /opt/pkg/gcc47/bin/gfortran
| configure:19775: result: gfortran
| configure:19801: checking for Fortran compiler version
| configure:19810: gfortran --version &amp;gt;&amp;amp;5
| GNU Fortran (GCC) 4.7.2
| Copyright (C) 2012 Free Software Foundation, Inc.
| 
| GNU Fortran comes with NO WARRANTY, to the extent permitted by law.
| You may redistribute copies of GNU Fortran
| under the terms of the GNU General Public License.
| For more information about these matters, see the file named COPYING
| 
| configure:19821: $? = 0
| configure:19810: gfortran -v &amp;gt;&amp;amp;5
| Using built-in specs.
| COLLECT_GCC=gfortran
| COLLECT_LTO_WRAPPER=/opt/pkg/gcc47/libexec/gcc/x86_64-sun-solaris2.11/4.7.2/lto-wrapper
| Target: x86_64-sun-solaris2.11
| Configured with: ../gcc-4.7.2/configure --enable-languages='c obj-c++ objc go fortran c++' --enable-shared --enable-long-long --with-local-prefix=/opt/pkg/gcc47 --enable-libssp --enable-threads=posix --with-boot-ldflags='-static-libstdc++ -static-libgcc -Wl,-R/opt/pkg/lib' --disable-nls --enable-__cxa_atexit --with-gxx-include-dir=/opt/pkg/gcc47/include/c++/ --without-gnu-ld --with-ld=/usr/bin/ld --with-gnu-as --with-as=/opt/pkg/bin/gas --prefix=/opt/pkg/gcc47 --build=x86_64-sun-solaris2.11 --host=x86_64-sun-solaris2.11 --infodir=/opt/pkg/gcc47/info --mandir=/opt/pkg/gcc47/man
| Thread model: posix
| gcc version 4.7.2 (GCC) 
| configure:19821: $? = 0
| configure:19810: gfortran -V &amp;gt;&amp;amp;5
| gfortran: error: unrecognized command line option '-V'
| gfortran: fatal error: no input files
| compilation terminated.
| configure:19821: $? = 1
| configure:19810: gfortran -qversion &amp;gt;&amp;amp;5
| gfortran: error: unrecognized command line option '-qversion'
| gfortran: fatal error: no input files
| compilation terminated.
| configure:19821: $? = 1
| configure:19830: checking whether we are using the GNU Fortran compiler
| configure:19843: gfortran -c   conftest.F &amp;gt;&amp;amp;5
| configure:19843: $? = 0
| configure:19852: result: yes
| configure:19858: checking whether gfortran accepts -g
| configure:19869: gfortran -c -g  conftest.f &amp;gt;&amp;amp;5
| configure:19869: $? = 0
| configure:19877: result: yes
| configure:20016: checking if libtool supports shared libraries
| configure:20018: result: yes
| configure:20021: checking whether to build shared libraries
| configure:20041: result: yes
| configure:20044: checking whether to build static libraries
| configure:20048: result: yes
| configure:20082: gfortran -c -g -O2  conftest.f &amp;gt;&amp;amp;5
| configure:20085: $? = 0
| configure:20514: checking for gfortran option to produce PIC
| configure:20521: result: -fPIC
| configure:20529: checking if gfortran PIC flag -fPIC works
| configure:20547: gfortran -c -g -O2 -fPIC  conftest.f &amp;gt;&amp;amp;5
| configure:20551: $? = 0
| configure:20564: result: yes
| configure:20587: checking if gfortran static flag -static works
| configure:20615: result: no
| configure:20627: checking if gfortran supports -c -o file.o
| configure:20648: gfortran -c -g -O2 -o out/conftest2.o  conftest.f &amp;gt;&amp;amp;5
| configure:20652: $? = 0
| configure:20674: result: yes
| configure:20679: checking if gfortran supports -c -o file.o
| configure:20726: result: yes
| configure:20756: checking whether the gfortran linker (/usr/bin/ld -64) supports shared libraries
| configure:21859: result: yes
| configure:22000: checking dynamic linker characteristics
| configure:22661: result: solaris2.11 ld.so
| configure:22714: checking how to hardcode library paths into programs
| configure:22739: result: immediate
| configure:22815: checking for gccgo
| configure:22831: found /opt/pkg/gcc47/bin/gccgo
| configure:22842: result: gccgo
| configure:22955: checking if gccgo supports -fno-rtti -fno-exceptions
| configure:22990: result: no
| configure:23314: checking for gccgo option to produce PIC
| configure:23321: result: -fPIC
| configure:23329: checking if gccgo PIC flag -fPIC works
| configure:23347: gccgo -c   -fPIC conftest.go &amp;gt;&amp;amp;5
| configure:23351: $? = 0
| configure:23364: result: yes
| configure:23387: checking if gccgo static flag -static works
| configure:23415: result: no
| configure:23427: checking if gccgo supports -c -o file.o
| configure:23448: gccgo -c   -o out/conftest2.o conftest.go &amp;gt;&amp;amp;5
| configure:23452: $? = 0
| configure:23474: result: yes
| configure:23479: checking if gccgo supports -c -o file.o
| configure:23526: result: yes
| configure:23556: checking whether the gccgo linker (/usr/bin/ld -64) supports shared libraries
| configure:24670: result: yes
| configure:24811: checking how to hardcode library paths into programs
| configure:24836: result: immediate
| configure:24911: checking for gcj
| configure:24941: result: no
| configure:27008: checking for windres
| configure:27038: result: no
| configure:27191: checking whether make supports order-only prerequisites
| configure:27215: result: yes
| configure:27345: checking that generated files are newer than configure
| configure:27351: result: done
| configure:27407: creating ./config.status
| 
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
| 
| This file was extended by GNU Libtool config.status 2.4.2, which was
| generated by GNU Autoconf 2.69.  Invocation command line was
| 
|   CONFIG_FILES    = 
|   CONFIG_HEADERS  = 
|   CONFIG_LINKS    = 
|   CONFIG_COMMANDS = 
|   $ ./config.status 
| 
| on devzone
| 
| config.status:1466: creating Makefile
| config.status:1466: creating config.h
| config.status:1680: executing tests/atconfig commands
| config.status:1680: executing depfiles commands
| config.status:1680: executing libtool commands
| 
| ## ---------------- ##
| ## Cache variables. ##
| ## ---------------- ##
| 
| ac_cv_build=x86_64-pc-solaris2.11
| ac_cv_c_compiler_gnu=yes
| ac_cv_cxx_compiler_gnu=yes
| ac_cv_env_CCC_set=''
| ac_cv_env_CCC_value=''
| ac_cv_env_CC_set=''
| ac_cv_env_CC_value=''
| ac_cv_env_CFLAGS_set=''
| ac_cv_env_CFLAGS_value=''
| ac_cv_env_CPPFLAGS_set=''
| ac_cv_env_CPPFLAGS_value=''
| ac_cv_env_CPP_set=''
| ac_cv_env_CPP_value=''
| ac_cv_env_CXXCPP_set=''
| ac_cv_env_CXXCPP_value=''
| ac_cv_env_CXXFLAGS_set=''
| ac_cv_env_CXXFLAGS_value=''
| ac_cv_env_CXX_set=''
| ac_cv_env_CXX_value=''
| ac_cv_env_F77_set=''
| ac_cv_env_F77_value=''
| ac_cv_env_FCFLAGS_set=''
| ac_cv_env_FCFLAGS_value=''
| ac_cv_env_FC_set=''
| ac_cv_env_FC_value=''
| ac_cv_env_FFLAGS_set=''
| ac_cv_env_FFLAGS_value=''
| ac_cv_env_LDFLAGS_set=''
| ac_cv_env_LDFLAGS_value=''
| ac_cv_env_LIBS_set=''
| ac_cv_env_LIBS_value=''
| ac_cv_env_build_alias_set=''
| ac_cv_env_build_alias_value=''
| ac_cv_env_host_alias_set=''
| ac_cv_env_host_alias_value=''
| ac_cv_env_target_alias_set=''
| ac_cv_env_target_alias_value=''
| ac_cv_f77_compiler_gnu=yes
| ac_cv_fc_compiler_gnu=yes
| ac_cv_func_argz_add=no
| ac_cv_func_argz_append=no
| ac_cv_func_argz_count=no
| ac_cv_func_argz_create_sep=no
| ac_cv_func_argz_insert=no
| ac_cv_func_argz_next=no
| ac_cv_func_argz_stringify=no
| ac_cv_func_closedir=yes
| ac_cv_func_dlerror=yes
| ac_cv_func_dlopen=yes
| ac_cv_func_opendir=yes
| ac_cv_func_readdir=yes
| ac_cv_func_shl_load=no
| ac_cv_func_strlcat=yes
| ac_cv_func_strlcpy=yes
| ac_cv_header_argz_h=no
| ac_cv_header_dirent_h=yes
| ac_cv_header_dl_h=no
| ac_cv_header_dld_h=no
| ac_cv_header_dlfcn_h=yes
| ac_cv_header_inttypes_h=yes
| ac_cv_header_mach_o_dyld_h=no
| ac_cv_header_memory_h=yes
| ac_cv_header_stdc=yes
| ac_cv_header_stdint_h=yes
| ac_cv_header_stdlib_h=yes
| ac_cv_header_string_h=yes
| ac_cv_header_strings_h=yes
| ac_cv_header_sys_dl_h=yes
| ac_cv_header_sys_stat_h=yes
| ac_cv_header_sys_types_h=yes
| ac_cv_header_unistd_h=yes
| ac_cv_host=x86_64-pc-solaris2.11
| ac_cv_lib_dld_dld_link=no
| ac_cv_lib_dld_shl_load=no
| ac_cv_objext=o
| ac_cv_path_EGREP='/opt/pkg/bin/ggrep -E'
| ac_cv_path_FGREP='/opt/pkg/bin/ggrep -F'
| ac_cv_path_GREP=/opt/pkg/bin/ggrep
| ac_cv_path_SED=/opt/pkg/bin/gsed
| ac_cv_path_install='/opt/pkg/bin/ginstall -c'
| ac_cv_path_mkdir=/opt/pkg/bin/gmkdir
| ac_cv_prog_AWK=gawk
| ac_cv_prog_CPP='gcc -E'
| ac_cv_prog_CXXCPP='g++ -E'
| ac_cv_prog_ac_ct_AR=ar
| ac_cv_prog_ac_ct_CC=gcc
| ac_cv_prog_ac_ct_CXX=g++
| ac_cv_prog_ac_ct_F77=gfortran
| ac_cv_prog_ac_ct_FC=gfortran
| ac_cv_prog_ac_ct_GOC=gccgo
| ac_cv_prog_ac_ct_MANIFEST_TOOL=mt
| ac_cv_prog_ac_ct_OBJDUMP=objdump
| ac_cv_prog_ac_ct_RANLIB=ranlib
| ac_cv_prog_ac_ct_STRIP=strip
| ac_cv_prog_cc_c89=''
| ac_cv_prog_cc_g=yes
| ac_cv_prog_cc_gcc_c_o=yes
| ac_cv_prog_cxx_g=yes
| ac_cv_prog_f77_g=yes
| ac_cv_prog_fc_g=yes
| ac_cv_prog_make_make_set=yes
| ac_cv_search_dlopen='none required'
| ac_cv_type_error_t=no
| am_cv_CC_dependencies_compiler_type=gcc3
| am_cv_CXX_dependencies_compiler_type=gcc3
| libltdl_cv_lib_dl_dlopen=yes
| libltdl_cv_preloaded_symbols=yes
| libltdl_cv_shlibext=.so
| libltdl_cv_shrext=.so
| lt_cv_ar_at_file=&amp;lt; at &amp;gt;
| lt_cv_archive_cmds_need_lc=no
| lt_cv_deplibs_check_method=pass_all
| lt_cv_dlopen=dlopen
| lt_cv_dlopen_libs=''
| lt_cv_dlopen_self=yes
| lt_cv_dlopen_self_static=yes
| lt_cv_file_magic_cmd='$MAGIC_CMD'
| lt_cv_file_magic_test_file=''
| lt_cv_ld_reload_flag=-r
| lt_cv_make_order_only=yes
| lt_cv_module_path_var=LD_LIBRARY_PATH
| lt_cv_nm_interface='BSD nm'
| lt_cv_objdir=.libs
| lt_cv_path_LD=/usr/bin/ld
| lt_cv_path_LDCXX='/usr/bin/ld -64'
| lt_cv_path_NM='/opt/pkg/gnu/bin/nm -B'
| lt_cv_path_mainfest_tool=no
| lt_cv_prog_compiler_c_o=yes
| lt_cv_prog_compiler_c_o_CXX=yes
| lt_cv_prog_compiler_c_o_F77=yes
| lt_cv_prog_compiler_c_o_FC=yes
| lt_cv_prog_compiler_c_o_GO=yes
| lt_cv_prog_compiler_c_o_RC=yes
| lt_cv_prog_compiler_pic='-fPIC -DPIC'
| lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC'
| lt_cv_prog_compiler_pic_F77=-fPIC
| lt_cv_prog_compiler_pic_FC=-fPIC
| lt_cv_prog_compiler_pic_GO=-fPIC
| lt_cv_prog_compiler_pic_works=yes
| lt_cv_prog_compiler_pic_works_CXX=yes
| lt_cv_prog_compiler_pic_works_F77=yes
| lt_cv_prog_compiler_pic_works_FC=yes
| lt_cv_prog_compiler_pic_works_GO=yes
| lt_cv_prog_compiler_rtti_exceptions=no
| lt_cv_prog_compiler_static_works=no
| lt_cv_prog_compiler_static_works_CXX=no
| lt_cv_prog_compiler_static_works_F77=no
| lt_cv_prog_compiler_static_works_FC=no
| lt_cv_prog_compiler_static_works_GO=no
| lt_cv_prog_gnu_ld=no
| lt_cv_prog_gnu_ldcxx=no
| lt_cv_sharedlib_from_linklib_cmd='print -r --'
| lt_cv_sys_dlopen_deplibs=yes
| lt_cv_sys_dlsearch_path='/lib /usr/lib'
| lt_cv_sys_global_symbol_pipe=$'sed -n -e \'s/^.*[\t ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[\t ][\t ]*\\([_A-Za-z][_A-Za-z0-9]*\\)$/\\1 \\2 \\2/p\' | sed \'/ __gnu_lto/d\''
| lt_cv_sys_global_symbol_to_c_name_address=$'sed -n -e \'s/^: \\([^ ]*\\)[ ]*$/  {\\"\\1\\", (void *) 0},/p\' -e \'s/^[ABCDGIRSTW]* \\([^ ]*\\) \\([^ ]*\\)$/  {"\\2", (void *) \\&amp;amp;\\2},/p\''
| lt_cv_sys_global_symbol_to_c_name_address_lib_prefix=$'sed -n -e \'s/^: \\([^ ]*\\)[ ]*$/  {\\"\\1\\", (void *) 0},/p\' -e \'s/^[ABCDGIRSTW]* \\([^ ]*\\) \\(lib[^ ]*\\)$/  {"\\2", (void *) \\&amp;amp;\\2},/p\' -e \'s/^[ABCDGIRSTW]* \\([^ ]*\\) \\([^ ]*\\)$/  {"lib\\2", (void *) \\&amp;amp;\\2},/p\''
| lt_cv_sys_global_symbol_to_cdecl=$'sed -n -e \'s/^T .* \\(.*\\)$/extern int \\1();/p\' -e \'s/^[ABCDGIRSTW]* .* \\(.*\\)$/extern char \\1;/p\''
| lt_cv_sys_max_cmd_len=786240
| lt_cv_sys_symbol_underscore=no
| lt_cv_to_host_file_cmd=func_convert_file_noop
| lt_cv_to_tool_file_cmd=func_convert_file_noop
| 
| ## ----------------- ##
| ## Output variables. ##
| ## ----------------- ##
| 
| ACLOCAL='${SHELL} /home/richard/src/libtool/libtool-2.4.2/libltdl/config/missing --run aclocal-1.12'
| AMDEPBACKSLASH='\'
| AMDEP_FALSE='#'
| AMDEP_TRUE=''
| AMTAR='$${TAR-tar}'
| AR='ar'
| ARGZ_H='argz.h'
| AS='as'
| AUTOCONF='${SHELL} /home/richard/src/libtool/libtool-2.4.2/libltdl/config/missing --run autoconf'
| AUTOHEADER='${SHELL} /home/richard/src/libtool/libtool-2.4.2/libltdl/config/missing --run autoheader'
| AUTOM4TE='autom4te'
| AUTOMAKE='${SHELL} /home/richard/src/libtool/libtool-2.4.2/libltdl/config/missing --run automake-1.12'
| AUTOTEST='$(AUTOM4TE) --language=autotest'
| AWK='gawk'
| CC='gcc'
| CCDEPMODE='depmode=gcc3'
| CFLAGS='-g -O2'
| CONFIG_STATUS_DEPENDENCIES='$(top_srcdir)/ChangeLog'
| CONF_SUBDIRS='tests/cdemo tests/demo tests/depdemo tests/f77demo tests/fcdemo tests/mdemo tests/mdemo2 tests/pdemo tests/tagdemo'
| CONVENIENCE_LTDL_FALSE=''
| CONVENIENCE_LTDL_TRUE='#'
| CPP='gcc -E'
| CPPFLAGS=''
| CXX='g++'
| CXXCPP='g++ -E'
| CXXDEPMODE='depmode=gcc3'
| CXXFLAGS='-g -O2'
| CYGPATH_W='echo'
| DEFS='-DHAVE_CONFIG_H'
| DEPDIR='.deps'
| DIST_MAKEFILE_LIST='tests/cdemo/Makefile tests/demo/Makefile tests/depdemo/Makefile tests/f77demo/Makefile tests/fcdemo/Makefile tests/mdemo/Makefile tests/mdemo2/Makefile tests/pdemo/Makefile tests/tagdemo/Makefile '
| DLLTOOL='false'
| DSYMUTIL=''
| DUMPBIN=''
| ECHO_C='\c'
| ECHO_N=''
| ECHO_T=''
| EGREP='/opt/pkg/bin/ggrep -E'
| EXEEXT=''
| F77='gfortran'
| FC='gfortran'
| FCFLAGS='-g -O2'
| FFLAGS='-g -O2'
| FGREP='/opt/pkg/bin/ggrep -F'
| GCJ=''
| GCJFLAGS='-g -O2'
| GOC='gccgo'
| GREP='/opt/pkg/bin/ggrep'
| HAVE_CXX_FALSE='#'
| HAVE_CXX_TRUE=''
| HAVE_F77_FALSE='#'
| HAVE_F77_TRUE=''
| HAVE_FC_FALSE='#'
| HAVE_FC_TRUE=''
| HAVE_GCJ_FALSE=''
| HAVE_GCJ_TRUE='#'
| HAVE_RC_FALSE=''
| HAVE_RC_TRUE='#'
| HELP2MAN='${SHELL} /home/richard/src/libtool/libtool-2.4.2/libltdl/config/missing --run help2man'
| INSTALL_DATA='${INSTALL} -m 644'
| INSTALL_LTDL_FALSE='#'
| INSTALL_LTDL_TRUE=''
| INSTALL_PROGRAM='${INSTALL}'
| INSTALL_SCRIPT='${INSTALL}'
| INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
| LASTRELEASE='2.4.1'
| LD='/usr/bin/ld -64'
| LDFLAGS=''
| LIBADD_DL=' '
| LIBADD_DLD_LINK=''
| LIBADD_DLOPEN=''
| LIBADD_SHL_LOAD=''
| LIBOBJS=' ${LIBOBJDIR}argz$U.o'
| LIBS=''
| LIBTOOL='$(SHELL) $(top_builddir)/libtool'
| LIPO=''
| LN_S='ln -s'
| LTDLOPEN='libltdl'
| LTLIBOBJS=' ${LIBOBJDIR}argz$U.lo'
| LT_CONFIG_H='config.h'
| LT_DLLOADERS=' libltdl/dlopen.la'
| LT_DLPREOPEN='-dlpreopen libltdl/dlopen.la '
| M4SH='$(AUTOM4TE) --language=m4sh'
| MAKEINFO='${SHELL} /home/richard/src/libtool/libtool-2.4.2/libltdl/config/missing --run makeinfo'
| MANIFEST_TOOL=':'
| MKDIR_P='/opt/pkg/bin/gmkdir -p'
| NM='/opt/pkg/gnu/bin/nm -B'
| NMEDIT=''
| OBJDUMP='objdump'
| OBJEXT='o'
| ORDER='|'
| OTOOL64=''
| OTOOL=''
| PACKAGE='libtool'
| PACKAGE_BUGREPORT='bug-libtool&amp;lt; at &amp;gt;gnu.org'
| PACKAGE_NAME='GNU Libtool'
| PACKAGE_STRING='GNU Libtool 2.4.2'
| PACKAGE_TARNAME='libtool'
| PACKAGE_URL='http://www.gnu.org/software/libtool/'
| PACKAGE_VERSION='2.4.2'
| PATH_SEPARATOR=':'
| RANLIB='ranlib'
| RC=''
| SED='/opt/pkg/bin/gsed'
| SET_MAKE=''
| SHELL='/bin/sh'
| STRIP='strip'
| TIMESTAMP=''
| VERSION='2.4.2'
| ac_ct_AR='ar'
| ac_ct_CC='gcc'
| ac_ct_CXX='g++'
| ac_ct_DUMPBIN=''
| ac_ct_F77='gfortran'
| ac_ct_FC='gfortran'
| aclocaldir='${datadir}/aclocal'
| am__EXEEXT_FALSE=''
| am__EXEEXT_TRUE='#'
| am__fastdepCC_FALSE='#'
| am__fastdepCC_TRUE=''
| am__fastdepCXX_FALSE='#'
| am__fastdepCXX_TRUE=''
| am__include='include'
| am__isrc=' -I$(srcdir)'
| am__leading_dot='.'
| am__nodep='_no'
| am__quote=''
| am__tar='$${TAR-tar} chof - "$$tardir"'
| am__untar='$${TAR-tar} xf -'
| bindir='${exec_prefix}/bin'
| build='x86_64-pc-solaris2.11'
| build_alias=''
| build_cpu='x86_64'
| build_os='solaris2.11'
| build_vendor='pc'
| datadir='${datarootdir}'
| datarootdir='${prefix}/share'
| docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
| dvidir='${docdir}'
| exec_prefix='${prefix}'
| host='x86_64-pc-solaris2.11'
| host_alias=''
| host_cpu='x86_64'
| host_os='solaris2.11'
| host_vendor='pc'
| htmldir='${docdir}'
| includedir='${prefix}/include'
| infodir='${datarootdir}/info'
| install_sh='${SHELL} /home/richard/src/libtool/libtool-2.4.2/libltdl/config/install-sh'
| libdir='${exec_prefix}/lib'
| libexecdir='${exec_prefix}/libexec'
| localedir='${datarootdir}/locale'
| localstatedir='${prefix}/var'
| mandir='${datarootdir}/man'
| mkdir_p='$(MKDIR_P)'
| oldincludedir='/usr/include'
| package_revision='1.3337'
| pdfdir='${docdir}'
| pkgdatadir='${datadir}/libtool'
| prefix='/home/richard/src/libtool/libtool-2.4.2/_inst'
| program_transform_name='s,x,x,'
| psdir='${docdir}'
| sbindir='${exec_prefix}/sbin'
| sharedstatedir='${prefix}/com'
| sys_symbol_underscore='no'
| sysconfdir='${prefix}/etc'
| target_alias=''
| to_host_file_cmd='func_convert_file_noop'
| to_tool_file_cmd='func_convert_file_noop'
| 
| ## ----------- ##
| ## confdefs.h. ##
| ## ----------- ##
| 
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Libtool"
| #define PACKAGE_TARNAME "libtool"
| #define PACKAGE_VERSION "2.4.2"
| #define PACKAGE_STRING "GNU Libtool 2.4.2"
| #define PACKAGE_BUGREPORT "bug-libtool&amp;lt; at &amp;gt;gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/libtool/"
| #define PACKAGE "libtool"
| #define VERSION "2.4.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define LT_MODULE_EXT ".so"
| #define LT_MODULE_PATH_VAR "LD_LIBRARY_PATH"
| #define LT_DLSEARCH_PATH "/lib:/usr/lib"
| #define HAVE_LIBDL 1
| #define HAVE_DLERROR 1
| #define HAVE_LIBDLLOADER 1
| #define error_t int
| #define __error_t_defined 1
| #define HAVE_PRELOADED_SYMBOLS 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_DL_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_CLOSEDIR 1
| #define HAVE_OPENDIR 1
| #define HAVE_READDIR 1
| #define HAVE_STRLCAT 1
| #define HAVE_STRLCPY 1
| #define LT_LIBEXT "a"
| #define LT_LIBPREFIX "lib"
| 
| configure: exit 0

_______________________________________________
Bug-libtool mailing list
Bug-libtool&amp;lt; at &amp;gt;gnu.org
https://lists.gnu.org/mailman/listinfo/bug-libtool
&lt;/pre&gt;</description>
    <dc:creator>Richard PALO</dc:creator>
    <dc:date>2012-12-11T17:52:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8100">
    <title>bug#13083: libtool.m4 forgets LD_LIBRARY_PATH when computingsys_lib_dlsearch_path_spec</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8100</link>
    <description>&lt;pre&gt;According to the manpage for ld.so on Linux, libraries are searched for 
in three places:

  - LD_LIBRARY_PATH

  - /etc/ld.so.cache (built from ld.so.conf)

  - /lib and /usr/lib


libtool features a variable named sys_lib_dlsearch_path_spec which is 
meant to list the library search path with the purpose of excluding 
these paths from being hardcoded into libraries as -rpath.

The Linux case for determining the value of sys_lib_dlsearch_path_spec 
in libtool.m4 handles both the /etc/ld.so.cache case (by sourcing 
/etc/ld.so.conf) and hardcodes /lib and /usr/lib.  It fails to take 
LD_LIBRARY_PATH into account, however, resulting in unnecessary -rpath 
usage for the directories in this variable.

It would probably be relatively easy to split up LD_LIBRARY_PATH across 
the ':' it contains and add the paths to sys_lib_dlsearch_path_spec.

I'd do the patch myself but I am (blissfully) unaware of which set of 
tools (cut? sed?) are considered portable enough to be used from 
libtool.m4...

Thanks for your consideration.

Cheers
&lt;/pre&gt;</description>
    <dc:creator>Ryan Lortie</dc:creator>
    <dc:date>2012-12-04T18:51:35</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8099">
    <title>bug#12880: Incorrect handling -Wl,--no-as-needed with libtool 2.4.2</title>
    <link>http://comments.gmane.org/gmane.comp.gnu.libtool.bugs/8099</link>
    <description>&lt;pre&gt;I've noticed that libtool re-orders -Wl,-no-as-needed incorrectly.

For example:

 /bin/bash ./libtool --tag=CC   --mode=link gcc  -Wall -Wno-format -pipe 
-O3 -DNDEBUG -Wl,--no-as-needed -lm -avoid-version -shrext .so -L. -o 
libmod_convert.la -rpath /usr/local/lib libmod_convert_la-mod_convert.lo 
libconverter.a -ldl


The purpose of this is to force linking of -lm into the resulting object. 
However, when libtool re-orders this linking command and passes it to gcc, 
the result is:

libtool: link: gcc -shared  -fPIC -DPIC 
.libs/libmod_convert_la-mod_convert.o   -lm -L. libconverter.a -ldl  -O3 
-Wl,--no-as-needed   -Wl,-soname -Wl,libmod_convert.so -o 
.libs/libmod_convert.so

As you can see, the -Wl,--no-as-needed flag is moved *after* the call to 
link in libm.

I could not find any way in which to get libtool to correctly pass the 
linking flags to gcc.  A search via google seems to indicate this is a long 
standing known issue with libtool, as there is an extensive log in the 
debian bug reporter about it.

Since there is no bug reporter for libtool that I could find, I have no 
idea if it was ever reported upstream, although I would have thought so by 
now.

build&amp;lt; at &amp;gt;zre-ubuntu12-64:~/builds/UBUNTU12_64/main/20121113050101_NETWORK/ZimbraConvertd/src/c$ 
./libtool --version
libtool (GNU libtool) 2.4.2


I finally restored to completely disabling gcc as-needed in my gcc spec 
file so that the library would be built properly.

Thanks,
Quanah

--

Quanah Gibson-Mount
Sr. Member of Technical Staff
Zimbra, Inc
A Division of VMware, Inc.
--------------------
Zimbra ::  the leader in open source messaging and collaboration
&lt;/pre&gt;</description>
    <dc:creator>Quanah Gibson-Mount</dc:creator>
    <dc:date>2012-11-13T20:47:10</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.gnu.libtool.bugs">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.gnu.libtool.bugs</link>
  </textinput>
</rdf:RDF>
