unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* guile-2.0.11 build: libtool and readline problems
@ 2014-04-15  0:21 Ian Grant
  2014-04-15 14:07 ` Greg Troxel
  2014-04-16  5:10 ` Mark H Weaver
  0 siblings, 2 replies; 9+ messages in thread
From: Ian Grant @ 2014-04-15  0:21 UTC (permalink / raw)
  To: guile-devel

[-- Attachment #1: Type: text/plain, Size: 904 bytes --]

I'm at a loss. I have libtool-2.4 installed in /usr/local and I get this
error when 'make'ing after running

    ../configure --prefix=/usr/local --libdir=/usr/local/lib \
        --with-libreadline-prefix=/usr/local

[.... making lots of stuff ...]

  CCLD     libguile-2.0.la
../libtool: line 5989: cd: (libdir): No such file or directory
libtool: link: cannot determine absolute directory name of `(libdir)'
make[3]: *** [libguile-2.0.la] Error 1
make[3]: Leaving directory
`/home/ian/Documents/FP/guile-2.0.11/build/libguile'
make[2]: *** [all] Error 2

Another minor issue is that the configure script seems not to know about
the readline-6.3 which I have installed in /usr/local:

checking for rl_get_keymap... no
checking for rl_getc_function pointer in readline... no
configure: WARNING: *** GNU Readline is too old on your system.
configure: WARNING: *** You need readline version 2.1 or later.

[-- Attachment #2: Type: text/html, Size: 1141 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: guile-2.0.11 build: libtool and readline problems
  2014-04-15  0:21 guile-2.0.11 build: libtool and readline problems Ian Grant
@ 2014-04-15 14:07 ` Greg Troxel
  2014-04-16  5:10 ` Mark H Weaver
  1 sibling, 0 replies; 9+ messages in thread
From: Greg Troxel @ 2014-04-15 14:07 UTC (permalink / raw)
  To: Ian Grant; +Cc: guile-devel

[-- Attachment #1: Type: text/plain, Size: 1602 bytes --]


Ian Grant <ian.a.n.grant@googlemail.com> writes:

> I'm at a loss. I have libtool-2.4 installed in /usr/local and I get this
> error when 'make'ing after running
>
>     ../configure --prefix=/usr/local --libdir=/usr/local/lib \
>         --with-libreadline-prefix=/usr/local
>
> [.... making lots of stuff ...]
>
>   CCLD     libguile-2.0.la
> ../libtool: line 5989: cd: (libdir): No such file or directory
> libtool: link: cannot determine absolute directory name of `(libdir)'
> make[3]: *** [libguile-2.0.la] Error 1
> make[3]: Leaving directory
> `/home/ian/Documents/FP/guile-2.0.11/build/libguile'
> make[2]: *** [all] Error 2
>
> Another minor issue is that the configure script seems not to know about
> the readline-6.3 which I have installed in /usr/local:
>
> checking for rl_get_keymap... no
> checking for rl_getc_function pointer in readline... no
> configure: WARNING: *** GNU Readline is too old on your system.
> configure: WARNING: *** You need readline version 2.1 or later.

You should not have to set libdir when you set prefix.

I am unclear on --wtih-libreadline-prefix, but generally in the autoconf
world when prereqs are not in the standard search path, I invoke

  CPPFLAGS="-I/usr/pkg/include" \
  LDFLAGS="-L/usr/pkg/lib -R/usr/pkg/lib" \
  ./configure ....

So you may want to try that.  Another thing to do is to read config.log
to see what configure is doing.  It seems obvious that
--with-libreadline-prefix=/usr/local should cause the equivalent
CPPFLAGS/LDFLAGS to be used when looking for readline, and if found, to
be added, but perhaps something is amiss there.

[-- Attachment #2: Type: application/pgp-signature, Size: 180 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: guile-2.0.11 build: libtool and readline problems
  2014-04-15  0:21 guile-2.0.11 build: libtool and readline problems Ian Grant
  2014-04-15 14:07 ` Greg Troxel
@ 2014-04-16  5:10 ` Mark H Weaver
  2014-04-21 19:18   ` Ian Grant
  2014-04-22  1:16   ` Ian Grant
  1 sibling, 2 replies; 9+ messages in thread
From: Mark H Weaver @ 2014-04-16  5:10 UTC (permalink / raw)
  To: Ian Grant; +Cc: guile-devel

Hi,

Ian Grant <ian.a.n.grant@googlemail.com> writes:

> I'm at a loss. I have libtool-2.4 installed in /usr/local and I get
> this error when 'make'ing after running
>
> ../configure --prefix=/usr/local --libdir=/usr/local/lib \
> --with-libreadline-prefix=/usr/local

FWIW, you could leave out the "--libdir=/usr/local/lib" above, since
that would be the default anyway, but I'm still curious what's going
wrong here.

>
> [.... making lots of stuff ...]
>
> CCLD libguile-2.0.la
> ../libtool: line 5989: cd: (libdir): No such file or directory
> libtool: link: cannot determine absolute directory name of `(libdir)'
> make[3]: *** [libguile-2.0.la] Error 1
> make[3]: Leaving directory
> `/home/ian/Documents/FP/guile-2.0.11/build/libguile'
> make[2]: *** [all] Error 2

Can you try "make V=1" and show us the output that corresponds to
the above?

The relevant rule starts with "libguile-@GUILE_EFFECTIVE_VERSION@.la:"
in libguile/Makefile.in (line 2241 in guile-2.0.11).  In the generated
libguile/Makefile, the relevant rule starts with "libguile-2.0.la:".

I see "-rpath $(libdir)" in the associated command, but it seems as if a
bare "(libdir)" is getting passed to libtool somehow.

What kind of system are you doing this on?  What version of make?

> Another minor issue is that the configure script seems not to know
> about the readline-6.3 which I have installed in /usr/local:
>
> checking for rl_get_keymap... no
> checking for rl_getc_function pointer in readline... no
> configure: WARNING: *** GNU Readline is too old on your system.
> configure: WARNING: *** You need readline version 2.1 or later.

Can you search for "rl_get_keymap" in "config.log" and see what went
wrong here?  It tries to compile a simple test program, and it would be
useful to see what error message(s) it printed.

You probably already know this, but on a GNU/Linux system it's important
to run "ldconfig" as root after installing libraries from source code.

    Regards,
      Mark



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: guile-2.0.11 build: libtool and readline problems
  2014-04-16  5:10 ` Mark H Weaver
@ 2014-04-21 19:18   ` Ian Grant
  2014-04-22  3:02     ` Mark H Weaver
  2014-04-22  1:16   ` Ian Grant
  1 sibling, 1 reply; 9+ messages in thread
From: Ian Grant @ 2014-04-21 19:18 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: guile-devel


[-- Attachment #1.1: Type: text/plain, Size: 1763 bytes --]

On Wed, Apr 16, 2014 at 1:10 AM, Mark H Weaver <mhw@netris.org> wrote:

> Can you try "make V=1" and show us the output that corresponds to
> the above?
>

See attached makelog file. It looks like the libtool file itself has the
´hard code´uninitialised (libdir)´. This is probably not very useful, I'm
sorry. I will try again, but I am working on a machine that is not net
connected.


> The relevant rule starts with "libguile-@GUILE_EFFECTIVE_VERSION@.la:"
> in libguile/Makefile.in (line 2241 in guile-2.0.11).  In the generated
> libguile/Makefile, the relevant rule starts with "libguile-2.0.la:".
>
I see "-rpath $(libdir)" in the associated command, but it seems as if a
> bare "(libdir)" is getting passed to libtool somehow.
>


> What kind of system are you doing this on?  What version of make?
>

See the makev attachment to this message. It's the output of uname,
ldconfig and make -v


> Can you search for "rl_get_keymap" in "config.log" and see what went
> wrong here?  It tries to compile a simple test program, and it would be
> useful to see what error message(s) it printed.
>

See attatched readline_prob file. It looks like something to do with
curses. Does the test program need ncurses?


> You probably already know this, but on a GNU/Linux system it's important
> to run "ldconfig" as root after installing libraries from source code.
>

I used to know that, but I'd forgotten it! I recall the bad old days when
upgrading glibc was a major PITA, and everything was in such a state of
flux that one ended up needing seven different versions of glibc, then it
was necessary. But I haven´t done this for a long time ...

Thanks for your attention, and sorry for the reply latency.

Ian

[-- Attachment #1.2: Type: text/html, Size: 2937 bytes --]

[-- Attachment #2: readline_prob.txt --]
[-- Type: text/plain, Size: 30001 bytes --]

configure:53001: checking for rl_get_keymap
configure:53001: gcc -o conftest -I/usr/local/include   -g -O2   conftest.c /usr/local/lib/libreadline.so -Wl,-rpath -Wl,/usr/local/lib   -lcrypt -lm  >&5
/usr/local/lib/libreadline.so: undefined reference to `PC'
/usr/local/lib/libreadline.so: undefined reference to `tgetflag'
/usr/local/lib/libreadline.so: undefined reference to `tgetent'
/usr/local/lib/libreadline.so: undefined reference to `UP'
/usr/local/lib/libreadline.so: undefined reference to `tputs'
/usr/local/lib/libreadline.so: undefined reference to `tgoto'
/usr/local/lib/libreadline.so: undefined reference to `tgetnum'
/usr/local/lib/libreadline.so: undefined reference to `BC'
/usr/local/lib/libreadline.so: undefined reference to `tgetstr'
collect2: ld returned 1 exit status
configure:53001: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU Guile"
| #define PACKAGE_TARNAME "guile"
| #define PACKAGE_VERSION "2.0.11"
| #define PACKAGE_STRING "GNU Guile 2.0.11"
| #define PACKAGE_BUGREPORT "bug-guile@gnu.org"
| #define PACKAGE_URL "http://www.gnu.org/software/guile/"
| #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 __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _DARWIN_C_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define _FILE_OFFSET_BITS 64
| #define _DARWIN_USE_64_BIT_INODE 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_ARPA_INET_H 1
| #define HAVE_FEATURES_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_XLOCALE_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_ICONV_H 1
| #define HAVE_LANGINFO_H 1
| #define HAVE_MATH_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_POLL_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_TIMES_H 1
| #define HAVE_SYS_UIO_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_STRUCT_SOCKADDR_STORAGE 1
| #define HAVE_SA_FAMILY_T 1
| #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1
| #define HAVE_RAW_DECL_SOCKET 1
| #define HAVE_RAW_DECL_CONNECT 1
| #define HAVE_RAW_DECL_ACCEPT 1
| #define HAVE_RAW_DECL_BIND 1
| #define HAVE_RAW_DECL_GETPEERNAME 1
| #define HAVE_RAW_DECL_GETSOCKNAME 1
| #define HAVE_RAW_DECL_GETSOCKOPT 1
| #define HAVE_RAW_DECL_LISTEN 1
| #define HAVE_RAW_DECL_RECV 1
| #define HAVE_RAW_DECL_SEND 1
| #define HAVE_RAW_DECL_RECVFROM 1
| #define HAVE_RAW_DECL_SENDTO 1
| #define HAVE_RAW_DECL_SETSOCKOPT 1
| #define HAVE_RAW_DECL_SHUTDOWN 1
| #define HAVE_RAW_DECL_ACCEPT4 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_BTOWC 1
| #define HAVE_CANONICALIZE_FILE_NAME 1
| #define HAVE_GETCWD 1
| #define HAVE_READLINK 1
| #define HAVE_REALPATH 1
| #define HAVE_DUPLOCALE 1
| #define HAVE_SYMLINK 1
| #define HAVE_FLOCK 1
| #define HAVE_FCNTL 1
| #define HAVE_FSYNC 1
| #define HAVE_GETLOGIN 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_LINK 1
| #define HAVE_LSTAT 1
| #define HAVE_MBSINIT 1
| #define HAVE_MBRTOWC 1
| #define HAVE_MPROTECT 1
| #define HAVE_MKSTEMP 1
| #define HAVE_NL_LANGINFO 1
| #define HAVE_PIPE 1
| #define HAVE_PIPE2 1
| #define HAVE_ISBLANK 1
| #define HAVE_ISWCTYPE 1
| #define HAVE_SETENV 1
| #define HAVE_SNPRINTF 1
| #define HAVE_STRDUP 1
| #define HAVE_TZSET 1
| #define HAVE_LOCALTIME_R 1
| #define HAVE_TIMES 1
| #define HAVE_WCRTOMB 1
| #define HAVE_ISWCNTRL 1
| #define HAVE_LANGINFO_CODESET 1
| #define FUNC_REALPATH_WORKS 1
| #define HAVE_WCHAR_T 1
| #define HAVE_RAW_DECL_SETLOCALE 1
| #define HAVE_RAW_DECL_DUPLOCALE 1
| #define HAVE_ENVIRON_DECL 1
| #define HAVE_WORKING_O_NOATIME 1
| #define HAVE_WORKING_O_NOFOLLOW 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_RAW_DECL_FCHMODAT 1
| #define HAVE_RAW_DECL_FSTAT 1
| #define HAVE_RAW_DECL_FSTATAT 1
| #define HAVE_RAW_DECL_FUTIMENS 1
| #define HAVE_RAW_DECL_LCHMOD 1
| #define HAVE_RAW_DECL_LSTAT 1
| #define HAVE_RAW_DECL_MKDIRAT 1
| #define HAVE_RAW_DECL_MKFIFO 1
| #define HAVE_RAW_DECL_MKFIFOAT 1
| #define HAVE_RAW_DECL_MKNOD 1
| #define HAVE_RAW_DECL_MKNODAT 1
| #define HAVE_RAW_DECL_STAT 1
| #define HAVE_RAW_DECL_UTIMENSAT 1
| #define HAVE_RAW_DECL_GETADDRINFO 1
| #define HAVE_RAW_DECL_FREEADDRINFO 1
| #define HAVE_RAW_DECL_GAI_STRERROR 1
| #define HAVE_RAW_DECL_GETNAMEINFO 1
| #define HAVE_GETHOSTBYNAME 1
| #define HAVE_GETSERVBYNAME 1
| #define restrict __restrict
| #define HAVE_DECL_INET_NTOP 1
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_RAW_DECL_GETTIMEOFDAY 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define FLT_EXPBIT0_WORD 0
| #define FLT_EXPBIT0_BIT 23
| #define DBL_EXPBIT0_WORD 1
| #define DBL_EXPBIT0_BIT 20
| #define HAVE_LIBUNISTRING 1
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_ROUND 1
| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_MBSTATE_T 1
| #define HAVE_MAP_ANONYMOUS 1
| #define PROMOTED_MODE_T mode_t
| #define HAVE_RAW_DECL_POLL 1
| #define HAVE_RAW_DECL_PSELECT 1
| #define HAVE_RAW_DECL_SELECT 1
| #define HAVE_DECL_SETENV 1
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_SIGSET_T 1
| #define HAVE_DECL_SNPRINTF 1
| #define HAVE__BOOL 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_TM_GMTOFF 1
| #define HAVE_RAW_DECL_FFSL 1
| #define HAVE_RAW_DECL_FFSLL 1
| #define HAVE_RAW_DECL_MEMMEM 1
| #define HAVE_RAW_DECL_MEMPCPY 1
| #define HAVE_RAW_DECL_MEMRCHR 1
| #define HAVE_RAW_DECL_RAWMEMCHR 1
| #define HAVE_RAW_DECL_STPCPY 1
| #define HAVE_RAW_DECL_STPNCPY 1
| #define HAVE_RAW_DECL_STRCHRNUL 1
| #define HAVE_RAW_DECL_STRDUP 1
| #define HAVE_RAW_DECL_STRNCAT 1
| #define HAVE_RAW_DECL_STRNDUP 1
| #define HAVE_RAW_DECL_STRNLEN 1
| #define HAVE_RAW_DECL_STRPBRK 1
| #define HAVE_RAW_DECL_STRSEP 1
| #define HAVE_RAW_DECL_STRCASESTR 1
| #define HAVE_RAW_DECL_STRTOK_R 1
| #define HAVE_RAW_DECL_STRERROR_R 1
| #define HAVE_RAW_DECL_STRSIGNAL 1
| #define HAVE_RAW_DECL_STRVERSCMP 1
| #define HAVE_WINT_T 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_INTMAX_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_STRNLEN 1
| #define HAVE_WCSLEN 1
| #define HAVE_WCSNLEN 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_DECL__SNPRINTF 0
| #define HAVE_SNPRINTF_RETVAL_C99 1
| #define HAVE_DECL_VSNPRINTF 1
| #define GNULIB_TEST_ACCEPT 1
| #define HAVE_ALLOCA 1
| #define HAVE_RAW_DECL_INET_NTOP 1
| #define HAVE_RAW_DECL_INET_PTON 1
| #define GNULIB_TEST_BIND 1
| #define GNULIB_TEST_BTOWC 1
| #define HAVE_BYTESWAP_H 1
| #define GNULIB_CANONICALIZE_LGPL 1
| #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1
| #define GNULIB_TEST_REALPATH 1
| #define GNULIB_TEST_CEIL 1
| #define GNULIB_TEST_CHDIR 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_CLOCK_GETCPUCLOCKID 1
| #define GNULIB_TEST_CLOSE 1
| #define GNULIB_TEST_CONNECT 1
| #define GNULIB_TEST_COPYSIGN 1
| #define HAVE_RAW_DECL_ALPHASORT 1
| #define HAVE_RAW_DECL_CLOSEDIR 1
| #define HAVE_RAW_DECL_DIRFD 1
| #define HAVE_RAW_DECL_FDOPENDIR 1
| #define HAVE_RAW_DECL_OPENDIR 1
| #define HAVE_RAW_DECL_READDIR 1
| #define HAVE_RAW_DECL_REWINDDIR 1
| #define HAVE_RAW_DECL_SCANDIR 1
| #define HAVE_DIRFD 1
| #define HAVE_DECL_DIRFD 1
| #define GNULIB_TEST_DIRFD 1
| #define HAVE_DUP2 1
| #define GNULIB_TEST_DUP2 1
| #define GNULIB_TEST_DUPLOCALE 1
| #define GNULIB_TEST_ENVIRON 1
| #define HAVE_RAW_DECL_FCNTL 1
| #define HAVE_RAW_DECL_OPENAT 1
| #define GNULIB_TEST_FLOOR 1
| #define HAVE_FREXP 1
| #define GNULIB_TEST_FREXP 1
| #define GNULIB_TEST_FSTAT 1
| #define GNULIB_TEST_FSYNC 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_DECL_GAI_STRERRORA 0
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GETNAMEINFO 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define GNULIB_TEST_GETADDRINFO 1
| #define GNULIB_TEST_GETLOGIN 1
| #define GNULIB_TEST_GETPEERNAME 1
| #define GNULIB_TEST_GETSOCKNAME 1
| #define GNULIB_TEST_GETSOCKOPT 1
| #define GETTIMEOFDAY_TIMEZONE struct timezone
| #define GNULIB_TEST_GETTIMEOFDAY 1
| #define HAVE_GETHOSTBYNAME 1
| #define HAVE_DECL_INET_NTOP 1
| #define HAVE_DECL_INET_PTON 1
| #define HAVE_INLINE 1
| #define HAVE_DECL_ISFINITE 1
| #define GNULIB_TEST_ISFINITE 1
| #define HAVE_DECL_ISINF 1
| #define GNULIB_TEST_ISINF 1
| #define GNULIB_TEST_ISNAN 1
| #define GNULIB_TEST_ISNAND 1
| #define HAVE_ISNAND_IN_LIBC 1
| #define FLT_EXPBIT0_WORD 0
| #define FLT_EXPBIT0_BIT 23
| #define GNULIB_TEST_ISNANF 1
| #define HAVE_ISNANF_IN_LIBC 1
| #define LDBL_EXPBIT0_WORD 2
| #define LDBL_EXPBIT0_BIT 0
| #define GNULIB_TEST_ISNANL 1
| #define LDBL_EXPBIT0_WORD 2
| #define LDBL_EXPBIT0_BIT 0
| #define HAVE_RAW_DECL_NL_LANGINFO 1
| #define HAVE_VISIBILITY 1
| #define GNULIB_TEST_LINK 1
| #define GNULIB_TEST_LISTEN 1
| #define HAVE_RAW_DECL_SETLOCALE 1
| #define HAVE_RAW_DECL_DUPLOCALE 1
| #define GNULIB_TEST_LOCALECONV 1
| #define GNULIB_TEST_LOG 1
| #define HAVE_LOG1P 1
| #define GNULIB_TEST_LOG1P 1
| #define GNULIB_TEST_LSTAT 1
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC_GNU 1
| #define GNULIB_MALLOC_GNU 1
| #define HAVE_MALLOC_POSIX 1
| #define GNULIB_TEST_MALLOC_POSIX 1
| #define HAVE_RAW_DECL_ACOSF 1
| #define HAVE_RAW_DECL_ACOSL 1
| #define HAVE_RAW_DECL_ASINF 1
| #define HAVE_RAW_DECL_ASINL 1
| #define HAVE_RAW_DECL_ATANF 1
| #define HAVE_RAW_DECL_ATANL 1
| #define HAVE_RAW_DECL_CBRT 1
| #define HAVE_RAW_DECL_CBRTF 1
| #define HAVE_RAW_DECL_CBRTL 1
| #define HAVE_RAW_DECL_CEILF 1
| #define HAVE_RAW_DECL_CEILL 1
| #define HAVE_RAW_DECL_COPYSIGN 1
| #define HAVE_RAW_DECL_COPYSIGNF 1
| #define HAVE_RAW_DECL_COPYSIGNL 1
| #define HAVE_RAW_DECL_COSF 1
| #define HAVE_RAW_DECL_COSL 1
| #define HAVE_RAW_DECL_COSHF 1
| #define HAVE_RAW_DECL_EXPF 1
| #define HAVE_RAW_DECL_EXPL 1
| #define HAVE_RAW_DECL_EXP2 1
| #define HAVE_RAW_DECL_EXP2F 1
| #define HAVE_RAW_DECL_EXP2L 1
| #define HAVE_RAW_DECL_EXPM1 1
| #define HAVE_RAW_DECL_EXPM1F 1
| #define HAVE_RAW_DECL_EXPM1L 1
| #define HAVE_RAW_DECL_FABSF 1
| #define HAVE_RAW_DECL_FABSL 1
| #define HAVE_RAW_DECL_FLOORF 1
| #define HAVE_RAW_DECL_FLOORL 1
| #define HAVE_RAW_DECL_FMA 1
| #define HAVE_RAW_DECL_FMAF 1
| #define HAVE_RAW_DECL_FMAL 1
| #define HAVE_RAW_DECL_FMOD 1
| #define HAVE_RAW_DECL_FMODF 1
| #define HAVE_RAW_DECL_FMODL 1
| #define HAVE_RAW_DECL_FREXPF 1
| #define HAVE_RAW_DECL_FREXPL 1
| #define HAVE_RAW_DECL_HYPOTF 1
| #define HAVE_RAW_DECL_HYPOTL 1
| #define HAVE_RAW_DECL_ILOGB 1
| #define HAVE_RAW_DECL_ILOGBF 1
| #define HAVE_RAW_DECL_ILOGBL 1
| #define HAVE_RAW_DECL_LDEXPF 1
| #define HAVE_RAW_DECL_LDEXPL 1
| #define HAVE_RAW_DECL_LOG 1
| #define HAVE_RAW_DECL_LOGF 1
| #define HAVE_RAW_DECL_LOGL 1
| #define HAVE_RAW_DECL_LOG10 1
| #define HAVE_RAW_DECL_LOG10F 1
| #define HAVE_RAW_DECL_LOG10L 1
| #define HAVE_RAW_DECL_LOG1P 1
| #define HAVE_RAW_DECL_LOG1PF 1
| #define HAVE_RAW_DECL_LOG1PL 1
| #define HAVE_RAW_DECL_LOG2 1
| #define HAVE_RAW_DECL_LOG2F 1
| #define HAVE_RAW_DECL_LOG2L 1
| #define HAVE_RAW_DECL_LOGB 1
| #define HAVE_RAW_DECL_LOGBF 1
| #define HAVE_RAW_DECL_LOGBL 1
| #define HAVE_RAW_DECL_MODF 1
| #define HAVE_RAW_DECL_MODFF 1
| #define HAVE_RAW_DECL_MODFL 1
| #define HAVE_RAW_DECL_POWF 1
| #define HAVE_RAW_DECL_REMAINDER 1
| #define HAVE_RAW_DECL_REMAINDERF 1
| #define HAVE_RAW_DECL_REMAINDERL 1
| #define HAVE_RAW_DECL_RINT 1
| #define HAVE_RAW_DECL_RINTF 1
| #define HAVE_RAW_DECL_RINTL 1
| #define HAVE_RAW_DECL_ROUND 1
| #define HAVE_RAW_DECL_ROUNDF 1
| #define HAVE_RAW_DECL_ROUNDL 1
| #define HAVE_RAW_DECL_SINF 1
| #define HAVE_RAW_DECL_SINL 1
| #define HAVE_RAW_DECL_SINHF 1
| #define HAVE_RAW_DECL_SQRTF 1
| #define HAVE_RAW_DECL_SQRTL 1
| #define HAVE_RAW_DECL_TANF 1
| #define HAVE_RAW_DECL_TANL 1
| #define HAVE_RAW_DECL_TANHF 1
| #define HAVE_RAW_DECL_TRUNC 1
| #define HAVE_RAW_DECL_TRUNCF 1
| #define HAVE_RAW_DECL_TRUNCL 1
| #define GNULIB_TEST_MBRTOWC 1
| #define GNULIB_TEST_MBSINIT 1
| #define GNULIB_TEST_MBTOWC 1
| #define GNULIB_TEST_MEMCHR 1
| #define GNULIB_TEST_MKSTEMP 1
| #define HAVE_RAW_DECL_GETADDRINFO 1
| #define HAVE_RAW_DECL_FREEADDRINFO 1
| #define HAVE_RAW_DECL_GAI_STRERROR 1
| #define HAVE_RAW_DECL_GETNAMEINFO 1
| #define FUNC_NL_LANGINFO_YESEXPR_WORKS 1
| #define GNULIB_TEST_NL_LANGINFO 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_SYSCTL_H 1
| #define HAVE_SCHED_GETAFFINITY 1
| #define HAVE_SYSCTL 1
| #define HAVE_SCHED_GETAFFINITY_LIKE_GLIBC 1
| #define GNULIB_TEST_OPEN 1
| #define GNULIB_TEST_PIPE 1
| #define GNULIB_TEST_PIPE2 1
| #define HAVE_POLL 1
| #define GNULIB_TEST_POLL 1
| #define HAVE_RAW_DECL_POLL 1
| #define GNULIB_TEST_PUTENV 1
| #define HAVE_RAISE 1
| #define GNULIB_TEST_RAISE 1
| #define GNULIB_TEST_READ 1
| #define GNULIB_TEST_READLINK 1
| #define GNULIB_TEST_RECV 1
| #define GNULIB_TEST_RECVFROM 1
| #define _REGEX_INCLUDE_LIMITS_H 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define HAVE_LIBINTL_H 1
| #define HAVE_DECL_ISBLANK 1
| #define GNULIB_TEST_RENAME 1
| #define GNULIB_TEST_RMDIR 1
| #define HAVE_DECL_ROUND 1
| #define GNULIB_TEST_ROUND 1
| #define HAVE___SECURE_GETENV 1
| #define GNULIB_TEST_SECURE_GETENV 1
| #define GNULIB_TEST_SELECT 1
| #define GNULIB_TEST_SEND 1
| #define GNULIB_TEST_SENDTO 1
| #define HAVE_GETSERVBYNAME 1
| #define GNULIB_TEST_SETENV 1
| #define GNULIB_TEST_SETSOCKOPT 1
| #define GNULIB_TEST_SHUTDOWN 1
| #define HAVE_RAW_DECL_PTHREAD_SIGMASK 1
| #define HAVE_RAW_DECL_SIGACTION 1
| #define HAVE_RAW_DECL_SIGADDSET 1
| #define HAVE_RAW_DECL_SIGDELSET 1
| #define HAVE_RAW_DECL_SIGEMPTYSET 1
| #define HAVE_RAW_DECL_SIGFILLSET 1
| #define HAVE_RAW_DECL_SIGISMEMBER 1
| #define HAVE_RAW_DECL_SIGPENDING 1
| #define HAVE_RAW_DECL_SIGPROCMASK 1
| #define GNULIB_TEST_SIGNBIT 1
| #define HAVE_STDINT_H 1
| #define HAVE_SNPRINTF 1
| #define GNULIB_TEST_SNPRINTF 1
| #define GNULIB_SNPRINTF 1
| #define GNULIB_TEST_SOCKET 1
| #define GNULIB_TEST_STAT 1
| #define HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC 1
| #define TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC 1
| #define GNULIB_FSCANF 1
| #define GNULIB_SCANF 1
| #define HAVE_RAW_DECL_DPRINTF 1
| #define HAVE_RAW_DECL_FSEEKO 1
| #define HAVE_RAW_DECL_FTELLO 1
| #define HAVE_RAW_DECL_GETDELIM 1
| #define HAVE_RAW_DECL_GETLINE 1
| #define HAVE_RAW_DECL_GETS 1
| #define HAVE_RAW_DECL_PCLOSE 1
| #define HAVE_RAW_DECL_POPEN 1
| #define HAVE_RAW_DECL_RENAMEAT 1
| #define HAVE_RAW_DECL_SNPRINTF 1
| #define HAVE_RAW_DECL_TMPFILE 1
| #define HAVE_RAW_DECL_VDPRINTF 1
| #define HAVE_RAW_DECL_VSNPRINTF 1
| #define HAVE_RAW_DECL__EXIT 1
| #define HAVE_RAW_DECL_ATOLL 1
| #define HAVE_RAW_DECL_CANONICALIZE_FILE_NAME 1
| #define HAVE_RAW_DECL_GETLOADAVG 1
| #define HAVE_RAW_DECL_GETSUBOPT 1
| #define HAVE_RAW_DECL_GRANTPT 1
| #define HAVE_RAW_DECL_INITSTATE 1
| #define HAVE_RAW_DECL_INITSTATE_R 1
| #define HAVE_RAW_DECL_MKDTEMP 1
| #define HAVE_RAW_DECL_MKOSTEMP 1
| #define HAVE_RAW_DECL_MKOSTEMPS 1
| #define HAVE_RAW_DECL_MKSTEMP 1
| #define HAVE_RAW_DECL_MKSTEMPS 1
| #define HAVE_RAW_DECL_POSIX_OPENPT 1
| #define HAVE_RAW_DECL_PTSNAME 1
| #define HAVE_RAW_DECL_PTSNAME_R 1
| #define HAVE_RAW_DECL_RANDOM 1
| #define HAVE_RAW_DECL_RANDOM_R 1
| #define HAVE_RAW_DECL_REALPATH 1
| #define HAVE_RAW_DECL_RPMATCH 1
| #define HAVE_RAW_DECL_SETENV 1
| #define HAVE_RAW_DECL_SETSTATE 1
| #define HAVE_RAW_DECL_SETSTATE_R 1
| #define HAVE_RAW_DECL_SRANDOM 1
| #define HAVE_RAW_DECL_SRANDOM_R 1
| #define HAVE_RAW_DECL_STRTOD 1
| #define HAVE_RAW_DECL_STRTOLL 1
| #define HAVE_RAW_DECL_STRTOULL 1
| #define HAVE_RAW_DECL_UNLOCKPT 1
| #define HAVE_RAW_DECL_UNSETENV 1
| #define GNULIB_TEST_STRDUP 1
| #define my_strftime nstrftime
| #define HAVE_RAW_DECL_FLOCK 1
| #define HAVE_RAW_DECL_PSELECT 1
| #define HAVE_RAW_DECL_SELECT 1
| #define HAVE_SHUTDOWN 1
| #define HAVE_STRUCT_SOCKADDR_STORAGE 1
| #define HAVE_SA_FAMILY_T 1
| #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1
| #define HAVE_RAW_DECL_SOCKET 1
| #define HAVE_RAW_DECL_CONNECT 1
| #define HAVE_RAW_DECL_ACCEPT 1
| #define HAVE_RAW_DECL_BIND 1
| #define HAVE_RAW_DECL_GETPEERNAME 1
| #define HAVE_RAW_DECL_GETSOCKNAME 1
| #define HAVE_RAW_DECL_GETSOCKOPT 1
| #define HAVE_RAW_DECL_LISTEN 1
| #define HAVE_RAW_DECL_RECV 1
| #define HAVE_RAW_DECL_SEND 1
| #define HAVE_RAW_DECL_RECVFROM 1
| #define HAVE_RAW_DECL_SENDTO 1
| #define HAVE_RAW_DECL_SETSOCKOPT 1
| #define HAVE_RAW_DECL_SHUTDOWN 1
| #define HAVE_RAW_DECL_ACCEPT4 1
| #define HAVE_RAW_DECL_FCHMODAT 1
| #define HAVE_RAW_DECL_FSTAT 1
| #define HAVE_RAW_DECL_FSTATAT 1
| #define HAVE_RAW_DECL_FUTIMENS 1
| #define HAVE_RAW_DECL_LCHMOD 1
| #define HAVE_RAW_DECL_LSTAT 1
| #define HAVE_RAW_DECL_MKDIRAT 1
| #define HAVE_RAW_DECL_MKFIFO 1
| #define HAVE_RAW_DECL_MKFIFOAT 1
| #define HAVE_RAW_DECL_MKNOD 1
| #define HAVE_RAW_DECL_MKNODAT 1
| #define HAVE_RAW_DECL_STAT 1
| #define HAVE_RAW_DECL_UTIMENSAT 1
| #define HAVE_STRUCT_TMS 1
| #define HAVE_RAW_DECL_TIMES 1
| #define HAVE_DECL_LOCALTIME_R 1
| #define GNULIB_TEST_TIME_R 1
| #define HAVE_DECL_TRUNC 1
| #define GNULIB_TEST_TRUNC 1
| #define HAVE_RAW_DECL_CHDIR 1
| #define HAVE_RAW_DECL_CHOWN 1
| #define HAVE_RAW_DECL_DUP 1
| #define HAVE_RAW_DECL_DUP2 1
| #define HAVE_RAW_DECL_DUP3 1
| #define HAVE_RAW_DECL_ENVIRON 1
| #define HAVE_RAW_DECL_EUIDACCESS 1
| #define HAVE_RAW_DECL_FACCESSAT 1
| #define HAVE_RAW_DECL_FCHDIR 1
| #define HAVE_RAW_DECL_FCHOWNAT 1
| #define HAVE_RAW_DECL_FDATASYNC 1
| #define HAVE_RAW_DECL_FSYNC 1
| #define HAVE_RAW_DECL_FTRUNCATE 1
| #define HAVE_RAW_DECL_GETCWD 1
| #define HAVE_RAW_DECL_GETDOMAINNAME 1
| #define HAVE_RAW_DECL_GETDTABLESIZE 1
| #define HAVE_RAW_DECL_GETGROUPS 1
| #define HAVE_RAW_DECL_GETHOSTNAME 1
| #define HAVE_RAW_DECL_GETLOGIN 1
| #define HAVE_RAW_DECL_GETLOGIN_R 1
| #define HAVE_RAW_DECL_GETPAGESIZE 1
| #define HAVE_RAW_DECL_GETUSERSHELL 1
| #define HAVE_RAW_DECL_SETUSERSHELL 1
| #define HAVE_RAW_DECL_ENDUSERSHELL 1
| #define HAVE_RAW_DECL_GROUP_MEMBER 1
| #define HAVE_RAW_DECL_ISATTY 1
| #define HAVE_RAW_DECL_LCHOWN 1
| #define HAVE_RAW_DECL_LINK 1
| #define HAVE_RAW_DECL_LINKAT 1
| #define HAVE_RAW_DECL_LSEEK 1
| #define HAVE_RAW_DECL_PIPE 1
| #define HAVE_RAW_DECL_PIPE2 1
| #define HAVE_RAW_DECL_PREAD 1
| #define HAVE_RAW_DECL_PWRITE 1
| #define HAVE_RAW_DECL_READLINK 1
| #define HAVE_RAW_DECL_READLINKAT 1
| #define HAVE_RAW_DECL_RMDIR 1
| #define HAVE_RAW_DECL_SETHOSTNAME 1
| #define HAVE_RAW_DECL_SLEEP 1
| #define HAVE_RAW_DECL_SYMLINK 1
| #define HAVE_RAW_DECL_SYMLINKAT 1
| #define HAVE_RAW_DECL_TTYNAME_R 1
| #define HAVE_RAW_DECL_UNLINK 1
| #define HAVE_RAW_DECL_UNLINKAT 1
| #define HAVE_RAW_DECL_USLEEP 1
| #define GNULIB_UNISTR_U8_MBTOUC 1
| #define GNULIB_UNISTR_U8_MBTOUC_UNSAFE 1
| #define GNULIB_UNISTR_U8_MBTOUCR 1
| #define GNULIB_UNISTR_U8_UCTOMB 1
| #define HAVE_VSNPRINTF 1
| #define GNULIB_TEST_VSNPRINTF 1
| #define HAVE_RAW_DECL_BTOWC 1
| #define HAVE_RAW_DECL_WCTOB 1
| #define HAVE_RAW_DECL_MBSINIT 1
| #define HAVE_RAW_DECL_MBRTOWC 1
| #define HAVE_RAW_DECL_MBRLEN 1
| #define HAVE_RAW_DECL_MBSRTOWCS 1
| #define HAVE_RAW_DECL_MBSNRTOWCS 1
| #define HAVE_RAW_DECL_WCRTOMB 1
| #define HAVE_RAW_DECL_WCSRTOMBS 1
| #define HAVE_RAW_DECL_WCSNRTOMBS 1
| #define HAVE_RAW_DECL_WCWIDTH 1
| #define HAVE_RAW_DECL_WMEMCHR 1
| #define HAVE_RAW_DECL_WMEMCMP 1
| #define HAVE_RAW_DECL_WMEMCPY 1
| #define HAVE_RAW_DECL_WMEMMOVE 1
| #define HAVE_RAW_DECL_WMEMSET 1
| #define HAVE_RAW_DECL_WCSLEN 1
| #define HAVE_RAW_DECL_WCSNLEN 1
| #define HAVE_RAW_DECL_WCSCPY 1
| #define HAVE_RAW_DECL_WCPCPY 1
| #define HAVE_RAW_DECL_WCSNCPY 1
| #define HAVE_RAW_DECL_WCPNCPY 1
| #define HAVE_RAW_DECL_WCSCAT 1
| #define HAVE_RAW_DECL_WCSNCAT 1
| #define HAVE_RAW_DECL_WCSCMP 1
| #define HAVE_RAW_DECL_WCSNCMP 1
| #define HAVE_RAW_DECL_WCSCASECMP 1
| #define HAVE_RAW_DECL_WCSNCASECMP 1
| #define HAVE_RAW_DECL_WCSCOLL 1
| #define HAVE_RAW_DECL_WCSXFRM 1
| #define HAVE_RAW_DECL_WCSDUP 1
| #define HAVE_RAW_DECL_WCSCHR 1
| #define HAVE_RAW_DECL_WCSRCHR 1
| #define HAVE_RAW_DECL_WCSCSPN 1
| #define HAVE_RAW_DECL_WCSSPN 1
| #define HAVE_RAW_DECL_WCSPBRK 1
| #define HAVE_RAW_DECL_WCSSTR 1
| #define HAVE_RAW_DECL_WCSTOK 1
| #define HAVE_RAW_DECL_WCSWIDTH 1
| #define GNULIB_TEST_WCRTOMB 1
| #define HAVE_TOWLOWER 1
| #define HAVE_RAW_DECL_WCTYPE 1
| #define HAVE_RAW_DECL_ISWCTYPE 1
| #define HAVE_RAW_DECL_WCTRANS 1
| #define HAVE_RAW_DECL_TOWCTRANS 1
| #define GNULIB_TEST_WRITE 1
| #define HAVE_STDINT_H 1
| #define GNULIB_LOCK 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define HAVE_LIBLTDL 1
| #define HOST_TYPE "i686-pc-linux-gnu"
| #define SCM_WARN_DEPRECATED_DEFAULT "summary"
| #define GUILE_USE_64_CALLS 1
| #define HAVE_MODULES 1
| #define HAVE_POSIX 1
| #define HAVE_NETWORKING 1
| #define HAVE_LABELS_AS_VALUES /**/
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_UNSIGNED_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_UNSIGNED_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_UNSIGNED_LONG 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_LONG_LONG 8
| #define SIZEOF_UNSIGNED_LONG_LONG 8
| #define SIZEOF___INT64 0
| #define SIZEOF_UNSIGNED___INT64 0
| #define SIZEOF_VOID_P 4
| #define SIZEOF_INTPTR_T 4
| #define SIZEOF_UINTPTR_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_OFF_T 8
| #define HAVE_STDINT_H 1
| #define HAVE_INTTYPES_H 1
| #define SIZEOF_INTMAX_T 8
| #define STDC_HEADERS 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_DIRENT_H 1
| #define HAVE_COMPLEX_H 1
| #define HAVE_FENV_H 1
| #define HAVE_IO_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_DIR_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_TIMEB_H 1
| #define HAVE_SYS_TIMES_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define HAVE_SCHED_H 1
| #define HAVE_SYS_SENDFILE_H 1
| #define HAVE_COMPLEX_DOUBLE 1
| #define HAVE_STRUCT_IP_MREQ 1
| #define HAVE_UNISTD_H 1
| #define GETGROUPS_T gid_t
| #define RETSIGTYPE void
| #define HAVE_LIBM 1
| #define HAVE_GETHOSTBYNAME 1
| #define HAVE_CONNECT 1
| #define HAVE_ASSERT_H 1
| #define HAVE_CEXP 1
| #define HAVE_CLOG 1
| #define HAVE_CLOG10 1
| #define HAVE_CTERMID 1
| #define HAVE_FESETROUND 1
| #define HAVE_FTIME 1
| #define HAVE_FTRUNCATE 1
| #define HAVE_FCHOWN 1
| #define HAVE_FCHMOD 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEUID 1
| #define HAVE_GETSID 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GMTIME_R 1
| #define HAVE_IOCTL 1
| #define HAVE_LSTAT 1
| #define HAVE_MKDIR 1
| #define HAVE_MKNOD 1
| #define HAVE_NICE 1
| #define HAVE_READDIR_R 1
| #define HAVE_READDIR64_R 1
| #define HAVE_READLINK 1
| #define HAVE_RENAME 1
| #define HAVE_RMDIR 1
| #define HAVE_SETEGID 1
| #define HAVE_SETEUID 1
| #define HAVE_SETLOCALE 1
| #define HAVE_SETPGID 1
| #define HAVE_SETSID 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_STAT64 1
| #define HAVE_STRPTIME 1
| #define HAVE_SYMLINK 1
| #define HAVE_SYNC 1
| #define HAVE_SYSCONF 1
| #define HAVE_TCGETPGRP 1
| #define HAVE_TCSETPGRP 1
| #define HAVE_UNAME 1
| #define HAVE_WAITPID 1
| #define HAVE_STRDUP 1
| #define HAVE_SYSTEM 1
| #define HAVE_USLEEP 1
| #define HAVE_ATEXIT 1
| #define HAVE_ON_EXIT 1
| #define HAVE_CHOWN 1
| #define HAVE_LINK 1
| #define HAVE_FCNTL 1
| #define HAVE_TTYNAME 1
| #define HAVE_GETPWENT 1
| #define HAVE_GETGRENT 1
| #define HAVE_KILL 1
| #define HAVE_GETPPID 1
| #define HAVE_GETPGRP 1
| #define HAVE_FORK 1
| #define HAVE_SETITIMER 1
| #define HAVE_GETITIMER 1
| #define HAVE_STRCHR 1
| #define HAVE_STRCMP 1
| #define HAVE_INDEX 1
| #define HAVE_BCOPY 1
| #define HAVE_MEMCPY 1
| #define HAVE_RINDEX 1
| #define HAVE_TRUNCATE 1
| #define HAVE_UNSETENV 1
| #define HAVE_ISBLANK 1
| #define HAVE_STRCOLL 1
| #define HAVE_STRCOLL_L 1
| #define HAVE_NEWLOCALE 1
| #define HAVE_UTIMENSAT 1
| #define HAVE_SCHED_GETAFFINITY 1
| #define HAVE_SCHED_SETAFFINITY 1
| #define HAVE_SENDFILE 1
| #define HAVE_CRYPT_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_CHROOT 1
| #define HAVE_FLOCK 1
| #define HAVE_GETLOGIN 1
| #define HAVE_CUSERID 1
| #define HAVE_GETPRIORITY 1
| #define HAVE_SETPRIORITY 1
| #define HAVE_GETPASS 1
| #define HAVE_SETHOSTNAME 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_SETHOSTNAME 1
| #define HAVE_DECL_HSTRERROR 0
| #define HAVE_DECL_CUSERID 1
| #define HAVE_CRYPT 1
| #define GUILE_I _Complex_I
| #define HAVE_USABLE_CSQRT 1
| #define HAVE_LIBGMP 1
| #define HAVE_DECL_MPZ_INITS 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_SSIZE_T 4
| #define ffi_type_size_t ffi_type_uint32
| #define ffi_type_ssize_t ffi_type_sint32
| #define ENABLE_NLS 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_ALARM 1
| #define HAVE_DECL_STRPTIME 1
| #define HAVE_UNIX_DOMAIN_SOCKETS 1
| #define HAVE_GETRLIMIT 1
| #define HAVE_SETRLIMIT 1
| #define HAVE_SOCKETPAIR 1
| #define HAVE_GETGROUPS 1
| #define HAVE_SETGROUPS 1
| #define HAVE_SETPWENT 1
| #define HAVE_PAUSE 1
| #define HAVE_TZSET 1
| #define HAVE_SETHOSTENT 1
| #define HAVE_GETHOSTENT 1
| #define HAVE_ENDHOSTENT 1
| #define HAVE_SETNETENT 1
| #define HAVE_GETNETENT 1
| #define HAVE_ENDNETENT 1
| #define HAVE_SETPROTOENT 1
| #define HAVE_GETPROTOENT 1
| #define HAVE_ENDPROTOENT 1
| #define HAVE_SETSERVENT 1
| #define HAVE_GETSERVENT 1
| #define HAVE_ENDSERVENT 1
| #define HAVE_GETNETBYADDR 1
| #define HAVE_GETNETBYNAME 1
| #define HAVE_INET_LNAOF 1
| #define HAVE_INET_MAKEADDR 1
| #define HAVE_INET_NETOF 1
| #define HAVE_HSTRERROR 1
| #define HAVE_LIBC_STACK_END 1
| #define HAVE_H_ERRNO 1
| #define HAVE_UINT32_T 1
| #define HAVE_IPV6 1
| #define HAVE_SIN6_SCOPE_ID 1
| #define ENABLE_REGEX 1
| #define HAVE_STRERROR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define HAVE_ASINH 1
| #define HAVE_ACOSH 1
| #define HAVE_ATANH 1
| #define HAVE_COPYSIGN 1
| #define HAVE_FINITE 1
| #define HAVE_SINCOS 1
| #define HAVE_TRUNC 1
| #define HAVE_ISINF 1
| #define HAVE_ISNAN 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_BLOCKS 1
| #define HAVE_STRUCT_STAT_ST_ATIM 1
| #define HAVE_STRUCT_STAT_ST_MTIM 1
| #define HAVE_STRUCT_STAT_ST_CTIM 1
| #define HAVE_STRUCT_TM_TM_ZONE 1
| #define HAVE_TM_ZONE 1
| #define HAVE_STRUCT_TM_TM_GMTOFF 1
| #define HAVE_GC_DO_BLOCKING 1
| #define HAVE_GC_CALL_WITH_GC_ACTIVE 1
| #define HAVE_GC_PTHREAD_EXIT 1
| #define HAVE_GC_PTHREAD_CANCEL 1
| #define HAVE_GC_ALLOW_REGISTER_THREADS 1
| #define HAVE_GC_PTHREAD_SIGMASK 1
| #define HAVE_GC_SET_START_CALLBACK 1
| #define HAVE_GC_GET_HEAP_USAGE_SAFE 1
| #define HAVE_GC_GET_FREE_SPACE_DIVISOR 1
| #define HAVE_GC_GCOLLECT_AND_UNMAP 1
| #define HAVE_GC_GET_UNMAPPED_BYTES 1
| #define HAVE_GC_SET_FINALIZER_NOTIFIER 1
| #define HAVE_GC_SET_FINALIZE_ON_DEMAND 1
| #define HAVE_GC_SET_ALL_INTERIOR_POINTERS 1
| #define HAVE_GC_GET_GC_NO 1
| #define HAVE_GC_SET_JAVA_FINALIZATION 1
| #define HAVE_DECL_GC_DO_BLOCKING 1
| #define HAVE_GC_FN_TYPE 1
| #define HAVE_GC_STACK_BASE 1
| #define SIZEOF_FLOAT 4
| #define SCM_SINGLES 1
| #define HAVE_STRUCT_LINGER 1
| #define HAVE_SYSTEM_STRUCT_TIMESPEC 1
| #define HAVE_PTHREAD_ATTR_GETSTACK 1
| #define HAVE_PTHREAD_GETATTR_NP 1
| #define HAVE_PTHREAD_SIGMASK 1
| #define USE_POSIX_THREADS 1
| #define PTHREAD_ATTR_GETSTACK_WORKS 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_DECL_RL_CATCH_SIGNALS 1
| #define HAVE_DECL_RL_CATCH_SIGWINCH 1
| /* end confdefs.h.  */
| /* Define rl_get_keymap to an innocuous variant, in case <limits.h> declares rl_get_keymap.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define rl_get_keymap innocuous_rl_get_keymap
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char rl_get_keymap (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef rl_get_keymap
| 
| /* 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 rl_get_keymap ();
| /* 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_rl_get_keymap || defined __stub___rl_get_keymap
| choke me
| #endif
| 
| int
| main ()
| {
| return rl_get_keymap ();
|   ;
|   return 0;
| }
configure:53001: result: no

[-- Attachment #3: makev --]
[-- Type: application/octet-stream, Size: 32956 bytes --]

ian@jaguar:~/Documents/FP/guile-2.0.11$ make -v
GNU Make 3.81
Copyright (C) 2006  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.

This program built for i686-pc-linux-gnu
ian@jaguar:~/Documents/FP/guile-2.0.11$ uname -a
Linux jaguar 2.6.38-11-generic #50-Ubuntu SMP Mon Sep 12 21:18:14 UTC 2011 i686 i686 i386 GNU/Linux
ian@jaguar:~/Documents/FP/guile-2.0.11$ 
ian@jaguar:~/Documents/FP/guile-2.0.11$ sudo ldconfig -v
/sbin/ldconfig.real: Can't stat /lib/i686-linux-gnu: No such file or directory
/sbin/ldconfig.real: Can't stat /usr/lib/i686-linux-gnu: No such file or directory
/sbin/ldconfig.real: Path `/lib/i386-linux-gnu' given more than once
/sbin/ldconfig.real: Path `/usr/lib/i386-linux-gnu' given more than once
/usr/lib/mesa:
	libGL.so.1 -> libGL.so.1.2
/lib/i386-linux-gnu:
	libpcprofile.so -> libpcprofile.so
	libSegFault.so -> libSegFault.so
	libselinux.so.1 -> libselinux.so.1
	libmemusage.so -> libmemusage.so
	libz.so.1 -> libz.so.1.2.3.4
	libdrm_intel.so.1 -> libdrm_intel.so.1.0.0
	libacl.so.1 -> libacl.so.1.1.0
	libanl.so.1 -> libanl-2.13.so
	libnss_compat.so.2 -> libnss_compat-2.13.so
	libBrokenLocale.so.1 -> libBrokenLocale-2.13.so
	libresolv.so.2 -> libresolv-2.13.so
	libpthread.so.0 -> libpthread-2.13.so
	libcrypt.so.1 -> libcrypt-2.13.so
	libgcc_s.so.1 -> libgcc_s.so.1
	libglib-2.0.so.0 -> libglib-2.0.so.0.2800.6
	libexpat.so.1 -> libexpat.so.1.5.2
	libutil.so.1 -> libutil-2.13.so
	libdrm_nouveau.so.1 -> libdrm_nouveau.so.1.0.0
	libext2fs.so.2 -> libext2fs.so.2.4
	libnss_hesiod.so.2 -> libnss_hesiod-2.13.so
	libblkid.so.1 -> libblkid.so.1.1.0
	libdrm.so.2 -> libdrm.so.2.4.0
	libuuid.so.1 -> libuuid.so.1.3.0
	libgpg-error.so.0 -> libgpg-error.so.0.8.0
	libthread_db.so.1 -> libthread_db-1.0.so
	libpng12.so.0 -> libpng12.so.0.44.0
	libcom_err.so.2 -> libcom_err.so.2.1
	libpamc.so.0 -> libpamc.so.0.82.1
	libattr.so.1 -> libattr.so.1.1.0
	libnss_nis.so.2 -> libnss_nis-2.13.so
	librt.so.1 -> librt-2.13.so
	ld-linux.so.2 -> ld-2.13.so
	libe2p.so.2 -> libe2p.so.2.3
	libgcrypt.so.11 -> libgcrypt.so.11.6.0
	libpcre.so.3 -> libpcre.so.3.12.1
	libdbus-1.so.3 -> libdbus-1.so.3.5.4
	libudev.so.0 -> libudev.so.0.11.1
	libkeyutils.so.1 -> libkeyutils.so.1.3
	libdl.so.2 -> libdl-2.13.so
	libnsl.so.1 -> libnsl-2.13.so
	libpam_misc.so.0 -> libpam_misc.so.0.82.0
	libdrm_radeon.so.1 -> libdrm_radeon.so.1.0.0
	libpam.so.0 -> libpam.so.0.82.3
	libc.so.6 -> libc-2.13.so
	libcidn.so.1 -> libcidn-2.13.so
	libss.so.2 -> libss.so.2.0
	libnss_nisplus.so.2 -> libnss_nisplus-2.13.so
	libnss_dns.so.2 -> libnss_dns-2.13.so
	libnss_files.so.2 -> libnss_files-2.13.so
	libexpatw.so.1 -> libexpatw.so.1.5.2
	libm.so.6 -> libm-2.13.so
/usr/lib/i386-linux-gnu:
	libgomp.so.1 -> libgomp.so.1.0.0
	libgdbm_compat.so.3 -> libgdbm_compat.so.3.0.0
	libgnutls-extra.so.26 -> libgnutls-extra.so.26.14.12
	libXinerama.so.1 -> libXinerama.so.1.0.0
	libkrb5.so.3 -> libkrb5.so.3.3
	libXfixes.so.3 -> libXfixes.so.3.1.0
	libavahi-gobject.so.0 -> libavahi-gobject.so.0.0.4
	libXau.so.6 -> libXau.so.6.0.0
	libavahi-common.so.3 -> libavahi-common.so.3.5.3
	libXft.so.2 -> libXft.so.2.2.0
	libgudev-1.0.so.0 -> libgudev-1.0.so.0.1.0
	libX11-xcb.so.1 -> libX11-xcb.so.1.0.0
	libgssapi_krb5.so.2 -> libgssapi_krb5.so.2.2
	libX11.so.6 -> libX11.so.6.3.0
	libSM.so.6 -> libSM.so.6.0.1
	libgnutls.so.26 -> libgnutls.so.26.14.12
	libjasper.so.1 -> libjasper.so.1.0.0
	libpangox-1.0.so.0 -> libpangox-1.0.so.0.2800.4
	libXcursor.so.1 -> libXcursor.so.1.0.2
	libavahi-client.so.3 -> libavahi-client.so.3.2.9
	libavahi-ui.so.0 -> libavahi-ui.so.0.1.4
	libpangoft2-1.0.so.0 -> libpangoft2-1.0.so.0.2800.4
	libXcomposite.so.1 -> libXcomposite.so.1.0.0
	libxcb-shape.so.0 -> libxcb-shape.so.0.0.0
	libpango-1.0.so.0 -> libpango-1.0.so.0.2800.4
	libXi.so.6 -> libXi.so.6.1.0
	libXxf86vm.so.1 -> libXxf86vm.so.1.0.0
	libgio-2.0.so.0 -> libgio-2.0.so.0.2800.6
	libXdamage.so.1 -> libXdamage.so.1.1.0
	libxcb-shm.so.0 -> libxcb-shm.so.0.0.0
	libgfortran.so.3 -> libgfortran.so.3.0.0
	libpcreposix.so.3 -> libpcreposix.so.3.12.1
	libXrender.so.1 -> libXrender.so.1.3.0
	libpangocairo-1.0.so.0 -> libpangocairo-1.0.so.0.2800.4
	libavahi-core.so.7 -> libavahi-core.so.7.0.2
	libk5crypto.so.3 -> libk5crypto.so.3.1
	libXdmcp.so.6 -> libXdmcp.so.6.0.0
	libavahi-glib.so.1 -> libavahi-glib.so.1.0.2
	libxcb.so.1 -> libxcb.so.1.1.0
	libxcb-render.so.0 -> libxcb-render.so.0.0.0
	libdb-4.8.so -> libdb-4.8.so
	libgnutls-openssl.so.26 -> libgnutls-openssl.so.26.14.12
	libXext.so.6 -> libXext.so.6.4.0
	libatk-1.0.so.0 -> libatk-1.0.so.0.9.1
	libstdc++.so.6 -> libstdc++.so.6.0.14
	libgmodule-2.0.so.0 -> libgmodule-2.0.so.0.2800.6
	libkrb5support.so.0 -> libkrb5support.so.0.1
	libtasn1.so.3 -> libtasn1.so.3.1.9
	libxcb-dri2.so.0 -> libxcb-dri2.so.0.0.0
	libgdbm.so.3 -> libgdbm.so.3.0.0
	liblouis.so.2 -> liblouis.so.2.2.0
	libsqlite3.so.0 -> libsqlite3.so.0.8.6
	libXrandr.so.2 -> libXrandr.so.2.2.0
	libtiff.so.4 -> libtiff.so.4.3.3
	libbamf.so.0 -> libbamf.so.0.0.0
	libgthread-2.0.so.0 -> libgthread-2.0.so.0.2800.6
	libICE.so.6 -> libICE.so.6.3.0
	libfreetype.so.6 -> libfreetype.so.6.6.2
	libXt.so.6 -> libXt.so.6.0.0
	libpangoxft-1.0.so.0 -> libpangoxft-1.0.so.0.2800.4
	libgobject-2.0.so.0 -> libgobject-2.0.so.0.2800.6
	libjpeg.so.62 -> libjpeg.so.62.0.0
	libfontconfig.so.1 -> libfontconfig.so.1.4.4
/usr/lib/alsa-lib:
	libasound_module_ctl_arcam_av.so -> libasound_module_ctl_arcam_av.so
	libasound_module_pcm_upmix.so -> libasound_module_pcm_upmix.so
	libasound_module_pcm_jack.so -> libasound_module_pcm_jack.so
	libasound_module_pcm_bluetooth.so -> libasound_module_pcm_bluetooth.so
	libasound_module_conf_pulse.so -> libasound_module_conf_pulse.so
	libasound_module_pcm_pulse.so -> libasound_module_pcm_pulse.so
	libasound_module_pcm_oss.so -> libasound_module_pcm_oss.so
	libasound_module_ctl_oss.so -> libasound_module_ctl_oss.so
	libasound_module_pcm_usb_stream.so -> libasound_module_pcm_usb_stream.so
	libasound_module_rate_speexrate.so -> libasound_module_rate_speexrate_medium.so
	libasound_module_rate_samplerate.so -> libasound_module_rate_samplerate_order.so
	libasound_module_pcm_vdownmix.so -> libasound_module_pcm_vdownmix.so
	libasound_module_ctl_pulse.so -> libasound_module_ctl_pulse.so
	libasound_module_pcm_speex.so -> libasound_module_pcm_speex.so
	libasound_module_ctl_bluetooth.so -> libasound_module_ctl_bluetooth.so
/usr/local/lib:
	libmgmp.so -> libmgmp.so
	libmunix.so -> libmunix.so
	libltdl.so.7 -> libltdl.so.7.3.0
	libz.so.1 -> libz.so.1.2.8
	libecpg_compat.so.3 -> libecpg_compat.so.3.5
	libpq.so.5 -> libpq.so.5.6
	libreadline.so.6 -> libreadline.so.6.3
	libffi.so.6 -> libffi.so.6.0.1
	libmregex.so -> libmregex.so
	libpgtypes.so.3 -> libpgtypes.so.3.4
	libunistring.so.0 -> libunistring.so.0.1.2
	libecpg.so.6 -> libecpg.so.6.5
	libcord.so.1 -> libcord.so.1.0.3
	libgc.so.1 -> libgc.so.1.0.3
	libgmp.so.10 -> libgmp.so.10.1.3
	libfreetype.so.6 -> libfreetype.so.6.11.1
	libhistory.so.6 -> libhistory.so.6.3
	libpng16.so.16 -> libpng16.so.16.10.0
/lib:
	libnss_mdns4.so.2 -> libnss_mdns4.so.2
	libply-boot-client.so.2 -> libply-boot-client.so.2.0.0
	libipq.so.0 -> libipq.so.0.0.0
	libbrlapi.so.0.5 -> libbrlapi.so.0.5.5
	libx86.so.1 -> libx86.so.1
	libply.so.2 -> libply.so.2.0.0
	libnss_mdns_minimal.so.2 -> libnss_mdns_minimal.so.2
	libdevmapper-event.so.1.02.1 -> libdevmapper-event.so.1.02.1
	libproc-3.2.8.so -> libproc-3.2.8.so
	libcrypto.so.0.9.8 -> libcrypto.so.0.9.8
	libnss_mdns.so.2 -> libnss_mdns.so.2
	libip6tc.so.0 -> libip6tc.so.0.0.0
	libiw.so.30 -> libiw.so.30
	libparted.so.0 -> libparted.so.0.0.1
	libfuse.so.2 -> libfuse.so.2.8.4
	libnih.so.1 -> libnih.so.1.0.0
	libulockmgr.so.1 -> libulockmgr.so.1.0.1
	libsepol.so.1 -> libsepol.so.1
	libcap.so.2 -> libcap.so.2.20
	libpcsclite.so.1 -> libpcsclite.so.1.0.0
	libbz2.so.1.0 -> libbz2.so.1.0.4
	libusb-0.1.so.4 -> libusb-0.1.so.4.4.4
	libatasmart.so.4 -> libatasmart.so.4.0.3
	libip4tc.so.0 -> libip4tc.so.0.0.0
	libpopt.so.0 -> libpopt.so.0.0.0
	libusb-1.0.so.0 -> libusb-1.0.so.0.0.0
	libnss_mdns6.so.2 -> libnss_mdns6.so.2
	libwrap.so.0 -> libwrap.so.0.7.6
	libnih-dbus.so.1 -> libnih-dbus.so.1.0.0
	libntfs-3g.so.79 -> libntfs-3g.so.79.0.0
	libslang.so.2 -> libslang.so.2.2.2
	liblvm2app.so.2.2 -> liblvm2app.so.2.2
	libipq_pic.so.0 -> libipq_pic.so.0.0.0
	libply-splash-core.so.2 -> libply-splash-core.so.2.0.0
	libdevmapper.so.1.02.1 -> libdevmapper.so.1.02.1
	libncursesw.so.5 -> libncursesw.so.5.7
	libbsd.so.0 -> libbsd.so.0.2.0
	libply-splash-graphics.so.2 -> libply-splash-graphics.so.2.0.0
	libreadline.so.6 -> libreadline.so.6.2
	libnss_mdns6_minimal.so.2 -> libnss_mdns6_minimal.so.2
	libncurses.so.5 -> libncurses.so.5.7
	libssl.so.0.9.8 -> libssl.so.0.9.8
	libhistory.so.6 -> libhistory.so.6.2
	libatm.so.1 -> libatm.so.1.0.0
	libnss_mdns4_minimal.so.2 -> libnss_mdns4_minimal.so.2
	libxtables.so.5 -> libxtables.so.5.0.0
	libsysfs.so.2 -> libsysfs.so.2.0.1
	libiptc.so.0 -> libiptc.so.0.0.0
/usr/lib:
	libkate.so.1 -> libkate.so.1.2.1
	libspi.so.0 -> libspi.so.0.10.11
	libstlport_gcc.so.4.6 -> libstlport_gcc.so.4.6
	libgnome-desktop-2.so.17 -> libgnome-desktop-2.so.17.1.5
	libcolamd.so.2.7.1 -> libcolamd.so.2.7.1
	libMonoSupportW.so -> libMonoSupportW.so
	libnotify.so.4 -> libnotify.so.4.0.0
	libnux-0.9.so.0 -> libnux-0.9.so.0.944.4
	libcupsimage.so.2 -> libcupsimage.so.2
	libstartup-notification-1.so.0 -> libstartup-notification-1.so.0.0.0
	libgtkmm-2.4.so.1 -> libgtkmm-2.4.so.1.1.0
	libhunspell-1.2.so.0 -> libhunspell-1.2.so.0.0.0
	libgstaudio-0.10.so.0 -> libgstaudio-0.10.so.0.23.0
	libutouch-evemu.so.1 -> libutouch-evemu.so.1.0.0
	libutouch-geis.so.1 -> libutouch-geis.so.1.2.0
	librasqal.so.2 -> librasqal.so.2.0.0
	libnetsnmpagent.so.15 -> libnetsnmpagent.so.15.1.2
	libgstnetbuffer-0.10.so.0 -> libgstnetbuffer-0.10.so.0.23.0
	libfribidi.so.0 -> libfribidi.so.0.3.1
	libgsl.so.0 -> libgsl.so.0.15.0
	libv4l2.so.0 -> libv4l2.so.0
	libxcb-aux.so.0 -> libxcb-aux.so.0.0.0
	librom1394.so.0 -> librom1394.so.0.3.0
	libsmime3.so -> libsmime3.so.1d
	libgvfscommon.so.0 -> libgvfscommon.so.0.0.0
	libwbclient.so.0 -> libwbclient.so.0
	libgnome-bluetooth.so.8 -> libgnome-bluetooth.so.8.0.0
	libieee1284.so.3 -> libieee1284.so.3.2.2
	libgstinterfaces-0.10.so.0 -> libgstinterfaces-0.10.so.0.23.0
	libtelepathy-logger.so.2 -> libtelepathy-logger.so.2.0.3
	libmission-control-plugins.so.0 -> libmission-control-plugins.so.0.3.0
	libgstbasecamerabinsrc-0.10.so.0 -> libgstbasecamerabinsrc-0.10.so.0.0.0
	libwps-0.2.so.2 -> libwps-0.2.so.2.0.0
	libgsttag-0.10.so.0 -> libgsttag-0.10.so.0.23.0
	libcdt.so.4 -> libcdt.so.4.0.0
	libgdata.so.11 -> libgdata.so.11.0.0
	libplds4.so -> libplds4.so.0d
	libgtkhtml-3.14.so.19 -> libgtkhtml-3.14.so.19.1.1
	libutouch-frame.so.1 -> libutouch-frame.so.1.1.0
	libgstfft-0.10.so.0 -> libgstfft-0.10.so.0.23.0
	libkpathsea.so.5 -> libkpathsea.so.5.0.0
	libtcl8.4.so.0 -> libtcl8.4.so.0
	libsilc-1.1.so.2 -> libsilc-1.1.so.2.1.0
	libgnomekbd.so.4 -> libgnomekbd.so.4.2.0
	libtelepathy-glib.so.0 -> libtelepathy-glib.so.0.54.0
	libnss3.so -> libnss3.so.1d
	libnice.so.10 -> libnice.so.10.0.0
	libanthydic.so.0 -> libanthydic.so.0.1.0
	libgraph.so.4 -> libgraph.so.4.0.0
	libntfs.so.10 -> libntfs.so.10.0.0
	libpoppler.so.13 -> libpoppler.so.13.0.0
	libmpeg2.so.0 -> libmpeg2.so.0.0.0
	libnetsnmptrapd.so.15 -> libnetsnmptrapd.so.15.1.2
	libdirac_encoder.so.0 -> libdirac_encoder.so.0.1.0
	libSDL-1.2.so.0 -> libSDL-1.2.so.0.11.3
	libgcr.so.0 -> libgcr.so.0.0.0
	libgamin-1.so.0 -> libgamin-1.so.0.1.10
	libasound.so.2 -> libasound.so.2.0.0
	libgssdp-1.0.so.2 -> libgssdp-1.0.so.2.0.0
	libfontenc.so.1 -> libfontenc.so.1.0.0
	libzeitgeist-1.0.so.1 -> libzeitgeist-1.0.so.1.0.3
	libnfnetlink.so.0 -> libnfnetlink.so.0.2.0
	liba52-0.7.4.so -> liba52-0.7.4.so
	libgpgme.so.11 -> libgpgme.so.11.7.0
	libedataserver-1.2.so.14 -> libedataserver-1.2.so.14.0.0
	libgtkhtml-editor-3.14.so.0 -> libgtkhtml-editor-3.14.so.0.0.0
	libpspell.so.15 -> libpspell.so.15.1.4
	libmp.so.3 -> libmp.so.3.1.16
	libicule.so.44 -> libicule.so.44.2
	libmetacity-private.so.0 -> libmetacity-private.so.0.0.0
	libjson-glib-1.0.so.0 -> libjson-glib-1.0.so.0.1200.2
	libspeexdsp.so.1 -> libspeexdsp.so.1.5.0
	libcelt0.so.0 -> libcelt0.so.0.0.0
	libavcodec.so.52 -> libavcodec.so.52.72.2
	libavc1394.so.0 -> libavc1394.so.0.3.0
	libportaudio.so.2 -> libportaudio.so.2.0.0
	libedata-cal-1.2.so.10 -> libedata-cal-1.2.so.10.0.0
	libgstrtp-0.10.so.0 -> libgstrtp-0.10.so.0.23.0
	libfftw3f_threads.so.3 -> libfftw3f_threads.so.3.2.4
	libboost_wserialization.so.1.42.0 -> libboost_wserialization.so.1.42.0
	libtic.so.5 -> libtic.so.5.7
	libsyncdaemon-1.0.so.1 -> libsyncdaemon-1.0.so.1.0.0
	libxklavier.so.16 -> libxklavier.so.16.0.0
	libavutil.so.50 -> libavutil.so.50.15.1
	libindicate-gtk.so.2 -> libindicate-gtk.so.2.0.3
	libgstbase-0.10.so.0 -> libgstbase-0.10.so.0.28.0
	libchromeXvMCPro.so.1 -> libchromeXvMCPro.so.1.0.0
	libbonoboui-2.so.0 -> libbonoboui-2.so.0.0.0
	libicuuc.so.44 -> libicuuc.so.44.2
	libapparmor.so.1 -> libapparmor.so.1.0.2
	libXv.so.1 -> libXv.so.1.0.0
	libiculx.so.44 -> libiculx.so.44.2
	libflite_cmu_us_kal.so.1 -> libflite_cmu_us_kal.so.1.4
	libexempi.so.3 -> libexempi.so.3.2.1
	libm17n-flt.so.0 -> libm17n-flt.so.0.4.0
	libicutu.so.44 -> libicutu.so.44.2
	libicutest.so.44 -> libicutest.so.44.2
	libcdda_paranoia.so.0 -> libcdda_paranoia.so.0.10.2
	libpulse-simple.so.0 -> libpulse-simple.so.0.0.3
	libXtst.so.6 -> libXtst.so.6.1.0
	libglade-2.0.so.0 -> libglade-2.0.so.0.0.7
	liboil-0.3.so.0 -> liboil-0.3.so.0.3.0
	libsensors.so.4 -> libsensors.so.4.3.0
	libogg.so.0 -> libogg.so.0.7.0
	libbrasero-utils.so.1 -> libbrasero-utils.so.1.2.0
	libflite_cmu_us_rms.so.1 -> libflite_cmu_us_rms.so.1.4
	libjbig2dec.so.0 -> libjbig2dec.so.0.0.0
	libopencore-amrnb.so.0 -> libopencore-amrnb.so.0.0.2
	libXfont.so.1 -> libXfont.so.1.4.1
	libebackend-1.2.so.0 -> libebackend-1.2.so.0.0.1
	libedataserverui-1.2.so.11 -> libedataserverui-1.2.so.11.0.0
	libspeechd.so.2 -> libspeechd.so.2.3.0
	libpolkit-agent-1.so.0 -> libpolkit-agent-1.so.0.0.0
	libpython2.7.so.1.0 -> libpython2.7.so.1.0
	libgtk-vnc-1.0.so.0 -> libgtk-vnc-1.0.so.0.0.1
	libaa.so.1 -> libaa.so.1.0.4
	libmpcdec.so.6 -> libmpcdec.so.6.1.0
	libmms.so.0 -> libmms.so.0.0.2
	libgpgme-pthread.so.11 -> libgpgme-pthread.so.11.7.0
	libXvMCW.so.1 -> libXvMCW.so.1.0.0
	libcanberra.so.0 -> libcanberra.so.0.2.5
	libplist.so.1 -> libplist.so.1.1.4
	libvorbisfile.so.3 -> libvorbisfile.so.3.3.4
	libfftw3l_threads.so.3 -> libfftw3l_threads.so.3.2.4
	libpulsedsp.so -> libpulsedsp.so
	libgnome-2.so.0 -> libgnome-2.so.0.3200.1
	libspeex.so.1 -> libspeex.so.1.5.0
	libofa.so.0 -> libofa.so.0.0.0
	libdbus-glib-1.so.2 -> libdbus-glib-1.so.2.1.0
	libboost_serialization.so.1.42.0 -> libboost_serialization.so.1.42.0
	libpulse-browse.so.0 -> libpulse-browse.so.0.1.1
	libglibmm-2.4.so.1 -> libglibmm-2.4.so.1.3.0
	libIlmThread.so.6 -> libIlmThread.so.6.0.0
	libmpc.so.2 -> libmpc.so.2.0.0
	libpostproc.so.51 -> libpostproc.so.51.2.0
	libvte.so.9 -> libvte.so.9.2790.0
	libfftw3_threads.so.3 -> libfftw3_threads.so.3.2.4
	libgstphotography-0.10.so.0 -> libgstphotography-0.10.so.0.0.0
	libgksu2.so.0 -> libgksu2.so.0.0.2
	libgdk-x11-2.0.so.0 -> libgdk-x11-2.0.so.0.2400.4
	libpth.so.20 -> libpth.so.20.0.27
	libbluetooth.so.3 -> libbluetooth.so.3.11.0
	libts-0.0.so.0 -> libts-0.0.so.0.1.1
	libMagickCore.so.3 -> libMagickCore.so.3.0.0
	libcurl-gnutls.so.4 -> libcurl-gnutls.so.4.2.0
	libtheoraenc.so.1 -> libtheoraenc.so.1.1.2
	libpciaccess.so.0 -> libpciaccess.so.0.10.8
	libsilcclient-1.1.so.3 -> libsilcclient-1.1.so.3.0.0
	libglibmm_generate_extra_defs-2.4.so.1 -> libglibmm_generate_extra_defs-2.4.so.1.3.0
	libaspell.so.15 -> libaspell.so.15.1.4
	libgp11.so.0 -> libgp11.so.0.0.0
	libgettextsrc-0.18.1.so -> libgettextsrc.so
	libyelp.so.0 -> libyelp.so.0.0.0
	libdns.so.69 -> libdns.so.69.1.2
	libguile-srfi-srfi-60-v-2.so.2 -> libguile-srfi-srfi-60-v-2.so.2.0.2
	libutouch-grail.so.1 -> libutouch-grail.so.1.0.0
	libgnome-window-settings.so.1 -> libgnome-window-settings.so.1.0.0
	libfftw3l.so.3 -> libfftw3l.so.3.2.4
	libnm-util.so.1 -> libnm-util.so.1.6.1
	libbind9.so.60 -> libbind9.so.60.0.4
	libindicator.so.3 -> libindicator.so.3.0.0
	libdc1394.so.22 -> libdc1394.so.22.1.4
	libopenobex.so.1 -> libopenobex.so.1.5.0
	libtdb.so.1 -> libtdb.so.1.2.9
	libgee.so.2 -> libgee.so.2.0.0
	libIntelXvMC.so.1 -> libIntelXvMC.so.1.0.0
	libgeoclue.so.0 -> libgeoclue.so.0.0.0
	libgstapp-0.10.so.0 -> libgstapp-0.10.so.0.23.0
	libmodplug.so.1 -> libmodplug.so.1.0.0
	libcaca.so.0 -> libcucul.so.0.99.17
	libFS.so.6 -> libFS.so.6.0.0
	libdjvulibre.so.21 -> libdjvulibre.so.21.2.0
	libtheora.so.0 -> libtheora.so.0.3.10
	liblwres.so.60 -> liblwres.so.60.0.1
	liborc-0.4.so.0 -> liborc-0.4.so.0.11.0
	libpulse-mainloop-glib.so.0 -> libpulse-mainloop-glib.so.0.0.4
	libnssutil3.so -> libnssutil3.so.1d
	libgutenprint.so.2 -> libgutenprint.so.2.0.7
	libgtksourceview-2.0.so.0 -> libgtksourceview-2.0.so.0.0.0
	libgnomevfs-2.so.0 -> libgnomevfs-2.so.0.2400.4
	libgstdataprotocol-0.10.so.0 -> libgstdataprotocol-0.10.so.0.28.0
	libcupsdriver.so.1 -> libcupsdriver.so.1
	libpanel-applet-2.so.0 -> libpanel-applet-2.so.0.2.73
	libXaw.so.7 -> libXaw7.so.7.0.0
	libwebkitgtk-1.0.so.0 -> libwebkitgtk-1.0.so.0.6.0
	liblaunchpad-integration.so.1 -> liblaunchpad-integration.so.1.0.0
	libgvfscommon-dnssd.so.0 -> libgvfscommon-dnssd.so.0.0.0
	libgphoto2_port.so.0 -> libgphoto2_port.so.0.8.0
	libgdkmm-2.4.so.1 -> libgdkmm-2.4.so.1.1.0
	libicui18n.so.44 -> libicui18n.so.44.2
	libflite_usenglish.so.1 -> libflite_usenglish.so.1.4
	libnetsnmphelpers.so.15 -> libnetsnmphelpers.so.15.1.2
	libdotconf-1.0.so.0 -> libdotconf-1.0.so.0.10.4
	libdconf.so.0 -> libdconf.so.0.0.0
	libcamel-provider-1.2.so.19 -> libcamel-provider-1.2.so.19.0.0
	libgpm.so.2 -> libgpm.so.2.0.0
	libgucharmap.so.7 -> libgucharmap.so.7.0.0
	libloginhelper.so.0 -> libloginhelper.so.0.0.0
	libijs-0.35.so -> libijs-0.35.so
	libquvi.so.0 -> libquvi.so.0.3.3
	libschroedinger-1.0.so.0 -> libschroedinger-1.0.so.0.10.0
	libORBit-2.so.0 -> libORBit-2.so.0.1.0
	libcupscgi.so.1 -> libcupscgi.so.1
	libisccc.so.60 -> libisccc.so.60.0.0
	libvpx.so.0 -> libvpx.so.0.9.6
	libjack.so.0 -> libjack.so.0.1.0
	libgs.so.9 -> libgs.so.9.01
	libdvdnav.so.4 -> libdvdnav.so.4.1.3
	libMagick++.so.3 -> libMagick++.so.3.0.0
	libicudata.so.44 -> libicudata.so.44.2
	libgc.so.1 -> libgc.so.1.0.2
	librtmp.so.0 -> librtmp.so.0
	libppl.so.7 -> libppl.so.7.1.0
	libevdocument.so.3 -> libevdocument.so.3.0.0
	libwmf-0.2.so.7 -> libwmf-0.2.so.7.1.0
	libgupnp-igd-1.0.so.3 -> libgupnp-igd-1.0.so.3.0.2
	libmpfr.so.4 -> libmpfr.so.4.0.0
	libxapian.so.22 -> libxapian.so.22.2.0
	libswscale.so.0 -> libswscale.so.0.11.0
	libidn.so.11 -> libidn.so.11.6.1
	libgdk_pixbuf-2.0.so.0 -> libgdk_pixbuf-2.0.so.0.2300.3
	libcaca++.so.0 -> libcucul++.so.0.99.17
	libexif.so.12 -> libexif.so.12.3.2
	libtotem-plparser-mini.so.17 -> libtotem-plparser-mini.so.17.0.1
	libvorbisenc.so.2 -> libvorbisenc.so.2.0.8
	liboobs-1.so.5 -> liboobs-1.so.5.0.0
	libcdio.so.10 -> libcdio.so.10.0.0
	libgstcdda-0.10.so.0 -> libgstcdda-0.10.so.0.23.0
	libck-connector.so.0 -> libck-connector.so.0.0.0
	libffi.so.5 -> libffi.so.5.0.10
	libgnome-media-profiles.so.0 -> libgnome-media-profiles.so.0.0.0
	libgnome-menu.so.2 -> libgnome-menu.so.2.4.10
	libgvc.so.5 -> libgvc.so.5.0.0
	libv4lconvert.so.0 -> libv4lconvert.so.0
	libdatrie.so.1 -> libdatrie.so.1.1.0
	libgdk_pixbuf_xlib-2.0.so.0 -> libgdk_pixbuf_xlib-2.0.so.0.2300.3
	libnspr4.so -> libnspr4.so.0d
	libfam.so.0 -> libfam.so.0.0.0
	libmtdev.so.1 -> libmtdev.so.1.0.0
	libsigc-2.0.so.0 -> libsigc-2.0.so.0.0.0
	libhpip.so.0 -> libhpip.so.0.0.1
	libpcap.so.0.8 -> libpcap.so.1.1.1
	libgnomekbdui.so.4 -> libgnomekbdui.so.4.2.0
	libmusicbrainz.so.4 -> libmusicbrainz.so.4.0.3
	libcdio_paranoia.so.0 -> libcdio_paranoia.so.0.0.3
	libgme.so.0 -> libgme.so.0.5.3
	libgnomecanvas-2.so.0 -> libgnomecanvas-2.so.0.3000.3
	libappindicator.so.1 -> libappindicator.so.1.0.0
	libgtk-x11-2.0.so.0 -> libgtk-x11-2.0.so.0.2400.4
	libimobiledevice.so.2 -> libimobiledevice.so.2.0.0
	libwavpack.so.1 -> libwavpack.so.1.1.4
	libevview.so.3 -> libevview.so.3.0.0
	libnetsnmpmibs.so.15 -> libnetsnmpmibs.so.15.1.2
	libpulsecommon-0.9.22.so -> libpulsecommon-0.9.22.so
	libutempter.so.0 -> libutempter.so.1.1.5
	libmythes-1.2.so.0 -> libmythes-1.2.so.0.0.0
	libsidplay.so.1 -> libsidplay.so.1.0.3
	libtelepathy-farsight.so.0 -> libtelepathy-farsight.so.0.1.3
	libwpd-stream-0.9.so.9 -> libwpd-stream-0.9.so.9.0.0
	librarian.so.0 -> librarian.so.0.0.0
	libI810XvMC.so.1 -> libI810XvMC.so.1.0.0
	libgirepository-1.0.so.1 -> libgirepository-1.0.so.1.0.0
	libcupsmime.so.1 -> libcupsmime.so.1
	libflite_cmu_us_awb.so.1 -> libflite_cmu_us_awb.so.1.4
	libopencc.so.1 -> libopencc.so.1.0.0
	libzephyr.so.4 -> libzephyr.so.4.0.0
	libgslcblas.so.0 -> libgslcblas.so.0.0.0
	libmeanwhile.so.1 -> libmeanwhile.so.1.0.2
	libXxf86dga.so.1 -> libXxf86dga.so.1.0.0
	libpipeline.so.1 -> libpipeline.so.1.2.0
	libfftw3f.so.3 -> libfftw3f.so.3.2.4
	libnetpbm.so.10 -> libnetpbm.so.10.0
	libcdda_interface.so.0 -> libcdda_interface.so.0.10.2
	libvisual-0.4.so.0 -> libvisual-0.4.so.0.0.0
	libgnome-mag.so.2 -> libgnome-mag.so.2.4.3
	libGLU.so.1 -> libGLU.so.1.3.071000
	libnux-core-0.9.so.0 -> libnux-core-0.9.so.0.944.4
	libbonobo-2.so.0 -> libbonobo-2.so.0.0.0
	libbrasero-media.so.1 -> libbrasero-media.so.1.2.0
	libv4l1.so.0 -> libv4l1.so.0
	libMagickWand.so.3 -> libMagickWand.so.3.0.0
	libgstrtsp-0.10.so.0 -> libgstrtsp-0.10.so.0.23.0
	libm17n-gui.so.0 -> libm17n-gui.so.0.4.0
	libpurple-client.so.0 -> libpurple-client.so.0.7.11
	libmtp.so.8 -> libmtp.so.8.3.6
	libisofs.so.6 -> libisofs.so.6.28.0
	libical.so.0 -> libical.so.0.44.0
	libgstriff-0.10.so.0 -> libgstriff-0.10.so.0.23.0
	libformw.so.5 -> libformw.so.5.7
	libpanel.so.5 -> libpanel.so.5.7
	libflite_cmu_us_kal16.so.1 -> libflite_cmu_us_kal16.so.1.4
	libgmime-2.4.so.2 -> libgmime-2.4.so.2.4.24
	libcupsppdc.so.1 -> libcupsppdc.so.1
	libsndfile.so.1 -> libsndfile.so.1.0.23
	libxslt.so.1 -> libxslt.so.1.1.26
	libgd.so.2 -> libgd.so.2.0.0
	liblockfile.so.1 -> liblockfile.so.1.0
	libcairomm-1.0.so.1 -> libcairomm-1.0.so.1.4.0
	libraptor.so.1 -> libraptor.so.1.2.0
	libpulsecore-0.9.22.so -> libpulsecore-0.9.22.so
	libIex.so.6 -> libIex.so.6.0.0
	libexslt.so.0 -> libexslt.so.0.8.15
	libgpod.so.4 -> libgpod.so.4.3.1
	libnm-glib.so.2 -> libnm-glib.so.2.4.3
	libgstcontroller-0.10.so.0 -> libgstcontroller-0.10.so.0.28.0
	libicalvcal.so.0 -> libicalvcal.so.0.44.0
	libFLAC.so.8 -> libFLAC.so.8.2.0
	libgweather.so.1 -> libgweather.so.1.6.10
	libmad.so.0 -> libmad.so.0.2.1
	libgccpp.so.1 -> libgccpp.so.1.0.2
	libprotobuf.so.6 -> libprotobuf.so.6.0.0
	libwpg-0.2.so.2 -> libwpg-0.2.so.2.0.0
	libapt-pkg.so.4.10 -> libapt-pkg.so.4.10.1
	libGeoIPUpdate.so.0 -> libGeoIPUpdate.so.0.0.0
	liborc-test-0.4.so.0 -> liborc-test-0.4.so.0.11.0
	libdecoration.so.0 -> libdecoration.so.0.0.0
	libcamel-1.2.so.19 -> libcamel-1.2.so.19.0.0
	libnux-graphics-0.9.so.0 -> libnux-graphics-0.9.so.0.944.4
	libgexiv2.so.0 -> libgexiv2.so.0.0.0
	libcairo-gobject.so.2 -> libcairo-gobject.so.2.11000.2
	libsasl2.so.2 -> libsasl2.so.2.0.23
	libguilereadline-v-17.so.17 -> libguilereadline-v-17.so.17.0.3
	libXp.so.6 -> libXp.so.6.2.0
	libcdaudio.so.1 -> libcdaudio.so.1.0.0
	libppl_c.so.2 -> libppl_c.so.2.1.0
	libedit.so.2 -> libedit.so.2.11
	libGLEW.so.1.5 -> libGLEW.so.1.5.2
	libgnome-keyring.so.0 -> libgnome-keyring.so.0.1.1
	libdvdread.so.4 -> libdvdread.so.4.1.3
	libform.so.5 -> libform.so.5.7
	libusbmuxd.so.1 -> libusbmuxd.so.1.0.7
	libburn.so.4 -> libburn.so.4.45.0
	libproxy.so.0 -> libproxy.so.0.0.0
	libdee-1.0.so.1 -> libdee-1.0.so.1.1.1
	libsmbclient.so.0 -> libsmbclient.so.0
	libtalloc.so.2 -> libtalloc.so.2.0.5
	libisc.so.62 -> libisc.so.62.1.1
	libssl3.so -> libssl3.so.1d
	libibus.so.2 -> libibus.so.2.0.0
	libXss.so.1 -> libXss.so.1.0.0
	libunistring.so.0 -> libunistring.so.0.1.2
	libgphoto2.so.2 -> libgphoto2.so.2.4.0
	libhyphen.so.0 -> libhyphen.so.0.2.0
	libasprintf.so.0 -> libasprintf.so.0.0.0
	libgstvideo-0.10.so.0 -> libgstvideo-0.10.so.0.23.0
	libzbar.so.0 -> libzbar.so.0.2.0
	libbonobo-activation.so.4 -> libbonobo-activation.so.4.0.0
	libflite.so.1 -> libflite.so.1.4
	libpst.so.4 -> libpst.so.4.0.0
	libindicate.so.5 -> libindicate.so.5.0.2
	libdv.so.4 -> libdv.so.4.0.3
	libpurple.so.0 -> libpurple.so.0.7.11
	liblqr-1.so.0 -> liblqr-1.so.0.3.1
	libguile-srfi-srfi-1-v-3.so.3 -> libguile-srfi-srfi-1-v-3.so.3.0.2
	libenchant.so.1 -> libenchant.so.1.6.0
	libvorbis.so.0 -> libvorbis.so.0.4.5
	libpci.so.3 -> libpci.so.3.1.7
	libcairo.so.2 -> libcairo.so.2.11000.2
	libtextcat.so.0 -> libtextcat.so.0.0.0
	libpanel-applet-3.so.0 -> libpanel-applet-3.so.0.0.6
	libebook-1.2.so.10 -> libebook-1.2.so.10.3.1
	libcloog-debian.so.0 -> libcloog-ppl.so.0
	libicalss.so.0 -> libicalss.so.0.44.0
	libraw1394.so.11 -> libraw1394.so.11.0.1
	libpyglib-2.0-python2.6.so.0 -> libpyglib-2.0-python2.6.so.0.0.0
	libmenu.so.5 -> libmenu.so.5.7
	libsgutils2.so.2 -> libsgutils2.so.2.0.0
	libIDL-2.so.0 -> libIDL-2.so.0.0.0
	libva.so.1 -> libva.so.1.0.8
	libass.so.4 -> libass.so.4.1.0
	libnautilus-extension.so.1 -> libnautilus-extension.so.1.2.0
	libslp.so.1 -> libslp.so.1.0.1
	libecal-1.2.so.8 -> libecal-1.2.so.8.2.2
	libticw.so.5 -> libticw.so.5.7
	libxcb-event.so.1 -> libxcb-event.so.1.0.0
	libcryptui.so.0 -> libcryptui.so.0.0.0
	libdbusmenu-gtk.so.3 -> libdbusmenu-gtk.so.3.0.14
	libxkbfile.so.1 -> libxkbfile.so.1.0.2
	libdca.so.0 -> libdca.so.0.0.0
	libgstnet-0.10.so.0 -> libgstnet-0.10.so.0.28.0
	libespeak.so.1 -> libespeak.so.1.1.44
	libltdl.so.7 -> libltdl.so.7.2.1
	libt1.so.5 -> libt1.so.5.1.2
	libnewt.so.0.52 -> libnewt.so.0.52.11
	libuniquewm-1.2.so.9 -> libuniquewm-1.2.so.9.0.1
	libGLEWmx.so.1.5 -> libGLEWmx.so.1.5.2
	libfolks.so.22 -> libfolks.so.22.0.0
	libgpgme-pth.so.11 -> libgpgme-pth.so.11.7.0
	libneon-gnutls.so.27 -> libneon-gnutls.so.27.2.5
	libgstreamer-0.10.so.0 -> libgstreamer-0.10.so.0.28.0
	libgiomm-2.4.so.1 -> libgiomm-2.4.so.1.3.0
	libfftw3.so.3 -> libfftw3.so.3.2.4
	libguile-srfi-srfi-4-v-3.so.3 -> libguile-srfi-srfi-4-v-3.so.3.0.1
	libgmpxx.so.4 -> libgmpxx.so.4.1.2
	libgstpbutils-0.10.so.0 -> libgstpbutils-0.10.so.0.23.0
	libpolkit-gobject-1.so.0 -> libpolkit-gobject-1.so.0.0.0
	libgif.so.4 -> libungif.so.4.1.6
	libguile-srfi-srfi-13-14-v-3.so.3 -> libguile-srfi-srfi-13-14-v-3.so.3.0.1
	libdirect-1.2.so.9 -> libdirect-1.2.so.9.0.1
	libdbusmenu-glib.so.3 -> libdbusmenu-glib.so.3.0.14
	libfusion-1.2.so.9 -> libfusion-1.2.so.9.0.1
	libgstcheck-0.10.so.0 -> libgstcheck-0.10.so.0.28.0
	libmpeg2convert.so.0 -> libmpeg2convert.so.0.0.0
	librsvg-2.so.2 -> librsvg-2.so.2.32.1
	libxml2.so.2 -> libxml2.so.2.7.8
	libmagic.so.1 -> libmagic.so.1.0.0
	libedata-book-1.2.so.8 -> libedata-book-1.2.so.8.0.0
	libnm-glib-vpn.so.1 -> libnm-glib-vpn.so.1.0.0
	libplc4.so -> libplc4.so.0d
	libthai.so.0 -> libthai.so.0.1.6
	libpaper.so.1 -> libpaper.so.1.1.2
	libcspi.so.0 -> libcspi.so.0.10.11
	libgdu.so.0 -> libgdu.so.0.0.0
	libXmuu.so.1 -> libXmuu.so.1.0.0
	libegroupwise-1.2.so.13 -> libegroupwise-1.2.so.13.0.1
	libanthy.so.0 -> libanthy.so.0.1.0
	libisccfg.so.62 -> libisccfg.so.62.0.0
	libXRes.so.1 -> libXRes.so.1.0.0
	libgraphite.so.3 -> libgraphite.so.3.0.0
	libt1x.so.5 -> libt1x.so.5.1.2
	libprotoc.so.6 -> libprotoc.so.6.0.0
	libpoppler-glib.so.6 -> libpoppler-glib.so.6.0.0
	libdirectfb-1.2.so.9 -> libdirectfb-1.2.so.9.0.1
	libSoundTouch.so.0 -> libSoundTouch.so.0.0.0
	libXmu.so.6 -> libXmu.so.6.2.0
	libdvdnavmini.so.4 -> libdvdnavmini.so.4.1.3
	libgconf-2.so.4 -> libgconf-2.so.4.1.5
	libgadu.so.3 -> libgadu.so.3.12.0
	libcanberra-gtk.so.0 -> libcanberra-gtk.so.0.1.8
	libtheoradec.so.1 -> libtheoradec.so.1.1.4
	libgdu-gtk.so.0 -> libgdu-gtk.so.0.0.0
	libgstfarsight-0.10.so.0 -> libgstfarsight-0.10.so.0.6.1
	libGeoIP.so.1 -> libGeoIP.so.1.4.7
	libgwibber.so.1 -> libgwibber.so.1.0.0
	libnetsnmp.so.15 -> libnetsnmp.so.15.1.2
	libnl.so.1 -> libnl.so.1.1
	libgupnp-1.0.so.3 -> libgupnp-1.0.so.3.0.0
	libunity-misc.so.0 -> libunity-misc.so.0.201.0
	liblcms.so.1 -> liblcms.so.1.0.18
	liblirc_client.so.0 -> liblirc_client.so.0.2.1
	libgladeui-1.so.11 -> libgladeui-1.so.11.0.0
	libpolkit-gtk-1.so.0 -> libpolkit-gtk-1.so.0.0.0
	libotf.so.0 -> libotf.so.0.0.0
	libsamplerate.so.0 -> libsamplerate.so.0.1.7
	libubuntuone-1.0.so.1 -> libubuntuone-1.0.so.1.0.0
	libsoup-gnome-2.4.so.1 -> libsoup-gnome-2.4.so.1.4.0
	libMonoPosixHelper.so -> libMonoPosixHelper.so
	libcdio_cdda.so.0 -> libcdio_cdda.so.0.0.5
	libiec61883.so.0 -> libiec61883.so.0.1.1
	libopencore-amrwb.so.0 -> libopencore-amrwb.so.0.0.2
	libwnck-1.so.22 -> libwnck-1.so.22.3.31
	libunique-1.0.so.0 -> libunique-1.0.so.0.100.6
	libavformat.so.52 -> libavformat.so.52.64.2
	libopenspc.so.0 -> libopenspc.so.0.0.3
	libsnmp.so.15 -> libsnmp.so.15.1.2
	libImath.so.6 -> libImath.so.6.0.0
	libldap_r-2.4.so.2 -> libldap_r-2.4.so.2.5.6
	libido-0.1.so.0 -> libido-0.1.so.0.0.0
	libtwolame.so.0 -> libtwolame.so.0.0.0
	libgsm.so.1 -> libgsm.so.1.0.12
	libpolkit-backend-1.so.0 -> libpolkit-backend-1.so.0.0.0
	libapt-inst.so.1.2 -> libapt-inst.so.1.2.0
	libfaad.so.2 -> libfaad.so.2.0.0
	libevent-1.4.so.2 -> libevent-1.4.so.2.1.3
	libgtkspell.so.0 -> libgtkspell.so.0.0.0
	libXvMC.so.1 -> libXvMC.so.1.0.0
	libwpd-0.9.so.9 -> libwpd-0.9.so.9.0.0
	libelf.so.1 -> libelf-0.148.so
	libnotify.so.1 -> libnotify.so.1.2.3
	libORBit-imodule-2.so.0 -> libORBit-imodule-2.so.0.0.0
	libpixman-1.so.0 -> libpixman-1.so.0.20.2
	libgtop-2.0.so.7 -> libgtop-2.0.so.7.2.0
	libsane.so.1 -> libsane.so.1.0.22
	libm17n-core.so.0 -> libm17n-core.so.0.4.0
	libxcb-atom.so.1 -> libxcb-atom.so.1.0.0
	libsoup-2.4.so.1 -> libsoup-2.4.so.1.4.0
	libtag.so.1 -> libtag.so.1.6.3
	libgettextlib-0.18.1.so -> libgettextlib.so
	libgstsdp-0.10.so.0 -> libgstsdp-0.10.so.0.23.0
	liblber-2.4.so.2 -> liblber-2.4.so.2.5.6
	libid3tag.so.0 -> libid3tag.so.0.3.0
	libarchive.so.2 -> libarchive.so.2.8.4
	libelf.so.0 -> libelf.so.0.8.13
	libupower-glib.so.1 -> libupower-glib.so.1.0.1
	libgstsignalprocessor-0.10.so.0 -> libgstsignalprocessor-0.10.so.0.0.0
	libHalf.so.6 -> libHalf.so.6.0.0
	libnux-image-0.9.so.0 -> libnux-image-0.9.so.0.944.4
	libpulse.so.0 -> libpulse.so.0.12.3
	libgoocanvas.so.3 -> libgoocanvas.so.3.4.0
	libshout.so.3 -> libshout.so.3.2.0
	liblua5.1.so.0 -> liblua5.1.so.0.0.0
	libdaemon.so.0 -> libdaemon.so.0.5.0
	libgmp.so.3 -> libgmp.so.3.5.2
	libgstbasevideo-0.10.so.0 -> libgstbasevideo-0.10.so.0.0.0
	libicuio.so.44 -> libicuio.so.44.2
	libanthyinput.so.0 -> libanthyinput.so.0.0.0
	libart_lgpl_2.so.2 -> libart_lgpl_2.so.2.3.21
	libgailutil.so.18 -> libgailutil.so.18.0.1
	libbfd-2.21.0-system.20110327.so -> libbfd-2.21.0-system.20110327.so
	libcroco-0.6.so.3 -> libcroco-0.6.so.3.0.1
	libm17n.so.0 -> libm17n.so.0.4.0
	libatkmm-1.6.so.1 -> libatkmm-1.6.so.1.1.0
	libcap-ng.so.0 -> libcap-ng.so.0.0.0
	liboverlay-scrollbar-0.1.so.0 -> liboverlay-scrollbar-0.1.so.0.0.12
	libpangomm-1.4.so.1 -> libpangomm-1.4.so.1.0.30
	libperl.so.5.10 -> libperl.so.5.10.1
	libguile.so.17 -> libguile.so.17.3.1
	libpathplan.so.4 -> libpathplan.so.4.0.0
	libopcodes-2.21.0-system.20110327.so -> libopcodes-2.21.0-system.20110327.so
	libchromeXvMC.so.1 -> libchromeXvMC.so.1.0.0
	libenca.so.0 -> libenca.so.0.5.1
	libhpmud.so.0 -> libhpmud.so.0.0.6
	libcompizconfig.so.0 -> libcompizconfig.so.0.0.0
	libpanelw.so.5 -> libpanelw.so.5.7
	libwmflite-0.2.so.7 -> libwmflite-0.2.so.7.0.1
	libpyglib-2.0-python2.7.so.0 -> libpyglib-2.0-python2.7.so.0.0.0
	libept.so.1 -> libept.so.1.0.4
	libunity.so.4 -> libunity.so.4.0.0
	libflite_cmu_us_slt.so.1 -> libflite_cmu_us_slt.so.1.4
	librdf.so.0 -> librdf.so.0.0.0
	libXpm.so.4 -> libXpm.so.4.11.0
	libWildMidi.so.1 -> libWildMidi.so.1.0.0
	libmenuw.so.5 -> libmenuw.so.5.7
	libspectre.so.1 -> libspectre.so.1.1.6
	libgettextpo.so.0 -> libgettextpo.so.0.5.1
	libmimic.so.0 -> libmimic.so.0.0.1
	libflite_cmulex.so.1 -> libflite_cmulex.so.1.4
	liblzma.so.2 -> liblzma.so.2.0.0
	libORBitCosNaming-2.so.0 -> libORBitCosNaming-2.so.0.1.0
	libcups.so.2 -> libcups.so.2
	libbrasero-burn.so.1 -> libbrasero-burn.so.1.2.0
	libfolks-telepathy.so.22 -> libfolks-telepathy.so.22.0.0
	libgnomeui-2.so.0 -> libgnomeui-2.so.0.2400.5
	libflite_cmu_time_awb.so.1 -> libflite_cmu_time_awb.so.1.4
	libIlmImf.so.6 -> libIlmImf.so.6.0.0
	libexiv2.so.10 -> libexiv2.so.10.0.1
	libgvnc-1.0.so.0 -> libgvnc-1.0.so.0.0.1
	libtotem-plparser.so.17 -> libtotem-plparser.so.17.0.1
/usr/lib/sse2: (hwcap: 0x0000000004000000)
	libspeexdsp.so.1 -> libspeexdsp.so.1.5.0
	libspeex.so.1 -> libspeex.so.1.5.0
	libxapian.so.22 -> libxapian.so.22.2.0
/usr/lib/i686: (hwcap: 0x0008000000000000)
/usr/lib/i686/cmov: (hwcap: 0x0008000000008000)
	libavcodec.so.52 -> libavcodec.so.52.72.2
	libavutil.so.50 -> libavutil.so.50.15.1
	libpostproc.so.51 -> libpostproc.so.51.2.0
	libswscale.so.0 -> libswscale.so.0.11.0
	libavformat.so.52 -> libavformat.so.52.64.2

[-- Attachment #4: makelog --]
[-- Type: application/octet-stream, Size: 4955 bytes --]

make  all-recursive
make[1]: Entering directory `/home/ian/Documents/FP/guile-2.0.11'
Making all in lib
make[2]: Entering directory `/home/ian/Documents/FP/guile-2.0.11/lib'
make  all-recursive
make[3]: Entering directory `/home/ian/Documents/FP/guile-2.0.11/lib'
make[4]: Entering directory `/home/ian/Documents/FP/guile-2.0.11/lib'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/home/ian/Documents/FP/guile-2.0.11/lib'
make[3]: Leaving directory `/home/ian/Documents/FP/guile-2.0.11/lib'
make[2]: Leaving directory `/home/ian/Documents/FP/guile-2.0.11/lib'
Making all in meta
make[2]: Entering directory `/home/ian/Documents/FP/guile-2.0.11/meta'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/ian/Documents/FP/guile-2.0.11/meta'
Making all in libguile
make[2]: Entering directory `/home/ian/Documents/FP/guile-2.0.11/libguile'
make  all-am
make[3]: Entering directory `/home/ian/Documents/FP/guile-2.0.11/libguile'
/bin/bash ../libtool  --tag=CC   --mode=link gcc -pthread -Wall -Wmissing-prototypes -Wdeclaration-after-statement -Wpointer-arith -Wswitch-enum -fno-strict-aliasing -fwrapv -fvisibility=hidden -I/usr/local/include   -g -O2 -L/usr/local/lib -lgc   -L\(libdir\) -lffi   -lm -lm           -lrt -lm -lm   -L/usr/local/lib -lunistring -R/usr/local/lib -lm  -lm -version-info 29:2:7 -export-dynamic -no-undefined -Wl,-z -Wl,relro -Wl,--version-script="./libguile.map"  -o libguile-2.0.la -rpath /usr/local/lib libguile_2.0_la-alist.lo libguile_2.0_la-arbiters.lo libguile_2.0_la-array-handle.lo libguile_2.0_la-array-map.lo libguile_2.0_la-arrays.lo libguile_2.0_la-async.lo libguile_2.0_la-backtrace.lo libguile_2.0_la-boolean.lo libguile_2.0_la-bitvectors.lo libguile_2.0_la-bytevectors.lo libguile_2.0_la-chars.lo libguile_2.0_la-control.lo libguile_2.0_la-continuations.lo libguile_2.0_la-debug.lo libguile_2.0_la-deprecated.lo libguile_2.0_la-deprecation.lo libguile_2.0_la-dynwind.lo libguile_2.0_la-eq.lo libguile_2.0_la-error.lo libguile_2.0_la-eval.lo libguile_2.0_la-evalext.lo libguile_2.0_la-expand.lo libguile_2.0_la-extensions.lo libguile_2.0_la-feature.lo libguile_2.0_la-filesys.lo libguile_2.0_la-finalizers.lo libguile_2.0_la-fluids.lo libguile_2.0_la-foreign.lo libguile_2.0_la-fports.lo libguile_2.0_la-frames.lo libguile_2.0_la-gc-malloc.lo libguile_2.0_la-gc.lo libguile_2.0_la-gdbint.lo libguile_2.0_la-gettext.lo libguile_2.0_la-generalized-arrays.lo libguile_2.0_la-generalized-vectors.lo libguile_2.0_la-goops.lo libguile_2.0_la-gsubr.lo libguile_2.0_la-guardians.lo libguile_2.0_la-hash.lo libguile_2.0_la-hashtab.lo libguile_2.0_la-hooks.lo libguile_2.0_la-i18n.lo libguile_2.0_la-init.lo libguile_2.0_la-inline.lo libguile_2.0_la-instructions.lo libguile_2.0_la-ioext.lo libguile_2.0_la-keywords.lo libguile_2.0_la-list.lo libguile_2.0_la-load.lo libguile_2.0_la-macros.lo libguile_2.0_la-mallocs.lo libguile_2.0_la-memoize.lo libguile_2.0_la-modules.lo libguile_2.0_la-null-threads.lo libguile_2.0_la-numbers.lo libguile_2.0_la-objcodes.lo libguile_2.0_la-objprop.lo libguile_2.0_la-options.lo libguile_2.0_la-pairs.lo libguile_2.0_la-poll.lo libguile_2.0_la-ports.lo libguile_2.0_la-print.lo libguile_2.0_la-procprop.lo libguile_2.0_la-procs.lo libguile_2.0_la-programs.lo libguile_2.0_la-promises.lo libguile_2.0_la-r6rs-ports.lo libguile_2.0_la-random.lo libguile_2.0_la-rdelim.lo libguile_2.0_la-read.lo libguile_2.0_la-root.lo libguile_2.0_la-rw.lo libguile_2.0_la-scmsigs.lo libguile_2.0_la-script.lo libguile_2.0_la-simpos.lo libguile_2.0_la-smob.lo libguile_2.0_la-sort.lo libguile_2.0_la-srcprop.lo libguile_2.0_la-srfi-1.lo libguile_2.0_la-srfi-4.lo libguile_2.0_la-srfi-13.lo libguile_2.0_la-srfi-14.lo libguile_2.0_la-srfi-60.lo libguile_2.0_la-stackchk.lo libguile_2.0_la-stacks.lo libguile_2.0_la-stime.lo libguile_2.0_la-strings.lo libguile_2.0_la-strorder.lo libguile_2.0_la-strports.lo libguile_2.0_la-struct.lo libguile_2.0_la-symbols.lo libguile_2.0_la-threads.lo libguile_2.0_la-throw.lo libguile_2.0_la-trees.lo libguile_2.0_la-uniform.lo libguile_2.0_la-values.lo libguile_2.0_la-variable.lo libguile_2.0_la-vectors.lo libguile_2.0_la-version.lo libguile_2.0_la-vm.lo libguile_2.0_la-vports.lo libguile_2.0_la-weaks.lo libguile_2.0_la-dynl.lo libguile_2.0_la-posix.lo libguile_2.0_la-net_db.lo libguile_2.0_la-socket.lo libguile_2.0_la-regex-posix.lo ../lib/libgnu.la -L/usr/local/lib -lgmp -R/usr/local/lib -L/usr/local/lib -lltdl -ldl -R/usr/local/lib -lcrypt -lm 
../libtool: line 5989: cd: (libdir): No such file or directory
libtool: link: cannot determine absolute directory name of `(libdir)'
make[3]: *** [libguile-2.0.la] Error 1
make[3]: Leaving directory `/home/ian/Documents/FP/guile-2.0.11/libguile'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/home/ian/Documents/FP/guile-2.0.11/libguile'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/ian/Documents/FP/guile-2.0.11'
make: *** [all] Error 2

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: guile-2.0.11 build: libtool and readline problems
  2014-04-16  5:10 ` Mark H Weaver
  2014-04-21 19:18   ` Ian Grant
@ 2014-04-22  1:16   ` Ian Grant
  1 sibling, 0 replies; 9+ messages in thread
From: Ian Grant @ 2014-04-22  1:16 UTC (permalink / raw)
  To: Mark H Weaver, guile-devel

[-- Attachment #1: Type: text/plain, Size: 599 bytes --]

The problem seems to be the presence of  -L\(libdir\) on the libtool
command lines. See makev-guile-2.0.11 for output of make V=1

But, I get the same problem when building glib-2.4, so it is unlikely
that it's a guile problem, more likely something weird about my system
(it's an old ubuntu distribution, which I can't upgrade because I
can't get a net connection beefy enough to download the gigabytes of
binaries that Linux distributuions now involve).

Nevertheless, if you or anyone else on this list have/has any idea
what it could be, I'd be grateful. I want to get guile running again.

Ian

[-- Attachment #2: makev --]
[-- Type: application/octet-stream, Size: 5692 bytes --]

make  all-recursive
make[1]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0'
Making all in .
make[2]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0'
make[2]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0'
Making all in m4macros
make[2]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/m4macros'
make  all-am
make[3]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/m4macros'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/m4macros'
make[2]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/m4macros'
Making all in glib
make[2]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/glib'
make  all-recursive
make[3]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/glib'
Making all in libcharset
make[4]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/glib/libcharset'
make  all-am
make[5]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/glib/libcharset'
make[5]: Nothing to be done for `all-am'.
make[5]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/glib/libcharset'
make[4]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/glib/libcharset'
Making all in pcre
make[4]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/glib/pcre'
make  all-am
make[5]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/glib/pcre'
make[5]: Nothing to be done for `all-am'.
make[5]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/glib/pcre'
make[4]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/glib/pcre'
Making all in update-pcre
make[4]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/glib/update-pcre'
make  all-am
make[5]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/glib/update-pcre'
make[5]: Nothing to be done for `all-am'.
make[5]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/glib/update-pcre'
make[4]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/glib/update-pcre'
Making all in .
make[4]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/glib'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/glib'
Making all in tests
make[4]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/glib/tests'
make  all-am
make[5]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/glib/tests'
make[5]: Nothing to be done for `all-am'.
make[5]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/glib/tests'
make[4]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/glib/tests'
make[3]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/glib'
make[2]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/glib'
Making all in gmodule
make[2]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/gmodule'
make  all-am
make[3]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/gmodule'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/gmodule'
make[2]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/gmodule'
Making all in gthread
make[2]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/gthread'
make  all-am
make[3]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/gthread'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/gthread'
make[2]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/gthread'
Making all in gobject
make[2]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/gobject'
make  all-recursive
make[3]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/gobject'
Making all in .
make[4]: Entering directory `/home/ian/Documents/Typography/glib-2.40.0/gobject'
/bin/bash ../libtool  --tag=CC   --mode=link gcc -Wall -Wstrict-prototypes -Werror=declaration-after-statement -Werror=missing-prototypes -Werror=implicit-function-declaration -Werror=pointer-arith -Werror=init-self -Werror=format-security -Werror=format=2 -Werror=missing-include-dirs -I/usr/local/lib/libffi-3.0.14-rc0/include   -fvisibility=hidden -g -O2 -Wl,-Bsymbolic-functions  -version-info 4000:0:4000 -export-dynamic   -o libgobject-2.0.la -rpath /usr/local/lib libgobject_2_0_la-gatomicarray.lo libgobject_2_0_la-gbinding.lo libgobject_2_0_la-gboxed.lo libgobject_2_0_la-gclosure.lo libgobject_2_0_la-genums.lo libgobject_2_0_la-gmarshal.lo libgobject_2_0_la-gobject.lo libgobject_2_0_la-gparam.lo libgobject_2_0_la-gparamspecs.lo libgobject_2_0_la-gsignal.lo libgobject_2_0_la-gsourceclosure.lo libgobject_2_0_la-gtype.lo libgobject_2_0_la-gtypemodule.lo libgobject_2_0_la-gtypeplugin.lo libgobject_2_0_la-gvalue.lo libgobject_2_0_la-gvaluearray.lo libgobject_2_0_la-gvaluetransform.lo libgobject_2_0_la-gvaluetypes.lo ../glib/libglib-2.0.la -L\(libdir\) -lffi    
../libtool: line 6003: cd: (libdir): No such file or directory
libtool: link: cannot determine absolute directory name of `(libdir)'
make[4]: *** [libgobject-2.0.la] Error 1
make[4]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/gobject'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/gobject'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0/gobject'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/ian/Documents/Typography/glib-2.40.0'
make: *** [all] Error 2

[-- Attachment #3: makev-guile-2.0.11 --]
[-- Type: application/octet-stream, Size: 5009 bytes --]

make  all-recursive
make[1]: Entering directory `/home/ian/Documents/FP/guile-2.0.11'
Making all in lib
make[2]: Entering directory `/home/ian/Documents/FP/guile-2.0.11/lib'
make  all-recursive
make[3]: Entering directory `/home/ian/Documents/FP/guile-2.0.11/lib'
make[4]: Entering directory `/home/ian/Documents/FP/guile-2.0.11/lib'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/home/ian/Documents/FP/guile-2.0.11/lib'
make[3]: Leaving directory `/home/ian/Documents/FP/guile-2.0.11/lib'
make[2]: Leaving directory `/home/ian/Documents/FP/guile-2.0.11/lib'
Making all in meta
make[2]: Entering directory `/home/ian/Documents/FP/guile-2.0.11/meta'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/ian/Documents/FP/guile-2.0.11/meta'
Making all in libguile
make[2]: Entering directory `/home/ian/Documents/FP/guile-2.0.11/libguile'
make  all-am
make[3]: Entering directory `/home/ian/Documents/FP/guile-2.0.11/libguile'
/bin/bash ../libtool  --tag=CC   --mode=link gcc -I/usr/local/include -pthread -Wall -Wmissing-prototypes -Wdeclaration-after-statement -Wpointer-arith -Wswitch-enum -fno-strict-aliasing -fwrapv -fvisibility=hidden -I/usr/local/include   -g -O2 -L/usr/local/lib -lgc   -L\(libdir\) -lffi   -lm -lm           -lrt -lm -lm   -L/usr/local/lib -lunistring -R/usr/local/lib -lm  -lm -version-info 29:2:7 -export-dynamic -no-undefined -Wl,-z -Wl,relro -Wl,--version-script="./libguile.map" -L/usr/local/lib -R/usr/local/lib -o libguile-2.0.la -rpath /usr/local/lib libguile_2.0_la-alist.lo libguile_2.0_la-arbiters.lo libguile_2.0_la-array-handle.lo libguile_2.0_la-array-map.lo libguile_2.0_la-arrays.lo libguile_2.0_la-async.lo libguile_2.0_la-backtrace.lo libguile_2.0_la-boolean.lo libguile_2.0_la-bitvectors.lo libguile_2.0_la-bytevectors.lo libguile_2.0_la-chars.lo libguile_2.0_la-control.lo libguile_2.0_la-continuations.lo libguile_2.0_la-debug.lo libguile_2.0_la-deprecated.lo libguile_2.0_la-deprecation.lo libguile_2.0_la-dynwind.lo libguile_2.0_la-eq.lo libguile_2.0_la-error.lo libguile_2.0_la-eval.lo libguile_2.0_la-evalext.lo libguile_2.0_la-expand.lo libguile_2.0_la-extensions.lo libguile_2.0_la-feature.lo libguile_2.0_la-filesys.lo libguile_2.0_la-finalizers.lo libguile_2.0_la-fluids.lo libguile_2.0_la-foreign.lo libguile_2.0_la-fports.lo libguile_2.0_la-frames.lo libguile_2.0_la-gc-malloc.lo libguile_2.0_la-gc.lo libguile_2.0_la-gdbint.lo libguile_2.0_la-gettext.lo libguile_2.0_la-generalized-arrays.lo libguile_2.0_la-generalized-vectors.lo libguile_2.0_la-goops.lo libguile_2.0_la-gsubr.lo libguile_2.0_la-guardians.lo libguile_2.0_la-hash.lo libguile_2.0_la-hashtab.lo libguile_2.0_la-hooks.lo libguile_2.0_la-i18n.lo libguile_2.0_la-init.lo libguile_2.0_la-inline.lo libguile_2.0_la-instructions.lo libguile_2.0_la-ioext.lo libguile_2.0_la-keywords.lo libguile_2.0_la-list.lo libguile_2.0_la-load.lo libguile_2.0_la-macros.lo libguile_2.0_la-mallocs.lo libguile_2.0_la-memoize.lo libguile_2.0_la-modules.lo libguile_2.0_la-null-threads.lo libguile_2.0_la-numbers.lo libguile_2.0_la-objcodes.lo libguile_2.0_la-objprop.lo libguile_2.0_la-options.lo libguile_2.0_la-pairs.lo libguile_2.0_la-poll.lo libguile_2.0_la-ports.lo libguile_2.0_la-print.lo libguile_2.0_la-procprop.lo libguile_2.0_la-procs.lo libguile_2.0_la-programs.lo libguile_2.0_la-promises.lo libguile_2.0_la-r6rs-ports.lo libguile_2.0_la-random.lo libguile_2.0_la-rdelim.lo libguile_2.0_la-read.lo libguile_2.0_la-root.lo libguile_2.0_la-rw.lo libguile_2.0_la-scmsigs.lo libguile_2.0_la-script.lo libguile_2.0_la-simpos.lo libguile_2.0_la-smob.lo libguile_2.0_la-sort.lo libguile_2.0_la-srcprop.lo libguile_2.0_la-srfi-1.lo libguile_2.0_la-srfi-4.lo libguile_2.0_la-srfi-13.lo libguile_2.0_la-srfi-14.lo libguile_2.0_la-srfi-60.lo libguile_2.0_la-stackchk.lo libguile_2.0_la-stacks.lo libguile_2.0_la-stime.lo libguile_2.0_la-strings.lo libguile_2.0_la-strorder.lo libguile_2.0_la-strports.lo libguile_2.0_la-struct.lo libguile_2.0_la-symbols.lo libguile_2.0_la-threads.lo libguile_2.0_la-throw.lo libguile_2.0_la-trees.lo libguile_2.0_la-uniform.lo libguile_2.0_la-values.lo libguile_2.0_la-variable.lo libguile_2.0_la-vectors.lo libguile_2.0_la-version.lo libguile_2.0_la-vm.lo libguile_2.0_la-vports.lo libguile_2.0_la-weaks.lo libguile_2.0_la-dynl.lo libguile_2.0_la-posix.lo libguile_2.0_la-net_db.lo libguile_2.0_la-socket.lo libguile_2.0_la-regex-posix.lo ../lib/libgnu.la -L/usr/local/lib -lgmp -R/usr/local/lib -L/usr/local/lib -lltdl -ldl -R/usr/local/lib -lcrypt -lm 
../libtool: line 5989: cd: (libdir): No such file or directory
libtool: link: cannot determine absolute directory name of `(libdir)'
make[3]: *** [libguile-2.0.la] Error 1
make[3]: Leaving directory `/home/ian/Documents/FP/guile-2.0.11/libguile'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/home/ian/Documents/FP/guile-2.0.11/libguile'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/ian/Documents/FP/guile-2.0.11'
make: *** [all] Error 2

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: guile-2.0.11 build: libtool and readline problems
  2014-04-21 19:18   ` Ian Grant
@ 2014-04-22  3:02     ` Mark H Weaver
       [not found]       ` <CAKFjmdw5n=5NXOswNowTCK1jNyRJW335wg+iagcFMYa=H3m6SA@mail.gmail.com>
  2014-04-22  3:29       ` Ian Grant
  0 siblings, 2 replies; 9+ messages in thread
From: Mark H Weaver @ 2014-04-22  3:02 UTC (permalink / raw)
  To: Ian Grant; +Cc: guile-devel

Hi Ian,

Three questions:

1. What is the output of "pkg-config --libs libffi" on your system?
2. What is the output of "grep '^LIBFFI' libguile/Makefile"?
3. What is the output of "grep '^READLINE_LIBS' libguile/Makefile"?

     Thanks,
       Mark



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: guile-2.0.11 build: libtool and readline problems
       [not found]         ` <CAKFjmdxs-GbEksOa3hN0qORL5uJabCRuY2ki2p4hgyfP+djCnw@mail.gmail.com>
@ 2014-04-22  3:17           ` Ian Grant
  2014-04-22  3:33             ` Mark H Weaver
  0 siblings, 1 reply; 9+ messages in thread
From: Ian Grant @ 2014-04-22  3:17 UTC (permalink / raw)
  To: Mark H Weaver, guile-devel

And now I remember why I did this: it was because this web site, which
is the official site for libffi, has a bad SSL certificate.
(sec_error_untrusted_issuer)

   http://sourceware.org/libffi/

It's not good for guile to rely on third party source like this: I
have the same reservations about the garbage collector. What can we do
about that? One solution would be to try to get the maintainers of
these libraries to make them proper GNU software, but perhaps that
would be difficult, or impossible legally.


On Mon, Apr 21, 2014 at 11:10 PM, Ian Grant
<ian.a.n.grant@googlemail.com> wrote:
> It's because I had to build libffi from the git repo, and I 4cked up
> the auto4ck stuff that one has to do in this situation.  I will try
> and get a proper distribution ....
>
> On Mon, Apr 21, 2014 at 11:07 PM, Ian Grant
> <ian.a.n.grant@googlemail.com> wrote:
>> On Mon, Apr 21, 2014 at 11:02 PM, Mark H Weaver <mhw@netris.org> wrote:
>>> Hi Ian,
>>>
>>> Three questions:
>>>
>>> 1. What is the output of "pkg-config --libs libffi" on your system?
>>
>> -L\$\(libdir\) -lffi
>>
>> Bingo! Good question :-)
>>
>>> 2. What is the output of "grep '^LIBFFI' libguile/Makefile"?
>>
>> LIBFFI_CFLAGS = -I/usr/local/lib/libffi-3.0.14-rc0/include
>> LIBFFI_LIBS = -L\$\(libdir\) -lffi
>>
>>> 3. What is the output of "grep '^READLINE_LIBS' libguile/Makefile"?
>>
>> READLINE_LIBS = -L/usr/local/lib -lreadline -R/usr/local/lib -lncurses
>>
>>>      Thanks,
>>>        Mark



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: guile-2.0.11 build: libtool and readline problems
  2014-04-22  3:02     ` Mark H Weaver
       [not found]       ` <CAKFjmdw5n=5NXOswNowTCK1jNyRJW335wg+iagcFMYa=H3m6SA@mail.gmail.com>
@ 2014-04-22  3:29       ` Ian Grant
  1 sibling, 0 replies; 9+ messages in thread
From: Ian Grant @ 2014-04-22  3:29 UTC (permalink / raw)
  To: Mark H Weaver, guile-devel

For the record, the readline problem was because I had not
./configure'ed readline ---with-curses. I think that guile's autoconf
test program makes this assumption. The assumption is probably
reasonable if most distributions do this, but it is strictly speaking
a bug in the autoconf detection of readline.

On Mon, Apr 21, 2014 at 11:02 PM, Mark H Weaver <mhw@netris.org> wrote:
> Hi Ian,
>
> Three questions:
>
> 1. What is the output of "pkg-config --libs libffi" on your system?
> 2. What is the output of "grep '^LIBFFI' libguile/Makefile"?
> 3. What is the output of "grep '^READLINE_LIBS' libguile/Makefile"?
>
>      Thanks,
>        Mark



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: guile-2.0.11 build: libtool and readline problems
  2014-04-22  3:17           ` Ian Grant
@ 2014-04-22  3:33             ` Mark H Weaver
  0 siblings, 0 replies; 9+ messages in thread
From: Mark H Weaver @ 2014-04-22  3:33 UTC (permalink / raw)
  To: Ian Grant; +Cc: guile-devel

Ian Grant <ian.a.n.grant@googlemail.com> writes:
> And now I remember why I did this: it was because this web site, which
> is the official site for libffi, has a bad SSL certificate.
> (sec_error_untrusted_issuer)
>
>    http://sourceware.org/libffi/

Their certificate checks out on my systems.  I suspect that your CA
trust store is out of date.

However, it is true that the certificate on hboehm.info is invalid.
It is valid only for *.webhostingpad.com and webhostingpad.com.
Would you like to report the problem to Hans Boehm?

     Mark



^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2014-04-22  3:33 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-15  0:21 guile-2.0.11 build: libtool and readline problems Ian Grant
2014-04-15 14:07 ` Greg Troxel
2014-04-16  5:10 ` Mark H Weaver
2014-04-21 19:18   ` Ian Grant
2014-04-22  3:02     ` Mark H Weaver
     [not found]       ` <CAKFjmdw5n=5NXOswNowTCK1jNyRJW335wg+iagcFMYa=H3m6SA@mail.gmail.com>
     [not found]         ` <CAKFjmdxs-GbEksOa3hN0qORL5uJabCRuY2ki2p4hgyfP+djCnw@mail.gmail.com>
2014-04-22  3:17           ` Ian Grant
2014-04-22  3:33             ` Mark H Weaver
2014-04-22  3:29       ` Ian Grant
2014-04-22  1:16   ` Ian Grant

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).