Hi,
A user has reported that libtool (1.3c, TIMESTAMP=" (1.680 2000/01/28
23:28:57)" doesn't detect shared libs on his platform.
# The host system.
host_alias=ppc-unknown-linux-gnu
host=powerpc-unknown-linux-gnu
I suggest adding "powerpc*" to the host_cpu check:
...
# This must be Linux ELF.
linux-gnu*)
case "$host_cpu" in
alpha* | i*86 | powerpc* | sparc* )
^^^^^^^^^
lt_cv_deplibs_check_method=pass_all ;;
*)
# glibc up to 2.1.1 does not perform some relocations on ARM
changequote(,)dnl
lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB
(shared ob changequote([, ])dnl
esac
lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
;;
osf3* | osf4* | osf5*)
# this will be overridden with pass_all, but let us keep it just in case
lt_cv_deplibs_check_method='file_magic COFF format alpha shared library'
lt_cv_file_magic_test_file=/shlib/libc.so
lt_cv_deplibs_check_method=pass_all
;;
Dirk